GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntime.fromJson constructor
GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntime.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntime.fromJson(
core.Map json_,
) : this(
customContainerImage: json_.containsKey('customContainerImage')
? GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntimeContainerImage.fromJson(
json_['customContainerImage']
as core.Map<core.String, core.dynamic>,
)
: null,
vmImage: json_.containsKey('vmImage')
? GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntimeVmImage.fromJson(
json_['vmImage'] as core.Map<core.String, core.dynamic>,
)
: null,
);