Class: Google::Apis::GenomicsV2alpha1::WorkerAssignedEvent
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GenomicsV2alpha1::WorkerAssignedEvent
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/genomics_v2alpha1/classes.rb,
generated/google/apis/genomics_v2alpha1/representations.rb,
generated/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  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The worker's instance name.
 - 
  
    
      #zone  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The zone the worker is running in.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ WorkerAssignedEvent 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of WorkerAssignedEvent.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ WorkerAssignedEvent
Returns a new instance of WorkerAssignedEvent
      1474 1475 1476  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1474 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#instance ⇒ String
The worker's instance name.
Corresponds to the JSON property instance
      1467 1468 1469  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1467 def instance @instance end  | 
  
#zone ⇒ String
The zone the worker is running in.
Corresponds to the JSON property zone
      1472 1473 1474  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1472 def zone @zone end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1479 1480 1481 1482  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1479 def update!(**args) @instance = args[:instance] if args.key?(:instance) @zone = args[:zone] if args.key?(:zone) end  |