GoogleCloudDatapipelinesV1LaunchTemplateRequest.fromJson constructor

GoogleCloudDatapipelinesV1LaunchTemplateRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDatapipelinesV1LaunchTemplateRequest.fromJson(core.Map json_)
  : this(
      gcsPath: json_['gcsPath'] as core.String?,
      launchParameters:
          json_.containsKey('launchParameters')
              ? GoogleCloudDatapipelinesV1LaunchTemplateParameters.fromJson(
                json_['launchParameters']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      location: json_['location'] as core.String?,
      projectId: json_['projectId'] as core.String?,
      validateOnly: json_['validateOnly'] as core.bool?,
    );