class Google::Apis::GenomicsV1alpha2::WorkerReleasedEvent
An event generated when the worker VM that was assigned to the pipeline has been released (deleted).
Attributes
instance[RW]
The worker's instance name. Corresponds to the JSON property `instance` @return [String]
zone[RW]
The zone the worker was running in. Corresponds to the JSON property `zone` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 1365 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_v1alpha2/classes.rb, line 1370 def update!(**args) @instance = args[:instance] if args.key?(:instance) @zone = args[:zone] if args.key?(:zone) end