Class: Google::Apis::GenomicsV2alpha1::WorkerAssignedEvent

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/genomics_v2alpha1/classes.rb,
lib/google/apis/genomics_v2alpha1/representations.rb,
lib/google/apis/genomics_v2alpha1/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

Constructor Details

#initialize(**args) ⇒ WorkerAssignedEvent

Returns a new instance of WorkerAssignedEvent.



1527
1528
1529
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 1527

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

Instance Attribute Details

#instanceString

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

Returns:

  • (String)


1515
1516
1517
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 1515

def instance
  @instance
end

#machine_typeString

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

Returns:

  • (String)


1520
1521
1522
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 1520

def machine_type
  @machine_type
end

#zoneString

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

Returns:

  • (String)


1525
1526
1527
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 1525

def zone
  @zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1532
1533
1534
1535
1536
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 1532

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