NetworkProfile

Specifies the network interfaces or the networking configuration of the virtual machine.

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
networkInterfaces array Specifies the list of resource IDs for the network interfaces associated with the virtual machine.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-virtual-machines-networkprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NetworkProfile",
  "title": "NetworkProfile",
  "type": "object",
  "description": "Specifies the network interfaces or the networking configuration of the virtual machine.",
  "properties": {
    "networkInterfaces": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/NetworkInterfaceReference"
      },
      "description": "Specifies the list of resource IDs for the network interfaces associated with the virtual machine."
    }
  }
}