Create Region

Create Region

Creates a new Region.

Request
URI
POST
https://{api_host}/cloudapi/vcf/regions
COPY
Request Body
Region of type(s) application/json
Optional

Show optional properties

{
    "name": "string",
    "nsxManager": {},
    "supervisors": [
        {}
    ],
    "storagePolicies": [
        {}
    ]
}
{
    "id": "string",
    "name": "string",
    "description": "string",
    "nsxManager": {
        "name": "string",
        "id": "string"
    },
    "supervisors": [
        {
            "name": "string",
            "id": "string"
        }
    ],
    "storagePolicies": [
        "string"
    ],
    "status": "string",
    "loadBalancerType": "string",
    "memoryCapacityMiB": 0,
    "memoryReservationCapacityMiB": 0,
    "cpuCapacityMHz": 0,
    "cpuReservationCapacityMHz": 0
}
Authentication
This operation uses the following authentication methods.
Responses
202

The request have been accepted and the task to monitor the request is in the Location header.

Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"name:"string","nsxManager:"object","storagePolicies":["string"],"supervisors":["object"]}' https://{api_host}/cloudapi/vcf/regions