アクセスリストの許可されたエントリを一覧表示する

GET /groups/{groupId}/apps/{appId}/security/access_list

Atlas App Services アプリのアクセス リストに許可されたエントリを一覧表示します。

path パラメータ

応答

  • 200 application/ JSON
    応答属性の非表示 応答属性の表示 オブジェクト
    • current_ip string
    • allow_ips array[オブジェクト]
      allow_ips 属性を非表示 allow_ips 属性の表示 オブジェクト
      • _id string(ObjectId)

        ObjectID

      • address string
      • ip string(IP)

        net.IP

      • ネットワーク string(net.IPNet)

        net.IPNet

      • comment string
GET /groups/{groupId}/apps/{appId}/security/access_list
curl \
 --request GET 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/{groupId}/apps/{appId}/security/access_list' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
応答の例(200)
[
  {
    "current_ip": "string",
    "allowed_ips": [
      {
        "_id": "string",
        "address": "string",
        "ip": "string",
        "network": "string",
        "comment": "string"
      }
    ]
  }
]