Class: Google::Apis::LifesciencesV2beta::WorkerReleasedEvent

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

Overview

An event generated when the worker VM that was assigned to the pipeline has been released (deleted).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WorkerReleasedEvent

Returns a new instance of WorkerReleasedEvent.



1457
1458
1459
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1457

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

Instance Attribute Details

#instanceString

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

Returns:

  • (String)


1450
1451
1452
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1450

def instance
  @instance
end

#zoneString

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

Returns:

  • (String)


1455
1456
1457
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1455

def zone
  @zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1462
1463
1464
1465
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 1462

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