You need to enable JavaScript to run this app.
导航

DescribeAllowListDetail

最近更新时间2023.10.19 11:11:24

首次发布时间2023.10.19 11:11:24

调用 DescribeAllowListDetail 查询指定白名单的详细信息。

使用说明

可以使用此接口查看指定白名单的详细信息。

请求参数

参数

参数类型

是否必选

示例值

说明

AllowListId

String

acl-fda2ed6365b94c909e44198fbbf4****

待查询的白名单 ID。

响应参数

参数

参数类型

示例值

说明

AllowListId

String

acl-fda2ed6365b94c909e44198fbbf4****

白名单 ID。

AllowListName

String

测试

白名单名称。

AllowListDesc

String

测试白名单

白名单描述。

AllowList

String

127.0.0.1,192.168.0.1/24

白名单规则列表。

AssociatedInstances

Array of AssociatedInstanceInfo

/

白名单绑定的实例信息。

示例

请求示例

POST /?Action=DescribeAllowListDetail&Version=2022-05-01 HTTP/1.1
Content-Type: application/json
Host: kafka.volcengineapi.com
X-Date: 20210328T100802Z
Authorization: HMAC-SHA256 Credential=AK********/20210328/cn-beijing/kafka/request, SignedHeaders=x-date, Signature=********

{
    "AllowListId": "acl-fda2ed6365b94c909e44198fbbf4****"
}

响应示例

{
    "ResponseMetadata": {
        "RequestId": "20231009164722454D149CF757A9BFA1DC",
        "Action": "DescribeAllowListDetail",
        "Version": "2022-05-01",
        "Service": "Kafka",
        "Region": "cn-beijing"
    },
    "Result": {
        "AllowList": "127.0.0.1,192.168.0.1/24",
        "AllowListDesc": "测试白名单",
        "AllowListId": "acl-fda2ed6365b94c909e44198fbbf4****",
        "AllowListName": "测试",
        "AssociatedInstances": [
            {
                "InstanceId": "kafka-cnitzqgnk0g4****",
                "InstanceName": "测试实例"
            }
        ]
    }
}