Class: Google::Apis::LifesciencesV2beta::ContainerStartedEvent

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/lifesciences_v2beta/classes.rb,
lib/google/apis/lifesciences_v2beta/representations.rb,
lib/google/apis/lifesciences_v2beta/representations.rb

Overview

An event generated when a container starts.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ContainerStartedEvent

Returns a new instance of ContainerStartedEvent.



318
319
320
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 318

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#action_idFixnum

The numeric ID of the action that started this container. Corresponds to the JSON property actionId

Returns:

  • (Fixnum)


301
302
303
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 301

def action_id
  @action_id
end

#ip_addressString

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

Returns:

  • (String)


309
310
311
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 309

def ip_address
  @ip_address
end

#port_mappingsHash<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

Returns:

  • (Hash<String,Fixnum>)


316
317
318
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 316

def port_mappings
  @port_mappings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



323
324
325
326
327
# 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