Apache CloudStack · Schema

AsyncJobResponse

Response returned when an asynchronous CloudStack API operation is initiated.

ApacheCloudIaaSInfrastructureOpen SourceVirtualization

Properties

Name Type Description
jobid string UUID of the asynchronous job to poll for completion.
id string UUID of the resource being created or modified.
View JSON Schema on GitHub

JSON Schema

cloudstack-api-async-job-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-cloudstack/refs/heads/main/json-schema/cloudstack-api-async-job-response-schema.json",
  "title": "AsyncJobResponse",
  "description": "Response returned when an asynchronous CloudStack API operation is initiated.",
  "type": "object",
  "properties": {
    "jobid": { "type": "string", "description": "UUID of the asynchronous job to poll for completion.", "example": "a4b6c8d0-1234-5678-90ab-cdef01234567" },
    "id": { "type": "string", "description": "UUID of the resource being created or modified.", "example": "vm-uuid-1234" }
  }
}