This documentation is for WSO2 Private PaaS 4.1.0. View documentation for the latest release.
Getting Details of Network Partitions - WSO2 Private PaaS 4.1.0 - WSO2 Documentation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
||
Skip to end of metadata
Go to start of metadata

You retrieve details of all network partitions using the CLI tool or REST API, as shown below:

 

Getting details of network partitions via the CLI

Overview
CLI command

list-network-partitions

DescriptionRetrieve details of all the network partitions.
Example

List the network partitions that are currently available in Private PaaS.

list-network-partitions
Sample output
Network partitions found:
+------------------------+----------------------+
| Network Partition ID   | Number of Partitions |
+------------------------+----------------------+
| network-partition-1    | 2                    |
+------------------------+----------------------+

Getting details of network partitions via the REST API

Overview
DescriptionRetrieve details of all the network partitions.
Resource Path/networkPartitions
HTTP MethodGET
Request/Response Formatapplication/json
Command format
curl -X GET -H "Content-Type: application/json" -k -v -u <USERNAME>:<PASSWORD> https://<STRATOS_HOST>:<STRATOS_HTTPS_PORT>/api/networkPartitions
  • 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

List the network partitions that are currently available in Private PaaS.

curl -X GET -H "Content-Type: application/json" -k -v -u admin:admin https://localhost:9443/api/networkPartitions
Sample output
> GET /api/networkPartitions 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: Fri, 02 Oct 2015 09:38:09 GMT
< Content-Type: application/json
< Transfer-Encoding: chunked
< Server: WSO2 Carbon Server
< 
[{"id":"network-partition-1","partitions":[{"id":"partition-1","property":[{"name":"region","value":"default"}]},{"id":"partition-2","property":[{"name":"region","value":"default"}]}],"provider":"mock"}]

You will come across the following HTTP status codes while retrieving the list of network partitions:

HTTP status code

200, 500

See the descriptions of the HTTP status codes here.

 


 

  • No labels