tencentcloud-sdk-nodejs-intl-en 3.0.910 → 3.0.911
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
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.911";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -31,7 +31,7 @@ class DescribeQuotaUsageResponse extends AbstractModel {
|
|
|
31
31
|
this.TldQuota = null;
|
|
32
32
|
|
|
33
33
|
/**
|
|
34
|
-
* The unique request ID,
|
|
34
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
35
35
|
* @type {string || null}
|
|
36
36
|
*/
|
|
37
37
|
this.RequestId = null;
|
|
@@ -129,7 +129,7 @@ class DescribeAuditLogResponse extends AbstractModel {
|
|
|
129
129
|
this.Data = null;
|
|
130
130
|
|
|
131
131
|
/**
|
|
132
|
-
* The unique request ID,
|
|
132
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
133
133
|
* @type {string || null}
|
|
134
134
|
*/
|
|
135
135
|
this.RequestId = null;
|
|
@@ -178,7 +178,7 @@ class DescribePrivateDNSAccountListResponse extends AbstractModel {
|
|
|
178
178
|
this.AccountSet = null;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
* The unique request ID,
|
|
181
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
182
182
|
* @type {string || null}
|
|
183
183
|
*/
|
|
184
184
|
this.RequestId = null;
|
|
@@ -207,6 +207,63 @@ class DescribePrivateDNSAccountListResponse extends AbstractModel {
|
|
|
207
207
|
}
|
|
208
208
|
}
|
|
209
209
|
|
|
210
|
+
/**
|
|
211
|
+
* DescribePrivateZoneRecordList request structure.
|
|
212
|
+
* @class
|
|
213
|
+
*/
|
|
214
|
+
class DescribePrivateZoneRecordListRequest extends AbstractModel {
|
|
215
|
+
constructor(){
|
|
216
|
+
super();
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* Private domain ID: zone-xxxxxx
|
|
220
|
+
* @type {string || null}
|
|
221
|
+
*/
|
|
222
|
+
this.ZoneId = null;
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* Filter parameter
|
|
226
|
+
* @type {Array.<Filter> || null}
|
|
227
|
+
*/
|
|
228
|
+
this.Filters = null;
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* Pagination offset, starting from 0
|
|
232
|
+
* @type {number || null}
|
|
233
|
+
*/
|
|
234
|
+
this.Offset = null;
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Number of entries per page. Maximum value: 100. Default value: 20
|
|
238
|
+
* @type {number || null}
|
|
239
|
+
*/
|
|
240
|
+
this.Limit = null;
|
|
241
|
+
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* @private
|
|
246
|
+
*/
|
|
247
|
+
deserialize(params) {
|
|
248
|
+
if (!params) {
|
|
249
|
+
return;
|
|
250
|
+
}
|
|
251
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
252
|
+
|
|
253
|
+
if (params.Filters) {
|
|
254
|
+
this.Filters = new Array();
|
|
255
|
+
for (let z in params.Filters) {
|
|
256
|
+
let obj = new Filter();
|
|
257
|
+
obj.deserialize(params.Filters[z]);
|
|
258
|
+
this.Filters.push(obj);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
262
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
263
|
+
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
210
267
|
/**
|
|
211
268
|
* Private DNS account
|
|
212
269
|
* @class
|
|
@@ -249,6 +306,106 @@ class PrivateDNSAccount extends AbstractModel {
|
|
|
249
306
|
}
|
|
250
307
|
}
|
|
251
308
|
|
|
309
|
+
/**
|
|
310
|
+
* DescribePrivateZoneRecordList response structure.
|
|
311
|
+
* @class
|
|
312
|
+
*/
|
|
313
|
+
class DescribePrivateZoneRecordListResponse extends AbstractModel {
|
|
314
|
+
constructor(){
|
|
315
|
+
super();
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* Number of DNS records
|
|
319
|
+
* @type {number || null}
|
|
320
|
+
*/
|
|
321
|
+
this.TotalCount = null;
|
|
322
|
+
|
|
323
|
+
/**
|
|
324
|
+
* List of DNS records
|
|
325
|
+
* @type {Array.<PrivateZoneRecord> || null}
|
|
326
|
+
*/
|
|
327
|
+
this.RecordSet = null;
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
331
|
+
* @type {string || null}
|
|
332
|
+
*/
|
|
333
|
+
this.RequestId = null;
|
|
334
|
+
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* @private
|
|
339
|
+
*/
|
|
340
|
+
deserialize(params) {
|
|
341
|
+
if (!params) {
|
|
342
|
+
return;
|
|
343
|
+
}
|
|
344
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
345
|
+
|
|
346
|
+
if (params.RecordSet) {
|
|
347
|
+
this.RecordSet = new Array();
|
|
348
|
+
for (let z in params.RecordSet) {
|
|
349
|
+
let obj = new PrivateZoneRecord();
|
|
350
|
+
obj.deserialize(params.RecordSet[z]);
|
|
351
|
+
this.RecordSet.push(obj);
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
355
|
+
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
/**
|
|
360
|
+
* DescribePrivateZoneList response structure.
|
|
361
|
+
* @class
|
|
362
|
+
*/
|
|
363
|
+
class DescribePrivateZoneListResponse extends AbstractModel {
|
|
364
|
+
constructor(){
|
|
365
|
+
super();
|
|
366
|
+
|
|
367
|
+
/**
|
|
368
|
+
* Number of private domains
|
|
369
|
+
* @type {number || null}
|
|
370
|
+
*/
|
|
371
|
+
this.TotalCount = null;
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* List of private domains
|
|
375
|
+
* @type {Array.<PrivateZone> || null}
|
|
376
|
+
*/
|
|
377
|
+
this.PrivateZoneSet = null;
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
381
|
+
* @type {string || null}
|
|
382
|
+
*/
|
|
383
|
+
this.RequestId = null;
|
|
384
|
+
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/**
|
|
388
|
+
* @private
|
|
389
|
+
*/
|
|
390
|
+
deserialize(params) {
|
|
391
|
+
if (!params) {
|
|
392
|
+
return;
|
|
393
|
+
}
|
|
394
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
395
|
+
|
|
396
|
+
if (params.PrivateZoneSet) {
|
|
397
|
+
this.PrivateZoneSet = new Array();
|
|
398
|
+
for (let z in params.PrivateZoneSet) {
|
|
399
|
+
let obj = new PrivateZone();
|
|
400
|
+
obj.deserialize(params.PrivateZoneSet[z]);
|
|
401
|
+
this.PrivateZoneSet.push(obj);
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
405
|
+
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
252
409
|
/**
|
|
253
410
|
* Output parameters of the associated VPC
|
|
254
411
|
* @class
|
|
@@ -318,7 +475,7 @@ class ModifyRecordsStatusResponse extends AbstractModel {
|
|
|
318
475
|
this.Status = null;
|
|
319
476
|
|
|
320
477
|
/**
|
|
321
|
-
* The unique request ID,
|
|
478
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
322
479
|
* @type {string || null}
|
|
323
480
|
*/
|
|
324
481
|
this.RequestId = null;
|
|
@@ -396,7 +553,7 @@ class DescribeAccountVpcListResponse extends AbstractModel {
|
|
|
396
553
|
this.VpcSet = null;
|
|
397
554
|
|
|
398
555
|
/**
|
|
399
|
-
* The unique request ID,
|
|
556
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
400
557
|
* @type {string || null}
|
|
401
558
|
*/
|
|
402
559
|
this.RequestId = null;
|
|
@@ -425,6 +582,135 @@ class DescribeAccountVpcListResponse extends AbstractModel {
|
|
|
425
582
|
}
|
|
426
583
|
}
|
|
427
584
|
|
|
585
|
+
/**
|
|
586
|
+
* DescribePrivateZoneService request structure.
|
|
587
|
+
* @class
|
|
588
|
+
*/
|
|
589
|
+
class DescribePrivateZoneServiceRequest extends AbstractModel {
|
|
590
|
+
constructor(){
|
|
591
|
+
super();
|
|
592
|
+
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
/**
|
|
596
|
+
* @private
|
|
597
|
+
*/
|
|
598
|
+
deserialize(params) {
|
|
599
|
+
if (!params) {
|
|
600
|
+
return;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
/**
|
|
607
|
+
* Private domain information
|
|
608
|
+
* @class
|
|
609
|
+
*/
|
|
610
|
+
class PrivateZoneRecord extends AbstractModel {
|
|
611
|
+
constructor(){
|
|
612
|
+
super();
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* Record ID
|
|
616
|
+
* @type {string || null}
|
|
617
|
+
*/
|
|
618
|
+
this.RecordId = null;
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* Private domain ID: zone-xxxxxxxx
|
|
622
|
+
* @type {string || null}
|
|
623
|
+
*/
|
|
624
|
+
this.ZoneId = null;
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* Subdomain
|
|
628
|
+
* @type {string || null}
|
|
629
|
+
*/
|
|
630
|
+
this.SubDomain = null;
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* Record type. Valid values: "A", "AAAA", "CNAME", "MX", "TXT", "PTR"
|
|
634
|
+
* @type {string || null}
|
|
635
|
+
*/
|
|
636
|
+
this.RecordType = null;
|
|
637
|
+
|
|
638
|
+
/**
|
|
639
|
+
* Record value
|
|
640
|
+
* @type {string || null}
|
|
641
|
+
*/
|
|
642
|
+
this.RecordValue = null;
|
|
643
|
+
|
|
644
|
+
/**
|
|
645
|
+
* Record cache time. The smaller the value, the faster the record will take effect. Value range: 1–86400s. Default value: 600
|
|
646
|
+
* @type {number || null}
|
|
647
|
+
*/
|
|
648
|
+
this.TTL = null;
|
|
649
|
+
|
|
650
|
+
/**
|
|
651
|
+
* MX priority, which is required when the record type is MX. Valid values: 5, 10, 15, 20, 30, 40, 50
|
|
652
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
653
|
+
* @type {number || null}
|
|
654
|
+
*/
|
|
655
|
+
this.MX = null;
|
|
656
|
+
|
|
657
|
+
/**
|
|
658
|
+
* Record status: ENABLED
|
|
659
|
+
* @type {string || null}
|
|
660
|
+
*/
|
|
661
|
+
this.Status = null;
|
|
662
|
+
|
|
663
|
+
/**
|
|
664
|
+
* Record weight. Value range: 1–100
|
|
665
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
666
|
+
* @type {number || null}
|
|
667
|
+
*/
|
|
668
|
+
this.Weight = null;
|
|
669
|
+
|
|
670
|
+
/**
|
|
671
|
+
* Record creation time
|
|
672
|
+
* @type {string || null}
|
|
673
|
+
*/
|
|
674
|
+
this.CreatedOn = null;
|
|
675
|
+
|
|
676
|
+
/**
|
|
677
|
+
* Record update time
|
|
678
|
+
* @type {string || null}
|
|
679
|
+
*/
|
|
680
|
+
this.UpdatedOn = null;
|
|
681
|
+
|
|
682
|
+
/**
|
|
683
|
+
* Additional information
|
|
684
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
685
|
+
* @type {string || null}
|
|
686
|
+
*/
|
|
687
|
+
this.Extra = null;
|
|
688
|
+
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
/**
|
|
692
|
+
* @private
|
|
693
|
+
*/
|
|
694
|
+
deserialize(params) {
|
|
695
|
+
if (!params) {
|
|
696
|
+
return;
|
|
697
|
+
}
|
|
698
|
+
this.RecordId = 'RecordId' in params ? params.RecordId : null;
|
|
699
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
700
|
+
this.SubDomain = 'SubDomain' in params ? params.SubDomain : null;
|
|
701
|
+
this.RecordType = 'RecordType' in params ? params.RecordType : null;
|
|
702
|
+
this.RecordValue = 'RecordValue' in params ? params.RecordValue : null;
|
|
703
|
+
this.TTL = 'TTL' in params ? params.TTL : null;
|
|
704
|
+
this.MX = 'MX' in params ? params.MX : null;
|
|
705
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
706
|
+
this.Weight = 'Weight' in params ? params.Weight : null;
|
|
707
|
+
this.CreatedOn = 'CreatedOn' in params ? params.CreatedOn : null;
|
|
708
|
+
this.UpdatedOn = 'UpdatedOn' in params ? params.UpdatedOn : null;
|
|
709
|
+
this.Extra = 'Extra' in params ? params.Extra : null;
|
|
710
|
+
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
|
|
428
714
|
/**
|
|
429
715
|
* Log details
|
|
430
716
|
* @class
|
|
@@ -467,6 +753,56 @@ class AuditLogInfo extends AbstractModel {
|
|
|
467
753
|
}
|
|
468
754
|
}
|
|
469
755
|
|
|
756
|
+
/**
|
|
757
|
+
* DescribeRequestData request structure.
|
|
758
|
+
* @class
|
|
759
|
+
*/
|
|
760
|
+
class DescribeRequestDataRequest extends AbstractModel {
|
|
761
|
+
constructor(){
|
|
762
|
+
super();
|
|
763
|
+
|
|
764
|
+
/**
|
|
765
|
+
* Request volume statistics start time in the format of 2020-11-22 00:00:00
|
|
766
|
+
* @type {string || null}
|
|
767
|
+
*/
|
|
768
|
+
this.TimeRangeBegin = null;
|
|
769
|
+
|
|
770
|
+
/**
|
|
771
|
+
* Filter parameter:
|
|
772
|
+
* @type {Array.<Filter> || null}
|
|
773
|
+
*/
|
|
774
|
+
this.Filters = null;
|
|
775
|
+
|
|
776
|
+
/**
|
|
777
|
+
* Request volume statistics end time in the format of 2020-11-22 23:59:59
|
|
778
|
+
* @type {string || null}
|
|
779
|
+
*/
|
|
780
|
+
this.TimeRangeEnd = null;
|
|
781
|
+
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
/**
|
|
785
|
+
* @private
|
|
786
|
+
*/
|
|
787
|
+
deserialize(params) {
|
|
788
|
+
if (!params) {
|
|
789
|
+
return;
|
|
790
|
+
}
|
|
791
|
+
this.TimeRangeBegin = 'TimeRangeBegin' in params ? params.TimeRangeBegin : null;
|
|
792
|
+
|
|
793
|
+
if (params.Filters) {
|
|
794
|
+
this.Filters = new Array();
|
|
795
|
+
for (let z in params.Filters) {
|
|
796
|
+
let obj = new Filter();
|
|
797
|
+
obj.deserialize(params.Filters[z]);
|
|
798
|
+
this.Filters.push(obj);
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
this.TimeRangeEnd = 'TimeRangeEnd' in params ? params.TimeRangeEnd : null;
|
|
802
|
+
|
|
803
|
+
}
|
|
804
|
+
}
|
|
805
|
+
|
|
470
806
|
/**
|
|
471
807
|
* ModifyPrivateZoneRecord response structure.
|
|
472
808
|
* @class
|
|
@@ -476,7 +812,7 @@ class ModifyPrivateZoneRecordResponse extends AbstractModel {
|
|
|
476
812
|
super();
|
|
477
813
|
|
|
478
814
|
/**
|
|
479
|
-
* The unique request ID,
|
|
815
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
480
816
|
* @type {string || null}
|
|
481
817
|
*/
|
|
482
818
|
this.RequestId = null;
|
|
@@ -573,7 +909,7 @@ class DescribeRequestDataResponse extends AbstractModel {
|
|
|
573
909
|
this.Interval = null;
|
|
574
910
|
|
|
575
911
|
/**
|
|
576
|
-
* The unique request ID,
|
|
912
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
577
913
|
* @type {string || null}
|
|
578
914
|
*/
|
|
579
915
|
this.RequestId = null;
|
|
@@ -891,7 +1227,7 @@ class ModifyPrivateZoneResponse extends AbstractModel {
|
|
|
891
1227
|
super();
|
|
892
1228
|
|
|
893
1229
|
/**
|
|
894
|
-
* The unique request ID,
|
|
1230
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
895
1231
|
* @type {string || null}
|
|
896
1232
|
*/
|
|
897
1233
|
this.RequestId = null;
|
|
@@ -911,30 +1247,30 @@ class ModifyPrivateZoneResponse extends AbstractModel {
|
|
|
911
1247
|
}
|
|
912
1248
|
|
|
913
1249
|
/**
|
|
914
|
-
*
|
|
1250
|
+
* DescribePrivateZoneList request structure.
|
|
915
1251
|
* @class
|
|
916
1252
|
*/
|
|
917
|
-
class
|
|
1253
|
+
class DescribePrivateZoneListRequest extends AbstractModel {
|
|
918
1254
|
constructor(){
|
|
919
1255
|
super();
|
|
920
1256
|
|
|
921
1257
|
/**
|
|
922
|
-
*
|
|
923
|
-
* @type {
|
|
1258
|
+
* Pagination offset, starting from 0
|
|
1259
|
+
* @type {number || null}
|
|
924
1260
|
*/
|
|
925
|
-
this.
|
|
1261
|
+
this.Offset = null;
|
|
926
1262
|
|
|
927
1263
|
/**
|
|
928
|
-
*
|
|
929
|
-
* @type {
|
|
1264
|
+
* Number of entries per page. Maximum value: 100. Default value: 20
|
|
1265
|
+
* @type {number || null}
|
|
930
1266
|
*/
|
|
931
|
-
this.
|
|
1267
|
+
this.Limit = null;
|
|
932
1268
|
|
|
933
1269
|
/**
|
|
934
|
-
*
|
|
935
|
-
* @type {
|
|
1270
|
+
* Filter parameter
|
|
1271
|
+
* @type {Array.<Filter> || null}
|
|
936
1272
|
*/
|
|
937
|
-
this.
|
|
1273
|
+
this.Filters = null;
|
|
938
1274
|
|
|
939
1275
|
}
|
|
940
1276
|
|
|
@@ -945,7 +1281,8 @@ class DescribeRequestDataRequest extends AbstractModel {
|
|
|
945
1281
|
if (!params) {
|
|
946
1282
|
return;
|
|
947
1283
|
}
|
|
948
|
-
this.
|
|
1284
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
1285
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
949
1286
|
|
|
950
1287
|
if (params.Filters) {
|
|
951
1288
|
this.Filters = new Array();
|
|
@@ -955,7 +1292,6 @@ class DescribeRequestDataRequest extends AbstractModel {
|
|
|
955
1292
|
this.Filters.push(obj);
|
|
956
1293
|
}
|
|
957
1294
|
}
|
|
958
|
-
this.TimeRangeEnd = 'TimeRangeEnd' in params ? params.TimeRangeEnd : null;
|
|
959
1295
|
|
|
960
1296
|
}
|
|
961
1297
|
}
|
|
@@ -1051,7 +1387,7 @@ class CreatePrivateZoneResponse extends AbstractModel {
|
|
|
1051
1387
|
this.Domain = null;
|
|
1052
1388
|
|
|
1053
1389
|
/**
|
|
1054
|
-
* The unique request ID,
|
|
1390
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1055
1391
|
* @type {string || null}
|
|
1056
1392
|
*/
|
|
1057
1393
|
this.RequestId = null;
|
|
@@ -1105,7 +1441,7 @@ class DescribeDashboardResponse extends AbstractModel {
|
|
|
1105
1441
|
this.FlowUsage = null;
|
|
1106
1442
|
|
|
1107
1443
|
/**
|
|
1108
|
-
* The unique request ID,
|
|
1444
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1109
1445
|
* @type {string || null}
|
|
1110
1446
|
*/
|
|
1111
1447
|
this.RequestId = null;
|
|
@@ -1151,7 +1487,7 @@ class CreatePrivateZoneRecordResponse extends AbstractModel {
|
|
|
1151
1487
|
this.RecordId = null;
|
|
1152
1488
|
|
|
1153
1489
|
/**
|
|
1154
|
-
* The unique request ID,
|
|
1490
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1155
1491
|
* @type {string || null}
|
|
1156
1492
|
*/
|
|
1157
1493
|
this.RequestId = null;
|
|
@@ -1186,7 +1522,7 @@ class DescribePrivateZoneServiceResponse extends AbstractModel {
|
|
|
1186
1522
|
this.ServiceStatus = null;
|
|
1187
1523
|
|
|
1188
1524
|
/**
|
|
1189
|
-
* The unique request ID,
|
|
1525
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1190
1526
|
* @type {string || null}
|
|
1191
1527
|
*/
|
|
1192
1528
|
this.RequestId = null;
|
|
@@ -1215,7 +1551,7 @@ class CreatePrivateDNSAccountResponse extends AbstractModel {
|
|
|
1215
1551
|
super();
|
|
1216
1552
|
|
|
1217
1553
|
/**
|
|
1218
|
-
* The unique request ID,
|
|
1554
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1219
1555
|
* @type {string || null}
|
|
1220
1556
|
*/
|
|
1221
1557
|
this.RequestId = null;
|
|
@@ -1391,7 +1727,7 @@ class SubscribePrivateZoneServiceResponse extends AbstractModel {
|
|
|
1391
1727
|
this.ServiceStatus = null;
|
|
1392
1728
|
|
|
1393
1729
|
/**
|
|
1394
|
-
* The unique request ID,
|
|
1730
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1395
1731
|
* @type {string || null}
|
|
1396
1732
|
*/
|
|
1397
1733
|
this.RequestId = null;
|
|
@@ -1460,6 +1796,48 @@ class AccountVpcInfoOut extends AbstractModel {
|
|
|
1460
1796
|
}
|
|
1461
1797
|
}
|
|
1462
1798
|
|
|
1799
|
+
/**
|
|
1800
|
+
* DeletePrivateZoneRecord request structure.
|
|
1801
|
+
* @class
|
|
1802
|
+
*/
|
|
1803
|
+
class DeletePrivateZoneRecordRequest extends AbstractModel {
|
|
1804
|
+
constructor(){
|
|
1805
|
+
super();
|
|
1806
|
+
|
|
1807
|
+
/**
|
|
1808
|
+
* Private domain ID
|
|
1809
|
+
* @type {string || null}
|
|
1810
|
+
*/
|
|
1811
|
+
this.ZoneId = null;
|
|
1812
|
+
|
|
1813
|
+
/**
|
|
1814
|
+
* Record ID
|
|
1815
|
+
* @type {string || null}
|
|
1816
|
+
*/
|
|
1817
|
+
this.RecordId = null;
|
|
1818
|
+
|
|
1819
|
+
/**
|
|
1820
|
+
* Array of record IDs. `RecordId` takes precedence.
|
|
1821
|
+
* @type {Array.<string> || null}
|
|
1822
|
+
*/
|
|
1823
|
+
this.RecordIdSet = null;
|
|
1824
|
+
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
/**
|
|
1828
|
+
* @private
|
|
1829
|
+
*/
|
|
1830
|
+
deserialize(params) {
|
|
1831
|
+
if (!params) {
|
|
1832
|
+
return;
|
|
1833
|
+
}
|
|
1834
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
1835
|
+
this.RecordId = 'RecordId' in params ? params.RecordId : null;
|
|
1836
|
+
this.RecordIdSet = 'RecordIdSet' in params ? params.RecordIdSet : null;
|
|
1837
|
+
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1463
1841
|
/**
|
|
1464
1842
|
* Filter parameter
|
|
1465
1843
|
* @class
|
|
@@ -1629,13 +2007,115 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
1629
2007
|
}
|
|
1630
2008
|
|
|
1631
2009
|
/**
|
|
1632
|
-
*
|
|
2010
|
+
* DeletePrivateZoneRecord response structure.
|
|
1633
2011
|
* @class
|
|
1634
2012
|
*/
|
|
1635
|
-
class
|
|
2013
|
+
class DeletePrivateZoneRecordResponse extends AbstractModel {
|
|
1636
2014
|
constructor(){
|
|
1637
2015
|
super();
|
|
1638
2016
|
|
|
2017
|
+
/**
|
|
2018
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2019
|
+
* @type {string || null}
|
|
2020
|
+
*/
|
|
2021
|
+
this.RequestId = null;
|
|
2022
|
+
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
/**
|
|
2026
|
+
* @private
|
|
2027
|
+
*/
|
|
2028
|
+
deserialize(params) {
|
|
2029
|
+
if (!params) {
|
|
2030
|
+
return;
|
|
2031
|
+
}
|
|
2032
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2033
|
+
|
|
2034
|
+
}
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
/**
|
|
2038
|
+
* Private domain information
|
|
2039
|
+
* @class
|
|
2040
|
+
*/
|
|
2041
|
+
class PrivateZone extends AbstractModel {
|
|
2042
|
+
constructor(){
|
|
2043
|
+
super();
|
|
2044
|
+
|
|
2045
|
+
/**
|
|
2046
|
+
* Private domain ID: zone-xxxxxxxx
|
|
2047
|
+
* @type {string || null}
|
|
2048
|
+
*/
|
|
2049
|
+
this.ZoneId = null;
|
|
2050
|
+
|
|
2051
|
+
/**
|
|
2052
|
+
* Domain name owner UIN
|
|
2053
|
+
* @type {number || null}
|
|
2054
|
+
*/
|
|
2055
|
+
this.OwnerUin = null;
|
|
2056
|
+
|
|
2057
|
+
/**
|
|
2058
|
+
* Private domain
|
|
2059
|
+
* @type {string || null}
|
|
2060
|
+
*/
|
|
2061
|
+
this.Domain = null;
|
|
2062
|
+
|
|
2063
|
+
/**
|
|
2064
|
+
* Creation time
|
|
2065
|
+
* @type {string || null}
|
|
2066
|
+
*/
|
|
2067
|
+
this.CreatedOn = null;
|
|
2068
|
+
|
|
2069
|
+
/**
|
|
2070
|
+
* Modification time
|
|
2071
|
+
* @type {string || null}
|
|
2072
|
+
*/
|
|
2073
|
+
this.UpdatedOn = null;
|
|
2074
|
+
|
|
2075
|
+
/**
|
|
2076
|
+
* Number of results
|
|
2077
|
+
* @type {number || null}
|
|
2078
|
+
*/
|
|
2079
|
+
this.RecordCount = null;
|
|
2080
|
+
|
|
2081
|
+
/**
|
|
2082
|
+
* Remarks
|
|
2083
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
2084
|
+
* @type {string || null}
|
|
2085
|
+
*/
|
|
2086
|
+
this.Remark = null;
|
|
2087
|
+
|
|
2088
|
+
/**
|
|
2089
|
+
* List of bound VPCs
|
|
2090
|
+
* @type {Array.<VpcInfo> || null}
|
|
2091
|
+
*/
|
|
2092
|
+
this.VpcSet = null;
|
|
2093
|
+
|
|
2094
|
+
/**
|
|
2095
|
+
* Private domain status. Valid values: ENABLED (DNS enabled); SUSPEND (DNS paused); FROZEN (locked)
|
|
2096
|
+
* @type {string || null}
|
|
2097
|
+
*/
|
|
2098
|
+
this.Status = null;
|
|
2099
|
+
|
|
2100
|
+
/**
|
|
2101
|
+
* Subdomain recursive DNS status. Valid values: ENABLED, DISABLED
|
|
2102
|
+
* @type {string || null}
|
|
2103
|
+
*/
|
|
2104
|
+
this.DnsForwardStatus = null;
|
|
2105
|
+
|
|
2106
|
+
/**
|
|
2107
|
+
* Set of tag key-value pairs
|
|
2108
|
+
* @type {Array.<TagInfo> || null}
|
|
2109
|
+
*/
|
|
2110
|
+
this.Tags = null;
|
|
2111
|
+
|
|
2112
|
+
/**
|
|
2113
|
+
* List of authorized accounts' VPCs associated with the private domain
|
|
2114
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
2115
|
+
* @type {Array.<AccountVpcInfoOutput> || null}
|
|
2116
|
+
*/
|
|
2117
|
+
this.AccountVpcSet = null;
|
|
2118
|
+
|
|
1639
2119
|
}
|
|
1640
2120
|
|
|
1641
2121
|
/**
|
|
@@ -1645,6 +2125,42 @@ class DescribePrivateZoneServiceRequest extends AbstractModel {
|
|
|
1645
2125
|
if (!params) {
|
|
1646
2126
|
return;
|
|
1647
2127
|
}
|
|
2128
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
2129
|
+
this.OwnerUin = 'OwnerUin' in params ? params.OwnerUin : null;
|
|
2130
|
+
this.Domain = 'Domain' in params ? params.Domain : null;
|
|
2131
|
+
this.CreatedOn = 'CreatedOn' in params ? params.CreatedOn : null;
|
|
2132
|
+
this.UpdatedOn = 'UpdatedOn' in params ? params.UpdatedOn : null;
|
|
2133
|
+
this.RecordCount = 'RecordCount' in params ? params.RecordCount : null;
|
|
2134
|
+
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
2135
|
+
|
|
2136
|
+
if (params.VpcSet) {
|
|
2137
|
+
this.VpcSet = new Array();
|
|
2138
|
+
for (let z in params.VpcSet) {
|
|
2139
|
+
let obj = new VpcInfo();
|
|
2140
|
+
obj.deserialize(params.VpcSet[z]);
|
|
2141
|
+
this.VpcSet.push(obj);
|
|
2142
|
+
}
|
|
2143
|
+
}
|
|
2144
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
2145
|
+
this.DnsForwardStatus = 'DnsForwardStatus' in params ? params.DnsForwardStatus : null;
|
|
2146
|
+
|
|
2147
|
+
if (params.Tags) {
|
|
2148
|
+
this.Tags = new Array();
|
|
2149
|
+
for (let z in params.Tags) {
|
|
2150
|
+
let obj = new TagInfo();
|
|
2151
|
+
obj.deserialize(params.Tags[z]);
|
|
2152
|
+
this.Tags.push(obj);
|
|
2153
|
+
}
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
if (params.AccountVpcSet) {
|
|
2157
|
+
this.AccountVpcSet = new Array();
|
|
2158
|
+
for (let z in params.AccountVpcSet) {
|
|
2159
|
+
let obj = new AccountVpcInfoOutput();
|
|
2160
|
+
obj.deserialize(params.AccountVpcSet[z]);
|
|
2161
|
+
this.AccountVpcSet.push(obj);
|
|
2162
|
+
}
|
|
2163
|
+
}
|
|
1648
2164
|
|
|
1649
2165
|
}
|
|
1650
2166
|
}
|
|
@@ -1936,7 +2452,7 @@ class ModifyPrivateZoneVpcResponse extends AbstractModel {
|
|
|
1936
2452
|
this.AccountVpcSet = null;
|
|
1937
2453
|
|
|
1938
2454
|
/**
|
|
1939
|
-
* The unique request ID,
|
|
2455
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1940
2456
|
* @type {string || null}
|
|
1941
2457
|
*/
|
|
1942
2458
|
this.RequestId = null;
|
|
@@ -1979,12 +2495,18 @@ module.exports = {
|
|
|
1979
2495
|
ModifyPrivateZoneVpcRequest: ModifyPrivateZoneVpcRequest,
|
|
1980
2496
|
DescribeAuditLogResponse: DescribeAuditLogResponse,
|
|
1981
2497
|
DescribePrivateDNSAccountListResponse: DescribePrivateDNSAccountListResponse,
|
|
2498
|
+
DescribePrivateZoneRecordListRequest: DescribePrivateZoneRecordListRequest,
|
|
1982
2499
|
PrivateDNSAccount: PrivateDNSAccount,
|
|
2500
|
+
DescribePrivateZoneRecordListResponse: DescribePrivateZoneRecordListResponse,
|
|
2501
|
+
DescribePrivateZoneListResponse: DescribePrivateZoneListResponse,
|
|
1983
2502
|
AccountVpcInfoOutput: AccountVpcInfoOutput,
|
|
1984
2503
|
ModifyRecordsStatusResponse: ModifyRecordsStatusResponse,
|
|
1985
2504
|
DatePoint: DatePoint,
|
|
1986
2505
|
DescribeAccountVpcListResponse: DescribeAccountVpcListResponse,
|
|
2506
|
+
DescribePrivateZoneServiceRequest: DescribePrivateZoneServiceRequest,
|
|
2507
|
+
PrivateZoneRecord: PrivateZoneRecord,
|
|
1987
2508
|
AuditLogInfo: AuditLogInfo,
|
|
2509
|
+
DescribeRequestDataRequest: DescribeRequestDataRequest,
|
|
1988
2510
|
ModifyPrivateZoneRecordResponse: ModifyPrivateZoneRecordResponse,
|
|
1989
2511
|
DescribeAccountVpcListRequest: DescribeAccountVpcListRequest,
|
|
1990
2512
|
DescribeRequestDataResponse: DescribeRequestDataResponse,
|
|
@@ -1994,7 +2516,7 @@ module.exports = {
|
|
|
1994
2516
|
VpcInfo: VpcInfo,
|
|
1995
2517
|
AccountVpcInfo: AccountVpcInfo,
|
|
1996
2518
|
ModifyPrivateZoneResponse: ModifyPrivateZoneResponse,
|
|
1997
|
-
|
|
2519
|
+
DescribePrivateZoneListRequest: DescribePrivateZoneListRequest,
|
|
1998
2520
|
SubscribePrivateZoneServiceRequest: SubscribePrivateZoneServiceRequest,
|
|
1999
2521
|
ModifyPrivateZoneRequest: ModifyPrivateZoneRequest,
|
|
2000
2522
|
CreatePrivateZoneResponse: CreatePrivateZoneResponse,
|
|
@@ -2007,11 +2529,13 @@ module.exports = {
|
|
|
2007
2529
|
AuditLog: AuditLog,
|
|
2008
2530
|
SubscribePrivateZoneServiceResponse: SubscribePrivateZoneServiceResponse,
|
|
2009
2531
|
AccountVpcInfoOut: AccountVpcInfoOut,
|
|
2532
|
+
DeletePrivateZoneRecordRequest: DeletePrivateZoneRecordRequest,
|
|
2010
2533
|
Filter: Filter,
|
|
2011
2534
|
ModifyRecordsStatusRequest: ModifyRecordsStatusRequest,
|
|
2012
2535
|
CreatePrivateDNSAccountRequest: CreatePrivateDNSAccountRequest,
|
|
2013
2536
|
MetricData: MetricData,
|
|
2014
|
-
|
|
2537
|
+
DeletePrivateZoneRecordResponse: DeletePrivateZoneRecordResponse,
|
|
2538
|
+
PrivateZone: PrivateZone,
|
|
2015
2539
|
CreatePrivateZoneRecordRequest: CreatePrivateZoneRecordRequest,
|
|
2016
2540
|
DescribeQuotaUsageRequest: DescribeQuotaUsageRequest,
|
|
2017
2541
|
ModifyPrivateZoneRecordRequest: ModifyPrivateZoneRecordRequest,
|
|
@@ -20,12 +20,18 @@ const DescribeQuotaUsageResponse = models.DescribeQuotaUsageResponse;
|
|
|
20
20
|
const ModifyPrivateZoneVpcRequest = models.ModifyPrivateZoneVpcRequest;
|
|
21
21
|
const DescribeAuditLogResponse = models.DescribeAuditLogResponse;
|
|
22
22
|
const DescribePrivateDNSAccountListResponse = models.DescribePrivateDNSAccountListResponse;
|
|
23
|
+
const DescribePrivateZoneRecordListRequest = models.DescribePrivateZoneRecordListRequest;
|
|
23
24
|
const PrivateDNSAccount = models.PrivateDNSAccount;
|
|
25
|
+
const DescribePrivateZoneRecordListResponse = models.DescribePrivateZoneRecordListResponse;
|
|
26
|
+
const DescribePrivateZoneListResponse = models.DescribePrivateZoneListResponse;
|
|
24
27
|
const AccountVpcInfoOutput = models.AccountVpcInfoOutput;
|
|
25
28
|
const ModifyRecordsStatusResponse = models.ModifyRecordsStatusResponse;
|
|
26
29
|
const DatePoint = models.DatePoint;
|
|
27
30
|
const DescribeAccountVpcListResponse = models.DescribeAccountVpcListResponse;
|
|
31
|
+
const DescribePrivateZoneServiceRequest = models.DescribePrivateZoneServiceRequest;
|
|
32
|
+
const PrivateZoneRecord = models.PrivateZoneRecord;
|
|
28
33
|
const AuditLogInfo = models.AuditLogInfo;
|
|
34
|
+
const DescribeRequestDataRequest = models.DescribeRequestDataRequest;
|
|
29
35
|
const ModifyPrivateZoneRecordResponse = models.ModifyPrivateZoneRecordResponse;
|
|
30
36
|
const DescribeAccountVpcListRequest = models.DescribeAccountVpcListRequest;
|
|
31
37
|
const DescribeRequestDataResponse = models.DescribeRequestDataResponse;
|
|
@@ -35,7 +41,7 @@ const CreatePrivateZoneRequest = models.CreatePrivateZoneRequest;
|
|
|
35
41
|
const VpcInfo = models.VpcInfo;
|
|
36
42
|
const AccountVpcInfo = models.AccountVpcInfo;
|
|
37
43
|
const ModifyPrivateZoneResponse = models.ModifyPrivateZoneResponse;
|
|
38
|
-
const
|
|
44
|
+
const DescribePrivateZoneListRequest = models.DescribePrivateZoneListRequest;
|
|
39
45
|
const SubscribePrivateZoneServiceRequest = models.SubscribePrivateZoneServiceRequest;
|
|
40
46
|
const ModifyPrivateZoneRequest = models.ModifyPrivateZoneRequest;
|
|
41
47
|
const CreatePrivateZoneResponse = models.CreatePrivateZoneResponse;
|
|
@@ -48,11 +54,13 @@ const DescribeDashboardRequest = models.DescribeDashboardRequest;
|
|
|
48
54
|
const AuditLog = models.AuditLog;
|
|
49
55
|
const SubscribePrivateZoneServiceResponse = models.SubscribePrivateZoneServiceResponse;
|
|
50
56
|
const AccountVpcInfoOut = models.AccountVpcInfoOut;
|
|
57
|
+
const DeletePrivateZoneRecordRequest = models.DeletePrivateZoneRecordRequest;
|
|
51
58
|
const Filter = models.Filter;
|
|
52
59
|
const ModifyRecordsStatusRequest = models.ModifyRecordsStatusRequest;
|
|
53
60
|
const CreatePrivateDNSAccountRequest = models.CreatePrivateDNSAccountRequest;
|
|
54
61
|
const MetricData = models.MetricData;
|
|
55
|
-
const
|
|
62
|
+
const DeletePrivateZoneRecordResponse = models.DeletePrivateZoneRecordResponse;
|
|
63
|
+
const PrivateZone = models.PrivateZone;
|
|
56
64
|
const CreatePrivateZoneRecordRequest = models.CreatePrivateZoneRecordRequest;
|
|
57
65
|
const DescribeQuotaUsageRequest = models.DescribeQuotaUsageRequest;
|
|
58
66
|
const ModifyPrivateZoneRecordRequest = models.ModifyPrivateZoneRecordRequest;
|
|
@@ -82,6 +90,17 @@ class PrivatednsClient extends AbstractClient {
|
|
|
82
90
|
this.request("CreatePrivateDNSAccount", req, resp, cb);
|
|
83
91
|
}
|
|
84
92
|
|
|
93
|
+
/**
|
|
94
|
+
* This API is used to modify a DNS record for a private domain.
|
|
95
|
+
* @param {ModifyPrivateZoneRecordRequest} req
|
|
96
|
+
* @param {function(string, ModifyPrivateZoneRecordResponse):void} cb
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
ModifyPrivateZoneRecord(req, cb) {
|
|
100
|
+
let resp = new ModifyPrivateZoneRecordResponse();
|
|
101
|
+
this.request("ModifyPrivateZoneRecord", req, resp, cb);
|
|
102
|
+
}
|
|
103
|
+
|
|
85
104
|
/**
|
|
86
105
|
* This API is used to get the VPC list of a Private DNS account.
|
|
87
106
|
* @param {DescribeAccountVpcListRequest} req
|
|
@@ -94,14 +113,14 @@ class PrivatednsClient extends AbstractClient {
|
|
|
94
113
|
}
|
|
95
114
|
|
|
96
115
|
/**
|
|
97
|
-
* This API is used to
|
|
98
|
-
* @param {
|
|
99
|
-
* @param {function(string,
|
|
116
|
+
* This API is used to get the list of records for a private domain.
|
|
117
|
+
* @param {DescribePrivateZoneRecordListRequest} req
|
|
118
|
+
* @param {function(string, DescribePrivateZoneRecordListResponse):void} cb
|
|
100
119
|
* @public
|
|
101
120
|
*/
|
|
102
|
-
|
|
103
|
-
let resp = new
|
|
104
|
-
this.request("
|
|
121
|
+
DescribePrivateZoneRecordList(req, cb) {
|
|
122
|
+
let resp = new DescribePrivateZoneRecordListResponse();
|
|
123
|
+
this.request("DescribePrivateZoneRecordList", req, resp, cb);
|
|
105
124
|
}
|
|
106
125
|
|
|
107
126
|
/**
|
|
@@ -171,14 +190,25 @@ class PrivatednsClient extends AbstractClient {
|
|
|
171
190
|
}
|
|
172
191
|
|
|
173
192
|
/**
|
|
174
|
-
* This API is used to
|
|
175
|
-
* @param {
|
|
176
|
-
* @param {function(string,
|
|
193
|
+
* This API is used to get the list of private domains.
|
|
194
|
+
* @param {DescribePrivateZoneListRequest} req
|
|
195
|
+
* @param {function(string, DescribePrivateZoneListResponse):void} cb
|
|
177
196
|
* @public
|
|
178
197
|
*/
|
|
179
|
-
|
|
180
|
-
let resp = new
|
|
181
|
-
this.request("
|
|
198
|
+
DescribePrivateZoneList(req, cb) {
|
|
199
|
+
let resp = new DescribePrivateZoneListResponse();
|
|
200
|
+
this.request("DescribePrivateZoneList", req, resp, cb);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* This API is used to modify a private domain.
|
|
205
|
+
* @param {ModifyPrivateZoneRequest} req
|
|
206
|
+
* @param {function(string, ModifyPrivateZoneResponse):void} cb
|
|
207
|
+
* @public
|
|
208
|
+
*/
|
|
209
|
+
ModifyPrivateZone(req, cb) {
|
|
210
|
+
let resp = new ModifyPrivateZoneResponse();
|
|
211
|
+
this.request("ModifyPrivateZone", req, resp, cb);
|
|
182
212
|
}
|
|
183
213
|
|
|
184
214
|
/**
|
|
@@ -214,6 +244,17 @@ class PrivatednsClient extends AbstractClient {
|
|
|
214
244
|
this.request("ModifyPrivateZoneVpc", req, resp, cb);
|
|
215
245
|
}
|
|
216
246
|
|
|
247
|
+
/**
|
|
248
|
+
* This API is used to delete a DNS record for a private domain.
|
|
249
|
+
* @param {DeletePrivateZoneRecordRequest} req
|
|
250
|
+
* @param {function(string, DeletePrivateZoneRecordResponse):void} cb
|
|
251
|
+
* @public
|
|
252
|
+
*/
|
|
253
|
+
DeletePrivateZoneRecord(req, cb) {
|
|
254
|
+
let resp = new DeletePrivateZoneRecordResponse();
|
|
255
|
+
this.request("DeletePrivateZoneRecord", req, resp, cb);
|
|
256
|
+
}
|
|
257
|
+
|
|
217
258
|
/**
|
|
218
259
|
* This API is used to get the DNS request volume of a private domain.
|
|
219
260
|
* @param {DescribeRequestDataRequest} req
|