class Google::Apis::GenomicsV1::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_v1/classes.rb, line 1083
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 1088
def update!(**args)
  @instance = args[:instance] if args.key?(:instance)
  @zone = args[:zone] if args.key?(:zone)
end