RunCommandRequest

A run command request.

AzureCloudContainersDevOpsKubernetesOrchestration

Properties

Name Type Description
command string The command to run.
context string A base64 encoded zip file containing the files required by the command.
clusterToken string AuthToken issued for AKS AAD Server App.
View JSON Schema on GitHub

JSON Schema

azure-kubernetes-service-run-command-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RunCommandRequest",
  "type": "object",
  "description": "A run command request.",
  "properties": {
    "command": {
      "type": "string",
      "description": "The command to run."
    },
    "context": {
      "type": "string",
      "description": "A base64 encoded zip file containing the files required by the command."
    },
    "clusterToken": {
      "type": "string",
      "description": "AuthToken issued for AKS AAD Server App."
    }
  }
}