Get Sddc

Get Sddc

Retrieve a specific Software-Defined Datacenter.

Request
URI
GET
https://{api_host}/cloudapi/1.0.0/sddcs/{id}
COPY
Path Parameters
string
id
Required

SDDC ID URN


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns Sddc of type(s) application/json;version=39.1
{
    "name": "SDDC Sample Name",
    "id": "string",
    "description": "SDDC Sample Description",
    "enabled": false,
    "vcId": "urn:vcloud:vimserver:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "version": "6.7.0",
    "overallStatus": "string",
    "stats": {
        "totalVMs": 0,
        "poweredOnVMs": 0,
        "cpu": {
            "numTotal": 0,
            "numUsed": 0,
            "numReserved": 0
        },
        "memory": {
            "numTotal": 0,
            "numUsed": 0,
            "numReserved": 0
        },
        "storage": {
            "numTotal": 0,
            "numUsed": 0,
            "numReserved": 0
        }
    },
    "defaultProxy": {
        "name": "SDDC Proxy Sample Name",
        "id": "string",
        "sddcId": "urn:vcloud:sddc:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
        "enabled": false,
        "tenantVisible": false,
        "targetHost": "sampleVc.vmware.com",
        "active": false,
        "token": "string",
        "defaultProxy": false,
        "parentProxyId": "urn:vcloud:sddcProxy:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
        "uiUrl": "https://sampleVc.vmware.com"
    },
    "defaultEndpoint": {
        "name": "SDDC Endpoint Sample Name",
        "id": "string",
        "endpoint": "string",
        "proxyId": "string",
        "targetUrl": "https://sampleVc.vmware.com/ui",
        "proxy": {
            "name": "string",
            "id": "string"
        },
        "sddc": {
            "name": "string",
            "id": "string"
        },
        "isDefault": false
    }
}
string
name
Required

name

string
id
Optional

id

string
description
Optional
Constraints: default:

description

boolean
enabled
Optional

enabled

string
vcId
Required

URN of the associated vCenter. This is not editable once the SDDC has been created.

string
version
Optional

Version of the associated vCenter. This is not editable.

string
overallStatus
Optional

Overall status of the entity

Possible values are : GRAY, RED, YELLOW, GREEN,
object
stats
Optional

A read-only list of resource allocations for the associated SDDC

object
defaultProxy
Optional

SDDC proxy configuration

object
defaultEndpoint
Optional

An available network connections exposed by the SDDC


Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/cloudapi/1.0.0/sddcs/{id}