List all available Atlas App cloud regions

GET /provider_regions

Return a list of all supported cloud regions in which you can deploy an Atlas App.

Responses

  • 200 application/json

    A list of all available Atlas App cloud region names.

    Hide response attributes Show response attributes object
    • id string

      One of:

      Values are aws-us-east-1, aws-us-west-2, aws-us-east-2, aws-eu-central-1, aws-eu-west-1, aws-eu-west-2, aws-ap-southeast-1, aws-ap-southeast-2, aws-ap-south-1, or aws-sa-east-1.

      Values are azure-eastus2, azure-westus, azure-westeurope, azure-eastasia, or azure-southeastasia.

      Values are gcp-us-central1, gcp-us-east4, gcp-us-west1, gcp-europe-west1, or gcp-asia-south1.

    • name string

      A descriptive name for the region.

    • cloud_provider string

      The cloud provider that hosts the region.

    • country string

      The country where the region is physically hosted.

    • deployment_models array[string]

      The deployment models that this region supports.

      Values are GLOBAL or LOCAL.

GET /provider_regions
curl \
 --request GET 'https://services.cloud.mongodb.com/api/admin/v3.0/provider_regions' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "": "aws-us-east-1",
    "name": "Virginia (us-east-1)",
    "cloud_provider": "aws",
    "country": "usa",
    "deployment_models": [
      "GLOBAL",
      "LOCAL"
    ]
  }
]