Class NetworkArgs
Inherited Members
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
Assembly: Pulumi.Docker.dll
Syntax
public sealed class NetworkArgs : ResourceArgs
Constructors
View SourceNetworkArgs()
Declaration
public NetworkArgs()
Properties
View SourceAttachable
Enable manual container attachment to the network.
Defaults to false.
Declaration
public Input<bool> Attachable { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
CheckDuplicate
Requests daemon to check for networks with same name.
Declaration
public Input<bool> CheckDuplicate { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Driver
Name of the network driver to use. Defaults to
bridge driver.
Declaration
public Input<string> Driver { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Ingress
Create swarm routing-mesh network.
Defaults to false.
Declaration
public Input<bool> Ingress { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Internal
Restrict external access to the network.
Defaults to false.
Declaration
public Input<bool> Internal { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
IpamConfigs
See IPAM config below for details.
Declaration
public InputList<NetworkIpamConfigArgs> IpamConfigs { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<NetworkIpamConfigArgs> |
IpamDriver
Driver used by the custom IP scheme of the network.
Declaration
public Input<string> IpamDriver { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Ipv6
Enable IPv6 networking.
Defaults to false.
Declaration
public Input<bool> Ipv6 { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Labels
See Labels below for details.
Declaration
public InputList<NetworkLabelArgs> Labels { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<NetworkLabelArgs> |
Name
The name of the Docker network.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Options
Network specific options to be used by the drivers.
Declaration
public InputMap<object> Options { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.Object> |