VPC プライベートエンドポイントを取得する

GET /groups/{groupId}/apps/{appId}/security/private_endpoints/{privateEndpointId}

特定のプライベートエンドポイント構成を取得します。

path パラメータ

応答

  • 200 application/ JSON

    見つかりました

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

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

    • cloud_provider_endpoint_id string

      クラウドプロバイダーからのプライベートエンドポイント ID。

    • comment string

      エンドポイントを説明するオプションのコメント。

    • endpoint_type string

      エンドポイントの型。非推奨の "legacy" エンドポイントの移行の詳細については、レガシー エンドポイントの移行 を参照してください。

      値は syncgeneral、または legacy です。

  • 404

    見つかりません

GET /groups/{groupId}/apps/{appId}/security/private_endpoints/{privateEndpointId}
curl \
 --request GET 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/{groupId}/apps/{appId}/security/private_endpoints/{privateEndpointId}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
応答の例(200)
{
  "_id": "string",
  "cloud_provider_region": "aws-us-east-1",
  "cloud_provider_endpoint_id": "vpce-12345678",
  "comment": "string",
  "endpoint_type": "sync"
}