@alicloud/dds20151201 3.6.6 → 3.6.9
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/dist/client.d.ts +120 -64
- package/dist/client.js +266 -245
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +388 -302
package/dist/client.js
CHANGED
|
@@ -76,12 +76,14 @@ class AllocateNodePrivateNetworkAddressResponse extends $tea.Model {
|
|
|
76
76
|
static names() {
|
|
77
77
|
return {
|
|
78
78
|
headers: 'headers',
|
|
79
|
+
statusCode: 'statusCode',
|
|
79
80
|
body: 'body',
|
|
80
81
|
};
|
|
81
82
|
}
|
|
82
83
|
static types() {
|
|
83
84
|
return {
|
|
84
85
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
86
|
+
statusCode: 'number',
|
|
85
87
|
body: AllocateNodePrivateNetworkAddressResponseBody,
|
|
86
88
|
};
|
|
87
89
|
}
|
|
@@ -138,12 +140,14 @@ class AllocatePublicNetworkAddressResponse extends $tea.Model {
|
|
|
138
140
|
static names() {
|
|
139
141
|
return {
|
|
140
142
|
headers: 'headers',
|
|
143
|
+
statusCode: 'statusCode',
|
|
141
144
|
body: 'body',
|
|
142
145
|
};
|
|
143
146
|
}
|
|
144
147
|
static types() {
|
|
145
148
|
return {
|
|
146
149
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
150
|
+
statusCode: 'number',
|
|
147
151
|
body: AllocatePublicNetworkAddressResponseBody,
|
|
148
152
|
};
|
|
149
153
|
}
|
|
@@ -204,12 +208,14 @@ class CheckCloudResourceAuthorizedResponse extends $tea.Model {
|
|
|
204
208
|
static names() {
|
|
205
209
|
return {
|
|
206
210
|
headers: 'headers',
|
|
211
|
+
statusCode: 'statusCode',
|
|
207
212
|
body: 'body',
|
|
208
213
|
};
|
|
209
214
|
}
|
|
210
215
|
static types() {
|
|
211
216
|
return {
|
|
212
217
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
218
|
+
statusCode: 'number',
|
|
213
219
|
body: CheckCloudResourceAuthorizedResponseBody,
|
|
214
220
|
};
|
|
215
221
|
}
|
|
@@ -276,12 +282,14 @@ class CheckRecoveryConditionResponse extends $tea.Model {
|
|
|
276
282
|
static names() {
|
|
277
283
|
return {
|
|
278
284
|
headers: 'headers',
|
|
285
|
+
statusCode: 'statusCode',
|
|
279
286
|
body: 'body',
|
|
280
287
|
};
|
|
281
288
|
}
|
|
282
289
|
static types() {
|
|
283
290
|
return {
|
|
284
291
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
292
|
+
statusCode: 'number',
|
|
285
293
|
body: CheckRecoveryConditionResponseBody,
|
|
286
294
|
};
|
|
287
295
|
}
|
|
@@ -340,12 +348,14 @@ class CreateBackupResponse extends $tea.Model {
|
|
|
340
348
|
static names() {
|
|
341
349
|
return {
|
|
342
350
|
headers: 'headers',
|
|
351
|
+
statusCode: 'statusCode',
|
|
343
352
|
body: 'body',
|
|
344
353
|
};
|
|
345
354
|
}
|
|
346
355
|
static types() {
|
|
347
356
|
return {
|
|
348
357
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
358
|
+
statusCode: 'number',
|
|
349
359
|
body: CreateBackupResponseBody,
|
|
350
360
|
};
|
|
351
361
|
}
|
|
@@ -386,6 +396,7 @@ class CreateDBInstanceRequest extends $tea.Model {
|
|
|
386
396
|
securityToken: 'SecurityToken',
|
|
387
397
|
srcDBInstanceId: 'SrcDBInstanceId',
|
|
388
398
|
storageEngine: 'StorageEngine',
|
|
399
|
+
storageType: 'StorageType',
|
|
389
400
|
vSwitchId: 'VSwitchId',
|
|
390
401
|
vpcId: 'VpcId',
|
|
391
402
|
zoneId: 'ZoneId',
|
|
@@ -422,6 +433,7 @@ class CreateDBInstanceRequest extends $tea.Model {
|
|
|
422
433
|
securityToken: 'string',
|
|
423
434
|
srcDBInstanceId: 'string',
|
|
424
435
|
storageEngine: 'string',
|
|
436
|
+
storageType: 'string',
|
|
425
437
|
vSwitchId: 'string',
|
|
426
438
|
vpcId: 'string',
|
|
427
439
|
zoneId: 'string',
|
|
@@ -456,12 +468,14 @@ class CreateDBInstanceResponse extends $tea.Model {
|
|
|
456
468
|
static names() {
|
|
457
469
|
return {
|
|
458
470
|
headers: 'headers',
|
|
471
|
+
statusCode: 'statusCode',
|
|
459
472
|
body: 'body',
|
|
460
473
|
};
|
|
461
474
|
}
|
|
462
475
|
static types() {
|
|
463
476
|
return {
|
|
464
477
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
478
|
+
statusCode: 'number',
|
|
465
479
|
body: CreateDBInstanceResponseBody,
|
|
466
480
|
};
|
|
467
481
|
}
|
|
@@ -473,6 +487,8 @@ class CreateNodeRequest extends $tea.Model {
|
|
|
473
487
|
}
|
|
474
488
|
static names() {
|
|
475
489
|
return {
|
|
490
|
+
accountName: 'AccountName',
|
|
491
|
+
accountPassword: 'AccountPassword',
|
|
476
492
|
autoPay: 'AutoPay',
|
|
477
493
|
businessInfo: 'BusinessInfo',
|
|
478
494
|
clientToken: 'ClientToken',
|
|
@@ -487,10 +503,13 @@ class CreateNodeRequest extends $tea.Model {
|
|
|
487
503
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
488
504
|
resourceOwnerId: 'ResourceOwnerId',
|
|
489
505
|
securityToken: 'SecurityToken',
|
|
506
|
+
shardDirect: 'ShardDirect',
|
|
490
507
|
};
|
|
491
508
|
}
|
|
492
509
|
static types() {
|
|
493
510
|
return {
|
|
511
|
+
accountName: 'string',
|
|
512
|
+
accountPassword: 'string',
|
|
494
513
|
autoPay: 'boolean',
|
|
495
514
|
businessInfo: 'string',
|
|
496
515
|
clientToken: 'string',
|
|
@@ -505,6 +524,7 @@ class CreateNodeRequest extends $tea.Model {
|
|
|
505
524
|
resourceOwnerAccount: 'string',
|
|
506
525
|
resourceOwnerId: 'number',
|
|
507
526
|
securityToken: 'string',
|
|
527
|
+
shardDirect: 'boolean',
|
|
508
528
|
};
|
|
509
529
|
}
|
|
510
530
|
}
|
|
@@ -536,12 +556,14 @@ class CreateNodeResponse extends $tea.Model {
|
|
|
536
556
|
static names() {
|
|
537
557
|
return {
|
|
538
558
|
headers: 'headers',
|
|
559
|
+
statusCode: 'statusCode',
|
|
539
560
|
body: 'body',
|
|
540
561
|
};
|
|
541
562
|
}
|
|
542
563
|
static types() {
|
|
543
564
|
return {
|
|
544
565
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
566
|
+
statusCode: 'number',
|
|
545
567
|
body: CreateNodeResponseBody,
|
|
546
568
|
};
|
|
547
569
|
}
|
|
@@ -553,6 +575,8 @@ class CreateNodeBatchRequest extends $tea.Model {
|
|
|
553
575
|
}
|
|
554
576
|
static names() {
|
|
555
577
|
return {
|
|
578
|
+
accountName: 'AccountName',
|
|
579
|
+
accountPassword: 'AccountPassword',
|
|
556
580
|
autoPay: 'AutoPay',
|
|
557
581
|
businessInfo: 'BusinessInfo',
|
|
558
582
|
clientToken: 'ClientToken',
|
|
@@ -565,10 +589,13 @@ class CreateNodeBatchRequest extends $tea.Model {
|
|
|
565
589
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
566
590
|
resourceOwnerId: 'ResourceOwnerId',
|
|
567
591
|
securityToken: 'SecurityToken',
|
|
592
|
+
shardDirect: 'ShardDirect',
|
|
568
593
|
};
|
|
569
594
|
}
|
|
570
595
|
static types() {
|
|
571
596
|
return {
|
|
597
|
+
accountName: 'string',
|
|
598
|
+
accountPassword: 'string',
|
|
572
599
|
autoPay: 'boolean',
|
|
573
600
|
businessInfo: 'string',
|
|
574
601
|
clientToken: 'string',
|
|
@@ -581,6 +608,7 @@ class CreateNodeBatchRequest extends $tea.Model {
|
|
|
581
608
|
resourceOwnerAccount: 'string',
|
|
582
609
|
resourceOwnerId: 'number',
|
|
583
610
|
securityToken: 'string',
|
|
611
|
+
shardDirect: 'boolean',
|
|
584
612
|
};
|
|
585
613
|
}
|
|
586
614
|
}
|
|
@@ -612,113 +640,19 @@ class CreateNodeBatchResponse extends $tea.Model {
|
|
|
612
640
|
static names() {
|
|
613
641
|
return {
|
|
614
642
|
headers: 'headers',
|
|
643
|
+
statusCode: 'statusCode',
|
|
615
644
|
body: 'body',
|
|
616
645
|
};
|
|
617
646
|
}
|
|
618
647
|
static types() {
|
|
619
648
|
return {
|
|
620
649
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
650
|
+
statusCode: 'number',
|
|
621
651
|
body: CreateNodeBatchResponseBody,
|
|
622
652
|
};
|
|
623
653
|
}
|
|
624
654
|
}
|
|
625
655
|
exports.CreateNodeBatchResponse = CreateNodeBatchResponse;
|
|
626
|
-
class CreateServerlessDBInstanceRequest extends $tea.Model {
|
|
627
|
-
constructor(map) {
|
|
628
|
-
super(map);
|
|
629
|
-
}
|
|
630
|
-
static names() {
|
|
631
|
-
return {
|
|
632
|
-
accountPassword: 'AccountPassword',
|
|
633
|
-
autoRenew: 'AutoRenew',
|
|
634
|
-
capacityUnit: 'CapacityUnit',
|
|
635
|
-
clientToken: 'ClientToken',
|
|
636
|
-
DBInstanceDescription: 'DBInstanceDescription',
|
|
637
|
-
DBInstanceStorage: 'DBInstanceStorage',
|
|
638
|
-
engine: 'Engine',
|
|
639
|
-
engineVersion: 'EngineVersion',
|
|
640
|
-
ownerAccount: 'OwnerAccount',
|
|
641
|
-
ownerId: 'OwnerId',
|
|
642
|
-
period: 'Period',
|
|
643
|
-
periodPriceType: 'PeriodPriceType',
|
|
644
|
-
regionId: 'RegionId',
|
|
645
|
-
resourceGroupId: 'ResourceGroupId',
|
|
646
|
-
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
647
|
-
resourceOwnerId: 'ResourceOwnerId',
|
|
648
|
-
securityIPList: 'SecurityIPList',
|
|
649
|
-
securityToken: 'SecurityToken',
|
|
650
|
-
storageEngine: 'StorageEngine',
|
|
651
|
-
vSwitchId: 'VSwitchId',
|
|
652
|
-
vpcId: 'VpcId',
|
|
653
|
-
zoneId: 'ZoneId',
|
|
654
|
-
};
|
|
655
|
-
}
|
|
656
|
-
static types() {
|
|
657
|
-
return {
|
|
658
|
-
accountPassword: 'string',
|
|
659
|
-
autoRenew: 'string',
|
|
660
|
-
capacityUnit: 'string',
|
|
661
|
-
clientToken: 'string',
|
|
662
|
-
DBInstanceDescription: 'string',
|
|
663
|
-
DBInstanceStorage: 'number',
|
|
664
|
-
engine: 'string',
|
|
665
|
-
engineVersion: 'string',
|
|
666
|
-
ownerAccount: 'string',
|
|
667
|
-
ownerId: 'number',
|
|
668
|
-
period: 'number',
|
|
669
|
-
periodPriceType: 'string',
|
|
670
|
-
regionId: 'string',
|
|
671
|
-
resourceGroupId: 'string',
|
|
672
|
-
resourceOwnerAccount: 'string',
|
|
673
|
-
resourceOwnerId: 'number',
|
|
674
|
-
securityIPList: 'string',
|
|
675
|
-
securityToken: 'string',
|
|
676
|
-
storageEngine: 'string',
|
|
677
|
-
vSwitchId: 'string',
|
|
678
|
-
vpcId: 'string',
|
|
679
|
-
zoneId: 'string',
|
|
680
|
-
};
|
|
681
|
-
}
|
|
682
|
-
}
|
|
683
|
-
exports.CreateServerlessDBInstanceRequest = CreateServerlessDBInstanceRequest;
|
|
684
|
-
class CreateServerlessDBInstanceResponseBody extends $tea.Model {
|
|
685
|
-
constructor(map) {
|
|
686
|
-
super(map);
|
|
687
|
-
}
|
|
688
|
-
static names() {
|
|
689
|
-
return {
|
|
690
|
-
DBInstanceId: 'DBInstanceId',
|
|
691
|
-
orderId: 'OrderId',
|
|
692
|
-
requestId: 'RequestId',
|
|
693
|
-
};
|
|
694
|
-
}
|
|
695
|
-
static types() {
|
|
696
|
-
return {
|
|
697
|
-
DBInstanceId: 'string',
|
|
698
|
-
orderId: 'string',
|
|
699
|
-
requestId: 'string',
|
|
700
|
-
};
|
|
701
|
-
}
|
|
702
|
-
}
|
|
703
|
-
exports.CreateServerlessDBInstanceResponseBody = CreateServerlessDBInstanceResponseBody;
|
|
704
|
-
class CreateServerlessDBInstanceResponse extends $tea.Model {
|
|
705
|
-
constructor(map) {
|
|
706
|
-
super(map);
|
|
707
|
-
}
|
|
708
|
-
static names() {
|
|
709
|
-
return {
|
|
710
|
-
headers: 'headers',
|
|
711
|
-
body: 'body',
|
|
712
|
-
};
|
|
713
|
-
}
|
|
714
|
-
static types() {
|
|
715
|
-
return {
|
|
716
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
717
|
-
body: CreateServerlessDBInstanceResponseBody,
|
|
718
|
-
};
|
|
719
|
-
}
|
|
720
|
-
}
|
|
721
|
-
exports.CreateServerlessDBInstanceResponse = CreateServerlessDBInstanceResponse;
|
|
722
656
|
class CreateShardingDBInstanceRequest extends $tea.Model {
|
|
723
657
|
constructor(map) {
|
|
724
658
|
super(map);
|
|
@@ -733,6 +667,7 @@ class CreateShardingDBInstanceRequest extends $tea.Model {
|
|
|
733
667
|
DBInstanceDescription: 'DBInstanceDescription',
|
|
734
668
|
engine: 'Engine',
|
|
735
669
|
engineVersion: 'EngineVersion',
|
|
670
|
+
hiddenZoneId: 'HiddenZoneId',
|
|
736
671
|
mongos: 'Mongos',
|
|
737
672
|
networkType: 'NetworkType',
|
|
738
673
|
ownerAccount: 'OwnerAccount',
|
|
@@ -745,6 +680,7 @@ class CreateShardingDBInstanceRequest extends $tea.Model {
|
|
|
745
680
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
746
681
|
resourceOwnerId: 'ResourceOwnerId',
|
|
747
682
|
restoreTime: 'RestoreTime',
|
|
683
|
+
secondaryZoneId: 'SecondaryZoneId',
|
|
748
684
|
securityIPList: 'SecurityIPList',
|
|
749
685
|
securityToken: 'SecurityToken',
|
|
750
686
|
srcDBInstanceId: 'SrcDBInstanceId',
|
|
@@ -764,6 +700,7 @@ class CreateShardingDBInstanceRequest extends $tea.Model {
|
|
|
764
700
|
DBInstanceDescription: 'string',
|
|
765
701
|
engine: 'string',
|
|
766
702
|
engineVersion: 'string',
|
|
703
|
+
hiddenZoneId: 'string',
|
|
767
704
|
mongos: { 'type': 'array', 'itemType': CreateShardingDBInstanceRequestMongos },
|
|
768
705
|
networkType: 'string',
|
|
769
706
|
ownerAccount: 'string',
|
|
@@ -776,6 +713,7 @@ class CreateShardingDBInstanceRequest extends $tea.Model {
|
|
|
776
713
|
resourceOwnerAccount: 'string',
|
|
777
714
|
resourceOwnerId: 'number',
|
|
778
715
|
restoreTime: 'string',
|
|
716
|
+
secondaryZoneId: 'string',
|
|
779
717
|
securityIPList: 'string',
|
|
780
718
|
securityToken: 'string',
|
|
781
719
|
srcDBInstanceId: 'string',
|
|
@@ -814,12 +752,14 @@ class CreateShardingDBInstanceResponse extends $tea.Model {
|
|
|
814
752
|
static names() {
|
|
815
753
|
return {
|
|
816
754
|
headers: 'headers',
|
|
755
|
+
statusCode: 'statusCode',
|
|
817
756
|
body: 'body',
|
|
818
757
|
};
|
|
819
758
|
}
|
|
820
759
|
static types() {
|
|
821
760
|
return {
|
|
822
761
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
762
|
+
statusCode: 'number',
|
|
823
763
|
body: CreateShardingDBInstanceResponseBody,
|
|
824
764
|
};
|
|
825
765
|
}
|
|
@@ -876,12 +816,14 @@ class DeleteDBInstanceResponse extends $tea.Model {
|
|
|
876
816
|
static names() {
|
|
877
817
|
return {
|
|
878
818
|
headers: 'headers',
|
|
819
|
+
statusCode: 'statusCode',
|
|
879
820
|
body: 'body',
|
|
880
821
|
};
|
|
881
822
|
}
|
|
882
823
|
static types() {
|
|
883
824
|
return {
|
|
884
825
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
826
|
+
statusCode: 'number',
|
|
885
827
|
body: DeleteDBInstanceResponseBody,
|
|
886
828
|
};
|
|
887
829
|
}
|
|
@@ -944,12 +886,14 @@ class DeleteNodeResponse extends $tea.Model {
|
|
|
944
886
|
static names() {
|
|
945
887
|
return {
|
|
946
888
|
headers: 'headers',
|
|
889
|
+
statusCode: 'statusCode',
|
|
947
890
|
body: 'body',
|
|
948
891
|
};
|
|
949
892
|
}
|
|
950
893
|
static types() {
|
|
951
894
|
return {
|
|
952
895
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
896
|
+
statusCode: 'number',
|
|
953
897
|
body: DeleteNodeResponseBody,
|
|
954
898
|
};
|
|
955
899
|
}
|
|
@@ -1008,12 +952,14 @@ class DescribeAccountsResponse extends $tea.Model {
|
|
|
1008
952
|
static names() {
|
|
1009
953
|
return {
|
|
1010
954
|
headers: 'headers',
|
|
955
|
+
statusCode: 'statusCode',
|
|
1011
956
|
body: 'body',
|
|
1012
957
|
};
|
|
1013
958
|
}
|
|
1014
959
|
static types() {
|
|
1015
960
|
return {
|
|
1016
961
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
962
|
+
statusCode: 'number',
|
|
1017
963
|
body: DescribeAccountsResponseBody,
|
|
1018
964
|
};
|
|
1019
965
|
}
|
|
@@ -1072,12 +1018,14 @@ class DescribeActiveOperationTaskCountResponse extends $tea.Model {
|
|
|
1072
1018
|
static names() {
|
|
1073
1019
|
return {
|
|
1074
1020
|
headers: 'headers',
|
|
1021
|
+
statusCode: 'statusCode',
|
|
1075
1022
|
body: 'body',
|
|
1076
1023
|
};
|
|
1077
1024
|
}
|
|
1078
1025
|
static types() {
|
|
1079
1026
|
return {
|
|
1080
1027
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1028
|
+
statusCode: 'number',
|
|
1081
1029
|
body: DescribeActiveOperationTaskCountResponseBody,
|
|
1082
1030
|
};
|
|
1083
1031
|
}
|
|
@@ -1136,12 +1084,14 @@ class DescribeActiveOperationTaskTypeResponse extends $tea.Model {
|
|
|
1136
1084
|
static names() {
|
|
1137
1085
|
return {
|
|
1138
1086
|
headers: 'headers',
|
|
1087
|
+
statusCode: 'statusCode',
|
|
1139
1088
|
body: 'body',
|
|
1140
1089
|
};
|
|
1141
1090
|
}
|
|
1142
1091
|
static types() {
|
|
1143
1092
|
return {
|
|
1144
1093
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1094
|
+
statusCode: 'number',
|
|
1145
1095
|
body: DescribeActiveOperationTaskTypeResponseBody,
|
|
1146
1096
|
};
|
|
1147
1097
|
}
|
|
@@ -1202,12 +1152,14 @@ class DescribeAuditLogFilterResponse extends $tea.Model {
|
|
|
1202
1152
|
static names() {
|
|
1203
1153
|
return {
|
|
1204
1154
|
headers: 'headers',
|
|
1155
|
+
statusCode: 'statusCode',
|
|
1205
1156
|
body: 'body',
|
|
1206
1157
|
};
|
|
1207
1158
|
}
|
|
1208
1159
|
static types() {
|
|
1209
1160
|
return {
|
|
1210
1161
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1162
|
+
statusCode: 'number',
|
|
1211
1163
|
body: DescribeAuditLogFilterResponseBody,
|
|
1212
1164
|
};
|
|
1213
1165
|
}
|
|
@@ -1264,12 +1216,14 @@ class DescribeAuditPolicyResponse extends $tea.Model {
|
|
|
1264
1216
|
static names() {
|
|
1265
1217
|
return {
|
|
1266
1218
|
headers: 'headers',
|
|
1219
|
+
statusCode: 'statusCode',
|
|
1267
1220
|
body: 'body',
|
|
1268
1221
|
};
|
|
1269
1222
|
}
|
|
1270
1223
|
static types() {
|
|
1271
1224
|
return {
|
|
1272
1225
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1226
|
+
statusCode: 'number',
|
|
1273
1227
|
body: DescribeAuditPolicyResponseBody,
|
|
1274
1228
|
};
|
|
1275
1229
|
}
|
|
@@ -1352,12 +1306,14 @@ class DescribeAuditRecordsResponse extends $tea.Model {
|
|
|
1352
1306
|
static names() {
|
|
1353
1307
|
return {
|
|
1354
1308
|
headers: 'headers',
|
|
1309
|
+
statusCode: 'statusCode',
|
|
1355
1310
|
body: 'body',
|
|
1356
1311
|
};
|
|
1357
1312
|
}
|
|
1358
1313
|
static types() {
|
|
1359
1314
|
return {
|
|
1360
1315
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1316
|
+
statusCode: 'number',
|
|
1361
1317
|
body: DescribeAuditRecordsResponseBody,
|
|
1362
1318
|
};
|
|
1363
1319
|
}
|
|
@@ -1414,12 +1370,14 @@ class DescribeAvailableEngineVersionResponse extends $tea.Model {
|
|
|
1414
1370
|
static names() {
|
|
1415
1371
|
return {
|
|
1416
1372
|
headers: 'headers',
|
|
1373
|
+
statusCode: 'statusCode',
|
|
1417
1374
|
body: 'body',
|
|
1418
1375
|
};
|
|
1419
1376
|
}
|
|
1420
1377
|
static types() {
|
|
1421
1378
|
return {
|
|
1422
1379
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1380
|
+
statusCode: 'number',
|
|
1423
1381
|
body: DescribeAvailableEngineVersionResponseBody,
|
|
1424
1382
|
};
|
|
1425
1383
|
}
|
|
@@ -1484,12 +1442,14 @@ class DescribeAvailableResourceResponse extends $tea.Model {
|
|
|
1484
1442
|
static names() {
|
|
1485
1443
|
return {
|
|
1486
1444
|
headers: 'headers',
|
|
1445
|
+
statusCode: 'statusCode',
|
|
1487
1446
|
body: 'body',
|
|
1488
1447
|
};
|
|
1489
1448
|
}
|
|
1490
1449
|
static types() {
|
|
1491
1450
|
return {
|
|
1492
1451
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1452
|
+
statusCode: 'number',
|
|
1493
1453
|
body: DescribeAvailableResourceResponseBody,
|
|
1494
1454
|
};
|
|
1495
1455
|
}
|
|
@@ -1562,12 +1522,14 @@ class DescribeBackupDBsResponse extends $tea.Model {
|
|
|
1562
1522
|
static names() {
|
|
1563
1523
|
return {
|
|
1564
1524
|
headers: 'headers',
|
|
1525
|
+
statusCode: 'statusCode',
|
|
1565
1526
|
body: 'body',
|
|
1566
1527
|
};
|
|
1567
1528
|
}
|
|
1568
1529
|
static types() {
|
|
1569
1530
|
return {
|
|
1570
1531
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1532
|
+
statusCode: 'number',
|
|
1571
1533
|
body: DescribeBackupDBsResponseBody,
|
|
1572
1534
|
};
|
|
1573
1535
|
}
|
|
@@ -1632,12 +1594,14 @@ class DescribeBackupPolicyResponse extends $tea.Model {
|
|
|
1632
1594
|
static names() {
|
|
1633
1595
|
return {
|
|
1634
1596
|
headers: 'headers',
|
|
1597
|
+
statusCode: 'statusCode',
|
|
1635
1598
|
body: 'body',
|
|
1636
1599
|
};
|
|
1637
1600
|
}
|
|
1638
1601
|
static types() {
|
|
1639
1602
|
return {
|
|
1640
1603
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1604
|
+
statusCode: 'number',
|
|
1641
1605
|
body: DescribeBackupPolicyResponseBody,
|
|
1642
1606
|
};
|
|
1643
1607
|
}
|
|
@@ -1712,12 +1676,14 @@ class DescribeBackupsResponse extends $tea.Model {
|
|
|
1712
1676
|
static names() {
|
|
1713
1677
|
return {
|
|
1714
1678
|
headers: 'headers',
|
|
1679
|
+
statusCode: 'statusCode',
|
|
1715
1680
|
body: 'body',
|
|
1716
1681
|
};
|
|
1717
1682
|
}
|
|
1718
1683
|
static types() {
|
|
1719
1684
|
return {
|
|
1720
1685
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1686
|
+
statusCode: 'number',
|
|
1721
1687
|
body: DescribeBackupsResponseBody,
|
|
1722
1688
|
};
|
|
1723
1689
|
}
|
|
@@ -1778,12 +1744,14 @@ class DescribeDBInstanceAttributeResponse extends $tea.Model {
|
|
|
1778
1744
|
static names() {
|
|
1779
1745
|
return {
|
|
1780
1746
|
headers: 'headers',
|
|
1747
|
+
statusCode: 'statusCode',
|
|
1781
1748
|
body: 'body',
|
|
1782
1749
|
};
|
|
1783
1750
|
}
|
|
1784
1751
|
static types() {
|
|
1785
1752
|
return {
|
|
1786
1753
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1754
|
+
statusCode: 'number',
|
|
1787
1755
|
body: DescribeDBInstanceAttributeResponseBody,
|
|
1788
1756
|
};
|
|
1789
1757
|
}
|
|
@@ -1856,12 +1824,14 @@ class DescribeDBInstanceEncryptionKeyResponse extends $tea.Model {
|
|
|
1856
1824
|
static names() {
|
|
1857
1825
|
return {
|
|
1858
1826
|
headers: 'headers',
|
|
1827
|
+
statusCode: 'statusCode',
|
|
1859
1828
|
body: 'body',
|
|
1860
1829
|
};
|
|
1861
1830
|
}
|
|
1862
1831
|
static types() {
|
|
1863
1832
|
return {
|
|
1864
1833
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1834
|
+
statusCode: 'number',
|
|
1865
1835
|
body: DescribeDBInstanceEncryptionKeyResponseBody,
|
|
1866
1836
|
};
|
|
1867
1837
|
}
|
|
@@ -1918,12 +1888,14 @@ class DescribeDBInstanceMonitorResponse extends $tea.Model {
|
|
|
1918
1888
|
static names() {
|
|
1919
1889
|
return {
|
|
1920
1890
|
headers: 'headers',
|
|
1891
|
+
statusCode: 'statusCode',
|
|
1921
1892
|
body: 'body',
|
|
1922
1893
|
};
|
|
1923
1894
|
}
|
|
1924
1895
|
static types() {
|
|
1925
1896
|
return {
|
|
1926
1897
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1898
|
+
statusCode: 'number',
|
|
1927
1899
|
body: DescribeDBInstanceMonitorResponseBody,
|
|
1928
1900
|
};
|
|
1929
1901
|
}
|
|
@@ -1996,12 +1968,14 @@ class DescribeDBInstancePerformanceResponse extends $tea.Model {
|
|
|
1996
1968
|
static names() {
|
|
1997
1969
|
return {
|
|
1998
1970
|
headers: 'headers',
|
|
1971
|
+
statusCode: 'statusCode',
|
|
1999
1972
|
body: 'body',
|
|
2000
1973
|
};
|
|
2001
1974
|
}
|
|
2002
1975
|
static types() {
|
|
2003
1976
|
return {
|
|
2004
1977
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1978
|
+
statusCode: 'number',
|
|
2005
1979
|
body: DescribeDBInstancePerformanceResponseBody,
|
|
2006
1980
|
};
|
|
2007
1981
|
}
|
|
@@ -2062,12 +2036,14 @@ class DescribeDBInstanceSSLResponse extends $tea.Model {
|
|
|
2062
2036
|
static names() {
|
|
2063
2037
|
return {
|
|
2064
2038
|
headers: 'headers',
|
|
2039
|
+
statusCode: 'statusCode',
|
|
2065
2040
|
body: 'body',
|
|
2066
2041
|
};
|
|
2067
2042
|
}
|
|
2068
2043
|
static types() {
|
|
2069
2044
|
return {
|
|
2070
2045
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2046
|
+
statusCode: 'number',
|
|
2071
2047
|
body: DescribeDBInstanceSSLResponseBody,
|
|
2072
2048
|
};
|
|
2073
2049
|
}
|
|
@@ -2124,12 +2100,14 @@ class DescribeDBInstanceTDEInfoResponse extends $tea.Model {
|
|
|
2124
2100
|
static names() {
|
|
2125
2101
|
return {
|
|
2126
2102
|
headers: 'headers',
|
|
2103
|
+
statusCode: 'statusCode',
|
|
2127
2104
|
body: 'body',
|
|
2128
2105
|
};
|
|
2129
2106
|
}
|
|
2130
2107
|
static types() {
|
|
2131
2108
|
return {
|
|
2132
2109
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2110
|
+
statusCode: 'number',
|
|
2133
2111
|
body: DescribeDBInstanceTDEInfoResponseBody,
|
|
2134
2112
|
};
|
|
2135
2113
|
}
|
|
@@ -2232,12 +2210,14 @@ class DescribeDBInstancesResponse extends $tea.Model {
|
|
|
2232
2210
|
static names() {
|
|
2233
2211
|
return {
|
|
2234
2212
|
headers: 'headers',
|
|
2213
|
+
statusCode: 'statusCode',
|
|
2235
2214
|
body: 'body',
|
|
2236
2215
|
};
|
|
2237
2216
|
}
|
|
2238
2217
|
static types() {
|
|
2239
2218
|
return {
|
|
2240
2219
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2220
|
+
statusCode: 'number',
|
|
2241
2221
|
body: DescribeDBInstancesResponseBody,
|
|
2242
2222
|
};
|
|
2243
2223
|
}
|
|
@@ -2318,12 +2298,14 @@ class DescribeDBInstancesOverviewResponse extends $tea.Model {
|
|
|
2318
2298
|
static names() {
|
|
2319
2299
|
return {
|
|
2320
2300
|
headers: 'headers',
|
|
2301
|
+
statusCode: 'statusCode',
|
|
2321
2302
|
body: 'body',
|
|
2322
2303
|
};
|
|
2323
2304
|
}
|
|
2324
2305
|
static types() {
|
|
2325
2306
|
return {
|
|
2326
2307
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2308
|
+
statusCode: 'number',
|
|
2327
2309
|
body: DescribeDBInstancesOverviewResponseBody,
|
|
2328
2310
|
};
|
|
2329
2311
|
}
|
|
@@ -2406,12 +2388,14 @@ class DescribeDedicatedClusterInstanceListResponse extends $tea.Model {
|
|
|
2406
2388
|
static names() {
|
|
2407
2389
|
return {
|
|
2408
2390
|
headers: 'headers',
|
|
2391
|
+
statusCode: 'statusCode',
|
|
2409
2392
|
body: 'body',
|
|
2410
2393
|
};
|
|
2411
2394
|
}
|
|
2412
2395
|
static types() {
|
|
2413
2396
|
return {
|
|
2414
2397
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2398
|
+
statusCode: 'number',
|
|
2415
2399
|
body: DescribeDedicatedClusterInstanceListResponseBody,
|
|
2416
2400
|
};
|
|
2417
2401
|
}
|
|
@@ -2492,12 +2476,14 @@ class DescribeErrorLogRecordsResponse extends $tea.Model {
|
|
|
2492
2476
|
static names() {
|
|
2493
2477
|
return {
|
|
2494
2478
|
headers: 'headers',
|
|
2479
|
+
statusCode: 'statusCode',
|
|
2495
2480
|
body: 'body',
|
|
2496
2481
|
};
|
|
2497
2482
|
}
|
|
2498
2483
|
static types() {
|
|
2499
2484
|
return {
|
|
2500
2485
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2486
|
+
statusCode: 'number',
|
|
2501
2487
|
body: DescribeErrorLogRecordsResponseBody,
|
|
2502
2488
|
};
|
|
2503
2489
|
}
|
|
@@ -2568,12 +2554,14 @@ class DescribeInstanceAutoRenewalAttributeResponse extends $tea.Model {
|
|
|
2568
2554
|
static names() {
|
|
2569
2555
|
return {
|
|
2570
2556
|
headers: 'headers',
|
|
2557
|
+
statusCode: 'statusCode',
|
|
2571
2558
|
body: 'body',
|
|
2572
2559
|
};
|
|
2573
2560
|
}
|
|
2574
2561
|
static types() {
|
|
2575
2562
|
return {
|
|
2576
2563
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2564
|
+
statusCode: 'number',
|
|
2577
2565
|
body: DescribeInstanceAutoRenewalAttributeResponseBody,
|
|
2578
2566
|
};
|
|
2579
2567
|
}
|
|
@@ -2630,12 +2618,14 @@ class DescribeKernelReleaseNotesResponse extends $tea.Model {
|
|
|
2630
2618
|
static names() {
|
|
2631
2619
|
return {
|
|
2632
2620
|
headers: 'headers',
|
|
2621
|
+
statusCode: 'statusCode',
|
|
2633
2622
|
body: 'body',
|
|
2634
2623
|
};
|
|
2635
2624
|
}
|
|
2636
2625
|
static types() {
|
|
2637
2626
|
return {
|
|
2638
2627
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2628
|
+
statusCode: 'number',
|
|
2639
2629
|
body: DescribeKernelReleaseNotesResponseBody,
|
|
2640
2630
|
};
|
|
2641
2631
|
}
|
|
@@ -2712,12 +2702,14 @@ class DescribeMongoDBLogConfigResponse extends $tea.Model {
|
|
|
2712
2702
|
static names() {
|
|
2713
2703
|
return {
|
|
2714
2704
|
headers: 'headers',
|
|
2705
|
+
statusCode: 'statusCode',
|
|
2715
2706
|
body: 'body',
|
|
2716
2707
|
};
|
|
2717
2708
|
}
|
|
2718
2709
|
static types() {
|
|
2719
2710
|
return {
|
|
2720
2711
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2712
|
+
statusCode: 'number',
|
|
2721
2713
|
body: DescribeMongoDBLogConfigResponseBody,
|
|
2722
2714
|
};
|
|
2723
2715
|
}
|
|
@@ -2782,12 +2774,14 @@ class DescribeParameterModificationHistoryResponse extends $tea.Model {
|
|
|
2782
2774
|
static names() {
|
|
2783
2775
|
return {
|
|
2784
2776
|
headers: 'headers',
|
|
2777
|
+
statusCode: 'statusCode',
|
|
2785
2778
|
body: 'body',
|
|
2786
2779
|
};
|
|
2787
2780
|
}
|
|
2788
2781
|
static types() {
|
|
2789
2782
|
return {
|
|
2790
2783
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2784
|
+
statusCode: 'number',
|
|
2791
2785
|
body: DescribeParameterModificationHistoryResponseBody,
|
|
2792
2786
|
};
|
|
2793
2787
|
}
|
|
@@ -2854,12 +2848,14 @@ class DescribeParameterTemplatesResponse extends $tea.Model {
|
|
|
2854
2848
|
static names() {
|
|
2855
2849
|
return {
|
|
2856
2850
|
headers: 'headers',
|
|
2851
|
+
statusCode: 'statusCode',
|
|
2857
2852
|
body: 'body',
|
|
2858
2853
|
};
|
|
2859
2854
|
}
|
|
2860
2855
|
static types() {
|
|
2861
2856
|
return {
|
|
2862
2857
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2858
|
+
statusCode: 'number',
|
|
2863
2859
|
body: DescribeParameterTemplatesResponseBody,
|
|
2864
2860
|
};
|
|
2865
2861
|
}
|
|
@@ -2926,12 +2922,14 @@ class DescribeParametersResponse extends $tea.Model {
|
|
|
2926
2922
|
static names() {
|
|
2927
2923
|
return {
|
|
2928
2924
|
headers: 'headers',
|
|
2925
|
+
statusCode: 'statusCode',
|
|
2929
2926
|
body: 'body',
|
|
2930
2927
|
};
|
|
2931
2928
|
}
|
|
2932
2929
|
static types() {
|
|
2933
2930
|
return {
|
|
2934
2931
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2932
|
+
statusCode: 'number',
|
|
2935
2933
|
body: DescribeParametersResponseBody,
|
|
2936
2934
|
};
|
|
2937
2935
|
}
|
|
@@ -3012,12 +3010,14 @@ class DescribePriceResponse extends $tea.Model {
|
|
|
3012
3010
|
static names() {
|
|
3013
3011
|
return {
|
|
3014
3012
|
headers: 'headers',
|
|
3013
|
+
statusCode: 'statusCode',
|
|
3015
3014
|
body: 'body',
|
|
3016
3015
|
};
|
|
3017
3016
|
}
|
|
3018
3017
|
static types() {
|
|
3019
3018
|
return {
|
|
3020
3019
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3020
|
+
statusCode: 'number',
|
|
3021
3021
|
body: DescribePriceResponseBody,
|
|
3022
3022
|
};
|
|
3023
3023
|
}
|
|
@@ -3076,12 +3076,14 @@ class DescribeRegionsResponse extends $tea.Model {
|
|
|
3076
3076
|
static names() {
|
|
3077
3077
|
return {
|
|
3078
3078
|
headers: 'headers',
|
|
3079
|
+
statusCode: 'statusCode',
|
|
3079
3080
|
body: 'body',
|
|
3080
3081
|
};
|
|
3081
3082
|
}
|
|
3082
3083
|
static types() {
|
|
3083
3084
|
return {
|
|
3084
3085
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3086
|
+
statusCode: 'number',
|
|
3085
3087
|
body: DescribeRegionsResponseBody,
|
|
3086
3088
|
};
|
|
3087
3089
|
}
|
|
@@ -3146,12 +3148,14 @@ class DescribeRenewalPriceResponse extends $tea.Model {
|
|
|
3146
3148
|
static names() {
|
|
3147
3149
|
return {
|
|
3148
3150
|
headers: 'headers',
|
|
3151
|
+
statusCode: 'statusCode',
|
|
3149
3152
|
body: 'body',
|
|
3150
3153
|
};
|
|
3151
3154
|
}
|
|
3152
3155
|
static types() {
|
|
3153
3156
|
return {
|
|
3154
3157
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3158
|
+
statusCode: 'number',
|
|
3155
3159
|
body: DescribeRenewalPriceResponseBody,
|
|
3156
3160
|
};
|
|
3157
3161
|
}
|
|
@@ -3210,12 +3214,14 @@ class DescribeReplicaSetRoleResponse extends $tea.Model {
|
|
|
3210
3214
|
static names() {
|
|
3211
3215
|
return {
|
|
3212
3216
|
headers: 'headers',
|
|
3217
|
+
statusCode: 'statusCode',
|
|
3213
3218
|
body: 'body',
|
|
3214
3219
|
};
|
|
3215
3220
|
}
|
|
3216
3221
|
static types() {
|
|
3217
3222
|
return {
|
|
3218
3223
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3224
|
+
statusCode: 'number',
|
|
3219
3225
|
body: DescribeReplicaSetRoleResponseBody,
|
|
3220
3226
|
};
|
|
3221
3227
|
}
|
|
@@ -3272,12 +3278,14 @@ class DescribeRoleZoneInfoResponse extends $tea.Model {
|
|
|
3272
3278
|
static names() {
|
|
3273
3279
|
return {
|
|
3274
3280
|
headers: 'headers',
|
|
3281
|
+
statusCode: 'statusCode',
|
|
3275
3282
|
body: 'body',
|
|
3276
3283
|
};
|
|
3277
3284
|
}
|
|
3278
3285
|
static types() {
|
|
3279
3286
|
return {
|
|
3280
3287
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3288
|
+
statusCode: 'number',
|
|
3281
3289
|
body: DescribeRoleZoneInfoResponseBody,
|
|
3282
3290
|
};
|
|
3283
3291
|
}
|
|
@@ -3362,12 +3370,14 @@ class DescribeRunningLogRecordsResponse extends $tea.Model {
|
|
|
3362
3370
|
static names() {
|
|
3363
3371
|
return {
|
|
3364
3372
|
headers: 'headers',
|
|
3373
|
+
statusCode: 'statusCode',
|
|
3365
3374
|
body: 'body',
|
|
3366
3375
|
};
|
|
3367
3376
|
}
|
|
3368
3377
|
static types() {
|
|
3369
3378
|
return {
|
|
3370
3379
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3380
|
+
statusCode: 'number',
|
|
3371
3381
|
body: DescribeRunningLogRecordsResponseBody,
|
|
3372
3382
|
};
|
|
3373
3383
|
}
|
|
@@ -3424,12 +3434,14 @@ class DescribeSecurityGroupConfigurationResponse extends $tea.Model {
|
|
|
3424
3434
|
static names() {
|
|
3425
3435
|
return {
|
|
3426
3436
|
headers: 'headers',
|
|
3437
|
+
statusCode: 'statusCode',
|
|
3427
3438
|
body: 'body',
|
|
3428
3439
|
};
|
|
3429
3440
|
}
|
|
3430
3441
|
static types() {
|
|
3431
3442
|
return {
|
|
3432
3443
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3444
|
+
statusCode: 'number',
|
|
3433
3445
|
body: DescribeSecurityGroupConfigurationResponseBody,
|
|
3434
3446
|
};
|
|
3435
3447
|
}
|
|
@@ -3488,12 +3500,14 @@ class DescribeSecurityIpsResponse extends $tea.Model {
|
|
|
3488
3500
|
static names() {
|
|
3489
3501
|
return {
|
|
3490
3502
|
headers: 'headers',
|
|
3503
|
+
statusCode: 'statusCode',
|
|
3491
3504
|
body: 'body',
|
|
3492
3505
|
};
|
|
3493
3506
|
}
|
|
3494
3507
|
static types() {
|
|
3495
3508
|
return {
|
|
3496
3509
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3510
|
+
statusCode: 'number',
|
|
3497
3511
|
body: DescribeSecurityIpsResponseBody,
|
|
3498
3512
|
};
|
|
3499
3513
|
}
|
|
@@ -3554,12 +3568,14 @@ class DescribeShardingNetworkAddressResponse extends $tea.Model {
|
|
|
3554
3568
|
static names() {
|
|
3555
3569
|
return {
|
|
3556
3570
|
headers: 'headers',
|
|
3571
|
+
statusCode: 'statusCode',
|
|
3557
3572
|
body: 'body',
|
|
3558
3573
|
};
|
|
3559
3574
|
}
|
|
3560
3575
|
static types() {
|
|
3561
3576
|
return {
|
|
3562
3577
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3578
|
+
statusCode: 'number',
|
|
3563
3579
|
body: DescribeShardingNetworkAddressResponseBody,
|
|
3564
3580
|
};
|
|
3565
3581
|
}
|
|
@@ -3640,12 +3656,14 @@ class DescribeSlowLogRecordsResponse extends $tea.Model {
|
|
|
3640
3656
|
static names() {
|
|
3641
3657
|
return {
|
|
3642
3658
|
headers: 'headers',
|
|
3659
|
+
statusCode: 'statusCode',
|
|
3643
3660
|
body: 'body',
|
|
3644
3661
|
};
|
|
3645
3662
|
}
|
|
3646
3663
|
static types() {
|
|
3647
3664
|
return {
|
|
3648
3665
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3666
|
+
statusCode: 'number',
|
|
3649
3667
|
body: DescribeSlowLogRecordsResponseBody,
|
|
3650
3668
|
};
|
|
3651
3669
|
}
|
|
@@ -3708,12 +3726,14 @@ class DescribeTagsResponse extends $tea.Model {
|
|
|
3708
3726
|
static names() {
|
|
3709
3727
|
return {
|
|
3710
3728
|
headers: 'headers',
|
|
3729
|
+
statusCode: 'statusCode',
|
|
3711
3730
|
body: 'body',
|
|
3712
3731
|
};
|
|
3713
3732
|
}
|
|
3714
3733
|
static types() {
|
|
3715
3734
|
return {
|
|
3716
3735
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3736
|
+
statusCode: 'number',
|
|
3717
3737
|
body: DescribeTagsResponseBody,
|
|
3718
3738
|
};
|
|
3719
3739
|
}
|
|
@@ -3772,12 +3792,14 @@ class DescribeUserEncryptionKeyListResponse extends $tea.Model {
|
|
|
3772
3792
|
static names() {
|
|
3773
3793
|
return {
|
|
3774
3794
|
headers: 'headers',
|
|
3795
|
+
statusCode: 'statusCode',
|
|
3775
3796
|
body: 'body',
|
|
3776
3797
|
};
|
|
3777
3798
|
}
|
|
3778
3799
|
static types() {
|
|
3779
3800
|
return {
|
|
3780
3801
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3802
|
+
statusCode: 'number',
|
|
3781
3803
|
body: DescribeUserEncryptionKeyListResponseBody,
|
|
3782
3804
|
};
|
|
3783
3805
|
}
|
|
@@ -3838,12 +3860,14 @@ class DestroyInstanceResponse extends $tea.Model {
|
|
|
3838
3860
|
static names() {
|
|
3839
3861
|
return {
|
|
3840
3862
|
headers: 'headers',
|
|
3863
|
+
statusCode: 'statusCode',
|
|
3841
3864
|
body: 'body',
|
|
3842
3865
|
};
|
|
3843
3866
|
}
|
|
3844
3867
|
static types() {
|
|
3845
3868
|
return {
|
|
3846
3869
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3870
|
+
statusCode: 'number',
|
|
3847
3871
|
body: DestroyInstanceResponseBody,
|
|
3848
3872
|
};
|
|
3849
3873
|
}
|
|
@@ -3920,12 +3944,14 @@ class EvaluateResourceResponse extends $tea.Model {
|
|
|
3920
3944
|
static names() {
|
|
3921
3945
|
return {
|
|
3922
3946
|
headers: 'headers',
|
|
3947
|
+
statusCode: 'statusCode',
|
|
3923
3948
|
body: 'body',
|
|
3924
3949
|
};
|
|
3925
3950
|
}
|
|
3926
3951
|
static types() {
|
|
3927
3952
|
return {
|
|
3928
3953
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3954
|
+
statusCode: 'number',
|
|
3929
3955
|
body: EvaluateResourceResponseBody,
|
|
3930
3956
|
};
|
|
3931
3957
|
}
|
|
@@ -3990,12 +4016,14 @@ class ListTagResourcesResponse extends $tea.Model {
|
|
|
3990
4016
|
static names() {
|
|
3991
4017
|
return {
|
|
3992
4018
|
headers: 'headers',
|
|
4019
|
+
statusCode: 'statusCode',
|
|
3993
4020
|
body: 'body',
|
|
3994
4021
|
};
|
|
3995
4022
|
}
|
|
3996
4023
|
static types() {
|
|
3997
4024
|
return {
|
|
3998
4025
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4026
|
+
statusCode: 'number',
|
|
3999
4027
|
body: ListTagResourcesResponseBody,
|
|
4000
4028
|
};
|
|
4001
4029
|
}
|
|
@@ -4054,12 +4082,14 @@ class MigrateAvailableZoneResponse extends $tea.Model {
|
|
|
4054
4082
|
static names() {
|
|
4055
4083
|
return {
|
|
4056
4084
|
headers: 'headers',
|
|
4085
|
+
statusCode: 'statusCode',
|
|
4057
4086
|
body: 'body',
|
|
4058
4087
|
};
|
|
4059
4088
|
}
|
|
4060
4089
|
static types() {
|
|
4061
4090
|
return {
|
|
4062
4091
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4092
|
+
statusCode: 'number',
|
|
4063
4093
|
body: MigrateAvailableZoneResponseBody,
|
|
4064
4094
|
};
|
|
4065
4095
|
}
|
|
@@ -4118,12 +4148,14 @@ class MigrateToOtherZoneResponse extends $tea.Model {
|
|
|
4118
4148
|
static names() {
|
|
4119
4149
|
return {
|
|
4120
4150
|
headers: 'headers',
|
|
4151
|
+
statusCode: 'statusCode',
|
|
4121
4152
|
body: 'body',
|
|
4122
4153
|
};
|
|
4123
4154
|
}
|
|
4124
4155
|
static types() {
|
|
4125
4156
|
return {
|
|
4126
4157
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4158
|
+
statusCode: 'number',
|
|
4127
4159
|
body: MigrateToOtherZoneResponseBody,
|
|
4128
4160
|
};
|
|
4129
4161
|
}
|
|
@@ -4182,12 +4214,14 @@ class ModifyAccountDescriptionResponse extends $tea.Model {
|
|
|
4182
4214
|
static names() {
|
|
4183
4215
|
return {
|
|
4184
4216
|
headers: 'headers',
|
|
4217
|
+
statusCode: 'statusCode',
|
|
4185
4218
|
body: 'body',
|
|
4186
4219
|
};
|
|
4187
4220
|
}
|
|
4188
4221
|
static types() {
|
|
4189
4222
|
return {
|
|
4190
4223
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4224
|
+
statusCode: 'number',
|
|
4191
4225
|
body: ModifyAccountDescriptionResponseBody,
|
|
4192
4226
|
};
|
|
4193
4227
|
}
|
|
@@ -4246,12 +4280,14 @@ class ModifyAuditLogFilterResponse extends $tea.Model {
|
|
|
4246
4280
|
static names() {
|
|
4247
4281
|
return {
|
|
4248
4282
|
headers: 'headers',
|
|
4283
|
+
statusCode: 'statusCode',
|
|
4249
4284
|
body: 'body',
|
|
4250
4285
|
};
|
|
4251
4286
|
}
|
|
4252
4287
|
static types() {
|
|
4253
4288
|
return {
|
|
4254
4289
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4290
|
+
statusCode: 'number',
|
|
4255
4291
|
body: ModifyAuditLogFilterResponseBody,
|
|
4256
4292
|
};
|
|
4257
4293
|
}
|
|
@@ -4314,12 +4350,14 @@ class ModifyAuditPolicyResponse extends $tea.Model {
|
|
|
4314
4350
|
static names() {
|
|
4315
4351
|
return {
|
|
4316
4352
|
headers: 'headers',
|
|
4353
|
+
statusCode: 'statusCode',
|
|
4317
4354
|
body: 'body',
|
|
4318
4355
|
};
|
|
4319
4356
|
}
|
|
4320
4357
|
static types() {
|
|
4321
4358
|
return {
|
|
4322
4359
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4360
|
+
statusCode: 'number',
|
|
4323
4361
|
body: ModifyAuditPolicyResponseBody,
|
|
4324
4362
|
};
|
|
4325
4363
|
}
|
|
@@ -4384,12 +4422,14 @@ class ModifyBackupPolicyResponse extends $tea.Model {
|
|
|
4384
4422
|
static names() {
|
|
4385
4423
|
return {
|
|
4386
4424
|
headers: 'headers',
|
|
4425
|
+
statusCode: 'statusCode',
|
|
4387
4426
|
body: 'body',
|
|
4388
4427
|
};
|
|
4389
4428
|
}
|
|
4390
4429
|
static types() {
|
|
4391
4430
|
return {
|
|
4392
4431
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4432
|
+
statusCode: 'number',
|
|
4393
4433
|
body: ModifyBackupPolicyResponseBody,
|
|
4394
4434
|
};
|
|
4395
4435
|
}
|
|
@@ -4450,12 +4490,14 @@ class ModifyDBInstanceConnectionStringResponse extends $tea.Model {
|
|
|
4450
4490
|
static names() {
|
|
4451
4491
|
return {
|
|
4452
4492
|
headers: 'headers',
|
|
4493
|
+
statusCode: 'statusCode',
|
|
4453
4494
|
body: 'body',
|
|
4454
4495
|
};
|
|
4455
4496
|
}
|
|
4456
4497
|
static types() {
|
|
4457
4498
|
return {
|
|
4458
4499
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4500
|
+
statusCode: 'number',
|
|
4459
4501
|
body: ModifyDBInstanceConnectionStringResponseBody,
|
|
4460
4502
|
};
|
|
4461
4503
|
}
|
|
@@ -4514,12 +4556,14 @@ class ModifyDBInstanceDescriptionResponse extends $tea.Model {
|
|
|
4514
4556
|
static names() {
|
|
4515
4557
|
return {
|
|
4516
4558
|
headers: 'headers',
|
|
4559
|
+
statusCode: 'statusCode',
|
|
4517
4560
|
body: 'body',
|
|
4518
4561
|
};
|
|
4519
4562
|
}
|
|
4520
4563
|
static types() {
|
|
4521
4564
|
return {
|
|
4522
4565
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4566
|
+
statusCode: 'number',
|
|
4523
4567
|
body: ModifyDBInstanceDescriptionResponseBody,
|
|
4524
4568
|
};
|
|
4525
4569
|
}
|
|
@@ -4578,12 +4622,14 @@ class ModifyDBInstanceMaintainTimeResponse extends $tea.Model {
|
|
|
4578
4622
|
static names() {
|
|
4579
4623
|
return {
|
|
4580
4624
|
headers: 'headers',
|
|
4625
|
+
statusCode: 'statusCode',
|
|
4581
4626
|
body: 'body',
|
|
4582
4627
|
};
|
|
4583
4628
|
}
|
|
4584
4629
|
static types() {
|
|
4585
4630
|
return {
|
|
4586
4631
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4632
|
+
statusCode: 'number',
|
|
4587
4633
|
body: ModifyDBInstanceMaintainTimeResponseBody,
|
|
4588
4634
|
};
|
|
4589
4635
|
}
|
|
@@ -4640,12 +4686,14 @@ class ModifyDBInstanceMonitorResponse extends $tea.Model {
|
|
|
4640
4686
|
static names() {
|
|
4641
4687
|
return {
|
|
4642
4688
|
headers: 'headers',
|
|
4689
|
+
statusCode: 'statusCode',
|
|
4643
4690
|
body: 'body',
|
|
4644
4691
|
};
|
|
4645
4692
|
}
|
|
4646
4693
|
static types() {
|
|
4647
4694
|
return {
|
|
4648
4695
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4696
|
+
statusCode: 'number',
|
|
4649
4697
|
body: ModifyDBInstanceMonitorResponseBody,
|
|
4650
4698
|
};
|
|
4651
4699
|
}
|
|
@@ -4704,12 +4752,14 @@ class ModifyDBInstanceNetExpireTimeResponse extends $tea.Model {
|
|
|
4704
4752
|
static names() {
|
|
4705
4753
|
return {
|
|
4706
4754
|
headers: 'headers',
|
|
4755
|
+
statusCode: 'statusCode',
|
|
4707
4756
|
body: 'body',
|
|
4708
4757
|
};
|
|
4709
4758
|
}
|
|
4710
4759
|
static types() {
|
|
4711
4760
|
return {
|
|
4712
4761
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4762
|
+
statusCode: 'number',
|
|
4713
4763
|
body: ModifyDBInstanceNetExpireTimeResponseBody,
|
|
4714
4764
|
};
|
|
4715
4765
|
}
|
|
@@ -4774,12 +4824,14 @@ class ModifyDBInstanceNetworkTypeResponse extends $tea.Model {
|
|
|
4774
4824
|
static names() {
|
|
4775
4825
|
return {
|
|
4776
4826
|
headers: 'headers',
|
|
4827
|
+
statusCode: 'statusCode',
|
|
4777
4828
|
body: 'body',
|
|
4778
4829
|
};
|
|
4779
4830
|
}
|
|
4780
4831
|
static types() {
|
|
4781
4832
|
return {
|
|
4782
4833
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4834
|
+
statusCode: 'number',
|
|
4783
4835
|
body: ModifyDBInstanceNetworkTypeResponseBody,
|
|
4784
4836
|
};
|
|
4785
4837
|
}
|
|
@@ -4792,6 +4844,7 @@ class ModifyDBInstanceSSLRequest extends $tea.Model {
|
|
|
4792
4844
|
static names() {
|
|
4793
4845
|
return {
|
|
4794
4846
|
DBInstanceId: 'DBInstanceId',
|
|
4847
|
+
disableTlsProtocol: 'DisableTlsProtocol',
|
|
4795
4848
|
ownerAccount: 'OwnerAccount',
|
|
4796
4849
|
ownerId: 'OwnerId',
|
|
4797
4850
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
@@ -4803,6 +4856,7 @@ class ModifyDBInstanceSSLRequest extends $tea.Model {
|
|
|
4803
4856
|
static types() {
|
|
4804
4857
|
return {
|
|
4805
4858
|
DBInstanceId: 'string',
|
|
4859
|
+
disableTlsProtocol: 'string',
|
|
4806
4860
|
ownerAccount: 'string',
|
|
4807
4861
|
ownerId: 'number',
|
|
4808
4862
|
resourceOwnerAccount: 'string',
|
|
@@ -4836,12 +4890,14 @@ class ModifyDBInstanceSSLResponse extends $tea.Model {
|
|
|
4836
4890
|
static names() {
|
|
4837
4891
|
return {
|
|
4838
4892
|
headers: 'headers',
|
|
4893
|
+
statusCode: 'statusCode',
|
|
4839
4894
|
body: 'body',
|
|
4840
4895
|
};
|
|
4841
4896
|
}
|
|
4842
4897
|
static types() {
|
|
4843
4898
|
return {
|
|
4844
4899
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4900
|
+
statusCode: 'number',
|
|
4845
4901
|
body: ModifyDBInstanceSSLResponseBody,
|
|
4846
4902
|
};
|
|
4847
4903
|
}
|
|
@@ -4916,12 +4972,14 @@ class ModifyDBInstanceSpecResponse extends $tea.Model {
|
|
|
4916
4972
|
static names() {
|
|
4917
4973
|
return {
|
|
4918
4974
|
headers: 'headers',
|
|
4975
|
+
statusCode: 'statusCode',
|
|
4919
4976
|
body: 'body',
|
|
4920
4977
|
};
|
|
4921
4978
|
}
|
|
4922
4979
|
static types() {
|
|
4923
4980
|
return {
|
|
4924
4981
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4982
|
+
statusCode: 'number',
|
|
4925
4983
|
body: ModifyDBInstanceSpecResponseBody,
|
|
4926
4984
|
};
|
|
4927
4985
|
}
|
|
@@ -4984,12 +5042,14 @@ class ModifyDBInstanceTDEResponse extends $tea.Model {
|
|
|
4984
5042
|
static names() {
|
|
4985
5043
|
return {
|
|
4986
5044
|
headers: 'headers',
|
|
5045
|
+
statusCode: 'statusCode',
|
|
4987
5046
|
body: 'body',
|
|
4988
5047
|
};
|
|
4989
5048
|
}
|
|
4990
5049
|
static types() {
|
|
4991
5050
|
return {
|
|
4992
5051
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5052
|
+
statusCode: 'number',
|
|
4993
5053
|
body: ModifyDBInstanceTDEResponseBody,
|
|
4994
5054
|
};
|
|
4995
5055
|
}
|
|
@@ -5050,12 +5110,14 @@ class ModifyInstanceAutoRenewalAttributeResponse extends $tea.Model {
|
|
|
5050
5110
|
static names() {
|
|
5051
5111
|
return {
|
|
5052
5112
|
headers: 'headers',
|
|
5113
|
+
statusCode: 'statusCode',
|
|
5053
5114
|
body: 'body',
|
|
5054
5115
|
};
|
|
5055
5116
|
}
|
|
5056
5117
|
static types() {
|
|
5057
5118
|
return {
|
|
5058
5119
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5120
|
+
statusCode: 'number',
|
|
5059
5121
|
body: ModifyInstanceAutoRenewalAttributeResponseBody,
|
|
5060
5122
|
};
|
|
5061
5123
|
}
|
|
@@ -5114,12 +5176,14 @@ class ModifyInstanceVpcAuthModeResponse extends $tea.Model {
|
|
|
5114
5176
|
static names() {
|
|
5115
5177
|
return {
|
|
5116
5178
|
headers: 'headers',
|
|
5179
|
+
statusCode: 'statusCode',
|
|
5117
5180
|
body: 'body',
|
|
5118
5181
|
};
|
|
5119
5182
|
}
|
|
5120
5183
|
static types() {
|
|
5121
5184
|
return {
|
|
5122
5185
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5186
|
+
statusCode: 'number',
|
|
5123
5187
|
body: ModifyInstanceVpcAuthModeResponseBody,
|
|
5124
5188
|
};
|
|
5125
5189
|
}
|
|
@@ -5200,12 +5264,14 @@ class ModifyNodeSpecResponse extends $tea.Model {
|
|
|
5200
5264
|
static names() {
|
|
5201
5265
|
return {
|
|
5202
5266
|
headers: 'headers',
|
|
5267
|
+
statusCode: 'statusCode',
|
|
5203
5268
|
body: 'body',
|
|
5204
5269
|
};
|
|
5205
5270
|
}
|
|
5206
5271
|
static types() {
|
|
5207
5272
|
return {
|
|
5208
5273
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5274
|
+
statusCode: 'number',
|
|
5209
5275
|
body: ModifyNodeSpecResponseBody,
|
|
5210
5276
|
};
|
|
5211
5277
|
}
|
|
@@ -5278,12 +5344,14 @@ class ModifyNodeSpecBatchResponse extends $tea.Model {
|
|
|
5278
5344
|
static names() {
|
|
5279
5345
|
return {
|
|
5280
5346
|
headers: 'headers',
|
|
5347
|
+
statusCode: 'statusCode',
|
|
5281
5348
|
body: 'body',
|
|
5282
5349
|
};
|
|
5283
5350
|
}
|
|
5284
5351
|
static types() {
|
|
5285
5352
|
return {
|
|
5286
5353
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5354
|
+
statusCode: 'number',
|
|
5287
5355
|
body: ModifyNodeSpecBatchResponseBody,
|
|
5288
5356
|
};
|
|
5289
5357
|
}
|
|
@@ -5301,6 +5369,7 @@ class ModifyParametersRequest extends $tea.Model {
|
|
|
5301
5369
|
ownerAccount: 'OwnerAccount',
|
|
5302
5370
|
ownerId: 'OwnerId',
|
|
5303
5371
|
parameters: 'Parameters',
|
|
5372
|
+
regionId: 'RegionId',
|
|
5304
5373
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
5305
5374
|
resourceOwnerId: 'ResourceOwnerId',
|
|
5306
5375
|
securityToken: 'SecurityToken',
|
|
@@ -5314,6 +5383,7 @@ class ModifyParametersRequest extends $tea.Model {
|
|
|
5314
5383
|
ownerAccount: 'string',
|
|
5315
5384
|
ownerId: 'number',
|
|
5316
5385
|
parameters: 'string',
|
|
5386
|
+
regionId: 'string',
|
|
5317
5387
|
resourceOwnerAccount: 'string',
|
|
5318
5388
|
resourceOwnerId: 'number',
|
|
5319
5389
|
securityToken: 'string',
|
|
@@ -5344,12 +5414,14 @@ class ModifyParametersResponse extends $tea.Model {
|
|
|
5344
5414
|
static names() {
|
|
5345
5415
|
return {
|
|
5346
5416
|
headers: 'headers',
|
|
5417
|
+
statusCode: 'statusCode',
|
|
5347
5418
|
body: 'body',
|
|
5348
5419
|
};
|
|
5349
5420
|
}
|
|
5350
5421
|
static types() {
|
|
5351
5422
|
return {
|
|
5352
5423
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5424
|
+
statusCode: 'number',
|
|
5353
5425
|
body: ModifyParametersResponseBody,
|
|
5354
5426
|
};
|
|
5355
5427
|
}
|
|
@@ -5408,12 +5480,14 @@ class ModifyResourceGroupResponse extends $tea.Model {
|
|
|
5408
5480
|
static names() {
|
|
5409
5481
|
return {
|
|
5410
5482
|
headers: 'headers',
|
|
5483
|
+
statusCode: 'statusCode',
|
|
5411
5484
|
body: 'body',
|
|
5412
5485
|
};
|
|
5413
5486
|
}
|
|
5414
5487
|
static types() {
|
|
5415
5488
|
return {
|
|
5416
5489
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5490
|
+
statusCode: 'number',
|
|
5417
5491
|
body: ModifyResourceGroupResponseBody,
|
|
5418
5492
|
};
|
|
5419
5493
|
}
|
|
@@ -5470,12 +5544,14 @@ class ModifySecurityGroupConfigurationResponse extends $tea.Model {
|
|
|
5470
5544
|
static names() {
|
|
5471
5545
|
return {
|
|
5472
5546
|
headers: 'headers',
|
|
5547
|
+
statusCode: 'statusCode',
|
|
5473
5548
|
body: 'body',
|
|
5474
5549
|
};
|
|
5475
5550
|
}
|
|
5476
5551
|
static types() {
|
|
5477
5552
|
return {
|
|
5478
5553
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5554
|
+
statusCode: 'number',
|
|
5479
5555
|
body: ModifySecurityGroupConfigurationResponseBody,
|
|
5480
5556
|
};
|
|
5481
5557
|
}
|
|
@@ -5538,12 +5614,14 @@ class ModifySecurityIpsResponse extends $tea.Model {
|
|
|
5538
5614
|
static names() {
|
|
5539
5615
|
return {
|
|
5540
5616
|
headers: 'headers',
|
|
5617
|
+
statusCode: 'statusCode',
|
|
5541
5618
|
body: 'body',
|
|
5542
5619
|
};
|
|
5543
5620
|
}
|
|
5544
5621
|
static types() {
|
|
5545
5622
|
return {
|
|
5546
5623
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5624
|
+
statusCode: 'number',
|
|
5547
5625
|
body: ModifySecurityIpsResponseBody,
|
|
5548
5626
|
};
|
|
5549
5627
|
}
|
|
@@ -5602,12 +5680,14 @@ class ReleaseNodePrivateNetworkAddressResponse extends $tea.Model {
|
|
|
5602
5680
|
static names() {
|
|
5603
5681
|
return {
|
|
5604
5682
|
headers: 'headers',
|
|
5683
|
+
statusCode: 'statusCode',
|
|
5605
5684
|
body: 'body',
|
|
5606
5685
|
};
|
|
5607
5686
|
}
|
|
5608
5687
|
static types() {
|
|
5609
5688
|
return {
|
|
5610
5689
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5690
|
+
statusCode: 'number',
|
|
5611
5691
|
body: ReleaseNodePrivateNetworkAddressResponseBody,
|
|
5612
5692
|
};
|
|
5613
5693
|
}
|
|
@@ -5664,12 +5744,14 @@ class ReleasePublicNetworkAddressResponse extends $tea.Model {
|
|
|
5664
5744
|
static names() {
|
|
5665
5745
|
return {
|
|
5666
5746
|
headers: 'headers',
|
|
5747
|
+
statusCode: 'statusCode',
|
|
5667
5748
|
body: 'body',
|
|
5668
5749
|
};
|
|
5669
5750
|
}
|
|
5670
5751
|
static types() {
|
|
5671
5752
|
return {
|
|
5672
5753
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5754
|
+
statusCode: 'number',
|
|
5673
5755
|
body: ReleasePublicNetworkAddressResponseBody,
|
|
5674
5756
|
};
|
|
5675
5757
|
}
|
|
@@ -5736,12 +5818,14 @@ class RenewDBInstanceResponse extends $tea.Model {
|
|
|
5736
5818
|
static names() {
|
|
5737
5819
|
return {
|
|
5738
5820
|
headers: 'headers',
|
|
5821
|
+
statusCode: 'statusCode',
|
|
5739
5822
|
body: 'body',
|
|
5740
5823
|
};
|
|
5741
5824
|
}
|
|
5742
5825
|
static types() {
|
|
5743
5826
|
return {
|
|
5744
5827
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5828
|
+
statusCode: 'number',
|
|
5745
5829
|
body: RenewDBInstanceResponseBody,
|
|
5746
5830
|
};
|
|
5747
5831
|
}
|
|
@@ -5800,12 +5884,14 @@ class ResetAccountPasswordResponse extends $tea.Model {
|
|
|
5800
5884
|
static names() {
|
|
5801
5885
|
return {
|
|
5802
5886
|
headers: 'headers',
|
|
5887
|
+
statusCode: 'statusCode',
|
|
5803
5888
|
body: 'body',
|
|
5804
5889
|
};
|
|
5805
5890
|
}
|
|
5806
5891
|
static types() {
|
|
5807
5892
|
return {
|
|
5808
5893
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5894
|
+
statusCode: 'number',
|
|
5809
5895
|
body: ResetAccountPasswordResponseBody,
|
|
5810
5896
|
};
|
|
5811
5897
|
}
|
|
@@ -5862,12 +5948,14 @@ class RestartDBInstanceResponse extends $tea.Model {
|
|
|
5862
5948
|
static names() {
|
|
5863
5949
|
return {
|
|
5864
5950
|
headers: 'headers',
|
|
5951
|
+
statusCode: 'statusCode',
|
|
5865
5952
|
body: 'body',
|
|
5866
5953
|
};
|
|
5867
5954
|
}
|
|
5868
5955
|
static types() {
|
|
5869
5956
|
return {
|
|
5870
5957
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5958
|
+
statusCode: 'number',
|
|
5871
5959
|
body: RestartDBInstanceResponseBody,
|
|
5872
5960
|
};
|
|
5873
5961
|
}
|
|
@@ -5924,12 +6012,14 @@ class RestoreDBInstanceResponse extends $tea.Model {
|
|
|
5924
6012
|
static names() {
|
|
5925
6013
|
return {
|
|
5926
6014
|
headers: 'headers',
|
|
6015
|
+
statusCode: 'statusCode',
|
|
5927
6016
|
body: 'body',
|
|
5928
6017
|
};
|
|
5929
6018
|
}
|
|
5930
6019
|
static types() {
|
|
5931
6020
|
return {
|
|
5932
6021
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6022
|
+
statusCode: 'number',
|
|
5933
6023
|
body: RestoreDBInstanceResponseBody,
|
|
5934
6024
|
};
|
|
5935
6025
|
}
|
|
@@ -5990,12 +6080,14 @@ class SwitchDBInstanceHAResponse extends $tea.Model {
|
|
|
5990
6080
|
static names() {
|
|
5991
6081
|
return {
|
|
5992
6082
|
headers: 'headers',
|
|
6083
|
+
statusCode: 'statusCode',
|
|
5993
6084
|
body: 'body',
|
|
5994
6085
|
};
|
|
5995
6086
|
}
|
|
5996
6087
|
static types() {
|
|
5997
6088
|
return {
|
|
5998
6089
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6090
|
+
statusCode: 'number',
|
|
5999
6091
|
body: SwitchDBInstanceHAResponseBody,
|
|
6000
6092
|
};
|
|
6001
6093
|
}
|
|
@@ -6056,12 +6148,14 @@ class TagResourcesResponse extends $tea.Model {
|
|
|
6056
6148
|
static names() {
|
|
6057
6149
|
return {
|
|
6058
6150
|
headers: 'headers',
|
|
6151
|
+
statusCode: 'statusCode',
|
|
6059
6152
|
body: 'body',
|
|
6060
6153
|
};
|
|
6061
6154
|
}
|
|
6062
6155
|
static types() {
|
|
6063
6156
|
return {
|
|
6064
6157
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6158
|
+
statusCode: 'number',
|
|
6065
6159
|
body: TagResourcesResponseBody,
|
|
6066
6160
|
};
|
|
6067
6161
|
}
|
|
@@ -6128,12 +6222,14 @@ class TransformToPrePaidResponse extends $tea.Model {
|
|
|
6128
6222
|
static names() {
|
|
6129
6223
|
return {
|
|
6130
6224
|
headers: 'headers',
|
|
6225
|
+
statusCode: 'statusCode',
|
|
6131
6226
|
body: 'body',
|
|
6132
6227
|
};
|
|
6133
6228
|
}
|
|
6134
6229
|
static types() {
|
|
6135
6230
|
return {
|
|
6136
6231
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6232
|
+
statusCode: 'number',
|
|
6137
6233
|
body: TransformToPrePaidResponseBody,
|
|
6138
6234
|
};
|
|
6139
6235
|
}
|
|
@@ -6196,12 +6292,14 @@ class UntagResourcesResponse extends $tea.Model {
|
|
|
6196
6292
|
static names() {
|
|
6197
6293
|
return {
|
|
6198
6294
|
headers: 'headers',
|
|
6295
|
+
statusCode: 'statusCode',
|
|
6199
6296
|
body: 'body',
|
|
6200
6297
|
};
|
|
6201
6298
|
}
|
|
6202
6299
|
static types() {
|
|
6203
6300
|
return {
|
|
6204
6301
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6302
|
+
statusCode: 'number',
|
|
6205
6303
|
body: UntagResourcesResponseBody,
|
|
6206
6304
|
};
|
|
6207
6305
|
}
|
|
@@ -6258,12 +6356,14 @@ class UpgradeDBInstanceEngineVersionResponse extends $tea.Model {
|
|
|
6258
6356
|
static names() {
|
|
6259
6357
|
return {
|
|
6260
6358
|
headers: 'headers',
|
|
6359
|
+
statusCode: 'statusCode',
|
|
6261
6360
|
body: 'body',
|
|
6262
6361
|
};
|
|
6263
6362
|
}
|
|
6264
6363
|
static types() {
|
|
6265
6364
|
return {
|
|
6266
6365
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6366
|
+
statusCode: 'number',
|
|
6267
6367
|
body: UpgradeDBInstanceEngineVersionResponseBody,
|
|
6268
6368
|
};
|
|
6269
6369
|
}
|
|
@@ -6318,12 +6418,14 @@ class UpgradeDBInstanceKernelVersionResponse extends $tea.Model {
|
|
|
6318
6418
|
static names() {
|
|
6319
6419
|
return {
|
|
6320
6420
|
headers: 'headers',
|
|
6421
|
+
statusCode: 'statusCode',
|
|
6321
6422
|
body: 'body',
|
|
6322
6423
|
};
|
|
6323
6424
|
}
|
|
6324
6425
|
static types() {
|
|
6325
6426
|
return {
|
|
6326
6427
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6428
|
+
statusCode: 'number',
|
|
6327
6429
|
body: UpgradeDBInstanceKernelVersionResponseBody,
|
|
6328
6430
|
};
|
|
6329
6431
|
}
|
|
@@ -6509,18 +6611,40 @@ class DescribeAvailableEngineVersionResponseBodyEngineVersions extends $tea.Mode
|
|
|
6509
6611
|
}
|
|
6510
6612
|
}
|
|
6511
6613
|
exports.DescribeAvailableEngineVersionResponseBodyEngineVersions = DescribeAvailableEngineVersionResponseBodyEngineVersions;
|
|
6614
|
+
class DescribeAvailableResourceResponseBodySupportedDBTypesSupportedDBTypeAvailableZonesAvailableZoneSupportedEngineVersionsSupportedEngineVersionSupportedEnginesSupportedEngineSupportedNodeTypesSupportedNodeTypeAvailableResourcesAvailableResourceDBInstanceStorageRange extends $tea.Model {
|
|
6615
|
+
constructor(map) {
|
|
6616
|
+
super(map);
|
|
6617
|
+
}
|
|
6618
|
+
static names() {
|
|
6619
|
+
return {
|
|
6620
|
+
max: 'Max',
|
|
6621
|
+
min: 'Min',
|
|
6622
|
+
step: 'Step',
|
|
6623
|
+
};
|
|
6624
|
+
}
|
|
6625
|
+
static types() {
|
|
6626
|
+
return {
|
|
6627
|
+
max: 'number',
|
|
6628
|
+
min: 'number',
|
|
6629
|
+
step: 'number',
|
|
6630
|
+
};
|
|
6631
|
+
}
|
|
6632
|
+
}
|
|
6633
|
+
exports.DescribeAvailableResourceResponseBodySupportedDBTypesSupportedDBTypeAvailableZonesAvailableZoneSupportedEngineVersionsSupportedEngineVersionSupportedEnginesSupportedEngineSupportedNodeTypesSupportedNodeTypeAvailableResourcesAvailableResourceDBInstanceStorageRange = DescribeAvailableResourceResponseBodySupportedDBTypesSupportedDBTypeAvailableZonesAvailableZoneSupportedEngineVersionsSupportedEngineVersionSupportedEnginesSupportedEngineSupportedNodeTypesSupportedNodeTypeAvailableResourcesAvailableResourceDBInstanceStorageRange;
|
|
6512
6634
|
class DescribeAvailableResourceResponseBodySupportedDBTypesSupportedDBTypeAvailableZonesAvailableZoneSupportedEngineVersionsSupportedEngineVersionSupportedEnginesSupportedEngineSupportedNodeTypesSupportedNodeTypeAvailableResourcesAvailableResource extends $tea.Model {
|
|
6513
6635
|
constructor(map) {
|
|
6514
6636
|
super(map);
|
|
6515
6637
|
}
|
|
6516
6638
|
static names() {
|
|
6517
6639
|
return {
|
|
6640
|
+
DBInstanceStorageRange: 'DBInstanceStorageRange',
|
|
6518
6641
|
instanceClass: 'InstanceClass',
|
|
6519
6642
|
instanceClassRemark: 'InstanceClassRemark',
|
|
6520
6643
|
};
|
|
6521
6644
|
}
|
|
6522
6645
|
static types() {
|
|
6523
6646
|
return {
|
|
6647
|
+
DBInstanceStorageRange: DescribeAvailableResourceResponseBodySupportedDBTypesSupportedDBTypeAvailableZonesAvailableZoneSupportedEngineVersionsSupportedEngineVersionSupportedEnginesSupportedEngineSupportedNodeTypesSupportedNodeTypeAvailableResourcesAvailableResourceDBInstanceStorageRange,
|
|
6524
6648
|
instanceClass: 'string',
|
|
6525
6649
|
instanceClassRemark: 'string',
|
|
6526
6650
|
};
|
|
@@ -7050,6 +7174,7 @@ class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstance extends $tea.
|
|
|
7050
7174
|
engine: 'Engine',
|
|
7051
7175
|
engineVersion: 'EngineVersion',
|
|
7052
7176
|
expireTime: 'ExpireTime',
|
|
7177
|
+
hiddenZoneId: 'HiddenZoneId',
|
|
7053
7178
|
kindCode: 'KindCode',
|
|
7054
7179
|
lastDowngradeTime: 'LastDowngradeTime',
|
|
7055
7180
|
lockMode: 'LockMode',
|
|
@@ -7067,6 +7192,7 @@ class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstance extends $tea.
|
|
|
7067
7192
|
replicaSets: 'ReplicaSets',
|
|
7068
7193
|
replicationFactor: 'ReplicationFactor',
|
|
7069
7194
|
resourceGroupId: 'ResourceGroupId',
|
|
7195
|
+
secondaryZoneId: 'SecondaryZoneId',
|
|
7070
7196
|
shardList: 'ShardList',
|
|
7071
7197
|
storageEngine: 'StorageEngine',
|
|
7072
7198
|
tags: 'Tags',
|
|
@@ -7094,6 +7220,7 @@ class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstance extends $tea.
|
|
|
7094
7220
|
engine: 'string',
|
|
7095
7221
|
engineVersion: 'string',
|
|
7096
7222
|
expireTime: 'string',
|
|
7223
|
+
hiddenZoneId: 'string',
|
|
7097
7224
|
kindCode: 'string',
|
|
7098
7225
|
lastDowngradeTime: 'string',
|
|
7099
7226
|
lockMode: 'string',
|
|
@@ -7111,6 +7238,7 @@ class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstance extends $tea.
|
|
|
7111
7238
|
replicaSets: DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanceReplicaSets,
|
|
7112
7239
|
replicationFactor: 'string',
|
|
7113
7240
|
resourceGroupId: 'string',
|
|
7241
|
+
secondaryZoneId: 'string',
|
|
7114
7242
|
shardList: DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanceShardList,
|
|
7115
7243
|
storageEngine: 'string',
|
|
7116
7244
|
tags: DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanceTags,
|
|
@@ -7358,6 +7486,7 @@ class DescribeDBInstancesResponseBodyDBInstancesDBInstance extends $tea.Model {
|
|
|
7358
7486
|
engine: 'Engine',
|
|
7359
7487
|
engineVersion: 'EngineVersion',
|
|
7360
7488
|
expireTime: 'ExpireTime',
|
|
7489
|
+
hiddenZoneId: 'HiddenZoneId',
|
|
7361
7490
|
kindCode: 'KindCode',
|
|
7362
7491
|
lastDowngradeTime: 'LastDowngradeTime',
|
|
7363
7492
|
lockMode: 'LockMode',
|
|
@@ -7366,7 +7495,9 @@ class DescribeDBInstancesResponseBodyDBInstancesDBInstance extends $tea.Model {
|
|
|
7366
7495
|
regionId: 'RegionId',
|
|
7367
7496
|
replicationFactor: 'ReplicationFactor',
|
|
7368
7497
|
resourceGroupId: 'ResourceGroupId',
|
|
7498
|
+
secondaryZoneId: 'SecondaryZoneId',
|
|
7369
7499
|
shardList: 'ShardList',
|
|
7500
|
+
storageType: 'StorageType',
|
|
7370
7501
|
tags: 'Tags',
|
|
7371
7502
|
vpcAuthMode: 'VpcAuthMode',
|
|
7372
7503
|
zoneId: 'ZoneId',
|
|
@@ -7387,6 +7518,7 @@ class DescribeDBInstancesResponseBodyDBInstancesDBInstance extends $tea.Model {
|
|
|
7387
7518
|
engine: 'string',
|
|
7388
7519
|
engineVersion: 'string',
|
|
7389
7520
|
expireTime: 'string',
|
|
7521
|
+
hiddenZoneId: 'string',
|
|
7390
7522
|
kindCode: 'string',
|
|
7391
7523
|
lastDowngradeTime: 'string',
|
|
7392
7524
|
lockMode: 'string',
|
|
@@ -7395,7 +7527,9 @@ class DescribeDBInstancesResponseBodyDBInstancesDBInstance extends $tea.Model {
|
|
|
7395
7527
|
regionId: 'string',
|
|
7396
7528
|
replicationFactor: 'string',
|
|
7397
7529
|
resourceGroupId: 'string',
|
|
7530
|
+
secondaryZoneId: 'string',
|
|
7398
7531
|
shardList: DescribeDBInstancesResponseBodyDBInstancesDBInstanceShardList,
|
|
7532
|
+
storageType: 'string',
|
|
7399
7533
|
tags: DescribeDBInstancesResponseBodyDBInstancesDBInstanceTags,
|
|
7400
7534
|
vpcAuthMode: 'string',
|
|
7401
7535
|
zoneId: 'string',
|
|
@@ -8118,12 +8252,14 @@ class DescribeRegionsResponseBodyRegionsDdsRegionZonesZone extends $tea.Model {
|
|
|
8118
8252
|
static names() {
|
|
8119
8253
|
return {
|
|
8120
8254
|
vpcEnabled: 'VpcEnabled',
|
|
8255
|
+
zoneId: 'ZoneId',
|
|
8121
8256
|
zoneName: 'ZoneName',
|
|
8122
8257
|
};
|
|
8123
8258
|
}
|
|
8124
8259
|
static types() {
|
|
8125
8260
|
return {
|
|
8126
8261
|
vpcEnabled: 'boolean',
|
|
8262
|
+
zoneId: 'string',
|
|
8127
8263
|
zoneName: 'string',
|
|
8128
8264
|
};
|
|
8129
8265
|
}
|
|
@@ -8802,66 +8938,7 @@ exports.TagResourcesRequestTag = TagResourcesRequestTag;
|
|
|
8802
8938
|
class Client extends openapi_client_1.default {
|
|
8803
8939
|
constructor(config) {
|
|
8804
8940
|
super(config);
|
|
8805
|
-
this._endpointRule = "
|
|
8806
|
-
this._endpointMap = {
|
|
8807
|
-
'cn-qingdao': "mongodb.aliyuncs.com",
|
|
8808
|
-
'cn-beijing': "mongodb.aliyuncs.com",
|
|
8809
|
-
'cn-chengdu': "mongodb.cn-chengdu.aliyuncs.com",
|
|
8810
|
-
'cn-zhangjiakou': "mongodb.cn-zhangjiakou.aliyuncs.com",
|
|
8811
|
-
'cn-huhehaote': "mongodb.cn-huhehaote.aliyuncs.com",
|
|
8812
|
-
'cn-hangzhou': "mongodb.aliyuncs.com",
|
|
8813
|
-
'cn-shanghai': "mongodb.aliyuncs.com",
|
|
8814
|
-
'cn-shenzhen': "mongodb.aliyuncs.com",
|
|
8815
|
-
'cn-heyuan': "mongodb.aliyuncs.com",
|
|
8816
|
-
'cn-hongkong': "mongodb.aliyuncs.com",
|
|
8817
|
-
'ap-southeast-1': "mongodb.aliyuncs.com",
|
|
8818
|
-
'ap-southeast-2': "mongodb.ap-southeast-2.aliyuncs.com",
|
|
8819
|
-
'ap-southeast-3': "mongodb.ap-southeast-3.aliyuncs.com",
|
|
8820
|
-
'ap-southeast-5': "mongodb.ap-southeast-5.aliyuncs.com",
|
|
8821
|
-
'ap-northeast-1': "mongodb.ap-northeast-1.aliyuncs.com",
|
|
8822
|
-
'eu-west-1': "mongodb.eu-west-1.aliyuncs.com",
|
|
8823
|
-
'us-west-1': "mongodb.aliyuncs.com",
|
|
8824
|
-
'us-east-1': "mongodb.aliyuncs.com",
|
|
8825
|
-
'eu-central-1': "mongodb.eu-central-1.aliyuncs.com",
|
|
8826
|
-
'me-east-1': "mongodb.me-east-1.aliyuncs.com",
|
|
8827
|
-
'ap-south-1': "mongodb.ap-south-1.aliyuncs.com",
|
|
8828
|
-
'cn-hangzhou-finance': "mongodb.aliyuncs.com",
|
|
8829
|
-
'cn-shanghai-finance-1': "mongodb.aliyuncs.com",
|
|
8830
|
-
'cn-shenzhen-finance-1': "mongodb.aliyuncs.com",
|
|
8831
|
-
'cn-north-2-gov-1': "mongodb.aliyuncs.com",
|
|
8832
|
-
'ap-northeast-2-pop': "mongodb.aliyuncs.com",
|
|
8833
|
-
'cn-beijing-finance-1': "mongodb.aliyuncs.com",
|
|
8834
|
-
'cn-beijing-finance-pop': "mongodb.aliyuncs.com",
|
|
8835
|
-
'cn-beijing-gov-1': "mongodb.aliyuncs.com",
|
|
8836
|
-
'cn-beijing-nu16-b01': "mongodb.aliyuncs.com",
|
|
8837
|
-
'cn-edge-1': "mongodb.aliyuncs.com",
|
|
8838
|
-
'cn-fujian': "mongodb.aliyuncs.com",
|
|
8839
|
-
'cn-haidian-cm12-c01': "mongodb.aliyuncs.com",
|
|
8840
|
-
'cn-hangzhou-bj-b01': "mongodb.aliyuncs.com",
|
|
8841
|
-
'cn-hangzhou-internal-prod-1': "mongodb.aliyuncs.com",
|
|
8842
|
-
'cn-hangzhou-internal-test-1': "mongodb.aliyuncs.com",
|
|
8843
|
-
'cn-hangzhou-internal-test-2': "mongodb.aliyuncs.com",
|
|
8844
|
-
'cn-hangzhou-internal-test-3': "mongodb.aliyuncs.com",
|
|
8845
|
-
'cn-hangzhou-test-306': "mongodb.aliyuncs.com",
|
|
8846
|
-
'cn-hongkong-finance-pop': "mongodb.aliyuncs.com",
|
|
8847
|
-
'cn-huhehaote-nebula-1': "mongodb.aliyuncs.com",
|
|
8848
|
-
'cn-qingdao-nebula': "mongodb.aliyuncs.com",
|
|
8849
|
-
'cn-shanghai-et15-b01': "mongodb.aliyuncs.com",
|
|
8850
|
-
'cn-shanghai-et2-b01': "mongodb.aliyuncs.com",
|
|
8851
|
-
'cn-shanghai-inner': "mongodb.aliyuncs.com",
|
|
8852
|
-
'cn-shanghai-internal-test-1': "mongodb.aliyuncs.com",
|
|
8853
|
-
'cn-shenzhen-inner': "mongodb.aliyuncs.com",
|
|
8854
|
-
'cn-shenzhen-st4-d01': "mongodb.aliyuncs.com",
|
|
8855
|
-
'cn-shenzhen-su18-b01': "mongodb.aliyuncs.com",
|
|
8856
|
-
'cn-wuhan': "mongodb.aliyuncs.com",
|
|
8857
|
-
'cn-wulanchabu': "mongodb.aliyuncs.com",
|
|
8858
|
-
'cn-yushanfang': "mongodb.aliyuncs.com",
|
|
8859
|
-
'cn-zhangbei-na61-b01': "mongodb.aliyuncs.com",
|
|
8860
|
-
'cn-zhangjiakou-na62-a01': "mongodb.aliyuncs.com",
|
|
8861
|
-
'cn-zhengzhou-nebula-1': "mongodb.aliyuncs.com",
|
|
8862
|
-
'eu-west-1-oxs': "mongodb.aliyuncs.com",
|
|
8863
|
-
'rus-west-1-pop': "mongodb.aliyuncs.com",
|
|
8864
|
-
};
|
|
8941
|
+
this._endpointRule = "";
|
|
8865
8942
|
this.checkConfig(config);
|
|
8866
8943
|
this._endpoint = this.getEndpoint("dds", this._regionId, this._endpointRule, this._network, this._suffix, this._endpointMap, this._endpoint);
|
|
8867
8944
|
}
|
|
@@ -9202,6 +9279,9 @@ class Client extends openapi_client_1.default {
|
|
|
9202
9279
|
if (!tea_util_1.default.isUnset(request.storageEngine)) {
|
|
9203
9280
|
query["StorageEngine"] = request.storageEngine;
|
|
9204
9281
|
}
|
|
9282
|
+
if (!tea_util_1.default.isUnset(request.storageType)) {
|
|
9283
|
+
query["StorageType"] = request.storageType;
|
|
9284
|
+
}
|
|
9205
9285
|
if (!tea_util_1.default.isUnset(request.vSwitchId)) {
|
|
9206
9286
|
query["VSwitchId"] = request.vSwitchId;
|
|
9207
9287
|
}
|
|
@@ -9234,6 +9314,12 @@ class Client extends openapi_client_1.default {
|
|
|
9234
9314
|
async createNodeWithOptions(request, runtime) {
|
|
9235
9315
|
tea_util_1.default.validateModel(request);
|
|
9236
9316
|
let query = {};
|
|
9317
|
+
if (!tea_util_1.default.isUnset(request.accountName)) {
|
|
9318
|
+
query["AccountName"] = request.accountName;
|
|
9319
|
+
}
|
|
9320
|
+
if (!tea_util_1.default.isUnset(request.accountPassword)) {
|
|
9321
|
+
query["AccountPassword"] = request.accountPassword;
|
|
9322
|
+
}
|
|
9237
9323
|
if (!tea_util_1.default.isUnset(request.autoPay)) {
|
|
9238
9324
|
query["AutoPay"] = request.autoPay;
|
|
9239
9325
|
}
|
|
@@ -9276,6 +9362,9 @@ class Client extends openapi_client_1.default {
|
|
|
9276
9362
|
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
9277
9363
|
query["SecurityToken"] = request.securityToken;
|
|
9278
9364
|
}
|
|
9365
|
+
if (!tea_util_1.default.isUnset(request.shardDirect)) {
|
|
9366
|
+
query["ShardDirect"] = request.shardDirect;
|
|
9367
|
+
}
|
|
9279
9368
|
let req = new $OpenApi.OpenApiRequest({
|
|
9280
9369
|
query: openapi_util_1.default.query(query),
|
|
9281
9370
|
});
|
|
@@ -9299,6 +9388,12 @@ class Client extends openapi_client_1.default {
|
|
|
9299
9388
|
async createNodeBatchWithOptions(request, runtime) {
|
|
9300
9389
|
tea_util_1.default.validateModel(request);
|
|
9301
9390
|
let query = {};
|
|
9391
|
+
if (!tea_util_1.default.isUnset(request.accountName)) {
|
|
9392
|
+
query["AccountName"] = request.accountName;
|
|
9393
|
+
}
|
|
9394
|
+
if (!tea_util_1.default.isUnset(request.accountPassword)) {
|
|
9395
|
+
query["AccountPassword"] = request.accountPassword;
|
|
9396
|
+
}
|
|
9302
9397
|
if (!tea_util_1.default.isUnset(request.autoPay)) {
|
|
9303
9398
|
query["AutoPay"] = request.autoPay;
|
|
9304
9399
|
}
|
|
@@ -9335,6 +9430,9 @@ class Client extends openapi_client_1.default {
|
|
|
9335
9430
|
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
9336
9431
|
query["SecurityToken"] = request.securityToken;
|
|
9337
9432
|
}
|
|
9433
|
+
if (!tea_util_1.default.isUnset(request.shardDirect)) {
|
|
9434
|
+
query["ShardDirect"] = request.shardDirect;
|
|
9435
|
+
}
|
|
9338
9436
|
let req = new $OpenApi.OpenApiRequest({
|
|
9339
9437
|
query: openapi_util_1.default.query(query),
|
|
9340
9438
|
});
|
|
@@ -9355,95 +9453,6 @@ class Client extends openapi_client_1.default {
|
|
|
9355
9453
|
let runtime = new $Util.RuntimeOptions({});
|
|
9356
9454
|
return await this.createNodeBatchWithOptions(request, runtime);
|
|
9357
9455
|
}
|
|
9358
|
-
async createServerlessDBInstanceWithOptions(request, runtime) {
|
|
9359
|
-
tea_util_1.default.validateModel(request);
|
|
9360
|
-
let query = {};
|
|
9361
|
-
if (!tea_util_1.default.isUnset(request.accountPassword)) {
|
|
9362
|
-
query["AccountPassword"] = request.accountPassword;
|
|
9363
|
-
}
|
|
9364
|
-
if (!tea_util_1.default.isUnset(request.autoRenew)) {
|
|
9365
|
-
query["AutoRenew"] = request.autoRenew;
|
|
9366
|
-
}
|
|
9367
|
-
if (!tea_util_1.default.isUnset(request.capacityUnit)) {
|
|
9368
|
-
query["CapacityUnit"] = request.capacityUnit;
|
|
9369
|
-
}
|
|
9370
|
-
if (!tea_util_1.default.isUnset(request.clientToken)) {
|
|
9371
|
-
query["ClientToken"] = request.clientToken;
|
|
9372
|
-
}
|
|
9373
|
-
if (!tea_util_1.default.isUnset(request.DBInstanceDescription)) {
|
|
9374
|
-
query["DBInstanceDescription"] = request.DBInstanceDescription;
|
|
9375
|
-
}
|
|
9376
|
-
if (!tea_util_1.default.isUnset(request.DBInstanceStorage)) {
|
|
9377
|
-
query["DBInstanceStorage"] = request.DBInstanceStorage;
|
|
9378
|
-
}
|
|
9379
|
-
if (!tea_util_1.default.isUnset(request.engine)) {
|
|
9380
|
-
query["Engine"] = request.engine;
|
|
9381
|
-
}
|
|
9382
|
-
if (!tea_util_1.default.isUnset(request.engineVersion)) {
|
|
9383
|
-
query["EngineVersion"] = request.engineVersion;
|
|
9384
|
-
}
|
|
9385
|
-
if (!tea_util_1.default.isUnset(request.ownerAccount)) {
|
|
9386
|
-
query["OwnerAccount"] = request.ownerAccount;
|
|
9387
|
-
}
|
|
9388
|
-
if (!tea_util_1.default.isUnset(request.ownerId)) {
|
|
9389
|
-
query["OwnerId"] = request.ownerId;
|
|
9390
|
-
}
|
|
9391
|
-
if (!tea_util_1.default.isUnset(request.period)) {
|
|
9392
|
-
query["Period"] = request.period;
|
|
9393
|
-
}
|
|
9394
|
-
if (!tea_util_1.default.isUnset(request.periodPriceType)) {
|
|
9395
|
-
query["PeriodPriceType"] = request.periodPriceType;
|
|
9396
|
-
}
|
|
9397
|
-
if (!tea_util_1.default.isUnset(request.regionId)) {
|
|
9398
|
-
query["RegionId"] = request.regionId;
|
|
9399
|
-
}
|
|
9400
|
-
if (!tea_util_1.default.isUnset(request.resourceGroupId)) {
|
|
9401
|
-
query["ResourceGroupId"] = request.resourceGroupId;
|
|
9402
|
-
}
|
|
9403
|
-
if (!tea_util_1.default.isUnset(request.resourceOwnerAccount)) {
|
|
9404
|
-
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
9405
|
-
}
|
|
9406
|
-
if (!tea_util_1.default.isUnset(request.resourceOwnerId)) {
|
|
9407
|
-
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
9408
|
-
}
|
|
9409
|
-
if (!tea_util_1.default.isUnset(request.securityIPList)) {
|
|
9410
|
-
query["SecurityIPList"] = request.securityIPList;
|
|
9411
|
-
}
|
|
9412
|
-
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
9413
|
-
query["SecurityToken"] = request.securityToken;
|
|
9414
|
-
}
|
|
9415
|
-
if (!tea_util_1.default.isUnset(request.storageEngine)) {
|
|
9416
|
-
query["StorageEngine"] = request.storageEngine;
|
|
9417
|
-
}
|
|
9418
|
-
if (!tea_util_1.default.isUnset(request.vSwitchId)) {
|
|
9419
|
-
query["VSwitchId"] = request.vSwitchId;
|
|
9420
|
-
}
|
|
9421
|
-
if (!tea_util_1.default.isUnset(request.vpcId)) {
|
|
9422
|
-
query["VpcId"] = request.vpcId;
|
|
9423
|
-
}
|
|
9424
|
-
if (!tea_util_1.default.isUnset(request.zoneId)) {
|
|
9425
|
-
query["ZoneId"] = request.zoneId;
|
|
9426
|
-
}
|
|
9427
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
9428
|
-
query: openapi_util_1.default.query(query),
|
|
9429
|
-
});
|
|
9430
|
-
let params = new $OpenApi.Params({
|
|
9431
|
-
action: "CreateServerlessDBInstance",
|
|
9432
|
-
version: "2015-12-01",
|
|
9433
|
-
protocol: "HTTPS",
|
|
9434
|
-
pathname: "/",
|
|
9435
|
-
method: "POST",
|
|
9436
|
-
authType: "AK",
|
|
9437
|
-
style: "RPC",
|
|
9438
|
-
reqBodyType: "formData",
|
|
9439
|
-
bodyType: "json",
|
|
9440
|
-
});
|
|
9441
|
-
return $tea.cast(await this.callApi(params, req, runtime), new CreateServerlessDBInstanceResponse({}));
|
|
9442
|
-
}
|
|
9443
|
-
async createServerlessDBInstance(request) {
|
|
9444
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
9445
|
-
return await this.createServerlessDBInstanceWithOptions(request, runtime);
|
|
9446
|
-
}
|
|
9447
9456
|
async createShardingDBInstanceWithOptions(request, runtime) {
|
|
9448
9457
|
tea_util_1.default.validateModel(request);
|
|
9449
9458
|
let query = {};
|
|
@@ -9471,6 +9480,9 @@ class Client extends openapi_client_1.default {
|
|
|
9471
9480
|
if (!tea_util_1.default.isUnset(request.engineVersion)) {
|
|
9472
9481
|
query["EngineVersion"] = request.engineVersion;
|
|
9473
9482
|
}
|
|
9483
|
+
if (!tea_util_1.default.isUnset(request.hiddenZoneId)) {
|
|
9484
|
+
query["HiddenZoneId"] = request.hiddenZoneId;
|
|
9485
|
+
}
|
|
9474
9486
|
if (!tea_util_1.default.isUnset(request.mongos)) {
|
|
9475
9487
|
query["Mongos"] = request.mongos;
|
|
9476
9488
|
}
|
|
@@ -9507,6 +9519,9 @@ class Client extends openapi_client_1.default {
|
|
|
9507
9519
|
if (!tea_util_1.default.isUnset(request.restoreTime)) {
|
|
9508
9520
|
query["RestoreTime"] = request.restoreTime;
|
|
9509
9521
|
}
|
|
9522
|
+
if (!tea_util_1.default.isUnset(request.secondaryZoneId)) {
|
|
9523
|
+
query["SecondaryZoneId"] = request.secondaryZoneId;
|
|
9524
|
+
}
|
|
9510
9525
|
if (!tea_util_1.default.isUnset(request.securityIPList)) {
|
|
9511
9526
|
query["SecurityIPList"] = request.securityIPList;
|
|
9512
9527
|
}
|
|
@@ -12390,6 +12405,9 @@ class Client extends openapi_client_1.default {
|
|
|
12390
12405
|
if (!tea_util_1.default.isUnset(request.DBInstanceId)) {
|
|
12391
12406
|
query["DBInstanceId"] = request.DBInstanceId;
|
|
12392
12407
|
}
|
|
12408
|
+
if (!tea_util_1.default.isUnset(request.disableTlsProtocol)) {
|
|
12409
|
+
query["DisableTlsProtocol"] = request.disableTlsProtocol;
|
|
12410
|
+
}
|
|
12393
12411
|
if (!tea_util_1.default.isUnset(request.ownerAccount)) {
|
|
12394
12412
|
query["OwnerAccount"] = request.ownerAccount;
|
|
12395
12413
|
}
|
|
@@ -12809,6 +12827,9 @@ class Client extends openapi_client_1.default {
|
|
|
12809
12827
|
if (!tea_util_1.default.isUnset(request.parameters)) {
|
|
12810
12828
|
query["Parameters"] = request.parameters;
|
|
12811
12829
|
}
|
|
12830
|
+
if (!tea_util_1.default.isUnset(request.regionId)) {
|
|
12831
|
+
query["RegionId"] = request.regionId;
|
|
12832
|
+
}
|
|
12812
12833
|
if (!tea_util_1.default.isUnset(request.resourceOwnerAccount)) {
|
|
12813
12834
|
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
12814
12835
|
}
|