Backup Stores

URL:
https://<root>/system/disasterrecovery/stores
Methods:
GET
Required Capability:
Access allowed with the "Security and infrastructure" privilege
Version Introduced:
10.9

Description

The stores resource returns the backup stores that are registered with your deployment. For each store returned in the response, it lists whether the store is the default option, the configuration used to register the store, and the storage provider type.

Request parameters

ParameterDetails

f

The response format. The default format is html.

Values: html | json | pjson

Example usage

The following is a sample request URL used to access the stores resource:

Use dark colors for code blocksCopy
1
https://organization.domain.com/context/admin/system/disasterrecovery/stores?f=pjson

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  "backupStores": [
    {
      "default": false,
      "storageConfig": {
        "storageClass": "backups",
        "size": "64Gi",
        "provisioningType": "STATIC",
        "labels": {"arcgis/purpose": "backups"}
      },
      "identity": "uhhbr2phophg8t0724pa",
      "name": "default",
      "identityKey": "N1S36e8RQojSYsh0woQugrmTYbvqw3QWWZRjDjnOXWU=",
      "rootDir": "rootdir",
      "type": "HOSTED",
      "autoShutdown": true
    },
    {
      "default": true,
      "storageConfig": {
        "storageClass": "backups",
        "size": "64Gi",
        "provisioningType": "DYNAMIC"
      },
      "identity": "zusu66mh5dhsjtv78nhd",
      "name": "backupstore1",
      "identityKey": "hOCG1Lg16SKZUPjfb8Xa66Cut8ChK6x7zFPG1q2Sd6Q=",
      "rootDir": "rootdir",
      "type": "HOSTED"
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.