Get information about datacenters

get/datacenters

Query parameters

namestring

Filter datacenters by name

tagsstring[]

Filter datacenters by tag

{"stackTrail":"paths:/datacenters:get:parameters:2:schema","oasType":"schema","type":"unknown"}

Get list of object names instead of full objects

{"stackTrail":"paths:/datacenters:get:parameters:3:schema","oasType":"schema","type":"unknown"}

Fold expandable objects

{"stackTrail":"paths:/datacenters:get:parameters:4:schema","oasType":"schema","type":"unknown"}

Report object types in YAML dumps

format'yaml' | 'json'

Select response format

Response

successful operation

namestring

Unique name of the datacenter.

tagsstring[]

The list of tags associated to this datacenter.

Example response

[
  {
    "name": "north",
    "rooms": [
      {
        "dimensions": {
          "depth": 15000,
          "width": 10000
        },
        "name": "noisy",
        "rows": [
          {
            "name": "computeA",
            "position": {
              "depth": 3000,
              "rotation": 90,
              "width": 2000
            },
            "racks": [
              {
                "name": "A[01-10]",
                "slot": 2,
                "type": "standard"
              }
            ],
            "reversed": true
          }
        ]
      }
    ]
  }
]

Changes