Delete an Access Control Rule on a Load Balancer

delete

/paas/api/v1.1/instancemgmt/{identityDomainId}/services/jaas/instances/{serviceId}/loadbalancer/{loadBalancerName}/rules/{ruleName}

This endpoint is applicable only to Oracle Java Cloud Service instances created on Oracle Cloud Infrastructure regions and provisioned with the Oracle-managed load balancer.

Removes the access control rule set from the Oracle-managed load balancer.

Request

Supported Media Types
Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

202 Response

Accepted.
Body ()
Root Schema : acl-response
Type: object
The response body contains information about the operation.
Show Source
Nested Schema : details
Type: object
Groups details of the operation.
Show Source
Back to Top

Examples

The following example shows how to remove an access control rule from the Oracle-managed load balancer by submitting a DELETE request on the REST resource using cURL.

Note: The command in the 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 DELETE -u username:password -H "X-ID-TENANT-NAME:ExampleIdentityDomain" https://rest_server_url/paas/api/v1.1/instancemgmt/ExampleIdentityDomain/services/jaas/instances/ExampleInstance/loadbalancer/public/rules/accessrule01

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 202 Accepted
Date: Fri, 22 Nov 2019 18:34:11 GMT
Location: https://rest_server_url/paas/api/v1.1/activitylog/ExampleIdentityDomain/job/30452
Content-Length: 139
Content-Type: application/vnd.com.oracle.oracloud.provisioning.Service+json
Service-URI: https://rest_server_url/paas/api/v1.1/instancemgmt/ExampleIdentityDomain/services/jaas/instances/ExampleInstance
Retry-After: 60

Example of Response Body

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

{
   "details":{
      "message": "Submitted job to update load balancer configuration for service [ExampleInstance] in domain [ExampleIdentityDomain].",
      "jobId": "30452"
   }
}
Back to Top