Skip to content
Docs Try Aspire

Ipam Properties

Class Properties 3 members
Represents the IP Address Management (IPAM) configuration for a Docker network.
Config Section titled Config List<Dictionary<string, string>>
Represents a configuration for IP Address Management (IPAM). This property is a collection of key-value pairs that define specific IPAM configuration settings.
public List<Dictionary<string, string>> Config { get; set; }
Driver Section titled Driver nullable string?
Gets or sets the driver used by the IPAM (IP Address Management) configuration. The driver specifies the type of IPAM driver to be used in the Docker network configuration.
public string? Driver { get; set; }
Options Section titled Options Dictionary<string, string>
A collection of key-value pairs representing options for the IPAM configuration.
public Dictionary<string, string> Options { get; set; }
The Options property allows for specifying additional configuration parameters for the IPAM (IP Address Management) system. It is represented as a dictionary where each key corresponds to a particular option name and the value corresponds to its respective setting.