Class: Google::Apis::GenomicsV1alpha2::ContainerStartedEvent
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GenomicsV1alpha2::ContainerStartedEvent
 
- 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
This event is generated when a container starts.
Instance Attribute Summary collapse
- 
  
    
      #action_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The numeric ID of the action that started this container. 
- 
  
    
      #ip_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The public IP address that can be used to connect to the container. 
- 
  
    
      #port_mappings  ⇒ Hash<String,Fixnum> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The container to host port mappings installed for this container. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ContainerStartedEvent 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ContainerStartedEvent. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ContainerStartedEvent
Returns a new instance of ContainerStartedEvent
| 100 101 102 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 100 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
| 83 84 85 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 83 def action_id @action_id end | 
#ip_address ⇒ String
The public IP address that can be used to connect to the container.  This
field is only populated when at least one port mapping is present.  If the
instance was created with a private address this field will be empty even
if port mappings exist.
Corresponds to the JSON property ipAddress
| 91 92 93 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 91 def ip_address @ip_address end | 
#port_mappings ⇒ Hash<String,Fixnum>
The container to host port mappings installed for this container.  This
set will contain any ports exposed using the PUBLISH_EXPOSED_PORTS flag as
well as any specified in the Action definition.
Corresponds to the JSON property portMappings
| 98 99 100 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 98 def port_mappings @port_mappings end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 105 106 107 108 109 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 105 def update!(**args) @action_id = args[:action_id] if args.key?(:action_id) @ip_address = args[:ip_address] if args.key?(:ip_address) @port_mappings = args[:port_mappings] if args.key?(:port_mappings) end |