GoogleCloudDataplexV1TaskInfrastructureSpec.fromJson constructor

GoogleCloudDataplexV1TaskInfrastructureSpec.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1TaskInfrastructureSpec.fromJson(core.Map json_)
  : this(
      batch: json_.containsKey('batch')
          ? GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources.fromJson(
              json_['batch'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      containerImage: json_.containsKey('containerImage')
          ? GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime.fromJson(
              json_['containerImage'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      vpcNetwork: json_.containsKey('vpcNetwork')
          ? GoogleCloudDataplexV1TaskInfrastructureSpecVpcNetwork.fromJson(
              json_['vpcNetwork'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );