VirtualMachineCaptureResult

Output of virtual machine capture operation.

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
id string Resource Id.
$schema string The schema of the captured virtual machine.
contentVersion string The version of the content.
parameters object The parameters of the captured virtual machine.
resources array A list of resource items of the captured virtual machine.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-virtual-machines-virtualmachinecaptureresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualMachineCaptureResult",
  "title": "VirtualMachineCaptureResult",
  "type": "object",
  "description": "Output of virtual machine capture operation.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Resource Id."
    },
    "$schema": {
      "type": "string",
      "readOnly": true,
      "description": "The schema of the captured virtual machine."
    },
    "contentVersion": {
      "type": "string",
      "readOnly": true,
      "description": "The version of the content."
    },
    "parameters": {
      "type": "object",
      "readOnly": true,
      "description": "The parameters of the captured virtual machine."
    },
    "resources": {
      "type": "array",
      "readOnly": true,
      "items": {
        "type": "object"
      },
      "description": "A list of resource items of the captured virtual machine."
    }
  }
}