pub struct Job {
pub advance_child_rollout_job: Option<AdvanceChildRolloutJob>,
pub create_child_rollout_job: Option<CreateChildRolloutJob>,
pub deploy_job: Option<DeployJob>,
pub id: Option<String>,
pub job_run: Option<String>,
pub postdeploy_job: Option<PostdeployJob>,
pub predeploy_job: Option<PredeployJob>,
pub skip_message: Option<String>,
pub state: Option<String>,
pub verify_job: Option<VerifyJob>,
}Expand description
Job represents an operation for a Rollout.
This type is not used in any activity, and only used as part of another schema.
Fields§
§advance_child_rollout_job: Option<AdvanceChildRolloutJob>Output only. An advanceChildRollout Job.
create_child_rollout_job: Option<CreateChildRolloutJob>Output only. A createChildRollout Job.
deploy_job: Option<DeployJob>Output only. A deploy Job.
id: Option<String>Output only. The ID of the Job.
job_run: Option<String>Output only. The name of the JobRun responsible for the most recent invocation of this Job.
postdeploy_job: Option<PostdeployJob>Output only. A postdeploy Job.
predeploy_job: Option<PredeployJob>Output only. A predeploy Job.
skip_message: Option<String>Output only. Additional information on why the Job was skipped, if available.
state: Option<String>Output only. The current state of the Job.
verify_job: Option<VerifyJob>Output only. A verify Job.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Job
impl<'de> Deserialize<'de> for Job
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for Job
Auto Trait Implementations§
impl Freeze for Job
impl RefUnwindSafe for Job
impl Send for Job
impl Sync for Job
impl Unpin for Job
impl UnwindSafe for Job
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more