tencentcloud-sdk-nodejs-intl-en 3.0.1289 → 3.0.1290
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dbbrain/index.js +1 -1
- package/tencentcloud/dts/index.js +1 -1
- package/tencentcloud/faceid/v20180301/models.js +9 -0
- package/tencentcloud/mongodb/v20190725/models.js +1256 -188
- package/tencentcloud/mongodb/v20190725/mongodb_client.js +170 -49
- package/tencentcloud/mps/v20190612/models.js +1593 -431
- package/tencentcloud/mps/v20190612/mps_client.js +170 -48
- package/tencentcloud/organization/index.js +1 -1
- package/tencentcloud/sms/index.js +1 -1
- package/tencentcloud/teo/index.js +1 -1
- package/tencentcloud/tke/index.js +1 -1
|
@@ -328,6 +328,129 @@ class CreateDBInstanceRequest extends AbstractModel {
|
|
|
328
328
|
}
|
|
329
329
|
}
|
|
330
330
|
|
|
331
|
+
/**
|
|
332
|
+
* DescribeCurrentOp response structure.
|
|
333
|
+
* @class
|
|
334
|
+
*/
|
|
335
|
+
class DescribeCurrentOpResponse extends AbstractModel {
|
|
336
|
+
constructor(){
|
|
337
|
+
super();
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* Total number of operations meeting the query conditions.
|
|
341
|
+
* @type {number || null}
|
|
342
|
+
*/
|
|
343
|
+
this.TotalCount = null;
|
|
344
|
+
|
|
345
|
+
/**
|
|
346
|
+
* List of the current operations.
|
|
347
|
+
* @type {Array.<CurrentOp> || null}
|
|
348
|
+
*/
|
|
349
|
+
this.CurrentOps = null;
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* 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.
|
|
353
|
+
* @type {string || null}
|
|
354
|
+
*/
|
|
355
|
+
this.RequestId = null;
|
|
356
|
+
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
/**
|
|
360
|
+
* @private
|
|
361
|
+
*/
|
|
362
|
+
deserialize(params) {
|
|
363
|
+
if (!params) {
|
|
364
|
+
return;
|
|
365
|
+
}
|
|
366
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
367
|
+
|
|
368
|
+
if (params.CurrentOps) {
|
|
369
|
+
this.CurrentOps = new Array();
|
|
370
|
+
for (let z in params.CurrentOps) {
|
|
371
|
+
let obj = new CurrentOp();
|
|
372
|
+
obj.deserialize(params.CurrentOps[z]);
|
|
373
|
+
this.CurrentOps.push(obj);
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
377
|
+
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* ModifyInstanceParams response structure.
|
|
383
|
+
* @class
|
|
384
|
+
*/
|
|
385
|
+
class ModifyInstanceParamsResponse extends AbstractModel {
|
|
386
|
+
constructor(){
|
|
387
|
+
super();
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* Whether the modification on the parameter configuration takes effect.
|
|
391
|
+
- true: the modified parameter value has taken effect.
|
|
392
|
+
- false: execution failed.
|
|
393
|
+
|
|
394
|
+
* @type {boolean || null}
|
|
395
|
+
*/
|
|
396
|
+
this.Changed = null;
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* This parameter is temporarily meaningless (to be compatible with the earlier versions, reserve this parameter at the frontend).
|
|
400
|
+
* @type {number || null}
|
|
401
|
+
*/
|
|
402
|
+
this.TaskId = null;
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* 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.
|
|
406
|
+
* @type {string || null}
|
|
407
|
+
*/
|
|
408
|
+
this.RequestId = null;
|
|
409
|
+
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
/**
|
|
413
|
+
* @private
|
|
414
|
+
*/
|
|
415
|
+
deserialize(params) {
|
|
416
|
+
if (!params) {
|
|
417
|
+
return;
|
|
418
|
+
}
|
|
419
|
+
this.Changed = 'Changed' in params ? params.Changed : null;
|
|
420
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
421
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
422
|
+
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* SetInstanceMaintenance response structure.
|
|
428
|
+
* @class
|
|
429
|
+
*/
|
|
430
|
+
class SetInstanceMaintenanceResponse extends AbstractModel {
|
|
431
|
+
constructor(){
|
|
432
|
+
super();
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* 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.
|
|
436
|
+
* @type {string || null}
|
|
437
|
+
*/
|
|
438
|
+
this.RequestId = null;
|
|
439
|
+
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
/**
|
|
443
|
+
* @private
|
|
444
|
+
*/
|
|
445
|
+
deserialize(params) {
|
|
446
|
+
if (!params) {
|
|
447
|
+
return;
|
|
448
|
+
}
|
|
449
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
450
|
+
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
|
|
331
454
|
/**
|
|
332
455
|
* CreateBackupDBInstance response structure.
|
|
333
456
|
* @class
|
|
@@ -405,6 +528,49 @@ class DBInstancePrice extends AbstractModel {
|
|
|
405
528
|
}
|
|
406
529
|
}
|
|
407
530
|
|
|
531
|
+
/**
|
|
532
|
+
* KillOps request structure.
|
|
533
|
+
* @class
|
|
534
|
+
*/
|
|
535
|
+
class KillOpsRequest extends AbstractModel {
|
|
536
|
+
constructor(){
|
|
537
|
+
super();
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* Instance ID. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), and copy the instance ID from the instance list.
|
|
541
|
+
* @type {string || null}
|
|
542
|
+
*/
|
|
543
|
+
this.InstanceId = null;
|
|
544
|
+
|
|
545
|
+
/**
|
|
546
|
+
* Operation to be terminated.
|
|
547
|
+
* @type {Array.<Operation> || null}
|
|
548
|
+
*/
|
|
549
|
+
this.Operations = null;
|
|
550
|
+
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
/**
|
|
554
|
+
* @private
|
|
555
|
+
*/
|
|
556
|
+
deserialize(params) {
|
|
557
|
+
if (!params) {
|
|
558
|
+
return;
|
|
559
|
+
}
|
|
560
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
561
|
+
|
|
562
|
+
if (params.Operations) {
|
|
563
|
+
this.Operations = new Array();
|
|
564
|
+
for (let z in params.Operations) {
|
|
565
|
+
let obj = new Operation();
|
|
566
|
+
obj.deserialize(params.Operations[z]);
|
|
567
|
+
this.Operations.push(obj);
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
|
|
408
574
|
/**
|
|
409
575
|
* DeleteLogDownloadTask response structure.
|
|
410
576
|
* @class
|
|
@@ -619,18 +785,64 @@ class SetDBInstanceDeletionProtectionRequest extends AbstractModel {
|
|
|
619
785
|
}
|
|
620
786
|
|
|
621
787
|
/**
|
|
622
|
-
*
|
|
788
|
+
* The collection of modifiable string parameters of an instance which are used to represent time ranges.
|
|
623
789
|
* @class
|
|
624
790
|
*/
|
|
625
|
-
class
|
|
791
|
+
class InstanceMultiParam extends AbstractModel {
|
|
626
792
|
constructor(){
|
|
627
793
|
super();
|
|
628
794
|
|
|
629
795
|
/**
|
|
630
|
-
*
|
|
796
|
+
* Current parameter value.
|
|
631
797
|
* @type {string || null}
|
|
632
798
|
*/
|
|
633
|
-
this.
|
|
799
|
+
this.CurrentValue = null;
|
|
800
|
+
|
|
801
|
+
/**
|
|
802
|
+
* Default parameter value.
|
|
803
|
+
* @type {string || null}
|
|
804
|
+
*/
|
|
805
|
+
this.DefaultValue = null;
|
|
806
|
+
|
|
807
|
+
/**
|
|
808
|
+
* Reference value range.
|
|
809
|
+
* @type {Array.<string> || null}
|
|
810
|
+
*/
|
|
811
|
+
this.EnumValue = null;
|
|
812
|
+
|
|
813
|
+
/**
|
|
814
|
+
* Whether a restart is required for the parameters to take effect after modification.
|
|
815
|
+
- 1: Restart is required for the parameters to take effect.
|
|
816
|
+
- 0: Restart is not required. Once set, the parameters take effect immediately.
|
|
817
|
+
* @type {string || null}
|
|
818
|
+
*/
|
|
819
|
+
this.NeedRestart = null;
|
|
820
|
+
|
|
821
|
+
/**
|
|
822
|
+
* Parameter name.
|
|
823
|
+
* @type {string || null}
|
|
824
|
+
*/
|
|
825
|
+
this.ParamName = null;
|
|
826
|
+
|
|
827
|
+
/**
|
|
828
|
+
* Whether the parameter values are used during running.
|
|
829
|
+
- 1. parameter values used during running.
|
|
830
|
+
- 0: parameter values not used during running.
|
|
831
|
+
* @type {number || null}
|
|
832
|
+
*/
|
|
833
|
+
this.Status = null;
|
|
834
|
+
|
|
835
|
+
/**
|
|
836
|
+
* Parameter description.
|
|
837
|
+
* @type {Array.<string> || null}
|
|
838
|
+
*/
|
|
839
|
+
this.Tips = null;
|
|
840
|
+
|
|
841
|
+
/**
|
|
842
|
+
* Describes the type of the current values. Default value: multi.
|
|
843
|
+
* @type {string || null}
|
|
844
|
+
*/
|
|
845
|
+
this.ValueType = null;
|
|
634
846
|
|
|
635
847
|
}
|
|
636
848
|
|
|
@@ -641,7 +853,14 @@ class DescribeSecurityGroupRequest extends AbstractModel {
|
|
|
641
853
|
if (!params) {
|
|
642
854
|
return;
|
|
643
855
|
}
|
|
644
|
-
this.
|
|
856
|
+
this.CurrentValue = 'CurrentValue' in params ? params.CurrentValue : null;
|
|
857
|
+
this.DefaultValue = 'DefaultValue' in params ? params.DefaultValue : null;
|
|
858
|
+
this.EnumValue = 'EnumValue' in params ? params.EnumValue : null;
|
|
859
|
+
this.NeedRestart = 'NeedRestart' in params ? params.NeedRestart : null;
|
|
860
|
+
this.ParamName = 'ParamName' in params ? params.ParamName : null;
|
|
861
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
862
|
+
this.Tips = 'Tips' in params ? params.Tips : null;
|
|
863
|
+
this.ValueType = 'ValueType' in params ? params.ValueType : null;
|
|
645
864
|
|
|
646
865
|
}
|
|
647
866
|
}
|
|
@@ -674,6 +893,57 @@ class DescribeInstanceSSLRequest extends AbstractModel {
|
|
|
674
893
|
}
|
|
675
894
|
}
|
|
676
895
|
|
|
896
|
+
/**
|
|
897
|
+
* DescribeBackupRules response structure.
|
|
898
|
+
* @class
|
|
899
|
+
*/
|
|
900
|
+
class DescribeBackupRulesResponse extends AbstractModel {
|
|
901
|
+
constructor(){
|
|
902
|
+
super();
|
|
903
|
+
|
|
904
|
+
/**
|
|
905
|
+
* Retention period for backup data, in days.
|
|
906
|
+
* @type {number || null}
|
|
907
|
+
*/
|
|
908
|
+
this.BackupSaveTime = null;
|
|
909
|
+
|
|
910
|
+
/**
|
|
911
|
+
* Automatic backup start time.
|
|
912
|
+
* @type {number || null}
|
|
913
|
+
*/
|
|
914
|
+
this.BackupTime = null;
|
|
915
|
+
|
|
916
|
+
/**
|
|
917
|
+
* Backup method.
|
|
918
|
+
- 0: logical backup.
|
|
919
|
+
- 1: physical backup.
|
|
920
|
+
* @type {number || null}
|
|
921
|
+
*/
|
|
922
|
+
this.BackupMethod = null;
|
|
923
|
+
|
|
924
|
+
/**
|
|
925
|
+
* 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.
|
|
926
|
+
* @type {string || null}
|
|
927
|
+
*/
|
|
928
|
+
this.RequestId = null;
|
|
929
|
+
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
/**
|
|
933
|
+
* @private
|
|
934
|
+
*/
|
|
935
|
+
deserialize(params) {
|
|
936
|
+
if (!params) {
|
|
937
|
+
return;
|
|
938
|
+
}
|
|
939
|
+
this.BackupSaveTime = 'BackupSaveTime' in params ? params.BackupSaveTime : null;
|
|
940
|
+
this.BackupTime = 'BackupTime' in params ? params.BackupTime : null;
|
|
941
|
+
this.BackupMethod = 'BackupMethod' in params ? params.BackupMethod : null;
|
|
942
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
943
|
+
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
|
|
677
947
|
/**
|
|
678
948
|
* Slow log statistics of MongoDB database
|
|
679
949
|
* @class
|
|
@@ -924,6 +1194,41 @@ class DescribeDBInstanceDealResponse extends AbstractModel {
|
|
|
924
1194
|
}
|
|
925
1195
|
}
|
|
926
1196
|
|
|
1197
|
+
/**
|
|
1198
|
+
* Modifies the request parameters of a TencentDB for MongoDB instance.
|
|
1199
|
+
* @class
|
|
1200
|
+
*/
|
|
1201
|
+
class ModifyMongoDBParamType extends AbstractModel {
|
|
1202
|
+
constructor(){
|
|
1203
|
+
super();
|
|
1204
|
+
|
|
1205
|
+
/**
|
|
1206
|
+
* Parameter name to be modified. Strictly refer to the parameter names supported by the current instance, which are obtained through DescribeInstanceParams.
|
|
1207
|
+
* @type {string || null}
|
|
1208
|
+
*/
|
|
1209
|
+
this.Key = null;
|
|
1210
|
+
|
|
1211
|
+
/**
|
|
1212
|
+
* Corresponding value of the parameter name to be modified. Strictly refer to the value ranges corresponding to the parameters obtained through DescribeInstanceParams.
|
|
1213
|
+
* @type {string || null}
|
|
1214
|
+
*/
|
|
1215
|
+
this.Value = null;
|
|
1216
|
+
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
/**
|
|
1220
|
+
* @private
|
|
1221
|
+
*/
|
|
1222
|
+
deserialize(params) {
|
|
1223
|
+
if (!params) {
|
|
1224
|
+
return;
|
|
1225
|
+
}
|
|
1226
|
+
this.Key = 'Key' in params ? params.Key : null;
|
|
1227
|
+
this.Value = 'Value' in params ? params.Value : null;
|
|
1228
|
+
|
|
1229
|
+
}
|
|
1230
|
+
}
|
|
1231
|
+
|
|
927
1232
|
/**
|
|
928
1233
|
* OfflineIsolatedDBInstance response structure.
|
|
929
1234
|
* @class
|
|
@@ -995,64 +1300,81 @@ class IsolateDBInstanceResponse extends AbstractModel {
|
|
|
995
1300
|
}
|
|
996
1301
|
|
|
997
1302
|
/**
|
|
998
|
-
*
|
|
1303
|
+
* DescribeSecurityGroup request structure.
|
|
999
1304
|
* @class
|
|
1000
1305
|
*/
|
|
1001
|
-
class
|
|
1306
|
+
class DescribeSecurityGroupRequest extends AbstractModel {
|
|
1002
1307
|
constructor(){
|
|
1003
1308
|
super();
|
|
1004
1309
|
|
|
1005
1310
|
/**
|
|
1006
|
-
*
|
|
1311
|
+
* Instance ID. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), and copy the instance ID from the instance list.
|
|
1007
1312
|
* @type {string || null}
|
|
1008
1313
|
*/
|
|
1009
|
-
this.
|
|
1314
|
+
this.InstanceId = null;
|
|
1010
1315
|
|
|
1011
|
-
|
|
1012
|
-
* Default parameter value.
|
|
1013
|
-
* @type {string || null}
|
|
1014
|
-
*/
|
|
1015
|
-
this.DefaultValue = null;
|
|
1316
|
+
}
|
|
1016
1317
|
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1318
|
+
/**
|
|
1319
|
+
* @private
|
|
1320
|
+
*/
|
|
1321
|
+
deserialize(params) {
|
|
1322
|
+
if (!params) {
|
|
1323
|
+
return;
|
|
1324
|
+
}
|
|
1325
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1326
|
+
|
|
1327
|
+
}
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
/**
|
|
1331
|
+
* RenameInstance request structure.
|
|
1332
|
+
* @class
|
|
1333
|
+
*/
|
|
1334
|
+
class RenameInstanceRequest extends AbstractModel {
|
|
1335
|
+
constructor(){
|
|
1336
|
+
super();
|
|
1022
1337
|
|
|
1023
1338
|
/**
|
|
1024
|
-
*
|
|
1025
|
-
- 1: Restart is required for the parameters to take effect.
|
|
1026
|
-
- 0: Restart is not required. Once set, the parameters take effect immediately.
|
|
1339
|
+
* Instance ID. Format: cmgo-p8vnipr5. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/MongoDB#/) and copy the instance ID from the instance list.
|
|
1027
1340
|
* @type {string || null}
|
|
1028
1341
|
*/
|
|
1029
|
-
this.
|
|
1342
|
+
this.InstanceId = null;
|
|
1030
1343
|
|
|
1031
1344
|
/**
|
|
1032
|
-
*
|
|
1345
|
+
* Custom instance name. It can contain any character, with a length from 1 to 128 characters.
|
|
1033
1346
|
* @type {string || null}
|
|
1034
1347
|
*/
|
|
1035
|
-
this.
|
|
1348
|
+
this.NewName = null;
|
|
1036
1349
|
|
|
1037
|
-
|
|
1038
|
-
* Whether the parameter values are used during running.
|
|
1039
|
-
- 1. parameter values used during running.
|
|
1040
|
-
- 0: parameter values not used during running.
|
|
1041
|
-
* @type {number || null}
|
|
1042
|
-
*/
|
|
1043
|
-
this.Status = null;
|
|
1350
|
+
}
|
|
1044
1351
|
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1352
|
+
/**
|
|
1353
|
+
* @private
|
|
1354
|
+
*/
|
|
1355
|
+
deserialize(params) {
|
|
1356
|
+
if (!params) {
|
|
1357
|
+
return;
|
|
1358
|
+
}
|
|
1359
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1360
|
+
this.NewName = 'NewName' in params ? params.NewName : null;
|
|
1361
|
+
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
/**
|
|
1366
|
+
* DescribeBackupRules request structure.
|
|
1367
|
+
* @class
|
|
1368
|
+
*/
|
|
1369
|
+
class DescribeBackupRulesRequest extends AbstractModel {
|
|
1370
|
+
constructor(){
|
|
1371
|
+
super();
|
|
1050
1372
|
|
|
1051
1373
|
/**
|
|
1052
|
-
*
|
|
1374
|
+
* Specifies the instance ID. For example, cmgo-p8vn****. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), and copy the instance ID from the instance list.
|
|
1053
1375
|
* @type {string || null}
|
|
1054
1376
|
*/
|
|
1055
|
-
this.
|
|
1377
|
+
this.InstanceId = null;
|
|
1056
1378
|
|
|
1057
1379
|
}
|
|
1058
1380
|
|
|
@@ -1063,14 +1385,7 @@ class InstanceMultiParam extends AbstractModel {
|
|
|
1063
1385
|
if (!params) {
|
|
1064
1386
|
return;
|
|
1065
1387
|
}
|
|
1066
|
-
this.
|
|
1067
|
-
this.DefaultValue = 'DefaultValue' in params ? params.DefaultValue : null;
|
|
1068
|
-
this.EnumValue = 'EnumValue' in params ? params.EnumValue : null;
|
|
1069
|
-
this.NeedRestart = 'NeedRestart' in params ? params.NeedRestart : null;
|
|
1070
|
-
this.ParamName = 'ParamName' in params ? params.ParamName : null;
|
|
1071
|
-
this.Status = 'Status' in params ? params.Status : null;
|
|
1072
|
-
this.Tips = 'Tips' in params ? params.Tips : null;
|
|
1073
|
-
this.ValueType = 'ValueType' in params ? params.ValueType : null;
|
|
1388
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1074
1389
|
|
|
1075
1390
|
}
|
|
1076
1391
|
}
|
|
@@ -1229,30 +1544,24 @@ class DBInstanceInfo extends AbstractModel {
|
|
|
1229
1544
|
}
|
|
1230
1545
|
|
|
1231
1546
|
/**
|
|
1232
|
-
*
|
|
1547
|
+
* SetAccountUserPrivilege response structure.
|
|
1233
1548
|
* @class
|
|
1234
1549
|
*/
|
|
1235
|
-
class
|
|
1550
|
+
class SetAccountUserPrivilegeResponse extends AbstractModel {
|
|
1236
1551
|
constructor(){
|
|
1237
1552
|
super();
|
|
1238
1553
|
|
|
1239
1554
|
/**
|
|
1240
|
-
*
|
|
1241
|
-
* @type {
|
|
1555
|
+
* Task ID.
|
|
1556
|
+
* @type {number || null}
|
|
1242
1557
|
*/
|
|
1243
|
-
this.
|
|
1558
|
+
this.FlowId = null;
|
|
1244
1559
|
|
|
1245
1560
|
/**
|
|
1246
|
-
*
|
|
1561
|
+
* 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.
|
|
1247
1562
|
* @type {string || null}
|
|
1248
1563
|
*/
|
|
1249
|
-
this.
|
|
1250
|
-
|
|
1251
|
-
/**
|
|
1252
|
-
* Whether to perform the upgrade during the maintenance period. 0 - upgrade now; 1 - upgrade during the maintenance period.
|
|
1253
|
-
* @type {number || null}
|
|
1254
|
-
*/
|
|
1255
|
-
this.InMaintenance = null;
|
|
1564
|
+
this.RequestId = null;
|
|
1256
1565
|
|
|
1257
1566
|
}
|
|
1258
1567
|
|
|
@@ -1263,9 +1572,8 @@ class UpgradeDbInstanceVersionRequest extends AbstractModel {
|
|
|
1263
1572
|
if (!params) {
|
|
1264
1573
|
return;
|
|
1265
1574
|
}
|
|
1266
|
-
this.
|
|
1267
|
-
this.
|
|
1268
|
-
this.InMaintenance = 'InMaintenance' in params ? params.InMaintenance : null;
|
|
1575
|
+
this.FlowId = 'FlowId' in params ? params.FlowId : null;
|
|
1576
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1269
1577
|
|
|
1270
1578
|
}
|
|
1271
1579
|
}
|
|
@@ -1441,71 +1749,42 @@ class DescribeDBInstanceNamespaceRequest extends AbstractModel {
|
|
|
1441
1749
|
|
|
1442
1750
|
/**
|
|
1443
1751
|
* @private
|
|
1444
|
-
*/
|
|
1445
|
-
deserialize(params) {
|
|
1446
|
-
if (!params) {
|
|
1447
|
-
return;
|
|
1448
|
-
}
|
|
1449
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1450
|
-
this.DbName = 'DbName' in params ? params.DbName : null;
|
|
1451
|
-
|
|
1452
|
-
}
|
|
1453
|
-
}
|
|
1454
|
-
|
|
1455
|
-
/**
|
|
1456
|
-
* DescribeDBInstanceNodeProperty request structure.
|
|
1457
|
-
* @class
|
|
1458
|
-
*/
|
|
1459
|
-
class DescribeDBInstanceNodePropertyRequest extends AbstractModel {
|
|
1460
|
-
constructor(){
|
|
1461
|
-
super();
|
|
1462
|
-
|
|
1463
|
-
/**
|
|
1464
|
-
* Instance ID. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), and copy the instance ID from the instance list.
|
|
1465
|
-
* @type {string || null}
|
|
1466
|
-
*/
|
|
1467
|
-
this.InstanceId = null;
|
|
1468
|
-
|
|
1469
|
-
/**
|
|
1470
|
-
* Node ID. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), go to Node Management, and copy the node ID.
|
|
1471
|
-
* @type {Array.<string> || null}
|
|
1472
|
-
*/
|
|
1473
|
-
this.NodeIds = null;
|
|
1474
|
-
|
|
1475
|
-
/**
|
|
1476
|
-
* Node role. Valid values:
|
|
1477
|
-
- PRIMARY: primary node.
|
|
1478
|
-
- SECONDARY: secondary node.
|
|
1479
|
-
- READONLY: read-only node.
|
|
1480
|
-
- ARBITER: arbitration node.
|
|
1481
|
-
* @type {Array.<string> || null}
|
|
1482
|
-
*/
|
|
1483
|
-
this.Roles = null;
|
|
1752
|
+
*/
|
|
1753
|
+
deserialize(params) {
|
|
1754
|
+
if (!params) {
|
|
1755
|
+
return;
|
|
1756
|
+
}
|
|
1757
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1758
|
+
this.DbName = 'DbName' in params ? params.DbName : null;
|
|
1484
1759
|
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1760
|
+
}
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
/**
|
|
1764
|
+
* EnableTransparentDataEncryption request structure.
|
|
1765
|
+
* @class
|
|
1766
|
+
*/
|
|
1767
|
+
class EnableTransparentDataEncryptionRequest extends AbstractModel {
|
|
1768
|
+
constructor(){
|
|
1769
|
+
super();
|
|
1490
1770
|
|
|
1491
1771
|
/**
|
|
1492
|
-
*
|
|
1493
|
-
* @type {
|
|
1772
|
+
* Instance ID. For example, cmgo-p8vn****. Log in to the[TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb) to copy the instance ID from the instance list. Currently, the supported general versions include 4.4 and 5.0, and Cloud Disk Edition is not supported.
|
|
1773
|
+
* @type {string || null}
|
|
1494
1774
|
*/
|
|
1495
|
-
this.
|
|
1775
|
+
this.InstanceId = null;
|
|
1496
1776
|
|
|
1497
1777
|
/**
|
|
1498
|
-
*
|
|
1499
|
-
|
|
1500
|
-
* @type {number || null}
|
|
1778
|
+
* Region where the [Key Management Service (KMS)](https://www.tencentcloud.comom/document/product/573/18809?from_cn_redirect=1) instance is located. For example, ap-shanghai.
|
|
1779
|
+
* @type {string || null}
|
|
1501
1780
|
*/
|
|
1502
|
-
this.
|
|
1781
|
+
this.KmsRegion = null;
|
|
1503
1782
|
|
|
1504
1783
|
/**
|
|
1505
|
-
*
|
|
1506
|
-
* @type {
|
|
1784
|
+
* Key ID. If the parameter is left unspecified, there is no specific key ID, Tencent Cloud will generate the key automatically.
|
|
1785
|
+
* @type {string || null}
|
|
1507
1786
|
*/
|
|
1508
|
-
this.
|
|
1787
|
+
this.KeyId = null;
|
|
1509
1788
|
|
|
1510
1789
|
}
|
|
1511
1790
|
|
|
@@ -1517,20 +1796,8 @@ class DescribeDBInstanceNodePropertyRequest extends AbstractModel {
|
|
|
1517
1796
|
return;
|
|
1518
1797
|
}
|
|
1519
1798
|
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1520
|
-
this.
|
|
1521
|
-
this.
|
|
1522
|
-
this.OnlyHidden = 'OnlyHidden' in params ? params.OnlyHidden : null;
|
|
1523
|
-
this.Priority = 'Priority' in params ? params.Priority : null;
|
|
1524
|
-
this.Votes = 'Votes' in params ? params.Votes : null;
|
|
1525
|
-
|
|
1526
|
-
if (params.Tags) {
|
|
1527
|
-
this.Tags = new Array();
|
|
1528
|
-
for (let z in params.Tags) {
|
|
1529
|
-
let obj = new NodeTag();
|
|
1530
|
-
obj.deserialize(params.Tags[z]);
|
|
1531
|
-
this.Tags.push(obj);
|
|
1532
|
-
}
|
|
1533
|
-
}
|
|
1799
|
+
this.KmsRegion = 'KmsRegion' in params ? params.KmsRegion : null;
|
|
1800
|
+
this.KeyId = 'KeyId' in params ? params.KeyId : null;
|
|
1534
1801
|
|
|
1535
1802
|
}
|
|
1536
1803
|
}
|
|
@@ -1604,6 +1871,49 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1604
1871
|
}
|
|
1605
1872
|
}
|
|
1606
1873
|
|
|
1874
|
+
/**
|
|
1875
|
+
* DeleteAccountUser request structure.
|
|
1876
|
+
* @class
|
|
1877
|
+
*/
|
|
1878
|
+
class DeleteAccountUserRequest extends AbstractModel {
|
|
1879
|
+
constructor(){
|
|
1880
|
+
super();
|
|
1881
|
+
|
|
1882
|
+
/**
|
|
1883
|
+
* Specifies the instance ID for the account to be deleted. For example, cmgo-p8vn****. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), and copy the instance ID from the instance list.
|
|
1884
|
+
|
|
1885
|
+
* @type {string || null}
|
|
1886
|
+
*/
|
|
1887
|
+
this.InstanceId = null;
|
|
1888
|
+
|
|
1889
|
+
/**
|
|
1890
|
+
* Configures the name of the account to be deleted.
|
|
1891
|
+
* @type {string || null}
|
|
1892
|
+
*/
|
|
1893
|
+
this.UserName = null;
|
|
1894
|
+
|
|
1895
|
+
/**
|
|
1896
|
+
* Configures the password corresponding to the mongouser account. mongouser is the default account of the system. Enter the password corresponding to it.
|
|
1897
|
+
* @type {string || null}
|
|
1898
|
+
*/
|
|
1899
|
+
this.MongoUserPassword = null;
|
|
1900
|
+
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
/**
|
|
1904
|
+
* @private
|
|
1905
|
+
*/
|
|
1906
|
+
deserialize(params) {
|
|
1907
|
+
if (!params) {
|
|
1908
|
+
return;
|
|
1909
|
+
}
|
|
1910
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1911
|
+
this.UserName = 'UserName' in params ? params.UserName : null;
|
|
1912
|
+
this.MongoUserPassword = 'MongoUserPassword' in params ? params.MongoUserPassword : null;
|
|
1913
|
+
|
|
1914
|
+
}
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1607
1917
|
/**
|
|
1608
1918
|
* TencentDB for MongoDB instance sales specification.
|
|
1609
1919
|
* @class
|
|
@@ -1899,6 +2209,48 @@ class DescribeDetailedSlowLogsRequest extends AbstractModel {
|
|
|
1899
2209
|
}
|
|
1900
2210
|
}
|
|
1901
2211
|
|
|
2212
|
+
/**
|
|
2213
|
+
* UpgradeDbInstanceVersion request structure.
|
|
2214
|
+
* @class
|
|
2215
|
+
*/
|
|
2216
|
+
class UpgradeDbInstanceVersionRequest extends AbstractModel {
|
|
2217
|
+
constructor(){
|
|
2218
|
+
super();
|
|
2219
|
+
|
|
2220
|
+
/**
|
|
2221
|
+
* List of instance IDs, which are in the format of cmgo-p8vnipr5. It is the same as the format of the instance ID displayed on the TencentDB for MongoDB console page.
|
|
2222
|
+
* @type {string || null}
|
|
2223
|
+
*/
|
|
2224
|
+
this.InstanceId = null;
|
|
2225
|
+
|
|
2226
|
+
/**
|
|
2227
|
+
* Newly upgraded database version. Currently, it only supports MONGO_40_WT (version of the MongoDB 4.0 WiredTiger storage engine) and MONGO_42_WT (version of the MongoDB 4.2 WiredTiger storage engine).
|
|
2228
|
+
* @type {string || null}
|
|
2229
|
+
*/
|
|
2230
|
+
this.MongoVersion = null;
|
|
2231
|
+
|
|
2232
|
+
/**
|
|
2233
|
+
* Whether to perform the upgrade during the maintenance period. 0 - upgrade now; 1 - upgrade during the maintenance period.
|
|
2234
|
+
* @type {number || null}
|
|
2235
|
+
*/
|
|
2236
|
+
this.InMaintenance = null;
|
|
2237
|
+
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
/**
|
|
2241
|
+
* @private
|
|
2242
|
+
*/
|
|
2243
|
+
deserialize(params) {
|
|
2244
|
+
if (!params) {
|
|
2245
|
+
return;
|
|
2246
|
+
}
|
|
2247
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
2248
|
+
this.MongoVersion = 'MongoVersion' in params ? params.MongoVersion : null;
|
|
2249
|
+
this.InMaintenance = 'InMaintenance' in params ? params.InMaintenance : null;
|
|
2250
|
+
|
|
2251
|
+
}
|
|
2252
|
+
}
|
|
2253
|
+
|
|
1902
2254
|
/**
|
|
1903
2255
|
* ModifyDBInstanceNetworkAddress response structure.
|
|
1904
2256
|
* @class
|
|
@@ -1934,6 +2286,41 @@ class ModifyDBInstanceNetworkAddressResponse extends AbstractModel {
|
|
|
1934
2286
|
}
|
|
1935
2287
|
}
|
|
1936
2288
|
|
|
2289
|
+
/**
|
|
2290
|
+
* CreateAccountUser response structure.
|
|
2291
|
+
* @class
|
|
2292
|
+
*/
|
|
2293
|
+
class CreateAccountUserResponse extends AbstractModel {
|
|
2294
|
+
constructor(){
|
|
2295
|
+
super();
|
|
2296
|
+
|
|
2297
|
+
/**
|
|
2298
|
+
* Creates a task ID.
|
|
2299
|
+
* @type {number || null}
|
|
2300
|
+
*/
|
|
2301
|
+
this.FlowId = null;
|
|
2302
|
+
|
|
2303
|
+
/**
|
|
2304
|
+
* 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.
|
|
2305
|
+
* @type {string || null}
|
|
2306
|
+
*/
|
|
2307
|
+
this.RequestId = null;
|
|
2308
|
+
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
/**
|
|
2312
|
+
* @private
|
|
2313
|
+
*/
|
|
2314
|
+
deserialize(params) {
|
|
2315
|
+
if (!params) {
|
|
2316
|
+
return;
|
|
2317
|
+
}
|
|
2318
|
+
this.FlowId = 'FlowId' in params ? params.FlowId : null;
|
|
2319
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2320
|
+
|
|
2321
|
+
}
|
|
2322
|
+
}
|
|
2323
|
+
|
|
1937
2324
|
/**
|
|
1938
2325
|
* DescribeSlowLogPatterns response structure.
|
|
1939
2326
|
* @class
|
|
@@ -2455,6 +2842,107 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2455
2842
|
}
|
|
2456
2843
|
}
|
|
2457
2844
|
|
|
2845
|
+
/**
|
|
2846
|
+
* Current operation on the TencentDB for MongoDB instance.
|
|
2847
|
+
* @class
|
|
2848
|
+
*/
|
|
2849
|
+
class CurrentOp extends AbstractModel {
|
|
2850
|
+
constructor(){
|
|
2851
|
+
super();
|
|
2852
|
+
|
|
2853
|
+
/**
|
|
2854
|
+
* Operation number.
|
|
2855
|
+
* @type {number || null}
|
|
2856
|
+
*/
|
|
2857
|
+
this.OpId = null;
|
|
2858
|
+
|
|
2859
|
+
/**
|
|
2860
|
+
* Namespace where the operation is located, in the format of db.collection.
|
|
2861
|
+
* @type {string || null}
|
|
2862
|
+
*/
|
|
2863
|
+
this.Ns = null;
|
|
2864
|
+
|
|
2865
|
+
/**
|
|
2866
|
+
* Execution statement of the operation.
|
|
2867
|
+
* @type {string || null}
|
|
2868
|
+
*/
|
|
2869
|
+
this.Query = null;
|
|
2870
|
+
|
|
2871
|
+
/**
|
|
2872
|
+
* Operation type.
|
|
2873
|
+
- none: special status; idle connections or internal tasks.
|
|
2874
|
+
- update: update data.
|
|
2875
|
+
- insert: insertion operation.
|
|
2876
|
+
- query: query operation.
|
|
2877
|
+
- command: command operation.
|
|
2878
|
+
- getmore: obtain more data.
|
|
2879
|
+
- remove: deletion operation.
|
|
2880
|
+
- killcursors: operation of releasing the query cursor.
|
|
2881
|
+
* @type {string || null}
|
|
2882
|
+
*/
|
|
2883
|
+
this.Op = null;
|
|
2884
|
+
|
|
2885
|
+
/**
|
|
2886
|
+
* Name of the shard where the operation is performed.
|
|
2887
|
+
* @type {string || null}
|
|
2888
|
+
*/
|
|
2889
|
+
this.ReplicaSetName = null;
|
|
2890
|
+
|
|
2891
|
+
/**
|
|
2892
|
+
* Name of the node where the operation is performed.
|
|
2893
|
+
* @type {string || null}
|
|
2894
|
+
*/
|
|
2895
|
+
this.NodeName = null;
|
|
2896
|
+
|
|
2897
|
+
/**
|
|
2898
|
+
* Detailed information about the operation.
|
|
2899
|
+
* @type {string || null}
|
|
2900
|
+
*/
|
|
2901
|
+
this.Operation = null;
|
|
2902
|
+
|
|
2903
|
+
/**
|
|
2904
|
+
* Node role.
|
|
2905
|
+
- primary: primary node.
|
|
2906
|
+
- secondary: secondary node.
|
|
2907
|
+
* @type {string || null}
|
|
2908
|
+
*/
|
|
2909
|
+
this.State = null;
|
|
2910
|
+
|
|
2911
|
+
/**
|
|
2912
|
+
* Execution time of the operation, in ms.
|
|
2913
|
+
* @type {number || null}
|
|
2914
|
+
*/
|
|
2915
|
+
this.MicrosecsRunning = null;
|
|
2916
|
+
|
|
2917
|
+
/**
|
|
2918
|
+
* Information about the node where the current operation is performed.
|
|
2919
|
+
* @type {string || null}
|
|
2920
|
+
*/
|
|
2921
|
+
this.ExecNode = null;
|
|
2922
|
+
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2925
|
+
/**
|
|
2926
|
+
* @private
|
|
2927
|
+
*/
|
|
2928
|
+
deserialize(params) {
|
|
2929
|
+
if (!params) {
|
|
2930
|
+
return;
|
|
2931
|
+
}
|
|
2932
|
+
this.OpId = 'OpId' in params ? params.OpId : null;
|
|
2933
|
+
this.Ns = 'Ns' in params ? params.Ns : null;
|
|
2934
|
+
this.Query = 'Query' in params ? params.Query : null;
|
|
2935
|
+
this.Op = 'Op' in params ? params.Op : null;
|
|
2936
|
+
this.ReplicaSetName = 'ReplicaSetName' in params ? params.ReplicaSetName : null;
|
|
2937
|
+
this.NodeName = 'NodeName' in params ? params.NodeName : null;
|
|
2938
|
+
this.Operation = 'Operation' in params ? params.Operation : null;
|
|
2939
|
+
this.State = 'State' in params ? params.State : null;
|
|
2940
|
+
this.MicrosecsRunning = 'MicrosecsRunning' in params ? params.MicrosecsRunning : null;
|
|
2941
|
+
this.ExecNode = 'ExecNode' in params ? params.ExecNode : null;
|
|
2942
|
+
|
|
2943
|
+
}
|
|
2944
|
+
}
|
|
2945
|
+
|
|
2458
2946
|
/**
|
|
2459
2947
|
* ModifyDBInstanceSpec request structure.
|
|
2460
2948
|
* @class
|
|
@@ -2605,16 +3093,61 @@ class DescribeLogDownloadTasksRequest extends AbstractModel {
|
|
|
2605
3093
|
this.Offset = null;
|
|
2606
3094
|
|
|
2607
3095
|
/**
|
|
2608
|
-
* Start time of the download task.
|
|
2609
|
-
* @type {string || null}
|
|
3096
|
+
* Start time of the download task.
|
|
3097
|
+
* @type {string || null}
|
|
3098
|
+
*/
|
|
3099
|
+
this.StartTime = null;
|
|
3100
|
+
|
|
3101
|
+
/**
|
|
3102
|
+
* End time of the download task.
|
|
3103
|
+
* @type {string || null}
|
|
3104
|
+
*/
|
|
3105
|
+
this.EndTime = null;
|
|
3106
|
+
|
|
3107
|
+
}
|
|
3108
|
+
|
|
3109
|
+
/**
|
|
3110
|
+
* @private
|
|
3111
|
+
*/
|
|
3112
|
+
deserialize(params) {
|
|
3113
|
+
if (!params) {
|
|
3114
|
+
return;
|
|
3115
|
+
}
|
|
3116
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
3117
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
3118
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
3119
|
+
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
3120
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
3121
|
+
|
|
3122
|
+
}
|
|
3123
|
+
}
|
|
3124
|
+
|
|
3125
|
+
/**
|
|
3126
|
+
*
|
|
3127
|
+
* @class
|
|
3128
|
+
*/
|
|
3129
|
+
class Auth extends AbstractModel {
|
|
3130
|
+
constructor(){
|
|
3131
|
+
super();
|
|
3132
|
+
|
|
3133
|
+
/**
|
|
3134
|
+
* Permission information of the current account.
|
|
3135
|
+
- 0: no permissions.
|
|
3136
|
+
- 1: read-only.
|
|
3137
|
+
- 3: read-write.
|
|
3138
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3139
|
+
* @type {number || null}
|
|
2610
3140
|
*/
|
|
2611
|
-
this.
|
|
3141
|
+
this.Mask = null;
|
|
2612
3142
|
|
|
2613
3143
|
/**
|
|
2614
|
-
*
|
|
3144
|
+
* Specifies the name of the database that has the current account permissions.
|
|
3145
|
+
- \*: indicates all databases.
|
|
3146
|
+
- db.name: indicates the database with a specific name.
|
|
3147
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2615
3148
|
* @type {string || null}
|
|
2616
3149
|
*/
|
|
2617
|
-
this.
|
|
3150
|
+
this.NameSpace = null;
|
|
2618
3151
|
|
|
2619
3152
|
}
|
|
2620
3153
|
|
|
@@ -2625,11 +3158,8 @@ class DescribeLogDownloadTasksRequest extends AbstractModel {
|
|
|
2625
3158
|
if (!params) {
|
|
2626
3159
|
return;
|
|
2627
3160
|
}
|
|
2628
|
-
this.
|
|
2629
|
-
this.
|
|
2630
|
-
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
2631
|
-
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
2632
|
-
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
3161
|
+
this.Mask = 'Mask' in params ? params.Mask : null;
|
|
3162
|
+
this.NameSpace = 'NameSpace' in params ? params.NameSpace : null;
|
|
2633
3163
|
|
|
2634
3164
|
}
|
|
2635
3165
|
}
|
|
@@ -2983,6 +3513,81 @@ class CreateLogDownloadTaskRequest extends AbstractModel {
|
|
|
2983
3513
|
}
|
|
2984
3514
|
}
|
|
2985
3515
|
|
|
3516
|
+
/**
|
|
3517
|
+
* CreateAccountUser request structure.
|
|
3518
|
+
* @class
|
|
3519
|
+
*/
|
|
3520
|
+
class CreateAccountUserRequest extends AbstractModel {
|
|
3521
|
+
constructor(){
|
|
3522
|
+
super();
|
|
3523
|
+
|
|
3524
|
+
/**
|
|
3525
|
+
* Instance ID. For example, cmgo-p8vn****. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/MongoDB), and copy the instance ID from the instance list.
|
|
3526
|
+
* @type {string || null}
|
|
3527
|
+
*/
|
|
3528
|
+
this.InstanceId = null;
|
|
3529
|
+
|
|
3530
|
+
/**
|
|
3531
|
+
* New account name. The format requirements are as follows:
|
|
3532
|
+
- The value range for the character length is [1, 64].
|
|
3533
|
+
- Allowed characters include uppercase letters, lowercase letters, digits (1–9), underscores (\_), and hyphens (-).
|
|
3534
|
+
* @type {string || null}
|
|
3535
|
+
*/
|
|
3536
|
+
this.UserName = null;
|
|
3537
|
+
|
|
3538
|
+
/**
|
|
3539
|
+
* New account password. The password complexity requirements are as follows:
|
|
3540
|
+
- The value range for the character length is [8, 32].
|
|
3541
|
+
- It should include at least two of the following: letters, digits, and special characters (the exclamation mark (!), at sign (@), number sign (#), percent sign (%), caret (^), asterisk (*), parentheses (), and underscore (_)).
|
|
3542
|
+
* @type {string || null}
|
|
3543
|
+
*/
|
|
3544
|
+
this.Password = null;
|
|
3545
|
+
|
|
3546
|
+
/**
|
|
3547
|
+
* Password corresponding to the mongouser account. mongouser is the default account of the system; it indicates the password set during instance creation.
|
|
3548
|
+
* @type {string || null}
|
|
3549
|
+
*/
|
|
3550
|
+
this.MongoUserPassword = null;
|
|
3551
|
+
|
|
3552
|
+
/**
|
|
3553
|
+
* Account remarks.
|
|
3554
|
+
* @type {string || null}
|
|
3555
|
+
*/
|
|
3556
|
+
this.UserDesc = null;
|
|
3557
|
+
|
|
3558
|
+
/**
|
|
3559
|
+
* Read/Write permission information of the account.
|
|
3560
|
+
* @type {Array.<Auth> || null}
|
|
3561
|
+
*/
|
|
3562
|
+
this.AuthRole = null;
|
|
3563
|
+
|
|
3564
|
+
}
|
|
3565
|
+
|
|
3566
|
+
/**
|
|
3567
|
+
* @private
|
|
3568
|
+
*/
|
|
3569
|
+
deserialize(params) {
|
|
3570
|
+
if (!params) {
|
|
3571
|
+
return;
|
|
3572
|
+
}
|
|
3573
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
3574
|
+
this.UserName = 'UserName' in params ? params.UserName : null;
|
|
3575
|
+
this.Password = 'Password' in params ? params.Password : null;
|
|
3576
|
+
this.MongoUserPassword = 'MongoUserPassword' in params ? params.MongoUserPassword : null;
|
|
3577
|
+
this.UserDesc = 'UserDesc' in params ? params.UserDesc : null;
|
|
3578
|
+
|
|
3579
|
+
if (params.AuthRole) {
|
|
3580
|
+
this.AuthRole = new Array();
|
|
3581
|
+
for (let z in params.AuthRole) {
|
|
3582
|
+
let obj = new Auth();
|
|
3583
|
+
obj.deserialize(params.AuthRole[z]);
|
|
3584
|
+
this.AuthRole.push(obj);
|
|
3585
|
+
}
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
}
|
|
3589
|
+
}
|
|
3590
|
+
|
|
2986
3591
|
/**
|
|
2987
3592
|
* Collection of modifiable instance parameters whose values are of the Text type.
|
|
2988
3593
|
* @class
|
|
@@ -3231,6 +3836,48 @@ class DescribeBackupDownloadTaskRequest extends AbstractModel {
|
|
|
3231
3836
|
}
|
|
3232
3837
|
}
|
|
3233
3838
|
|
|
3839
|
+
/**
|
|
3840
|
+
* Operation to be terminated.
|
|
3841
|
+
* @class
|
|
3842
|
+
*/
|
|
3843
|
+
class Operation extends AbstractModel {
|
|
3844
|
+
constructor(){
|
|
3845
|
+
super();
|
|
3846
|
+
|
|
3847
|
+
/**
|
|
3848
|
+
* Name of the shard where the operation is performed. The [DescribeCurrentOp](https://www.tencentcloud.comom/document/product/240/48120?from_cn_redirect=1) API can be called to query the shard name.
|
|
3849
|
+
* @type {string || null}
|
|
3850
|
+
*/
|
|
3851
|
+
this.ReplicaSetName = null;
|
|
3852
|
+
|
|
3853
|
+
/**
|
|
3854
|
+
* Name of the node where the operation is performed. The [DescribeCurrentOp](https://www.tencentcloud.comom/document/product/240/48120?from_cn_redirect=1) API can be called to query the node name.
|
|
3855
|
+
* @type {string || null}
|
|
3856
|
+
*/
|
|
3857
|
+
this.NodeName = null;
|
|
3858
|
+
|
|
3859
|
+
/**
|
|
3860
|
+
* Operation number. The [DescribeCurrentOp](https://www.tencentcloud.comom/document/product/240/48120?from_cn_redirect=1) API can be called to query the operation number.
|
|
3861
|
+
* @type {number || null}
|
|
3862
|
+
*/
|
|
3863
|
+
this.OpId = null;
|
|
3864
|
+
|
|
3865
|
+
}
|
|
3866
|
+
|
|
3867
|
+
/**
|
|
3868
|
+
* @private
|
|
3869
|
+
*/
|
|
3870
|
+
deserialize(params) {
|
|
3871
|
+
if (!params) {
|
|
3872
|
+
return;
|
|
3873
|
+
}
|
|
3874
|
+
this.ReplicaSetName = 'ReplicaSetName' in params ? params.ReplicaSetName : null;
|
|
3875
|
+
this.NodeName = 'NodeName' in params ? params.NodeName : null;
|
|
3876
|
+
this.OpId = 'OpId' in params ? params.OpId : null;
|
|
3877
|
+
|
|
3878
|
+
}
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3234
3881
|
/**
|
|
3235
3882
|
* DescribeClientConnections response structure.
|
|
3236
3883
|
* @class
|
|
@@ -3388,37 +4035,18 @@ class ModifyDBInstanceSecurityGroupResponse extends AbstractModel {
|
|
|
3388
4035
|
}
|
|
3389
4036
|
|
|
3390
4037
|
/**
|
|
3391
|
-
*
|
|
4038
|
+
* DescribeInstanceParams request structure.
|
|
3392
4039
|
* @class
|
|
3393
4040
|
*/
|
|
3394
|
-
class
|
|
4041
|
+
class DescribeInstanceParamsRequest extends AbstractModel {
|
|
3395
4042
|
constructor(){
|
|
3396
4043
|
super();
|
|
3397
4044
|
|
|
3398
4045
|
/**
|
|
3399
|
-
*
|
|
3400
|
-
- SECONDARY: Mongod secondary node.
|
|
3401
|
-
- READONLY: read-only node.
|
|
3402
|
-
- MONGOS: Mongos node.
|
|
3403
|
-
* @type {string || null}
|
|
3404
|
-
*/
|
|
3405
|
-
this.Role = null;
|
|
3406
|
-
|
|
3407
|
-
/**
|
|
3408
|
-
* IDs of nodes to be deleted. For a sharded cluster instance, specify the names of nodes to be deleted on one shard. Nodes with the same names on other shards will also be deleted.
|
|
3409
|
-
- Obtaining method: Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), go to the **Node Management** tab, and obtain the **node ID**.
|
|
3410
|
-
- Note: For a sharded cluster instance, specify the IDs of nodes on shard 0. For example, cmgo-6hfk\*\*\*\*\_0-node-primary.
|
|
3411
|
-
* @type {string || null}
|
|
3412
|
-
*/
|
|
3413
|
-
this.NodeName = null;
|
|
3414
|
-
|
|
3415
|
-
/**
|
|
3416
|
-
* AZ corresponding to the node. For the currently supported AZs, see [Regions and AZs](https://www.tencentcloud.comom/document/product/240/3637?from_cn_redirect=1).
|
|
3417
|
-
- Single AZ: all nodes are in the same AZ.
|
|
3418
|
-
- Multiple AZs: The current standard specification involves three AZs. The primary and secondary nodes are not in the same AZ. Note: AZs corresponding to the nodes to be deleted should be specified. After deletion, the number of nodes in any 2 AZs should be larger than that in the third AZ.
|
|
4046
|
+
* Specifies the instance ID for querying the parameter list. For example, cmgo-p8vn****. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/MongoDB) and copy the instance ID from the instance list.
|
|
3419
4047
|
* @type {string || null}
|
|
3420
4048
|
*/
|
|
3421
|
-
this.
|
|
4049
|
+
this.InstanceId = null;
|
|
3422
4050
|
|
|
3423
4051
|
}
|
|
3424
4052
|
|
|
@@ -3429,9 +4057,7 @@ class RemoveNodeList extends AbstractModel {
|
|
|
3429
4057
|
if (!params) {
|
|
3430
4058
|
return;
|
|
3431
4059
|
}
|
|
3432
|
-
this.
|
|
3433
|
-
this.NodeName = 'NodeName' in params ? params.NodeName : null;
|
|
3434
|
-
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
4060
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
3435
4061
|
|
|
3436
4062
|
}
|
|
3437
4063
|
}
|
|
@@ -4206,6 +4832,111 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4206
4832
|
}
|
|
4207
4833
|
}
|
|
4208
4834
|
|
|
4835
|
+
/**
|
|
4836
|
+
* DescribeCurrentOp request structure.
|
|
4837
|
+
* @class
|
|
4838
|
+
*/
|
|
4839
|
+
class DescribeCurrentOpRequest extends AbstractModel {
|
|
4840
|
+
constructor(){
|
|
4841
|
+
super();
|
|
4842
|
+
|
|
4843
|
+
/**
|
|
4844
|
+
* Specifies the instance ID to be queried. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), and copy the instance ID from the instance list.
|
|
4845
|
+
* @type {string || null}
|
|
4846
|
+
*/
|
|
4847
|
+
this.InstanceId = null;
|
|
4848
|
+
|
|
4849
|
+
/**
|
|
4850
|
+
* Namespace where the operation belongs, in the format of db.collection.
|
|
4851
|
+
* @type {string || null}
|
|
4852
|
+
*/
|
|
4853
|
+
this.Ns = null;
|
|
4854
|
+
|
|
4855
|
+
/**
|
|
4856
|
+
* Sets the query and filtering condition to the execution time of the operation task.
|
|
4857
|
+
- The default value is 0, and the value range is [0, 3600000], in milliseconds.
|
|
4858
|
+
- The result will return the operation whose execution time exceeds the set time.
|
|
4859
|
+
* @type {number || null}
|
|
4860
|
+
*/
|
|
4861
|
+
this.MillisecondRunning = null;
|
|
4862
|
+
|
|
4863
|
+
/**
|
|
4864
|
+
* Sets the query and filtering condition to the type of the operation task. Valid values:
|
|
4865
|
+
- none: special status; idle connections or internal tasks.
|
|
4866
|
+
- update: update data.
|
|
4867
|
+
- insert: insertion operation.
|
|
4868
|
+
- query: query operation.
|
|
4869
|
+
- command: command operation.
|
|
4870
|
+
- getmore: obtain more data.
|
|
4871
|
+
- remove: deletion operation.
|
|
4872
|
+
- killcursors: operation of releasing the query cursor.
|
|
4873
|
+
* @type {string || null}
|
|
4874
|
+
*/
|
|
4875
|
+
this.Op = null;
|
|
4876
|
+
|
|
4877
|
+
/**
|
|
4878
|
+
* Filtering condition, such as the shard name.
|
|
4879
|
+
* @type {string || null}
|
|
4880
|
+
*/
|
|
4881
|
+
this.ReplicaSetName = null;
|
|
4882
|
+
|
|
4883
|
+
/**
|
|
4884
|
+
* Sets the query and filtering condition to the node role.
|
|
4885
|
+
- primary: primary node.
|
|
4886
|
+
- secondary: secondary node.
|
|
4887
|
+
* @type {string || null}
|
|
4888
|
+
*/
|
|
4889
|
+
this.State = null;
|
|
4890
|
+
|
|
4891
|
+
/**
|
|
4892
|
+
* Number of entries returned per request. The default value is 100, and the value range is [0, 100].
|
|
4893
|
+
* @type {number || null}
|
|
4894
|
+
*/
|
|
4895
|
+
this.Limit = null;
|
|
4896
|
+
|
|
4897
|
+
/**
|
|
4898
|
+
* Offset. The default value is 0, and the value range is [0, 10000].
|
|
4899
|
+
* @type {number || null}
|
|
4900
|
+
*/
|
|
4901
|
+
this.Offset = null;
|
|
4902
|
+
|
|
4903
|
+
/**
|
|
4904
|
+
* Sorting field of the returned result set. Currently, sorting by MicrosecsRunning (execution time of the operation task) is supported.
|
|
4905
|
+
* @type {string || null}
|
|
4906
|
+
*/
|
|
4907
|
+
this.OrderBy = null;
|
|
4908
|
+
|
|
4909
|
+
/**
|
|
4910
|
+
* Sorting method of the returned result set.
|
|
4911
|
+
- ASC: ascending order. The default value is ASC, which indicates sorting in ascending order.
|
|
4912
|
+
- DESC: descending order.
|
|
4913
|
+
* @type {string || null}
|
|
4914
|
+
*/
|
|
4915
|
+
this.OrderByType = null;
|
|
4916
|
+
|
|
4917
|
+
}
|
|
4918
|
+
|
|
4919
|
+
/**
|
|
4920
|
+
* @private
|
|
4921
|
+
*/
|
|
4922
|
+
deserialize(params) {
|
|
4923
|
+
if (!params) {
|
|
4924
|
+
return;
|
|
4925
|
+
}
|
|
4926
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
4927
|
+
this.Ns = 'Ns' in params ? params.Ns : null;
|
|
4928
|
+
this.MillisecondRunning = 'MillisecondRunning' in params ? params.MillisecondRunning : null;
|
|
4929
|
+
this.Op = 'Op' in params ? params.Op : null;
|
|
4930
|
+
this.ReplicaSetName = 'ReplicaSetName' in params ? params.ReplicaSetName : null;
|
|
4931
|
+
this.State = 'State' in params ? params.State : null;
|
|
4932
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
4933
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
4934
|
+
this.OrderBy = 'OrderBy' in params ? params.OrderBy : null;
|
|
4935
|
+
this.OrderByType = 'OrderByType' in params ? params.OrderByType : null;
|
|
4936
|
+
|
|
4937
|
+
}
|
|
4938
|
+
}
|
|
4939
|
+
|
|
4209
4940
|
/**
|
|
4210
4941
|
* Backup download task information
|
|
4211
4942
|
* @class
|
|
@@ -4604,24 +5335,59 @@ class TerminateDBInstancesResponse extends AbstractModel {
|
|
|
4604
5335
|
}
|
|
4605
5336
|
|
|
4606
5337
|
/**
|
|
4607
|
-
*
|
|
5338
|
+
* DescribeDBInstanceNodeProperty request structure.
|
|
4608
5339
|
* @class
|
|
4609
5340
|
*/
|
|
4610
|
-
class
|
|
5341
|
+
class DescribeDBInstanceNodePropertyRequest extends AbstractModel {
|
|
4611
5342
|
constructor(){
|
|
4612
5343
|
super();
|
|
4613
5344
|
|
|
4614
5345
|
/**
|
|
4615
|
-
* Instance ID.
|
|
5346
|
+
* Instance ID. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), and copy the instance ID from the instance list.
|
|
4616
5347
|
* @type {string || null}
|
|
4617
5348
|
*/
|
|
4618
5349
|
this.InstanceId = null;
|
|
4619
5350
|
|
|
4620
5351
|
/**
|
|
4621
|
-
*
|
|
4622
|
-
* @type {string || null}
|
|
5352
|
+
* Node ID. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), go to Node Management, and copy the node ID.
|
|
5353
|
+
* @type {Array.<string> || null}
|
|
4623
5354
|
*/
|
|
4624
|
-
this.
|
|
5355
|
+
this.NodeIds = null;
|
|
5356
|
+
|
|
5357
|
+
/**
|
|
5358
|
+
* Node role. Valid values:
|
|
5359
|
+
- PRIMARY: primary node.
|
|
5360
|
+
- SECONDARY: secondary node.
|
|
5361
|
+
- READONLY: read-only node.
|
|
5362
|
+
- ARBITER: arbitration node.
|
|
5363
|
+
* @type {Array.<string> || null}
|
|
5364
|
+
*/
|
|
5365
|
+
this.Roles = null;
|
|
5366
|
+
|
|
5367
|
+
/**
|
|
5368
|
+
* Whether the node is a hidden node. Default value: false.
|
|
5369
|
+
* @type {boolean || null}
|
|
5370
|
+
*/
|
|
5371
|
+
this.OnlyHidden = null;
|
|
5372
|
+
|
|
5373
|
+
/**
|
|
5374
|
+
* Priority of the node for electing it as the new primary node. Value range: [0, 100]. A larger value indicates a higher priority.
|
|
5375
|
+
* @type {number || null}
|
|
5376
|
+
*/
|
|
5377
|
+
this.Priority = null;
|
|
5378
|
+
|
|
5379
|
+
/**
|
|
5380
|
+
* Node voting right.- 1: The node has the right to vote.
|
|
5381
|
+
- 0: The node does not have the right to vote.
|
|
5382
|
+
* @type {number || null}
|
|
5383
|
+
*/
|
|
5384
|
+
this.Votes = null;
|
|
5385
|
+
|
|
5386
|
+
/**
|
|
5387
|
+
* Node tag.
|
|
5388
|
+
* @type {Array.<NodeTag> || null}
|
|
5389
|
+
*/
|
|
5390
|
+
this.Tags = null;
|
|
4625
5391
|
|
|
4626
5392
|
}
|
|
4627
5393
|
|
|
@@ -4632,8 +5398,21 @@ class RenameInstanceRequest extends AbstractModel {
|
|
|
4632
5398
|
if (!params) {
|
|
4633
5399
|
return;
|
|
4634
5400
|
}
|
|
4635
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
4636
|
-
this.
|
|
5401
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
5402
|
+
this.NodeIds = 'NodeIds' in params ? params.NodeIds : null;
|
|
5403
|
+
this.Roles = 'Roles' in params ? params.Roles : null;
|
|
5404
|
+
this.OnlyHidden = 'OnlyHidden' in params ? params.OnlyHidden : null;
|
|
5405
|
+
this.Priority = 'Priority' in params ? params.Priority : null;
|
|
5406
|
+
this.Votes = 'Votes' in params ? params.Votes : null;
|
|
5407
|
+
|
|
5408
|
+
if (params.Tags) {
|
|
5409
|
+
this.Tags = new Array();
|
|
5410
|
+
for (let z in params.Tags) {
|
|
5411
|
+
let obj = new NodeTag();
|
|
5412
|
+
obj.deserialize(params.Tags[z]);
|
|
5413
|
+
this.Tags.push(obj);
|
|
5414
|
+
}
|
|
5415
|
+
}
|
|
4637
5416
|
|
|
4638
5417
|
}
|
|
4639
5418
|
}
|
|
@@ -4823,6 +5602,56 @@ class CreateBackupDBInstanceRequest extends AbstractModel {
|
|
|
4823
5602
|
}
|
|
4824
5603
|
}
|
|
4825
5604
|
|
|
5605
|
+
/**
|
|
5606
|
+
* SetAccountUserPrivilege request structure.
|
|
5607
|
+
* @class
|
|
5608
|
+
*/
|
|
5609
|
+
class SetAccountUserPrivilegeRequest extends AbstractModel {
|
|
5610
|
+
constructor(){
|
|
5611
|
+
super();
|
|
5612
|
+
|
|
5613
|
+
/**
|
|
5614
|
+
* Specifies the instance ID for the account to be configured. For example, cmgo-p8vn****. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/MongoDB), and copy the instance ID from the instance list.
|
|
5615
|
+
* @type {string || null}
|
|
5616
|
+
*/
|
|
5617
|
+
this.InstanceId = null;
|
|
5618
|
+
|
|
5619
|
+
/**
|
|
5620
|
+
* Sets the account name to access the instance. The setting requirements are as follows: The name should be started with a letter and its length should be 1–64 characters. Only uppercase letters, lowercase letters, digits (1–9), underscores (_), and hyphens (-) can be entered.
|
|
5621
|
+
* @type {string || null}
|
|
5622
|
+
*/
|
|
5623
|
+
this.UserName = null;
|
|
5624
|
+
|
|
5625
|
+
/**
|
|
5626
|
+
* Sets the permission information.
|
|
5627
|
+
* @type {Array.<Auth> || null}
|
|
5628
|
+
*/
|
|
5629
|
+
this.AuthRole = null;
|
|
5630
|
+
|
|
5631
|
+
}
|
|
5632
|
+
|
|
5633
|
+
/**
|
|
5634
|
+
* @private
|
|
5635
|
+
*/
|
|
5636
|
+
deserialize(params) {
|
|
5637
|
+
if (!params) {
|
|
5638
|
+
return;
|
|
5639
|
+
}
|
|
5640
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
5641
|
+
this.UserName = 'UserName' in params ? params.UserName : null;
|
|
5642
|
+
|
|
5643
|
+
if (params.AuthRole) {
|
|
5644
|
+
this.AuthRole = new Array();
|
|
5645
|
+
for (let z in params.AuthRole) {
|
|
5646
|
+
let obj = new Auth();
|
|
5647
|
+
obj.deserialize(params.AuthRole[z]);
|
|
5648
|
+
this.AuthRole.push(obj);
|
|
5649
|
+
}
|
|
5650
|
+
}
|
|
5651
|
+
|
|
5652
|
+
}
|
|
5653
|
+
}
|
|
5654
|
+
|
|
4826
5655
|
/**
|
|
4827
5656
|
* UpgradeDbInstanceVersion response structure.
|
|
4828
5657
|
* @class
|
|
@@ -4988,6 +5817,34 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4988
5817
|
}
|
|
4989
5818
|
}
|
|
4990
5819
|
|
|
5820
|
+
/**
|
|
5821
|
+
* KillOps response structure.
|
|
5822
|
+
* @class
|
|
5823
|
+
*/
|
|
5824
|
+
class KillOpsResponse extends AbstractModel {
|
|
5825
|
+
constructor(){
|
|
5826
|
+
super();
|
|
5827
|
+
|
|
5828
|
+
/**
|
|
5829
|
+
* 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.
|
|
5830
|
+
* @type {string || null}
|
|
5831
|
+
*/
|
|
5832
|
+
this.RequestId = null;
|
|
5833
|
+
|
|
5834
|
+
}
|
|
5835
|
+
|
|
5836
|
+
/**
|
|
5837
|
+
* @private
|
|
5838
|
+
*/
|
|
5839
|
+
deserialize(params) {
|
|
5840
|
+
if (!params) {
|
|
5841
|
+
return;
|
|
5842
|
+
}
|
|
5843
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5844
|
+
|
|
5845
|
+
}
|
|
5846
|
+
}
|
|
5847
|
+
|
|
4991
5848
|
/**
|
|
4992
5849
|
* IsolateDBInstance request structure.
|
|
4993
5850
|
* @class
|
|
@@ -5277,6 +6134,41 @@ class CreateDBInstanceHourRequest extends AbstractModel {
|
|
|
5277
6134
|
}
|
|
5278
6135
|
}
|
|
5279
6136
|
|
|
6137
|
+
/**
|
|
6138
|
+
* EnableTransparentDataEncryption response structure.
|
|
6139
|
+
* @class
|
|
6140
|
+
*/
|
|
6141
|
+
class EnableTransparentDataEncryptionResponse extends AbstractModel {
|
|
6142
|
+
constructor(){
|
|
6143
|
+
super();
|
|
6144
|
+
|
|
6145
|
+
/**
|
|
6146
|
+
* Asynchronous process ID for enabling TDE, which is used for querying the process status.
|
|
6147
|
+
* @type {number || null}
|
|
6148
|
+
*/
|
|
6149
|
+
this.FlowId = null;
|
|
6150
|
+
|
|
6151
|
+
/**
|
|
6152
|
+
* 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.
|
|
6153
|
+
* @type {string || null}
|
|
6154
|
+
*/
|
|
6155
|
+
this.RequestId = null;
|
|
6156
|
+
|
|
6157
|
+
}
|
|
6158
|
+
|
|
6159
|
+
/**
|
|
6160
|
+
* @private
|
|
6161
|
+
*/
|
|
6162
|
+
deserialize(params) {
|
|
6163
|
+
if (!params) {
|
|
6164
|
+
return;
|
|
6165
|
+
}
|
|
6166
|
+
this.FlowId = 'FlowId' in params ? params.FlowId : null;
|
|
6167
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6168
|
+
|
|
6169
|
+
}
|
|
6170
|
+
}
|
|
6171
|
+
|
|
5280
6172
|
/**
|
|
5281
6173
|
* AssignProject request structure.
|
|
5282
6174
|
* @class
|
|
@@ -5496,6 +6388,59 @@ class CreateLogDownloadTaskResponse extends AbstractModel {
|
|
|
5496
6388
|
}
|
|
5497
6389
|
}
|
|
5498
6390
|
|
|
6391
|
+
/**
|
|
6392
|
+
* ModifyInstanceParams request structure.
|
|
6393
|
+
* @class
|
|
6394
|
+
*/
|
|
6395
|
+
class ModifyInstanceParamsRequest extends AbstractModel {
|
|
6396
|
+
constructor(){
|
|
6397
|
+
super();
|
|
6398
|
+
|
|
6399
|
+
/**
|
|
6400
|
+
* Specifies the instance ID. For example, cmgo-p8vn****. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), and copy the instance ID from the instance list.
|
|
6401
|
+
|
|
6402
|
+
* @type {string || null}
|
|
6403
|
+
*/
|
|
6404
|
+
this.InstanceId = null;
|
|
6405
|
+
|
|
6406
|
+
/**
|
|
6407
|
+
* Specifies the parameter name and value to be modified. For details about the currently supported parameter names and the corresponding valid values, see [DescribeInstanceParams](https://www.tencentcloud.comom/document/product/240/65903?from_cn_redirect=1).
|
|
6408
|
+
* @type {Array.<ModifyMongoDBParamType> || null}
|
|
6409
|
+
*/
|
|
6410
|
+
this.InstanceParams = null;
|
|
6411
|
+
|
|
6412
|
+
/**
|
|
6413
|
+
* Operation type. Valid values:
|
|
6414
|
+
- IMMEDIATELY: immediate adjustment.
|
|
6415
|
+
- DELAY: delayed adjustment. It is an optional field. The default value is immediate adjustment if this parameter is left unspecified.
|
|
6416
|
+
* @type {string || null}
|
|
6417
|
+
*/
|
|
6418
|
+
this.ModifyType = null;
|
|
6419
|
+
|
|
6420
|
+
}
|
|
6421
|
+
|
|
6422
|
+
/**
|
|
6423
|
+
* @private
|
|
6424
|
+
*/
|
|
6425
|
+
deserialize(params) {
|
|
6426
|
+
if (!params) {
|
|
6427
|
+
return;
|
|
6428
|
+
}
|
|
6429
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
6430
|
+
|
|
6431
|
+
if (params.InstanceParams) {
|
|
6432
|
+
this.InstanceParams = new Array();
|
|
6433
|
+
for (let z in params.InstanceParams) {
|
|
6434
|
+
let obj = new ModifyMongoDBParamType();
|
|
6435
|
+
obj.deserialize(params.InstanceParams[z]);
|
|
6436
|
+
this.InstanceParams.push(obj);
|
|
6437
|
+
}
|
|
6438
|
+
}
|
|
6439
|
+
this.ModifyType = 'ModifyType' in params ? params.ModifyType : null;
|
|
6440
|
+
|
|
6441
|
+
}
|
|
6442
|
+
}
|
|
6443
|
+
|
|
5499
6444
|
/**
|
|
5500
6445
|
* DeleteLogDownloadTask request structure.
|
|
5501
6446
|
* @class
|
|
@@ -5782,6 +6727,41 @@ class TagInfo extends AbstractModel {
|
|
|
5782
6727
|
}
|
|
5783
6728
|
}
|
|
5784
6729
|
|
|
6730
|
+
/**
|
|
6731
|
+
* DeleteAccountUser response structure.
|
|
6732
|
+
* @class
|
|
6733
|
+
*/
|
|
6734
|
+
class DeleteAccountUserResponse extends AbstractModel {
|
|
6735
|
+
constructor(){
|
|
6736
|
+
super();
|
|
6737
|
+
|
|
6738
|
+
/**
|
|
6739
|
+
* Account deletion task ID.
|
|
6740
|
+
* @type {number || null}
|
|
6741
|
+
*/
|
|
6742
|
+
this.FlowId = null;
|
|
6743
|
+
|
|
6744
|
+
/**
|
|
6745
|
+
* 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.
|
|
6746
|
+
* @type {string || null}
|
|
6747
|
+
*/
|
|
6748
|
+
this.RequestId = null;
|
|
6749
|
+
|
|
6750
|
+
}
|
|
6751
|
+
|
|
6752
|
+
/**
|
|
6753
|
+
* @private
|
|
6754
|
+
*/
|
|
6755
|
+
deserialize(params) {
|
|
6756
|
+
if (!params) {
|
|
6757
|
+
return;
|
|
6758
|
+
}
|
|
6759
|
+
this.FlowId = 'FlowId' in params ? params.FlowId : null;
|
|
6760
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6761
|
+
|
|
6762
|
+
}
|
|
6763
|
+
}
|
|
6764
|
+
|
|
5785
6765
|
/**
|
|
5786
6766
|
* DescribeDBInstances response structure.
|
|
5787
6767
|
* @class
|
|
@@ -6117,18 +7097,37 @@ class DescribeInstanceParamsResponse extends AbstractModel {
|
|
|
6117
7097
|
}
|
|
6118
7098
|
|
|
6119
7099
|
/**
|
|
6120
|
-
*
|
|
7100
|
+
* Node details of the instance to be modified.
|
|
6121
7101
|
* @class
|
|
6122
7102
|
*/
|
|
6123
|
-
class
|
|
7103
|
+
class RemoveNodeList extends AbstractModel {
|
|
6124
7104
|
constructor(){
|
|
6125
7105
|
super();
|
|
6126
7106
|
|
|
6127
7107
|
/**
|
|
6128
|
-
*
|
|
7108
|
+
* Roles of nodes to be deleted.
|
|
7109
|
+
- SECONDARY: Mongod secondary node.
|
|
7110
|
+
- READONLY: read-only node.
|
|
7111
|
+
- MONGOS: Mongos node.
|
|
6129
7112
|
* @type {string || null}
|
|
6130
7113
|
*/
|
|
6131
|
-
this.
|
|
7114
|
+
this.Role = null;
|
|
7115
|
+
|
|
7116
|
+
/**
|
|
7117
|
+
* IDs of nodes to be deleted. For a sharded cluster instance, specify the names of nodes to be deleted on one shard. Nodes with the same names on other shards will also be deleted.
|
|
7118
|
+
- Obtaining method: Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), go to the **Node Management** tab, and obtain the **node ID**.
|
|
7119
|
+
- Note: For a sharded cluster instance, specify the IDs of nodes on shard 0. For example, cmgo-6hfk\*\*\*\*\_0-node-primary.
|
|
7120
|
+
* @type {string || null}
|
|
7121
|
+
*/
|
|
7122
|
+
this.NodeName = null;
|
|
7123
|
+
|
|
7124
|
+
/**
|
|
7125
|
+
* AZ corresponding to the node. For the currently supported AZs, see [Regions and AZs](https://www.tencentcloud.comom/document/product/240/3637?from_cn_redirect=1).
|
|
7126
|
+
- Single AZ: all nodes are in the same AZ.
|
|
7127
|
+
- Multiple AZs: The current standard specification involves three AZs. The primary and secondary nodes are not in the same AZ. Note: AZs corresponding to the nodes to be deleted should be specified. After deletion, the number of nodes in any 2 AZs should be larger than that in the third AZ.
|
|
7128
|
+
* @type {string || null}
|
|
7129
|
+
*/
|
|
7130
|
+
this.Zone = null;
|
|
6132
7131
|
|
|
6133
7132
|
}
|
|
6134
7133
|
|
|
@@ -6139,7 +7138,9 @@ class DescribeInstanceParamsRequest extends AbstractModel {
|
|
|
6139
7138
|
if (!params) {
|
|
6140
7139
|
return;
|
|
6141
7140
|
}
|
|
6142
|
-
this.
|
|
7141
|
+
this.Role = 'Role' in params ? params.Role : null;
|
|
7142
|
+
this.NodeName = 'NodeName' in params ? params.NodeName : null;
|
|
7143
|
+
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
6143
7144
|
|
|
6144
7145
|
}
|
|
6145
7146
|
}
|
|
@@ -6237,6 +7238,51 @@ class SlowLogItem extends AbstractModel {
|
|
|
6237
7238
|
}
|
|
6238
7239
|
}
|
|
6239
7240
|
|
|
7241
|
+
/**
|
|
7242
|
+
* SetInstanceMaintenance request structure.
|
|
7243
|
+
* @class
|
|
7244
|
+
*/
|
|
7245
|
+
class SetInstanceMaintenanceRequest extends AbstractModel {
|
|
7246
|
+
constructor(){
|
|
7247
|
+
super();
|
|
7248
|
+
|
|
7249
|
+
/**
|
|
7250
|
+
* Specifies the instance ID. For example, cmgo-p8vn****. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), and copy the instance ID from the instance list.
|
|
7251
|
+
|
|
7252
|
+
* @type {string || null}
|
|
7253
|
+
*/
|
|
7254
|
+
this.InstanceId = null;
|
|
7255
|
+
|
|
7256
|
+
/**
|
|
7257
|
+
* Start time of the maintenance window. The value range is any hour or half-hour between 00:00 and 23:00, such as 00:00 or 00:30.
|
|
7258
|
+
* @type {string || null}
|
|
7259
|
+
*/
|
|
7260
|
+
this.MaintenanceStart = null;
|
|
7261
|
+
|
|
7262
|
+
/**
|
|
7263
|
+
* End time of the maintenance window.
|
|
7264
|
+
- The value range is any hour or half-hour between 00:00 and 23:00. The minimum value of maintenance time is 30 minutes, and the maximum value is 3 hours.
|
|
7265
|
+
- The end time should be later than the start time.
|
|
7266
|
+
* @type {string || null}
|
|
7267
|
+
*/
|
|
7268
|
+
this.MaintenanceEnd = null;
|
|
7269
|
+
|
|
7270
|
+
}
|
|
7271
|
+
|
|
7272
|
+
/**
|
|
7273
|
+
* @private
|
|
7274
|
+
*/
|
|
7275
|
+
deserialize(params) {
|
|
7276
|
+
if (!params) {
|
|
7277
|
+
return;
|
|
7278
|
+
}
|
|
7279
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
7280
|
+
this.MaintenanceStart = 'MaintenanceStart' in params ? params.MaintenanceStart : null;
|
|
7281
|
+
this.MaintenanceEnd = 'MaintenanceEnd' in params ? params.MaintenanceEnd : null;
|
|
7282
|
+
|
|
7283
|
+
}
|
|
7284
|
+
}
|
|
7285
|
+
|
|
6240
7286
|
/**
|
|
6241
7287
|
* Instance details.
|
|
6242
7288
|
* @class
|
|
@@ -6804,36 +7850,47 @@ class UpgradeDBInstanceKernelVersionRequest extends AbstractModel {
|
|
|
6804
7850
|
module.exports = {
|
|
6805
7851
|
DescribeSpecInfoRequest: DescribeSpecInfoRequest,
|
|
6806
7852
|
CreateDBInstanceRequest: CreateDBInstanceRequest,
|
|
7853
|
+
DescribeCurrentOpResponse: DescribeCurrentOpResponse,
|
|
7854
|
+
ModifyInstanceParamsResponse: ModifyInstanceParamsResponse,
|
|
7855
|
+
SetInstanceMaintenanceResponse: SetInstanceMaintenanceResponse,
|
|
6807
7856
|
CreateBackupDBInstanceResponse: CreateBackupDBInstanceResponse,
|
|
6808
7857
|
DBInstancePrice: DBInstancePrice,
|
|
7858
|
+
KillOpsRequest: KillOpsRequest,
|
|
6809
7859
|
DeleteLogDownloadTaskResponse: DeleteLogDownloadTaskResponse,
|
|
6810
7860
|
DescribeDBInstanceNamespaceResponse: DescribeDBInstanceNamespaceResponse,
|
|
6811
7861
|
DescribeSlowLogsRequest: DescribeSlowLogsRequest,
|
|
6812
7862
|
FlushInstanceRouterConfigResponse: FlushInstanceRouterConfigResponse,
|
|
6813
7863
|
SetDBInstanceDeletionProtectionRequest: SetDBInstanceDeletionProtectionRequest,
|
|
6814
|
-
|
|
7864
|
+
InstanceMultiParam: InstanceMultiParam,
|
|
6815
7865
|
DescribeInstanceSSLRequest: DescribeInstanceSSLRequest,
|
|
7866
|
+
DescribeBackupRulesResponse: DescribeBackupRulesResponse,
|
|
6816
7867
|
SlowLogPattern: SlowLogPattern,
|
|
6817
7868
|
Task: Task,
|
|
6818
7869
|
AssignProjectResponse: AssignProjectResponse,
|
|
6819
7870
|
DescribeDBInstanceDealResponse: DescribeDBInstanceDealResponse,
|
|
7871
|
+
ModifyMongoDBParamType: ModifyMongoDBParamType,
|
|
6820
7872
|
OfflineIsolatedDBInstanceResponse: OfflineIsolatedDBInstanceResponse,
|
|
6821
7873
|
IsolateDBInstanceResponse: IsolateDBInstanceResponse,
|
|
6822
|
-
|
|
7874
|
+
DescribeSecurityGroupRequest: DescribeSecurityGroupRequest,
|
|
7875
|
+
RenameInstanceRequest: RenameInstanceRequest,
|
|
7876
|
+
DescribeBackupRulesRequest: DescribeBackupRulesRequest,
|
|
6823
7877
|
DescribeBackupDownloadTaskResponse: DescribeBackupDownloadTaskResponse,
|
|
6824
7878
|
AddNodeList: AddNodeList,
|
|
6825
7879
|
FlushInstanceRouterConfigRequest: FlushInstanceRouterConfigRequest,
|
|
6826
7880
|
DBInstanceInfo: DBInstanceInfo,
|
|
6827
|
-
|
|
7881
|
+
SetAccountUserPrivilegeResponse: SetAccountUserPrivilegeResponse,
|
|
6828
7882
|
ModifyDBInstanceNetworkAddressRequest: ModifyDBInstanceNetworkAddressRequest,
|
|
6829
7883
|
CreateDBInstanceHourResponse: CreateDBInstanceHourResponse,
|
|
6830
7884
|
InstanceEnableSSLRequest: InstanceEnableSSLRequest,
|
|
6831
7885
|
DescribeDBInstanceNamespaceRequest: DescribeDBInstanceNamespaceRequest,
|
|
6832
|
-
|
|
7886
|
+
EnableTransparentDataEncryptionRequest: EnableTransparentDataEncryptionRequest,
|
|
6833
7887
|
LogInfo: LogInfo,
|
|
7888
|
+
DeleteAccountUserRequest: DeleteAccountUserRequest,
|
|
6834
7889
|
SpecItem: SpecItem,
|
|
6835
7890
|
DescribeDetailedSlowLogsRequest: DescribeDetailedSlowLogsRequest,
|
|
7891
|
+
UpgradeDbInstanceVersionRequest: UpgradeDbInstanceVersionRequest,
|
|
6836
7892
|
ModifyDBInstanceNetworkAddressResponse: ModifyDBInstanceNetworkAddressResponse,
|
|
7893
|
+
CreateAccountUserResponse: CreateAccountUserResponse,
|
|
6837
7894
|
DescribeSlowLogPatternsResponse: DescribeSlowLogPatternsResponse,
|
|
6838
7895
|
BackupDownloadTaskStatus: BackupDownloadTaskStatus,
|
|
6839
7896
|
DescribeSlowLogsResponse: DescribeSlowLogsResponse,
|
|
@@ -6841,23 +7898,27 @@ module.exports = {
|
|
|
6841
7898
|
BackupInfo: BackupInfo,
|
|
6842
7899
|
DescribeDBInstancesRequest: DescribeDBInstancesRequest,
|
|
6843
7900
|
InstanceEnableSSLResponse: InstanceEnableSSLResponse,
|
|
7901
|
+
CurrentOp: CurrentOp,
|
|
6844
7902
|
ModifyDBInstanceSpecRequest: ModifyDBInstanceSpecRequest,
|
|
6845
7903
|
DescribeLogDownloadTasksRequest: DescribeLogDownloadTasksRequest,
|
|
7904
|
+
Auth: Auth,
|
|
6846
7905
|
ResetDBInstancePasswordRequest: ResetDBInstancePasswordRequest,
|
|
6847
7906
|
InstanceIntegerParam: InstanceIntegerParam,
|
|
6848
7907
|
ModifyNetworkAddress: ModifyNetworkAddress,
|
|
6849
7908
|
DescribeAsyncRequestInfoResponse: DescribeAsyncRequestInfoResponse,
|
|
6850
7909
|
CreateDBInstanceResponse: CreateDBInstanceResponse,
|
|
6851
7910
|
CreateLogDownloadTaskRequest: CreateLogDownloadTaskRequest,
|
|
7911
|
+
CreateAccountUserRequest: CreateAccountUserRequest,
|
|
6852
7912
|
InstanceTextParam: InstanceTextParam,
|
|
6853
7913
|
ModifyDBInstanceSecurityGroupRequest: ModifyDBInstanceSecurityGroupRequest,
|
|
6854
7914
|
InquirePriceRenewDBInstancesRequest: InquirePriceRenewDBInstancesRequest,
|
|
6855
7915
|
DescribeBackupDownloadTaskRequest: DescribeBackupDownloadTaskRequest,
|
|
7916
|
+
Operation: Operation,
|
|
6856
7917
|
DescribeClientConnectionsResponse: DescribeClientConnectionsResponse,
|
|
6857
7918
|
TerminateDBInstancesRequest: TerminateDBInstancesRequest,
|
|
6858
7919
|
DescribeDBBackupsResponse: DescribeDBBackupsResponse,
|
|
6859
7920
|
ModifyDBInstanceSecurityGroupResponse: ModifyDBInstanceSecurityGroupResponse,
|
|
6860
|
-
|
|
7921
|
+
DescribeInstanceParamsRequest: DescribeInstanceParamsRequest,
|
|
6861
7922
|
NodeTag: NodeTag,
|
|
6862
7923
|
InquirePriceCreateDBInstancesResponse: InquirePriceCreateDBInstancesResponse,
|
|
6863
7924
|
DescribeSecurityGroupResponse: DescribeSecurityGroupResponse,
|
|
@@ -6875,6 +7936,7 @@ module.exports = {
|
|
|
6875
7936
|
DescribeDBInstanceNodePropertyResponse: DescribeDBInstanceNodePropertyResponse,
|
|
6876
7937
|
DescribeMongodbLogsResponse: DescribeMongodbLogsResponse,
|
|
6877
7938
|
DescribeInstanceSSLResponse: DescribeInstanceSSLResponse,
|
|
7939
|
+
DescribeCurrentOpRequest: DescribeCurrentOpRequest,
|
|
6878
7940
|
BackupDownloadTask: BackupDownloadTask,
|
|
6879
7941
|
DescribeDBBackupsRequest: DescribeDBBackupsRequest,
|
|
6880
7942
|
DescribeClientConnectionsRequest: DescribeClientConnectionsRequest,
|
|
@@ -6882,32 +7944,38 @@ module.exports = {
|
|
|
6882
7944
|
DescribeDetailedSlowLogsResponse: DescribeDetailedSlowLogsResponse,
|
|
6883
7945
|
ShardInfo: ShardInfo,
|
|
6884
7946
|
TerminateDBInstancesResponse: TerminateDBInstancesResponse,
|
|
6885
|
-
|
|
7947
|
+
DescribeDBInstanceNodePropertyRequest: DescribeDBInstanceNodePropertyRequest,
|
|
6886
7948
|
RenewDBInstancesResponse: RenewDBInstancesResponse,
|
|
6887
7949
|
InstanceEnumParam: InstanceEnumParam,
|
|
6888
7950
|
RenameInstanceResponse: RenameInstanceResponse,
|
|
6889
7951
|
CreateBackupDBInstanceRequest: CreateBackupDBInstanceRequest,
|
|
7952
|
+
SetAccountUserPrivilegeRequest: SetAccountUserPrivilegeRequest,
|
|
6890
7953
|
UpgradeDbInstanceVersionResponse: UpgradeDbInstanceVersionResponse,
|
|
6891
7954
|
NodeProperty: NodeProperty,
|
|
7955
|
+
KillOpsResponse: KillOpsResponse,
|
|
6892
7956
|
IsolateDBInstanceRequest: IsolateDBInstanceRequest,
|
|
6893
7957
|
CreateDBInstanceHourRequest: CreateDBInstanceHourRequest,
|
|
7958
|
+
EnableTransparentDataEncryptionResponse: EnableTransparentDataEncryptionResponse,
|
|
6894
7959
|
AssignProjectRequest: AssignProjectRequest,
|
|
6895
7960
|
DescribeMongodbLogsRequest: DescribeMongodbLogsRequest,
|
|
6896
7961
|
CreateBackupDownloadTaskResponse: CreateBackupDownloadTaskResponse,
|
|
6897
7962
|
CreateLogDownloadTaskResponse: CreateLogDownloadTaskResponse,
|
|
7963
|
+
ModifyInstanceParamsRequest: ModifyInstanceParamsRequest,
|
|
6898
7964
|
DeleteLogDownloadTaskRequest: DeleteLogDownloadTaskRequest,
|
|
6899
7965
|
SpecificationInfo: SpecificationInfo,
|
|
6900
7966
|
DescribeSlowLogPatternsRequest: DescribeSlowLogPatternsRequest,
|
|
6901
7967
|
DescribeSpecInfoResponse: DescribeSpecInfoResponse,
|
|
6902
7968
|
InquirePriceRenewDBInstancesResponse: InquirePriceRenewDBInstancesResponse,
|
|
6903
7969
|
TagInfo: TagInfo,
|
|
7970
|
+
DeleteAccountUserResponse: DeleteAccountUserResponse,
|
|
6904
7971
|
DescribeDBInstancesResponse: DescribeDBInstancesResponse,
|
|
6905
7972
|
OfflineIsolatedDBInstanceRequest: OfflineIsolatedDBInstanceRequest,
|
|
6906
7973
|
InquirePriceCreateDBInstancesRequest: InquirePriceCreateDBInstancesRequest,
|
|
6907
7974
|
DescribeInstanceParamsResponse: DescribeInstanceParamsResponse,
|
|
6908
|
-
|
|
7975
|
+
RemoveNodeList: RemoveNodeList,
|
|
6909
7976
|
DescribeLogDownloadTasksResponse: DescribeLogDownloadTasksResponse,
|
|
6910
7977
|
SlowLogItem: SlowLogItem,
|
|
7978
|
+
SetInstanceMaintenanceRequest: SetInstanceMaintenanceRequest,
|
|
6911
7979
|
InstanceDetail: InstanceDetail,
|
|
6912
7980
|
ModifyDBInstanceSpecResponse: ModifyDBInstanceSpecResponse,
|
|
6913
7981
|
InstanceChargePrepaid: InstanceChargePrepaid,
|