InstanceViewStatus

Instance view status.

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
code string The status code.
level string The level code.
displayStatus string The short localizable label for the status.
message string The detailed status message.
time string The time of the status.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-virtual-machines-instanceviewstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InstanceViewStatus",
  "title": "InstanceViewStatus",
  "type": "object",
  "description": "Instance view status.",
  "properties": {
    "code": {
      "type": "string",
      "description": "The status code."
    },
    "level": {
      "type": "string",
      "description": "The level code.",
      "enum": [
        "Info",
        "Warning",
        "Error"
      ]
    },
    "displayStatus": {
      "type": "string",
      "description": "The short localizable label for the status."
    },
    "message": {
      "type": "string",
      "description": "The detailed status message."
    },
    "time": {
      "type": "string",
      "format": "date-time",
      "description": "The time of the status."
    }
  }
}