Class: Google::Apis::GenomicsV1alpha2::WorkerAssignedEvent

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

Overview

An event generated after 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.



1405
1406
1407
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1405

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

Instance Attribute Details

#instanceString

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

Returns:

  • (String)


1393
1394
1395
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1393

def instance
  @instance
end

#machine_typeString

The machine type that was assigned for the worker. Corresponds to the JSON property machineType

Returns:

  • (String)


1398
1399
1400
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1398

def machine_type
  @machine_type
end

#zoneString

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

Returns:

  • (String)


1403
1404
1405
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1403

def zone
  @zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1410
1411
1412
1413
1414
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1410

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