VirtualMachineIdentity

Identity for the virtual machine.

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
principalId string The principal id of virtual machine identity.
tenantId string The tenant id associated with the virtual machine.
type string The type of identity used for the virtual machine.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-virtual-machines-virtualmachineidentity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualMachineIdentity",
  "title": "VirtualMachineIdentity",
  "type": "object",
  "description": "Identity for the virtual machine.",
  "properties": {
    "principalId": {
      "type": "string",
      "readOnly": true,
      "description": "The principal id of virtual machine identity."
    },
    "tenantId": {
      "type": "string",
      "readOnly": true,
      "description": "The tenant id associated with the virtual machine."
    },
    "type": {
      "type": "string",
      "description": "The type of identity used for the virtual machine.",
      "enum": [
        "SystemAssigned",
        "UserAssigned",
        "SystemAssigned, UserAssigned",
        "None"
      ]
    }
  }
}