Class: Google::Apis::LifesciencesV2beta::WorkerReleasedEvent
- Inherits:
-
Object
- Object
- Google::Apis::LifesciencesV2beta::WorkerReleasedEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/lifesciences_v2beta/classes.rb,
lib/google/apis/lifesciences_v2beta/representations.rb,
lib/google/apis/lifesciences_v2beta/representations.rb
Overview
An event generated when the worker VM that was assigned to the pipeline has been released (deleted).
Instance Attribute Summary collapse
-
#instance ⇒ String
The worker's instance name.
-
#zone ⇒ String
The zone the worker was running in.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WorkerReleasedEvent
constructor
A new instance of WorkerReleasedEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WorkerReleasedEvent
Returns a new instance of WorkerReleasedEvent.
1477 1478 1479 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1477 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instance ⇒ String
The worker's instance name.
Corresponds to the JSON property instance
1470 1471 1472 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1470 def instance @instance end |
#zone ⇒ String
The zone the worker was running in.
Corresponds to the JSON property zone
1475 1476 1477 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1475 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1482 1483 1484 1485 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1482 def update!(**args) @instance = args[:instance] if args.key?(:instance) @zone = args[:zone] if args.key?(:zone) end |