GoogleCloudAiplatformV1PipelineTaskExecutorDetail.fromJson constructor
GoogleCloudAiplatformV1PipelineTaskExecutorDetail.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1PipelineTaskExecutorDetail.fromJson(core.Map json_)
: this(
containerDetail: json_.containsKey('containerDetail')
? GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail.fromJson(
json_['containerDetail'] as core.Map<core.String, core.dynamic>,
)
: null,
customJobDetail: json_.containsKey('customJobDetail')
? GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail.fromJson(
json_['customJobDetail'] as core.Map<core.String, core.dynamic>,
)
: null,
);