class Google::Apis::LifesciencesV2beta::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/lifesciences_v2beta/classes.rb, line 1478
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/lifesciences_v2beta/classes.rb, line 1483
def update!(**args)
  @instance = args[:instance] if args.key?(:instance)
  @zone = args[:zone] if args.key?(:zone)
end