#[non_exhaustive]pub enum Request {
CreatePipelineJobRequest(Box<CreatePipelineJobRequest>),
CreateNotebookExecutionJobRequest(Box<CreateNotebookExecutionJobRequest>),
}Available on crate feature
schedule-service only.Expand description
Required. The API request template to launch the scheduled runs. User-specified ID is not supported in the request template.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CreatePipelineJobRequest(Box<CreatePipelineJobRequest>)
Request for PipelineService.CreatePipelineJob. CreatePipelineJobRequest.parent field is required (format: projects/{project}/locations/{location}).
CreateNotebookExecutionJobRequest(Box<CreateNotebookExecutionJobRequest>)
Request for NotebookService.CreateNotebookExecutionJob.
Trait Implementations§
impl StructuralPartialEq for Request
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more