查询NAT网关详情
更新时间:2024-08-08
描述
查询NAT网关详情。
- 可根据NAT网关ID查询NAT网关详情。
请求结构
GET /v{version}/nat/{natId} HTTP/1.1
Host: bcc.bj.baidubce.com
Authorization: authorization string
请求参数
参数名称 | 类型 | 是否必需 | 参数位置 | 描述 |
---|---|---|---|---|
version | String | 是 | URL参数 | API版本号,当前取值1 |
natId | String | 是 | URL参数 | NAT的ID |
返回头域
除公共头域外,无其他特殊头域。
返回参数
参数名称 | 类型 | 描述 |
---|---|---|
id | String | NAT网关的ID |
name | String | NAT网关名称 |
vpcId | String | NAT网关所属VPC的ID |
spec | String | NAT网关的大小,有small(最多支持绑定5个公网IP)、medium(最多支持绑定10个公网IP)、large(最多支持绑定15个公网IP)三种 |
eips | List |
NAT网关绑定的EIP的IP地址列表 |
dnatEips | List |
NAT网关绑定的Dnat EIP的IP地址列表 |
status | natStatus | NAT网关的状态 |
paymentTiming | String | 付费方式 预付费Prepaid 后付费Postpaid |
expiredTime | String | 过期时间 |
createTime | String | 创建时间 |
tags | List<TagModel> | NAT网关绑定的标签列表 |
deleteProtect | Boolean | 是否开启释放保护 |
请求示例
GET /v1/nat/nat-bir8biqwr45e HTTP/1.1
Host: bcc.bj.baidubce.com
authorization: bce-auth-v1/bf427691810a11e8a106475a8496ca04/2018-07-06T11:02:49Z/3600/host;x-bce-account;x-bce-client-ip;x -bce-date;x-bce-request-id;x-bce-security-token/e84ee938f6466428ff5c16b3562a1cbf3db5928e7f863cedec8820b5d98aa474
返回示例
HTTP/1.1 200 OK
Date: Fri, 06 Jul 2018 11:12:34 GMT
Content-Type: application/json;charset=UTF-8
Server: BWS
{
"id":"nat-bir8biqwr45e",
"name":"mynat",
"vpcId":"vpc-13vuxu016dew",
"spec":"small",
"status":"unconfigured",
"eips":[
],
"dnatEips":[
],
"paymentTiming":"Prepaid",
"expiredTime":"2018-08-13T08:10:59Z",
"createTime": "2021-04-25 17:22:34",
"tags":[
{
"tagKey": "tagKey",
"tagValue": "tagValue"
}
],
"deleteProtect":true
}