Class: Google::Apis::GenomicsV2alpha1::WorkerAssignedEvent
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV2alpha1::WorkerAssignedEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/genomics_v2alpha1/classes.rb,
lib/google/apis/genomics_v2alpha1/representations.rb,
lib/google/apis/genomics_v2alpha1/representations.rb
Overview
An event generated after a worker VM has been assigned to run the pipeline.
Instance Attribute Summary collapse
-
#instance ⇒ String
The worker's instance name.
-
#machine_type ⇒ String
The machine type that was assigned for the worker.
-
#zone ⇒ String
The zone the worker is running in.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WorkerAssignedEvent
constructor
A new instance of WorkerAssignedEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WorkerAssignedEvent
Returns a new instance of WorkerAssignedEvent.
1392 1393 1394 |
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 1392 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instance ⇒ String
The worker's instance name.
Corresponds to the JSON property instance
1380 1381 1382 |
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 1380 def instance @instance end |
#machine_type ⇒ String
The machine type that was assigned for the worker.
Corresponds to the JSON property machineType
1385 1386 1387 |
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 1385 def machine_type @machine_type end |
#zone ⇒ String
The zone the worker is running in.
Corresponds to the JSON property zone
1390 1391 1392 |
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 1390 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1397 1398 1399 1400 1401 |
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 1397 def update!(**args) @instance = args[:instance] if args.key?(:instance) @machine_type = args[:machine_type] if args.key?(:machine_type) @zone = args[:zone] if args.key?(:zone) end |