Webex · Schema
BlrClusterDetails
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| clusterId | string | ID of the Video Mesh cluster. |
| clusterName | string | Name of the Video Mesh cluster. |
| nodes | array | The Video Mesh nodes in the cluster. |
| releaseChannel | string | Release Channel of the Video Mesh cluster. |
| upgradeSchedule | object | Upgrade Schedule details of the Video Mesh cluster. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BlrClusterDetails",
"title": "BlrClusterDetails",
"type": "object",
"properties": {
"clusterId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL0hZQlJJRF9DTFVTVEVSLzFlYjY1ZmRmLTk2NDMtNDE3Zi05OTc0LWFkNzJjYWUwZTEwZjpiMzdmNTgzYy1kZGRjLTQyOGItODJlNS1jYmU2ODFkYjQ5NjI",
"description": "ID of the Video Mesh cluster."
},
"clusterName": {
"type": "string",
"example": "Bangalore",
"description": "Name of the Video Mesh cluster."
},
"nodes": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/components/schemas/BlrNode1"
},
{
"$ref": "#/components/schemas/BlrNode2"
}
]
},
"description": "The Video Mesh nodes in the cluster."
},
"releaseChannel": {
"type": "string",
"example": "alpha",
"description": "Release Channel of the Video Mesh cluster."
},
"upgradeSchedule": {
"$ref": "#/components/schemas/ClusterUpgradeScheduleBlr",
"description": "Upgrade Schedule details of the Video Mesh cluster."
}
}
}