Class: Google::Apis::DataflowV1b3::RuntimeEnvironment
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::RuntimeEnvironment
- 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
The environment values to set at runtime.
Instance Attribute Summary collapse
-
#bypass_temp_dir_validation ⇒ Boolean
(also: #bypass_temp_dir_validation?)
Whether to bypass the safety checks for the job's temporary directory.
-
#machine_type ⇒ String
The machine type to use for the job.
-
#max_workers ⇒ Fixnum
The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to 1000.
-
#service_account_email ⇒ String
The email address of the service account to run the job as.
-
#temp_location ⇒ String
The Cloud Storage path to use for temporary files.
-
#zone ⇒ String
The Compute Engine availability zone for launching worker instances to run your pipeline.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RuntimeEnvironment
constructor
A new instance of RuntimeEnvironment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RuntimeEnvironment
Returns a new instance of RuntimeEnvironment
4582 4583 4584 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4582 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bypass_temp_dir_validation ⇒ Boolean Also known as: bypass_temp_dir_validation?
Whether to bypass the safety checks for the job's temporary directory.
Use with caution.
Corresponds to the JSON property bypassTempDirValidation
4562 4563 4564 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4562 def bypass_temp_dir_validation @bypass_temp_dir_validation end |
#machine_type ⇒ String
The machine type to use for the job. Defaults to the value from the
template if not specified.
Corresponds to the JSON property machineType
4580 4581 4582 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4580 def machine_type @machine_type end |
#max_workers ⇒ Fixnum
The maximum number of Google Compute Engine instances to be made
available to your pipeline during execution, from 1 to 1000.
Corresponds to the JSON property maxWorkers
4556 4557 4558 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4556 def max_workers @max_workers end |
#service_account_email ⇒ String
The email address of the service account to run the job as.
Corresponds to the JSON property serviceAccountEmail
4568 4569 4570 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4568 def service_account_email @service_account_email end |
#temp_location ⇒ String
The Cloud Storage path to use for temporary files.
Must be a valid Cloud Storage URL, beginning with gs://
.
Corresponds to the JSON property tempLocation
4574 4575 4576 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4574 def temp_location @temp_location end |
#zone ⇒ String
The Compute Engine availability
zone
for launching worker instances to run your pipeline.
Corresponds to the JSON property zone
4550 4551 4552 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4550 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4587 4588 4589 4590 4591 4592 4593 4594 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4587 def update!(**args) @zone = args[:zone] if args.key?(:zone) @max_workers = args[:max_workers] if args.key?(:max_workers) @bypass_temp_dir_validation = args[:bypass_temp_dir_validation] if args.key?(:bypass_temp_dir_validation) @service_account_email = args[:service_account_email] if args.key?(:service_account_email) @temp_location = args[:temp_location] if args.key?(:temp_location) @machine_type = args[:machine_type] if args.key?(:machine_type) end |