GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources.fromJson constructor

GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources.fromJson(
    core.Map json_)
    : this(
        executorsCount: json_.containsKey('executorsCount')
            ? json_['executorsCount'] as core.int
            : null,
        maxExecutorsCount: json_.containsKey('maxExecutorsCount')
            ? json_['maxExecutorsCount'] as core.int
            : null,
      );