Show / Hide Table of Contents

Class ContainerPortArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ContainerPortArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Docker.Inputs
Assembly: Pulumi.Docker.dll
Syntax
public sealed class ContainerPortArgs : ResourceArgs

Constructors

View Source

ContainerPortArgs()

Declaration
public ContainerPortArgs()

Properties

View Source

External

Port exposed out of the container. If not given a free random port >= 32768 will be used.

Declaration
public Input<int> External { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Internal

Port within the container.

Declaration
public Input<int> Internal { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Ip

IP address this hostname should resolve to.

Declaration
public Input<string> Ip { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Protocol

Protocol that can be used over this port, defaults to tcp.

Declaration
public Input<string> Protocol { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.