GoogleCloudDataplexV1EnvironmentInfrastructureSpec.fromJson constructor
GoogleCloudDataplexV1EnvironmentInfrastructureSpec.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1EnvironmentInfrastructureSpec.fromJson(core.Map json_)
: this(
compute:
json_.containsKey('compute')
? GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResources.fromJson(
json_['compute'] as core.Map<core.String, core.dynamic>,
)
: null,
osImage:
json_.containsKey('osImage')
? GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime.fromJson(
json_['osImage'] as core.Map<core.String, core.dynamic>,
)
: null,
);