You can get details of the deployment policies in Private PaaS using the CLI tool or REST API as shown below:
Getting details of deployment policies via the CLI
Overview
CLI command | list-deployment-policies |
Description | List all the deployment policies. |
Example
List the deployment policies that are currently available in Private PaaS.
list-deployment-policies
Sample output
Deployment policies found: +---------------------+---------------+ | ID | Accessibility | +---------------------+---------------+ | deployment-policy-1 | 1 | +---------------------+---------------+
Getting details of deployment policies via the REST API
Overview
Description | Retrieve details of all the available deployment policies. |
Resource Path | /deploymentPolicies |
HTTP Method | GET |
Request/Response Format | application/json |
Command format | curl -X GET -H "Content-Type: application/json" -k -v -u <USERNAME>:<PASSWORD> https://<PRIVATE_PAAS_HOST>:<PRIVATE_PAAS_HTTPS_PORT>/api/deploymentPolicies
|
Example
List the deployment policies that are currently available in Private PaaS.
curl -X GET -H "Content-Type: application/json" -k -v -u admin:admin https://localhost:9443/api/deploymentPolicies
Sample output
> GET /api/deploymentPolicies 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: Mon, 05 Oct 2015 05:58:09 GMT < Content-Type: application/json < Transfer-Encoding: chunked < Server: WSO2 Carbon Server < * Connection #0 to host localhost left intact [{"id":"deployment-policy-1","networkPartitions":[{"id":"network-partition-mock","partitionAlgo":"round-robin","partitions":[{"id":"partition-1","partitionMax":2},{"id":"partition-2","partitionMax":2}]}]}]
You will come across the following HTTP status codes while getting the details of the deployment policy in Private PaaS:
HTTP status code | 200, 404, 500 See the descriptions of the HTTP status codes here. |
Overview
Content Tools
Activity