Class: Google::Apis::DataflowV1b3::LaunchFlexTemplateRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb

Overview

A request to launch a Cloud Dataflow job from a FlexTemplate.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LaunchFlexTemplateRequest

Returns a new instance of LaunchFlexTemplateRequest.



2546
2547
2548
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2546

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#launch_parameterGoogle::Apis::DataflowV1b3::LaunchFlexTemplateParameter

Launch FlexTemplate Parameter. Corresponds to the JSON property launchParameter



2538
2539
2540
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2538

def launch_parameter
  @launch_parameter
end

#validate_onlyBoolean Also known as: validate_only?

If true, the request is validated but not actually executed. Defaults to false. Corresponds to the JSON property validateOnly

Returns:

  • (Boolean)


2543
2544
2545
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2543

def validate_only
  @validate_only
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2551
2552
2553
2554
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2551

def update!(**args)
  @launch_parameter = args[:launch_parameter] if args.key?(:launch_parameter)
  @validate_only = args[:validate_only] if args.key?(:validate_only)
end