Class: Google::Apis::GenomicsV1::WorkerAssignedEvent

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/genomics_v1/classes.rb,
generated/google/apis/genomics_v1/representations.rb,
generated/google/apis/genomics_v1/representations.rb

Overview

This event is generated once a worker VM has been assigned to run the pipeline.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ WorkerAssignedEvent

Returns a new instance of WorkerAssignedEvent



3709
3710
3711
# File 'generated/google/apis/genomics_v1/classes.rb', line 3709

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#instanceString

The worker's instance name. Corresponds to the JSON property instance

Returns:

  • (String)


3702
3703
3704
# File 'generated/google/apis/genomics_v1/classes.rb', line 3702

def instance
  @instance
end

#zoneString

The zone the worker is running in. Corresponds to the JSON property zone

Returns:

  • (String)


3707
3708
3709
# File 'generated/google/apis/genomics_v1/classes.rb', line 3707

def zone
  @zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3714
3715
3716
3717
# File 'generated/google/apis/genomics_v1/classes.rb', line 3714

def update!(**args)
  @instance = args[:instance] if args.key?(:instance)
  @zone = args[:zone] if args.key?(:zone)
end