class Google::Apis::GenomicsV1::WorkerAssignedEvent
An event generated after a worker VM has been assigned to run the pipeline.
Attributes
instance[RW]
The worker's instance name. Corresponds to the JSON property `instance` @return [String]
machine_type[RW]
The machine type that was assigned for the worker. Corresponds to the JSON property `machineType` @return [String]
zone[RW]
The zone the worker is running in. Corresponds to the JSON property `zone` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v1/classes.rb, line 1056 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/genomics_v1/classes.rb, line 1061 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