Class: Google::Apis::GenomicsV1alpha2::PullStartedEvent
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GenomicsV1alpha2::PullStartedEvent
 
 
- 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 starts pulling an image.
Instance Attribute Summary collapse
- 
  
    
      #image_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URI of the image that was pulled.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PullStartedEvent 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PullStartedEvent.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PullStartedEvent
Returns a new instance of PullStartedEvent
      1075 1076 1077  | 
    
      # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1075 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#image_uri ⇒ String
The URI of the image that was pulled.
Corresponds to the JSON property imageUri
      1073 1074 1075  | 
    
      # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1073 def image_uri @image_uri end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1080 1081 1082  | 
    
      # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1080 def update!(**args) @image_uri = args[:image_uri] if args.key?(:image_uri) end  |