tencentcloud-sdk-dnspod 3.0.458 → 3.0.459
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210323/client.rb +25 -1
- data/lib/v20210323/models.rb +116 -40
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f11c19c3b54f880a0c48b5dc1ddc69f224c7e23
|
4
|
+
data.tar.gz: de6202700eca2b3ac25031ab224192144097a98c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc188c9749a6d73732e85a53418abd1bdcbc9f278166b5169d6a04a6411dd994c5b816ee49376c61011f3cbc1673d49c632bf956b4c5f39db02829ef6271b7b5
|
7
|
+
data.tar.gz: 92351585417386ac3382be8fa4a47372360a0b8707d2d6007aaade32aeafdd23d7d6fa02766fa8ee42976b5997ba5f275e65b57a615404368f475e5089ab0b07
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.459
|
data/lib/v20210323/client.rb
CHANGED
@@ -725,7 +725,7 @@ module TencentCloud
|
|
725
725
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
726
726
|
end
|
727
727
|
|
728
|
-
#
|
728
|
+
# 获取某个域名下的解析记录列表
|
729
729
|
|
730
730
|
# @param request: Request instance for DescribeRecordList.
|
731
731
|
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeRecordListRequest`
|
@@ -1181,6 +1181,30 @@ module TencentCloud
|
|
1181
1181
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1182
1182
|
end
|
1183
1183
|
|
1184
|
+
# 修改记录可选字段
|
1185
|
+
|
1186
|
+
# @param request: Request instance for ModifyRecordFields.
|
1187
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifyRecordFieldsRequest`
|
1188
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifyRecordFieldsResponse`
|
1189
|
+
def ModifyRecordFields(request)
|
1190
|
+
body = send_request('ModifyRecordFields', request.serialize)
|
1191
|
+
response = JSON.parse(body)
|
1192
|
+
if response['Response'].key?('Error') == false
|
1193
|
+
model = ModifyRecordFieldsResponse.new
|
1194
|
+
model.deserialize(response['Response'])
|
1195
|
+
model
|
1196
|
+
else
|
1197
|
+
code = response['Response']['Error']['Code']
|
1198
|
+
message = response['Response']['Error']['Message']
|
1199
|
+
reqid = response['Response']['RequestId']
|
1200
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1201
|
+
end
|
1202
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1203
|
+
raise e
|
1204
|
+
rescue StandardError => e
|
1205
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1206
|
+
end
|
1207
|
+
|
1184
1208
|
# 修改记录分组
|
1185
1209
|
|
1186
1210
|
# @param request: Request instance for ModifyRecordGroup.
|
data/lib/v20210323/models.rb
CHANGED
@@ -366,7 +366,7 @@ module TencentCloud
|
|
366
366
|
# @type DomainAlias: String
|
367
367
|
# @param Domain: 域名
|
368
368
|
# @type Domain: String
|
369
|
-
# @param DomainId: 域名ID,参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
369
|
+
# @param DomainId: 域名ID,参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
370
370
|
# @type DomainId: Integer
|
371
371
|
|
372
372
|
attr_accessor :DomainAlias, :Domain, :DomainId
|
@@ -604,7 +604,7 @@ module TencentCloud
|
|
604
604
|
class CreateDomainRequest < TencentCloud::Common::AbstractModel
|
605
605
|
# @param Domain: 域名
|
606
606
|
# @type Domain: String
|
607
|
-
# @param GroupId: 域名分组ID
|
607
|
+
# @param GroupId: 域名分组ID。可以通过接口DescribeDomainGroupList查看当前域名分组信息
|
608
608
|
# @type GroupId: Integer
|
609
609
|
# @param IsMark: 是否星标域名,”yes”、”no” 分别代表是和否。
|
610
610
|
# @type IsMark: String
|
@@ -1002,11 +1002,11 @@ module TencentCloud
|
|
1002
1002
|
|
1003
1003
|
# DeleteDomainAlias请求参数结构体
|
1004
1004
|
class DeleteDomainAliasRequest < TencentCloud::Common::AbstractModel
|
1005
|
-
# @param DomainAliasId: 域名别名ID
|
1005
|
+
# @param DomainAliasId: 域名别名ID。可以通过接口DescribeDomainAliasList查到所有的域名别名列表以及对应的ID
|
1006
1006
|
# @type DomainAliasId: Integer
|
1007
1007
|
# @param Domain: 域名
|
1008
1008
|
# @type Domain: String
|
1009
|
-
# @param DomainId: 域名ID,参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
1009
|
+
# @param DomainId: 域名ID,参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1010
1010
|
# @type DomainId: Integer
|
1011
1011
|
|
1012
1012
|
attr_accessor :DomainAliasId, :Domain, :DomainId
|
@@ -1044,7 +1044,7 @@ module TencentCloud
|
|
1044
1044
|
class DeleteDomainRequest < TencentCloud::Common::AbstractModel
|
1045
1045
|
# @param Domain: 域名
|
1046
1046
|
# @type Domain: String
|
1047
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
1047
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1048
1048
|
# @type DomainId: Integer
|
1049
1049
|
|
1050
1050
|
attr_accessor :Domain, :DomainId
|
@@ -1120,9 +1120,9 @@ module TencentCloud
|
|
1120
1120
|
class DeleteRecordRequest < TencentCloud::Common::AbstractModel
|
1121
1121
|
# @param Domain: 域名
|
1122
1122
|
# @type Domain: String
|
1123
|
-
# @param RecordId: 记录 ID
|
1123
|
+
# @param RecordId: 记录 ID 。可以通过接口DescribeRecordList查到所有的解析记录列表以及对应的RecordId
|
1124
1124
|
# @type RecordId: Integer
|
1125
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
1125
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1126
1126
|
# @type DomainId: Integer
|
1127
1127
|
|
1128
1128
|
attr_accessor :Domain, :RecordId, :DomainId
|
@@ -1162,7 +1162,7 @@ module TencentCloud
|
|
1162
1162
|
# @type Domain: String
|
1163
1163
|
# @param Account: 域名共享的账号
|
1164
1164
|
# @type Account: String
|
1165
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
1165
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1166
1166
|
# @type DomainId: Integer
|
1167
1167
|
|
1168
1168
|
attr_accessor :Domain, :Account, :DomainId
|
@@ -1296,7 +1296,7 @@ module TencentCloud
|
|
1296
1296
|
|
1297
1297
|
# DescribeBatchTask请求参数结构体
|
1298
1298
|
class DescribeBatchTaskRequest < TencentCloud::Common::AbstractModel
|
1299
|
-
# @param JobId: 任务ID
|
1299
|
+
# @param JobId: 任务ID。操作批量接口时会返回JobId
|
1300
1300
|
# @type JobId: Integer
|
1301
1301
|
|
1302
1302
|
attr_accessor :JobId
|
@@ -1361,7 +1361,7 @@ module TencentCloud
|
|
1361
1361
|
class DescribeDomainAliasListRequest < TencentCloud::Common::AbstractModel
|
1362
1362
|
# @param Domain: 域名
|
1363
1363
|
# @type Domain: String
|
1364
|
-
# @param DomainId: 域名ID,域名ID,参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
1364
|
+
# @param DomainId: 域名ID,域名ID,参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1365
1365
|
# @type DomainId: Integer
|
1366
1366
|
|
1367
1367
|
attr_accessor :Domain, :DomainId
|
@@ -1414,7 +1414,7 @@ module TencentCloud
|
|
1414
1414
|
# @type EndDate: String
|
1415
1415
|
# @param DnsFormat: DATE:按天维度统计 HOUR:按小时维度统计
|
1416
1416
|
# @type DnsFormat: String
|
1417
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
1417
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1418
1418
|
# @type DomainId: Integer
|
1419
1419
|
|
1420
1420
|
attr_accessor :Domain, :StartDate, :EndDate, :DnsFormat, :DomainId
|
@@ -1589,7 +1589,7 @@ module TencentCloud
|
|
1589
1589
|
class DescribeDomainLogListRequest < TencentCloud::Common::AbstractModel
|
1590
1590
|
# @param Domain: 域名
|
1591
1591
|
# @type Domain: String
|
1592
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
1592
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1593
1593
|
# @type DomainId: Integer
|
1594
1594
|
# @param Offset: 记录开始的偏移,第一条记录为 0,依次类推,默认为0
|
1595
1595
|
# @type Offset: Integer
|
@@ -1646,7 +1646,7 @@ module TencentCloud
|
|
1646
1646
|
class DescribeDomainPurviewRequest < TencentCloud::Common::AbstractModel
|
1647
1647
|
# @param Domain: 域名
|
1648
1648
|
# @type Domain: String
|
1649
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
1649
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1650
1650
|
# @type DomainId: Integer
|
1651
1651
|
|
1652
1652
|
attr_accessor :Domain, :DomainId
|
@@ -1693,7 +1693,7 @@ module TencentCloud
|
|
1693
1693
|
class DescribeDomainRequest < TencentCloud::Common::AbstractModel
|
1694
1694
|
# @param Domain: 域名
|
1695
1695
|
# @type Domain: String
|
1696
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
1696
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1697
1697
|
# @type DomainId: Integer
|
1698
1698
|
|
1699
1699
|
attr_accessor :Domain, :DomainId
|
@@ -1736,7 +1736,7 @@ module TencentCloud
|
|
1736
1736
|
class DescribeDomainShareInfoRequest < TencentCloud::Common::AbstractModel
|
1737
1737
|
# @param Domain: 域名
|
1738
1738
|
# @type Domain: String
|
1739
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
1739
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1740
1740
|
# @type DomainId: Integer
|
1741
1741
|
|
1742
1742
|
attr_accessor :Domain, :DomainId
|
@@ -1846,7 +1846,7 @@ module TencentCloud
|
|
1846
1846
|
# + 旧套餐:D_FREE、D_PLUS、D_EXTRA、D_EXPERT、D_ULTRA 分别对应免费套餐、个人豪华、企业1、企业2、企业3。
|
1847
1847
|
# + 新套餐:DP_FREE、DP_PLUS、DP_EXTRA、DP_EXPERT、DP_ULTRA 分别对应新免费、个人专业版、企业创业版、企业标准版、企业旗舰版。
|
1848
1848
|
# @type DomainGrade: String
|
1849
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
1849
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1850
1850
|
# @type DomainId: Integer
|
1851
1851
|
|
1852
1852
|
attr_accessor :Domain, :DomainGrade, :DomainId
|
@@ -1906,17 +1906,17 @@ module TencentCloud
|
|
1906
1906
|
class DescribeRecordListRequest < TencentCloud::Common::AbstractModel
|
1907
1907
|
# @param Domain: 要获取的解析记录所属的域名
|
1908
1908
|
# @type Domain: String
|
1909
|
-
# @param DomainId: 要获取的解析记录所属的域名Id,如果传了DomainId,系统将会忽略Domain
|
1909
|
+
# @param DomainId: 要获取的解析记录所属的域名Id,如果传了DomainId,系统将会忽略Domain参数。 可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
1910
1910
|
# @type DomainId: Integer
|
1911
1911
|
# @param Subdomain: 解析记录的主机头,如果传了此参数,则只会返回此主机头对应的解析记录
|
1912
1912
|
# @type Subdomain: String
|
1913
1913
|
# @param RecordType: 获取某种类型的解析记录,如 A,CNAME,NS,AAAA,显性URL,隐性URL,CAA,SPF等
|
1914
1914
|
# @type RecordType: String
|
1915
|
-
# @param RecordLine:
|
1915
|
+
# @param RecordLine: 获取某条线路名称的解析记录。可以通过接口DescribeRecordLineList查看当前域名允许的线路信息
|
1916
1916
|
# @type RecordLine: String
|
1917
|
-
# @param RecordLineId: 获取某个线路Id对应的解析记录,如果传RecordLineId,系统会忽略RecordLine
|
1917
|
+
# @param RecordLineId: 获取某个线路Id对应的解析记录,如果传RecordLineId,系统会忽略RecordLine参数。可以通过接口DescribeRecordLineList查看当前域名允许的线路信息
|
1918
1918
|
# @type RecordLineId: String
|
1919
|
-
# @param GroupId: 获取某个分组下的解析记录时,传这个分组Id
|
1919
|
+
# @param GroupId: 获取某个分组下的解析记录时,传这个分组Id。
|
1920
1920
|
# @type GroupId: Integer
|
1921
1921
|
# @param Keyword: 通过关键字搜索解析记录,当前支持搜索主机头和记录值
|
1922
1922
|
# @type Keyword: String
|
@@ -2002,7 +2002,7 @@ module TencentCloud
|
|
2002
2002
|
# @type Domain: String
|
2003
2003
|
# @param RecordId: 记录 ID 。可以通过接口DescribeRecordList查到所有的解析记录列表以及对应的RecordId
|
2004
2004
|
# @type RecordId: Integer
|
2005
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
2005
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
2006
2006
|
# @type DomainId: Integer
|
2007
2007
|
|
2008
2008
|
attr_accessor :Domain, :RecordId, :DomainId
|
@@ -2441,7 +2441,7 @@ module TencentCloud
|
|
2441
2441
|
# @type Subdomain: String
|
2442
2442
|
# @param DnsFormat: DATE:按天维度统计 HOUR:按小时维度统计
|
2443
2443
|
# @type DnsFormat: String
|
2444
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
2444
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
2445
2445
|
# @type DomainId: Integer
|
2446
2446
|
|
2447
2447
|
attr_accessor :Domain, :StartDate, :EndDate, :Subdomain, :DnsFormat, :DomainId
|
@@ -3042,6 +3042,27 @@ module TencentCloud
|
|
3042
3042
|
end
|
3043
3043
|
end
|
3044
3044
|
|
3045
|
+
# 键值对
|
3046
|
+
class KeyValue < TencentCloud::Common::AbstractModel
|
3047
|
+
# @param Key: 键
|
3048
|
+
# @type Key: String
|
3049
|
+
# @param Value: 值
|
3050
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3051
|
+
# @type Value: String
|
3052
|
+
|
3053
|
+
attr_accessor :Key, :Value
|
3054
|
+
|
3055
|
+
def initialize(key=nil, value=nil)
|
3056
|
+
@Key = key
|
3057
|
+
@Value = value
|
3058
|
+
end
|
3059
|
+
|
3060
|
+
def deserialize(params)
|
3061
|
+
@Key = params['Key']
|
3062
|
+
@Value = params['Value']
|
3063
|
+
end
|
3064
|
+
end
|
3065
|
+
|
3045
3066
|
# 线路分组信息
|
3046
3067
|
class LineGroupInfo < TencentCloud::Common::AbstractModel
|
3047
3068
|
# @param LineId: 线路分组ID
|
@@ -3120,7 +3141,7 @@ module TencentCloud
|
|
3120
3141
|
# @type Domain: String
|
3121
3142
|
# @param LockDays: 域名要锁定的天数,最多可锁定的天数可以通过获取域名权限接口获取。
|
3122
3143
|
# @type LockDays: Integer
|
3123
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
3144
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
3124
3145
|
# @type DomainId: Integer
|
3125
3146
|
|
3126
3147
|
attr_accessor :Domain, :LockDays, :DomainId
|
@@ -3167,7 +3188,7 @@ module TencentCloud
|
|
3167
3188
|
# @type Domain: String
|
3168
3189
|
# @param Account: 域名需要转入的账号,支持Uin或者邮箱格式
|
3169
3190
|
# @type Account: String
|
3170
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
3191
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
3171
3192
|
# @type DomainId: Integer
|
3172
3193
|
|
3173
3194
|
attr_accessor :Domain, :Account, :DomainId
|
@@ -3205,7 +3226,7 @@ module TencentCloud
|
|
3205
3226
|
class ModifyDomainRemarkRequest < TencentCloud::Common::AbstractModel
|
3206
3227
|
# @param Domain: 域名
|
3207
3228
|
# @type Domain: String
|
3208
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
3229
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
3209
3230
|
# @type DomainId: Integer
|
3210
3231
|
# @param Remark: 域名备注,删除备注请提交空内容。
|
3211
3232
|
# @type Remark: String
|
@@ -3247,7 +3268,7 @@ module TencentCloud
|
|
3247
3268
|
# @type Domain: String
|
3248
3269
|
# @param Status: 域名状态,”enable” 、”disable” 分别代表启用和暂停
|
3249
3270
|
# @type Status: String
|
3250
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
3271
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
3251
3272
|
# @type DomainId: Integer
|
3252
3273
|
|
3253
3274
|
attr_accessor :Domain, :Status, :DomainId
|
@@ -3287,7 +3308,7 @@ module TencentCloud
|
|
3287
3308
|
# @type Domain: String
|
3288
3309
|
# @param LockCode: 域名解锁码,锁定的时候会返回。
|
3289
3310
|
# @type LockCode: String
|
3290
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
3311
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
3291
3312
|
# @type DomainId: Integer
|
3292
3313
|
|
3293
3314
|
attr_accessor :Domain, :LockCode, :DomainId
|
@@ -3325,13 +3346,13 @@ module TencentCloud
|
|
3325
3346
|
class ModifyDynamicDNSRequest < TencentCloud::Common::AbstractModel
|
3326
3347
|
# @param Domain: 域名
|
3327
3348
|
# @type Domain: String
|
3328
|
-
# @param RecordId: 记录ID。
|
3349
|
+
# @param RecordId: 记录ID。 可以通过接口DescribeRecordList查到所有的解析记录列表以及对应的RecordId
|
3329
3350
|
# @type RecordId: Integer
|
3330
3351
|
# @param RecordLine: 记录线路,通过 API 记录线路获得,中文,比如:默认。
|
3331
3352
|
# @type RecordLine: String
|
3332
3353
|
# @param Value: 记录值,如 IP : 200.200.200.200, CNAME : cname.dnspod.com., MX : mail.dnspod.com.。
|
3333
3354
|
# @type Value: String
|
3334
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
3355
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
3335
3356
|
# @type DomainId: Integer
|
3336
3357
|
# @param SubDomain: 主机记录,如 www,如果不传,默认为 @。
|
3337
3358
|
# @type SubDomain: String
|
@@ -3387,7 +3408,7 @@ module TencentCloud
|
|
3387
3408
|
|
3388
3409
|
# ModifyPackageAutoRenew请求参数结构体
|
3389
3410
|
class ModifyPackageAutoRenewRequest < TencentCloud::Common::AbstractModel
|
3390
|
-
# @param ResourceId: 资源ID
|
3411
|
+
# @param ResourceId: 资源ID。可以在控制台查看所有的资源
|
3391
3412
|
# @type ResourceId: String
|
3392
3413
|
# @param Status: enable 开启自动续费;disable 关闭自动续费
|
3393
3414
|
# @type Status: String
|
@@ -3481,7 +3502,7 @@ module TencentCloud
|
|
3481
3502
|
|
3482
3503
|
# ModifyRecordBatch请求参数结构体
|
3483
3504
|
class ModifyRecordBatchRequest < TencentCloud::Common::AbstractModel
|
3484
|
-
# @param RecordIdList: 记录ID
|
3505
|
+
# @param RecordIdList: 记录ID数组。可以通过接口DescribeRecordList查到所有的解析记录列表以及对应的RecordId
|
3485
3506
|
# @type RecordIdList: Array
|
3486
3507
|
# @param Change: 要修改的字段,可选值为 [“sub_domain”、”record_type”、”area”、”value”、”mx”、”ttl”、”status”] 中的某一个。
|
3487
3508
|
# @type Change: String
|
@@ -3542,6 +3563,61 @@ module TencentCloud
|
|
3542
3563
|
end
|
3543
3564
|
end
|
3544
3565
|
|
3566
|
+
# ModifyRecordFields请求参数结构体
|
3567
|
+
class ModifyRecordFieldsRequest < TencentCloud::Common::AbstractModel
|
3568
|
+
# @param Domain: 域名
|
3569
|
+
# @type Domain: String
|
3570
|
+
# @param RecordId: 记录 ID 。
|
3571
|
+
# @type RecordId: Integer
|
3572
|
+
# @param FieldList: 要修改的记录属性和值,支持:sub_domain,record_line,record_line_id,record_type,value,ttl,status,mx,weight
|
3573
|
+
# @type FieldList: Array
|
3574
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
3575
|
+
# @type DomainId: Integer
|
3576
|
+
|
3577
|
+
attr_accessor :Domain, :RecordId, :FieldList, :DomainId
|
3578
|
+
|
3579
|
+
def initialize(domain=nil, recordid=nil, fieldlist=nil, domainid=nil)
|
3580
|
+
@Domain = domain
|
3581
|
+
@RecordId = recordid
|
3582
|
+
@FieldList = fieldlist
|
3583
|
+
@DomainId = domainid
|
3584
|
+
end
|
3585
|
+
|
3586
|
+
def deserialize(params)
|
3587
|
+
@Domain = params['Domain']
|
3588
|
+
@RecordId = params['RecordId']
|
3589
|
+
unless params['FieldList'].nil?
|
3590
|
+
@FieldList = []
|
3591
|
+
params['FieldList'].each do |i|
|
3592
|
+
keyvalue_tmp = KeyValue.new
|
3593
|
+
keyvalue_tmp.deserialize(i)
|
3594
|
+
@FieldList << keyvalue_tmp
|
3595
|
+
end
|
3596
|
+
end
|
3597
|
+
@DomainId = params['DomainId']
|
3598
|
+
end
|
3599
|
+
end
|
3600
|
+
|
3601
|
+
# ModifyRecordFields返回参数结构体
|
3602
|
+
class ModifyRecordFieldsResponse < TencentCloud::Common::AbstractModel
|
3603
|
+
# @param RecordId: 记录ID
|
3604
|
+
# @type RecordId: Integer
|
3605
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3606
|
+
# @type RequestId: String
|
3607
|
+
|
3608
|
+
attr_accessor :RecordId, :RequestId
|
3609
|
+
|
3610
|
+
def initialize(recordid=nil, requestid=nil)
|
3611
|
+
@RecordId = recordid
|
3612
|
+
@RequestId = requestid
|
3613
|
+
end
|
3614
|
+
|
3615
|
+
def deserialize(params)
|
3616
|
+
@RecordId = params['RecordId']
|
3617
|
+
@RequestId = params['RequestId']
|
3618
|
+
end
|
3619
|
+
end
|
3620
|
+
|
3545
3621
|
# ModifyRecordGroup请求参数结构体
|
3546
3622
|
class ModifyRecordGroupRequest < TencentCloud::Common::AbstractModel
|
3547
3623
|
# @param Domain: 域名
|
@@ -3594,9 +3670,9 @@ module TencentCloud
|
|
3594
3670
|
class ModifyRecordRemarkRequest < TencentCloud::Common::AbstractModel
|
3595
3671
|
# @param Domain: 域名
|
3596
3672
|
# @type Domain: String
|
3597
|
-
# @param RecordId: 记录 ID
|
3673
|
+
# @param RecordId: 记录 ID 。可以通过接口DescribeRecordList查到所有的解析记录列表以及对应的RecordId
|
3598
3674
|
# @type RecordId: Integer
|
3599
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
3675
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
3600
3676
|
# @type DomainId: Integer
|
3601
3677
|
# @param Remark: 解析记录备注,删除备注请提交空内容。
|
3602
3678
|
# @type Remark: String
|
@@ -3644,9 +3720,9 @@ module TencentCloud
|
|
3644
3720
|
# @type RecordLine: String
|
3645
3721
|
# @param Value: 记录值,如 IP : 200.200.200.200, CNAME : cname.dnspod.com., MX : mail.dnspod.com.。
|
3646
3722
|
# @type Value: String
|
3647
|
-
# @param RecordId: 记录 ID
|
3723
|
+
# @param RecordId: 记录 ID 。可以通过接口DescribeRecordList查到所有的解析记录列表以及对应的RecordId
|
3648
3724
|
# @type RecordId: Integer
|
3649
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
3725
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
3650
3726
|
# @type DomainId: Integer
|
3651
3727
|
# @param SubDomain: 主机记录,如 www,如果不传,默认为 @。
|
3652
3728
|
# @type SubDomain: String
|
@@ -3718,11 +3794,11 @@ module TencentCloud
|
|
3718
3794
|
class ModifyRecordStatusRequest < TencentCloud::Common::AbstractModel
|
3719
3795
|
# @param Domain: 域名
|
3720
3796
|
# @type Domain: String
|
3721
|
-
# @param RecordId: 记录 ID
|
3797
|
+
# @param RecordId: 记录 ID 。可以通过接口DescribeRecordList查到所有的解析记录列表以及对应的RecordId
|
3722
3798
|
# @type RecordId: Integer
|
3723
3799
|
# @param Status: 记录的状态。取值范围为 ENABLE 和 DISABLE。如果传入 DISABLE,解析不会生效,也不会验证负载均衡的限制。
|
3724
3800
|
# @type Status: String
|
3725
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
3801
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
3726
3802
|
# @type DomainId: Integer
|
3727
3803
|
|
3728
3804
|
attr_accessor :Domain, :RecordId, :Status, :DomainId
|
@@ -3854,7 +3930,7 @@ module TencentCloud
|
|
3854
3930
|
# @type RecordType: String
|
3855
3931
|
# @param Status: 记录状态。允许的值为disable。
|
3856
3932
|
# @type Status: String
|
3857
|
-
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain
|
3933
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
|
3858
3934
|
# @type DomainId: Integer
|
3859
3935
|
# @param SubDomain: 主机记录,如 www,如果不传,默认为 @。
|
3860
3936
|
# @type SubDomain: String
|
@@ -3896,7 +3972,7 @@ module TencentCloud
|
|
3896
3972
|
|
3897
3973
|
# ModifyVasAutoRenewStatus请求参数结构体
|
3898
3974
|
class ModifyVasAutoRenewStatusRequest < TencentCloud::Common::AbstractModel
|
3899
|
-
# @param ResourceId: 资源ID
|
3975
|
+
# @param ResourceId: 资源ID。可以从控制台查看所有的资源
|
3900
3976
|
# @type ResourceId: String
|
3901
3977
|
# @param Status: enable 开启自动续费;disable 关闭自动续费
|
3902
3978
|
# @type Status: String
|
@@ -3934,7 +4010,7 @@ module TencentCloud
|
|
3934
4010
|
class PayOrderWithBalanceRequest < TencentCloud::Common::AbstractModel
|
3935
4011
|
# @param BigDealIdList: 需要支付的大订单号数组
|
3936
4012
|
# @type BigDealIdList: Array
|
3937
|
-
# @param VoucherIdList: 代金券ID
|
4013
|
+
# @param VoucherIdList: 代金券ID数组。可以从控制台查到拥有的代金券
|
3938
4014
|
# @type VoucherIdList: Array
|
3939
4015
|
|
3940
4016
|
attr_accessor :BigDealIdList, :VoucherIdList
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-dnspod
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.459
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-11-
|
11
|
+
date: 2022-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|