pub struct JobRun {Show 15 fields
pub advance_child_rollout_job_run: Option<AdvanceChildRolloutJobRun>,
pub create_child_rollout_job_run: Option<CreateChildRolloutJobRun>,
pub create_time: Option<DateTime<Utc>>,
pub deploy_job_run: Option<DeployJobRun>,
pub end_time: Option<DateTime<Utc>>,
pub etag: Option<String>,
pub job_id: Option<String>,
pub name: Option<String>,
pub phase_id: Option<String>,
pub postdeploy_job_run: Option<PostdeployJobRun>,
pub predeploy_job_run: Option<PredeployJobRun>,
pub start_time: Option<DateTime<Utc>>,
pub state: Option<String>,
pub uid: Option<String>,
pub verify_job_run: Option<VerifyJobRun>,
}
Expand description
A JobRun
resource in the Cloud Deploy API. A JobRun
contains information of a single Rollout
job evaluation.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§advance_child_rollout_job_run: Option<AdvanceChildRolloutJobRun>
Output only. Information specific to an advanceChildRollout JobRun
create_child_rollout_job_run: Option<CreateChildRolloutJobRun>
Output only. Information specific to a createChildRollout JobRun
.
create_time: Option<DateTime<Utc>>
Output only. Time at which the JobRun
was created.
deploy_job_run: Option<DeployJobRun>
Output only. Information specific to a deploy JobRun
.
end_time: Option<DateTime<Utc>>
Output only. Time at which the JobRun
ended.
etag: Option<String>
Output only. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
job_id: Option<String>
Output only. ID of the Rollout
job this JobRun
corresponds to.
name: Option<String>
Optional. Name of the JobRun
. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{releases}/rollouts/{rollouts}/jobRuns/{uuid}
.
phase_id: Option<String>
Output only. ID of the Rollout
phase this JobRun
belongs in.
postdeploy_job_run: Option<PostdeployJobRun>
Output only. Information specific to a postdeploy JobRun
.
predeploy_job_run: Option<PredeployJobRun>
Output only. Information specific to a predeploy JobRun
.
start_time: Option<DateTime<Utc>>
Output only. Time at which the JobRun
was started.
state: Option<String>
Output only. The current state of the JobRun
.
uid: Option<String>
Output only. Unique identifier of the JobRun
.
verify_job_run: Option<VerifyJobRun>
Output only. Information specific to a verify JobRun
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for JobRun
impl<'de> Deserialize<'de> for JobRun
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>,
impl ResponseResult for JobRun
Auto Trait Implementations§
impl Freeze for JobRun
impl RefUnwindSafe for JobRun
impl Send for JobRun
impl Sync for JobRun
impl Unpin for JobRun
impl UnwindSafe for JobRun
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
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>
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>
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