tencentcloud-sdk-nodejs-intl-en 3.0.351 → 3.0.355
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.
- package/package.json +1 -1
- package/tencentcloud/antiddos/v20200309/models.js +2 -1
- package/tencentcloud/apigateway/v20180808/models.js +30 -2
- package/tencentcloud/cdn/v20180606/cdn_client.js +1 -0
- package/tencentcloud/cdn/v20180606/models.js +94 -3
- package/tencentcloud/ckafka/v20190819/ckafka_client.js +1 -0
- package/tencentcloud/ckafka/v20190819/models.js +89 -11
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/emr/v20190103/models.js +70 -0
- package/tencentcloud/gaap/v20180529/models.js +7 -0
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/lighthouse/v20200324/models.js +11 -5
- package/tencentcloud/postgres/v20170312/models.js +51 -14
- package/tencentcloud/privatedns/v20201028/models.js +344 -59
- package/tencentcloud/privatedns/v20201028/privatedns_client.js +43 -3
- package/tencentcloud/tdmq/index.js +3 -0
- package/tencentcloud/tdmq/v20200217/index.js +4 -0
- package/tencentcloud/tdmq/v20200217/models.js +9546 -0
- package/tencentcloud/tdmq/v20200217/tdmq_client.js +1003 -0
- package/tencentcloud/tke/v20180525/models.js +1 -1
- package/tencentcloud/vod/v20180717/models.js +333 -24
- package/tencentcloud/vod/v20180717/vod_client.js +3 -2
|
@@ -266,6 +266,106 @@ class PrivateDNSAccount extends AbstractModel {
|
|
|
266
266
|
}
|
|
267
267
|
}
|
|
268
268
|
|
|
269
|
+
/**
|
|
270
|
+
* DescribePrivateZoneRecordList response structure.
|
|
271
|
+
* @class
|
|
272
|
+
*/
|
|
273
|
+
class DescribePrivateZoneRecordListResponse extends AbstractModel {
|
|
274
|
+
constructor(){
|
|
275
|
+
super();
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* Number of DNS records
|
|
279
|
+
* @type {number || null}
|
|
280
|
+
*/
|
|
281
|
+
this.TotalCount = null;
|
|
282
|
+
|
|
283
|
+
/**
|
|
284
|
+
* List of DNS records
|
|
285
|
+
* @type {Array.<PrivateZoneRecord> || null}
|
|
286
|
+
*/
|
|
287
|
+
this.RecordSet = null;
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
291
|
+
* @type {string || null}
|
|
292
|
+
*/
|
|
293
|
+
this.RequestId = null;
|
|
294
|
+
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* @private
|
|
299
|
+
*/
|
|
300
|
+
deserialize(params) {
|
|
301
|
+
if (!params) {
|
|
302
|
+
return;
|
|
303
|
+
}
|
|
304
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
305
|
+
|
|
306
|
+
if (params.RecordSet) {
|
|
307
|
+
this.RecordSet = new Array();
|
|
308
|
+
for (let z in params.RecordSet) {
|
|
309
|
+
let obj = new PrivateZoneRecord();
|
|
310
|
+
obj.deserialize(params.RecordSet[z]);
|
|
311
|
+
this.RecordSet.push(obj);
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
315
|
+
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* DescribePrivateZoneList response structure.
|
|
321
|
+
* @class
|
|
322
|
+
*/
|
|
323
|
+
class DescribePrivateZoneListResponse extends AbstractModel {
|
|
324
|
+
constructor(){
|
|
325
|
+
super();
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* Number of private domains
|
|
329
|
+
* @type {number || null}
|
|
330
|
+
*/
|
|
331
|
+
this.TotalCount = null;
|
|
332
|
+
|
|
333
|
+
/**
|
|
334
|
+
* List of private domains
|
|
335
|
+
* @type {Array.<PrivateZone> || null}
|
|
336
|
+
*/
|
|
337
|
+
this.PrivateZoneSet = null;
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
341
|
+
* @type {string || null}
|
|
342
|
+
*/
|
|
343
|
+
this.RequestId = null;
|
|
344
|
+
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* @private
|
|
349
|
+
*/
|
|
350
|
+
deserialize(params) {
|
|
351
|
+
if (!params) {
|
|
352
|
+
return;
|
|
353
|
+
}
|
|
354
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
355
|
+
|
|
356
|
+
if (params.PrivateZoneSet) {
|
|
357
|
+
this.PrivateZoneSet = new Array();
|
|
358
|
+
for (let z in params.PrivateZoneSet) {
|
|
359
|
+
let obj = new PrivateZone();
|
|
360
|
+
obj.deserialize(params.PrivateZoneSet[z]);
|
|
361
|
+
this.PrivateZoneSet.push(obj);
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
365
|
+
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
|
|
269
369
|
/**
|
|
270
370
|
* Output parameters of the associated VPC
|
|
271
371
|
* @class
|
|
@@ -371,6 +471,56 @@ class DatePoint extends AbstractModel {
|
|
|
371
471
|
}
|
|
372
472
|
}
|
|
373
473
|
|
|
474
|
+
/**
|
|
475
|
+
* DescribeAccountVpcList response structure.
|
|
476
|
+
* @class
|
|
477
|
+
*/
|
|
478
|
+
class DescribeAccountVpcListResponse extends AbstractModel {
|
|
479
|
+
constructor(){
|
|
480
|
+
super();
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* Number of VPCs
|
|
484
|
+
* @type {number || null}
|
|
485
|
+
*/
|
|
486
|
+
this.TotalCount = null;
|
|
487
|
+
|
|
488
|
+
/**
|
|
489
|
+
* VPC list
|
|
490
|
+
* @type {Array.<AccountVpcInfoOut> || null}
|
|
491
|
+
*/
|
|
492
|
+
this.VpcSet = null;
|
|
493
|
+
|
|
494
|
+
/**
|
|
495
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
496
|
+
* @type {string || null}
|
|
497
|
+
*/
|
|
498
|
+
this.RequestId = null;
|
|
499
|
+
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
/**
|
|
503
|
+
* @private
|
|
504
|
+
*/
|
|
505
|
+
deserialize(params) {
|
|
506
|
+
if (!params) {
|
|
507
|
+
return;
|
|
508
|
+
}
|
|
509
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
510
|
+
|
|
511
|
+
if (params.VpcSet) {
|
|
512
|
+
this.VpcSet = new Array();
|
|
513
|
+
for (let z in params.VpcSet) {
|
|
514
|
+
let obj = new AccountVpcInfoOut();
|
|
515
|
+
obj.deserialize(params.VpcSet[z]);
|
|
516
|
+
this.VpcSet.push(obj);
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
520
|
+
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
|
|
374
524
|
/**
|
|
375
525
|
* DescribePrivateZoneService request structure.
|
|
376
526
|
* @class
|
|
@@ -621,30 +771,36 @@ class ModifyPrivateZoneRecordResponse extends AbstractModel {
|
|
|
621
771
|
}
|
|
622
772
|
|
|
623
773
|
/**
|
|
624
|
-
*
|
|
774
|
+
* DescribeAccountVpcList request structure.
|
|
625
775
|
* @class
|
|
626
776
|
*/
|
|
627
|
-
class
|
|
777
|
+
class DescribeAccountVpcListRequest extends AbstractModel {
|
|
628
778
|
constructor(){
|
|
629
779
|
super();
|
|
630
780
|
|
|
631
781
|
/**
|
|
632
|
-
*
|
|
782
|
+
* UIN of account
|
|
783
|
+
* @type {string || null}
|
|
784
|
+
*/
|
|
785
|
+
this.AccountUin = null;
|
|
786
|
+
|
|
787
|
+
/**
|
|
788
|
+
* Pagination offset, starting from 0
|
|
633
789
|
* @type {number || null}
|
|
634
790
|
*/
|
|
635
|
-
this.
|
|
791
|
+
this.Offset = null;
|
|
636
792
|
|
|
637
793
|
/**
|
|
638
|
-
*
|
|
639
|
-
* @type {
|
|
794
|
+
* Number of entries per page. Maximum value: `100`. Default value: `20`
|
|
795
|
+
* @type {number || null}
|
|
640
796
|
*/
|
|
641
|
-
this.
|
|
797
|
+
this.Limit = null;
|
|
642
798
|
|
|
643
799
|
/**
|
|
644
|
-
*
|
|
645
|
-
* @type {
|
|
800
|
+
* Filter parameters
|
|
801
|
+
* @type {Array.<Filter> || null}
|
|
646
802
|
*/
|
|
647
|
-
this.
|
|
803
|
+
this.Filters = null;
|
|
648
804
|
|
|
649
805
|
}
|
|
650
806
|
|
|
@@ -655,17 +811,18 @@ class DescribePrivateZoneRecordListResponse extends AbstractModel {
|
|
|
655
811
|
if (!params) {
|
|
656
812
|
return;
|
|
657
813
|
}
|
|
658
|
-
this.
|
|
814
|
+
this.AccountUin = 'AccountUin' in params ? params.AccountUin : null;
|
|
815
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
816
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
659
817
|
|
|
660
|
-
if (params.
|
|
661
|
-
this.
|
|
662
|
-
for (let z in params.
|
|
663
|
-
let obj = new
|
|
664
|
-
obj.deserialize(params.
|
|
665
|
-
this.
|
|
818
|
+
if (params.Filters) {
|
|
819
|
+
this.Filters = new Array();
|
|
820
|
+
for (let z in params.Filters) {
|
|
821
|
+
let obj = new Filter();
|
|
822
|
+
obj.deserialize(params.Filters[z]);
|
|
823
|
+
this.Filters.push(obj);
|
|
666
824
|
}
|
|
667
825
|
}
|
|
668
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
669
826
|
|
|
670
827
|
}
|
|
671
828
|
}
|
|
@@ -899,6 +1056,90 @@ class CreatePrivateZoneRequest extends AbstractModel {
|
|
|
899
1056
|
}
|
|
900
1057
|
}
|
|
901
1058
|
|
|
1059
|
+
/**
|
|
1060
|
+
* VPC information
|
|
1061
|
+
* @class
|
|
1062
|
+
*/
|
|
1063
|
+
class VpcInfo extends AbstractModel {
|
|
1064
|
+
constructor(){
|
|
1065
|
+
super();
|
|
1066
|
+
|
|
1067
|
+
/**
|
|
1068
|
+
* VpcId: vpc-xadsafsdasd
|
|
1069
|
+
* @type {string || null}
|
|
1070
|
+
*/
|
|
1071
|
+
this.UniqVpcId = null;
|
|
1072
|
+
|
|
1073
|
+
/**
|
|
1074
|
+
* VPC region: ap-guangzhou, ap-shanghai
|
|
1075
|
+
* @type {string || null}
|
|
1076
|
+
*/
|
|
1077
|
+
this.Region = null;
|
|
1078
|
+
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
/**
|
|
1082
|
+
* @private
|
|
1083
|
+
*/
|
|
1084
|
+
deserialize(params) {
|
|
1085
|
+
if (!params) {
|
|
1086
|
+
return;
|
|
1087
|
+
}
|
|
1088
|
+
this.UniqVpcId = 'UniqVpcId' in params ? params.UniqVpcId : null;
|
|
1089
|
+
this.Region = 'Region' in params ? params.Region : null;
|
|
1090
|
+
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
/**
|
|
1095
|
+
* Output parameters of the associated VPC
|
|
1096
|
+
* @class
|
|
1097
|
+
*/
|
|
1098
|
+
class AccountVpcInfoOut extends AbstractModel {
|
|
1099
|
+
constructor(){
|
|
1100
|
+
super();
|
|
1101
|
+
|
|
1102
|
+
/**
|
|
1103
|
+
* VpcId: vpc-xadsafsdasd
|
|
1104
|
+
* @type {string || null}
|
|
1105
|
+
*/
|
|
1106
|
+
this.VpcId = null;
|
|
1107
|
+
|
|
1108
|
+
/**
|
|
1109
|
+
* Region: ap-guangzhou, ap-shanghai
|
|
1110
|
+
* @type {string || null}
|
|
1111
|
+
*/
|
|
1112
|
+
this.Region = null;
|
|
1113
|
+
|
|
1114
|
+
/**
|
|
1115
|
+
* VPC ID: 123456789
|
|
1116
|
+
* @type {string || null}
|
|
1117
|
+
*/
|
|
1118
|
+
this.Uin = null;
|
|
1119
|
+
|
|
1120
|
+
/**
|
|
1121
|
+
* VPC name: testname
|
|
1122
|
+
* @type {string || null}
|
|
1123
|
+
*/
|
|
1124
|
+
this.VpcName = null;
|
|
1125
|
+
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
/**
|
|
1129
|
+
* @private
|
|
1130
|
+
*/
|
|
1131
|
+
deserialize(params) {
|
|
1132
|
+
if (!params) {
|
|
1133
|
+
return;
|
|
1134
|
+
}
|
|
1135
|
+
this.VpcId = 'VpcId' in params ? params.VpcId : null;
|
|
1136
|
+
this.Region = 'Region' in params ? params.Region : null;
|
|
1137
|
+
this.Uin = 'Uin' in params ? params.Uin : null;
|
|
1138
|
+
this.VpcName = 'VpcName' in params ? params.VpcName : null;
|
|
1139
|
+
|
|
1140
|
+
}
|
|
1141
|
+
}
|
|
1142
|
+
|
|
902
1143
|
/**
|
|
903
1144
|
* VPC information of a Private DNS account
|
|
904
1145
|
* @class
|
|
@@ -1267,24 +1508,18 @@ class DescribePrivateZoneServiceResponse extends AbstractModel {
|
|
|
1267
1508
|
}
|
|
1268
1509
|
|
|
1269
1510
|
/**
|
|
1270
|
-
*
|
|
1511
|
+
* CreatePrivateDNSAccount response structure.
|
|
1271
1512
|
* @class
|
|
1272
1513
|
*/
|
|
1273
|
-
class
|
|
1514
|
+
class CreatePrivateDNSAccountResponse extends AbstractModel {
|
|
1274
1515
|
constructor(){
|
|
1275
1516
|
super();
|
|
1276
1517
|
|
|
1277
1518
|
/**
|
|
1278
|
-
*
|
|
1279
|
-
* @type {string || null}
|
|
1280
|
-
*/
|
|
1281
|
-
this.UniqVpcId = null;
|
|
1282
|
-
|
|
1283
|
-
/**
|
|
1284
|
-
* VPC region: ap-guangzhou, ap-shanghai
|
|
1519
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1285
1520
|
* @type {string || null}
|
|
1286
1521
|
*/
|
|
1287
|
-
this.
|
|
1522
|
+
this.RequestId = null;
|
|
1288
1523
|
|
|
1289
1524
|
}
|
|
1290
1525
|
|
|
@@ -1295,8 +1530,7 @@ class VpcInfo extends AbstractModel {
|
|
|
1295
1530
|
if (!params) {
|
|
1296
1531
|
return;
|
|
1297
1532
|
}
|
|
1298
|
-
this.
|
|
1299
|
-
this.Region = 'Region' in params ? params.Region : null;
|
|
1533
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1300
1534
|
|
|
1301
1535
|
}
|
|
1302
1536
|
}
|
|
@@ -1513,6 +1747,39 @@ class SubscribePrivateZoneServiceResponse extends AbstractModel {
|
|
|
1513
1747
|
}
|
|
1514
1748
|
}
|
|
1515
1749
|
|
|
1750
|
+
/**
|
|
1751
|
+
* DeletePrivateDNSAccount request structure.
|
|
1752
|
+
* @class
|
|
1753
|
+
*/
|
|
1754
|
+
class DeletePrivateDNSAccountRequest extends AbstractModel {
|
|
1755
|
+
constructor(){
|
|
1756
|
+
super();
|
|
1757
|
+
|
|
1758
|
+
/**
|
|
1759
|
+
* Private DNS account
|
|
1760
|
+
* @type {PrivateDNSAccount || null}
|
|
1761
|
+
*/
|
|
1762
|
+
this.Account = null;
|
|
1763
|
+
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
/**
|
|
1767
|
+
* @private
|
|
1768
|
+
*/
|
|
1769
|
+
deserialize(params) {
|
|
1770
|
+
if (!params) {
|
|
1771
|
+
return;
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
if (params.Account) {
|
|
1775
|
+
let obj = new PrivateDNSAccount();
|
|
1776
|
+
obj.deserialize(params.Account)
|
|
1777
|
+
this.Account = obj;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
}
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1516
1783
|
/**
|
|
1517
1784
|
* DeletePrivateZoneRecord request structure.
|
|
1518
1785
|
* @class
|
|
@@ -1619,30 +1886,18 @@ class DeletePrivateZoneResponse extends AbstractModel {
|
|
|
1619
1886
|
}
|
|
1620
1887
|
|
|
1621
1888
|
/**
|
|
1622
|
-
*
|
|
1889
|
+
* CreatePrivateDNSAccount request structure.
|
|
1623
1890
|
* @class
|
|
1624
1891
|
*/
|
|
1625
|
-
class
|
|
1892
|
+
class CreatePrivateDNSAccountRequest extends AbstractModel {
|
|
1626
1893
|
constructor(){
|
|
1627
1894
|
super();
|
|
1628
1895
|
|
|
1629
1896
|
/**
|
|
1630
|
-
*
|
|
1631
|
-
* @type {
|
|
1632
|
-
*/
|
|
1633
|
-
this.TotalCount = null;
|
|
1634
|
-
|
|
1635
|
-
/**
|
|
1636
|
-
* List of private domains
|
|
1637
|
-
* @type {Array.<PrivateZone> || null}
|
|
1638
|
-
*/
|
|
1639
|
-
this.PrivateZoneSet = null;
|
|
1640
|
-
|
|
1641
|
-
/**
|
|
1642
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1643
|
-
* @type {string || null}
|
|
1897
|
+
* Private DNS account
|
|
1898
|
+
* @type {PrivateDNSAccount || null}
|
|
1644
1899
|
*/
|
|
1645
|
-
this.
|
|
1900
|
+
this.Account = null;
|
|
1646
1901
|
|
|
1647
1902
|
}
|
|
1648
1903
|
|
|
@@ -1653,17 +1908,12 @@ class DescribePrivateZoneListResponse extends AbstractModel {
|
|
|
1653
1908
|
if (!params) {
|
|
1654
1909
|
return;
|
|
1655
1910
|
}
|
|
1656
|
-
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
1657
1911
|
|
|
1658
|
-
if (params.
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
obj.deserialize(params.PrivateZoneSet[z]);
|
|
1663
|
-
this.PrivateZoneSet.push(obj);
|
|
1664
|
-
}
|
|
1912
|
+
if (params.Account) {
|
|
1913
|
+
let obj = new PrivateDNSAccount();
|
|
1914
|
+
obj.deserialize(params.Account)
|
|
1915
|
+
this.Account = obj;
|
|
1665
1916
|
}
|
|
1666
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1667
1917
|
|
|
1668
1918
|
}
|
|
1669
1919
|
}
|
|
@@ -2046,6 +2296,34 @@ class ModifyPrivateZoneRecordRequest extends AbstractModel {
|
|
|
2046
2296
|
}
|
|
2047
2297
|
}
|
|
2048
2298
|
|
|
2299
|
+
/**
|
|
2300
|
+
* DeletePrivateDNSAccount response structure.
|
|
2301
|
+
* @class
|
|
2302
|
+
*/
|
|
2303
|
+
class DeletePrivateDNSAccountResponse extends AbstractModel {
|
|
2304
|
+
constructor(){
|
|
2305
|
+
super();
|
|
2306
|
+
|
|
2307
|
+
/**
|
|
2308
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
2309
|
+
* @type {string || null}
|
|
2310
|
+
*/
|
|
2311
|
+
this.RequestId = null;
|
|
2312
|
+
|
|
2313
|
+
}
|
|
2314
|
+
|
|
2315
|
+
/**
|
|
2316
|
+
* @private
|
|
2317
|
+
*/
|
|
2318
|
+
deserialize(params) {
|
|
2319
|
+
if (!params) {
|
|
2320
|
+
return;
|
|
2321
|
+
}
|
|
2322
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2323
|
+
|
|
2324
|
+
}
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2049
2327
|
/**
|
|
2050
2328
|
* Traffic package usage
|
|
2051
2329
|
* @class
|
|
@@ -2187,19 +2465,24 @@ module.exports = {
|
|
|
2187
2465
|
DescribePrivateDNSAccountListResponse: DescribePrivateDNSAccountListResponse,
|
|
2188
2466
|
DescribePrivateZoneRecordListRequest: DescribePrivateZoneRecordListRequest,
|
|
2189
2467
|
PrivateDNSAccount: PrivateDNSAccount,
|
|
2468
|
+
DescribePrivateZoneRecordListResponse: DescribePrivateZoneRecordListResponse,
|
|
2469
|
+
DescribePrivateZoneListResponse: DescribePrivateZoneListResponse,
|
|
2190
2470
|
AccountVpcInfoOutput: AccountVpcInfoOutput,
|
|
2191
2471
|
DescribePrivateZoneRequest: DescribePrivateZoneRequest,
|
|
2192
2472
|
DatePoint: DatePoint,
|
|
2473
|
+
DescribeAccountVpcListResponse: DescribeAccountVpcListResponse,
|
|
2193
2474
|
DescribePrivateZoneServiceRequest: DescribePrivateZoneServiceRequest,
|
|
2194
2475
|
PrivateZoneRecord: PrivateZoneRecord,
|
|
2195
2476
|
AuditLogInfo: AuditLogInfo,
|
|
2196
2477
|
DescribeRequestDataRequest: DescribeRequestDataRequest,
|
|
2197
2478
|
ModifyPrivateZoneRecordResponse: ModifyPrivateZoneRecordResponse,
|
|
2198
|
-
|
|
2479
|
+
DescribeAccountVpcListRequest: DescribeAccountVpcListRequest,
|
|
2199
2480
|
DescribeRequestDataResponse: DescribeRequestDataResponse,
|
|
2200
2481
|
ModifyPrivateZoneRequest: ModifyPrivateZoneRequest,
|
|
2201
2482
|
TagInfo: TagInfo,
|
|
2202
2483
|
CreatePrivateZoneRequest: CreatePrivateZoneRequest,
|
|
2484
|
+
VpcInfo: VpcInfo,
|
|
2485
|
+
AccountVpcInfoOut: AccountVpcInfoOut,
|
|
2203
2486
|
AccountVpcInfo: AccountVpcInfo,
|
|
2204
2487
|
ModifyPrivateZoneResponse: ModifyPrivateZoneResponse,
|
|
2205
2488
|
DescribePrivateZoneListRequest: DescribePrivateZoneListRequest,
|
|
@@ -2209,21 +2492,23 @@ module.exports = {
|
|
|
2209
2492
|
DescribeDashboardResponse: DescribeDashboardResponse,
|
|
2210
2493
|
CreatePrivateZoneRecordResponse: CreatePrivateZoneRecordResponse,
|
|
2211
2494
|
DescribePrivateZoneServiceResponse: DescribePrivateZoneServiceResponse,
|
|
2212
|
-
|
|
2495
|
+
CreatePrivateDNSAccountResponse: CreatePrivateDNSAccountResponse,
|
|
2213
2496
|
DescribeAuditLogRequest: DescribeAuditLogRequest,
|
|
2214
2497
|
DescribeDashboardRequest: DescribeDashboardRequest,
|
|
2215
2498
|
DeletePrivateZoneRequest: DeletePrivateZoneRequest,
|
|
2216
2499
|
AuditLog: AuditLog,
|
|
2217
2500
|
SubscribePrivateZoneServiceResponse: SubscribePrivateZoneServiceResponse,
|
|
2501
|
+
DeletePrivateDNSAccountRequest: DeletePrivateDNSAccountRequest,
|
|
2218
2502
|
DeletePrivateZoneRecordRequest: DeletePrivateZoneRecordRequest,
|
|
2219
2503
|
Filter: Filter,
|
|
2220
2504
|
DeletePrivateZoneResponse: DeletePrivateZoneResponse,
|
|
2221
|
-
|
|
2505
|
+
CreatePrivateDNSAccountRequest: CreatePrivateDNSAccountRequest,
|
|
2222
2506
|
MetricData: MetricData,
|
|
2223
2507
|
DescribePrivateDNSAccountListRequest: DescribePrivateDNSAccountListRequest,
|
|
2224
2508
|
PrivateZone: PrivateZone,
|
|
2225
2509
|
CreatePrivateZoneRecordRequest: CreatePrivateZoneRecordRequest,
|
|
2226
2510
|
ModifyPrivateZoneRecordRequest: ModifyPrivateZoneRecordRequest,
|
|
2511
|
+
DeletePrivateDNSAccountResponse: DeletePrivateDNSAccountResponse,
|
|
2227
2512
|
FlowUsage: FlowUsage,
|
|
2228
2513
|
DeletePrivateZoneRecordResponse: DeletePrivateZoneRecordResponse,
|
|
2229
2514
|
ModifyPrivateZoneVpcResponse: ModifyPrivateZoneVpcResponse,
|
|
@@ -21,19 +21,24 @@ const DescribeAuditLogResponse = models.DescribeAuditLogResponse;
|
|
|
21
21
|
const DescribePrivateDNSAccountListResponse = models.DescribePrivateDNSAccountListResponse;
|
|
22
22
|
const DescribePrivateZoneRecordListRequest = models.DescribePrivateZoneRecordListRequest;
|
|
23
23
|
const PrivateDNSAccount = models.PrivateDNSAccount;
|
|
24
|
+
const DescribePrivateZoneRecordListResponse = models.DescribePrivateZoneRecordListResponse;
|
|
25
|
+
const DescribePrivateZoneListResponse = models.DescribePrivateZoneListResponse;
|
|
24
26
|
const AccountVpcInfoOutput = models.AccountVpcInfoOutput;
|
|
25
27
|
const DescribePrivateZoneRequest = models.DescribePrivateZoneRequest;
|
|
26
28
|
const DatePoint = models.DatePoint;
|
|
29
|
+
const DescribeAccountVpcListResponse = models.DescribeAccountVpcListResponse;
|
|
27
30
|
const DescribePrivateZoneServiceRequest = models.DescribePrivateZoneServiceRequest;
|
|
28
31
|
const PrivateZoneRecord = models.PrivateZoneRecord;
|
|
29
32
|
const AuditLogInfo = models.AuditLogInfo;
|
|
30
33
|
const DescribeRequestDataRequest = models.DescribeRequestDataRequest;
|
|
31
34
|
const ModifyPrivateZoneRecordResponse = models.ModifyPrivateZoneRecordResponse;
|
|
32
|
-
const
|
|
35
|
+
const DescribeAccountVpcListRequest = models.DescribeAccountVpcListRequest;
|
|
33
36
|
const DescribeRequestDataResponse = models.DescribeRequestDataResponse;
|
|
34
37
|
const ModifyPrivateZoneRequest = models.ModifyPrivateZoneRequest;
|
|
35
38
|
const TagInfo = models.TagInfo;
|
|
36
39
|
const CreatePrivateZoneRequest = models.CreatePrivateZoneRequest;
|
|
40
|
+
const VpcInfo = models.VpcInfo;
|
|
41
|
+
const AccountVpcInfoOut = models.AccountVpcInfoOut;
|
|
37
42
|
const AccountVpcInfo = models.AccountVpcInfo;
|
|
38
43
|
const ModifyPrivateZoneResponse = models.ModifyPrivateZoneResponse;
|
|
39
44
|
const DescribePrivateZoneListRequest = models.DescribePrivateZoneListRequest;
|
|
@@ -43,21 +48,23 @@ const CreatePrivateZoneResponse = models.CreatePrivateZoneResponse;
|
|
|
43
48
|
const DescribeDashboardResponse = models.DescribeDashboardResponse;
|
|
44
49
|
const CreatePrivateZoneRecordResponse = models.CreatePrivateZoneRecordResponse;
|
|
45
50
|
const DescribePrivateZoneServiceResponse = models.DescribePrivateZoneServiceResponse;
|
|
46
|
-
const
|
|
51
|
+
const CreatePrivateDNSAccountResponse = models.CreatePrivateDNSAccountResponse;
|
|
47
52
|
const DescribeAuditLogRequest = models.DescribeAuditLogRequest;
|
|
48
53
|
const DescribeDashboardRequest = models.DescribeDashboardRequest;
|
|
49
54
|
const DeletePrivateZoneRequest = models.DeletePrivateZoneRequest;
|
|
50
55
|
const AuditLog = models.AuditLog;
|
|
51
56
|
const SubscribePrivateZoneServiceResponse = models.SubscribePrivateZoneServiceResponse;
|
|
57
|
+
const DeletePrivateDNSAccountRequest = models.DeletePrivateDNSAccountRequest;
|
|
52
58
|
const DeletePrivateZoneRecordRequest = models.DeletePrivateZoneRecordRequest;
|
|
53
59
|
const Filter = models.Filter;
|
|
54
60
|
const DeletePrivateZoneResponse = models.DeletePrivateZoneResponse;
|
|
55
|
-
const
|
|
61
|
+
const CreatePrivateDNSAccountRequest = models.CreatePrivateDNSAccountRequest;
|
|
56
62
|
const MetricData = models.MetricData;
|
|
57
63
|
const DescribePrivateDNSAccountListRequest = models.DescribePrivateDNSAccountListRequest;
|
|
58
64
|
const PrivateZone = models.PrivateZone;
|
|
59
65
|
const CreatePrivateZoneRecordRequest = models.CreatePrivateZoneRecordRequest;
|
|
60
66
|
const ModifyPrivateZoneRecordRequest = models.ModifyPrivateZoneRecordRequest;
|
|
67
|
+
const DeletePrivateDNSAccountResponse = models.DeletePrivateDNSAccountResponse;
|
|
61
68
|
const FlowUsage = models.FlowUsage;
|
|
62
69
|
const DeletePrivateZoneRecordResponse = models.DeletePrivateZoneRecordResponse;
|
|
63
70
|
const ModifyPrivateZoneVpcResponse = models.ModifyPrivateZoneVpcResponse;
|
|
@@ -73,6 +80,17 @@ class PrivatednsClient extends AbstractClient {
|
|
|
73
80
|
super("privatedns.tencentcloudapi.com", "2020-10-28", credential, region, profile);
|
|
74
81
|
}
|
|
75
82
|
|
|
83
|
+
/**
|
|
84
|
+
* This API is used to create a Private DNS account.
|
|
85
|
+
* @param {CreatePrivateDNSAccountRequest} req
|
|
86
|
+
* @param {function(string, CreatePrivateDNSAccountResponse):void} cb
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
CreatePrivateDNSAccount(req, cb) {
|
|
90
|
+
let resp = new CreatePrivateDNSAccountResponse();
|
|
91
|
+
this.request("CreatePrivateDNSAccount", req, resp, cb);
|
|
92
|
+
}
|
|
93
|
+
|
|
76
94
|
/**
|
|
77
95
|
* This API is used to get the private domain information.
|
|
78
96
|
* @param {DescribePrivateZoneRequest} req
|
|
@@ -95,6 +113,17 @@ class PrivatednsClient extends AbstractClient {
|
|
|
95
113
|
this.request("ModifyPrivateZoneRecord", req, resp, cb);
|
|
96
114
|
}
|
|
97
115
|
|
|
116
|
+
/**
|
|
117
|
+
* This API is used to get the VPC list of a Private DNS account.
|
|
118
|
+
* @param {DescribeAccountVpcListRequest} req
|
|
119
|
+
* @param {function(string, DescribeAccountVpcListResponse):void} cb
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
DescribeAccountVpcList(req, cb) {
|
|
123
|
+
let resp = new DescribeAccountVpcListResponse();
|
|
124
|
+
this.request("DescribeAccountVpcList", req, resp, cb);
|
|
125
|
+
}
|
|
126
|
+
|
|
98
127
|
/**
|
|
99
128
|
* This API is used to get the list of records for a private domain.
|
|
100
129
|
* @param {DescribePrivateZoneRecordListRequest} req
|
|
@@ -117,6 +146,17 @@ class PrivatednsClient extends AbstractClient {
|
|
|
117
146
|
this.request("DescribePrivateZoneService", req, resp, cb);
|
|
118
147
|
}
|
|
119
148
|
|
|
149
|
+
/**
|
|
150
|
+
* This API is used to delete a Private DNS account.
|
|
151
|
+
* @param {DeletePrivateDNSAccountRequest} req
|
|
152
|
+
* @param {function(string, DeletePrivateDNSAccountResponse):void} cb
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
DeletePrivateDNSAccount(req, cb) {
|
|
156
|
+
let resp = new DeletePrivateDNSAccountResponse();
|
|
157
|
+
this.request("DeletePrivateDNSAccount", req, resp, cb);
|
|
158
|
+
}
|
|
159
|
+
|
|
120
160
|
/**
|
|
121
161
|
* This API is used to get the list of operation logs.
|
|
122
162
|
* @param {DescribeAuditLogRequest} req
|