Class: Google::Apis::GenomicsV1alpha2::OperationEvent
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1alpha2::OperationEvent
- 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 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.
Constructor Details
#initialize(**args) ⇒ OperationEvent
Returns a new instance of OperationEvent.
619 620 621 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 619 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Required description of event.
Corresponds to the JSON property description
606 607 608 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 606 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
612 613 614 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 612 def end_time @end_time end |
#start_time ⇒ String
Optional time of when event started.
Corresponds to the JSON property startTime
617 618 619 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 617 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
624 625 626 627 628 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 624 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 |