public sealed class ContainerStartedEvent : IMessage<ContainerStartedEvent>, IEquatable<ContainerStartedEvent>, IDeepCloneable<ContainerStartedEvent>, IBufferMessage, IMessage
An event generated when a container starts.
Implements
IMessage<ContainerStartedEvent>, IEquatable<ContainerStartedEvent>, IDeepCloneable<ContainerStartedEvent>, IBufferMessage, IMessageNamespace
Google.Cloud.LifeSciences.V2BetaAssembly
Google.Cloud.LifeSciences.V2Beta.dll
Constructors
ContainerStartedEvent()
public ContainerStartedEvent()
ContainerStartedEvent(ContainerStartedEvent)
public ContainerStartedEvent(ContainerStartedEvent other)
Parameter | |
---|---|
Name | Description |
other | ContainerStartedEvent |
Properties
ActionId
public int ActionId { get; set; }
The numeric ID of the action that started this container.
Property Value | |
---|---|
Type | Description |
Int32 |
IpAddress
public string IpAddress { get; set; }
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.
Property Value | |
---|---|
Type | Description |
String |
PortMappings
public MapField<int, int> PortMappings { get; }
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.
Property Value | |
---|---|
Type | Description |
MapField<Int32, Int32> |