tencentcloud-sdk-nodejs 4.0.485 → 4.0.486

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.
Files changed (47) hide show
  1. package/CHANGELOG.md +246 -0
  2. package/SERVICE_CHANGELOG.md +367 -42
  3. package/package.json +1 -1
  4. package/products.md +14 -14
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/captcha/v20190722/captcha_models.ts +1 -1
  7. package/src/services/dnspod/v20210323/dnspod_client.ts +207 -47
  8. package/src/services/dnspod/v20210323/dnspod_models.ts +789 -56
  9. package/src/services/ess/v20201111/ess_models.ts +5 -0
  10. package/src/services/essbasic/v20210526/essbasic_models.ts +21 -2
  11. package/src/services/lighthouse/v20200324/lighthouse_models.ts +1 -1
  12. package/src/services/mps/v20190612/mps_client.ts +1 -0
  13. package/src/services/mps/v20190612/mps_models.ts +33 -0
  14. package/src/services/redis/v20180412/redis_client.ts +1 -1
  15. package/src/services/redis/v20180412/redis_models.ts +6 -6
  16. package/src/services/rum/v20210622/rum_models.ts +5 -0
  17. package/src/services/tiia/v20190529/tiia_client.ts +174 -124
  18. package/src/services/tiia/v20190529/tiia_models.ts +225 -70
  19. package/src/services/tione/v20211111/tione_models.ts +11 -1
  20. package/src/services/tke/v20180525/tke_models.ts +10 -0
  21. package/src/services/trp/v20210515/trp_models.ts +15 -0
  22. package/src/services/vod/v20180717/vod_models.ts +1 -1
  23. package/src/services/vpc/v20170312/vpc_models.ts +5 -0
  24. package/tencentcloud/common/sdk_version.d.ts +1 -1
  25. package/tencentcloud/common/sdk_version.js +1 -1
  26. package/tencentcloud/services/captcha/v20190722/captcha_models.d.ts +1 -1
  27. package/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts +67 -15
  28. package/tencentcloud/services/dnspod/v20210323/dnspod_client.js +99 -21
  29. package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +657 -37
  30. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +4 -0
  31. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +16 -0
  32. package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +1 -1
  33. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +28 -0
  34. package/tencentcloud/services/redis/v20180412/redis_client.d.ts +1 -1
  35. package/tencentcloud/services/redis/v20180412/redis_client.js +1 -1
  36. package/tencentcloud/services/redis/v20180412/redis_models.d.ts +6 -6
  37. package/tencentcloud/services/rum/v20210622/rum_models.d.ts +4 -0
  38. package/tencentcloud/services/tiia/v20190529/tiia_client.d.ts +84 -52
  39. package/tencentcloud/services/tiia/v20190529/tiia_client.js +104 -68
  40. package/tencentcloud/services/tiia/v20190529/tiia_models.d.ts +199 -62
  41. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +11 -1
  42. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +8 -0
  43. package/tencentcloud/services/trp/v20210515/trp_models.d.ts +12 -0
  44. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +1 -1
  45. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +4 -0
  46. package/test/dnspod.v20210323.test.js +144 -14
  47. package/test/tiia.v20190529.test.js +52 -32
@@ -75,6 +75,96 @@ export interface CreateRecordRequest {
75
75
  Status?: string
76
76
  }
77
77
 
78
+ /**
79
+ * DescribeSnapshotRollbackResult返回参数结构体
80
+ */
81
+ export interface DescribeSnapshotRollbackResultResponse {
82
+ /**
83
+ * 快照所属域名
84
+ */
85
+ Domain: string
86
+
87
+ /**
88
+ * 回滚剩余时间(分钟)
89
+ */
90
+ LeftMinutes: number
91
+
92
+ /**
93
+ * 回滚进度百分比
94
+ */
95
+ Progress: number
96
+
97
+ /**
98
+ * 快照 ID
99
+ */
100
+ SnapshotId: string
101
+
102
+ /**
103
+ * 回滚状态
104
+ */
105
+ Status: string
106
+
107
+ /**
108
+ * 快照回滚任务 ID
109
+ */
110
+ TaskId: number
111
+
112
+ /**
113
+ * 成功数量
114
+ 注意:此字段可能返回 null,表示取不到有效值。
115
+ */
116
+ Success: number
117
+
118
+ /**
119
+ * 失败数量
120
+ 注意:此字段可能返回 null,表示取不到有效值。
121
+ */
122
+ Failed: number
123
+
124
+ /**
125
+ * 总数量
126
+ 注意:此字段可能返回 null,表示取不到有效值。
127
+ */
128
+ Total: number
129
+
130
+ /**
131
+ * 失败详细信息
132
+ 注意:此字段可能返回 null,表示取不到有效值。
133
+ */
134
+ FailedRecordList: Array<SnapshotRecord>
135
+
136
+ /**
137
+ * 快照的下载地址
138
+ 注意:此字段可能返回 null,表示取不到有效值。
139
+ */
140
+ CosUrl: string
141
+
142
+ /**
143
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
144
+ */
145
+ RequestId?: string
146
+ }
147
+
148
+ /**
149
+ * DownloadSnapshot请求参数结构体
150
+ */
151
+ export interface DownloadSnapshotRequest {
152
+ /**
153
+ * 域名
154
+ */
155
+ Domain: string
156
+
157
+ /**
158
+ * 快照记录 ID
159
+ */
160
+ SnapshotId: string
161
+
162
+ /**
163
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
164
+ */
165
+ DomainId?: number
166
+ }
167
+
78
168
  /**
79
169
  * 查看任务详情返回结构
80
170
  */
@@ -137,6 +227,26 @@ export interface ModifyVasAutoRenewStatusResponse {
137
227
  RequestId?: string
138
228
  }
139
229
 
230
+ /**
231
+ * RollbackSnapshot请求参数结构体
232
+ */
233
+ export interface RollbackSnapshotRequest {
234
+ /**
235
+ * 域名
236
+ */
237
+ Domain: string
238
+
239
+ /**
240
+ * 快照记录 ID
241
+ */
242
+ SnapshotId: string
243
+
244
+ /**
245
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
246
+ */
247
+ DomainId?: number
248
+ }
249
+
140
250
  /**
141
251
  * DeleteDomainAlias返回参数结构体
142
252
  */
@@ -197,6 +307,26 @@ export interface CreateRecordBatchResponse {
197
307
  RequestId?: string
198
308
  }
199
309
 
310
+ /**
311
+ * DescribeSnapshotList返回参数结构体
312
+ */
313
+ export interface DescribeSnapshotListResponse {
314
+ /**
315
+ * 分页信息
316
+ */
317
+ Info: SnapshotPageInfo
318
+
319
+ /**
320
+ * 快照列表
321
+ */
322
+ SnapshotList: Array<SnapshotInfo>
323
+
324
+ /**
325
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
326
+ */
327
+ RequestId?: string
328
+ }
329
+
200
330
  /**
201
331
  * 批量添加域名任务中的记录信息
202
332
  */
@@ -316,6 +446,16 @@ export interface DomainAnalyticsDetail {
316
446
  HourKey: number
317
447
  }
318
448
 
449
+ /**
450
+ * CreateSnapshot返回参数结构体
451
+ */
452
+ export interface CreateSnapshotResponse {
453
+ /**
454
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
455
+ */
456
+ RequestId?: string
457
+ }
458
+
319
459
  /**
320
460
  * PayOrderWithBalance返回参数结构体
321
461
  */
@@ -356,6 +496,21 @@ export interface DescribeDomainResponse {
356
496
  RequestId?: string
357
497
  }
358
498
 
499
+ /**
500
+ * DescribeSnapshotList请求参数结构体
501
+ */
502
+ export interface DescribeSnapshotListRequest {
503
+ /**
504
+ * 域名
505
+ */
506
+ Domain: string
507
+
508
+ /**
509
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
510
+ */
511
+ DomainId?: number
512
+ }
513
+
359
514
  /**
360
515
  * DescribeRecordLineList返回参数结构体
361
516
  */
@@ -376,6 +531,16 @@ export interface DescribeRecordLineListResponse {
376
531
  RequestId?: string
377
532
  }
378
533
 
534
+ /**
535
+ * 快照列表分页信息
536
+ */
537
+ export interface SnapshotPageInfo {
538
+ /**
539
+ * 快照总数
540
+ */
541
+ Total: number
542
+ }
543
+
379
544
  /**
380
545
  * 域名详情
381
546
  */
@@ -515,9 +680,19 @@ export interface CreateDomainBatchRequest {
515
680
  }
516
681
 
517
682
  /**
518
- * DescribeDomainGroupList请求参数结构体
683
+ * DescribeDomainShareInfo请求参数结构体
519
684
  */
520
- export type DescribeDomainGroupListRequest = null
685
+ export interface DescribeDomainShareInfoRequest {
686
+ /**
687
+ * 域名
688
+ */
689
+ Domain: string
690
+
691
+ /**
692
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
693
+ */
694
+ DomainId?: number
695
+ }
521
696
 
522
697
  /**
523
698
  * 域名列表元素
@@ -659,6 +834,26 @@ export interface ModifyDomainRemarkResponse {
659
834
  RequestId?: string
660
835
  }
661
836
 
837
+ /**
838
+ * DeleteSnapshot请求参数结构体
839
+ */
840
+ export interface DeleteSnapshotRequest {
841
+ /**
842
+ * 域名
843
+ */
844
+ Domain: string
845
+
846
+ /**
847
+ * 快照记录 ID
848
+ */
849
+ SnapshotId: string
850
+
851
+ /**
852
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
853
+ */
854
+ DomainId?: number
855
+ }
856
+
662
857
  /**
663
858
  * DescribeDomainAliasList返回参数结构体
664
859
  */
@@ -674,6 +869,51 @@ export interface DescribeDomainAliasListResponse {
674
869
  RequestId?: string
675
870
  }
676
871
 
872
+ /**
873
+ * RollbackRecordSnapshot请求参数结构体
874
+ */
875
+ export interface RollbackRecordSnapshotRequest {
876
+ /**
877
+ * 域名
878
+ */
879
+ Domain: string
880
+
881
+ /**
882
+ * 快照 ID
883
+ */
884
+ SnapshotId: string
885
+
886
+ /**
887
+ * 解析记录信息
888
+ */
889
+ RecordList: Array<SnapshotRecord>
890
+
891
+ /**
892
+ * 之前的快照回滚任务 ID
893
+ */
894
+ TaskId: number
895
+
896
+ /**
897
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
898
+ */
899
+ DomainId?: number
900
+ }
901
+
902
+ /**
903
+ * DescribeSnapshotConfig返回参数结构体
904
+ */
905
+ export interface DescribeSnapshotConfigResponse {
906
+ /**
907
+ * 解析快照配置
908
+ */
909
+ SnapshotConfig: SnapshotConfig
910
+
911
+ /**
912
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
913
+ */
914
+ RequestId?: string
915
+ }
916
+
677
917
  /**
678
918
  * 查询记录列表的数量统计信息
679
919
  */
@@ -940,6 +1180,36 @@ export interface DomainShareInfo {
940
1180
  Status: string
941
1181
  }
942
1182
 
1183
+ /**
1184
+ * DescribeSnapshotConfig请求参数结构体
1185
+ */
1186
+ export interface DescribeSnapshotConfigRequest {
1187
+ /**
1188
+ * 域名
1189
+ */
1190
+ Domain: string
1191
+
1192
+ /**
1193
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
1194
+ */
1195
+ DomainId?: number
1196
+ }
1197
+
1198
+ /**
1199
+ * 解析线路信息
1200
+ */
1201
+ export interface LineInfo {
1202
+ /**
1203
+ * 线路名称
1204
+ */
1205
+ Name: string
1206
+
1207
+ /**
1208
+ * 线路ID
1209
+ */
1210
+ LineId: string
1211
+ }
1212
+
943
1213
  /**
944
1214
  * DescribeRecordLineList请求参数结构体
945
1215
  */
@@ -1478,6 +1748,37 @@ export interface RecordInfo {
1478
1748
  DomainId: number
1479
1749
  }
1480
1750
 
1751
+ /**
1752
+ * DescribeSnapshotRollbackTask请求参数结构体
1753
+ */
1754
+ export interface DescribeSnapshotRollbackTaskRequest {
1755
+ /**
1756
+ * 域名
1757
+ */
1758
+ Domain: string
1759
+
1760
+ /**
1761
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
1762
+ */
1763
+ DomainId?: number
1764
+ }
1765
+
1766
+ /**
1767
+ * CheckRecordSnapshotRollback返回参数结构体
1768
+ */
1769
+ export interface CheckRecordSnapshotRollbackResponse {
1770
+ /**
1771
+ * 错误原因
1772
+ 注意:此字段可能返回 null,表示取不到有效值。
1773
+ */
1774
+ Reason: string
1775
+
1776
+ /**
1777
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1778
+ */
1779
+ RequestId?: string
1780
+ }
1781
+
1481
1782
  /**
1482
1783
  * 批量添加记录返回结构
1483
1784
  */
@@ -1571,33 +1872,74 @@ export interface ModifyRecordResponse {
1571
1872
  }
1572
1873
 
1573
1874
  /**
1574
- * ModifyDomainUnlock返回参数结构体
1875
+ * 快照解析记录
1575
1876
  */
1576
- export interface ModifyDomainUnlockResponse {
1877
+ export interface SnapshotRecord {
1577
1878
  /**
1578
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1879
+ * 子域名
1579
1880
  */
1580
- RequestId?: string
1581
- }
1881
+ SubDomain: string
1582
1882
 
1583
- /**
1584
- * DescribeDomainLogList请求参数结构体
1585
- */
1586
- export interface DescribeDomainLogListRequest {
1587
1883
  /**
1588
- * 域名
1884
+ * 记录类型
1589
1885
  */
1590
- Domain: string
1886
+ RecordType: string
1591
1887
 
1592
1888
  /**
1593
- * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
1889
+ * 解析线路
1594
1890
  */
1595
- DomainId?: number
1891
+ RecordLine: string
1596
1892
 
1597
1893
  /**
1598
- * 记录开始的偏移,第一条记录为 0,依次类推,默认为0
1894
+ * 解析值
1599
1895
  */
1600
- Offset?: number
1896
+ Value: string
1897
+
1898
+ /**
1899
+ * TTL(秒)
1900
+ */
1901
+ TTL: string
1902
+
1903
+ /**
1904
+ * 解析记录 ID
1905
+ */
1906
+ RecordId?: string
1907
+
1908
+ /**
1909
+ * MX优先级
1910
+ 注意:此字段可能返回 null,表示取不到有效值。
1911
+ */
1912
+ MX?: string
1913
+ }
1914
+
1915
+ /**
1916
+ * ModifyDomainUnlock返回参数结构体
1917
+ */
1918
+ export interface ModifyDomainUnlockResponse {
1919
+ /**
1920
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1921
+ */
1922
+ RequestId?: string
1923
+ }
1924
+
1925
+ /**
1926
+ * DescribeDomainLogList请求参数结构体
1927
+ */
1928
+ export interface DescribeDomainLogListRequest {
1929
+ /**
1930
+ * 域名
1931
+ */
1932
+ Domain: string
1933
+
1934
+ /**
1935
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
1936
+ */
1937
+ DomainId?: number
1938
+
1939
+ /**
1940
+ * 记录开始的偏移,第一条记录为 0,依次类推,默认为0
1941
+ */
1942
+ Offset?: number
1601
1943
 
1602
1944
  /**
1603
1945
  * 共要获取的日志条数,比如获取20条,则为20,默认为500条,单次最多获取500条。
@@ -1655,6 +1997,46 @@ export interface ModifyRecordBatchRequest {
1655
1997
  MX?: string
1656
1998
  }
1657
1999
 
2000
+ /**
2001
+ * 域名解析快照配置
2002
+ */
2003
+ export interface SnapshotConfig {
2004
+ /**
2005
+ * 配置类型:空字符串-不备份,half_hour-每半小时,hourly-每小时,daily-每天,monthly-每月
2006
+ */
2007
+ Config: string
2008
+
2009
+ /**
2010
+ * 添加时间
2011
+ */
2012
+ CreatedOn: string
2013
+
2014
+ /**
2015
+ * 所属域名 ID
2016
+ */
2017
+ DomainId: string
2018
+
2019
+ /**
2020
+ * 配置 ID
2021
+ */
2022
+ Id: string
2023
+
2024
+ /**
2025
+ * 快照数量
2026
+ */
2027
+ SnapshotCount: number
2028
+
2029
+ /**
2030
+ * 状态:enable-启用,disable-禁用
2031
+ */
2032
+ Status: string
2033
+
2034
+ /**
2035
+ * 更新时间
2036
+ */
2037
+ UpdatedOn: string
2038
+ }
2039
+
1658
2040
  /**
1659
2041
  * DeleteRecord返回参数结构体
1660
2042
  */
@@ -1895,24 +2277,66 @@ export interface ModifyRecordBatchResponse {
1895
2277
  }
1896
2278
 
1897
2279
  /**
1898
- * DescribeDomainLogList返回参数结构体
2280
+ * CheckSnapshotRollback请求参数结构体
1899
2281
  */
1900
- export interface DescribeDomainLogListResponse {
2282
+ export interface CheckSnapshotRollbackRequest {
1901
2283
  /**
1902
- * 域名信息
1903
- 注意:此字段可能返回 null,表示取不到有效值。
1904
- */
1905
- LogList: Array<string>
2284
+ * 域名
2285
+ */
2286
+ Domain: string
1906
2287
 
1907
2288
  /**
1908
- * 分页大小
2289
+ * 快照记录 ID
1909
2290
  */
1910
- PageSize: number
2291
+ SnapshotId: string
1911
2292
 
1912
2293
  /**
1913
- * 日志总条数
2294
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
1914
2295
  */
1915
- TotalCount: number
2296
+ DomainId?: number
2297
+ }
2298
+
2299
+ /**
2300
+ * CheckSnapshotRollback返回参数结构体
2301
+ */
2302
+ export interface CheckSnapshotRollbackResponse {
2303
+ /**
2304
+ * 快照记录 ID
2305
+ */
2306
+ SnapshotId: string
2307
+
2308
+ /**
2309
+ * 回滚时长(分钟)
2310
+ */
2311
+ CostMinutes: number
2312
+
2313
+ /**
2314
+ * 快照所属域名
2315
+ */
2316
+ Domain: string
2317
+
2318
+ /**
2319
+ * 解析记录总数
2320
+ */
2321
+ Total: number
2322
+
2323
+ /**
2324
+ * 值为 1,表示超时
2325
+ 注意:此字段可能返回 null,表示取不到有效值。
2326
+ */
2327
+ Timeout: number
2328
+
2329
+ /**
2330
+ * 检查失败数量
2331
+ 注意:此字段可能返回 null,表示取不到有效值。
2332
+ */
2333
+ Failed: number
2334
+
2335
+ /**
2336
+ * 失败记录信息
2337
+ 注意:此字段可能返回 null,表示取不到有效值。
2338
+ */
2339
+ FailedRecordList: Array<SnapshotRecord>
1916
2340
 
1917
2341
  /**
1918
2342
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -1932,6 +2356,46 @@ export interface DescribeRecordTypeRequest {
1932
2356
  DomainGrade: string
1933
2357
  }
1934
2358
 
2359
+ /**
2360
+ * DescribeSnapshotRollbackTask返回参数结构体
2361
+ */
2362
+ export interface DescribeSnapshotRollbackTaskResponse {
2363
+ /**
2364
+ * 快照所属域名
2365
+ */
2366
+ Domain: string
2367
+
2368
+ /**
2369
+ * 快照 ID
2370
+ */
2371
+ SnapshotId: string
2372
+
2373
+ /**
2374
+ * 回滚状态
2375
+ */
2376
+ Status: string
2377
+
2378
+ /**
2379
+ * 快照回滚任务 ID
2380
+ */
2381
+ TaskId: number
2382
+
2383
+ /**
2384
+ * 总数量
2385
+ */
2386
+ RecordCount: number
2387
+
2388
+ /**
2389
+ * 开始回滚时间
2390
+ */
2391
+ CreatedOn: string
2392
+
2393
+ /**
2394
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2395
+ */
2396
+ RequestId?: string
2397
+ }
2398
+
1935
2399
  /**
1936
2400
  * 记录列表元素
1937
2401
  */
@@ -2039,6 +2503,26 @@ export interface DescribeDomainGroupListResponse {
2039
2503
  RequestId?: string
2040
2504
  }
2041
2505
 
2506
+ /**
2507
+ * 域名锁定信息
2508
+ */
2509
+ export interface LockInfo {
2510
+ /**
2511
+ * 域名 ID
2512
+ */
2513
+ DomainId: number
2514
+
2515
+ /**
2516
+ * 域名解锁码
2517
+ */
2518
+ LockCode: string
2519
+
2520
+ /**
2521
+ * 域名自动解锁日期
2522
+ */
2523
+ LockEnd: string
2524
+ }
2525
+
2042
2526
  /**
2043
2527
  * ModifyDomainOwner返回参数结构体
2044
2528
  */
@@ -2331,6 +2815,26 @@ export interface PayOrderWithBalanceRequest {
2331
2815
  VoucherIdList?: Array<string>
2332
2816
  }
2333
2817
 
2818
+ /**
2819
+ * ModifySnapshotConfig返回参数结构体
2820
+ */
2821
+ export interface ModifySnapshotConfigResponse {
2822
+ /**
2823
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2824
+ */
2825
+ RequestId?: string
2826
+ }
2827
+
2828
+ /**
2829
+ * DeleteSnapshot返回参数结构体
2830
+ */
2831
+ export interface DeleteSnapshotResponse {
2832
+ /**
2833
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2834
+ */
2835
+ RequestId?: string
2836
+ }
2837
+
2334
2838
  /**
2335
2839
  * DescribeDomainPurview返回参数结构体
2336
2840
  */
@@ -2411,6 +2915,21 @@ export interface ModifyRecordStatusResponse {
2411
2915
  RequestId?: string
2412
2916
  }
2413
2917
 
2918
+ /**
2919
+ * RollbackSnapshot返回参数结构体
2920
+ */
2921
+ export interface RollbackSnapshotResponse {
2922
+ /**
2923
+ * 回滚任务 ID,用来查询回滚状态
2924
+ */
2925
+ TaskId: number
2926
+
2927
+ /**
2928
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2929
+ */
2930
+ RequestId?: string
2931
+ }
2932
+
2414
2933
  /**
2415
2934
  * CreateDomainGroup请求参数结构体
2416
2935
  */
@@ -2422,18 +2941,18 @@ export interface CreateDomainGroupRequest {
2422
2941
  }
2423
2942
 
2424
2943
  /**
2425
- * 解析线路信息
2944
+ * CreateSnapshot请求参数结构体
2426
2945
  */
2427
- export interface LineInfo {
2946
+ export interface CreateSnapshotRequest {
2428
2947
  /**
2429
- * 线路名称
2948
+ * 域名
2430
2949
  */
2431
- Name: string
2950
+ Domain: string
2432
2951
 
2433
2952
  /**
2434
- * 线路ID
2953
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
2435
2954
  */
2436
- LineId: string
2955
+ DomainId?: number
2437
2956
  }
2438
2957
 
2439
2958
  /**
@@ -2446,6 +2965,94 @@ export interface DeleteDomainResponse {
2446
2965
  RequestId?: string
2447
2966
  }
2448
2967
 
2968
+ /**
2969
+ * DescribeRecordSnapshotRollbackResult返回参数结构体
2970
+ */
2971
+ export interface DescribeRecordSnapshotRollbackResultResponse {
2972
+ /**
2973
+ * 回滚任务 ID
2974
+ */
2975
+ JobId: number
2976
+
2977
+ /**
2978
+ * 回滚状态
2979
+ */
2980
+ Status: string
2981
+
2982
+ /**
2983
+ * 失败的记录信息
2984
+ 注意:此字段可能返回 null,表示取不到有效值。
2985
+ */
2986
+ FailedRecordList: Array<SnapshotRecord>
2987
+
2988
+ /**
2989
+ * 所属域名
2990
+ 注意:此字段可能返回 null,表示取不到有效值。
2991
+ */
2992
+ Domain: string
2993
+
2994
+ /**
2995
+ * 回滚进度
2996
+ 注意:此字段可能返回 null,表示取不到有效值。
2997
+ */
2998
+ Progress: number
2999
+
3000
+ /**
3001
+ * 回滚剩余时间(单位:分钟)
3002
+ 注意:此字段可能返回 null,表示取不到有效值。
3003
+ */
3004
+ LeftMinutes: number
3005
+
3006
+ /**
3007
+ * 总记录数
3008
+ 注意:此字段可能返回 null,表示取不到有效值。
3009
+ */
3010
+ Total: number
3011
+
3012
+ /**
3013
+ * 失败记录数
3014
+ 注意:此字段可能返回 null,表示取不到有效值。
3015
+ */
3016
+ Failed: number
3017
+
3018
+ /**
3019
+ * 成功记录数
3020
+ 注意:此字段可能返回 null,表示取不到有效值。
3021
+ */
3022
+ Success: number
3023
+
3024
+ /**
3025
+ * 快照下载地址
3026
+ 注意:此字段可能返回 null,表示取不到有效值。
3027
+ */
3028
+ CosUrl: string
3029
+
3030
+ /**
3031
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3032
+ */
3033
+ RequestId?: string
3034
+ }
3035
+
3036
+ /**
3037
+ * ModifySnapshotConfig请求参数结构体
3038
+ */
3039
+ export interface ModifySnapshotConfigRequest {
3040
+ /**
3041
+ * 域名
3042
+ */
3043
+ Domain: string
3044
+
3045
+ /**
3046
+ * 备件间隔:空字符串-不备份,half_hour-每半小时,hourly-每小时,daily-每天,monthly-每月
3047
+ */
3048
+ Period: string
3049
+
3050
+ /**
3051
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
3052
+ */
3053
+ DomainId?: number
3054
+ }
3055
+
2449
3056
  /**
2450
3057
  * DescribeDomainAliasList请求参数结构体
2451
3058
  */
@@ -2501,6 +3108,41 @@ export interface DeleteShareDomainRequest {
2501
3108
  DomainId?: number
2502
3109
  }
2503
3110
 
3111
+ /**
3112
+ * 快照信息
3113
+ */
3114
+ export interface SnapshotInfo {
3115
+ /**
3116
+ * 快照的对象存储地址
3117
+ */
3118
+ CosUrl: string
3119
+
3120
+ /**
3121
+ * 添加时间
3122
+ */
3123
+ CreatedOn: string
3124
+
3125
+ /**
3126
+ * 所属域名
3127
+ */
3128
+ Domain: string
3129
+
3130
+ /**
3131
+ * 快照记录 ID
3132
+ */
3133
+ Id: string
3134
+
3135
+ /**
3136
+ * 域名解析记录数
3137
+ */
3138
+ RecordCount: string
3139
+
3140
+ /**
3141
+ * 状态:normal-正常,create-备份中
3142
+ */
3143
+ Status: string
3144
+ }
3145
+
2504
3146
  /**
2505
3147
  * ModifyDynamicDNS请求参数结构体
2506
3148
  */
@@ -2586,6 +3228,21 @@ export interface ModifyRecordRemarkRequest {
2586
3228
  Remark?: string
2587
3229
  }
2588
3230
 
3231
+ /**
3232
+ * RollbackRecordSnapshot返回参数结构体
3233
+ */
3234
+ export interface RollbackRecordSnapshotResponse {
3235
+ /**
3236
+ * 回滚任务 ID
3237
+ */
3238
+ JobId: number
3239
+
3240
+ /**
3241
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3242
+ */
3243
+ RequestId?: string
3244
+ }
3245
+
2589
3246
  /**
2590
3247
  * DescribeUserDetail请求参数结构体
2591
3248
  */
@@ -2737,6 +3394,26 @@ export interface ModifyDomainUnlockRequest {
2737
3394
  DomainId?: number
2738
3395
  }
2739
3396
 
3397
+ /**
3398
+ * DescribeRecordSnapshotRollbackResult请求参数结构体
3399
+ */
3400
+ export interface DescribeRecordSnapshotRollbackResultRequest {
3401
+ /**
3402
+ * 域名
3403
+ */
3404
+ Domain: string
3405
+
3406
+ /**
3407
+ * 回滚任务 ID
3408
+ */
3409
+ JobId: number
3410
+
3411
+ /**
3412
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
3413
+ */
3414
+ DomainId?: number
3415
+ }
3416
+
2740
3417
  /**
2741
3418
  * ModifyDomainLock返回参数结构体
2742
3419
  */
@@ -2788,39 +3465,24 @@ export interface ModifyVasAutoRenewStatusRequest {
2788
3465
  }
2789
3466
 
2790
3467
  /**
2791
- * 域名锁定信息
3468
+ * DownloadSnapshot返回参数结构体
2792
3469
  */
2793
- export interface LockInfo {
3470
+ export interface DownloadSnapshotResponse {
2794
3471
  /**
2795
- * 域名 ID
3472
+ * 快照下载链接
2796
3473
  */
2797
- DomainId: number
3474
+ CosUrl: string
2798
3475
 
2799
3476
  /**
2800
- * 域名解锁码
2801
- */
2802
- LockCode: string
2803
-
2804
- /**
2805
- * 域名自动解锁日期
3477
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2806
3478
  */
2807
- LockEnd: string
3479
+ RequestId?: string
2808
3480
  }
2809
3481
 
2810
3482
  /**
2811
- * DescribeDomainShareInfo请求参数结构体
3483
+ * DescribeDomainGroupList请求参数结构体
2812
3484
  */
2813
- export interface DescribeDomainShareInfoRequest {
2814
- /**
2815
- * 域名
2816
- */
2817
- Domain: string
2818
-
2819
- /**
2820
- * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
2821
- */
2822
- DomainId?: number
2823
- }
3485
+ export type DescribeDomainGroupListRequest = null
2824
3486
 
2825
3487
  /**
2826
3488
  * DescribeBatchTask返回参数结构体
@@ -2862,6 +3524,31 @@ export interface DescribeBatchTaskResponse {
2862
3524
  RequestId?: string
2863
3525
  }
2864
3526
 
3527
+ /**
3528
+ * CheckRecordSnapshotRollback请求参数结构体
3529
+ */
3530
+ export interface CheckRecordSnapshotRollbackRequest {
3531
+ /**
3532
+ * 域名
3533
+ */
3534
+ Domain: string
3535
+
3536
+ /**
3537
+ * 快照 ID
3538
+ */
3539
+ SnapshotId: string
3540
+
3541
+ /**
3542
+ * 解析记录信息
3543
+ */
3544
+ Record: SnapshotRecord
3545
+
3546
+ /**
3547
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
3548
+ */
3549
+ DomainId?: number
3550
+ }
3551
+
2865
3552
  /**
2866
3553
  * DescribeDomainAnalytics请求参数结构体
2867
3554
  */
@@ -2906,3 +3593,49 @@ export interface ModifyDynamicDNSResponse {
2906
3593
  */
2907
3594
  RequestId?: string
2908
3595
  }
3596
+
3597
+ /**
3598
+ * DescribeSnapshotRollbackResult请求参数结构体
3599
+ */
3600
+ export interface DescribeSnapshotRollbackResultRequest {
3601
+ /**
3602
+ * 域名
3603
+ */
3604
+ Domain: string
3605
+
3606
+ /**
3607
+ * 快照回滚任务 ID
3608
+ */
3609
+ TaskId: number
3610
+
3611
+ /**
3612
+ * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。
3613
+ */
3614
+ DomainId?: number
3615
+ }
3616
+
3617
+ /**
3618
+ * DescribeDomainLogList返回参数结构体
3619
+ */
3620
+ export interface DescribeDomainLogListResponse {
3621
+ /**
3622
+ * 域名信息
3623
+ 注意:此字段可能返回 null,表示取不到有效值。
3624
+ */
3625
+ LogList: Array<string>
3626
+
3627
+ /**
3628
+ * 分页大小
3629
+ */
3630
+ PageSize: number
3631
+
3632
+ /**
3633
+ * 日志总条数
3634
+ */
3635
+ TotalCount: number
3636
+
3637
+ /**
3638
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3639
+ */
3640
+ RequestId?: string
3641
+ }