利用可能なすべての Atlas App クラウド リージョンを一覧表示する

GET /provider_regions

Atlas アプリを配置できる、サポートされているすべてのクラウド リージョンのリストを返します。

応答

  • 200 application/ JSON

    利用可能なすべての Atlas App クラウド リージョン名のリスト。

    応答属性の非表示 応答属性の表示 オブジェクト
    • id string

      次の 1 つ:

      値は、aws-us-east-1aws-us-west-2aws-us-east-2aws-eu-central-1aws-eu-west-1aws-eu-west-2aws-ap-southeast-1aws-ap-southeast-2aws-ap-south-1、または aws-sa-east-1 です。

      値は、azure-eastus2azure-westusazure-westeuropeazure-eastasia、または azure-southeastasia です。

      値は、gcp-us-central1gcp-us-east4gcp-us-west1gcp-europe-west1、または gcp-asia-south1 です。

    • name string

      リージョンの記述的な名前。

    • cloud_provider string

      リージョンをホストするクラウドプロバイダー。

    • string

      リージョンが物理的にホストされている国。

    • deployment_models array[string]

      値は GLOBAL または LOCAL です。

/provider_regions を取得する
curl \
 --request GET 'https://services.cloud.mongodb.com/api/admin/v3.0/provider_regions' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
応答の例(200)
[
  {
    "id": "aws-us-east-1",
    "name": "Virginia (us-east-1)",
    "cloud_provider": "aws",
    "country": "usa",
    "deployment_models": [
      "GLOBAL",
      "LOCAL"
    ]
  }
]