Class: Google::Apis::GenomicsV1::ContainerStoppedEvent
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GenomicsV1::ContainerStoppedEvent
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1/classes.rb,
 generated/google/apis/genomics_v1/representations.rb,
 generated/google/apis/genomics_v1/representations.rb
Overview
This event is generated when a container exits.
Instance Attribute Summary collapse
- 
  
    
      #action_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The numeric ID of the action that started this container. 
- 
  
    
      #exit_status  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The exit status of the container. 
- 
  
    
      #stderr  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The tail end of any content written to standard error by the container. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ContainerStoppedEvent 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ContainerStoppedEvent. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ContainerStoppedEvent
Returns a new instance of ContainerStoppedEvent
| 547 548 549 | # File 'generated/google/apis/genomics_v1/classes.rb', line 547 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#action_id ⇒ Fixnum
The numeric ID of the action that started this container.
Corresponds to the JSON property actionId
| 529 530 531 | # File 'generated/google/apis/genomics_v1/classes.rb', line 529 def action_id @action_id end | 
#exit_status ⇒ Fixnum
The exit status of the container.
Corresponds to the JSON property exitStatus
| 534 535 536 | # File 'generated/google/apis/genomics_v1/classes.rb', line 534 def exit_status @exit_status end | 
#stderr ⇒ String
The tail end of any content written to standard error by the container.
To prevent this from being recorded if the action is known to emit
large amounts of debugging noise or sensitive information, set the
DISABLE_STANDARD_ERROR_CAPTURE flag.
Note that only a small amount of the end of the stream is captured here.
The entire stream is stored in the /google/logs directory mounted into
each action, and may be copied off the machine as described elsewhere.
Corresponds to the JSON property stderr
| 545 546 547 | # File 'generated/google/apis/genomics_v1/classes.rb', line 545 def stderr @stderr end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 552 553 554 555 556 | # File 'generated/google/apis/genomics_v1/classes.rb', line 552 def update!(**args) @action_id = args[:action_id] if args.key?(:action_id) @exit_status = args[:exit_status] if args.key?(:exit_status) @stderr = args[:stderr] if args.key?(:stderr) end |