调用DescribeCloudConnectorAPNs查询APN信息。
DescribeCloudConnectorAPNs支持分页查询,初次调用接口进行分页查询时,仅需传入MaxResults
以限制单页返回结果的条目,无需传入NextToken
,查询结果会返回NextToken
的值作为后续页查询的凭证。后续查询时请求参数NextToken
传入上一次的NextToken
的返回值,并设置MaxResults
限制单页返回结果的条目即可。
名称 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | DescribeCloudConnectorAPNs | 要执行的操作,取值:DescribeCloudConnectorAPNs。 |
Version | String | 是 | 2020-04-01 | API版本信息。 |
APNIds.N | String | 否 | APNIds.1=apn-1sdsf334j51288****&APNIds.2=apn-def9cdjn0s**** | 运营商APN的ID。
|
APN | String | 否 | xxx.mnc.mcc.gprs | 运营商APN信息。 |
ISP | String | 否 | ChinaTelecom | 运营商类型。
|
MaxResults | String | 否 | 50 | 单次查询的数量,默认为 10,最大为100。 |
NextToken | String | 否 | caeba0bbb2be03f84eb48b699f0a**** | 分页查询凭证,用于标记分页的位置。 |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
RequestId | String | 20220627103212010225145152058**** | 请求ID。 |
NextToken | String | ca3fob2be03f84eb41b633f0d**** | 本次调用返回的查询凭证值,返回为空表示没有下一页。 |
APNs | Array of struct | - | APN的详细信息。具体参见下方“APN”。 |
APN
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
APNId | String | apn-1sdsf334j51288*** | APN的ID。 |
APN | String | xxx.mnc.mcc.gprs | APN的信息。 |
Name | String | test-name | APN的名称。 |
ISP | String | ChinaUnicom | APN运营商的类型。
|
Status | String | Available | APN的状态。
|
IotCidrs | List of String | ["172.16.XX.XX/16","172.16.XX.XX/16"] | IOT终端网段地址列表。 |
Zones | List of String | ["cn-beijing-a,cn-beijing-b"] | APN对应虚拟机所在可用区的列表。 |
CreationTime | String | 2021-07-12T07:28:20+08:00 | 创建APN的时间。 |
UpdateTime | String | 2021-07-12T07:28:20+08:00 | 更新APN的时间。 |
GET /?Action=DescribeCloudConnectorAPNs&Version=2020-04-01&APNIds.1=apn-imd3sh2d7u2o8gbssy**** HTTP/1.1 Host: open.volcengineapi.com ServiceName: directconnect Region: cn-beijing
{ "ResponseMetadata": { "RequestId": "20240103145037B265ED6CC655D2****", "Action": "DescribeCloudConnectorAPNs", "Version": "2020-04-01", "Service": "directconnect", "Region": "cn-beijing" }, "Result": { "RequestId": "20240103145037B265ED6CC655D2****", "NextToken": "", "APNs": [ { "APNId": "apn-imd3sh2d7u2o8gbssy***", "APN": "20231****.****", "Name": "test", "ISP": "ChinaUnicom", "Status": "Available", "IotCidrs": [ "172.XX.XX.0/16" ], "Zones": [ "cn-beijing-a", "cn-beijing-b" ], "CreationTime": "2021-07-12T07:28:20+08:00", "UpdateTime": "2021-07-12T07:28:20+08:00" } ] } }
此处仅展示当前API的错误码,更多错误码请参见公共错误码。
HttpCode | 错误码 | 错误信息 | 描述 |
---|---|---|---|
400 | DryRunOperation | Exception raised to indicate a successfully authorized action when the DryRun flag is set to true. | 该请求设置为DryRun操作,操作授权已获得许可,但未被实际执行。 |
400 | InvalidISP.Malformed | The specified parameter ISP is malformed. Only ChinaTelecom, ChinaMobile and ChinaUnicom are supported. | 运营商参数不合法,仅支持中国电信、中国移动和中国联通。 |
400 | InvalidMaxResults.Malformed | The specified parameter MaxResults is malformed. | 查询数量不合法。 |
400 | InvalidNextToken.Malformed | The specified parameter NextToken is invalid. | 查询 NextToken 不合法。 |
400 | InvalidPage.Malformed | The specified page is malformed. | 指定的分页参数不合法。 |
400 | LimitExceeded.APNId | You've reached the limit on the number of APN IDs that you can describe. | 已达到可查询的APN ID数量上限。 |