Class: Google::Apis::GenomicsV1alpha2::WorkerReleasedEvent
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GenomicsV1alpha2::WorkerReleasedEvent
 
 
- 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 when the worker VM that was assigned to the pipeline has been released (deleted).
Instance Attribute Summary collapse
- 
  
    
      #instance  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The worker's instance name.
 - 
  
    
      #zone  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The zone the worker was running in.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ WorkerReleasedEvent 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of WorkerReleasedEvent.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ WorkerReleasedEvent
Returns a new instance of WorkerReleasedEvent
      1532 1533 1534  | 
    
      # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1532 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#instance ⇒ String
The worker's instance name.
Corresponds to the JSON property instance
      1525 1526 1527  | 
    
      # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1525 def instance @instance end  | 
  
#zone ⇒ String
The zone the worker was running in.
Corresponds to the JSON property zone
      1530 1531 1532  | 
    
      # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1530 def zone @zone end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1537 1538 1539 1540  | 
    
      # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1537 def update!(**args) @instance = args[:instance] if args.key?(:instance) @zone = args[:zone] if args.key?(:zone) end  |