Class: Google::Apis::LifesciencesV2beta::DelayedEvent
- Inherits:
-
Object
- Object
- Google::Apis::LifesciencesV2beta::DelayedEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/lifesciences_v2beta/classes.rb,
generated/google/apis/lifesciences_v2beta/representations.rb,
generated/google/apis/lifesciences_v2beta/representations.rb
Overview
An event generated whenever a resource limitation or transient error delays execution of a pipeline that was otherwise ready to run.
Instance Attribute Summary collapse
-
#cause ⇒ String
A textual description of the cause of the delay.
-
#metrics ⇒ Array<String>
If the delay was caused by a resource shortage, this field lists the Compute Engine metrics that are preventing this operation from running (for example,
CPUS
orINSTANCES
).
Instance Method Summary collapse
-
#initialize(**args) ⇒ DelayedEvent
constructor
A new instance of DelayedEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DelayedEvent
Returns a new instance of DelayedEvent.
373 374 375 |
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 373 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cause ⇒ String
A textual description of the cause of the delay. The string can change without
notice because it is often generated by another service (such as Compute
Engine).
Corresponds to the JSON property cause
363 364 365 |
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 363 def cause @cause end |
#metrics ⇒ Array<String>
If the delay was caused by a resource shortage, this field lists the Compute
Engine metrics that are preventing this operation from running (for example,
CPUS
or INSTANCES
). If the particular metric is not known, a single
UNKNOWN
metric will be present.
Corresponds to the JSON property metrics
371 372 373 |
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 371 def metrics @metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
378 379 380 381 |
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 378 def update!(**args) @cause = args[:cause] if args.key?(:cause) @metrics = args[:metrics] if args.key?(:metrics) end |