Show / Hide Table of Contents

Class NetworkArgs

Inheritance
System.Object
InputArgs
ResourceArgs
NetworkArgs
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
Assembly: Pulumi.Docker.dll
Syntax
public sealed class NetworkArgs : ResourceArgs

Constructors

View Source

NetworkArgs()

Declaration
public NetworkArgs()

Properties

View Source

Attachable

Enable manual container attachment to the network. Defaults to false.

Declaration
public Input<bool> Attachable { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

CheckDuplicate

Requests daemon to check for networks with same name.

Declaration
public Input<bool> CheckDuplicate { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

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>
View Source

Ingress

Create swarm routing-mesh network. Defaults to false.

Declaration
public Input<bool> Ingress { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Internal

Restrict external access to the network. Defaults to false.

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

IpamConfigs

See IPAM config below for details.

Declaration
public InputList<NetworkIpamConfigArgs> IpamConfigs { get; set; }
Property Value
Type Description
InputList<NetworkIpamConfigArgs>
View Source

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>
View Source

Ipv6

Enable IPv6 networking. Defaults to false.

Declaration
public Input<bool> Ipv6 { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Labels

See Labels below for details.

Declaration
public InputList<NetworkLabelArgs> Labels { get; set; }
Property Value
Type Description
InputList<NetworkLabelArgs>
View Source

Name

The name of the Docker network.

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

Options

Network specific options to be used by the drivers.

Declaration
public InputMap<object> Options { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.