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
| 838 839 840 | # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 838 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#description ⇒ String
Required description of event.
Corresponds to the JSON property description
| 825 826 827 | # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 825 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
| 831 832 833 | # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 831 def end_time @end_time end | 
#start_time ⇒ String
Optional time of when event started.
Corresponds to the JSON property startTime
| 836 837 838 | # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 836 def start_time @start_time end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 843 844 845 846 847 | # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 843 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 |