Class: Google::Apis::DataflowV1b3::CreateJobFromTemplateRequest

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 create a Cloud Dataflow job from a template.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CreateJobFromTemplateRequest

Returns a new instance of CreateJobFromTemplateRequest



5043
5044
5045
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5043

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

Instance Attribute Details

#environmentGoogle::Apis::DataflowV1b3::RuntimeEnvironment

The environment values to set at runtime. Corresponds to the JSON property environment



5019
5020
5021
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5019

def environment
  @environment
end

#gcs_pathString

Required. A Cloud Storage path to the template from which to create the job. Must be a valid Cloud Storage URL, beginning with gs://. Corresponds to the JSON property gcsPath

Returns:

  • (String)


5041
5042
5043
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5041

def gcs_path
  @gcs_path
end

#job_nameString

Required. The job name to use for the created job. Corresponds to the JSON property jobName

Returns:

  • (String)


5034
5035
5036
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5034

def job_name
  @job_name
end

#locationString

The location to which to direct the request. Corresponds to the JSON property location

Returns:

  • (String)


5024
5025
5026
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5024

def location
  @location
end

#parametersHash<String,String>

The runtime parameters to pass to the job. Corresponds to the JSON property parameters

Returns:

  • (Hash<String,String>)


5029
5030
5031
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5029

def parameters
  @parameters
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5048
5049
5050
5051
5052
5053
5054
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5048

def update!(**args)
  @environment = args[:environment] if args.key?(:environment)
  @location = args[:location] if args.key?(:location)
  @parameters = args[:parameters] if args.key?(:parameters)
  @job_name = args[:job_name] if args.key?(:job_name)
  @gcs_path = args[:gcs_path] if args.key?(:gcs_path)
end