appliance techpreview networking ipv4: I pv4 config read only

I_pv4_config_read_only structure Structure that defines the IPv4 configuration state of a network interface.

Representations:

{
    "address""string",
    "default_gateway""string",
    "interface_name""string",
    "mode""dhcp",
    "prefix"1,
    "updateable"true
}
<?xml version="1.0" ?>
<ns0:IPv4ConfigReadOnly xmlns:ns0="http://vmware.com/appliance/techpreview/networking/ipv4" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <updateable>true</updateable>
  <address>string</address>
  <prefix>1</prefix>
  <interface_name>string</interface_name>
  <default_gateway>string</default_gateway>
  <mode>dhcp</mode>
</ns0:IPv4ConfigReadOnly>

Attributes:

Name Type Description
Required
interface_name string Interface name, for example, "nic0", "nic1".

mode string Address assignment mode.

Defines different ipv4 modes Value is one of:
dhcp: IPv4 address is automatically assigned by a DHCP server.
is_static: IPv4 address is static.
unconfigured: The IPv4 protocol is not configured.

address string IPv4 address, for example, "10.20.80.191". Set this argument to an empty string "", if the mode is "unconfigured" or "dhcp".

prefix long IPv4 CIDR prefix, for example , 24. See http://www.oav.net/mirrors/cidr.html for netmask-to-prefix conversion. Set this argument to 0 if the mode is "unconfigured" or "dhcp".

default_gateway string IPv4 address of the default gateway. This default gateway value is used if the mode argument is set to "static" This configures the global default gateway on the appliance with the specified gateway address and interface. This gateway replaces the existing default gateway configured on the appliance. However, if the gateway address is link-local, then it is added for that interface. This does not support configuration of multiple global default gateways through different interfaces.

updateable boolean This indicates if the network configuration can be updated for the interface.