Get software cache details for specific server
Select
Get software cache details for specific server
Path Parameters
- clientId int32 required
Software cache client id
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
cache object
id int32name string- cacheDirectory string
The software cache directory path where the media will be located
- enabled boolean
Whether the software cache is enabled or not
- configurable boolean
Whether the software cache is configurable
- status SyncStatusTypes
Possible values: [
OUT_OF_SYNC
,IN_SYNC
]The status of the software cache for server. Either In Sync or Out of Sync with CommServe cache
associations object[]
List of servers and server groups.
id int32Id of server or server group
name stringName of server or server group
type ServerOrServerGroupTypesPossible values: [
SERVER
,SERVER_GROUP
]cacheContents object[]
List of cache content details of software cache.
osName stringOS Name of the media available in software cache
version stringVersion of the media available in software cache
additionalUpdates stringList of additional updates available in software cache
packagesInCache stringList of packages available in the software cache
{
"cache": {
"id": 0,
"name": "string"
},
"cacheDirectory": "string",
"enabled": true,
"configurable": true,
"status": "OUT_OF_SYNC",
"associations": [
{
"id": 0,
"name": "string",
"type": "SERVER"
}
],
"cacheContents": [
{
"osName": "string",
"version": "string",
"additionalUpdates": "string",
"packagesInCache": "string"
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}