class Google::Apis::LifesciencesV2beta::ContainerStartedEvent

An event generated when a container starts.

Attributes

action_id[RW]

The numeric ID of the action that started this container. Corresponds to the JSON property `actionId` @return [Fixnum]

ip_address[RW]

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` @return [String]

port_mappings[RW]

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` @return [Hash<String,Fixnum>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/lifesciences_v2beta/classes.rb, line 318
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/lifesciences_v2beta/classes.rb, line 323
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