Class: Google::Apis::GenomicsV2alpha1::OperationEvent
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GenomicsV2alpha1::OperationEvent
 
 
- 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 that occurred during an Operation.
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required description of event.
 - 
  
    
      #end_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional time of when event finished.
 - 
  
    
      #start_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional time of when event started.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OperationEvent 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OperationEvent.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OperationEvent
Returns a new instance of OperationEvent
      923 924 925  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 923 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#description ⇒ String
Required description of event.
Corresponds to the JSON property description
      910 911 912  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 910 def description @description end  | 
  
#end_time ⇒ String
Optional time of when event finished. An event can have a start time and no
finish time. If an event has a finish time, there must be a start time.
Corresponds to the JSON property endTime
      916 917 918  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 916 def end_time @end_time end  | 
  
#start_time ⇒ String
Optional time of when event started.
Corresponds to the JSON property startTime
      921 922 923  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 921 def start_time @start_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      928 929 930 931 932  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 928 def update!(**args) @description = args[:description] if args.key?(:description) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end  |