Delete a Snapshot Master

delete

/paas/api/v1.1/instancemgmt/{identityDomainId}/services/dbaas/instances/{serviceId}/snapshots/{snapshotName}

Deletes a snapshot master associated with an Exadata Cloud at Customer database deployment.

Note: A snapshot master cannot be deleted if there are any linked clones associated with it.

Request

Path Parameters
  • The value depends on the type of Exadata Cloud at Customer account that is used to make the request:

    • For a Traditional Cloud Account, specify the Identity Domain Name that is associated with the service.

    • For a Cloud Account with Identity Cloud Service, specify the Identity Service Id that is associated with the service, which is a character string beginning with idcs-.

  • The name of the Exadata Cloud at Customer database deployment.
  • Name of the snapshot master.
Header Parameters
Back to Top

Response

202 Response

Accepted. See Status Codes for information about other possible HTTP status codes.
Headers
Back to Top

Examples

The following example shows how to delete a snapshot master by submitting a DELETE request on the REST endpoint using cURL.

In this example, the identity domain is usexample and the Oracle Cloud user name and password are serviceadmin and Pa55_word. The snapshot master being deleted is named SnapMstr12c, and the database deployment it is associated with is db12c.

cURL Command

curl -i -X DELETE --cacert ~/cacert.pem -u serviceadmin:Pa55_word -H "X-ID-TENANT-NAME:usexample"  https://dbaas.oraclecloud.com/paas/api/v1.1/instancemgmt/usexample/services/dbaas/instances/db12c/snapshots/SnapMstr12c

HTTP Status Code and Response Headers

HTTP/2.0 202
server: Oracle-Application-Server-11g
strict-transport-security: max-age=31536000;includeSubDomains
location: https://dbaas.oraclecloud.com:443/paas/api/v1.1/instancemgmt/usexample/services/dbaas/instances/db12c/snapshots/job/13348966
content-language: en
access-control-allow-headers: Content-Type, api_key, Authorization, X-ID-TENANT-NAME, X-USER-IDENTITY-DOMAIN-NAME
retry-after: 60
access-control-allow-methods: GET, POST, DELETE, PUT, OPTIONS, HEAD
x-oracle-dms-ecid: 005L05jyK0v6uHFpR05Eid0006y90002et
x-oracle-dms-ecid: 005L05jyK0v6uHFpR05Eid0006y90002et
access-control-allow-origin: *
x-frame-options: DENY
content-type: application/json
vary: user-agent
date: Tue, 11 Jul 2017 02:27:14 GMT
Back to Top