Citrix · Schema
DeliveryGroup
Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the delivery group |
| name | string | Name of the delivery group |
| description | string | Description of the delivery group |
| enabled | boolean | Whether the delivery group is enabled |
| totalMachines | integer | Total number of machines in the group |
| sessionsCount | integer | Current number of active sessions |
| deliveryType | string | Type of resources delivered |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DeliveryGroup",
"title": "DeliveryGroup",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the delivery group"
},
"name": {
"type": "string",
"description": "Name of the delivery group"
},
"description": {
"type": "string",
"description": "Description of the delivery group"
},
"enabled": {
"type": "boolean",
"description": "Whether the delivery group is enabled"
},
"totalMachines": {
"type": "integer",
"description": "Total number of machines in the group"
},
"sessionsCount": {
"type": "integer",
"description": "Current number of active sessions"
},
"deliveryType": {
"type": "string",
"enum": [
"DesktopsOnly",
"AppsOnly",
"DesktopsAndApps"
],
"description": "Type of resources delivered"
}
}
}