pub struct GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail {
pub failed_pre_caching_check_jobs: Option<Vec<String>>,
pub pre_caching_check_job: Option<String>,
pub failed_main_jobs: Option<Vec<String>>,
pub main_job: Option<String>,
}Expand description
The detail of a container execution. It contains the job names of the lifecycle of a container execution.
This type is not used in any activity, and only used as part of another schema.
Fields§
§failed_pre_caching_check_jobs: Option<Vec<String>>Output only. The names of the previously failed CustomJob for the pre-caching-check container executions. This job will be available if the PipelineJob.pipeline_spec specifies the pre_caching_check hook in the lifecycle events. The list includes the all attempts in chronological order.
pre_caching_check_job: Option<String>Output only. The name of the CustomJob for the pre-caching-check container execution. This job will be available if the PipelineJob.pipeline_spec specifies the pre_caching_check hook in the lifecycle events.
failed_main_jobs: Option<Vec<String>>Output only. The names of the previously failed CustomJob for the main container executions. The list includes the all attempts in chronological order.
main_job: Option<String>Output only. The name of the CustomJob for the main container execution.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
impl Clone for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
Source§fn clone(
&self,
) -> GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
fn clone( &self, ) -> GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
impl Default for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
Source§fn default() -> GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
fn default() -> GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
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 Part for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
impl RefUnwindSafe for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
impl Send for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
impl Sync for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
impl Unpin for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
impl UnwindSafe for GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
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