Select Content Groups
Select
SaaS
This API retrieves the list of content groups of an Azure File Share instance.
Path Parameters
- instanceId integer required
Id of the Azure File Share instance
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
contentGroups object[]
id integerContent group id
name stringContent group name
isBackupEnabled booleanBackup status
lastBackupSize integertotalBackupSize integercontents object
List of associated contents
path string[]exclusions string[]exceptions string[]plan object
Id of the associated plan
id integername stringName of the associated plan
{
"contentGroups": [
{
"id": 0,
"name": "string",
"isBackupEnabled": true,
"lastBackupSize": 0,
"totalBackupSize": 0,
"contents": {
"path": [
"string"
],
"exclusions": [
"string"
],
"exceptions": [
"string"
]
},
"plan": {
"id": 0,
"name": "string"
}
}
]
}
{
"contentGroups": [
{
"id": 60928,
"name": "default",
"isBackupEnabled": true,
"lastBackupSize": 0,
"totalBackupSize": 0,
"contents": {
"path": [
"/xyz",
"/abc"
],
"exclusions": [
"/xyz/pqr"
],
"exceptions": [
"/sample"
]
},
"plan": {
"id": 11214,
"name": "test"
}
}
]
}
Loading...