Ipam Properties
Class Properties 3 members
Represents the IP Address Management (IPAM) configuration for a Docker network.
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; } 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; } A collection of key-value pairs representing options for the IPAM configuration.
public Dictionary<string, string> Options { get; set; }Remarks
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.