VirtualMachineListResult

The List Virtual Machine operation response.

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
value array The list of virtual machines.
nextLink string The URI to fetch the next page of VMs. Call ListNext() with this URI to fetch the next page.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-virtual-machines-virtualmachinelistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualMachineListResult",
  "title": "VirtualMachineListResult",
  "type": "object",
  "description": "The List Virtual Machine operation response.",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VirtualMachine"
      },
      "description": "The list of virtual machines."
    },
    "nextLink": {
      "type": "string",
      "format": "uri",
      "description": "The URI to fetch the next page of VMs. Call ListNext() with this URI to fetch the next page."
    }
  }
}