VMware · Schema

EthernetInfo

Detailed virtual network adapter configuration

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
label string Display label of the adapter
type string Adapter emulation type
mac_type string MAC address type
mac_address string MAC address of the adapter
state string Connection state
start_connected boolean Whether the adapter connects at power on
backing object Network backing information
allow_guest_control boolean Whether guest OS can change adapter settings
wake_on_lan_enabled boolean
View JSON Schema on GitHub

JSON Schema

vmware-vsphere-ethernet-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EthernetInfo",
  "type": "object",
  "description": "Detailed virtual network adapter configuration",
  "properties": {
    "label": {
      "type": "string",
      "description": "Display label of the adapter"
    },
    "type": {
      "type": "string",
      "description": "Adapter emulation type"
    },
    "mac_type": {
      "type": "string",
      "description": "MAC address type"
    },
    "mac_address": {
      "type": "string",
      "description": "MAC address of the adapter"
    },
    "state": {
      "type": "string",
      "description": "Connection state"
    },
    "start_connected": {
      "type": "boolean",
      "description": "Whether the adapter connects at power on"
    },
    "backing": {
      "type": "object",
      "description": "Network backing information"
    },
    "allow_guest_control": {
      "type": "boolean",
      "description": "Whether guest OS can change adapter settings"
    },
    "wake_on_lan_enabled": {
      "type": "boolean"
    }
  }
}