Class: Google::Apis::DataflowV1b3::CreateJobFromTemplateRequest
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::CreateJobFromTemplateRequest
- 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
-
#environment ⇒ Google::Apis::DataflowV1b3::RuntimeEnvironment
The environment values to set at runtime.
-
#gcs_path ⇒ String
Required.
-
#job_name ⇒ String
Required.
-
#location ⇒ String
The location to which to direct the request.
-
#parameters ⇒ Hash<String,String>
The runtime parameters to pass to the job.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateJobFromTemplateRequest
constructor
A new instance of CreateJobFromTemplateRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreateJobFromTemplateRequest
Returns a new instance of CreateJobFromTemplateRequest
3849 3850 3851 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3849 def initialize(**args) update!(**args) end |
Instance Attribute Details
#environment ⇒ Google::Apis::DataflowV1b3::RuntimeEnvironment
The environment values to set at runtime.
Corresponds to the JSON property environment
3837 3838 3839 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3837 def environment @environment end |
#gcs_path ⇒ String
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
3832 3833 3834 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3832 def gcs_path @gcs_path end |
#job_name ⇒ String
Required. The job name to use for the created job.
Corresponds to the JSON property jobName
3825 3826 3827 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3825 def job_name @job_name end |
#location ⇒ String
The location to which to direct the request.
Corresponds to the JSON property location
3842 3843 3844 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3842 def location @location end |
#parameters ⇒ Hash<String,String>
The runtime parameters to pass to the job.
Corresponds to the JSON property parameters
3847 3848 3849 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3847 def parameters @parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3854 3855 3856 3857 3858 3859 3860 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3854 def update!(**args) @job_name = args[:job_name] if args.key?(:job_name) @gcs_path = args[:gcs_path] if args.key?(:gcs_path) @environment = args[:environment] if args.key?(:environment) @location = args[:location] if args.key?(:location) @parameters = args[:parameters] if args.key?(:parameters) end |