RunCommandInput

Capture virtual machine parameters.

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
commandId string The run command id.
script array Optional. The script to be executed.
parameters array The run command parameters.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-virtual-machines-runcommandinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RunCommandInput",
  "title": "RunCommandInput",
  "type": "object",
  "description": "Capture virtual machine parameters.",
  "required": [
    "commandId"
  ],
  "properties": {
    "commandId": {
      "type": "string",
      "description": "The run command id."
    },
    "script": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Optional. The script to be executed."
    },
    "parameters": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "The run command parameter name."
          },
          "value": {
            "type": "string",
            "description": "The run command parameter value."
          }
        }
      },
      "description": "The run command parameters."
    }
  }
}