tencentcloud-sdk-nodejs-intl-en 3.0.749 → 3.0.751
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/cdb/v20170320/cdb_client.js +18 -115
- package/tencentcloud/cdb/v20170320/models.js +486 -1401
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/faceid/v20180301/faceid_client.js +42 -16
- package/tencentcloud/faceid/v20180301/models.js +275 -81
- package/tencentcloud/tdmq/v20200217/models.js +2088 -333
- package/tencentcloud/tdmq/v20200217/tdmq_client.js +655 -479
|
@@ -547,97 +547,6 @@ class CreateCdbProxyResponse extends AbstractModel {
|
|
|
547
547
|
}
|
|
548
548
|
}
|
|
549
549
|
|
|
550
|
-
/**
|
|
551
|
-
* Read/Write separation information of the proxy
|
|
552
|
-
* @class
|
|
553
|
-
*/
|
|
554
|
-
class RWInfo extends AbstractModel {
|
|
555
|
-
constructor(){
|
|
556
|
-
super();
|
|
557
|
-
|
|
558
|
-
/**
|
|
559
|
-
* Number of instances in the proxy group
|
|
560
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
561
|
-
* @type {number || null}
|
|
562
|
-
*/
|
|
563
|
-
this.InstCount = null;
|
|
564
|
-
|
|
565
|
-
/**
|
|
566
|
-
* Assignment mode of read/write weights
|
|
567
|
-
Valid values: `system` (auto-assigned), `custom`
|
|
568
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
569
|
-
* @type {string || null}
|
|
570
|
-
*/
|
|
571
|
-
this.WeightMode = null;
|
|
572
|
-
|
|
573
|
-
/**
|
|
574
|
-
* Whether to remove delayed read-only instances from the proxy group
|
|
575
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
576
|
-
* @type {boolean || null}
|
|
577
|
-
*/
|
|
578
|
-
this.IsKickOut = null;
|
|
579
|
-
|
|
580
|
-
/**
|
|
581
|
-
* The minimum number of read-only instances allowed by the proxy group
|
|
582
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
583
|
-
* @type {number || null}
|
|
584
|
-
*/
|
|
585
|
-
this.MinCount = null;
|
|
586
|
-
|
|
587
|
-
/**
|
|
588
|
-
* Delay threshold
|
|
589
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
590
|
-
* @type {number || null}
|
|
591
|
-
*/
|
|
592
|
-
this.MaxDelay = null;
|
|
593
|
-
|
|
594
|
-
/**
|
|
595
|
-
* Whether to enable failover
|
|
596
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
597
|
-
* @type {boolean || null}
|
|
598
|
-
*/
|
|
599
|
-
this.FailOver = null;
|
|
600
|
-
|
|
601
|
-
/**
|
|
602
|
-
* Whether to automatically add newly created read-only instances to the proxy group
|
|
603
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
604
|
-
* @type {boolean || null}
|
|
605
|
-
*/
|
|
606
|
-
this.AutoAddRo = null;
|
|
607
|
-
|
|
608
|
-
/**
|
|
609
|
-
* Information of instances in the proxy group
|
|
610
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
611
|
-
* @type {RWInstanceInfo || null}
|
|
612
|
-
*/
|
|
613
|
-
this.RWInstInfo = null;
|
|
614
|
-
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
/**
|
|
618
|
-
* @private
|
|
619
|
-
*/
|
|
620
|
-
deserialize(params) {
|
|
621
|
-
if (!params) {
|
|
622
|
-
return;
|
|
623
|
-
}
|
|
624
|
-
this.InstCount = 'InstCount' in params ? params.InstCount : null;
|
|
625
|
-
this.WeightMode = 'WeightMode' in params ? params.WeightMode : null;
|
|
626
|
-
this.IsKickOut = 'IsKickOut' in params ? params.IsKickOut : null;
|
|
627
|
-
this.MinCount = 'MinCount' in params ? params.MinCount : null;
|
|
628
|
-
this.MaxDelay = 'MaxDelay' in params ? params.MaxDelay : null;
|
|
629
|
-
this.FailOver = 'FailOver' in params ? params.FailOver : null;
|
|
630
|
-
this.AutoAddRo = 'AutoAddRo' in params ? params.AutoAddRo : null;
|
|
631
|
-
|
|
632
|
-
if (params.RWInstInfo) {
|
|
633
|
-
let obj = new RWInstanceInfo();
|
|
634
|
-
obj.deserialize(params.RWInstInfo)
|
|
635
|
-
this.RWInstInfo = obj;
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
}
|
|
639
|
-
}
|
|
640
|
-
|
|
641
550
|
/**
|
|
642
551
|
* Time range available for instance rollback
|
|
643
552
|
* @class
|
|
@@ -1425,27 +1334,6 @@ class DescribeSupportedPrivilegesRequest extends AbstractModel {
|
|
|
1425
1334
|
}
|
|
1426
1335
|
}
|
|
1427
1336
|
|
|
1428
|
-
/**
|
|
1429
|
-
* Information of instances in the proxy group
|
|
1430
|
-
* @class
|
|
1431
|
-
*/
|
|
1432
|
-
class RWInstanceInfo extends AbstractModel {
|
|
1433
|
-
constructor(){
|
|
1434
|
-
super();
|
|
1435
|
-
|
|
1436
|
-
}
|
|
1437
|
-
|
|
1438
|
-
/**
|
|
1439
|
-
* @private
|
|
1440
|
-
*/
|
|
1441
|
-
deserialize(params) {
|
|
1442
|
-
if (!params) {
|
|
1443
|
-
return;
|
|
1444
|
-
}
|
|
1445
|
-
|
|
1446
|
-
}
|
|
1447
|
-
}
|
|
1448
|
-
|
|
1449
1337
|
/**
|
|
1450
1338
|
* DescribeParamTemplateInfo request structure.
|
|
1451
1339
|
* @class
|
|
@@ -2455,11 +2343,17 @@ class AnalyzeAuditLogsRequest extends AbstractModel {
|
|
|
2455
2343
|
this.AggregationConditions = null;
|
|
2456
2344
|
|
|
2457
2345
|
/**
|
|
2458
|
-
* The result set of the audit log filtered by this condition is set as the analysis
|
|
2346
|
+
* This parameter is disused. The result set of the audit log filtered by this condition is set as the analysis log.
|
|
2459
2347
|
* @type {AuditLogFilter || null}
|
|
2460
2348
|
*/
|
|
2461
2349
|
this.AuditLogFilter = null;
|
|
2462
2350
|
|
|
2351
|
+
/**
|
|
2352
|
+
* The result set of the audit log filtered by this condition is set as the analysis Log.
|
|
2353
|
+
* @type {Array.<InstanceAuditLogFilters> || null}
|
|
2354
|
+
*/
|
|
2355
|
+
this.LogFilter = null;
|
|
2356
|
+
|
|
2463
2357
|
}
|
|
2464
2358
|
|
|
2465
2359
|
/**
|
|
@@ -2488,6 +2382,15 @@ class AnalyzeAuditLogsRequest extends AbstractModel {
|
|
|
2488
2382
|
this.AuditLogFilter = obj;
|
|
2489
2383
|
}
|
|
2490
2384
|
|
|
2385
|
+
if (params.LogFilter) {
|
|
2386
|
+
this.LogFilter = new Array();
|
|
2387
|
+
for (let z in params.LogFilter) {
|
|
2388
|
+
let obj = new InstanceAuditLogFilters();
|
|
2389
|
+
obj.deserialize(params.LogFilter[z]);
|
|
2390
|
+
this.LogFilter.push(obj);
|
|
2391
|
+
}
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2491
2394
|
}
|
|
2492
2395
|
}
|
|
2493
2396
|
|
|
@@ -3065,48 +2968,6 @@ class AssociateSecurityGroupsResponse extends AbstractModel {
|
|
|
3065
2968
|
}
|
|
3066
2969
|
}
|
|
3067
2970
|
|
|
3068
|
-
/**
|
|
3069
|
-
* ModifyCDBProxyDesc request structure.
|
|
3070
|
-
* @class
|
|
3071
|
-
*/
|
|
3072
|
-
class ModifyCDBProxyDescRequest extends AbstractModel {
|
|
3073
|
-
constructor(){
|
|
3074
|
-
super();
|
|
3075
|
-
|
|
3076
|
-
/**
|
|
3077
|
-
* Instance ID
|
|
3078
|
-
* @type {string || null}
|
|
3079
|
-
*/
|
|
3080
|
-
this.InstanceId = null;
|
|
3081
|
-
|
|
3082
|
-
/**
|
|
3083
|
-
* Database proxy ID
|
|
3084
|
-
* @type {string || null}
|
|
3085
|
-
*/
|
|
3086
|
-
this.ProxyGroupId = null;
|
|
3087
|
-
|
|
3088
|
-
/**
|
|
3089
|
-
* Database proxy description
|
|
3090
|
-
* @type {string || null}
|
|
3091
|
-
*/
|
|
3092
|
-
this.Desc = null;
|
|
3093
|
-
|
|
3094
|
-
}
|
|
3095
|
-
|
|
3096
|
-
/**
|
|
3097
|
-
* @private
|
|
3098
|
-
*/
|
|
3099
|
-
deserialize(params) {
|
|
3100
|
-
if (!params) {
|
|
3101
|
-
return;
|
|
3102
|
-
}
|
|
3103
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
3104
|
-
this.ProxyGroupId = 'ProxyGroupId' in params ? params.ProxyGroupId : null;
|
|
3105
|
-
this.Desc = 'Desc' in params ? params.Desc : null;
|
|
3106
|
-
|
|
3107
|
-
}
|
|
3108
|
-
}
|
|
3109
|
-
|
|
3110
2971
|
/**
|
|
3111
2972
|
* Configuration information of ECDB secondary database 2. This field is only applicable to ECDB instances
|
|
3112
2973
|
* @class
|
|
@@ -3156,123 +3017,6 @@ class BackupConfig extends AbstractModel {
|
|
|
3156
3017
|
}
|
|
3157
3018
|
}
|
|
3158
3019
|
|
|
3159
|
-
/**
|
|
3160
|
-
* DescribeCDBProxy response structure.
|
|
3161
|
-
* @class
|
|
3162
|
-
*/
|
|
3163
|
-
class DescribeCDBProxyResponse extends AbstractModel {
|
|
3164
|
-
constructor(){
|
|
3165
|
-
super();
|
|
3166
|
-
|
|
3167
|
-
/**
|
|
3168
|
-
* Basic information of the proxy group
|
|
3169
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
3170
|
-
* @type {BaseGroupInfo || null}
|
|
3171
|
-
*/
|
|
3172
|
-
this.BaseGroup = null;
|
|
3173
|
-
|
|
3174
|
-
/**
|
|
3175
|
-
* Address information of the proxy group
|
|
3176
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
3177
|
-
* @type {Address || null}
|
|
3178
|
-
*/
|
|
3179
|
-
this.Address = null;
|
|
3180
|
-
|
|
3181
|
-
/**
|
|
3182
|
-
* Node information of the proxy group
|
|
3183
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
3184
|
-
* @type {ProxyNodeInfo || null}
|
|
3185
|
-
*/
|
|
3186
|
-
this.ProxyNode = null;
|
|
3187
|
-
|
|
3188
|
-
/**
|
|
3189
|
-
* Read/Write separation information
|
|
3190
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
3191
|
-
* @type {RWInfo || null}
|
|
3192
|
-
*/
|
|
3193
|
-
this.RWInstInfo = null;
|
|
3194
|
-
|
|
3195
|
-
/**
|
|
3196
|
-
* Connection pool information
|
|
3197
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
3198
|
-
* @type {ConnectionPoolInfo || null}
|
|
3199
|
-
*/
|
|
3200
|
-
this.ConnectionPoolInfo = null;
|
|
3201
|
-
|
|
3202
|
-
/**
|
|
3203
|
-
* Number of instances in the proxy group
|
|
3204
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
3205
|
-
* @type {number || null}
|
|
3206
|
-
*/
|
|
3207
|
-
this.Count = null;
|
|
3208
|
-
|
|
3209
|
-
/**
|
|
3210
|
-
* Proxy information
|
|
3211
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
3212
|
-
* @type {Array.<ProxyGroup> || null}
|
|
3213
|
-
*/
|
|
3214
|
-
this.ProxyGroup = null;
|
|
3215
|
-
|
|
3216
|
-
/**
|
|
3217
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
3218
|
-
* @type {string || null}
|
|
3219
|
-
*/
|
|
3220
|
-
this.RequestId = null;
|
|
3221
|
-
|
|
3222
|
-
}
|
|
3223
|
-
|
|
3224
|
-
/**
|
|
3225
|
-
* @private
|
|
3226
|
-
*/
|
|
3227
|
-
deserialize(params) {
|
|
3228
|
-
if (!params) {
|
|
3229
|
-
return;
|
|
3230
|
-
}
|
|
3231
|
-
|
|
3232
|
-
if (params.BaseGroup) {
|
|
3233
|
-
let obj = new BaseGroupInfo();
|
|
3234
|
-
obj.deserialize(params.BaseGroup)
|
|
3235
|
-
this.BaseGroup = obj;
|
|
3236
|
-
}
|
|
3237
|
-
|
|
3238
|
-
if (params.Address) {
|
|
3239
|
-
let obj = new Address();
|
|
3240
|
-
obj.deserialize(params.Address)
|
|
3241
|
-
this.Address = obj;
|
|
3242
|
-
}
|
|
3243
|
-
|
|
3244
|
-
if (params.ProxyNode) {
|
|
3245
|
-
let obj = new ProxyNodeInfo();
|
|
3246
|
-
obj.deserialize(params.ProxyNode)
|
|
3247
|
-
this.ProxyNode = obj;
|
|
3248
|
-
}
|
|
3249
|
-
|
|
3250
|
-
if (params.RWInstInfo) {
|
|
3251
|
-
let obj = new RWInfo();
|
|
3252
|
-
obj.deserialize(params.RWInstInfo)
|
|
3253
|
-
this.RWInstInfo = obj;
|
|
3254
|
-
}
|
|
3255
|
-
|
|
3256
|
-
if (params.ConnectionPoolInfo) {
|
|
3257
|
-
let obj = new ConnectionPoolInfo();
|
|
3258
|
-
obj.deserialize(params.ConnectionPoolInfo)
|
|
3259
|
-
this.ConnectionPoolInfo = obj;
|
|
3260
|
-
}
|
|
3261
|
-
this.Count = 'Count' in params ? params.Count : null;
|
|
3262
|
-
|
|
3263
|
-
if (params.ProxyGroup) {
|
|
3264
|
-
this.ProxyGroup = new Array();
|
|
3265
|
-
for (let z in params.ProxyGroup) {
|
|
3266
|
-
let obj = new ProxyGroup();
|
|
3267
|
-
obj.deserialize(params.ProxyGroup[z]);
|
|
3268
|
-
this.ProxyGroup.push(obj);
|
|
3269
|
-
}
|
|
3270
|
-
}
|
|
3271
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3272
|
-
|
|
3273
|
-
}
|
|
3274
|
-
}
|
|
3275
|
-
|
|
3276
3020
|
/**
|
|
3277
3021
|
* Weight rule
|
|
3278
3022
|
* @class
|
|
@@ -3641,7 +3385,7 @@ class UpgradeDBInstanceRequest extends AbstractModel {
|
|
|
3641
3385
|
this.DeviceType = null;
|
|
3642
3386
|
|
|
3643
3387
|
/**
|
|
3644
|
-
* The number of CPU cores after the instance is upgraded. If this parameter is left empty,
|
|
3388
|
+
* The number of CPU cores after the instance is upgraded. If this parameter is left empty, the minimum value will be automatically filled based on the value specified by `Memory`.
|
|
3645
3389
|
* @type {number || null}
|
|
3646
3390
|
*/
|
|
3647
3391
|
this.Cpu = null;
|
|
@@ -3800,117 +3544,54 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
3800
3544
|
}
|
|
3801
3545
|
|
|
3802
3546
|
/**
|
|
3803
|
-
*
|
|
3547
|
+
* DescribeBinlogBackupOverview response structure.
|
|
3804
3548
|
* @class
|
|
3805
3549
|
*/
|
|
3806
|
-
class
|
|
3550
|
+
class DescribeBinlogBackupOverviewResponse extends AbstractModel {
|
|
3807
3551
|
constructor(){
|
|
3808
3552
|
super();
|
|
3809
3553
|
|
|
3810
3554
|
/**
|
|
3811
|
-
*
|
|
3812
|
-
* @type {
|
|
3555
|
+
* Total capacity of log backups in bytes (including remote log backups)
|
|
3556
|
+
* @type {number || null}
|
|
3813
3557
|
*/
|
|
3814
|
-
this.
|
|
3558
|
+
this.BinlogBackupVolume = null;
|
|
3815
3559
|
|
|
3816
3560
|
/**
|
|
3817
|
-
*
|
|
3818
|
-
* @type {
|
|
3561
|
+
* Total number of log backups (include remote log backups)
|
|
3562
|
+
* @type {number || null}
|
|
3819
3563
|
*/
|
|
3820
|
-
this.
|
|
3564
|
+
this.BinlogBackupCount = null;
|
|
3821
3565
|
|
|
3822
3566
|
/**
|
|
3823
|
-
*
|
|
3824
|
-
* @type {
|
|
3567
|
+
* Capacity of remote log backups in bytes
|
|
3568
|
+
* @type {number || null}
|
|
3825
3569
|
*/
|
|
3826
|
-
this.
|
|
3570
|
+
this.RemoteBinlogVolume = null;
|
|
3827
3571
|
|
|
3828
3572
|
/**
|
|
3829
|
-
*
|
|
3830
|
-
* @type {
|
|
3573
|
+
* Number of remote backups
|
|
3574
|
+
* @type {number || null}
|
|
3831
3575
|
*/
|
|
3832
|
-
this.
|
|
3576
|
+
this.RemoteBinlogCount = null;
|
|
3833
3577
|
|
|
3834
3578
|
/**
|
|
3835
|
-
*
|
|
3579
|
+
* Capacity of archive log backups in bytes
|
|
3836
3580
|
* @type {number || null}
|
|
3837
3581
|
*/
|
|
3838
|
-
this.
|
|
3582
|
+
this.BinlogArchiveVolume = null;
|
|
3839
3583
|
|
|
3840
3584
|
/**
|
|
3841
|
-
*
|
|
3585
|
+
* Number of archived log backups
|
|
3842
3586
|
* @type {number || null}
|
|
3843
3587
|
*/
|
|
3844
|
-
this.
|
|
3588
|
+
this.BinlogArchiveCount = null;
|
|
3845
3589
|
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
deserialize(params) {
|
|
3852
|
-
if (!params) {
|
|
3853
|
-
return;
|
|
3854
|
-
}
|
|
3855
|
-
this.ProxyGroupId = 'ProxyGroupId' in params ? params.ProxyGroupId : null;
|
|
3856
|
-
this.UniqVpcId = 'UniqVpcId' in params ? params.UniqVpcId : null;
|
|
3857
|
-
this.UniqSubnetId = 'UniqSubnetId' in params ? params.UniqSubnetId : null;
|
|
3858
|
-
this.DstIp = 'DstIp' in params ? params.DstIp : null;
|
|
3859
|
-
this.DstPort = 'DstPort' in params ? params.DstPort : null;
|
|
3860
|
-
this.ReleaseDuration = 'ReleaseDuration' in params ? params.ReleaseDuration : null;
|
|
3861
|
-
|
|
3862
|
-
}
|
|
3863
|
-
}
|
|
3864
|
-
|
|
3865
|
-
/**
|
|
3866
|
-
* DescribeBinlogBackupOverview response structure.
|
|
3867
|
-
* @class
|
|
3868
|
-
*/
|
|
3869
|
-
class DescribeBinlogBackupOverviewResponse extends AbstractModel {
|
|
3870
|
-
constructor(){
|
|
3871
|
-
super();
|
|
3872
|
-
|
|
3873
|
-
/**
|
|
3874
|
-
* Total capacity of log backups in bytes (including remote log backups)
|
|
3875
|
-
* @type {number || null}
|
|
3876
|
-
*/
|
|
3877
|
-
this.BinlogBackupVolume = null;
|
|
3878
|
-
|
|
3879
|
-
/**
|
|
3880
|
-
* Total number of log backups (include remote log backups)
|
|
3881
|
-
* @type {number || null}
|
|
3882
|
-
*/
|
|
3883
|
-
this.BinlogBackupCount = null;
|
|
3884
|
-
|
|
3885
|
-
/**
|
|
3886
|
-
* Capacity of remote log backups in bytes
|
|
3887
|
-
* @type {number || null}
|
|
3888
|
-
*/
|
|
3889
|
-
this.RemoteBinlogVolume = null;
|
|
3890
|
-
|
|
3891
|
-
/**
|
|
3892
|
-
* Number of remote backups
|
|
3893
|
-
* @type {number || null}
|
|
3894
|
-
*/
|
|
3895
|
-
this.RemoteBinlogCount = null;
|
|
3896
|
-
|
|
3897
|
-
/**
|
|
3898
|
-
* Capacity of archive log backups in bytes
|
|
3899
|
-
* @type {number || null}
|
|
3900
|
-
*/
|
|
3901
|
-
this.BinlogArchiveVolume = null;
|
|
3902
|
-
|
|
3903
|
-
/**
|
|
3904
|
-
* Number of archived log backups
|
|
3905
|
-
* @type {number || null}
|
|
3906
|
-
*/
|
|
3907
|
-
this.BinlogArchiveCount = null;
|
|
3908
|
-
|
|
3909
|
-
/**
|
|
3910
|
-
* Log backup capacity of standard storage in bytes
|
|
3911
|
-
* @type {number || null}
|
|
3912
|
-
*/
|
|
3913
|
-
this.BinlogStandbyVolume = null;
|
|
3590
|
+
/**
|
|
3591
|
+
* Log backup capacity of standard storage in bytes
|
|
3592
|
+
* @type {number || null}
|
|
3593
|
+
*/
|
|
3594
|
+
this.BinlogStandbyVolume = null;
|
|
3914
3595
|
|
|
3915
3596
|
/**
|
|
3916
3597
|
* Number of log backups of standard storage
|
|
@@ -3995,57 +3676,6 @@ class SwitchDBInstanceMasterSlaveRequest extends AbstractModel {
|
|
|
3995
3676
|
}
|
|
3996
3677
|
}
|
|
3997
3678
|
|
|
3998
|
-
/**
|
|
3999
|
-
* ModifyCDBProxyConnectionPool request structure.
|
|
4000
|
-
* @class
|
|
4001
|
-
*/
|
|
4002
|
-
class ModifyCDBProxyConnectionPoolRequest extends AbstractModel {
|
|
4003
|
-
constructor(){
|
|
4004
|
-
super();
|
|
4005
|
-
|
|
4006
|
-
/**
|
|
4007
|
-
* Database proxy ID
|
|
4008
|
-
* @type {string || null}
|
|
4009
|
-
*/
|
|
4010
|
-
this.ProxyGroupId = null;
|
|
4011
|
-
|
|
4012
|
-
/**
|
|
4013
|
-
* Whether to enable the connection pool. Valid values: `true` (enable);
|
|
4014
|
-
`false` (disable).
|
|
4015
|
-
* @type {boolean || null}
|
|
4016
|
-
*/
|
|
4017
|
-
this.OpenConnectionPool = null;
|
|
4018
|
-
|
|
4019
|
-
/**
|
|
4020
|
-
* Connection pool type.
|
|
4021
|
-
You can use the `DescribeProxyConnectionPoolConf` API to query the connection pool type.
|
|
4022
|
-
* @type {string || null}
|
|
4023
|
-
*/
|
|
4024
|
-
this.ConnectionPoolType = null;
|
|
4025
|
-
|
|
4026
|
-
/**
|
|
4027
|
-
* Connection persistence timeout in seconds
|
|
4028
|
-
* @type {number || null}
|
|
4029
|
-
*/
|
|
4030
|
-
this.PoolConnectionTimeOut = null;
|
|
4031
|
-
|
|
4032
|
-
}
|
|
4033
|
-
|
|
4034
|
-
/**
|
|
4035
|
-
* @private
|
|
4036
|
-
*/
|
|
4037
|
-
deserialize(params) {
|
|
4038
|
-
if (!params) {
|
|
4039
|
-
return;
|
|
4040
|
-
}
|
|
4041
|
-
this.ProxyGroupId = 'ProxyGroupId' in params ? params.ProxyGroupId : null;
|
|
4042
|
-
this.OpenConnectionPool = 'OpenConnectionPool' in params ? params.OpenConnectionPool : null;
|
|
4043
|
-
this.ConnectionPoolType = 'ConnectionPoolType' in params ? params.ConnectionPoolType : null;
|
|
4044
|
-
this.PoolConnectionTimeOut = 'PoolConnectionTimeOut' in params ? params.PoolConnectionTimeOut : null;
|
|
4045
|
-
|
|
4046
|
-
}
|
|
4047
|
-
}
|
|
4048
|
-
|
|
4049
3679
|
/**
|
|
4050
3680
|
* ModifyCdbProxyAddressVipAndVPort request structure.
|
|
4051
3681
|
* @class
|
|
@@ -4813,98 +4443,6 @@ class ReleaseResult extends AbstractModel {
|
|
|
4813
4443
|
}
|
|
4814
4444
|
}
|
|
4815
4445
|
|
|
4816
|
-
/**
|
|
4817
|
-
* Database proxy group information
|
|
4818
|
-
* @class
|
|
4819
|
-
*/
|
|
4820
|
-
class ProxyGroups extends AbstractModel {
|
|
4821
|
-
constructor(){
|
|
4822
|
-
super();
|
|
4823
|
-
|
|
4824
|
-
/**
|
|
4825
|
-
* Basic information of the proxy
|
|
4826
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
4827
|
-
* @type {BaseGroupInfo || null}
|
|
4828
|
-
*/
|
|
4829
|
-
this.BaseGroup = null;
|
|
4830
|
-
|
|
4831
|
-
/**
|
|
4832
|
-
* Address information of the proxy
|
|
4833
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
4834
|
-
* @type {Array.<Address> || null}
|
|
4835
|
-
*/
|
|
4836
|
-
this.Address = null;
|
|
4837
|
-
|
|
4838
|
-
/**
|
|
4839
|
-
* Connection pool information of the proxy
|
|
4840
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
4841
|
-
* @type {ConnectionPoolInfo || null}
|
|
4842
|
-
*/
|
|
4843
|
-
this.ConnectionPoolInfo = null;
|
|
4844
|
-
|
|
4845
|
-
/**
|
|
4846
|
-
* Node information of the proxy
|
|
4847
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
4848
|
-
* @type {Array.<ProxyNodeInfo> || null}
|
|
4849
|
-
*/
|
|
4850
|
-
this.ProxyNode = null;
|
|
4851
|
-
|
|
4852
|
-
/**
|
|
4853
|
-
* Routing information of the proxy
|
|
4854
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
4855
|
-
* @type {RWInfos || null}
|
|
4856
|
-
*/
|
|
4857
|
-
this.RWInstInfo = null;
|
|
4858
|
-
|
|
4859
|
-
}
|
|
4860
|
-
|
|
4861
|
-
/**
|
|
4862
|
-
* @private
|
|
4863
|
-
*/
|
|
4864
|
-
deserialize(params) {
|
|
4865
|
-
if (!params) {
|
|
4866
|
-
return;
|
|
4867
|
-
}
|
|
4868
|
-
|
|
4869
|
-
if (params.BaseGroup) {
|
|
4870
|
-
let obj = new BaseGroupInfo();
|
|
4871
|
-
obj.deserialize(params.BaseGroup)
|
|
4872
|
-
this.BaseGroup = obj;
|
|
4873
|
-
}
|
|
4874
|
-
|
|
4875
|
-
if (params.Address) {
|
|
4876
|
-
this.Address = new Array();
|
|
4877
|
-
for (let z in params.Address) {
|
|
4878
|
-
let obj = new Address();
|
|
4879
|
-
obj.deserialize(params.Address[z]);
|
|
4880
|
-
this.Address.push(obj);
|
|
4881
|
-
}
|
|
4882
|
-
}
|
|
4883
|
-
|
|
4884
|
-
if (params.ConnectionPoolInfo) {
|
|
4885
|
-
let obj = new ConnectionPoolInfo();
|
|
4886
|
-
obj.deserialize(params.ConnectionPoolInfo)
|
|
4887
|
-
this.ConnectionPoolInfo = obj;
|
|
4888
|
-
}
|
|
4889
|
-
|
|
4890
|
-
if (params.ProxyNode) {
|
|
4891
|
-
this.ProxyNode = new Array();
|
|
4892
|
-
for (let z in params.ProxyNode) {
|
|
4893
|
-
let obj = new ProxyNodeInfo();
|
|
4894
|
-
obj.deserialize(params.ProxyNode[z]);
|
|
4895
|
-
this.ProxyNode.push(obj);
|
|
4896
|
-
}
|
|
4897
|
-
}
|
|
4898
|
-
|
|
4899
|
-
if (params.RWInstInfo) {
|
|
4900
|
-
let obj = new RWInfos();
|
|
4901
|
-
obj.deserialize(params.RWInstInfo)
|
|
4902
|
-
this.RWInstInfo = obj;
|
|
4903
|
-
}
|
|
4904
|
-
|
|
4905
|
-
}
|
|
4906
|
-
}
|
|
4907
|
-
|
|
4908
4446
|
/**
|
|
4909
4447
|
* Audit rule
|
|
4910
4448
|
* @class
|
|
@@ -5517,67 +5055,6 @@ class DescribeDefaultParamsRequest extends AbstractModel {
|
|
|
5517
5055
|
}
|
|
5518
5056
|
}
|
|
5519
5057
|
|
|
5520
|
-
/**
|
|
5521
|
-
* Address
|
|
5522
|
-
* @class
|
|
5523
|
-
*/
|
|
5524
|
-
class Address extends AbstractModel {
|
|
5525
|
-
constructor(){
|
|
5526
|
-
super();
|
|
5527
|
-
|
|
5528
|
-
/**
|
|
5529
|
-
* Address
|
|
5530
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
5531
|
-
* @type {string || null}
|
|
5532
|
-
*/
|
|
5533
|
-
this.Vip = null;
|
|
5534
|
-
|
|
5535
|
-
/**
|
|
5536
|
-
* Port
|
|
5537
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
5538
|
-
* @type {number || null}
|
|
5539
|
-
*/
|
|
5540
|
-
this.VPort = null;
|
|
5541
|
-
|
|
5542
|
-
/**
|
|
5543
|
-
* VPC ID
|
|
5544
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
5545
|
-
* @type {string || null}
|
|
5546
|
-
*/
|
|
5547
|
-
this.UniqVpcId = null;
|
|
5548
|
-
|
|
5549
|
-
/**
|
|
5550
|
-
* VPC subnet ID
|
|
5551
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
5552
|
-
* @type {string || null}
|
|
5553
|
-
*/
|
|
5554
|
-
this.UniqSubnet = null;
|
|
5555
|
-
|
|
5556
|
-
/**
|
|
5557
|
-
* Description
|
|
5558
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
5559
|
-
* @type {string || null}
|
|
5560
|
-
*/
|
|
5561
|
-
this.Desc = null;
|
|
5562
|
-
|
|
5563
|
-
}
|
|
5564
|
-
|
|
5565
|
-
/**
|
|
5566
|
-
* @private
|
|
5567
|
-
*/
|
|
5568
|
-
deserialize(params) {
|
|
5569
|
-
if (!params) {
|
|
5570
|
-
return;
|
|
5571
|
-
}
|
|
5572
|
-
this.Vip = 'Vip' in params ? params.Vip : null;
|
|
5573
|
-
this.VPort = 'VPort' in params ? params.VPort : null;
|
|
5574
|
-
this.UniqVpcId = 'UniqVpcId' in params ? params.UniqVpcId : null;
|
|
5575
|
-
this.UniqSubnet = 'UniqSubnet' in params ? params.UniqSubnet : null;
|
|
5576
|
-
this.Desc = 'Desc' in params ? params.Desc : null;
|
|
5577
|
-
|
|
5578
|
-
}
|
|
5579
|
-
}
|
|
5580
|
-
|
|
5581
5058
|
/**
|
|
5582
5059
|
* Proxy configuration
|
|
5583
5060
|
* @class
|
|
@@ -6627,42 +6104,6 @@ class DescribeDBSwitchRecordsResponse extends AbstractModel {
|
|
|
6627
6104
|
}
|
|
6628
6105
|
}
|
|
6629
6106
|
|
|
6630
|
-
/**
|
|
6631
|
-
* ModifyCDBProxyConnectionPool response structure.
|
|
6632
|
-
* @class
|
|
6633
|
-
*/
|
|
6634
|
-
class ModifyCDBProxyConnectionPoolResponse extends AbstractModel {
|
|
6635
|
-
constructor(){
|
|
6636
|
-
super();
|
|
6637
|
-
|
|
6638
|
-
/**
|
|
6639
|
-
* Async request ID
|
|
6640
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
6641
|
-
* @type {string || null}
|
|
6642
|
-
*/
|
|
6643
|
-
this.AsyncRequestId = null;
|
|
6644
|
-
|
|
6645
|
-
/**
|
|
6646
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
6647
|
-
* @type {string || null}
|
|
6648
|
-
*/
|
|
6649
|
-
this.RequestId = null;
|
|
6650
|
-
|
|
6651
|
-
}
|
|
6652
|
-
|
|
6653
|
-
/**
|
|
6654
|
-
* @private
|
|
6655
|
-
*/
|
|
6656
|
-
deserialize(params) {
|
|
6657
|
-
if (!params) {
|
|
6658
|
-
return;
|
|
6659
|
-
}
|
|
6660
|
-
this.AsyncRequestId = 'AsyncRequestId' in params ? params.AsyncRequestId : null;
|
|
6661
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6662
|
-
|
|
6663
|
-
}
|
|
6664
|
-
}
|
|
6665
|
-
|
|
6666
6107
|
/**
|
|
6667
6108
|
* Tag structure
|
|
6668
6109
|
* @class
|
|
@@ -7815,57 +7256,22 @@ class BalanceRoGroupLoadRequest extends AbstractModel {
|
|
|
7815
7256
|
}
|
|
7816
7257
|
|
|
7817
7258
|
/**
|
|
7818
|
-
*
|
|
7259
|
+
* DescribeBackupOverview response structure.
|
|
7819
7260
|
* @class
|
|
7820
7261
|
*/
|
|
7821
|
-
class
|
|
7262
|
+
class DescribeBackupOverviewResponse extends AbstractModel {
|
|
7822
7263
|
constructor(){
|
|
7823
7264
|
super();
|
|
7824
7265
|
|
|
7825
7266
|
/**
|
|
7826
|
-
*
|
|
7827
|
-
* @type {
|
|
7267
|
+
* Total number of backups of a user in the current region (including data backups and log backups).
|
|
7268
|
+
* @type {number || null}
|
|
7828
7269
|
*/
|
|
7829
|
-
this.
|
|
7270
|
+
this.BackupCount = null;
|
|
7830
7271
|
|
|
7831
7272
|
/**
|
|
7832
|
-
*
|
|
7833
|
-
* @type {
|
|
7834
|
-
*/
|
|
7835
|
-
this.ProxyGroupId = null;
|
|
7836
|
-
|
|
7837
|
-
}
|
|
7838
|
-
|
|
7839
|
-
/**
|
|
7840
|
-
* @private
|
|
7841
|
-
*/
|
|
7842
|
-
deserialize(params) {
|
|
7843
|
-
if (!params) {
|
|
7844
|
-
return;
|
|
7845
|
-
}
|
|
7846
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
7847
|
-
this.ProxyGroupId = 'ProxyGroupId' in params ? params.ProxyGroupId : null;
|
|
7848
|
-
|
|
7849
|
-
}
|
|
7850
|
-
}
|
|
7851
|
-
|
|
7852
|
-
/**
|
|
7853
|
-
* DescribeBackupOverview response structure.
|
|
7854
|
-
* @class
|
|
7855
|
-
*/
|
|
7856
|
-
class DescribeBackupOverviewResponse extends AbstractModel {
|
|
7857
|
-
constructor(){
|
|
7858
|
-
super();
|
|
7859
|
-
|
|
7860
|
-
/**
|
|
7861
|
-
* Total number of backups of a user in the current region (including data backups and log backups).
|
|
7862
|
-
* @type {number || null}
|
|
7863
|
-
*/
|
|
7864
|
-
this.BackupCount = null;
|
|
7865
|
-
|
|
7866
|
-
/**
|
|
7867
|
-
* Total capacity of backups of a user in the current region.
|
|
7868
|
-
* @type {number || null}
|
|
7273
|
+
* Total capacity of backups of a user in the current region.
|
|
7274
|
+
* @type {number || null}
|
|
7869
7275
|
*/
|
|
7870
7276
|
this.BackupVolume = null;
|
|
7871
7277
|
|
|
@@ -7958,32 +7364,24 @@ class DescribeLocalBinlogConfigRequest extends AbstractModel {
|
|
|
7958
7364
|
}
|
|
7959
7365
|
|
|
7960
7366
|
/**
|
|
7961
|
-
*
|
|
7367
|
+
* Instance tag information
|
|
7962
7368
|
* @class
|
|
7963
7369
|
*/
|
|
7964
|
-
class
|
|
7370
|
+
class TagsInfoOfInstance extends AbstractModel {
|
|
7965
7371
|
constructor(){
|
|
7966
7372
|
super();
|
|
7967
7373
|
|
|
7968
7374
|
/**
|
|
7969
|
-
*
|
|
7970
|
-
|
|
7971
|
-
* @type {number || null}
|
|
7972
|
-
*/
|
|
7973
|
-
this.Count = null;
|
|
7974
|
-
|
|
7975
|
-
/**
|
|
7976
|
-
* Proxy information
|
|
7977
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
7978
|
-
* @type {Array.<ProxyGroups> || null}
|
|
7375
|
+
* Instance ID
|
|
7376
|
+
* @type {string || null}
|
|
7979
7377
|
*/
|
|
7980
|
-
this.
|
|
7378
|
+
this.InstanceId = null;
|
|
7981
7379
|
|
|
7982
7380
|
/**
|
|
7983
|
-
*
|
|
7984
|
-
* @type {
|
|
7381
|
+
* Tag information
|
|
7382
|
+
* @type {Array.<TagInfoUnit> || null}
|
|
7985
7383
|
*/
|
|
7986
|
-
this.
|
|
7384
|
+
this.Tags = null;
|
|
7987
7385
|
|
|
7988
7386
|
}
|
|
7989
7387
|
|
|
@@ -7994,17 +7392,16 @@ Note: this field may return `null`, indicating that no valid value can be found.
|
|
|
7994
7392
|
if (!params) {
|
|
7995
7393
|
return;
|
|
7996
7394
|
}
|
|
7997
|
-
this.
|
|
7395
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
7998
7396
|
|
|
7999
|
-
if (params.
|
|
8000
|
-
this.
|
|
8001
|
-
for (let z in params.
|
|
8002
|
-
let obj = new
|
|
8003
|
-
obj.deserialize(params.
|
|
8004
|
-
this.
|
|
7397
|
+
if (params.Tags) {
|
|
7398
|
+
this.Tags = new Array();
|
|
7399
|
+
for (let z in params.Tags) {
|
|
7400
|
+
let obj = new TagInfoUnit();
|
|
7401
|
+
obj.deserialize(params.Tags[z]);
|
|
7402
|
+
this.Tags.push(obj);
|
|
8005
7403
|
}
|
|
8006
7404
|
}
|
|
8007
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8008
7405
|
|
|
8009
7406
|
}
|
|
8010
7407
|
}
|
|
@@ -8289,49 +7686,6 @@ class StopRollbackRequest extends AbstractModel {
|
|
|
8289
7686
|
}
|
|
8290
7687
|
}
|
|
8291
7688
|
|
|
8292
|
-
/**
|
|
8293
|
-
* Instance tag information
|
|
8294
|
-
* @class
|
|
8295
|
-
*/
|
|
8296
|
-
class TagsInfoOfInstance extends AbstractModel {
|
|
8297
|
-
constructor(){
|
|
8298
|
-
super();
|
|
8299
|
-
|
|
8300
|
-
/**
|
|
8301
|
-
* Instance ID
|
|
8302
|
-
* @type {string || null}
|
|
8303
|
-
*/
|
|
8304
|
-
this.InstanceId = null;
|
|
8305
|
-
|
|
8306
|
-
/**
|
|
8307
|
-
* Tag information
|
|
8308
|
-
* @type {Array.<TagInfoUnit> || null}
|
|
8309
|
-
*/
|
|
8310
|
-
this.Tags = null;
|
|
8311
|
-
|
|
8312
|
-
}
|
|
8313
|
-
|
|
8314
|
-
/**
|
|
8315
|
-
* @private
|
|
8316
|
-
*/
|
|
8317
|
-
deserialize(params) {
|
|
8318
|
-
if (!params) {
|
|
8319
|
-
return;
|
|
8320
|
-
}
|
|
8321
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
8322
|
-
|
|
8323
|
-
if (params.Tags) {
|
|
8324
|
-
this.Tags = new Array();
|
|
8325
|
-
for (let z in params.Tags) {
|
|
8326
|
-
let obj = new TagInfoUnit();
|
|
8327
|
-
obj.deserialize(params.Tags[z]);
|
|
8328
|
-
this.Tags.push(obj);
|
|
8329
|
-
}
|
|
8330
|
-
}
|
|
8331
|
-
|
|
8332
|
-
}
|
|
8333
|
-
}
|
|
8334
|
-
|
|
8335
7689
|
/**
|
|
8336
7690
|
* ResetRootAccount request structure.
|
|
8337
7691
|
* @class
|
|
@@ -8478,51 +7832,6 @@ class ModifyDBInstanceNameResponse extends AbstractModel {
|
|
|
8478
7832
|
}
|
|
8479
7833
|
}
|
|
8480
7834
|
|
|
8481
|
-
/**
|
|
8482
|
-
* Connection pool configuration of database proxy
|
|
8483
|
-
* @class
|
|
8484
|
-
*/
|
|
8485
|
-
class PoolConf extends AbstractModel {
|
|
8486
|
-
constructor(){
|
|
8487
|
-
super();
|
|
8488
|
-
|
|
8489
|
-
/**
|
|
8490
|
-
* Connection pool type. Valid value: `SessionConnectionPool` (session-level connection pool)
|
|
8491
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
8492
|
-
* @type {string || null}
|
|
8493
|
-
*/
|
|
8494
|
-
this.ConnectionPoolType = null;
|
|
8495
|
-
|
|
8496
|
-
/**
|
|
8497
|
-
* Maximum value of connection persistence timeout in seconds
|
|
8498
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
8499
|
-
* @type {number || null}
|
|
8500
|
-
*/
|
|
8501
|
-
this.MaxPoolConnectionTimeOut = null;
|
|
8502
|
-
|
|
8503
|
-
/**
|
|
8504
|
-
* Minimum value of connection persistence timeout in seconds
|
|
8505
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
8506
|
-
* @type {number || null}
|
|
8507
|
-
*/
|
|
8508
|
-
this.MinPoolConnectionTimeOut = null;
|
|
8509
|
-
|
|
8510
|
-
}
|
|
8511
|
-
|
|
8512
|
-
/**
|
|
8513
|
-
* @private
|
|
8514
|
-
*/
|
|
8515
|
-
deserialize(params) {
|
|
8516
|
-
if (!params) {
|
|
8517
|
-
return;
|
|
8518
|
-
}
|
|
8519
|
-
this.ConnectionPoolType = 'ConnectionPoolType' in params ? params.ConnectionPoolType : null;
|
|
8520
|
-
this.MaxPoolConnectionTimeOut = 'MaxPoolConnectionTimeOut' in params ? params.MaxPoolConnectionTimeOut : null;
|
|
8521
|
-
this.MinPoolConnectionTimeOut = 'MinPoolConnectionTimeOut' in params ? params.MinPoolConnectionTimeOut : null;
|
|
8522
|
-
|
|
8523
|
-
}
|
|
8524
|
-
}
|
|
8525
|
-
|
|
8526
7835
|
/**
|
|
8527
7836
|
* DescribeCloneList response structure.
|
|
8528
7837
|
* @class
|
|
@@ -8832,26 +8141,42 @@ class DeviceMemInfo extends AbstractModel {
|
|
|
8832
8141
|
}
|
|
8833
8142
|
|
|
8834
8143
|
/**
|
|
8835
|
-
*
|
|
8144
|
+
* UpgradeDBInstanceEngineVersion request structure.
|
|
8836
8145
|
* @class
|
|
8837
8146
|
*/
|
|
8838
|
-
class
|
|
8147
|
+
class UpgradeDBInstanceEngineVersionRequest extends AbstractModel {
|
|
8839
8148
|
constructor(){
|
|
8840
8149
|
super();
|
|
8841
8150
|
|
|
8842
8151
|
/**
|
|
8843
|
-
*
|
|
8844
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8152
|
+
* Instance ID in the format of cdb-c1nl9rpv or cdbro-c1nl9rpv. It is the same as the instance ID displayed on the TencentDB Console page. You can use the [instance list querying API](https://intl.cloud.tencent.com/document/api/236/15872?from_cn_redirect=1) to query the ID, whose value is the `InstanceId` value in output parameters.
|
|
8845
8153
|
* @type {string || null}
|
|
8846
8154
|
*/
|
|
8847
|
-
this.
|
|
8155
|
+
this.InstanceId = null;
|
|
8848
8156
|
|
|
8849
8157
|
/**
|
|
8850
|
-
*
|
|
8851
|
-
|
|
8852
|
-
* @type {Array.<Bucket> || null}
|
|
8158
|
+
* Version of primary instance database engine. Value range: 5.6, 5.7
|
|
8159
|
+
* @type {string || null}
|
|
8853
8160
|
*/
|
|
8854
|
-
this.
|
|
8161
|
+
this.EngineVersion = null;
|
|
8162
|
+
|
|
8163
|
+
/**
|
|
8164
|
+
* Switch mode for accessing the new instance. Valid values: `0` (switch immediately), `1` (switch within a time window). Default value: `0`. If the value is `1`, the switch process will be performed within a time window. Or, you can call the [SwitchForUpgrade](https://intl.cloud.tencent.com/document/product/236/15864?from_cn_redirect=1) API to trigger the process.
|
|
8165
|
+
* @type {number || null}
|
|
8166
|
+
*/
|
|
8167
|
+
this.WaitSwitch = null;
|
|
8168
|
+
|
|
8169
|
+
/**
|
|
8170
|
+
* Whether to upgrade kernel minor version. Valid values: 1 (upgrade kernel minor version), 0 (upgrade database engine).
|
|
8171
|
+
* @type {number || null}
|
|
8172
|
+
*/
|
|
8173
|
+
this.UpgradeSubversion = null;
|
|
8174
|
+
|
|
8175
|
+
/**
|
|
8176
|
+
* Delay threshold. Value range: 1-10
|
|
8177
|
+
* @type {number || null}
|
|
8178
|
+
*/
|
|
8179
|
+
this.MaxDelayTime = null;
|
|
8855
8180
|
|
|
8856
8181
|
}
|
|
8857
8182
|
|
|
@@ -8862,16 +8187,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8862
8187
|
if (!params) {
|
|
8863
8188
|
return;
|
|
8864
8189
|
}
|
|
8865
|
-
this.
|
|
8866
|
-
|
|
8867
|
-
|
|
8868
|
-
|
|
8869
|
-
|
|
8870
|
-
let obj = new Bucket();
|
|
8871
|
-
obj.deserialize(params.Buckets[z]);
|
|
8872
|
-
this.Buckets.push(obj);
|
|
8873
|
-
}
|
|
8874
|
-
}
|
|
8190
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
8191
|
+
this.EngineVersion = 'EngineVersion' in params ? params.EngineVersion : null;
|
|
8192
|
+
this.WaitSwitch = 'WaitSwitch' in params ? params.WaitSwitch : null;
|
|
8193
|
+
this.UpgradeSubversion = 'UpgradeSubversion' in params ? params.UpgradeSubversion : null;
|
|
8194
|
+
this.MaxDelayTime = 'MaxDelayTime' in params ? params.MaxDelayTime : null;
|
|
8875
8195
|
|
|
8876
8196
|
}
|
|
8877
8197
|
}
|
|
@@ -9215,6 +8535,159 @@ class RollbackTimeRange extends AbstractModel {
|
|
|
9215
8535
|
}
|
|
9216
8536
|
}
|
|
9217
8537
|
|
|
8538
|
+
/**
|
|
8539
|
+
* Audit log details
|
|
8540
|
+
* @class
|
|
8541
|
+
*/
|
|
8542
|
+
class AuditLog extends AbstractModel {
|
|
8543
|
+
constructor(){
|
|
8544
|
+
super();
|
|
8545
|
+
|
|
8546
|
+
/**
|
|
8547
|
+
* Number of affected rows
|
|
8548
|
+
* @type {number || null}
|
|
8549
|
+
*/
|
|
8550
|
+
this.AffectRows = null;
|
|
8551
|
+
|
|
8552
|
+
/**
|
|
8553
|
+
* The error code
|
|
8554
|
+
* @type {number || null}
|
|
8555
|
+
*/
|
|
8556
|
+
this.ErrCode = null;
|
|
8557
|
+
|
|
8558
|
+
/**
|
|
8559
|
+
*
|
|
8560
|
+
* @type {string || null}
|
|
8561
|
+
*/
|
|
8562
|
+
this.SqlType = null;
|
|
8563
|
+
|
|
8564
|
+
/**
|
|
8565
|
+
* Audit policy name, which will be unavailable soon.
|
|
8566
|
+
* @type {string || null}
|
|
8567
|
+
*/
|
|
8568
|
+
this.PolicyName = null;
|
|
8569
|
+
|
|
8570
|
+
/**
|
|
8571
|
+
*
|
|
8572
|
+
* @type {string || null}
|
|
8573
|
+
*/
|
|
8574
|
+
this.DBName = null;
|
|
8575
|
+
|
|
8576
|
+
/**
|
|
8577
|
+
*
|
|
8578
|
+
* @type {string || null}
|
|
8579
|
+
*/
|
|
8580
|
+
this.Sql = null;
|
|
8581
|
+
|
|
8582
|
+
/**
|
|
8583
|
+
* Client address
|
|
8584
|
+
* @type {string || null}
|
|
8585
|
+
*/
|
|
8586
|
+
this.Host = null;
|
|
8587
|
+
|
|
8588
|
+
/**
|
|
8589
|
+
* Username
|
|
8590
|
+
* @type {string || null}
|
|
8591
|
+
*/
|
|
8592
|
+
this.User = null;
|
|
8593
|
+
|
|
8594
|
+
/**
|
|
8595
|
+
* Execution time (μs)
|
|
8596
|
+
* @type {number || null}
|
|
8597
|
+
*/
|
|
8598
|
+
this.ExecTime = null;
|
|
8599
|
+
|
|
8600
|
+
/**
|
|
8601
|
+
* Time
|
|
8602
|
+
* @type {string || null}
|
|
8603
|
+
*/
|
|
8604
|
+
this.Timestamp = null;
|
|
8605
|
+
|
|
8606
|
+
/**
|
|
8607
|
+
* Number of returned rows
|
|
8608
|
+
* @type {number || null}
|
|
8609
|
+
*/
|
|
8610
|
+
this.SentRows = null;
|
|
8611
|
+
|
|
8612
|
+
/**
|
|
8613
|
+
* Thread ID
|
|
8614
|
+
* @type {number || null}
|
|
8615
|
+
*/
|
|
8616
|
+
this.ThreadId = null;
|
|
8617
|
+
|
|
8618
|
+
/**
|
|
8619
|
+
* Number of scanned rows
|
|
8620
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
8621
|
+
* @type {number || null}
|
|
8622
|
+
*/
|
|
8623
|
+
this.CheckRows = null;
|
|
8624
|
+
|
|
8625
|
+
/**
|
|
8626
|
+
* CPU u200dexecution time (μs)
|
|
8627
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
8628
|
+
* @type {number || null}
|
|
8629
|
+
*/
|
|
8630
|
+
this.CpuTime = null;
|
|
8631
|
+
|
|
8632
|
+
/**
|
|
8633
|
+
* IO wait time (μs)
|
|
8634
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
8635
|
+
* @type {number || null}
|
|
8636
|
+
*/
|
|
8637
|
+
this.IoWaitTime = null;
|
|
8638
|
+
|
|
8639
|
+
/**
|
|
8640
|
+
* Lock wait time (μs)
|
|
8641
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
8642
|
+
* @type {number || null}
|
|
8643
|
+
*/
|
|
8644
|
+
this.LockWaitTime = null;
|
|
8645
|
+
|
|
8646
|
+
/**
|
|
8647
|
+
* Start time, which forms a time accurate to nanoseconds with·`timestamp`.
|
|
8648
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
8649
|
+
* @type {number || null}
|
|
8650
|
+
*/
|
|
8651
|
+
this.NsTime = null;
|
|
8652
|
+
|
|
8653
|
+
/**
|
|
8654
|
+
* Transaction u200dduration (μs)
|
|
8655
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
8656
|
+
* @type {number || null}
|
|
8657
|
+
*/
|
|
8658
|
+
this.TrxLivingTime = null;
|
|
8659
|
+
|
|
8660
|
+
}
|
|
8661
|
+
|
|
8662
|
+
/**
|
|
8663
|
+
* @private
|
|
8664
|
+
*/
|
|
8665
|
+
deserialize(params) {
|
|
8666
|
+
if (!params) {
|
|
8667
|
+
return;
|
|
8668
|
+
}
|
|
8669
|
+
this.AffectRows = 'AffectRows' in params ? params.AffectRows : null;
|
|
8670
|
+
this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
|
|
8671
|
+
this.SqlType = 'SqlType' in params ? params.SqlType : null;
|
|
8672
|
+
this.PolicyName = 'PolicyName' in params ? params.PolicyName : null;
|
|
8673
|
+
this.DBName = 'DBName' in params ? params.DBName : null;
|
|
8674
|
+
this.Sql = 'Sql' in params ? params.Sql : null;
|
|
8675
|
+
this.Host = 'Host' in params ? params.Host : null;
|
|
8676
|
+
this.User = 'User' in params ? params.User : null;
|
|
8677
|
+
this.ExecTime = 'ExecTime' in params ? params.ExecTime : null;
|
|
8678
|
+
this.Timestamp = 'Timestamp' in params ? params.Timestamp : null;
|
|
8679
|
+
this.SentRows = 'SentRows' in params ? params.SentRows : null;
|
|
8680
|
+
this.ThreadId = 'ThreadId' in params ? params.ThreadId : null;
|
|
8681
|
+
this.CheckRows = 'CheckRows' in params ? params.CheckRows : null;
|
|
8682
|
+
this.CpuTime = 'CpuTime' in params ? params.CpuTime : null;
|
|
8683
|
+
this.IoWaitTime = 'IoWaitTime' in params ? params.IoWaitTime : null;
|
|
8684
|
+
this.LockWaitTime = 'LockWaitTime' in params ? params.LockWaitTime : null;
|
|
8685
|
+
this.NsTime = 'NsTime' in params ? params.NsTime : null;
|
|
8686
|
+
this.TrxLivingTime = 'TrxLivingTime' in params ? params.TrxLivingTime : null;
|
|
8687
|
+
|
|
8688
|
+
}
|
|
8689
|
+
}
|
|
8690
|
+
|
|
9218
8691
|
/**
|
|
9219
8692
|
* ModifyBackupConfig request structure.
|
|
9220
8693
|
* @class
|
|
@@ -9561,7 +9034,7 @@ class CreateDBInstanceRequest extends AbstractModel {
|
|
|
9561
9034
|
this.MasterInstanceId = null;
|
|
9562
9035
|
|
|
9563
9036
|
/**
|
|
9564
|
-
* MySQL version. Valid values: `5.5`, `5.6`, `5.7`. You can use the [DescribeDBZoneConfig](https://intl.cloud.tencent.com/document/api/236/17229?from_cn_redirect=1) API to query the supported versions.
|
|
9037
|
+
* MySQL version. Valid values: `5.5`, `5.6`, `5.7`, and `8.0`. You can use the [DescribeDBZoneConfig](https://intl.cloud.tencent.com/document/api/236/17229?from_cn_redirect=1) API to query the supported instance versions.
|
|
9565
9038
|
* @type {string || null}
|
|
9566
9039
|
*/
|
|
9567
9040
|
this.EngineVersion = null;
|
|
@@ -9794,48 +9267,6 @@ class CreateDBInstanceRequest extends AbstractModel {
|
|
|
9794
9267
|
}
|
|
9795
9268
|
}
|
|
9796
9269
|
|
|
9797
|
-
/**
|
|
9798
|
-
* DescribeProxyConnectionPoolConf request structure.
|
|
9799
|
-
* @class
|
|
9800
|
-
*/
|
|
9801
|
-
class DescribeProxyConnectionPoolConfRequest extends AbstractModel {
|
|
9802
|
-
constructor(){
|
|
9803
|
-
super();
|
|
9804
|
-
|
|
9805
|
-
/**
|
|
9806
|
-
* Instance ID
|
|
9807
|
-
* @type {string || null}
|
|
9808
|
-
*/
|
|
9809
|
-
this.InstanceId = null;
|
|
9810
|
-
|
|
9811
|
-
/**
|
|
9812
|
-
* Paginated query offset
|
|
9813
|
-
* @type {number || null}
|
|
9814
|
-
*/
|
|
9815
|
-
this.Offset = null;
|
|
9816
|
-
|
|
9817
|
-
/**
|
|
9818
|
-
* Maximum entries returned per page
|
|
9819
|
-
* @type {number || null}
|
|
9820
|
-
*/
|
|
9821
|
-
this.Limit = null;
|
|
9822
|
-
|
|
9823
|
-
}
|
|
9824
|
-
|
|
9825
|
-
/**
|
|
9826
|
-
* @private
|
|
9827
|
-
*/
|
|
9828
|
-
deserialize(params) {
|
|
9829
|
-
if (!params) {
|
|
9830
|
-
return;
|
|
9831
|
-
}
|
|
9832
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
9833
|
-
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
9834
|
-
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
9835
|
-
|
|
9836
|
-
}
|
|
9837
|
-
}
|
|
9838
|
-
|
|
9839
9270
|
/**
|
|
9840
9271
|
* DescribeParamTemplates request structure.
|
|
9841
9272
|
* @class
|
|
@@ -9965,6 +9396,94 @@ class DescribeAccountPrivilegesResponse extends AbstractModel {
|
|
|
9965
9396
|
}
|
|
9966
9397
|
}
|
|
9967
9398
|
|
|
9399
|
+
/**
|
|
9400
|
+
* DescribeAuditLogs request structure.
|
|
9401
|
+
* @class
|
|
9402
|
+
*/
|
|
9403
|
+
class DescribeAuditLogsRequest extends AbstractModel {
|
|
9404
|
+
constructor(){
|
|
9405
|
+
super();
|
|
9406
|
+
|
|
9407
|
+
/**
|
|
9408
|
+
* Instance ID
|
|
9409
|
+
* @type {string || null}
|
|
9410
|
+
*/
|
|
9411
|
+
this.InstanceId = null;
|
|
9412
|
+
|
|
9413
|
+
/**
|
|
9414
|
+
* Start time
|
|
9415
|
+
* @type {string || null}
|
|
9416
|
+
*/
|
|
9417
|
+
this.StartTime = null;
|
|
9418
|
+
|
|
9419
|
+
/**
|
|
9420
|
+
* End time
|
|
9421
|
+
* @type {string || null}
|
|
9422
|
+
*/
|
|
9423
|
+
this.EndTime = null;
|
|
9424
|
+
|
|
9425
|
+
/**
|
|
9426
|
+
* The pagination parameter, which specifies the number of entries per page. Maximum value: 100 (default).
|
|
9427
|
+
* @type {number || null}
|
|
9428
|
+
*/
|
|
9429
|
+
this.Limit = null;
|
|
9430
|
+
|
|
9431
|
+
/**
|
|
9432
|
+
* Pagination offset
|
|
9433
|
+
* @type {number || null}
|
|
9434
|
+
*/
|
|
9435
|
+
this.Offset = null;
|
|
9436
|
+
|
|
9437
|
+
/**
|
|
9438
|
+
* Sorting order Valid values: `ASC (ascending), `DESC` (descending).
|
|
9439
|
+
* @type {string || null}
|
|
9440
|
+
*/
|
|
9441
|
+
this.Order = null;
|
|
9442
|
+
|
|
9443
|
+
/**
|
|
9444
|
+
* Sorting field Valid values:
|
|
9445
|
+
`timestamp`: Timestamp,
|
|
9446
|
+
`affectRows`: Number of affected rows,
|
|
9447
|
+
`execTime`: Execution time.
|
|
9448
|
+
* @type {string || null}
|
|
9449
|
+
*/
|
|
9450
|
+
this.OrderBy = null;
|
|
9451
|
+
|
|
9452
|
+
/**
|
|
9453
|
+
* Filter, which can be used to filter logs.
|
|
9454
|
+
* @type {Array.<InstanceAuditLogFilters> || null}
|
|
9455
|
+
*/
|
|
9456
|
+
this.LogFilter = null;
|
|
9457
|
+
|
|
9458
|
+
}
|
|
9459
|
+
|
|
9460
|
+
/**
|
|
9461
|
+
* @private
|
|
9462
|
+
*/
|
|
9463
|
+
deserialize(params) {
|
|
9464
|
+
if (!params) {
|
|
9465
|
+
return;
|
|
9466
|
+
}
|
|
9467
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
9468
|
+
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
9469
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
9470
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
9471
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
9472
|
+
this.Order = 'Order' in params ? params.Order : null;
|
|
9473
|
+
this.OrderBy = 'OrderBy' in params ? params.OrderBy : null;
|
|
9474
|
+
|
|
9475
|
+
if (params.LogFilter) {
|
|
9476
|
+
this.LogFilter = new Array();
|
|
9477
|
+
for (let z in params.LogFilter) {
|
|
9478
|
+
let obj = new InstanceAuditLogFilters();
|
|
9479
|
+
obj.deserialize(params.LogFilter[z]);
|
|
9480
|
+
this.LogFilter.push(obj);
|
|
9481
|
+
}
|
|
9482
|
+
}
|
|
9483
|
+
|
|
9484
|
+
}
|
|
9485
|
+
}
|
|
9486
|
+
|
|
9968
9487
|
/**
|
|
9969
9488
|
* DescribeBackupConfig request structure.
|
|
9970
9489
|
* @class
|
|
@@ -10493,79 +10012,16 @@ class MasterInfo extends AbstractModel {
|
|
|
10493
10012
|
/**
|
|
10494
10013
|
* ResetRootAccount response structure.
|
|
10495
10014
|
* @class
|
|
10496
|
-
*/
|
|
10497
|
-
class ResetRootAccountResponse extends AbstractModel {
|
|
10498
|
-
constructor(){
|
|
10499
|
-
super();
|
|
10500
|
-
|
|
10501
|
-
/**
|
|
10502
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
10503
|
-
* @type {string || null}
|
|
10504
|
-
*/
|
|
10505
|
-
this.RequestId = null;
|
|
10506
|
-
|
|
10507
|
-
}
|
|
10508
|
-
|
|
10509
|
-
/**
|
|
10510
|
-
* @private
|
|
10511
|
-
*/
|
|
10512
|
-
deserialize(params) {
|
|
10513
|
-
if (!params) {
|
|
10514
|
-
return;
|
|
10515
|
-
}
|
|
10516
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10517
|
-
|
|
10518
|
-
}
|
|
10519
|
-
}
|
|
10520
|
-
|
|
10521
|
-
/**
|
|
10522
|
-
* Node information of the proxy
|
|
10523
|
-
* @class
|
|
10524
|
-
*/
|
|
10525
|
-
class ProxyNodeInfo extends AbstractModel {
|
|
10526
|
-
constructor(){
|
|
10527
|
-
super();
|
|
10528
|
-
|
|
10529
|
-
/**
|
|
10530
|
-
* Proxy node ID
|
|
10531
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
10532
|
-
* @type {string || null}
|
|
10533
|
-
*/
|
|
10534
|
-
this.ProxyNodeId = null;
|
|
10535
|
-
|
|
10536
|
-
/**
|
|
10537
|
-
* Current number of connections to the node
|
|
10538
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
10539
|
-
* @type {number || null}
|
|
10540
|
-
*/
|
|
10541
|
-
this.ProxyNodeConnections = null;
|
|
10542
|
-
|
|
10543
|
-
/**
|
|
10544
|
-
* CPU
|
|
10545
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
10546
|
-
* @type {number || null}
|
|
10547
|
-
*/
|
|
10548
|
-
this.ProxyNodeCpu = null;
|
|
10549
|
-
|
|
10550
|
-
/**
|
|
10551
|
-
* Memory
|
|
10552
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
10553
|
-
* @type {number || null}
|
|
10554
|
-
*/
|
|
10555
|
-
this.ProxyNodeMem = null;
|
|
10015
|
+
*/
|
|
10016
|
+
class ResetRootAccountResponse extends AbstractModel {
|
|
10017
|
+
constructor(){
|
|
10018
|
+
super();
|
|
10556
10019
|
|
|
10557
10020
|
/**
|
|
10558
|
-
*
|
|
10559
|
-
init (applying)
|
|
10560
|
-
online (active)
|
|
10561
|
-
offline (inactive)
|
|
10562
|
-
destroy (destroyed)
|
|
10563
|
-
recovering (recovering from fault)
|
|
10564
|
-
error (failed)
|
|
10565
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
10021
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
10566
10022
|
* @type {string || null}
|
|
10567
10023
|
*/
|
|
10568
|
-
this.
|
|
10024
|
+
this.RequestId = null;
|
|
10569
10025
|
|
|
10570
10026
|
}
|
|
10571
10027
|
|
|
@@ -10576,11 +10032,7 @@ Note: this field may return `null`, indicating that no valid value can be found.
|
|
|
10576
10032
|
if (!params) {
|
|
10577
10033
|
return;
|
|
10578
10034
|
}
|
|
10579
|
-
this.
|
|
10580
|
-
this.ProxyNodeConnections = 'ProxyNodeConnections' in params ? params.ProxyNodeConnections : null;
|
|
10581
|
-
this.ProxyNodeCpu = 'ProxyNodeCpu' in params ? params.ProxyNodeCpu : null;
|
|
10582
|
-
this.ProxyNodeMem = 'ProxyNodeMem' in params ? params.ProxyNodeMem : null;
|
|
10583
|
-
this.ProxyStatus = 'ProxyStatus' in params ? params.ProxyStatus : null;
|
|
10035
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10584
10036
|
|
|
10585
10037
|
}
|
|
10586
10038
|
}
|
|
@@ -10858,51 +10310,6 @@ class AuditLogFilter extends AbstractModel {
|
|
|
10858
10310
|
}
|
|
10859
10311
|
}
|
|
10860
10312
|
|
|
10861
|
-
/**
|
|
10862
|
-
* Connection pool information
|
|
10863
|
-
* @class
|
|
10864
|
-
*/
|
|
10865
|
-
class ConnectionPoolInfo extends AbstractModel {
|
|
10866
|
-
constructor(){
|
|
10867
|
-
super();
|
|
10868
|
-
|
|
10869
|
-
/**
|
|
10870
|
-
* Whether the connection pool is enabled
|
|
10871
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
10872
|
-
* @type {boolean || null}
|
|
10873
|
-
*/
|
|
10874
|
-
this.ConnectionPool = null;
|
|
10875
|
-
|
|
10876
|
-
/**
|
|
10877
|
-
* Connection pool type. Valid value: `SessionConnectionPool` (session-level connection pool)
|
|
10878
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
10879
|
-
* @type {string || null}
|
|
10880
|
-
*/
|
|
10881
|
-
this.ConnectionPoolType = null;
|
|
10882
|
-
|
|
10883
|
-
/**
|
|
10884
|
-
* Connection persistence timeout in seconds
|
|
10885
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
10886
|
-
* @type {number || null}
|
|
10887
|
-
*/
|
|
10888
|
-
this.PoolConnectionTimeOut = null;
|
|
10889
|
-
|
|
10890
|
-
}
|
|
10891
|
-
|
|
10892
|
-
/**
|
|
10893
|
-
* @private
|
|
10894
|
-
*/
|
|
10895
|
-
deserialize(params) {
|
|
10896
|
-
if (!params) {
|
|
10897
|
-
return;
|
|
10898
|
-
}
|
|
10899
|
-
this.ConnectionPool = 'ConnectionPool' in params ? params.ConnectionPool : null;
|
|
10900
|
-
this.ConnectionPoolType = 'ConnectionPoolType' in params ? params.ConnectionPoolType : null;
|
|
10901
|
-
this.PoolConnectionTimeOut = 'PoolConnectionTimeOut' in params ? params.PoolConnectionTimeOut : null;
|
|
10902
|
-
|
|
10903
|
-
}
|
|
10904
|
-
}
|
|
10905
|
-
|
|
10906
10313
|
/**
|
|
10907
10314
|
* OpenDBInstanceGTID response structure.
|
|
10908
10315
|
* @class
|
|
@@ -11309,34 +10716,6 @@ class ParameterDetail extends AbstractModel {
|
|
|
11309
10716
|
}
|
|
11310
10717
|
}
|
|
11311
10718
|
|
|
11312
|
-
/**
|
|
11313
|
-
* ModifyCDBProxyVipVPort response structure.
|
|
11314
|
-
* @class
|
|
11315
|
-
*/
|
|
11316
|
-
class ModifyCDBProxyVipVPortResponse extends AbstractModel {
|
|
11317
|
-
constructor(){
|
|
11318
|
-
super();
|
|
11319
|
-
|
|
11320
|
-
/**
|
|
11321
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
11322
|
-
* @type {string || null}
|
|
11323
|
-
*/
|
|
11324
|
-
this.RequestId = null;
|
|
11325
|
-
|
|
11326
|
-
}
|
|
11327
|
-
|
|
11328
|
-
/**
|
|
11329
|
-
* @private
|
|
11330
|
-
*/
|
|
11331
|
-
deserialize(params) {
|
|
11332
|
-
if (!params) {
|
|
11333
|
-
return;
|
|
11334
|
-
}
|
|
11335
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
11336
|
-
|
|
11337
|
-
}
|
|
11338
|
-
}
|
|
11339
|
-
|
|
11340
10719
|
/**
|
|
11341
10720
|
* SwitchForUpgrade request structure.
|
|
11342
10721
|
* @class
|
|
@@ -12851,6 +12230,73 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
12851
12230
|
}
|
|
12852
12231
|
}
|
|
12853
12232
|
|
|
12233
|
+
/**
|
|
12234
|
+
* Search filter for audit log
|
|
12235
|
+
* @class
|
|
12236
|
+
*/
|
|
12237
|
+
class InstanceAuditLogFilters extends AbstractModel {
|
|
12238
|
+
constructor(){
|
|
12239
|
+
super();
|
|
12240
|
+
|
|
12241
|
+
/**
|
|
12242
|
+
* Filter condition, which is not supported for `SQL`. The search conditions are supported as follows:
|
|
12243
|
+
|
|
12244
|
+
`Equal to`, `Not equal to`, `Include`, and `Exclude` can be used to search for
|
|
12245
|
+
`host` (Client IP),
|
|
12246
|
+
`user` (Username),
|
|
12247
|
+
and `DBName` (Database name).
|
|
12248
|
+
|
|
12249
|
+
`Equal to` and `Not equal to` can be used to search for
|
|
12250
|
+
`sqlType`- SQL u200dtype,
|
|
12251
|
+
`errCode` - Error code,
|
|
12252
|
+
`threadId`- Thread ID.
|
|
12253
|
+
|
|
12254
|
+
Range search is supported for the fields, such as
|
|
12255
|
+
`execTime`- Execution time (μs),
|
|
12256
|
+
`lockWaitTime`u200d - Lock wait time (μs),
|
|
12257
|
+
`ioWaitTime` - IO wait time (μs),
|
|
12258
|
+
`trxLivingTime` - Transaction duration (μs),
|
|
12259
|
+
`cpuTime` - CPU time (μs),
|
|
12260
|
+
`checkRows` - Number of scanned rows,
|
|
12261
|
+
`affectRows` - Number of affected rows,
|
|
12262
|
+
`sentRows` - Number of returned rows.
|
|
12263
|
+
* @type {string || null}
|
|
12264
|
+
*/
|
|
12265
|
+
this.Type = null;
|
|
12266
|
+
|
|
12267
|
+
/**
|
|
12268
|
+
* Filter, including:
|
|
12269
|
+
`INC` - Include,
|
|
12270
|
+
`EXC` -Exclude,
|
|
12271
|
+
`EQS` - Equal to,
|
|
12272
|
+
`NEQ` - Not equal to.
|
|
12273
|
+
u200d`RA` - Range
|
|
12274
|
+
* @type {string || null}
|
|
12275
|
+
*/
|
|
12276
|
+
this.Compare = null;
|
|
12277
|
+
|
|
12278
|
+
/**
|
|
12279
|
+
* The filter value
|
|
12280
|
+
* @type {Array.<string> || null}
|
|
12281
|
+
*/
|
|
12282
|
+
this.Value = null;
|
|
12283
|
+
|
|
12284
|
+
}
|
|
12285
|
+
|
|
12286
|
+
/**
|
|
12287
|
+
* @private
|
|
12288
|
+
*/
|
|
12289
|
+
deserialize(params) {
|
|
12290
|
+
if (!params) {
|
|
12291
|
+
return;
|
|
12292
|
+
}
|
|
12293
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
12294
|
+
this.Compare = 'Compare' in params ? params.Compare : null;
|
|
12295
|
+
this.Value = 'Value' in params ? params.Value : null;
|
|
12296
|
+
|
|
12297
|
+
}
|
|
12298
|
+
}
|
|
12299
|
+
|
|
12854
12300
|
/**
|
|
12855
12301
|
* DescribeUploadedFiles request structure.
|
|
12856
12302
|
* @class
|
|
@@ -14340,34 +13786,6 @@ class DescribeRemoteBackupConfigResponse extends AbstractModel {
|
|
|
14340
13786
|
}
|
|
14341
13787
|
}
|
|
14342
13788
|
|
|
14343
|
-
/**
|
|
14344
|
-
* ModifyCDBProxyDesc response structure.
|
|
14345
|
-
* @class
|
|
14346
|
-
*/
|
|
14347
|
-
class ModifyCDBProxyDescResponse extends AbstractModel {
|
|
14348
|
-
constructor(){
|
|
14349
|
-
super();
|
|
14350
|
-
|
|
14351
|
-
/**
|
|
14352
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
14353
|
-
* @type {string || null}
|
|
14354
|
-
*/
|
|
14355
|
-
this.RequestId = null;
|
|
14356
|
-
|
|
14357
|
-
}
|
|
14358
|
-
|
|
14359
|
-
/**
|
|
14360
|
-
* @private
|
|
14361
|
-
*/
|
|
14362
|
-
deserialize(params) {
|
|
14363
|
-
if (!params) {
|
|
14364
|
-
return;
|
|
14365
|
-
}
|
|
14366
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
14367
|
-
|
|
14368
|
-
}
|
|
14369
|
-
}
|
|
14370
|
-
|
|
14371
13789
|
/**
|
|
14372
13790
|
* AdjustCdbProxyAddress response structure.
|
|
14373
13791
|
* @class
|
|
@@ -14599,100 +14017,6 @@ class DescribeTagsOfInstanceIdsRequest extends AbstractModel {
|
|
|
14599
14017
|
}
|
|
14600
14018
|
}
|
|
14601
14019
|
|
|
14602
|
-
/**
|
|
14603
|
-
* Read/Write separation information of the proxy
|
|
14604
|
-
* @class
|
|
14605
|
-
*/
|
|
14606
|
-
class RWInfos extends AbstractModel {
|
|
14607
|
-
constructor(){
|
|
14608
|
-
super();
|
|
14609
|
-
|
|
14610
|
-
/**
|
|
14611
|
-
* Number of instances in the proxy group
|
|
14612
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
14613
|
-
* @type {number || null}
|
|
14614
|
-
*/
|
|
14615
|
-
this.InstCount = null;
|
|
14616
|
-
|
|
14617
|
-
/**
|
|
14618
|
-
* Assignment mode of read/write weights
|
|
14619
|
-
Valid values: `system` (auto-assigned), `custom`
|
|
14620
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
14621
|
-
* @type {string || null}
|
|
14622
|
-
*/
|
|
14623
|
-
this.WeightMode = null;
|
|
14624
|
-
|
|
14625
|
-
/**
|
|
14626
|
-
* Whether to remove delayed read-only instances from the proxy group
|
|
14627
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
14628
|
-
* @type {boolean || null}
|
|
14629
|
-
*/
|
|
14630
|
-
this.IsKickOut = null;
|
|
14631
|
-
|
|
14632
|
-
/**
|
|
14633
|
-
* The minimum number of read-only instances allowed by the proxy group
|
|
14634
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
14635
|
-
* @type {number || null}
|
|
14636
|
-
*/
|
|
14637
|
-
this.MinCount = null;
|
|
14638
|
-
|
|
14639
|
-
/**
|
|
14640
|
-
* Delay threshold
|
|
14641
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
14642
|
-
* @type {number || null}
|
|
14643
|
-
*/
|
|
14644
|
-
this.MaxDelay = null;
|
|
14645
|
-
|
|
14646
|
-
/**
|
|
14647
|
-
* Whether to enable failover
|
|
14648
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
14649
|
-
* @type {boolean || null}
|
|
14650
|
-
*/
|
|
14651
|
-
this.FailOver = null;
|
|
14652
|
-
|
|
14653
|
-
/**
|
|
14654
|
-
* Whether to automatically add newly created read-only instances to the proxy group
|
|
14655
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
14656
|
-
* @type {boolean || null}
|
|
14657
|
-
*/
|
|
14658
|
-
this.AutoAddRo = null;
|
|
14659
|
-
|
|
14660
|
-
/**
|
|
14661
|
-
* Information of instances in the proxy group
|
|
14662
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
14663
|
-
* @type {Array.<RWInstanceInfo> || null}
|
|
14664
|
-
*/
|
|
14665
|
-
this.RWInstInfo = null;
|
|
14666
|
-
|
|
14667
|
-
}
|
|
14668
|
-
|
|
14669
|
-
/**
|
|
14670
|
-
* @private
|
|
14671
|
-
*/
|
|
14672
|
-
deserialize(params) {
|
|
14673
|
-
if (!params) {
|
|
14674
|
-
return;
|
|
14675
|
-
}
|
|
14676
|
-
this.InstCount = 'InstCount' in params ? params.InstCount : null;
|
|
14677
|
-
this.WeightMode = 'WeightMode' in params ? params.WeightMode : null;
|
|
14678
|
-
this.IsKickOut = 'IsKickOut' in params ? params.IsKickOut : null;
|
|
14679
|
-
this.MinCount = 'MinCount' in params ? params.MinCount : null;
|
|
14680
|
-
this.MaxDelay = 'MaxDelay' in params ? params.MaxDelay : null;
|
|
14681
|
-
this.FailOver = 'FailOver' in params ? params.FailOver : null;
|
|
14682
|
-
this.AutoAddRo = 'AutoAddRo' in params ? params.AutoAddRo : null;
|
|
14683
|
-
|
|
14684
|
-
if (params.RWInstInfo) {
|
|
14685
|
-
this.RWInstInfo = new Array();
|
|
14686
|
-
for (let z in params.RWInstInfo) {
|
|
14687
|
-
let obj = new RWInstanceInfo();
|
|
14688
|
-
obj.deserialize(params.RWInstInfo[z]);
|
|
14689
|
-
this.RWInstInfo.push(obj);
|
|
14690
|
-
}
|
|
14691
|
-
}
|
|
14692
|
-
|
|
14693
|
-
}
|
|
14694
|
-
}
|
|
14695
|
-
|
|
14696
14020
|
/**
|
|
14697
14021
|
* CloseCDBProxy response structure.
|
|
14698
14022
|
* @class
|
|
@@ -14750,42 +14074,26 @@ class ModifyBackupEncryptionStatusResponse extends AbstractModel {
|
|
|
14750
14074
|
}
|
|
14751
14075
|
|
|
14752
14076
|
/**
|
|
14753
|
-
*
|
|
14077
|
+
* Analysis result of an audit log
|
|
14754
14078
|
* @class
|
|
14755
14079
|
*/
|
|
14756
|
-
class
|
|
14080
|
+
class AuditLogAggregationResult extends AbstractModel {
|
|
14757
14081
|
constructor(){
|
|
14758
14082
|
super();
|
|
14759
14083
|
|
|
14760
14084
|
/**
|
|
14761
|
-
*
|
|
14762
|
-
|
|
14763
|
-
*/
|
|
14764
|
-
this.InstanceId = null;
|
|
14765
|
-
|
|
14766
|
-
/**
|
|
14767
|
-
* Version of primary instance database engine. Value range: 5.6, 5.7
|
|
14085
|
+
* Aggregation dimension
|
|
14086
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
14768
14087
|
* @type {string || null}
|
|
14769
14088
|
*/
|
|
14770
|
-
this.
|
|
14771
|
-
|
|
14772
|
-
/**
|
|
14773
|
-
* Switch mode for accessing the new instance. Valid values: `0` (switch immediately), `1` (switch within a time window). Default value: `0`. If the value is `1`, the switch process will be performed within a time window. Or, you can call the [SwitchForUpgrade](https://intl.cloud.tencent.com/document/product/236/15864?from_cn_redirect=1) API to trigger the process.
|
|
14774
|
-
* @type {number || null}
|
|
14775
|
-
*/
|
|
14776
|
-
this.WaitSwitch = null;
|
|
14777
|
-
|
|
14778
|
-
/**
|
|
14779
|
-
* Whether to upgrade kernel minor version. Valid values: 1 (upgrade kernel minor version), 0 (upgrade database engine).
|
|
14780
|
-
* @type {number || null}
|
|
14781
|
-
*/
|
|
14782
|
-
this.UpgradeSubversion = null;
|
|
14089
|
+
this.AggregationField = null;
|
|
14783
14090
|
|
|
14784
14091
|
/**
|
|
14785
|
-
*
|
|
14786
|
-
|
|
14092
|
+
* Result set of an aggregation bucket
|
|
14093
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
14094
|
+
* @type {Array.<Bucket> || null}
|
|
14787
14095
|
*/
|
|
14788
|
-
this.
|
|
14096
|
+
this.Buckets = null;
|
|
14789
14097
|
|
|
14790
14098
|
}
|
|
14791
14099
|
|
|
@@ -14796,11 +14104,16 @@ class UpgradeDBInstanceEngineVersionRequest extends AbstractModel {
|
|
|
14796
14104
|
if (!params) {
|
|
14797
14105
|
return;
|
|
14798
14106
|
}
|
|
14799
|
-
this.
|
|
14800
|
-
|
|
14801
|
-
|
|
14802
|
-
|
|
14803
|
-
|
|
14107
|
+
this.AggregationField = 'AggregationField' in params ? params.AggregationField : null;
|
|
14108
|
+
|
|
14109
|
+
if (params.Buckets) {
|
|
14110
|
+
this.Buckets = new Array();
|
|
14111
|
+
for (let z in params.Buckets) {
|
|
14112
|
+
let obj = new Bucket();
|
|
14113
|
+
obj.deserialize(params.Buckets[z]);
|
|
14114
|
+
this.Buckets.push(obj);
|
|
14115
|
+
}
|
|
14116
|
+
}
|
|
14804
14117
|
|
|
14805
14118
|
}
|
|
14806
14119
|
}
|
|
@@ -14995,41 +14308,6 @@ class SwitchForUpgradeResponse extends AbstractModel {
|
|
|
14995
14308
|
}
|
|
14996
14309
|
}
|
|
14997
14310
|
|
|
14998
|
-
/**
|
|
14999
|
-
* DescribeCDBProxy request structure.
|
|
15000
|
-
* @class
|
|
15001
|
-
*/
|
|
15002
|
-
class DescribeCDBProxyRequest extends AbstractModel {
|
|
15003
|
-
constructor(){
|
|
15004
|
-
super();
|
|
15005
|
-
|
|
15006
|
-
/**
|
|
15007
|
-
* Instance ID
|
|
15008
|
-
* @type {string || null}
|
|
15009
|
-
*/
|
|
15010
|
-
this.InstanceId = null;
|
|
15011
|
-
|
|
15012
|
-
/**
|
|
15013
|
-
* Proxy group ID
|
|
15014
|
-
* @type {string || null}
|
|
15015
|
-
*/
|
|
15016
|
-
this.ProxyGroupId = null;
|
|
15017
|
-
|
|
15018
|
-
}
|
|
15019
|
-
|
|
15020
|
-
/**
|
|
15021
|
-
* @private
|
|
15022
|
-
*/
|
|
15023
|
-
deserialize(params) {
|
|
15024
|
-
if (!params) {
|
|
15025
|
-
return;
|
|
15026
|
-
}
|
|
15027
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
15028
|
-
this.ProxyGroupId = 'ProxyGroupId' in params ? params.ProxyGroupId : null;
|
|
15029
|
-
|
|
15030
|
-
}
|
|
15031
|
-
}
|
|
15032
|
-
|
|
15033
14311
|
/**
|
|
15034
14312
|
* DescribeAccountPrivileges request structure.
|
|
15035
14313
|
* @class
|
|
@@ -16079,6 +15357,57 @@ class DescribeTasksResponse extends AbstractModel {
|
|
|
16079
15357
|
}
|
|
16080
15358
|
}
|
|
16081
15359
|
|
|
15360
|
+
/**
|
|
15361
|
+
* DescribeAuditLogs response structure.
|
|
15362
|
+
* @class
|
|
15363
|
+
*/
|
|
15364
|
+
class DescribeAuditLogsResponse extends AbstractModel {
|
|
15365
|
+
constructor(){
|
|
15366
|
+
super();
|
|
15367
|
+
|
|
15368
|
+
/**
|
|
15369
|
+
* Number of eligible audit logs
|
|
15370
|
+
* @type {number || null}
|
|
15371
|
+
*/
|
|
15372
|
+
this.TotalCount = null;
|
|
15373
|
+
|
|
15374
|
+
/**
|
|
15375
|
+
* Audit log details
|
|
15376
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
15377
|
+
* @type {Array.<AuditLog> || null}
|
|
15378
|
+
*/
|
|
15379
|
+
this.Items = null;
|
|
15380
|
+
|
|
15381
|
+
/**
|
|
15382
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
15383
|
+
* @type {string || null}
|
|
15384
|
+
*/
|
|
15385
|
+
this.RequestId = null;
|
|
15386
|
+
|
|
15387
|
+
}
|
|
15388
|
+
|
|
15389
|
+
/**
|
|
15390
|
+
* @private
|
|
15391
|
+
*/
|
|
15392
|
+
deserialize(params) {
|
|
15393
|
+
if (!params) {
|
|
15394
|
+
return;
|
|
15395
|
+
}
|
|
15396
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
15397
|
+
|
|
15398
|
+
if (params.Items) {
|
|
15399
|
+
this.Items = new Array();
|
|
15400
|
+
for (let z in params.Items) {
|
|
15401
|
+
let obj = new AuditLog();
|
|
15402
|
+
obj.deserialize(params.Items[z]);
|
|
15403
|
+
this.Items.push(obj);
|
|
15404
|
+
}
|
|
15405
|
+
}
|
|
15406
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
15407
|
+
|
|
15408
|
+
}
|
|
15409
|
+
}
|
|
15410
|
+
|
|
16082
15411
|
/**
|
|
16083
15412
|
* DescribeAuditPolicies response structure.
|
|
16084
15413
|
* @class
|
|
@@ -16512,98 +15841,6 @@ class ModifyAccountMaxUserConnectionsRequest extends AbstractModel {
|
|
|
16512
15841
|
}
|
|
16513
15842
|
}
|
|
16514
15843
|
|
|
16515
|
-
/**
|
|
16516
|
-
* Database proxy group information
|
|
16517
|
-
* @class
|
|
16518
|
-
*/
|
|
16519
|
-
class ProxyGroup extends AbstractModel {
|
|
16520
|
-
constructor(){
|
|
16521
|
-
super();
|
|
16522
|
-
|
|
16523
|
-
/**
|
|
16524
|
-
* Basic information of the proxy
|
|
16525
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
16526
|
-
* @type {BaseGroupInfo || null}
|
|
16527
|
-
*/
|
|
16528
|
-
this.BaseGroup = null;
|
|
16529
|
-
|
|
16530
|
-
/**
|
|
16531
|
-
* Address information of the proxy
|
|
16532
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
16533
|
-
* @type {Array.<Address> || null}
|
|
16534
|
-
*/
|
|
16535
|
-
this.Address = null;
|
|
16536
|
-
|
|
16537
|
-
/**
|
|
16538
|
-
* Connection pool information of the proxy
|
|
16539
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
16540
|
-
* @type {ConnectionPoolInfo || null}
|
|
16541
|
-
*/
|
|
16542
|
-
this.ConnectionPoolInfo = null;
|
|
16543
|
-
|
|
16544
|
-
/**
|
|
16545
|
-
* Node information of the proxy
|
|
16546
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
16547
|
-
* @type {Array.<ProxyNodeInfo> || null}
|
|
16548
|
-
*/
|
|
16549
|
-
this.ProxyNode = null;
|
|
16550
|
-
|
|
16551
|
-
/**
|
|
16552
|
-
* Routing information of the proxy
|
|
16553
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
16554
|
-
* @type {RWInfo || null}
|
|
16555
|
-
*/
|
|
16556
|
-
this.RWInstInfo = null;
|
|
16557
|
-
|
|
16558
|
-
}
|
|
16559
|
-
|
|
16560
|
-
/**
|
|
16561
|
-
* @private
|
|
16562
|
-
*/
|
|
16563
|
-
deserialize(params) {
|
|
16564
|
-
if (!params) {
|
|
16565
|
-
return;
|
|
16566
|
-
}
|
|
16567
|
-
|
|
16568
|
-
if (params.BaseGroup) {
|
|
16569
|
-
let obj = new BaseGroupInfo();
|
|
16570
|
-
obj.deserialize(params.BaseGroup)
|
|
16571
|
-
this.BaseGroup = obj;
|
|
16572
|
-
}
|
|
16573
|
-
|
|
16574
|
-
if (params.Address) {
|
|
16575
|
-
this.Address = new Array();
|
|
16576
|
-
for (let z in params.Address) {
|
|
16577
|
-
let obj = new Address();
|
|
16578
|
-
obj.deserialize(params.Address[z]);
|
|
16579
|
-
this.Address.push(obj);
|
|
16580
|
-
}
|
|
16581
|
-
}
|
|
16582
|
-
|
|
16583
|
-
if (params.ConnectionPoolInfo) {
|
|
16584
|
-
let obj = new ConnectionPoolInfo();
|
|
16585
|
-
obj.deserialize(params.ConnectionPoolInfo)
|
|
16586
|
-
this.ConnectionPoolInfo = obj;
|
|
16587
|
-
}
|
|
16588
|
-
|
|
16589
|
-
if (params.ProxyNode) {
|
|
16590
|
-
this.ProxyNode = new Array();
|
|
16591
|
-
for (let z in params.ProxyNode) {
|
|
16592
|
-
let obj = new ProxyNodeInfo();
|
|
16593
|
-
obj.deserialize(params.ProxyNode[z]);
|
|
16594
|
-
this.ProxyNode.push(obj);
|
|
16595
|
-
}
|
|
16596
|
-
}
|
|
16597
|
-
|
|
16598
|
-
if (params.RWInstInfo) {
|
|
16599
|
-
let obj = new RWInfo();
|
|
16600
|
-
obj.deserialize(params.RWInstInfo)
|
|
16601
|
-
this.RWInstInfo = obj;
|
|
16602
|
-
}
|
|
16603
|
-
|
|
16604
|
-
}
|
|
16605
|
-
}
|
|
16606
|
-
|
|
16607
15844
|
/**
|
|
16608
15845
|
* DescribeTasks request structure.
|
|
16609
15846
|
* @class
|
|
@@ -17612,7 +16849,7 @@ class CreateDBInstanceResponse extends AbstractModel {
|
|
|
17612
16849
|
super();
|
|
17613
16850
|
|
|
17614
16851
|
/**
|
|
17615
|
-
*
|
|
16852
|
+
* Billing sub-order ID
|
|
17616
16853
|
* @type {Array.<string> || null}
|
|
17617
16854
|
*/
|
|
17618
16855
|
this.DealIds = null;
|
|
@@ -18117,55 +17354,6 @@ class SecurityGroup extends AbstractModel {
|
|
|
18117
17354
|
}
|
|
18118
17355
|
}
|
|
18119
17356
|
|
|
18120
|
-
/**
|
|
18121
|
-
* DescribeProxyConnectionPoolConf response structure.
|
|
18122
|
-
* @class
|
|
18123
|
-
*/
|
|
18124
|
-
class DescribeProxyConnectionPoolConfResponse extends AbstractModel {
|
|
18125
|
-
constructor(){
|
|
18126
|
-
super();
|
|
18127
|
-
|
|
18128
|
-
/**
|
|
18129
|
-
* Number of queried configurations
|
|
18130
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
18131
|
-
* @type {number || null}
|
|
18132
|
-
*/
|
|
18133
|
-
this.Count = null;
|
|
18134
|
-
|
|
18135
|
-
/**
|
|
18136
|
-
* Connection pool configuration details
|
|
18137
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
18138
|
-
* @type {PoolConf || null}
|
|
18139
|
-
*/
|
|
18140
|
-
this.PoolConf = null;
|
|
18141
|
-
|
|
18142
|
-
/**
|
|
18143
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
18144
|
-
* @type {string || null}
|
|
18145
|
-
*/
|
|
18146
|
-
this.RequestId = null;
|
|
18147
|
-
|
|
18148
|
-
}
|
|
18149
|
-
|
|
18150
|
-
/**
|
|
18151
|
-
* @private
|
|
18152
|
-
*/
|
|
18153
|
-
deserialize(params) {
|
|
18154
|
-
if (!params) {
|
|
18155
|
-
return;
|
|
18156
|
-
}
|
|
18157
|
-
this.Count = 'Count' in params ? params.Count : null;
|
|
18158
|
-
|
|
18159
|
-
if (params.PoolConf) {
|
|
18160
|
-
let obj = new PoolConf();
|
|
18161
|
-
obj.deserialize(params.PoolConf)
|
|
18162
|
-
this.PoolConf = obj;
|
|
18163
|
-
}
|
|
18164
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
18165
|
-
|
|
18166
|
-
}
|
|
18167
|
-
}
|
|
18168
|
-
|
|
18169
17357
|
/**
|
|
18170
17358
|
* OfflineIsolatedInstances request structure.
|
|
18171
17359
|
* @class
|
|
@@ -18934,91 +18122,6 @@ class AddTimeWindowResponse extends AbstractModel {
|
|
|
18934
18122
|
}
|
|
18935
18123
|
}
|
|
18936
18124
|
|
|
18937
|
-
/**
|
|
18938
|
-
* Proxy group information
|
|
18939
|
-
* @class
|
|
18940
|
-
*/
|
|
18941
|
-
class BaseGroupInfo extends AbstractModel {
|
|
18942
|
-
constructor(){
|
|
18943
|
-
super();
|
|
18944
|
-
|
|
18945
|
-
/**
|
|
18946
|
-
* Proxy group ID
|
|
18947
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
18948
|
-
* @type {string || null}
|
|
18949
|
-
*/
|
|
18950
|
-
this.ProxyGroupId = null;
|
|
18951
|
-
|
|
18952
|
-
/**
|
|
18953
|
-
* Number of proxy nodes
|
|
18954
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
18955
|
-
* @type {number || null}
|
|
18956
|
-
*/
|
|
18957
|
-
this.NodeCount = null;
|
|
18958
|
-
|
|
18959
|
-
/**
|
|
18960
|
-
* Proxy group status. Valid values: `init` (delivering), `online` (active), `offline` (inactive), `destroy` (destoryed)
|
|
18961
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
18962
|
-
* @type {string || null}
|
|
18963
|
-
*/
|
|
18964
|
-
this.Status = null;
|
|
18965
|
-
|
|
18966
|
-
/**
|
|
18967
|
-
* Region
|
|
18968
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
18969
|
-
* @type {string || null}
|
|
18970
|
-
*/
|
|
18971
|
-
this.Region = null;
|
|
18972
|
-
|
|
18973
|
-
/**
|
|
18974
|
-
* Availability zone
|
|
18975
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
18976
|
-
* @type {string || null}
|
|
18977
|
-
*/
|
|
18978
|
-
this.Zone = null;
|
|
18979
|
-
|
|
18980
|
-
/**
|
|
18981
|
-
* Whether read/write separation is enabled
|
|
18982
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
18983
|
-
* @type {boolean || null}
|
|
18984
|
-
*/
|
|
18985
|
-
this.OpenRW = null;
|
|
18986
|
-
|
|
18987
|
-
/**
|
|
18988
|
-
* Current proxy version
|
|
18989
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
18990
|
-
* @type {string || null}
|
|
18991
|
-
*/
|
|
18992
|
-
this.CurrentProxyVersion = null;
|
|
18993
|
-
|
|
18994
|
-
/**
|
|
18995
|
-
* Target version to which the proxy can be upgraded
|
|
18996
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
18997
|
-
* @type {string || null}
|
|
18998
|
-
*/
|
|
18999
|
-
this.SupportUpgradeProxyVersion = null;
|
|
19000
|
-
|
|
19001
|
-
}
|
|
19002
|
-
|
|
19003
|
-
/**
|
|
19004
|
-
* @private
|
|
19005
|
-
*/
|
|
19006
|
-
deserialize(params) {
|
|
19007
|
-
if (!params) {
|
|
19008
|
-
return;
|
|
19009
|
-
}
|
|
19010
|
-
this.ProxyGroupId = 'ProxyGroupId' in params ? params.ProxyGroupId : null;
|
|
19011
|
-
this.NodeCount = 'NodeCount' in params ? params.NodeCount : null;
|
|
19012
|
-
this.Status = 'Status' in params ? params.Status : null;
|
|
19013
|
-
this.Region = 'Region' in params ? params.Region : null;
|
|
19014
|
-
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
19015
|
-
this.OpenRW = 'OpenRW' in params ? params.OpenRW : null;
|
|
19016
|
-
this.CurrentProxyVersion = 'CurrentProxyVersion' in params ? params.CurrentProxyVersion : null;
|
|
19017
|
-
this.SupportUpgradeProxyVersion = 'SupportUpgradeProxyVersion' in params ? params.SupportUpgradeProxyVersion : null;
|
|
19018
|
-
|
|
19019
|
-
}
|
|
19020
|
-
}
|
|
19021
|
-
|
|
19022
18125
|
/**
|
|
19023
18126
|
* AdjustCdbProxy response structure.
|
|
19024
18127
|
* @class
|
|
@@ -19731,7 +18834,6 @@ module.exports = {
|
|
|
19731
18834
|
DescribeDatabasesRequest: DescribeDatabasesRequest,
|
|
19732
18835
|
CreateCdbProxyRequest: CreateCdbProxyRequest,
|
|
19733
18836
|
CreateCdbProxyResponse: CreateCdbProxyResponse,
|
|
19734
|
-
RWInfo: RWInfo,
|
|
19735
18837
|
InstanceRollbackRangeTime: InstanceRollbackRangeTime,
|
|
19736
18838
|
DescribeTablesResponse: DescribeTablesResponse,
|
|
19737
18839
|
ModifyBackupDownloadRestrictionResponse: ModifyBackupDownloadRestrictionResponse,
|
|
@@ -19747,7 +18849,6 @@ module.exports = {
|
|
|
19747
18849
|
ModifyInstanceParamRequest: ModifyInstanceParamRequest,
|
|
19748
18850
|
CreateParamTemplateRequest: CreateParamTemplateRequest,
|
|
19749
18851
|
DescribeSupportedPrivilegesRequest: DescribeSupportedPrivilegesRequest,
|
|
19750
|
-
RWInstanceInfo: RWInstanceInfo,
|
|
19751
18852
|
DescribeParamTemplateInfoRequest: DescribeParamTemplateInfoRequest,
|
|
19752
18853
|
ModifyCdbProxyAddressVipAndVPortResponse: ModifyCdbProxyAddressVipAndVPortResponse,
|
|
19753
18854
|
DescribeDBInstancesRequest: DescribeDBInstancesRequest,
|
|
@@ -19778,9 +18879,7 @@ module.exports = {
|
|
|
19778
18879
|
ErrlogItem: ErrlogItem,
|
|
19779
18880
|
ProxyGroupInfo: ProxyGroupInfo,
|
|
19780
18881
|
AssociateSecurityGroupsResponse: AssociateSecurityGroupsResponse,
|
|
19781
|
-
ModifyCDBProxyDescRequest: ModifyCDBProxyDescRequest,
|
|
19782
18882
|
BackupConfig: BackupConfig,
|
|
19783
|
-
DescribeCDBProxyResponse: DescribeCDBProxyResponse,
|
|
19784
18883
|
Rule: Rule,
|
|
19785
18884
|
AuditPolicy: AuditPolicy,
|
|
19786
18885
|
ProxyNode: ProxyNode,
|
|
@@ -19789,10 +18888,8 @@ module.exports = {
|
|
|
19789
18888
|
UpgradeDBInstanceRequest: UpgradeDBInstanceRequest,
|
|
19790
18889
|
ModifyParamTemplateRequest: ModifyParamTemplateRequest,
|
|
19791
18890
|
StartReplicationResponse: StartReplicationResponse,
|
|
19792
|
-
ModifyCDBProxyVipVPortRequest: ModifyCDBProxyVipVPortRequest,
|
|
19793
18891
|
DescribeBinlogBackupOverviewResponse: DescribeBinlogBackupOverviewResponse,
|
|
19794
18892
|
SwitchDBInstanceMasterSlaveRequest: SwitchDBInstanceMasterSlaveRequest,
|
|
19795
|
-
ModifyCDBProxyConnectionPoolRequest: ModifyCDBProxyConnectionPoolRequest,
|
|
19796
18893
|
ModifyCdbProxyAddressVipAndVPortRequest: ModifyCdbProxyAddressVipAndVPortRequest,
|
|
19797
18894
|
ModifyAutoRenewFlagRequest: ModifyAutoRenewFlagRequest,
|
|
19798
18895
|
ModifyBackupConfigResponse: ModifyBackupConfigResponse,
|
|
@@ -19809,7 +18906,6 @@ module.exports = {
|
|
|
19809
18906
|
DescribeRollbackRangeTimeResponse: DescribeRollbackRangeTimeResponse,
|
|
19810
18907
|
ModifyRoGroupInfoRequest: ModifyRoGroupInfoRequest,
|
|
19811
18908
|
ReleaseResult: ReleaseResult,
|
|
19812
|
-
ProxyGroups: ProxyGroups,
|
|
19813
18909
|
AuditRule: AuditRule,
|
|
19814
18910
|
DescribeBinlogsRequest: DescribeBinlogsRequest,
|
|
19815
18911
|
DescribeCdbProxyInfoRequest: DescribeCdbProxyInfoRequest,
|
|
@@ -19822,7 +18918,6 @@ module.exports = {
|
|
|
19822
18918
|
DescribeBinlogsResponse: DescribeBinlogsResponse,
|
|
19823
18919
|
DescribeRoMinScaleRequest: DescribeRoMinScaleRequest,
|
|
19824
18920
|
DescribeDefaultParamsRequest: DescribeDefaultParamsRequest,
|
|
19825
|
-
Address: Address,
|
|
19826
18921
|
CustomConfig: CustomConfig,
|
|
19827
18922
|
SwitchDBInstanceMasterSlaveResponse: SwitchDBInstanceMasterSlaveResponse,
|
|
19828
18923
|
DescribeBackupsRequest: DescribeBackupsRequest,
|
|
@@ -19843,7 +18938,6 @@ module.exports = {
|
|
|
19843
18938
|
SlaveInfo: SlaveInfo,
|
|
19844
18939
|
DescribeDBSecurityGroupsRequest: DescribeDBSecurityGroupsRequest,
|
|
19845
18940
|
DescribeDBSwitchRecordsResponse: DescribeDBSwitchRecordsResponse,
|
|
19846
|
-
ModifyCDBProxyConnectionPoolResponse: ModifyCDBProxyConnectionPoolResponse,
|
|
19847
18941
|
Tag: Tag,
|
|
19848
18942
|
ModifyCdbProxyParamResponse: ModifyCdbProxyParamResponse,
|
|
19849
18943
|
ModifyInstanceTagResponse: ModifyInstanceTagResponse,
|
|
@@ -19869,22 +18963,19 @@ module.exports = {
|
|
|
19869
18963
|
DeviceCpuInfo: DeviceCpuInfo,
|
|
19870
18964
|
DescribeAsyncRequestInfoRequest: DescribeAsyncRequestInfoRequest,
|
|
19871
18965
|
BalanceRoGroupLoadRequest: BalanceRoGroupLoadRequest,
|
|
19872
|
-
QueryCDBProxyRequest: QueryCDBProxyRequest,
|
|
19873
18966
|
DescribeBackupOverviewResponse: DescribeBackupOverviewResponse,
|
|
19874
18967
|
DescribeLocalBinlogConfigRequest: DescribeLocalBinlogConfigRequest,
|
|
19875
|
-
|
|
18968
|
+
TagsInfoOfInstance: TagsInfoOfInstance,
|
|
19876
18969
|
DescribeDeviceMonitorInfoRequest: DescribeDeviceMonitorInfoRequest,
|
|
19877
18970
|
SwitchDrInstanceToMasterResponse: SwitchDrInstanceToMasterResponse,
|
|
19878
18971
|
DescribeDBPriceRequest: DescribeDBPriceRequest,
|
|
19879
18972
|
SlaveConfig: SlaveConfig,
|
|
19880
18973
|
ModifyAccountPrivilegesResponse: ModifyAccountPrivilegesResponse,
|
|
19881
18974
|
StopRollbackRequest: StopRollbackRequest,
|
|
19882
|
-
TagsInfoOfInstance: TagsInfoOfInstance,
|
|
19883
18975
|
ResetRootAccountRequest: ResetRootAccountRequest,
|
|
19884
18976
|
DescribeDBInstanceConfigRequest: DescribeDBInstanceConfigRequest,
|
|
19885
18977
|
DescribeProxyCustomConfResponse: DescribeProxyCustomConfResponse,
|
|
19886
18978
|
ModifyDBInstanceNameResponse: ModifyDBInstanceNameResponse,
|
|
19887
|
-
PoolConf: PoolConf,
|
|
19888
18979
|
DescribeCloneListResponse: DescribeCloneListResponse,
|
|
19889
18980
|
DescribeDBInstanceConfigResponse: DescribeDBInstanceConfigResponse,
|
|
19890
18981
|
StartBatchRollbackRequest: StartBatchRollbackRequest,
|
|
@@ -19892,7 +18983,7 @@ module.exports = {
|
|
|
19892
18983
|
DescribeDBInstanceCharsetRequest: DescribeDBInstanceCharsetRequest,
|
|
19893
18984
|
ModifyInstancePasswordComplexityResponse: ModifyInstancePasswordComplexityResponse,
|
|
19894
18985
|
DeviceMemInfo: DeviceMemInfo,
|
|
19895
|
-
|
|
18986
|
+
UpgradeDBInstanceEngineVersionRequest: UpgradeDBInstanceEngineVersionRequest,
|
|
19896
18987
|
DatabasesWithCharacterLists: DatabasesWithCharacterLists,
|
|
19897
18988
|
DescribeRemoteBackupConfigRequest: DescribeRemoteBackupConfigRequest,
|
|
19898
18989
|
TagInfo: TagInfo,
|
|
@@ -19902,14 +18993,15 @@ module.exports = {
|
|
|
19902
18993
|
ReloadBalanceProxyNodeRequest: ReloadBalanceProxyNodeRequest,
|
|
19903
18994
|
DescribeAccountsResponse: DescribeAccountsResponse,
|
|
19904
18995
|
RollbackTimeRange: RollbackTimeRange,
|
|
18996
|
+
AuditLog: AuditLog,
|
|
19905
18997
|
ModifyBackupConfigRequest: ModifyBackupConfigRequest,
|
|
19906
18998
|
DisassociateSecurityGroupsResponse: DisassociateSecurityGroupsResponse,
|
|
19907
18999
|
AggregationCondition: AggregationCondition,
|
|
19908
19000
|
LocalBinlogConfig: LocalBinlogConfig,
|
|
19909
19001
|
CreateDBInstanceRequest: CreateDBInstanceRequest,
|
|
19910
|
-
DescribeProxyConnectionPoolConfRequest: DescribeProxyConnectionPoolConfRequest,
|
|
19911
19002
|
DescribeParamTemplatesRequest: DescribeParamTemplatesRequest,
|
|
19912
19003
|
DescribeAccountPrivilegesResponse: DescribeAccountPrivilegesResponse,
|
|
19004
|
+
DescribeAuditLogsRequest: DescribeAuditLogsRequest,
|
|
19913
19005
|
DescribeBackupConfigRequest: DescribeBackupConfigRequest,
|
|
19914
19006
|
RoVipInfo: RoVipInfo,
|
|
19915
19007
|
DescribeAccountsRequest: DescribeAccountsRequest,
|
|
@@ -19920,19 +19012,16 @@ module.exports = {
|
|
|
19920
19012
|
CdbSellType: CdbSellType,
|
|
19921
19013
|
MasterInfo: MasterInfo,
|
|
19922
19014
|
ResetRootAccountResponse: ResetRootAccountResponse,
|
|
19923
|
-
ProxyNodeInfo: ProxyNodeInfo,
|
|
19924
19015
|
Account: Account,
|
|
19925
19016
|
ModifyNameOrDescByDpIdResponse: ModifyNameOrDescByDpIdResponse,
|
|
19926
19017
|
DescribeDBPriceResponse: DescribeDBPriceResponse,
|
|
19927
19018
|
AuditLogFilter: AuditLogFilter,
|
|
19928
|
-
ConnectionPoolInfo: ConnectionPoolInfo,
|
|
19929
19019
|
OpenDBInstanceGTIDResponse: OpenDBInstanceGTIDResponse,
|
|
19930
19020
|
DescribeDBInstanceRebootTimeResponse: DescribeDBInstanceRebootTimeResponse,
|
|
19931
19021
|
SwitchDrInstanceToMasterRequest: SwitchDrInstanceToMasterRequest,
|
|
19932
19022
|
ModifyCdbProxyParamRequest: ModifyCdbProxyParamRequest,
|
|
19933
19023
|
RoGroup: RoGroup,
|
|
19934
19024
|
ParameterDetail: ParameterDetail,
|
|
19935
|
-
ModifyCDBProxyVipVPortResponse: ModifyCDBProxyVipVPortResponse,
|
|
19936
19025
|
SwitchForUpgradeRequest: SwitchForUpgradeRequest,
|
|
19937
19026
|
CreateDBInstanceHourResponse: CreateDBInstanceHourResponse,
|
|
19938
19027
|
DescribeBackupDownloadRestrictionResponse: DescribeBackupDownloadRestrictionResponse,
|
|
@@ -19962,6 +19051,7 @@ module.exports = {
|
|
|
19962
19051
|
BalanceRoGroupLoadResponse: BalanceRoGroupLoadResponse,
|
|
19963
19052
|
DeviceNetInfo: DeviceNetInfo,
|
|
19964
19053
|
ModifyDBInstanceVipVportResponse: ModifyDBInstanceVipVportResponse,
|
|
19054
|
+
InstanceAuditLogFilters: InstanceAuditLogFilters,
|
|
19965
19055
|
DescribeUploadedFilesRequest: DescribeUploadedFilesRequest,
|
|
19966
19056
|
InstanceInfo: InstanceInfo,
|
|
19967
19057
|
DescribeDefaultParamsResponse: DescribeDefaultParamsResponse,
|
|
@@ -19980,23 +19070,20 @@ module.exports = {
|
|
|
19980
19070
|
CreateBackupRequest: CreateBackupRequest,
|
|
19981
19071
|
AccountInfo: AccountInfo,
|
|
19982
19072
|
DescribeRemoteBackupConfigResponse: DescribeRemoteBackupConfigResponse,
|
|
19983
|
-
ModifyCDBProxyDescResponse: ModifyCDBProxyDescResponse,
|
|
19984
19073
|
AdjustCdbProxyAddressResponse: AdjustCdbProxyAddressResponse,
|
|
19985
19074
|
ModifyDBInstanceVipVportRequest: ModifyDBInstanceVipVportRequest,
|
|
19986
19075
|
DescribeDBImportRecordsRequest: DescribeDBImportRecordsRequest,
|
|
19987
19076
|
CreateDBImportJobResponse: CreateDBImportJobResponse,
|
|
19988
19077
|
DescribeTagsOfInstanceIdsRequest: DescribeTagsOfInstanceIdsRequest,
|
|
19989
|
-
RWInfos: RWInfos,
|
|
19990
19078
|
CloseCDBProxyResponse: CloseCDBProxyResponse,
|
|
19991
19079
|
ModifyBackupEncryptionStatusResponse: ModifyBackupEncryptionStatusResponse,
|
|
19992
|
-
|
|
19080
|
+
AuditLogAggregationResult: AuditLogAggregationResult,
|
|
19993
19081
|
DescribeDataBackupOverviewRequest: DescribeDataBackupOverviewRequest,
|
|
19994
19082
|
DescribeDBInstanceInfoRequest: DescribeDBInstanceInfoRequest,
|
|
19995
19083
|
BackupLimitVpcItem: BackupLimitVpcItem,
|
|
19996
19084
|
ModifyDBInstanceProjectRequest: ModifyDBInstanceProjectRequest,
|
|
19997
19085
|
Bucket: Bucket,
|
|
19998
19086
|
SwitchForUpgradeResponse: SwitchForUpgradeResponse,
|
|
19999
|
-
DescribeCDBProxyRequest: DescribeCDBProxyRequest,
|
|
20000
19087
|
DescribeAccountPrivilegesRequest: DescribeAccountPrivilegesRequest,
|
|
20001
19088
|
CdbSellConfig: CdbSellConfig,
|
|
20002
19089
|
DescribeSupportedPrivilegesResponse: DescribeSupportedPrivilegesResponse,
|
|
@@ -20021,6 +19108,7 @@ module.exports = {
|
|
|
20021
19108
|
DeleteParamTemplateResponse: DeleteParamTemplateResponse,
|
|
20022
19109
|
DBSwitchInfo: DBSwitchInfo,
|
|
20023
19110
|
DescribeTasksResponse: DescribeTasksResponse,
|
|
19111
|
+
DescribeAuditLogsResponse: DescribeAuditLogsResponse,
|
|
20024
19112
|
DescribeAuditPoliciesResponse: DescribeAuditPoliciesResponse,
|
|
20025
19113
|
IsolateDBInstanceResponse: IsolateDBInstanceResponse,
|
|
20026
19114
|
AdjustCdbProxyRequest: AdjustCdbProxyRequest,
|
|
@@ -20028,7 +19116,6 @@ module.exports = {
|
|
|
20028
19116
|
ProxyAddress: ProxyAddress,
|
|
20029
19117
|
DescribeBackupSummariesRequest: DescribeBackupSummariesRequest,
|
|
20030
19118
|
ModifyAccountMaxUserConnectionsRequest: ModifyAccountMaxUserConnectionsRequest,
|
|
20031
|
-
ProxyGroup: ProxyGroup,
|
|
20032
19119
|
DescribeTasksRequest: DescribeTasksRequest,
|
|
20033
19120
|
ModifyBackupEncryptionStatusRequest: ModifyBackupEncryptionStatusRequest,
|
|
20034
19121
|
DescribeRollbackTaskDetailResponse: DescribeRollbackTaskDetailResponse,
|
|
@@ -20052,7 +19139,6 @@ module.exports = {
|
|
|
20052
19139
|
ParamInfo: ParamInfo,
|
|
20053
19140
|
DescribeBackupDecryptionKeyResponse: DescribeBackupDecryptionKeyResponse,
|
|
20054
19141
|
SecurityGroup: SecurityGroup,
|
|
20055
|
-
DescribeProxyConnectionPoolConfResponse: DescribeProxyConnectionPoolConfResponse,
|
|
20056
19142
|
OfflineIsolatedInstancesRequest: OfflineIsolatedInstancesRequest,
|
|
20057
19143
|
ModifyInstanceParamResponse: ModifyInstanceParamResponse,
|
|
20058
19144
|
ColumnPrivilege: ColumnPrivilege,
|
|
@@ -20071,7 +19157,6 @@ module.exports = {
|
|
|
20071
19157
|
RenewDBInstanceResponse: RenewDBInstanceResponse,
|
|
20072
19158
|
TablePrivilege: TablePrivilege,
|
|
20073
19159
|
AddTimeWindowResponse: AddTimeWindowResponse,
|
|
20074
|
-
BaseGroupInfo: BaseGroupInfo,
|
|
20075
19160
|
AdjustCdbProxyResponse: AdjustCdbProxyResponse,
|
|
20076
19161
|
DescribeBackupEncryptionStatusRequest: DescribeBackupEncryptionStatusRequest,
|
|
20077
19162
|
IsolateDBInstanceRequest: IsolateDBInstanceRequest,
|