Get information about all available SDDCs in a given environment.

This API must return an array of all available SDDCs with information about the SDDCs such as SDDC ID, location, DNS IP, license information of the SDDC components, and so on.

Procedure

The following GET request will be issued to the server:
GET https://{{server_ip}}:9443/api/v1/get_data_centers
The following information must be returned:
[
  {
    "sddcID": "e1701974-a0ef-4e23-9881-7b2a9aa62259",
    "dataCenterLocation": "Dallas, Texas, United States",
    "dnsIp": "192.168.101.5",
    "ntpFqdn": "time.vmware.com",
    "hostLicense": "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX",
    "vcLicense": "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX",
    "nsxtLicense": "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX",
    "vsanLicense": "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX",
    "hcxCloudLicense": "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX",
    "sddcIpPool": {
      "startIp": "192.168.106.10",
      "endIp": "192.168.106.30",
      "cidr": "192.168.106.0/24",
      "gateway": "192.168.106.1"
    },
    "sddcEdgeIpPool": {
      "startIp": "192.168.107.10",
      "endIp": "192.168.107.30",
      "cidr": "192.168.107.0/24",
      "gateway": "192.168.107.1"
    },
    "uplinkTransportVlan": "1200",
    "edgeOverlayLogicalSwitchVlan": "1100",
    "edgeUplink1TransportZoneSegmentVlan": "2100",
    "edgeUplink2TransportZoneSegmentVlan": "2200",
    "vcMgrNwSpec": {
      "ip": "192.168.105.50",
      "fqdn": "vc.cloud.vmw",
      "gatewayWithCidr": "192.168.105.1/24"
    },
    "nsxtMgr1NwSpec": {
      "ip": "192.168.105.52",
      "fqdn": "192.168.105.52",
      "gatewayWithCidr": "192.168.105.1/24"
    },
    "nsxtMgr3NwSpec": {
      "ip": "192.168.105.53",
      "fqdn": "192.168.105.53",
      "gatewayWithCidr": "192.168.105.1/24"
    },
    "edge1NwSpec": {
      "ip": "192.168.105.61",
      "fqdn": "edge1.cloud.vmw",
      "gatewayWithCidr": "192.168.105.1/24"
    },
    "edge2NwSpec": {
      "ip": "192.168.105.62",
      "fqdn": "edge2.cloud.vmw",
      "gatewayWithCidr": "192.168.105.1/24"
    },
    "t0Interfaces1IpwithCidr": "172.16.1.1/24",
    "t0Interfaces2IpwithCidr": "172.16.2.1/24",
    "t0Interfaces3IpwithCidr": "172.16.1.2/24",
    "t0Interfaces4IpwithCidr": "172.16.2.2/24",
    "hcxCloudSpec": {
 
      "ip": "192.168.108.2",
 
      "fqdn": "hcx.cloud.vmw",
 
      "gatewayWithCidr": "192.168.108.1/24"
 
    },
 
    "hcxCloudIPPool": {
 
      "startIp": "192.168.108.10",
 
      "endIp": "192.168.108.20",
 
      "gateway": "192.168.108.1"
 
    }
  }
{
"sddcID": "e1701974-a0ef-4e23-9881-7b2a9aa62260",
...
]