Class: Google::Apis::LifesciencesV2beta::WorkerAssignedEvent
- Inherits:
-
Object
- Object
- Google::Apis::LifesciencesV2beta::WorkerAssignedEvent
- 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 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.
1450 1451 1452 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1450 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instance ⇒ String
The worker's instance name.
Corresponds to the JSON property instance
1438 1439 1440 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1438 def instance @instance end |
#machine_type ⇒ String
The machine type that was assigned for the worker.
Corresponds to the JSON property machineType
1443 1444 1445 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1443 def machine_type @machine_type end |
#zone ⇒ String
The zone the worker is running in.
Corresponds to the JSON property zone
1448 1449 1450 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1448 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1455 1456 1457 1458 1459 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1455 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 |