Get Org Pvdc Stats

Get Org Pvdc Stats

Get a list of statistics for a provider VDC.

This data is cached, to get the recent changes call the VCD instance directly.

Request
URI
GET
https://starfleet.api.eng.vmware.com//organizations/{organizationId}/pvdcs/{pvdcId}/stats
COPY
Path Parameters
string
organizationId
Required

URN of a CDS Organization object

string
pvdcId
Required

URN of a CDS PVDC object

Query Parameters
integer
page
Optional

Page to fetch, The first page is 1, so the effective offset will be ((page - 1) * pageSize).

integer
limit
Optional

limit

string
sortBy
Optional

The name of field to sort by

string
sort
Optional

The direction of sort

Possible values are : asc, desc,

Responses
200

OK

Returns ProviderVdcStatistics of type(s) application/json
This response body class contains all of the following: Page , ProviderVdcStatistics_allOf
{
    "resultTotal": 0,
    "pageCount": 0,
    "page": 0,
    "pageSize": 0,
    "valueType": "string",
    "values": [
        {
            "id": "string",
            "pvdcId": "string",
            "updatedAt": "string",
            "hosts": 0,
            "vcpus": 0,
            "cores": 0,
            "networks": 0,
            "vapps": 0,
            "vappVms": 0,
            "contentType": "string",
            "links": "string",
            "storage": {
                "unit": "string",
                "limit": "number",
                "allocated": "number",
                "used": "number"
            },
            "cpu": {
                "unit": "string",
                "limit": "number",
                "allocated": "number",
                "used": "number"
            },
            "ram": {
                "unit": "string",
                "limit": "number",
                "allocated": "number",
                "used": "number"
            }
        }
    ]
}