配置移行を取得する
現在の配置移行のメタデータとステータスを取得します(存在する場合)。
path パラメータ
-
Atlas Project/Group ID。
-
アプリケーションの ObjectID。App Services API プロジェクトとアプリケーション ID のセクションでは、この値を見つける方法が示されています。
GET /groups/{groupId}/apps/{appId}/deployment_migration
curl \
--request GET 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/{groupId}/apps/{appId}/deployment_migration' \
--header "Authorization: Bearer $ACCESS_TOKEN"
応答の例(200)
{
"status": "started",
"message": "string",
"updated_at": "string",
"from": {
"deployment_model": "GLOBAL",
"provider_region": "aws-us-east-1"
},
"to": {
"deployment_model": "GLOBAL",
"provider_region": "aws-us-east-1"
}
}