GoogleCloudAiplatformV1AssignNotebookRuntimeRequest.fromJson constructor
GoogleCloudAiplatformV1AssignNotebookRuntimeRequest.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1AssignNotebookRuntimeRequest.fromJson(core.Map json_)
: this(
notebookRuntime: json_.containsKey('notebookRuntime')
? GoogleCloudAiplatformV1NotebookRuntime.fromJson(
json_['notebookRuntime']
as core.Map<core.String, core.dynamic>)
: null,
notebookRuntimeId: json_.containsKey('notebookRuntimeId')
? json_['notebookRuntimeId'] as core.String
: null,
notebookRuntimeTemplate: json_.containsKey('notebookRuntimeTemplate')
? json_['notebookRuntimeTemplate'] as core.String
: null,
);