appliance techpreview networking ipv6: I pv6 config read only

I_pv6_config_read_only structure Structure that defines an existing IPv6 configuration on a particular interface. This structure is read only.

Representations:

{
    "addresses"[
        {
            "address""string",
            "origin""dhcp",
            "prefix"1,
            "status""tentative"
        },
        {
            "address""string",
            "origin""dhcp",
            "prefix"1,
            "status""tentative"
        }
    ],
    "autoconf"true,
    "default_gateway""string",
    "dhcp"true,
    "interface_name""string",
    "updateable"true
}
<?xml version="1.0" ?>
<ns0:IPv6ConfigReadOnly xmlns:ns0="http://vmware.com/appliance/techpreview/networking/ipv6" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <updateable>true</updateable>
  <dhcp>true</dhcp>
  <interface_name>string</interface_name>
  <default_gateway>string</default_gateway>
  <addresses-array>
    <array-item>
      <status>tentative</status>
      <address>string</address>
      <prefix>1</prefix>
      <origin>dhcp</origin>
    </array-item>
    <array-item>
      <status>tentative</status>
      <address>string</address>
      <prefix>1</prefix>
      <origin>dhcp</origin>
    </array-item>
  </addresses-array>
  <autoconf>true</autoconf>
</ns0:IPv6ConfigReadOnly>

Attributes:

Name Type Description
Required
interface_name string Network interface, for example, "nic0" queried.

dhcp boolean Address assigned by a DHCP server.

autoconf boolean Address is assigned by Stateless Address Autoconfiguration (SLAAC).

addresses I_pv6_address_read_only[] A list of all addresses assigned to this interface. The origin field of each address determines how the address was assigned, for example, statically, by DHCP, SLAAC.

default_gateway string Default gateway. This configures the global IPv6 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.