View All Backup Operations

get

/paas/api/v1.1/instancemgmt/{identityDomainId}/services/APICS/instances/{serviceId}/backups

Returns a list of all available backup operations for an API Platform Cloud Service - Classic instance, including both scheduled and on-demand backups.

Note: ServiceID is the user specified name for the service and is not the ID that's autogenerated for the instance.

Request

Path Parameters
  • Name of the identity domain for the API Platform Cloud Service - Classic account.
  • Name of the API Platform Cloud Service - Classic instance.

    Note: ServiceID is the user specified name for the service and is not the ID that's autogenerated for the instance.

Header Parameters
Back to Top

Response

Supported Media Types

200 Response

OK. See Status Codes for information about other possible HTTP status codes.
Body ()
Root Schema : Response Body
Type: object
Title: Response Body
Show Source
Nested Schema : backupList Array
Type: array
Title: backupList Array
Array of JSON object elements, with one element for each backup operation.
Show Source
Nested Schema : backupList Array Item
Type: object
Title: backupList Array Item
Show Source
Nested Schema : serviceComponents
Type: array
Groups service component details.
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top

Examples

The following example shows how to view all Oracle API Platform Cloud Service - Classic backups by submitting a GET request on the REST resource using cURL. For more information about cURL, see cURL Examples.

curl -i -X GET 
-u apicsadmin:password 
-H "Content-Type: application/json"
https://example.com:7103/paas/api/v1.1/instancemgmt/apics/services/APICS/instances/apics/backups

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 200 OK
Date: Wed, 23 Nov 2016 11:06:47 GMT
Transfer-Encoding: chunked
Content-Type: application/json
X-ORACLE-DMS-ECID: 7077e58cc81a37d2:-4cd90f8:15878a7e3f0:-8000-0000000000005fb2
X-Frame-Options: DENY
Access-Control-Allow-Methods: GET, POST, DELETE, PUT, OPTIONS, HEAD
Access-Control-Allow-Headers: Content-Type, api_key, Authorization
Access-Control-Allow-Origin: *

Example of Response Body

The following example shows the contents of the response body in JSON format, including detailed information about all service backups.

{
	"backups": [{
		"backupId": "1479898800355",
		"jobId": "26358",
		"backupStartDate": "2016-11-23T11:00:00.454+0000",
		"backupCompleteDate": "2016-11-23T11:04:34.559+0000",
		"expirationDate": null,
		"initiatedBy": "apicsadmin",
		"full": true,
		"local": false,
		"localCopy": true,
		"databaseIncluded": true,
		"size": "1.5MB",
		"sizeInBytes": 1604950,
		"dbTag": "JAAS20161123T110009",
		"status": "Completed",
		"storageContainer": "Storage-apics/APICSBackup",
		"href": "https://example.com:7103/paas/api/v1.1/instancemgmt/apics/services/APICS/instances/apics/backups/1479898800355",
		"notes": "On-demand full backup request.",
		"serviceComponents": [{
			"type": "JDK",
			"version": "1.8.0_102"
		}, {
			"type": "OTD",
			"version": "12.2.1.0.160719"
		}, {
			"type": "OTD_JDK",
			"version": "1.8.0_102"
		}, {
			"type": "WLS",
			"version": "12.2.1.0.160719"
		}]
	}]
}
Back to Top