Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

You can get details of the application policies in Private PaaS using the CLI tool or REST API as shown below:

 

Localtabgroup
Localtab
activetrue
titleCLI

Getting details of application policies via the CLI

Overview
CLI command
list-application-policies      
DescriptionRetrieve details of all the application policies.
Example

Retrieve details of all the application policies.

Code Block
list-application-policies
Sample output
Code Block
Application policies found:
+----------------------+--------------------------+-------------------+
| ID                   | No of network partitions | algorithm         |
+----------------------+--------------------------+-------------------+
| application-policy-1 | 1                        | one-after-another |
+----------------------+--------------------------+-------------------+
Localtab
titleREST API

Getting details of application policies via the REST API

Overview
DescriptionRetrieve details of all the application policies that have been created.
Resource Path/applicationPolicies
HTTP MethodGET
Request/Response Formatapplication/json
Command format
Code Block
curl -X GET -H "Content-Type: application/json" -k -v -u <USERNAME>:<PASSWORD> https://<PRIVATE_PAAS_HOST>:<PRIVATE_PAAS_HTTPS_PORT>/api/applicationPolicies
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.
Example

Retrieve details of all the application policies.

Code Block
cd <PRIVATE_PAAS_CARTRIDGES>/wso2am/1.9.0/samples
curl -X GET -H "Content-Type: application/json" -k -v -u admin:admin https://localhost:9443/api/applicationPolicies
Sample output
Code Block
> GET /api/applicationPolicies 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:13:08 GMT
< Content-Type: application/json
< Transfer-Encoding: chunked
< Server: WSO2 Carbon Server
< 
[{"algorithm":"one-after-another","id":"application-policy-1","networkPartitions":["network-partition-mock"]}]

You will come across the following HTTP status codes while getting details of the application policies in Private PaaS:

HTTP status code

200, 500

See the descriptions of the HTTP status codes here.

 

...