GoogleCloudDataplexV1TaskInfrastructureSpecVpcNetwork.fromJson constructor

GoogleCloudDataplexV1TaskInfrastructureSpecVpcNetwork.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1TaskInfrastructureSpecVpcNetwork.fromJson(core.Map json_)
    : this(
        network: json_.containsKey('network')
            ? json_['network'] as core.String
            : null,
        networkTags: json_.containsKey('networkTags')
            ? (json_['networkTags'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        subNetwork: json_.containsKey('subNetwork')
            ? json_['subNetwork'] as core.String
            : null,
      );