Class: Google::Apis::GenomicsV1alpha2::ContainerKilledEvent
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1alpha2::ContainerKilledEvent
- 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 a container is forcibly terminated by the worker. Currently, this only occurs when the container outlives the timeout specified by the user.
Instance Attribute Summary collapse
-
#action_id ⇒ Fixnum
The numeric ID of the action that started the container.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ContainerKilledEvent
constructor
A new instance of ContainerKilledEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ContainerKilledEvent
Returns a new instance of ContainerKilledEvent
87 88 89 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 87 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action_id ⇒ Fixnum
The numeric ID of the action that started the container.
Corresponds to the JSON property actionId
85 86 87 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 85 def action_id @action_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
92 93 94 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 92 def update!(**args) @action_id = args[:action_id] if args.key?(:action_id) end |