VAppNetworkDescriptor_IpScope

VAppNetworkDescriptor_IpScope
VAppNetworkDescriptor_IpScope

Specify network settings like gateway, network mask, DNS servers, IP ranges, etc.

JSON Example
{
    "allocatedIpAddresses": [
        "10.71.81.55"
    ],
    "dnsSuffix": "acme.com",
    "gateway": "192.168.4.1",
    "ipRanges": [
        {
            "startAddress": "10.71.80.0",
            "endAddress": "10.71.80.255"
        }
    ],
    "isEnabled": true,
    "isInherited": true,
    "netmask": "255.255.225.0",
    "primaryDns": "8.8.8.8",
    "secondaryDns": "8.8.4.4"
}
array of string
allocatedIpAddresses
Optional

Read-only list of allocated IP addresses in the network.

string
dnsSuffix
Optional

The DNS suffix.

string
gateway
Optional

The gateway of the network.

ipRanges
Optional

IP ranges used for static pool allocation in the network.

boolean
isEnabled
Optional

Indicates if subnet is enabled or not. Default value is true.

boolean
isInherited
Optional

Indicates whether the IP scope is inherit from parent network.

string
netmask
Optional

Contains the network mask.

string
primaryDns
Optional

The primary DNS server.

string
secondaryDns
Optional

The secondary DNS server.