Delete a Service Instance

put

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

Deletes an Oracle Java Cloud Service instance.

If the service instance uses IP reservations on WebLogic Managed Server nodes (and user-managed load balancer nodes, if OTD is configured), those IP reservations are released and returned to the pool of pre-allocated IP reservations with the status of UNUSED. Released IP reservations are not deleted when the service instance is deleted.

The delete (terminate) operation removes all service instance backups except the final backup (if there is one). This means it is a good practice to preserve one or more full backups before you delete a service instance.

On Oracle Cloud Infrastructure Classic and Oracle Cloud at Customer: You cannot delete a service instance as long as the instance is associated with one or more cloned instances that were created from a snapshot.

Request

Supported Media Types
Path Parameters
Header Parameters
Body ()
The request body defines the details of the delete request.
Root Schema : delete-putrequestm
Type: object
Show Source
  • User name for the database administrator.
  • The database administrator password that was specified when the infrastructure schema database was created.
  • Flag that specifies whether you want to force the removal of the service instance even if the database instance cannot be reached to delete the database schemas. If set to true, you may need to delete the associated database schemas manually on the database instance if they are not deleted as part of the service instance delete operation. The default value is false.

    Note that force replaces forceDelete, which is deprecated.

  • Flag that specifies whether you want to back up the service instance or skip backing up the instance before deleting it. The default value is true (that is, skip backing up).
Back to Top

Response

Supported Media Types

202 Response

Accepted. The Location header returns a URI that can be used to view the job status. See View the Status of an Operation by Job Id.
Body ()
Root Schema : accepted-responsem
Type: object
The response body contains information about the operation. It can include an issues array for warning messages.
Show Source
Nested Schema : details
Type: object
Groups details of the operation.
Show Source
Nested Schema : issues
Type: array
Groups strings of warning messages, if any.
Show Source

400 Response

Bad Request. Returned if the request payload contains bad or missing details.

See Status Codes for information about other possible HTTP status codes.

Body ()
Root Schema : badrequest-responsem
Type: object
The response body contains information about the request. It can include an issues array for validation error messages.
Show Source
Nested Schema : details
Type: object
Groups details of the request.
Show Source
Nested Schema : issues
Type: array
Groups strings of validation error messages, if any.
Show Source
Back to Top

Examples

The following example shows how to delete an Oracle Java Cloud Service instance by submitting a PUT request on the REST resource using cURL.

Note: The command in this example uses the URL structure https://rest_server_url/resource-path, where rest_server_url is the REST server to contact for your identity domain (or Cloud Account). See Send Requests.

cURL Command

curl -i -X PUT -u username:password -d @deleteservice.json -H "Content-Type:application/json" -H "X-ID-TENANT-NAME:ExampleIdentityDomain" https://rest_server_url/paas/api/v1.1/instancemgmt/ExampleIdentityDomain/services/jaas/instances/ExampleInstance

Example of Request Body

The following shows an example of the request body in JSON format.

{
    "dbaName": "mydbausername",
    "dbaPassword": "Mypassword2!",
    "force": true
} 

Example of Response Header

The following shows an example of the response header. The Location header returns the URI that can be used to view the job status. See View the Status of an Operation by Job Id.

HTTP/1.1 202 Accepted
Location: https://rest_server_url/paas/api/v1.1/activitylog/ExampleIdentityDomain/job/5028794
Content-Language: en
Service-URI: https://rest_server_url/paas/api/v1.1/instancemgmt/ExampleIdentityDomain/services/jaas/instances/ExampleInstance
Content-Type: application/vnd.com.oracle.oracloud.provisioning.Service+json
Date: Mon, 17 Apr 2017 22:46:03 GMT

Example of Response Body

The following shows an example of the response document returned in JSON format.

{
   "details":
   {
      "message":"Submitted job to delete service [ExampleInstance] in domain [ExampleIdentityDomain].",
      "jobId":"5028794"
   }
}
Back to Top