Class: Google::Apis::GenomicsV1alpha2::WorkerAssignedEvent
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1alpha2::WorkerAssignedEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1alpha2/classes.rb,
generated/google/apis/genomics_v1alpha2/representations.rb,
generated/google/apis/genomics_v1alpha2/representations.rb
Overview
This event is generated once a worker VM has been assigned to run the pipeline.
Instance Attribute Summary collapse
-
#instance ⇒ String
The worker's instance name.
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ WorkerAssignedEvent
Returns a new instance of WorkerAssignedEvent
1459 1460 1461 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1459 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instance ⇒ String
The worker's instance name.
Corresponds to the JSON property instance
1452 1453 1454 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1452 def instance @instance end |
#zone ⇒ String
The zone the worker is running in.
Corresponds to the JSON property zone
1457 1458 1459 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1457 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1464 1465 1466 1467 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1464 def update!(**args) @instance = args[:instance] if args.key?(:instance) @zone = args[:zone] if args.key?(:zone) end |