View the Backup Configuration

get

/api/v1.1/instances/{identityId}/{serviceId}/backupconfig

Returns the backup configuration for a service instance.

Request

Path Parameters
identityId
Type: string
Required: true
Name of the identity domain for the Oracle Cloud Service account.
serviceId
Type: string
Required: true
ID of the service instance.

Response

Supported Media Types
  • application/json
200 Response
success
Body
Root Schema : ViewBackupConfigurationResponse
Type: object
Nested Schema : fullBackupSchedule
Type: object
Schedule for the next full backup.
By default, full backups are initiated weekly starting 12 hours after a service instance was created, rounded to the nearest five-minute interval.
Nested Schema : incrementalBackupSchedule
Type: object
Schedule for the next incremental backup.
By default, incremental backups are initiated every day except the day of a full backup at the same time that full backups are initiated.
Units are the same as for 'fullBackupSchedule'.

Examples

The following example shows how to view the backup configuration for an Oracle SOA Cloud Service instance by submitting a GET request on the REST resource using cURL. For more information, see Use cURL.

See also Configuring Automated Backups for an Oracle SOA Cloud Service Instance.

cURL Command

curl -i -X GET -u joe@example.com:Welcome1! -H "X-ID-TENANT-NAME:ExampleIdentityDomain" https://api-host/paas/service/soa/api/v1.1/instances/ExampleIdentityDomain/ExampleInstance/backupconfig
Note:: This example uses the URL prefix for the United States ( soacs). For information about the URL prefixes for other regions of the world, see Send Requests.

Example of Response Header

The following shows an example of the response header:

HTTP/1.1 200 OK
Date: Wed, 04 Feb 2015 14:37:25 GMT
Transfer-Encoding: chunked
Content-Type: application/json

Example of Response Body

The following example shows the response returned in JSON format.

{
    "defaultRetention":"30 days",
    "fullBackupSchedule":
    {
        "second":"0",
        "minute":"25",
        "hour":"7",
        "dayOfMonth":"*",
        "month":"*",
        "dayOfWeek":"Tue",
        "year":"*"
    },
    "incrementalBackupSchedule":
    {
        "second":"0",
        "minute":"25",
        "hour":"7",
        "dayOfMonth":"*",
        "month":"*",
        "dayOfWeek":"Sun,Mon,Wed,Thu,Fri,Sat",
        "year":"*"
    },
    "lastBackupDate":"Thu Dec 11 07:25:00 GMT 2014",
    "nextFullBackupDate":"Tue Dec 16 07:25:00 GMT 2014",
    "nextIncrementalBackupDate":"Fri Dec 12 07:25:00 GMT 2014",
    "cloudStorageContainer":"develop-soa\/mybackupcontainer",
    "totalCloudStorageContainerUsed":"0.0MB",
    "totalBackupVolumeUsed":"853.5MB",     
    "percentBackupVolumeUsed":0
}