GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime.fromJson constructor
GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime.fromJson(
core.Map json_,
) : this(
image: json_['image'] as core.String?,
javaJars: (json_['javaJars'] as core.List?)
?.map((value) => value as core.String)
.toList(),
properties:
(json_['properties'] as core.Map<core.String, core.dynamic>?)?.map(
(key, value) => core.MapEntry(key, value as core.String),
),
pythonPackages: (json_['pythonPackages'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);