You can delete an application policy using the CLI tool, REST API or the Private PaaS console (UI) PPaaS Console as shown below:
Localtab Group |
---|
Localtab |
---|
| Delete Deleting an application policy via the CLIOverviewCLI command | remove-application-policy | Description | Delete an application policy. | Command format | remove-application-policy <APPLICATION_POLICY_ID>
|
Parameter definitionShort option | Long option | Description | Required | Example value |
---|
N/A | N/A | Unique ID of the application policy. | Yes | application-policy- 1 |
ExampleRetrieve details on the application policy named: application-policy-1 . Code Block |
---|
remove-application-policy application-policy-1 |
Sample output Code Block |
---|
Application policy deleted successfully: [application-policy] application-policy-1 |
|
Localtab |
---|
| Delete Deleting an application policy via the REST APIOverviewDescription | Delete an application policy. | Resource Path | /applicationPolicies/{applicationPolicyId}
| HTTP Method | DELETE | Request/Response Format | | Command format | Code Block |
---|
curl -X DELETE -H "Content-Type: application/json" -k -v -u <USERNAME>:<PASSWORD> https://<PRIVATE_PAAS_HOST>:<PRIVATE_PAAS_HTTPS_PORT>/api/applicationPolicies/{applicationPolicyId} |
Info |
---|
- By default,
<USERNAME>:<PASSWORD> is admin:admin. - By default,
<PRIVATE_PAAS_HOST> is localhost. However, if you are using a public IP, the respective IP address or domain needs to be specified. - By default,
<PRIVATE_PAAS_HTTPS_PORT> has been set to 9443. However, if the port offset has been incremented by n , the default port value needs to be incremented by n .
|
|
ExampleRetrieve details on the application policy named: application-policy-1 . Code Block |
---|
cd <PRIVATE_PAAS_CARTRIDGES>/wso2am/1.9.0/samples
curl -X DELETE -H "Content-Type: application/json" -k -v -u admin:admin https://localhost:9443/api/applicationPolicies/application-policy-1
|
Sample output Code Block |
---|
> DELETE /api/applicationPolicies/application-policy-1 HTTP/1.1
> Host: localhost:9443
> Authorization: Basic YWRtaW46YWRtaW4=
> User-Agent: curl/7.43.0
> Accept: */*
> Content-Type: application/json
>
< HTTP/1.1 200 OK
< Date: Thu, 08 Oct 2015 08:59:22 GMT
< Content-Type: application/json
< Transfer-Encoding: chunked
< Server: WSO2 Carbon Server
<
{"status":"success","message":"Application policy deleted successfully: [application-policy] application-policy-1"} |
You will come across the following HTTP status codes while deleting an application policy: HTTP status code | 200, 500 See the descriptions of the HTTP status codes here. |
|
|
...