Citrix · Schema

LaunchStatus

Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000

Properties

Name Type Description
status string Whether the resource is ready to launch
pollTimeout integer Seconds to wait before polling again
View JSON Schema on GitHub

JSON Schema

citrix-launchstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LaunchStatus",
  "title": "LaunchStatus",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "ready",
        "notReady"
      ],
      "description": "Whether the resource is ready to launch"
    },
    "pollTimeout": {
      "type": "integer",
      "description": "Seconds to wait before polling again"
    }
  }
}