Skip To Content
ArcGIS Developer
Dashboard

Backup Stores

Description

This 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:

https://organization.domain.com/context/admin/system/disasterrecovery/stores?f=pjson

JSON Response example


{
  "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"
    }
  ]
}