GoogleCloudDatapipelinesV1LaunchFlexTemplateRequest.fromJson constructor
GoogleCloudDatapipelinesV1LaunchFlexTemplateRequest.fromJson(
- Map json_
Implementation
GoogleCloudDatapipelinesV1LaunchFlexTemplateRequest.fromJson(core.Map json_)
: this(
launchParameter: json_.containsKey('launchParameter')
? GoogleCloudDatapipelinesV1LaunchFlexTemplateParameter.fromJson(
json_['launchParameter']
as core.Map<core.String, core.dynamic>)
: null,
location: json_.containsKey('location')
? json_['location'] as core.String
: null,
projectId: json_.containsKey('projectId')
? json_['projectId'] as core.String
: null,
validateOnly: json_.containsKey('validateOnly')
? json_['validateOnly'] as core.bool
: null,
);