ZONES

A zone identifies the physical site where the cloud services are located. Different zones may be used to provide geographical and logical separation of servers.

All zones have their own storage network. Storages can only be attached to servers located in the same zone. In order to use storages from other zones, storages can be transferred between zones by cloning.

List available zones

Returns a list of available zones.

All servers and storages must set their zone attributes to one of the zone ids returned by this operation.

Request

GET /1.2/zone

Normal response

HTTP/1.0 200 OK
{
  "zones": {
    "zone": [
      {
        "description" : "Frankfurt #1",
        "id" : "de-fra1"
      },
      {
        "description": "Helsinki #1",
        "id": "fi-hel1"
      },
      {
        "description": "Helsinki #2",
        "id": "fi-hel2"
      },
      {
        "description" : "Amsterdam #1",
        "id" : "nl-ams1"
      },
      {
        "description" : "Singapore #1",
        "id" : "sg-sin1"
      },
      {
        "description": "London #1",
        "id": "uk-lon1"
      },
      {
        "description" : "Chicago #1",
        "id" : "us-chi1"
      },
      {
        "description" : "San Jose #1",
        "id" : "us-sjo1"
      }
    ]
  }
}