tencentcloud-sdk-dnspod 3.0.455 → 3.0.457
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210323/client.rb +432 -0
- data/lib/v20210323/models.rb +1136 -7
- metadata +2 -2
data/lib/v20210323/models.rb
CHANGED
|
@@ -141,6 +141,136 @@ module TencentCloud
|
|
|
141
141
|
end
|
|
142
142
|
end
|
|
143
143
|
|
|
144
|
+
# CheckRecordSnapshotRollback请求参数结构体
|
|
145
|
+
class CheckRecordSnapshotRollbackRequest < TencentCloud::Common::AbstractModel
|
|
146
|
+
# @param Domain: 域名
|
|
147
|
+
# @type Domain: String
|
|
148
|
+
# @param SnapshotId: 快照 ID
|
|
149
|
+
# @type SnapshotId: String
|
|
150
|
+
# @param Record: 解析记录信息
|
|
151
|
+
# @type Record: :class:`Tencentcloud::Dnspod.v20210323.models.SnapshotRecord`
|
|
152
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
153
|
+
# @type DomainId: Integer
|
|
154
|
+
|
|
155
|
+
attr_accessor :Domain, :SnapshotId, :Record, :DomainId
|
|
156
|
+
|
|
157
|
+
def initialize(domain=nil, snapshotid=nil, record=nil, domainid=nil)
|
|
158
|
+
@Domain = domain
|
|
159
|
+
@SnapshotId = snapshotid
|
|
160
|
+
@Record = record
|
|
161
|
+
@DomainId = domainid
|
|
162
|
+
end
|
|
163
|
+
|
|
164
|
+
def deserialize(params)
|
|
165
|
+
@Domain = params['Domain']
|
|
166
|
+
@SnapshotId = params['SnapshotId']
|
|
167
|
+
unless params['Record'].nil?
|
|
168
|
+
@Record = SnapshotRecord.new
|
|
169
|
+
@Record.deserialize(params['Record'])
|
|
170
|
+
end
|
|
171
|
+
@DomainId = params['DomainId']
|
|
172
|
+
end
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
# CheckRecordSnapshotRollback返回参数结构体
|
|
176
|
+
class CheckRecordSnapshotRollbackResponse < TencentCloud::Common::AbstractModel
|
|
177
|
+
# @param Reason: 错误原因
|
|
178
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
179
|
+
# @type Reason: String
|
|
180
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
181
|
+
# @type RequestId: String
|
|
182
|
+
|
|
183
|
+
attr_accessor :Reason, :RequestId
|
|
184
|
+
|
|
185
|
+
def initialize(reason=nil, requestid=nil)
|
|
186
|
+
@Reason = reason
|
|
187
|
+
@RequestId = requestid
|
|
188
|
+
end
|
|
189
|
+
|
|
190
|
+
def deserialize(params)
|
|
191
|
+
@Reason = params['Reason']
|
|
192
|
+
@RequestId = params['RequestId']
|
|
193
|
+
end
|
|
194
|
+
end
|
|
195
|
+
|
|
196
|
+
# CheckSnapshotRollback请求参数结构体
|
|
197
|
+
class CheckSnapshotRollbackRequest < TencentCloud::Common::AbstractModel
|
|
198
|
+
# @param Domain: 域名
|
|
199
|
+
# @type Domain: String
|
|
200
|
+
# @param SnapshotId: 快照记录 ID
|
|
201
|
+
# @type SnapshotId: String
|
|
202
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
203
|
+
# @type DomainId: Integer
|
|
204
|
+
|
|
205
|
+
attr_accessor :Domain, :SnapshotId, :DomainId
|
|
206
|
+
|
|
207
|
+
def initialize(domain=nil, snapshotid=nil, domainid=nil)
|
|
208
|
+
@Domain = domain
|
|
209
|
+
@SnapshotId = snapshotid
|
|
210
|
+
@DomainId = domainid
|
|
211
|
+
end
|
|
212
|
+
|
|
213
|
+
def deserialize(params)
|
|
214
|
+
@Domain = params['Domain']
|
|
215
|
+
@SnapshotId = params['SnapshotId']
|
|
216
|
+
@DomainId = params['DomainId']
|
|
217
|
+
end
|
|
218
|
+
end
|
|
219
|
+
|
|
220
|
+
# CheckSnapshotRollback返回参数结构体
|
|
221
|
+
class CheckSnapshotRollbackResponse < TencentCloud::Common::AbstractModel
|
|
222
|
+
# @param SnapshotId: 快照记录 ID
|
|
223
|
+
# @type SnapshotId: String
|
|
224
|
+
# @param CostMinutes: 回滚时长(分钟)
|
|
225
|
+
# @type CostMinutes: Integer
|
|
226
|
+
# @param Domain: 快照所属域名
|
|
227
|
+
# @type Domain: String
|
|
228
|
+
# @param Total: 解析记录总数
|
|
229
|
+
# @type Total: Integer
|
|
230
|
+
# @param Timeout: 值为 1,表示超时
|
|
231
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
232
|
+
# @type Timeout: Integer
|
|
233
|
+
# @param Failed: 检查失败数量
|
|
234
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
235
|
+
# @type Failed: Integer
|
|
236
|
+
# @param FailedRecordList: 失败记录信息
|
|
237
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
238
|
+
# @type FailedRecordList: Array
|
|
239
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
240
|
+
# @type RequestId: String
|
|
241
|
+
|
|
242
|
+
attr_accessor :SnapshotId, :CostMinutes, :Domain, :Total, :Timeout, :Failed, :FailedRecordList, :RequestId
|
|
243
|
+
|
|
244
|
+
def initialize(snapshotid=nil, costminutes=nil, domain=nil, total=nil, timeout=nil, failed=nil, failedrecordlist=nil, requestid=nil)
|
|
245
|
+
@SnapshotId = snapshotid
|
|
246
|
+
@CostMinutes = costminutes
|
|
247
|
+
@Domain = domain
|
|
248
|
+
@Total = total
|
|
249
|
+
@Timeout = timeout
|
|
250
|
+
@Failed = failed
|
|
251
|
+
@FailedRecordList = failedrecordlist
|
|
252
|
+
@RequestId = requestid
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
def deserialize(params)
|
|
256
|
+
@SnapshotId = params['SnapshotId']
|
|
257
|
+
@CostMinutes = params['CostMinutes']
|
|
258
|
+
@Domain = params['Domain']
|
|
259
|
+
@Total = params['Total']
|
|
260
|
+
@Timeout = params['Timeout']
|
|
261
|
+
@Failed = params['Failed']
|
|
262
|
+
unless params['FailedRecordList'].nil?
|
|
263
|
+
@FailedRecordList = []
|
|
264
|
+
params['FailedRecordList'].each do |i|
|
|
265
|
+
snapshotrecord_tmp = SnapshotRecord.new
|
|
266
|
+
snapshotrecord_tmp.deserialize(i)
|
|
267
|
+
@FailedRecordList << snapshotrecord_tmp
|
|
268
|
+
end
|
|
269
|
+
end
|
|
270
|
+
@RequestId = params['RequestId']
|
|
271
|
+
end
|
|
272
|
+
end
|
|
273
|
+
|
|
144
274
|
# CreateDeal请求参数结构体
|
|
145
275
|
class CreateDealRequest < TencentCloud::Common::AbstractModel
|
|
146
276
|
# @param DealType: 询价类型,1 新购,2 续费,3 套餐升级(增值服务暂时只支持新购)
|
|
@@ -694,6 +824,50 @@ module TencentCloud
|
|
|
694
824
|
end
|
|
695
825
|
end
|
|
696
826
|
|
|
827
|
+
# CreateRecordGroup请求参数结构体
|
|
828
|
+
class CreateRecordGroupRequest < TencentCloud::Common::AbstractModel
|
|
829
|
+
# @param Domain: 域名
|
|
830
|
+
# @type Domain: String
|
|
831
|
+
# @param GroupName: 分组名称
|
|
832
|
+
# @type GroupName: String
|
|
833
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
834
|
+
# @type DomainId: Integer
|
|
835
|
+
|
|
836
|
+
attr_accessor :Domain, :GroupName, :DomainId
|
|
837
|
+
|
|
838
|
+
def initialize(domain=nil, groupname=nil, domainid=nil)
|
|
839
|
+
@Domain = domain
|
|
840
|
+
@GroupName = groupname
|
|
841
|
+
@DomainId = domainid
|
|
842
|
+
end
|
|
843
|
+
|
|
844
|
+
def deserialize(params)
|
|
845
|
+
@Domain = params['Domain']
|
|
846
|
+
@GroupName = params['GroupName']
|
|
847
|
+
@DomainId = params['DomainId']
|
|
848
|
+
end
|
|
849
|
+
end
|
|
850
|
+
|
|
851
|
+
# CreateRecordGroup返回参数结构体
|
|
852
|
+
class CreateRecordGroupResponse < TencentCloud::Common::AbstractModel
|
|
853
|
+
# @param GroupId: 新增的分组 ID
|
|
854
|
+
# @type GroupId: Integer
|
|
855
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
856
|
+
# @type RequestId: String
|
|
857
|
+
|
|
858
|
+
attr_accessor :GroupId, :RequestId
|
|
859
|
+
|
|
860
|
+
def initialize(groupid=nil, requestid=nil)
|
|
861
|
+
@GroupId = groupid
|
|
862
|
+
@RequestId = requestid
|
|
863
|
+
end
|
|
864
|
+
|
|
865
|
+
def deserialize(params)
|
|
866
|
+
@GroupId = params['GroupId']
|
|
867
|
+
@RequestId = params['RequestId']
|
|
868
|
+
end
|
|
869
|
+
end
|
|
870
|
+
|
|
697
871
|
# CreateRecord请求参数结构体
|
|
698
872
|
class CreateRecordRequest < TencentCloud::Common::AbstractModel
|
|
699
873
|
# @param Domain: 域名
|
|
@@ -770,6 +944,42 @@ module TencentCloud
|
|
|
770
944
|
end
|
|
771
945
|
end
|
|
772
946
|
|
|
947
|
+
# CreateSnapshot请求参数结构体
|
|
948
|
+
class CreateSnapshotRequest < TencentCloud::Common::AbstractModel
|
|
949
|
+
# @param Domain: 域名
|
|
950
|
+
# @type Domain: String
|
|
951
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
952
|
+
# @type DomainId: Integer
|
|
953
|
+
|
|
954
|
+
attr_accessor :Domain, :DomainId
|
|
955
|
+
|
|
956
|
+
def initialize(domain=nil, domainid=nil)
|
|
957
|
+
@Domain = domain
|
|
958
|
+
@DomainId = domainid
|
|
959
|
+
end
|
|
960
|
+
|
|
961
|
+
def deserialize(params)
|
|
962
|
+
@Domain = params['Domain']
|
|
963
|
+
@DomainId = params['DomainId']
|
|
964
|
+
end
|
|
965
|
+
end
|
|
966
|
+
|
|
967
|
+
# CreateSnapshot返回参数结构体
|
|
968
|
+
class CreateSnapshotResponse < TencentCloud::Common::AbstractModel
|
|
969
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
970
|
+
# @type RequestId: String
|
|
971
|
+
|
|
972
|
+
attr_accessor :RequestId
|
|
973
|
+
|
|
974
|
+
def initialize(requestid=nil)
|
|
975
|
+
@RequestId = requestid
|
|
976
|
+
end
|
|
977
|
+
|
|
978
|
+
def deserialize(params)
|
|
979
|
+
@RequestId = params['RequestId']
|
|
980
|
+
end
|
|
981
|
+
end
|
|
982
|
+
|
|
773
983
|
# 子订单号列表
|
|
774
984
|
class Deals < TencentCloud::Common::AbstractModel
|
|
775
985
|
# @param DealId: 子订单ID
|
|
@@ -866,6 +1076,46 @@ module TencentCloud
|
|
|
866
1076
|
end
|
|
867
1077
|
end
|
|
868
1078
|
|
|
1079
|
+
# DeleteRecordGroup请求参数结构体
|
|
1080
|
+
class DeleteRecordGroupRequest < TencentCloud::Common::AbstractModel
|
|
1081
|
+
# @param Domain: 域名
|
|
1082
|
+
# @type Domain: String
|
|
1083
|
+
# @param GroupId: 分组 ID
|
|
1084
|
+
# @type GroupId: Integer
|
|
1085
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
1086
|
+
# @type DomainId: Integer
|
|
1087
|
+
|
|
1088
|
+
attr_accessor :Domain, :GroupId, :DomainId
|
|
1089
|
+
|
|
1090
|
+
def initialize(domain=nil, groupid=nil, domainid=nil)
|
|
1091
|
+
@Domain = domain
|
|
1092
|
+
@GroupId = groupid
|
|
1093
|
+
@DomainId = domainid
|
|
1094
|
+
end
|
|
1095
|
+
|
|
1096
|
+
def deserialize(params)
|
|
1097
|
+
@Domain = params['Domain']
|
|
1098
|
+
@GroupId = params['GroupId']
|
|
1099
|
+
@DomainId = params['DomainId']
|
|
1100
|
+
end
|
|
1101
|
+
end
|
|
1102
|
+
|
|
1103
|
+
# DeleteRecordGroup返回参数结构体
|
|
1104
|
+
class DeleteRecordGroupResponse < TencentCloud::Common::AbstractModel
|
|
1105
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1106
|
+
# @type RequestId: String
|
|
1107
|
+
|
|
1108
|
+
attr_accessor :RequestId
|
|
1109
|
+
|
|
1110
|
+
def initialize(requestid=nil)
|
|
1111
|
+
@RequestId = requestid
|
|
1112
|
+
end
|
|
1113
|
+
|
|
1114
|
+
def deserialize(params)
|
|
1115
|
+
@RequestId = params['RequestId']
|
|
1116
|
+
end
|
|
1117
|
+
end
|
|
1118
|
+
|
|
869
1119
|
# DeleteRecord请求参数结构体
|
|
870
1120
|
class DeleteRecordRequest < TencentCloud::Common::AbstractModel
|
|
871
1121
|
# @param Domain: 域名
|
|
@@ -946,6 +1196,46 @@ module TencentCloud
|
|
|
946
1196
|
end
|
|
947
1197
|
end
|
|
948
1198
|
|
|
1199
|
+
# DeleteSnapshot请求参数结构体
|
|
1200
|
+
class DeleteSnapshotRequest < TencentCloud::Common::AbstractModel
|
|
1201
|
+
# @param Domain: 域名
|
|
1202
|
+
# @type Domain: String
|
|
1203
|
+
# @param SnapshotId: 快照记录 ID
|
|
1204
|
+
# @type SnapshotId: String
|
|
1205
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
1206
|
+
# @type DomainId: Integer
|
|
1207
|
+
|
|
1208
|
+
attr_accessor :Domain, :SnapshotId, :DomainId
|
|
1209
|
+
|
|
1210
|
+
def initialize(domain=nil, snapshotid=nil, domainid=nil)
|
|
1211
|
+
@Domain = domain
|
|
1212
|
+
@SnapshotId = snapshotid
|
|
1213
|
+
@DomainId = domainid
|
|
1214
|
+
end
|
|
1215
|
+
|
|
1216
|
+
def deserialize(params)
|
|
1217
|
+
@Domain = params['Domain']
|
|
1218
|
+
@SnapshotId = params['SnapshotId']
|
|
1219
|
+
@DomainId = params['DomainId']
|
|
1220
|
+
end
|
|
1221
|
+
end
|
|
1222
|
+
|
|
1223
|
+
# DeleteSnapshot返回参数结构体
|
|
1224
|
+
class DeleteSnapshotResponse < TencentCloud::Common::AbstractModel
|
|
1225
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1226
|
+
# @type RequestId: String
|
|
1227
|
+
|
|
1228
|
+
attr_accessor :RequestId
|
|
1229
|
+
|
|
1230
|
+
def initialize(requestid=nil)
|
|
1231
|
+
@RequestId = requestid
|
|
1232
|
+
end
|
|
1233
|
+
|
|
1234
|
+
def deserialize(params)
|
|
1235
|
+
@RequestId = params['RequestId']
|
|
1236
|
+
end
|
|
1237
|
+
end
|
|
1238
|
+
|
|
949
1239
|
# 查看任务详情返回结构
|
|
950
1240
|
class DescribeBatchTaskDetail < TencentCloud::Common::AbstractModel
|
|
951
1241
|
# @param RecordList: 见BatchRecordInfo
|
|
@@ -1493,6 +1783,61 @@ module TencentCloud
|
|
|
1493
1783
|
end
|
|
1494
1784
|
end
|
|
1495
1785
|
|
|
1786
|
+
# DescribeRecordGroupList请求参数结构体
|
|
1787
|
+
class DescribeRecordGroupListRequest < TencentCloud::Common::AbstractModel
|
|
1788
|
+
# @param Domain: 域名
|
|
1789
|
+
# @type Domain: String
|
|
1790
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
1791
|
+
# @type DomainId: Integer
|
|
1792
|
+
# @param Offset: 分页开始位置
|
|
1793
|
+
# @type Offset: Integer
|
|
1794
|
+
# @param Limit: 分页每页数
|
|
1795
|
+
# @type Limit: Integer
|
|
1796
|
+
|
|
1797
|
+
attr_accessor :Domain, :DomainId, :Offset, :Limit
|
|
1798
|
+
|
|
1799
|
+
def initialize(domain=nil, domainid=nil, offset=nil, limit=nil)
|
|
1800
|
+
@Domain = domain
|
|
1801
|
+
@DomainId = domainid
|
|
1802
|
+
@Offset = offset
|
|
1803
|
+
@Limit = limit
|
|
1804
|
+
end
|
|
1805
|
+
|
|
1806
|
+
def deserialize(params)
|
|
1807
|
+
@Domain = params['Domain']
|
|
1808
|
+
@DomainId = params['DomainId']
|
|
1809
|
+
@Offset = params['Offset']
|
|
1810
|
+
@Limit = params['Limit']
|
|
1811
|
+
end
|
|
1812
|
+
end
|
|
1813
|
+
|
|
1814
|
+
# DescribeRecordGroupList返回参数结构体
|
|
1815
|
+
class DescribeRecordGroupListResponse < TencentCloud::Common::AbstractModel
|
|
1816
|
+
# @param GroupList: 分组列表
|
|
1817
|
+
# @type GroupList: Array
|
|
1818
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1819
|
+
# @type RequestId: String
|
|
1820
|
+
|
|
1821
|
+
attr_accessor :GroupList, :RequestId
|
|
1822
|
+
|
|
1823
|
+
def initialize(grouplist=nil, requestid=nil)
|
|
1824
|
+
@GroupList = grouplist
|
|
1825
|
+
@RequestId = requestid
|
|
1826
|
+
end
|
|
1827
|
+
|
|
1828
|
+
def deserialize(params)
|
|
1829
|
+
unless params['GroupList'].nil?
|
|
1830
|
+
@GroupList = []
|
|
1831
|
+
params['GroupList'].each do |i|
|
|
1832
|
+
recordgroupinfo_tmp = RecordGroupInfo.new
|
|
1833
|
+
recordgroupinfo_tmp.deserialize(i)
|
|
1834
|
+
@GroupList << recordgroupinfo_tmp
|
|
1835
|
+
end
|
|
1836
|
+
end
|
|
1837
|
+
@RequestId = params['RequestId']
|
|
1838
|
+
end
|
|
1839
|
+
end
|
|
1840
|
+
|
|
1496
1841
|
# DescribeRecordLineList请求参数结构体
|
|
1497
1842
|
class DescribeRecordLineListRequest < TencentCloud::Common::AbstractModel
|
|
1498
1843
|
# @param Domain: 域名。
|
|
@@ -1698,14 +2043,109 @@ module TencentCloud
|
|
|
1698
2043
|
end
|
|
1699
2044
|
end
|
|
1700
2045
|
|
|
1701
|
-
#
|
|
1702
|
-
class
|
|
1703
|
-
# @param
|
|
1704
|
-
#
|
|
1705
|
-
#
|
|
1706
|
-
# @type
|
|
2046
|
+
# DescribeRecordSnapshotRollbackResult请求参数结构体
|
|
2047
|
+
class DescribeRecordSnapshotRollbackResultRequest < TencentCloud::Common::AbstractModel
|
|
2048
|
+
# @param Domain: 域名
|
|
2049
|
+
# @type Domain: String
|
|
2050
|
+
# @param JobId: 回滚任务 ID
|
|
2051
|
+
# @type JobId: Integer
|
|
2052
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
2053
|
+
# @type DomainId: Integer
|
|
1707
2054
|
|
|
1708
|
-
attr_accessor :
|
|
2055
|
+
attr_accessor :Domain, :JobId, :DomainId
|
|
2056
|
+
|
|
2057
|
+
def initialize(domain=nil, jobid=nil, domainid=nil)
|
|
2058
|
+
@Domain = domain
|
|
2059
|
+
@JobId = jobid
|
|
2060
|
+
@DomainId = domainid
|
|
2061
|
+
end
|
|
2062
|
+
|
|
2063
|
+
def deserialize(params)
|
|
2064
|
+
@Domain = params['Domain']
|
|
2065
|
+
@JobId = params['JobId']
|
|
2066
|
+
@DomainId = params['DomainId']
|
|
2067
|
+
end
|
|
2068
|
+
end
|
|
2069
|
+
|
|
2070
|
+
# DescribeRecordSnapshotRollbackResult返回参数结构体
|
|
2071
|
+
class DescribeRecordSnapshotRollbackResultResponse < TencentCloud::Common::AbstractModel
|
|
2072
|
+
# @param JobId: 回滚任务 ID
|
|
2073
|
+
# @type JobId: Integer
|
|
2074
|
+
# @param Status: 回滚状态
|
|
2075
|
+
# @type Status: String
|
|
2076
|
+
# @param FailedRecordList: 失败的记录信息
|
|
2077
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2078
|
+
# @type FailedRecordList: Array
|
|
2079
|
+
# @param Domain: 所属域名
|
|
2080
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2081
|
+
# @type Domain: String
|
|
2082
|
+
# @param Progress: 回滚进度
|
|
2083
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2084
|
+
# @type Progress: Integer
|
|
2085
|
+
# @param LeftMinutes: 回滚剩余时间(单位:分钟)
|
|
2086
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2087
|
+
# @type LeftMinutes: Integer
|
|
2088
|
+
# @param Total: 总记录数
|
|
2089
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2090
|
+
# @type Total: Integer
|
|
2091
|
+
# @param Failed: 失败记录数
|
|
2092
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2093
|
+
# @type Failed: Integer
|
|
2094
|
+
# @param Success: 成功记录数
|
|
2095
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2096
|
+
# @type Success: Integer
|
|
2097
|
+
# @param CosUrl: 快照下载地址
|
|
2098
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2099
|
+
# @type CosUrl: String
|
|
2100
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2101
|
+
# @type RequestId: String
|
|
2102
|
+
|
|
2103
|
+
attr_accessor :JobId, :Status, :FailedRecordList, :Domain, :Progress, :LeftMinutes, :Total, :Failed, :Success, :CosUrl, :RequestId
|
|
2104
|
+
|
|
2105
|
+
def initialize(jobid=nil, status=nil, failedrecordlist=nil, domain=nil, progress=nil, leftminutes=nil, total=nil, failed=nil, success=nil, cosurl=nil, requestid=nil)
|
|
2106
|
+
@JobId = jobid
|
|
2107
|
+
@Status = status
|
|
2108
|
+
@FailedRecordList = failedrecordlist
|
|
2109
|
+
@Domain = domain
|
|
2110
|
+
@Progress = progress
|
|
2111
|
+
@LeftMinutes = leftminutes
|
|
2112
|
+
@Total = total
|
|
2113
|
+
@Failed = failed
|
|
2114
|
+
@Success = success
|
|
2115
|
+
@CosUrl = cosurl
|
|
2116
|
+
@RequestId = requestid
|
|
2117
|
+
end
|
|
2118
|
+
|
|
2119
|
+
def deserialize(params)
|
|
2120
|
+
@JobId = params['JobId']
|
|
2121
|
+
@Status = params['Status']
|
|
2122
|
+
unless params['FailedRecordList'].nil?
|
|
2123
|
+
@FailedRecordList = []
|
|
2124
|
+
params['FailedRecordList'].each do |i|
|
|
2125
|
+
snapshotrecord_tmp = SnapshotRecord.new
|
|
2126
|
+
snapshotrecord_tmp.deserialize(i)
|
|
2127
|
+
@FailedRecordList << snapshotrecord_tmp
|
|
2128
|
+
end
|
|
2129
|
+
end
|
|
2130
|
+
@Domain = params['Domain']
|
|
2131
|
+
@Progress = params['Progress']
|
|
2132
|
+
@LeftMinutes = params['LeftMinutes']
|
|
2133
|
+
@Total = params['Total']
|
|
2134
|
+
@Failed = params['Failed']
|
|
2135
|
+
@Success = params['Success']
|
|
2136
|
+
@CosUrl = params['CosUrl']
|
|
2137
|
+
@RequestId = params['RequestId']
|
|
2138
|
+
end
|
|
2139
|
+
end
|
|
2140
|
+
|
|
2141
|
+
# DescribeRecordType请求参数结构体
|
|
2142
|
+
class DescribeRecordTypeRequest < TencentCloud::Common::AbstractModel
|
|
2143
|
+
# @param DomainGrade: 域名等级。
|
|
2144
|
+
# + 旧套餐:D_FREE、D_PLUS、D_EXTRA、D_EXPERT、D_ULTRA 分别对应免费套餐、个人豪华、企业1、企业2、企业3。
|
|
2145
|
+
# + 新套餐:DP_FREE、DP_PLUS、DP_EXTRA、DP_EXPERT、DP_ULTRA 分别对应新免费、个人专业版、企业创业版、企业标准版、企业旗舰版。
|
|
2146
|
+
# @type DomainGrade: String
|
|
2147
|
+
|
|
2148
|
+
attr_accessor :DomainGrade
|
|
1709
2149
|
|
|
1710
2150
|
def initialize(domaingrade=nil)
|
|
1711
2151
|
@DomainGrade = domaingrade
|
|
@@ -1736,6 +2176,259 @@ module TencentCloud
|
|
|
1736
2176
|
end
|
|
1737
2177
|
end
|
|
1738
2178
|
|
|
2179
|
+
# DescribeSnapshotConfig请求参数结构体
|
|
2180
|
+
class DescribeSnapshotConfigRequest < TencentCloud::Common::AbstractModel
|
|
2181
|
+
# @param Domain: 域名
|
|
2182
|
+
# @type Domain: String
|
|
2183
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
2184
|
+
# @type DomainId: Integer
|
|
2185
|
+
|
|
2186
|
+
attr_accessor :Domain, :DomainId
|
|
2187
|
+
|
|
2188
|
+
def initialize(domain=nil, domainid=nil)
|
|
2189
|
+
@Domain = domain
|
|
2190
|
+
@DomainId = domainid
|
|
2191
|
+
end
|
|
2192
|
+
|
|
2193
|
+
def deserialize(params)
|
|
2194
|
+
@Domain = params['Domain']
|
|
2195
|
+
@DomainId = params['DomainId']
|
|
2196
|
+
end
|
|
2197
|
+
end
|
|
2198
|
+
|
|
2199
|
+
# DescribeSnapshotConfig返回参数结构体
|
|
2200
|
+
class DescribeSnapshotConfigResponse < TencentCloud::Common::AbstractModel
|
|
2201
|
+
# @param SnapshotConfig: 解析快照配置
|
|
2202
|
+
# @type SnapshotConfig: :class:`Tencentcloud::Dnspod.v20210323.models.SnapshotConfig`
|
|
2203
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2204
|
+
# @type RequestId: String
|
|
2205
|
+
|
|
2206
|
+
attr_accessor :SnapshotConfig, :RequestId
|
|
2207
|
+
|
|
2208
|
+
def initialize(snapshotconfig=nil, requestid=nil)
|
|
2209
|
+
@SnapshotConfig = snapshotconfig
|
|
2210
|
+
@RequestId = requestid
|
|
2211
|
+
end
|
|
2212
|
+
|
|
2213
|
+
def deserialize(params)
|
|
2214
|
+
unless params['SnapshotConfig'].nil?
|
|
2215
|
+
@SnapshotConfig = SnapshotConfig.new
|
|
2216
|
+
@SnapshotConfig.deserialize(params['SnapshotConfig'])
|
|
2217
|
+
end
|
|
2218
|
+
@RequestId = params['RequestId']
|
|
2219
|
+
end
|
|
2220
|
+
end
|
|
2221
|
+
|
|
2222
|
+
# DescribeSnapshotList请求参数结构体
|
|
2223
|
+
class DescribeSnapshotListRequest < TencentCloud::Common::AbstractModel
|
|
2224
|
+
# @param Domain: 域名
|
|
2225
|
+
# @type Domain: String
|
|
2226
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
2227
|
+
# @type DomainId: Integer
|
|
2228
|
+
|
|
2229
|
+
attr_accessor :Domain, :DomainId
|
|
2230
|
+
|
|
2231
|
+
def initialize(domain=nil, domainid=nil)
|
|
2232
|
+
@Domain = domain
|
|
2233
|
+
@DomainId = domainid
|
|
2234
|
+
end
|
|
2235
|
+
|
|
2236
|
+
def deserialize(params)
|
|
2237
|
+
@Domain = params['Domain']
|
|
2238
|
+
@DomainId = params['DomainId']
|
|
2239
|
+
end
|
|
2240
|
+
end
|
|
2241
|
+
|
|
2242
|
+
# DescribeSnapshotList返回参数结构体
|
|
2243
|
+
class DescribeSnapshotListResponse < TencentCloud::Common::AbstractModel
|
|
2244
|
+
# @param Info: 分页信息
|
|
2245
|
+
# @type Info: :class:`Tencentcloud::Dnspod.v20210323.models.SnapshotPageInfo`
|
|
2246
|
+
# @param SnapshotList: 快照列表
|
|
2247
|
+
# @type SnapshotList: Array
|
|
2248
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2249
|
+
# @type RequestId: String
|
|
2250
|
+
|
|
2251
|
+
attr_accessor :Info, :SnapshotList, :RequestId
|
|
2252
|
+
|
|
2253
|
+
def initialize(info=nil, snapshotlist=nil, requestid=nil)
|
|
2254
|
+
@Info = info
|
|
2255
|
+
@SnapshotList = snapshotlist
|
|
2256
|
+
@RequestId = requestid
|
|
2257
|
+
end
|
|
2258
|
+
|
|
2259
|
+
def deserialize(params)
|
|
2260
|
+
unless params['Info'].nil?
|
|
2261
|
+
@Info = SnapshotPageInfo.new
|
|
2262
|
+
@Info.deserialize(params['Info'])
|
|
2263
|
+
end
|
|
2264
|
+
unless params['SnapshotList'].nil?
|
|
2265
|
+
@SnapshotList = []
|
|
2266
|
+
params['SnapshotList'].each do |i|
|
|
2267
|
+
snapshotinfo_tmp = SnapshotInfo.new
|
|
2268
|
+
snapshotinfo_tmp.deserialize(i)
|
|
2269
|
+
@SnapshotList << snapshotinfo_tmp
|
|
2270
|
+
end
|
|
2271
|
+
end
|
|
2272
|
+
@RequestId = params['RequestId']
|
|
2273
|
+
end
|
|
2274
|
+
end
|
|
2275
|
+
|
|
2276
|
+
# DescribeSnapshotRollbackResult请求参数结构体
|
|
2277
|
+
class DescribeSnapshotRollbackResultRequest < TencentCloud::Common::AbstractModel
|
|
2278
|
+
# @param Domain: 域名
|
|
2279
|
+
# @type Domain: String
|
|
2280
|
+
# @param TaskId: 快照回滚任务 ID
|
|
2281
|
+
# @type TaskId: Integer
|
|
2282
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
2283
|
+
# @type DomainId: Integer
|
|
2284
|
+
|
|
2285
|
+
attr_accessor :Domain, :TaskId, :DomainId
|
|
2286
|
+
|
|
2287
|
+
def initialize(domain=nil, taskid=nil, domainid=nil)
|
|
2288
|
+
@Domain = domain
|
|
2289
|
+
@TaskId = taskid
|
|
2290
|
+
@DomainId = domainid
|
|
2291
|
+
end
|
|
2292
|
+
|
|
2293
|
+
def deserialize(params)
|
|
2294
|
+
@Domain = params['Domain']
|
|
2295
|
+
@TaskId = params['TaskId']
|
|
2296
|
+
@DomainId = params['DomainId']
|
|
2297
|
+
end
|
|
2298
|
+
end
|
|
2299
|
+
|
|
2300
|
+
# DescribeSnapshotRollbackResult返回参数结构体
|
|
2301
|
+
class DescribeSnapshotRollbackResultResponse < TencentCloud::Common::AbstractModel
|
|
2302
|
+
# @param Domain: 快照所属域名
|
|
2303
|
+
# @type Domain: String
|
|
2304
|
+
# @param LeftMinutes: 回滚剩余时间(分钟)
|
|
2305
|
+
# @type LeftMinutes: Integer
|
|
2306
|
+
# @param Progress: 回滚进度百分比
|
|
2307
|
+
# @type Progress: Integer
|
|
2308
|
+
# @param SnapshotId: 快照 ID
|
|
2309
|
+
# @type SnapshotId: String
|
|
2310
|
+
# @param Status: 回滚状态
|
|
2311
|
+
# @type Status: String
|
|
2312
|
+
# @param TaskId: 快照回滚任务 ID
|
|
2313
|
+
# @type TaskId: Integer
|
|
2314
|
+
# @param Success: 成功数量
|
|
2315
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2316
|
+
# @type Success: Integer
|
|
2317
|
+
# @param Failed: 失败数量
|
|
2318
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2319
|
+
# @type Failed: Integer
|
|
2320
|
+
# @param Total: 总数量
|
|
2321
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2322
|
+
# @type Total: Integer
|
|
2323
|
+
# @param FailedRecordList: 失败详细信息
|
|
2324
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2325
|
+
# @type FailedRecordList: Array
|
|
2326
|
+
# @param CosUrl: 快照的下载地址
|
|
2327
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2328
|
+
# @type CosUrl: String
|
|
2329
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2330
|
+
# @type RequestId: String
|
|
2331
|
+
|
|
2332
|
+
attr_accessor :Domain, :LeftMinutes, :Progress, :SnapshotId, :Status, :TaskId, :Success, :Failed, :Total, :FailedRecordList, :CosUrl, :RequestId
|
|
2333
|
+
|
|
2334
|
+
def initialize(domain=nil, leftminutes=nil, progress=nil, snapshotid=nil, status=nil, taskid=nil, success=nil, failed=nil, total=nil, failedrecordlist=nil, cosurl=nil, requestid=nil)
|
|
2335
|
+
@Domain = domain
|
|
2336
|
+
@LeftMinutes = leftminutes
|
|
2337
|
+
@Progress = progress
|
|
2338
|
+
@SnapshotId = snapshotid
|
|
2339
|
+
@Status = status
|
|
2340
|
+
@TaskId = taskid
|
|
2341
|
+
@Success = success
|
|
2342
|
+
@Failed = failed
|
|
2343
|
+
@Total = total
|
|
2344
|
+
@FailedRecordList = failedrecordlist
|
|
2345
|
+
@CosUrl = cosurl
|
|
2346
|
+
@RequestId = requestid
|
|
2347
|
+
end
|
|
2348
|
+
|
|
2349
|
+
def deserialize(params)
|
|
2350
|
+
@Domain = params['Domain']
|
|
2351
|
+
@LeftMinutes = params['LeftMinutes']
|
|
2352
|
+
@Progress = params['Progress']
|
|
2353
|
+
@SnapshotId = params['SnapshotId']
|
|
2354
|
+
@Status = params['Status']
|
|
2355
|
+
@TaskId = params['TaskId']
|
|
2356
|
+
@Success = params['Success']
|
|
2357
|
+
@Failed = params['Failed']
|
|
2358
|
+
@Total = params['Total']
|
|
2359
|
+
unless params['FailedRecordList'].nil?
|
|
2360
|
+
@FailedRecordList = []
|
|
2361
|
+
params['FailedRecordList'].each do |i|
|
|
2362
|
+
snapshotrecord_tmp = SnapshotRecord.new
|
|
2363
|
+
snapshotrecord_tmp.deserialize(i)
|
|
2364
|
+
@FailedRecordList << snapshotrecord_tmp
|
|
2365
|
+
end
|
|
2366
|
+
end
|
|
2367
|
+
@CosUrl = params['CosUrl']
|
|
2368
|
+
@RequestId = params['RequestId']
|
|
2369
|
+
end
|
|
2370
|
+
end
|
|
2371
|
+
|
|
2372
|
+
# DescribeSnapshotRollbackTask请求参数结构体
|
|
2373
|
+
class DescribeSnapshotRollbackTaskRequest < TencentCloud::Common::AbstractModel
|
|
2374
|
+
# @param Domain: 域名
|
|
2375
|
+
# @type Domain: String
|
|
2376
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
2377
|
+
# @type DomainId: Integer
|
|
2378
|
+
|
|
2379
|
+
attr_accessor :Domain, :DomainId
|
|
2380
|
+
|
|
2381
|
+
def initialize(domain=nil, domainid=nil)
|
|
2382
|
+
@Domain = domain
|
|
2383
|
+
@DomainId = domainid
|
|
2384
|
+
end
|
|
2385
|
+
|
|
2386
|
+
def deserialize(params)
|
|
2387
|
+
@Domain = params['Domain']
|
|
2388
|
+
@DomainId = params['DomainId']
|
|
2389
|
+
end
|
|
2390
|
+
end
|
|
2391
|
+
|
|
2392
|
+
# DescribeSnapshotRollbackTask返回参数结构体
|
|
2393
|
+
class DescribeSnapshotRollbackTaskResponse < TencentCloud::Common::AbstractModel
|
|
2394
|
+
# @param Domain: 快照所属域名
|
|
2395
|
+
# @type Domain: String
|
|
2396
|
+
# @param SnapshotId: 快照 ID
|
|
2397
|
+
# @type SnapshotId: String
|
|
2398
|
+
# @param Status: 回滚状态
|
|
2399
|
+
# @type Status: String
|
|
2400
|
+
# @param TaskId: 快照回滚任务 ID
|
|
2401
|
+
# @type TaskId: Integer
|
|
2402
|
+
# @param RecordCount: 总数量
|
|
2403
|
+
# @type RecordCount: Integer
|
|
2404
|
+
# @param CreatedOn: 开始回滚时间
|
|
2405
|
+
# @type CreatedOn: String
|
|
2406
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2407
|
+
# @type RequestId: String
|
|
2408
|
+
|
|
2409
|
+
attr_accessor :Domain, :SnapshotId, :Status, :TaskId, :RecordCount, :CreatedOn, :RequestId
|
|
2410
|
+
|
|
2411
|
+
def initialize(domain=nil, snapshotid=nil, status=nil, taskid=nil, recordcount=nil, createdon=nil, requestid=nil)
|
|
2412
|
+
@Domain = domain
|
|
2413
|
+
@SnapshotId = snapshotid
|
|
2414
|
+
@Status = status
|
|
2415
|
+
@TaskId = taskid
|
|
2416
|
+
@RecordCount = recordcount
|
|
2417
|
+
@CreatedOn = createdon
|
|
2418
|
+
@RequestId = requestid
|
|
2419
|
+
end
|
|
2420
|
+
|
|
2421
|
+
def deserialize(params)
|
|
2422
|
+
@Domain = params['Domain']
|
|
2423
|
+
@SnapshotId = params['SnapshotId']
|
|
2424
|
+
@Status = params['Status']
|
|
2425
|
+
@TaskId = params['TaskId']
|
|
2426
|
+
@RecordCount = params['RecordCount']
|
|
2427
|
+
@CreatedOn = params['CreatedOn']
|
|
2428
|
+
@RequestId = params['RequestId']
|
|
2429
|
+
end
|
|
2430
|
+
end
|
|
2431
|
+
|
|
1739
2432
|
# DescribeSubdomainAnalytics请求参数结构体
|
|
1740
2433
|
class DescribeSubdomainAnalyticsRequest < TencentCloud::Common::AbstractModel
|
|
1741
2434
|
# @param Domain: 要查询解析量的域名
|
|
@@ -2277,6 +2970,50 @@ module TencentCloud
|
|
|
2277
2970
|
end
|
|
2278
2971
|
end
|
|
2279
2972
|
|
|
2973
|
+
# DownloadSnapshot请求参数结构体
|
|
2974
|
+
class DownloadSnapshotRequest < TencentCloud::Common::AbstractModel
|
|
2975
|
+
# @param Domain: 域名
|
|
2976
|
+
# @type Domain: String
|
|
2977
|
+
# @param SnapshotId: 快照记录 ID
|
|
2978
|
+
# @type SnapshotId: String
|
|
2979
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
2980
|
+
# @type DomainId: Integer
|
|
2981
|
+
|
|
2982
|
+
attr_accessor :Domain, :SnapshotId, :DomainId
|
|
2983
|
+
|
|
2984
|
+
def initialize(domain=nil, snapshotid=nil, domainid=nil)
|
|
2985
|
+
@Domain = domain
|
|
2986
|
+
@SnapshotId = snapshotid
|
|
2987
|
+
@DomainId = domainid
|
|
2988
|
+
end
|
|
2989
|
+
|
|
2990
|
+
def deserialize(params)
|
|
2991
|
+
@Domain = params['Domain']
|
|
2992
|
+
@SnapshotId = params['SnapshotId']
|
|
2993
|
+
@DomainId = params['DomainId']
|
|
2994
|
+
end
|
|
2995
|
+
end
|
|
2996
|
+
|
|
2997
|
+
# DownloadSnapshot返回参数结构体
|
|
2998
|
+
class DownloadSnapshotResponse < TencentCloud::Common::AbstractModel
|
|
2999
|
+
# @param CosUrl: 快照下载链接
|
|
3000
|
+
# @type CosUrl: String
|
|
3001
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3002
|
+
# @type RequestId: String
|
|
3003
|
+
|
|
3004
|
+
attr_accessor :CosUrl, :RequestId
|
|
3005
|
+
|
|
3006
|
+
def initialize(cosurl=nil, requestid=nil)
|
|
3007
|
+
@CosUrl = cosurl
|
|
3008
|
+
@RequestId = requestid
|
|
3009
|
+
end
|
|
3010
|
+
|
|
3011
|
+
def deserialize(params)
|
|
3012
|
+
@CosUrl = params['CosUrl']
|
|
3013
|
+
@RequestId = params['RequestId']
|
|
3014
|
+
end
|
|
3015
|
+
end
|
|
3016
|
+
|
|
2280
3017
|
# 域名分组列表
|
|
2281
3018
|
class GroupInfo < TencentCloud::Common::AbstractModel
|
|
2282
3019
|
# @param GroupId: 分组ID
|
|
@@ -2805,6 +3542,54 @@ module TencentCloud
|
|
|
2805
3542
|
end
|
|
2806
3543
|
end
|
|
2807
3544
|
|
|
3545
|
+
# ModifyRecordGroup请求参数结构体
|
|
3546
|
+
class ModifyRecordGroupRequest < TencentCloud::Common::AbstractModel
|
|
3547
|
+
# @param Domain: 域名
|
|
3548
|
+
# @type Domain: String
|
|
3549
|
+
# @param GroupName: 分组名称
|
|
3550
|
+
# @type GroupName: String
|
|
3551
|
+
# @param GroupId: 要修改的分组 ID
|
|
3552
|
+
# @type GroupId: Integer
|
|
3553
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
3554
|
+
# @type DomainId: Integer
|
|
3555
|
+
|
|
3556
|
+
attr_accessor :Domain, :GroupName, :GroupId, :DomainId
|
|
3557
|
+
|
|
3558
|
+
def initialize(domain=nil, groupname=nil, groupid=nil, domainid=nil)
|
|
3559
|
+
@Domain = domain
|
|
3560
|
+
@GroupName = groupname
|
|
3561
|
+
@GroupId = groupid
|
|
3562
|
+
@DomainId = domainid
|
|
3563
|
+
end
|
|
3564
|
+
|
|
3565
|
+
def deserialize(params)
|
|
3566
|
+
@Domain = params['Domain']
|
|
3567
|
+
@GroupName = params['GroupName']
|
|
3568
|
+
@GroupId = params['GroupId']
|
|
3569
|
+
@DomainId = params['DomainId']
|
|
3570
|
+
end
|
|
3571
|
+
end
|
|
3572
|
+
|
|
3573
|
+
# ModifyRecordGroup返回参数结构体
|
|
3574
|
+
class ModifyRecordGroupResponse < TencentCloud::Common::AbstractModel
|
|
3575
|
+
# @param GroupId: 修改的分组 ID
|
|
3576
|
+
# @type GroupId: Integer
|
|
3577
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3578
|
+
# @type RequestId: String
|
|
3579
|
+
|
|
3580
|
+
attr_accessor :GroupId, :RequestId
|
|
3581
|
+
|
|
3582
|
+
def initialize(groupid=nil, requestid=nil)
|
|
3583
|
+
@GroupId = groupid
|
|
3584
|
+
@RequestId = requestid
|
|
3585
|
+
end
|
|
3586
|
+
|
|
3587
|
+
def deserialize(params)
|
|
3588
|
+
@GroupId = params['GroupId']
|
|
3589
|
+
@RequestId = params['RequestId']
|
|
3590
|
+
end
|
|
3591
|
+
end
|
|
3592
|
+
|
|
2808
3593
|
# ModifyRecordRemark请求参数结构体
|
|
2809
3594
|
class ModifyRecordRemarkRequest < TencentCloud::Common::AbstractModel
|
|
2810
3595
|
# @param Domain: 域名
|
|
@@ -2977,6 +3762,90 @@ module TencentCloud
|
|
|
2977
3762
|
end
|
|
2978
3763
|
end
|
|
2979
3764
|
|
|
3765
|
+
# ModifyRecordToGroup请求参数结构体
|
|
3766
|
+
class ModifyRecordToGroupRequest < TencentCloud::Common::AbstractModel
|
|
3767
|
+
# @param Domain: 域名
|
|
3768
|
+
# @type Domain: String
|
|
3769
|
+
# @param GroupId: 分组 ID
|
|
3770
|
+
# @type GroupId: Integer
|
|
3771
|
+
# @param RecordId: 记录 ID,多个 ID 用竖线“|”分割
|
|
3772
|
+
# @type RecordId: String
|
|
3773
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
3774
|
+
# @type DomainId: Integer
|
|
3775
|
+
|
|
3776
|
+
attr_accessor :Domain, :GroupId, :RecordId, :DomainId
|
|
3777
|
+
|
|
3778
|
+
def initialize(domain=nil, groupid=nil, recordid=nil, domainid=nil)
|
|
3779
|
+
@Domain = domain
|
|
3780
|
+
@GroupId = groupid
|
|
3781
|
+
@RecordId = recordid
|
|
3782
|
+
@DomainId = domainid
|
|
3783
|
+
end
|
|
3784
|
+
|
|
3785
|
+
def deserialize(params)
|
|
3786
|
+
@Domain = params['Domain']
|
|
3787
|
+
@GroupId = params['GroupId']
|
|
3788
|
+
@RecordId = params['RecordId']
|
|
3789
|
+
@DomainId = params['DomainId']
|
|
3790
|
+
end
|
|
3791
|
+
end
|
|
3792
|
+
|
|
3793
|
+
# ModifyRecordToGroup返回参数结构体
|
|
3794
|
+
class ModifyRecordToGroupResponse < TencentCloud::Common::AbstractModel
|
|
3795
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3796
|
+
# @type RequestId: String
|
|
3797
|
+
|
|
3798
|
+
attr_accessor :RequestId
|
|
3799
|
+
|
|
3800
|
+
def initialize(requestid=nil)
|
|
3801
|
+
@RequestId = requestid
|
|
3802
|
+
end
|
|
3803
|
+
|
|
3804
|
+
def deserialize(params)
|
|
3805
|
+
@RequestId = params['RequestId']
|
|
3806
|
+
end
|
|
3807
|
+
end
|
|
3808
|
+
|
|
3809
|
+
# ModifySnapshotConfig请求参数结构体
|
|
3810
|
+
class ModifySnapshotConfigRequest < TencentCloud::Common::AbstractModel
|
|
3811
|
+
# @param Domain: 域名
|
|
3812
|
+
# @type Domain: String
|
|
3813
|
+
# @param Period: 备件间隔:空字符串-不备份,half_hour-每半小时,hourly-每小时,daily-每天,monthly-每月
|
|
3814
|
+
# @type Period: String
|
|
3815
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
3816
|
+
# @type DomainId: Integer
|
|
3817
|
+
|
|
3818
|
+
attr_accessor :Domain, :Period, :DomainId
|
|
3819
|
+
|
|
3820
|
+
def initialize(domain=nil, period=nil, domainid=nil)
|
|
3821
|
+
@Domain = domain
|
|
3822
|
+
@Period = period
|
|
3823
|
+
@DomainId = domainid
|
|
3824
|
+
end
|
|
3825
|
+
|
|
3826
|
+
def deserialize(params)
|
|
3827
|
+
@Domain = params['Domain']
|
|
3828
|
+
@Period = params['Period']
|
|
3829
|
+
@DomainId = params['DomainId']
|
|
3830
|
+
end
|
|
3831
|
+
end
|
|
3832
|
+
|
|
3833
|
+
# ModifySnapshotConfig返回参数结构体
|
|
3834
|
+
class ModifySnapshotConfigResponse < TencentCloud::Common::AbstractModel
|
|
3835
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3836
|
+
# @type RequestId: String
|
|
3837
|
+
|
|
3838
|
+
attr_accessor :RequestId
|
|
3839
|
+
|
|
3840
|
+
def initialize(requestid=nil)
|
|
3841
|
+
@RequestId = requestid
|
|
3842
|
+
end
|
|
3843
|
+
|
|
3844
|
+
def deserialize(params)
|
|
3845
|
+
@RequestId = params['RequestId']
|
|
3846
|
+
end
|
|
3847
|
+
end
|
|
3848
|
+
|
|
2980
3849
|
# ModifySubdomainStatus请求参数结构体
|
|
2981
3850
|
class ModifySubdomainStatusRequest < TencentCloud::Common::AbstractModel
|
|
2982
3851
|
# @param Domain: 域名
|
|
@@ -3153,6 +4022,30 @@ module TencentCloud
|
|
|
3153
4022
|
end
|
|
3154
4023
|
end
|
|
3155
4024
|
|
|
4025
|
+
# 解析记录分组信息
|
|
4026
|
+
class RecordGroupInfo < TencentCloud::Common::AbstractModel
|
|
4027
|
+
# @param GroupId: 分组 ID
|
|
4028
|
+
# @type GroupId: Integer
|
|
4029
|
+
# @param GroupName: 分组名称
|
|
4030
|
+
# @type GroupName: String
|
|
4031
|
+
# @param GroupType: 分组类型:system-系统;user-用户
|
|
4032
|
+
# @type GroupType: String
|
|
4033
|
+
|
|
4034
|
+
attr_accessor :GroupId, :GroupName, :GroupType
|
|
4035
|
+
|
|
4036
|
+
def initialize(groupid=nil, groupname=nil, grouptype=nil)
|
|
4037
|
+
@GroupId = groupid
|
|
4038
|
+
@GroupName = groupname
|
|
4039
|
+
@GroupType = grouptype
|
|
4040
|
+
end
|
|
4041
|
+
|
|
4042
|
+
def deserialize(params)
|
|
4043
|
+
@GroupId = params['GroupId']
|
|
4044
|
+
@GroupName = params['GroupName']
|
|
4045
|
+
@GroupType = params['GroupType']
|
|
4046
|
+
end
|
|
4047
|
+
end
|
|
4048
|
+
|
|
3156
4049
|
# 记录信息
|
|
3157
4050
|
class RecordInfo < TencentCloud::Common::AbstractModel
|
|
3158
4051
|
# @param Id: 记录 ID 。
|
|
@@ -3293,6 +4186,242 @@ module TencentCloud
|
|
|
3293
4186
|
end
|
|
3294
4187
|
end
|
|
3295
4188
|
|
|
4189
|
+
# RollbackRecordSnapshot请求参数结构体
|
|
4190
|
+
class RollbackRecordSnapshotRequest < TencentCloud::Common::AbstractModel
|
|
4191
|
+
# @param Domain: 域名
|
|
4192
|
+
# @type Domain: String
|
|
4193
|
+
# @param SnapshotId: 快照 ID
|
|
4194
|
+
# @type SnapshotId: String
|
|
4195
|
+
# @param RecordList: 解析记录信息
|
|
4196
|
+
# @type RecordList: Array
|
|
4197
|
+
# @param TaskId: 之前的快照回滚任务 ID
|
|
4198
|
+
# @type TaskId: Integer
|
|
4199
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
4200
|
+
# @type DomainId: Integer
|
|
4201
|
+
|
|
4202
|
+
attr_accessor :Domain, :SnapshotId, :RecordList, :TaskId, :DomainId
|
|
4203
|
+
|
|
4204
|
+
def initialize(domain=nil, snapshotid=nil, recordlist=nil, taskid=nil, domainid=nil)
|
|
4205
|
+
@Domain = domain
|
|
4206
|
+
@SnapshotId = snapshotid
|
|
4207
|
+
@RecordList = recordlist
|
|
4208
|
+
@TaskId = taskid
|
|
4209
|
+
@DomainId = domainid
|
|
4210
|
+
end
|
|
4211
|
+
|
|
4212
|
+
def deserialize(params)
|
|
4213
|
+
@Domain = params['Domain']
|
|
4214
|
+
@SnapshotId = params['SnapshotId']
|
|
4215
|
+
unless params['RecordList'].nil?
|
|
4216
|
+
@RecordList = []
|
|
4217
|
+
params['RecordList'].each do |i|
|
|
4218
|
+
snapshotrecord_tmp = SnapshotRecord.new
|
|
4219
|
+
snapshotrecord_tmp.deserialize(i)
|
|
4220
|
+
@RecordList << snapshotrecord_tmp
|
|
4221
|
+
end
|
|
4222
|
+
end
|
|
4223
|
+
@TaskId = params['TaskId']
|
|
4224
|
+
@DomainId = params['DomainId']
|
|
4225
|
+
end
|
|
4226
|
+
end
|
|
4227
|
+
|
|
4228
|
+
# RollbackRecordSnapshot返回参数结构体
|
|
4229
|
+
class RollbackRecordSnapshotResponse < TencentCloud::Common::AbstractModel
|
|
4230
|
+
# @param JobId: 回滚任务 ID
|
|
4231
|
+
# @type JobId: Integer
|
|
4232
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4233
|
+
# @type RequestId: String
|
|
4234
|
+
|
|
4235
|
+
attr_accessor :JobId, :RequestId
|
|
4236
|
+
|
|
4237
|
+
def initialize(jobid=nil, requestid=nil)
|
|
4238
|
+
@JobId = jobid
|
|
4239
|
+
@RequestId = requestid
|
|
4240
|
+
end
|
|
4241
|
+
|
|
4242
|
+
def deserialize(params)
|
|
4243
|
+
@JobId = params['JobId']
|
|
4244
|
+
@RequestId = params['RequestId']
|
|
4245
|
+
end
|
|
4246
|
+
end
|
|
4247
|
+
|
|
4248
|
+
# RollbackSnapshot请求参数结构体
|
|
4249
|
+
class RollbackSnapshotRequest < TencentCloud::Common::AbstractModel
|
|
4250
|
+
# @param Domain: 域名
|
|
4251
|
+
# @type Domain: String
|
|
4252
|
+
# @param SnapshotId: 快照记录 ID
|
|
4253
|
+
# @type SnapshotId: String
|
|
4254
|
+
# @param DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
|
|
4255
|
+
# @type DomainId: Integer
|
|
4256
|
+
|
|
4257
|
+
attr_accessor :Domain, :SnapshotId, :DomainId
|
|
4258
|
+
|
|
4259
|
+
def initialize(domain=nil, snapshotid=nil, domainid=nil)
|
|
4260
|
+
@Domain = domain
|
|
4261
|
+
@SnapshotId = snapshotid
|
|
4262
|
+
@DomainId = domainid
|
|
4263
|
+
end
|
|
4264
|
+
|
|
4265
|
+
def deserialize(params)
|
|
4266
|
+
@Domain = params['Domain']
|
|
4267
|
+
@SnapshotId = params['SnapshotId']
|
|
4268
|
+
@DomainId = params['DomainId']
|
|
4269
|
+
end
|
|
4270
|
+
end
|
|
4271
|
+
|
|
4272
|
+
# RollbackSnapshot返回参数结构体
|
|
4273
|
+
class RollbackSnapshotResponse < TencentCloud::Common::AbstractModel
|
|
4274
|
+
# @param TaskId: 回滚任务 ID,用来查询回滚状态
|
|
4275
|
+
# @type TaskId: Integer
|
|
4276
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4277
|
+
# @type RequestId: String
|
|
4278
|
+
|
|
4279
|
+
attr_accessor :TaskId, :RequestId
|
|
4280
|
+
|
|
4281
|
+
def initialize(taskid=nil, requestid=nil)
|
|
4282
|
+
@TaskId = taskid
|
|
4283
|
+
@RequestId = requestid
|
|
4284
|
+
end
|
|
4285
|
+
|
|
4286
|
+
def deserialize(params)
|
|
4287
|
+
@TaskId = params['TaskId']
|
|
4288
|
+
@RequestId = params['RequestId']
|
|
4289
|
+
end
|
|
4290
|
+
end
|
|
4291
|
+
|
|
4292
|
+
# 域名解析快照配置
|
|
4293
|
+
class SnapshotConfig < TencentCloud::Common::AbstractModel
|
|
4294
|
+
# @param Config: 配置类型:空字符串-不备份,half_hour-每半小时,hourly-每小时,daily-每天,monthly-每月
|
|
4295
|
+
# @type Config: String
|
|
4296
|
+
# @param CreatedOn: 添加时间
|
|
4297
|
+
# @type CreatedOn: String
|
|
4298
|
+
# @param DomainId: 所属域名 ID
|
|
4299
|
+
# @type DomainId: String
|
|
4300
|
+
# @param Id: 配置 ID
|
|
4301
|
+
# @type Id: String
|
|
4302
|
+
# @param SnapshotCount: 快照数量
|
|
4303
|
+
# @type SnapshotCount: Integer
|
|
4304
|
+
# @param Status: 状态:enable-启用,disable-禁用
|
|
4305
|
+
# @type Status: String
|
|
4306
|
+
# @param UpdatedOn: 更新时间
|
|
4307
|
+
# @type UpdatedOn: String
|
|
4308
|
+
|
|
4309
|
+
attr_accessor :Config, :CreatedOn, :DomainId, :Id, :SnapshotCount, :Status, :UpdatedOn
|
|
4310
|
+
|
|
4311
|
+
def initialize(config=nil, createdon=nil, domainid=nil, id=nil, snapshotcount=nil, status=nil, updatedon=nil)
|
|
4312
|
+
@Config = config
|
|
4313
|
+
@CreatedOn = createdon
|
|
4314
|
+
@DomainId = domainid
|
|
4315
|
+
@Id = id
|
|
4316
|
+
@SnapshotCount = snapshotcount
|
|
4317
|
+
@Status = status
|
|
4318
|
+
@UpdatedOn = updatedon
|
|
4319
|
+
end
|
|
4320
|
+
|
|
4321
|
+
def deserialize(params)
|
|
4322
|
+
@Config = params['Config']
|
|
4323
|
+
@CreatedOn = params['CreatedOn']
|
|
4324
|
+
@DomainId = params['DomainId']
|
|
4325
|
+
@Id = params['Id']
|
|
4326
|
+
@SnapshotCount = params['SnapshotCount']
|
|
4327
|
+
@Status = params['Status']
|
|
4328
|
+
@UpdatedOn = params['UpdatedOn']
|
|
4329
|
+
end
|
|
4330
|
+
end
|
|
4331
|
+
|
|
4332
|
+
# 快照信息
|
|
4333
|
+
class SnapshotInfo < TencentCloud::Common::AbstractModel
|
|
4334
|
+
# @param CosUrl: 快照的对象存储地址
|
|
4335
|
+
# @type CosUrl: String
|
|
4336
|
+
# @param CreatedOn: 添加时间
|
|
4337
|
+
# @type CreatedOn: String
|
|
4338
|
+
# @param Domain: 所属域名
|
|
4339
|
+
# @type Domain: String
|
|
4340
|
+
# @param Id: 快照记录 ID
|
|
4341
|
+
# @type Id: String
|
|
4342
|
+
# @param RecordCount: 域名解析记录数
|
|
4343
|
+
# @type RecordCount: String
|
|
4344
|
+
# @param Status: 状态:normal-正常,create-备份中
|
|
4345
|
+
# @type Status: String
|
|
4346
|
+
|
|
4347
|
+
attr_accessor :CosUrl, :CreatedOn, :Domain, :Id, :RecordCount, :Status
|
|
4348
|
+
|
|
4349
|
+
def initialize(cosurl=nil, createdon=nil, domain=nil, id=nil, recordcount=nil, status=nil)
|
|
4350
|
+
@CosUrl = cosurl
|
|
4351
|
+
@CreatedOn = createdon
|
|
4352
|
+
@Domain = domain
|
|
4353
|
+
@Id = id
|
|
4354
|
+
@RecordCount = recordcount
|
|
4355
|
+
@Status = status
|
|
4356
|
+
end
|
|
4357
|
+
|
|
4358
|
+
def deserialize(params)
|
|
4359
|
+
@CosUrl = params['CosUrl']
|
|
4360
|
+
@CreatedOn = params['CreatedOn']
|
|
4361
|
+
@Domain = params['Domain']
|
|
4362
|
+
@Id = params['Id']
|
|
4363
|
+
@RecordCount = params['RecordCount']
|
|
4364
|
+
@Status = params['Status']
|
|
4365
|
+
end
|
|
4366
|
+
end
|
|
4367
|
+
|
|
4368
|
+
# 快照列表分页信息
|
|
4369
|
+
class SnapshotPageInfo < TencentCloud::Common::AbstractModel
|
|
4370
|
+
# @param Total: 快照总数
|
|
4371
|
+
# @type Total: Integer
|
|
4372
|
+
|
|
4373
|
+
attr_accessor :Total
|
|
4374
|
+
|
|
4375
|
+
def initialize(total=nil)
|
|
4376
|
+
@Total = total
|
|
4377
|
+
end
|
|
4378
|
+
|
|
4379
|
+
def deserialize(params)
|
|
4380
|
+
@Total = params['Total']
|
|
4381
|
+
end
|
|
4382
|
+
end
|
|
4383
|
+
|
|
4384
|
+
# 快照解析记录
|
|
4385
|
+
class SnapshotRecord < TencentCloud::Common::AbstractModel
|
|
4386
|
+
# @param SubDomain: 子域名
|
|
4387
|
+
# @type SubDomain: String
|
|
4388
|
+
# @param RecordType: 记录类型
|
|
4389
|
+
# @type RecordType: String
|
|
4390
|
+
# @param RecordLine: 解析线路
|
|
4391
|
+
# @type RecordLine: String
|
|
4392
|
+
# @param Value: 解析值
|
|
4393
|
+
# @type Value: String
|
|
4394
|
+
# @param TTL: TTL(秒)
|
|
4395
|
+
# @type TTL: String
|
|
4396
|
+
# @param RecordId: 解析记录 ID
|
|
4397
|
+
# @type RecordId: String
|
|
4398
|
+
# @param MX: MX优先级
|
|
4399
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
4400
|
+
# @type MX: String
|
|
4401
|
+
|
|
4402
|
+
attr_accessor :SubDomain, :RecordType, :RecordLine, :Value, :TTL, :RecordId, :MX
|
|
4403
|
+
|
|
4404
|
+
def initialize(subdomain=nil, recordtype=nil, recordline=nil, value=nil, ttl=nil, recordid=nil, mx=nil)
|
|
4405
|
+
@SubDomain = subdomain
|
|
4406
|
+
@RecordType = recordtype
|
|
4407
|
+
@RecordLine = recordline
|
|
4408
|
+
@Value = value
|
|
4409
|
+
@TTL = ttl
|
|
4410
|
+
@RecordId = recordid
|
|
4411
|
+
@MX = mx
|
|
4412
|
+
end
|
|
4413
|
+
|
|
4414
|
+
def deserialize(params)
|
|
4415
|
+
@SubDomain = params['SubDomain']
|
|
4416
|
+
@RecordType = params['RecordType']
|
|
4417
|
+
@RecordLine = params['RecordLine']
|
|
4418
|
+
@Value = params['Value']
|
|
4419
|
+
@TTL = params['TTL']
|
|
4420
|
+
@RecordId = params['RecordId']
|
|
4421
|
+
@MX = params['MX']
|
|
4422
|
+
end
|
|
4423
|
+
end
|
|
4424
|
+
|
|
3296
4425
|
# 子域名别名解析量统计信息
|
|
3297
4426
|
class SubdomainAliasAnalyticsItem < TencentCloud::Common::AbstractModel
|
|
3298
4427
|
# @param Info: 子域名解析量统计查询信息
|