修改Record Set
功能介绍
修改单个Record Set。
URI
PUT /v2.1/zones/{zone_id}/recordsets/{recordset_id}
名称 |
是否必选 |
参数类型 |
说明 |
---|---|---|---|
zone_id |
是 |
String |
所属zone的ID。仅支持公网zone。 可以通过查询公网Zone列表获取。 |
recordset_id |
是 |
String |
待修改recordset的ID。 可以通过查询单个Zone下Record Set列表获取。 |
请求
- 参数说明
表2 请求样例的参数说明 名称
是否必选
参数类型
说明
name
是
String
域名,后缀需以zone name结束且为FQDN(即以“.”号结束的完整主机名)。
域名格式不区分大小写,系统会将输入的大写字母统一转换为小写。
description
否
String
可选配置,对域名的描述。
长度不超过255个字符。
如果为空,表示维持原值。
默认值为空。
type
是
String
Record Set的类型。
取值范围:A、AAAA、MX、CNAME、TXT、NS、SRV、CAA。
详细信息请参见解析记录类型。
ttl
否
Integer
解析记录在本地DNS服务器的缓存时间,缓存时间越长更新生效越慢,以秒为单位。
如果您的服务地址经常更换,建议TTL值设置相对小些,反之,建议设置相对大些。
取值范围:
- 公网解析:1~2147483647。
- 内网解析:300~2147483647。
如果为空,表示维持原值。
默认值为空。
records
否
Array of strings
解析记录的值。不同类型解析记录对应的值的规则不同。
如Type为AAAA类型,Value是域名对应的IPv6地址列表。
weight
否
Integer
解析记录的权重。
- 当weight不填时,表示该解析记录将保持原有设置的权重。
- 当weight=0,表示该解析记录为备用域名解析记录。
- 当weight>0,表示该解析记录为主用域名解析记录。
取值范围:0~1000
默认值为空。
相同名称、相同记录集类型、相同线路下的域名,权重记录集个数的上限是20。
- 请求样例
修改域名的记录集,域名的Zone ID为“2c9eb155587194ec01587224c9f90149”,Recordset ID为“2c9eb155587228570158722b6ac30007”。
PUT https://{DNS_Endpoint}/v2.1/zones/2c9eb155587194ec01587224c9f90149/recordsets/2c9eb155587228570158722b6ac30007
- A类型
{ "name": "www.example.com.", "description": "This is an example record set.", "type": "A", "ttl": 3600, "records": [ "192.168.10.1", "192.168.10.2" ], "weight": 1 }
- AAAA类型
{ "name": "www.example.com.", "description": "This is an example record set.", "type": "AAAA", "ttl": 3600, "records": [ "fe80:0:0:0:202:b3ff:fe1e:8329", "ff03:0db8:85a3:0:0:8a2e:0370:7334" ], "weight": 1 }
- MX类型
{ "name": "www.example.com.", "description": "This is an example record set.", "type": "MX", "ttl": 3600, "records": [ "1 mail.example.com" ], "weight": 1 }
- CNAME类型
{ "name": "www.example.com.", "description": "This is an example record set.", "type": "CNAME", "ttl": 3600, "records": [ "server1.example.com" ], "weight": 1 }
- TXT类型
{ "name": "www.example.com.", "description": "This is an example record set.", "type": "TXT", "ttl": 300, "records": [ "\"This host is used for sale.\"" ], "weight": 1 }
- NS类型
{ "name": "www.example.com.", "description": "This is an example record set.", "type": "NS", "ttl": 300, "records": [ "node1.example.com.", "node2.example.com." ], "weight": 1 }
- SRV类型
{ "name": "www.example.com.", "description": "This is an example record set.", "type": "SRV", "ttl": 3600, "records": [ "3 60 2176 sipserver.example.com.", "10 100 2176 sipserver.example.com." ], "weight": 1 }
- CAA类型
{ "name": "www.example.com.", "description": "This is an example record set.", "type": "CAA", "ttl": 300, "records": [ "0 issue \"example.com\"", "0 issuewild \"www.certinomis.com\"", "0 iodef \"mailto:xx@example.org\"", "0 iodef \"http://iodef.example.com\"" ], "weight": 1 }
- A类型
响应
- 参数说明
表3 响应样例的参数说明 名称
参数类型
说明
id
String
Record Set的ID。
name
String
Record Set的名称。
description
String
Record Set的描述信息。
zone_id
String
托管该记录的zone_id。
zone_name
String
托管该记录的zone_name。
type
String
记录类型。
取值范围:A、AAAA、MX、CNAME、TXT、NS、SRV、CAA。
详细信息请参见解析记录类型。
ttl
Integer
解析记录在本地DNS服务器的缓存时间,缓存时间越长更新生效越慢,以秒为单位。
如果您的服务地址经常更换,建议TTL值设置相对小些,反之,建议设置相对大些。
records
Array of strings
域名解析后的值。
created_at
String
创建时间。
采用UTC时间格式,格式为:YYYY-MM-DDTHH:MM:SSZ
updated_at
String
更新时间。
采用UTC时间格式,格式为:YYYY-MM-DDTHH:MM:SSZ
status
String
资源状态。
详细信息请参见资源状态。
default
Boolean
标识是否由系统默认生成,系统默认生成的Record Set不能删除。
project_id
String
该Record Set所属的项目ID。
links
Object
指向当前资源或者其他资源的链接。当查询需要分页时,需要包含一个next链接指向下一页。详细信息请参见表4。
line
String
解析线路ID。
weight
Integer
解析记录的权重。
health_check_id
String
健康检查ID。
alias_target
Object
别名记录。详细信息请参见表5。
- 响应样例
{ "id": "2c9eb155587228570158722b6ac30007", "name": "www.example.com.", "description": "This is an example record set.", "type": "A", "ttl": 3600, "records": [ "192.168.10.1", "192.168.10.2" ], "status": "PENDING_UPDATE", "links": { "self": "https://Endpoint/v2.1/zones/2c9eb155587194ec01587224c9f90149/recordsets/2c9eb155587228570158722b6ac30007" }, "zone_id": "2c9eb155587194ec01587224c9f90149", "zone_name": "example.com.", "created_at": "2016-11-17T12:03:17.827", "updated_at": "2016-11-17T12:56:06.439", "default": false, "project_id": "e55c6f3dc4e34c9f86353b664ae0e70c", "line": "default_view", "weight": 1, "health_check_id":null }