tencentcloud-sdk-nodejs-intl-en 3.0.1369 → 3.0.1370
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1370";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -104,7 +104,7 @@ const AddLibraDBInstancesResponse = models.AddLibraDBInstancesResponse;
|
|
|
104
104
|
const AuditRuleTemplateInfo = models.AuditRuleTemplateInfo;
|
|
105
105
|
const DescribeParamTemplateDetailRequest = models.DescribeParamTemplateDetailRequest;
|
|
106
106
|
const OpenReadOnlyInstanceExclusiveAccessRequest = models.OpenReadOnlyInstanceExclusiveAccessRequest;
|
|
107
|
-
const
|
|
107
|
+
const AIOptimizerTaskData = models.AIOptimizerTaskData;
|
|
108
108
|
const DescribeRedoLogListByVaultItem = models.DescribeRedoLogListByVaultItem;
|
|
109
109
|
const StartCLSDeliveryResponse = models.StartCLSDeliveryResponse;
|
|
110
110
|
const ParamItemInfo = models.ParamItemInfo;
|
|
@@ -510,6 +510,7 @@ const ModifyLibraDBClusterAccountHostRequest = models.ModifyLibraDBClusterAccoun
|
|
|
510
510
|
const CloseClusterPasswordComplexityRequest = models.CloseClusterPasswordComplexityRequest;
|
|
511
511
|
const ModifyLibraDBClusterAccountDescriptionResponse = models.ModifyLibraDBClusterAccountDescriptionResponse;
|
|
512
512
|
const DescribeIsolatedInstancesRequest = models.DescribeIsolatedInstancesRequest;
|
|
513
|
+
const ResetAccountPasswordRequest = models.ResetAccountPasswordRequest;
|
|
513
514
|
const CheckCreateLibraDBInstanceResponse = models.CheckCreateLibraDBInstanceResponse;
|
|
514
515
|
const AddServerlessRoInstancesResponse = models.AddServerlessRoInstancesResponse;
|
|
515
516
|
const DescribeAuditRuleTemplatesResponse = models.DescribeAuditRuleTemplatesResponse;
|
|
@@ -598,7 +599,7 @@ const GrantAccountPrivilegesResponse = models.GrantAccountPrivilegesResponse;
|
|
|
598
599
|
const LogicBackupConfigInfo = models.LogicBackupConfigInfo;
|
|
599
600
|
const ModifyBinlogConfigResponse = models.ModifyBinlogConfigResponse;
|
|
600
601
|
const ActivateLibraDBInstanceRequest = models.ActivateLibraDBInstanceRequest;
|
|
601
|
-
const
|
|
602
|
+
const ExportResourcePackageDeductDetailsRequest = models.ExportResourcePackageDeductDetailsRequest;
|
|
602
603
|
const ModifiableInfo = models.ModifiableInfo;
|
|
603
604
|
const TaskMaintainInfo = models.TaskMaintainInfo;
|
|
604
605
|
const DescribeServerlessStrategyRequest = models.DescribeServerlessStrategyRequest;
|
|
@@ -5346,66 +5346,18 @@ class OpenReadOnlyInstanceExclusiveAccessRequest extends AbstractModel {
|
|
|
5346
5346
|
}
|
|
5347
5347
|
|
|
5348
5348
|
/**
|
|
5349
|
-
*
|
|
5349
|
+
* AI optimizer task data
|
|
5350
5350
|
* @class
|
|
5351
5351
|
*/
|
|
5352
|
-
class
|
|
5352
|
+
class AIOptimizerTaskData extends AbstractModel {
|
|
5353
5353
|
constructor(){
|
|
5354
5354
|
super();
|
|
5355
5355
|
|
|
5356
5356
|
/**
|
|
5357
|
-
*
|
|
5358
|
-
* @type {string || null}
|
|
5359
|
-
*/
|
|
5360
|
-
this.PackageId = null;
|
|
5361
|
-
|
|
5362
|
-
/**
|
|
5363
|
-
* Specifies the cluster ID of the cynos cluster that uses the resource package capacity.
|
|
5364
|
-
* @type {Array.<string> || null}
|
|
5365
|
-
*/
|
|
5366
|
-
this.ClusterIds = null;
|
|
5367
|
-
|
|
5368
|
-
/**
|
|
5369
|
-
* Sorting field. currently supports: createTime (resource package deduction time), successDeductSpec (resource package deduction amount).
|
|
5370
|
-
* @type {string || null}
|
|
5371
|
-
*/
|
|
5372
|
-
this.OrderBy = null;
|
|
5373
|
-
|
|
5374
|
-
/**
|
|
5375
|
-
* Sorting type. supports ASC, DESC, ASC, DESC.
|
|
5376
|
-
* @type {string || null}
|
|
5377
|
-
*/
|
|
5378
|
-
this.OrderByType = null;
|
|
5379
|
-
|
|
5380
|
-
/**
|
|
5381
|
-
* Start time.
|
|
5382
|
-
* @type {string || null}
|
|
5383
|
-
*/
|
|
5384
|
-
this.StartTime = null;
|
|
5385
|
-
|
|
5386
|
-
/**
|
|
5387
|
-
* End time.
|
|
5388
|
-
* @type {string || null}
|
|
5389
|
-
*/
|
|
5390
|
-
this.EndTime = null;
|
|
5391
|
-
|
|
5392
|
-
/**
|
|
5393
|
-
* A maximum of 2000 rows of data can be exported at a time. currently, a maximum of 2000 rows are supported.
|
|
5394
|
-
* @type {string || null}
|
|
5395
|
-
*/
|
|
5396
|
-
this.Limit = null;
|
|
5397
|
-
|
|
5398
|
-
/**
|
|
5399
|
-
* Offset and page number.
|
|
5400
|
-
* @type {string || null}
|
|
5401
|
-
*/
|
|
5402
|
-
this.Offset = null;
|
|
5403
|
-
|
|
5404
|
-
/**
|
|
5405
|
-
* Specifies the format for exporting data. currently only supports csv format, reserved for future expansion.
|
|
5357
|
+
* <p>Template ID</p>
|
|
5406
5358
|
* @type {string || null}
|
|
5407
5359
|
*/
|
|
5408
|
-
this.
|
|
5360
|
+
this.TemplateID = null;
|
|
5409
5361
|
|
|
5410
5362
|
}
|
|
5411
5363
|
|
|
@@ -5416,15 +5368,7 @@ class ExportResourcePackageDeductDetailsRequest extends AbstractModel {
|
|
|
5416
5368
|
if (!params) {
|
|
5417
5369
|
return;
|
|
5418
5370
|
}
|
|
5419
|
-
this.
|
|
5420
|
-
this.ClusterIds = 'ClusterIds' in params ? params.ClusterIds : null;
|
|
5421
|
-
this.OrderBy = 'OrderBy' in params ? params.OrderBy : null;
|
|
5422
|
-
this.OrderByType = 'OrderByType' in params ? params.OrderByType : null;
|
|
5423
|
-
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
5424
|
-
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
5425
|
-
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
5426
|
-
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
5427
|
-
this.FileType = 'FileType' in params ? params.FileType : null;
|
|
5371
|
+
this.TemplateID = 'TemplateID' in params ? params.TemplateID : null;
|
|
5428
5372
|
|
|
5429
5373
|
}
|
|
5430
5374
|
}
|
|
@@ -20993,7 +20937,7 @@ class InquirePriceModifyRequest extends AbstractModel {
|
|
|
20993
20937
|
}
|
|
20994
20938
|
|
|
20995
20939
|
/**
|
|
20996
|
-
*
|
|
20940
|
+
* Task Information
|
|
20997
20941
|
* @class
|
|
20998
20942
|
*/
|
|
20999
20943
|
class BizTaskInfo extends AbstractModel {
|
|
@@ -21001,246 +20945,255 @@ class BizTaskInfo extends AbstractModel {
|
|
|
21001
20945
|
super();
|
|
21002
20946
|
|
|
21003
20947
|
/**
|
|
21004
|
-
*
|
|
20948
|
+
* <p>Task ID.</p>
|
|
21005
20949
|
* @type {number || null}
|
|
21006
20950
|
*/
|
|
21007
20951
|
this.ID = null;
|
|
21008
20952
|
|
|
21009
20953
|
/**
|
|
21010
|
-
*
|
|
20954
|
+
* <p>User appid</p>
|
|
21011
20955
|
* @type {number || null}
|
|
21012
20956
|
*/
|
|
21013
20957
|
this.AppId = null;
|
|
21014
20958
|
|
|
21015
20959
|
/**
|
|
21016
|
-
*
|
|
20960
|
+
* <p>Cluster ID.</p>
|
|
21017
20961
|
* @type {string || null}
|
|
21018
20962
|
*/
|
|
21019
20963
|
this.ClusterId = null;
|
|
21020
20964
|
|
|
21021
20965
|
/**
|
|
21022
|
-
* Region
|
|
20966
|
+
* <p>Region</p>
|
|
21023
20967
|
* @type {string || null}
|
|
21024
20968
|
*/
|
|
21025
20969
|
this.Region = null;
|
|
21026
20970
|
|
|
21027
20971
|
/**
|
|
21028
|
-
*
|
|
20972
|
+
* <p>Task creation time</p>
|
|
21029
20973
|
* @type {string || null}
|
|
21030
20974
|
*/
|
|
21031
20975
|
this.CreateTime = null;
|
|
21032
20976
|
|
|
21033
20977
|
/**
|
|
21034
|
-
*
|
|
20978
|
+
* <p>Delayed execution time</p>
|
|
21035
20979
|
* @type {string || null}
|
|
21036
20980
|
*/
|
|
21037
20981
|
this.DelayTime = null;
|
|
21038
20982
|
|
|
21039
20983
|
/**
|
|
21040
|
-
* Task failure information
|
|
20984
|
+
* <p>Task failure information</p>
|
|
21041
20985
|
* @type {string || null}
|
|
21042
20986
|
*/
|
|
21043
20987
|
this.ErrMsg = null;
|
|
21044
20988
|
|
|
21045
20989
|
/**
|
|
21046
|
-
*
|
|
20990
|
+
* <p>Asynchronous task flow id</p>
|
|
21047
20991
|
* @type {number || null}
|
|
21048
20992
|
*/
|
|
21049
20993
|
this.FlowId = null;
|
|
21050
20994
|
|
|
21051
20995
|
/**
|
|
21052
|
-
*
|
|
20996
|
+
* <p>Task input information</p>
|
|
21053
20997
|
* @type {string || null}
|
|
21054
20998
|
*/
|
|
21055
20999
|
this.Input = null;
|
|
21056
21000
|
|
|
21057
21001
|
/**
|
|
21058
|
-
*
|
|
21002
|
+
* <p>Instance group id.</p>
|
|
21059
21003
|
* @type {string || null}
|
|
21060
21004
|
*/
|
|
21061
21005
|
this.InstanceGrpId = null;
|
|
21062
21006
|
|
|
21063
21007
|
/**
|
|
21064
|
-
*
|
|
21008
|
+
* <p>Instance group id.</p>
|
|
21065
21009
|
* @type {string || null}
|
|
21066
21010
|
*/
|
|
21067
21011
|
this.InstanceGroupId = null;
|
|
21068
21012
|
|
|
21069
21013
|
/**
|
|
21070
|
-
*
|
|
21014
|
+
* <p>Instance id</p>
|
|
21071
21015
|
* @type {string || null}
|
|
21072
21016
|
*/
|
|
21073
21017
|
this.InstanceId = null;
|
|
21074
21018
|
|
|
21075
21019
|
/**
|
|
21076
|
-
*
|
|
21020
|
+
* <p>Task operation object id</p>
|
|
21077
21021
|
* @type {string || null}
|
|
21078
21022
|
*/
|
|
21079
21023
|
this.ObjectId = null;
|
|
21080
21024
|
|
|
21081
21025
|
/**
|
|
21082
|
-
*
|
|
21026
|
+
* <p>Task operation object type.</p>
|
|
21083
21027
|
* @type {string || null}
|
|
21084
21028
|
*/
|
|
21085
21029
|
this.ObjectType = null;
|
|
21086
21030
|
|
|
21087
21031
|
/**
|
|
21088
|
-
*
|
|
21032
|
+
* <p>Operator uin</p>
|
|
21089
21033
|
* @type {string || null}
|
|
21090
21034
|
*/
|
|
21091
21035
|
this.Operator = null;
|
|
21092
21036
|
|
|
21093
21037
|
/**
|
|
21094
|
-
*
|
|
21038
|
+
* <p>Task output information</p>
|
|
21095
21039
|
* @type {string || null}
|
|
21096
21040
|
*/
|
|
21097
21041
|
this.Output = null;
|
|
21098
21042
|
|
|
21099
21043
|
/**
|
|
21100
|
-
*
|
|
21044
|
+
* <p>Task status</p>
|
|
21101
21045
|
* @type {string || null}
|
|
21102
21046
|
*/
|
|
21103
21047
|
this.Status = null;
|
|
21104
21048
|
|
|
21105
21049
|
/**
|
|
21106
|
-
*
|
|
21050
|
+
* <p>Task type</p>
|
|
21107
21051
|
* @type {string || null}
|
|
21108
21052
|
*/
|
|
21109
21053
|
this.TaskType = null;
|
|
21110
21054
|
|
|
21111
21055
|
/**
|
|
21112
|
-
*
|
|
21056
|
+
* <p>Parent task ID that triggers this task</p>
|
|
21113
21057
|
* @type {number || null}
|
|
21114
21058
|
*/
|
|
21115
21059
|
this.TriggerTaskId = null;
|
|
21116
21060
|
|
|
21117
21061
|
/**
|
|
21118
|
-
*
|
|
21062
|
+
* <p>Update time.</p>
|
|
21119
21063
|
* @type {string || null}
|
|
21120
21064
|
*/
|
|
21121
21065
|
this.UpdateTime = null;
|
|
21122
21066
|
|
|
21123
21067
|
/**
|
|
21124
|
-
*
|
|
21068
|
+
* <p>Task start time</p>
|
|
21125
21069
|
* @type {string || null}
|
|
21126
21070
|
*/
|
|
21127
21071
|
this.StartTime = null;
|
|
21128
21072
|
|
|
21129
21073
|
/**
|
|
21130
|
-
*
|
|
21074
|
+
* <p>Task end time</p>
|
|
21131
21075
|
* @type {string || null}
|
|
21132
21076
|
*/
|
|
21133
21077
|
this.EndTime = null;
|
|
21134
21078
|
|
|
21135
21079
|
/**
|
|
21136
|
-
*
|
|
21080
|
+
* <p>Cluster name.</p>
|
|
21137
21081
|
* @type {string || null}
|
|
21138
21082
|
*/
|
|
21139
21083
|
this.ClusterName = null;
|
|
21140
21084
|
|
|
21141
21085
|
/**
|
|
21142
|
-
*
|
|
21086
|
+
* <p>Instance name</p>
|
|
21143
21087
|
* @type {string || null}
|
|
21144
21088
|
*/
|
|
21145
21089
|
this.InstanceName = null;
|
|
21146
21090
|
|
|
21147
21091
|
/**
|
|
21148
|
-
*
|
|
21092
|
+
* <p>Task progress</p>
|
|
21149
21093
|
* @type {number || null}
|
|
21150
21094
|
*/
|
|
21151
21095
|
this.Process = null;
|
|
21152
21096
|
|
|
21153
21097
|
/**
|
|
21154
|
-
*
|
|
21098
|
+
* <p>Modify parameter task information</p>
|
|
21099
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
21155
21100
|
* @type {Array.<ModifyParamsData> || null}
|
|
21156
21101
|
*/
|
|
21157
21102
|
this.ModifyParamsData = null;
|
|
21158
21103
|
|
|
21159
21104
|
/**
|
|
21160
|
-
* Create cluster task information
|
|
21105
|
+
* <p>Create cluster task information</p>
|
|
21161
21106
|
* @type {CreateClustersData || null}
|
|
21162
21107
|
*/
|
|
21163
21108
|
this.CreateClustersData = null;
|
|
21164
21109
|
|
|
21165
21110
|
/**
|
|
21166
|
-
* Cluster rollback task information
|
|
21111
|
+
* <p>Cluster rollback task information</p>
|
|
21167
21112
|
* @type {RollbackData || null}
|
|
21168
21113
|
*/
|
|
21169
21114
|
this.RollbackData = null;
|
|
21170
21115
|
|
|
21171
21116
|
/**
|
|
21172
|
-
* Instance configuration change task information
|
|
21117
|
+
* <p>Instance configuration change task information</p>
|
|
21173
21118
|
* @type {ModifyInstanceData || null}
|
|
21174
21119
|
*/
|
|
21175
21120
|
this.ModifyInstanceData = null;
|
|
21176
21121
|
|
|
21177
21122
|
/**
|
|
21178
|
-
*
|
|
21123
|
+
* <p>Manual backup task information</p>
|
|
21124
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
21179
21125
|
* @type {ManualBackupData || null}
|
|
21180
21126
|
*/
|
|
21181
21127
|
this.ManualBackupData = null;
|
|
21182
21128
|
|
|
21183
21129
|
/**
|
|
21184
|
-
* Modify kernel version task information
|
|
21130
|
+
* <p>Modify kernel version task information</p>
|
|
21185
21131
|
* @type {ModifyDbVersionData || null}
|
|
21186
21132
|
*/
|
|
21187
21133
|
this.ModifyDbVersionData = null;
|
|
21188
21134
|
|
|
21189
21135
|
/**
|
|
21190
|
-
* Cluster
|
|
21136
|
+
* <p>Cluster Availability Zone Information</p>
|
|
21191
21137
|
* @type {ClusterSlaveData || null}
|
|
21192
21138
|
*/
|
|
21193
21139
|
this.ClusterSlaveData = null;
|
|
21194
21140
|
|
|
21195
21141
|
/**
|
|
21196
|
-
*
|
|
21142
|
+
* <p>Convert cluster logs</p>
|
|
21143
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
21197
21144
|
* @type {SwitchClusterLogBin || null}
|
|
21198
21145
|
*/
|
|
21199
21146
|
this.SwitchClusterLogBin = null;
|
|
21200
21147
|
|
|
21201
21148
|
/**
|
|
21202
|
-
*
|
|
21149
|
+
* <p>Modify instance parameter data</p>
|
|
21150
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
21203
21151
|
* @type {BizTaskModifyParamsData || null}
|
|
21204
21152
|
*/
|
|
21205
21153
|
this.ModifyInstanceParamsData = null;
|
|
21206
21154
|
|
|
21207
21155
|
/**
|
|
21208
|
-
* Maintenance time
|
|
21156
|
+
* <p>Maintenance time</p>
|
|
21209
21157
|
* @type {TaskMaintainInfo || null}
|
|
21210
21158
|
*/
|
|
21211
21159
|
this.TaskMaintainInfo = null;
|
|
21212
21160
|
|
|
21213
21161
|
/**
|
|
21214
|
-
* Instance
|
|
21215
|
-
|
|
21162
|
+
* <p>Instance Log Delivery Information</p>
|
|
21216
21163
|
* @type {Array.<InstanceCLSDeliveryInfo> || null}
|
|
21217
21164
|
*/
|
|
21218
21165
|
this.InstanceCLSDeliveryInfos = null;
|
|
21219
21166
|
|
|
21220
21167
|
/**
|
|
21221
|
-
* Task progress information
|
|
21168
|
+
* <p>Task progress information</p>
|
|
21222
21169
|
* @type {TaskProgressInfo || null}
|
|
21223
21170
|
*/
|
|
21224
21171
|
this.TaskProgressInfo = null;
|
|
21225
21172
|
|
|
21226
21173
|
/**
|
|
21227
|
-
* Global
|
|
21174
|
+
* <p>Global database network task</p>
|
|
21228
21175
|
* @type {GdnTaskInfo || null}
|
|
21229
21176
|
*/
|
|
21230
21177
|
this.GdnTaskInfo = null;
|
|
21231
21178
|
|
|
21232
21179
|
/**
|
|
21233
|
-
* Safe id
|
|
21180
|
+
* <p>Safe id</p>
|
|
21234
21181
|
* @type {string || null}
|
|
21235
21182
|
*/
|
|
21236
21183
|
this.VaultId = null;
|
|
21237
21184
|
|
|
21238
21185
|
/**
|
|
21239
|
-
* Safe name
|
|
21186
|
+
* <p>Safe name</p>
|
|
21240
21187
|
* @type {string || null}
|
|
21241
21188
|
*/
|
|
21242
21189
|
this.VaultName = null;
|
|
21243
21190
|
|
|
21191
|
+
/**
|
|
21192
|
+
* <p>AI optimizer task information</p>
|
|
21193
|
+
* @type {AIOptimizerTaskData || null}
|
|
21194
|
+
*/
|
|
21195
|
+
this.AIOptimizerTaskData = null;
|
|
21196
|
+
|
|
21244
21197
|
}
|
|
21245
21198
|
|
|
21246
21199
|
/**
|
|
@@ -21362,6 +21315,12 @@ class BizTaskInfo extends AbstractModel {
|
|
|
21362
21315
|
this.VaultId = 'VaultId' in params ? params.VaultId : null;
|
|
21363
21316
|
this.VaultName = 'VaultName' in params ? params.VaultName : null;
|
|
21364
21317
|
|
|
21318
|
+
if (params.AIOptimizerTaskData) {
|
|
21319
|
+
let obj = new AIOptimizerTaskData();
|
|
21320
|
+
obj.deserialize(params.AIOptimizerTaskData)
|
|
21321
|
+
this.AIOptimizerTaskData = obj;
|
|
21322
|
+
}
|
|
21323
|
+
|
|
21365
21324
|
}
|
|
21366
21325
|
}
|
|
21367
21326
|
|
|
@@ -29274,6 +29233,55 @@ class DescribeIsolatedInstancesRequest extends AbstractModel {
|
|
|
29274
29233
|
}
|
|
29275
29234
|
}
|
|
29276
29235
|
|
|
29236
|
+
/**
|
|
29237
|
+
* ResetAccountPassword request structure.
|
|
29238
|
+
* @class
|
|
29239
|
+
*/
|
|
29240
|
+
class ResetAccountPasswordRequest extends AbstractModel {
|
|
29241
|
+
constructor(){
|
|
29242
|
+
super();
|
|
29243
|
+
|
|
29244
|
+
/**
|
|
29245
|
+
* Database account name
|
|
29246
|
+
* @type {string || null}
|
|
29247
|
+
*/
|
|
29248
|
+
this.AccountName = null;
|
|
29249
|
+
|
|
29250
|
+
/**
|
|
29251
|
+
* New password of the database account
|
|
29252
|
+
* @type {string || null}
|
|
29253
|
+
*/
|
|
29254
|
+
this.AccountPassword = null;
|
|
29255
|
+
|
|
29256
|
+
/**
|
|
29257
|
+
* Cluster ID
|
|
29258
|
+
* @type {string || null}
|
|
29259
|
+
*/
|
|
29260
|
+
this.ClusterId = null;
|
|
29261
|
+
|
|
29262
|
+
/**
|
|
29263
|
+
* Host. Default value: `%`
|
|
29264
|
+
* @type {string || null}
|
|
29265
|
+
*/
|
|
29266
|
+
this.Host = null;
|
|
29267
|
+
|
|
29268
|
+
}
|
|
29269
|
+
|
|
29270
|
+
/**
|
|
29271
|
+
* @private
|
|
29272
|
+
*/
|
|
29273
|
+
deserialize(params) {
|
|
29274
|
+
if (!params) {
|
|
29275
|
+
return;
|
|
29276
|
+
}
|
|
29277
|
+
this.AccountName = 'AccountName' in params ? params.AccountName : null;
|
|
29278
|
+
this.AccountPassword = 'AccountPassword' in params ? params.AccountPassword : null;
|
|
29279
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
29280
|
+
this.Host = 'Host' in params ? params.Host : null;
|
|
29281
|
+
|
|
29282
|
+
}
|
|
29283
|
+
}
|
|
29284
|
+
|
|
29277
29285
|
/**
|
|
29278
29286
|
* CheckCreateLibraDBInstance response structure.
|
|
29279
29287
|
* @class
|
|
@@ -34405,36 +34413,66 @@ class ActivateLibraDBInstanceRequest extends AbstractModel {
|
|
|
34405
34413
|
}
|
|
34406
34414
|
|
|
34407
34415
|
/**
|
|
34408
|
-
*
|
|
34416
|
+
* ExportResourcePackageDeductDetails request structure.
|
|
34409
34417
|
* @class
|
|
34410
34418
|
*/
|
|
34411
|
-
class
|
|
34419
|
+
class ExportResourcePackageDeductDetailsRequest extends AbstractModel {
|
|
34412
34420
|
constructor(){
|
|
34413
34421
|
super();
|
|
34414
34422
|
|
|
34415
34423
|
/**
|
|
34416
|
-
*
|
|
34424
|
+
* Resource package ID to be exported.
|
|
34417
34425
|
* @type {string || null}
|
|
34418
34426
|
*/
|
|
34419
|
-
this.
|
|
34427
|
+
this.PackageId = null;
|
|
34420
34428
|
|
|
34421
34429
|
/**
|
|
34422
|
-
*
|
|
34430
|
+
* Specifies the cluster ID of the cynos cluster that uses the resource package capacity.
|
|
34431
|
+
* @type {Array.<string> || null}
|
|
34432
|
+
*/
|
|
34433
|
+
this.ClusterIds = null;
|
|
34434
|
+
|
|
34435
|
+
/**
|
|
34436
|
+
* Sorting field. currently supports: createTime (resource package deduction time), successDeductSpec (resource package deduction amount).
|
|
34423
34437
|
* @type {string || null}
|
|
34424
34438
|
*/
|
|
34425
|
-
this.
|
|
34439
|
+
this.OrderBy = null;
|
|
34426
34440
|
|
|
34427
34441
|
/**
|
|
34428
|
-
*
|
|
34442
|
+
* Sorting type. supports ASC, DESC, ASC, DESC.
|
|
34429
34443
|
* @type {string || null}
|
|
34430
34444
|
*/
|
|
34431
|
-
this.
|
|
34445
|
+
this.OrderByType = null;
|
|
34432
34446
|
|
|
34433
34447
|
/**
|
|
34434
|
-
*
|
|
34448
|
+
* Start time.
|
|
34435
34449
|
* @type {string || null}
|
|
34436
34450
|
*/
|
|
34437
|
-
this.
|
|
34451
|
+
this.StartTime = null;
|
|
34452
|
+
|
|
34453
|
+
/**
|
|
34454
|
+
* End time.
|
|
34455
|
+
* @type {string || null}
|
|
34456
|
+
*/
|
|
34457
|
+
this.EndTime = null;
|
|
34458
|
+
|
|
34459
|
+
/**
|
|
34460
|
+
* A maximum of 2000 rows of data can be exported at a time. currently, a maximum of 2000 rows are supported.
|
|
34461
|
+
* @type {string || null}
|
|
34462
|
+
*/
|
|
34463
|
+
this.Limit = null;
|
|
34464
|
+
|
|
34465
|
+
/**
|
|
34466
|
+
* Offset and page number.
|
|
34467
|
+
* @type {string || null}
|
|
34468
|
+
*/
|
|
34469
|
+
this.Offset = null;
|
|
34470
|
+
|
|
34471
|
+
/**
|
|
34472
|
+
* Specifies the format for exporting data. currently only supports csv format, reserved for future expansion.
|
|
34473
|
+
* @type {string || null}
|
|
34474
|
+
*/
|
|
34475
|
+
this.FileType = null;
|
|
34438
34476
|
|
|
34439
34477
|
}
|
|
34440
34478
|
|
|
@@ -34445,10 +34483,15 @@ class ResetAccountPasswordRequest extends AbstractModel {
|
|
|
34445
34483
|
if (!params) {
|
|
34446
34484
|
return;
|
|
34447
34485
|
}
|
|
34448
|
-
this.
|
|
34449
|
-
this.
|
|
34450
|
-
this.
|
|
34451
|
-
this.
|
|
34486
|
+
this.PackageId = 'PackageId' in params ? params.PackageId : null;
|
|
34487
|
+
this.ClusterIds = 'ClusterIds' in params ? params.ClusterIds : null;
|
|
34488
|
+
this.OrderBy = 'OrderBy' in params ? params.OrderBy : null;
|
|
34489
|
+
this.OrderByType = 'OrderByType' in params ? params.OrderByType : null;
|
|
34490
|
+
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
34491
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
34492
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
34493
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
34494
|
+
this.FileType = 'FileType' in params ? params.FileType : null;
|
|
34452
34495
|
|
|
34453
34496
|
}
|
|
34454
34497
|
}
|
|
@@ -35399,7 +35442,7 @@ module.exports = {
|
|
|
35399
35442
|
AuditRuleTemplateInfo: AuditRuleTemplateInfo,
|
|
35400
35443
|
DescribeParamTemplateDetailRequest: DescribeParamTemplateDetailRequest,
|
|
35401
35444
|
OpenReadOnlyInstanceExclusiveAccessRequest: OpenReadOnlyInstanceExclusiveAccessRequest,
|
|
35402
|
-
|
|
35445
|
+
AIOptimizerTaskData: AIOptimizerTaskData,
|
|
35403
35446
|
DescribeRedoLogListByVaultItem: DescribeRedoLogListByVaultItem,
|
|
35404
35447
|
StartCLSDeliveryResponse: StartCLSDeliveryResponse,
|
|
35405
35448
|
ParamItemInfo: ParamItemInfo,
|
|
@@ -35805,6 +35848,7 @@ module.exports = {
|
|
|
35805
35848
|
CloseClusterPasswordComplexityRequest: CloseClusterPasswordComplexityRequest,
|
|
35806
35849
|
ModifyLibraDBClusterAccountDescriptionResponse: ModifyLibraDBClusterAccountDescriptionResponse,
|
|
35807
35850
|
DescribeIsolatedInstancesRequest: DescribeIsolatedInstancesRequest,
|
|
35851
|
+
ResetAccountPasswordRequest: ResetAccountPasswordRequest,
|
|
35808
35852
|
CheckCreateLibraDBInstanceResponse: CheckCreateLibraDBInstanceResponse,
|
|
35809
35853
|
AddServerlessRoInstancesResponse: AddServerlessRoInstancesResponse,
|
|
35810
35854
|
DescribeAuditRuleTemplatesResponse: DescribeAuditRuleTemplatesResponse,
|
|
@@ -35893,7 +35937,7 @@ module.exports = {
|
|
|
35893
35937
|
LogicBackupConfigInfo: LogicBackupConfigInfo,
|
|
35894
35938
|
ModifyBinlogConfigResponse: ModifyBinlogConfigResponse,
|
|
35895
35939
|
ActivateLibraDBInstanceRequest: ActivateLibraDBInstanceRequest,
|
|
35896
|
-
|
|
35940
|
+
ExportResourcePackageDeductDetailsRequest: ExportResourcePackageDeductDetailsRequest,
|
|
35897
35941
|
ModifiableInfo: ModifiableInfo,
|
|
35898
35942
|
TaskMaintainInfo: TaskMaintainInfo,
|
|
35899
35943
|
DescribeServerlessStrategyRequest: DescribeServerlessStrategyRequest,
|
|
@@ -468,6 +468,96 @@ class FlowSRTInfo extends AbstractModel {
|
|
|
468
468
|
*/
|
|
469
469
|
this.RecvPacketDropNumber = null;
|
|
470
470
|
|
|
471
|
+
/**
|
|
472
|
+
* bandwidth
|
|
473
|
+
* @type {number || null}
|
|
474
|
+
*/
|
|
475
|
+
this.Bandwidth = null;
|
|
476
|
+
|
|
477
|
+
/**
|
|
478
|
+
* Transmit bandwidth
|
|
479
|
+
* @type {number || null}
|
|
480
|
+
*/
|
|
481
|
+
this.SendBandwidth = null;
|
|
482
|
+
|
|
483
|
+
/**
|
|
484
|
+
* Receive bandwidth
|
|
485
|
+
* @type {number || null}
|
|
486
|
+
*/
|
|
487
|
+
this.RecvBandwidth = null;
|
|
488
|
+
|
|
489
|
+
/**
|
|
490
|
+
* Number of packets sent
|
|
491
|
+
* @type {number || null}
|
|
492
|
+
*/
|
|
493
|
+
this.SendPackets = null;
|
|
494
|
+
|
|
495
|
+
/**
|
|
496
|
+
* Number of received packets
|
|
497
|
+
* @type {number || null}
|
|
498
|
+
*/
|
|
499
|
+
this.RecvPackets = null;
|
|
500
|
+
|
|
501
|
+
/**
|
|
502
|
+
* Send lost package
|
|
503
|
+
* @type {number || null}
|
|
504
|
+
*/
|
|
505
|
+
this.SendLostPackets = null;
|
|
506
|
+
|
|
507
|
+
/**
|
|
508
|
+
* Accept lost packages
|
|
509
|
+
* @type {number || null}
|
|
510
|
+
*/
|
|
511
|
+
this.RecvLostPackets = null;
|
|
512
|
+
|
|
513
|
+
/**
|
|
514
|
+
* Number of retransmission packets sent
|
|
515
|
+
* @type {number || null}
|
|
516
|
+
*/
|
|
517
|
+
this.SendRetransmitPackets = null;
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* Number of received retransmission packets
|
|
521
|
+
* @type {number || null}
|
|
522
|
+
*/
|
|
523
|
+
this.RecvRetransmitPackets = null;
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* Flight window size
|
|
527
|
+
* @type {number || null}
|
|
528
|
+
*/
|
|
529
|
+
this.FlightSize = null;
|
|
530
|
+
|
|
531
|
+
/**
|
|
532
|
+
* congestion window
|
|
533
|
+
* @type {number || null}
|
|
534
|
+
*/
|
|
535
|
+
this.CongestionWindow = null;
|
|
536
|
+
|
|
537
|
+
/**
|
|
538
|
+
* Send buffer (ms)
|
|
539
|
+
* @type {number || null}
|
|
540
|
+
*/
|
|
541
|
+
this.SendBuffer = null;
|
|
542
|
+
|
|
543
|
+
/**
|
|
544
|
+
* Receive buffer (ms)
|
|
545
|
+
* @type {number || null}
|
|
546
|
+
*/
|
|
547
|
+
this.RecvBuffer = null;
|
|
548
|
+
|
|
549
|
+
/**
|
|
550
|
+
* Sending delay
|
|
551
|
+
* @type {number || null}
|
|
552
|
+
*/
|
|
553
|
+
this.SendLatency = null;
|
|
554
|
+
|
|
555
|
+
/**
|
|
556
|
+
* Receiving delay
|
|
557
|
+
* @type {number || null}
|
|
558
|
+
*/
|
|
559
|
+
this.RecvLatency = null;
|
|
560
|
+
|
|
471
561
|
}
|
|
472
562
|
|
|
473
563
|
/**
|
|
@@ -486,6 +576,21 @@ class FlowSRTInfo extends AbstractModel {
|
|
|
486
576
|
this.SessionId = 'SessionId' in params ? params.SessionId : null;
|
|
487
577
|
this.SendPacketDropNumber = 'SendPacketDropNumber' in params ? params.SendPacketDropNumber : null;
|
|
488
578
|
this.RecvPacketDropNumber = 'RecvPacketDropNumber' in params ? params.RecvPacketDropNumber : null;
|
|
579
|
+
this.Bandwidth = 'Bandwidth' in params ? params.Bandwidth : null;
|
|
580
|
+
this.SendBandwidth = 'SendBandwidth' in params ? params.SendBandwidth : null;
|
|
581
|
+
this.RecvBandwidth = 'RecvBandwidth' in params ? params.RecvBandwidth : null;
|
|
582
|
+
this.SendPackets = 'SendPackets' in params ? params.SendPackets : null;
|
|
583
|
+
this.RecvPackets = 'RecvPackets' in params ? params.RecvPackets : null;
|
|
584
|
+
this.SendLostPackets = 'SendLostPackets' in params ? params.SendLostPackets : null;
|
|
585
|
+
this.RecvLostPackets = 'RecvLostPackets' in params ? params.RecvLostPackets : null;
|
|
586
|
+
this.SendRetransmitPackets = 'SendRetransmitPackets' in params ? params.SendRetransmitPackets : null;
|
|
587
|
+
this.RecvRetransmitPackets = 'RecvRetransmitPackets' in params ? params.RecvRetransmitPackets : null;
|
|
588
|
+
this.FlightSize = 'FlightSize' in params ? params.FlightSize : null;
|
|
589
|
+
this.CongestionWindow = 'CongestionWindow' in params ? params.CongestionWindow : null;
|
|
590
|
+
this.SendBuffer = 'SendBuffer' in params ? params.SendBuffer : null;
|
|
591
|
+
this.RecvBuffer = 'RecvBuffer' in params ? params.RecvBuffer : null;
|
|
592
|
+
this.SendLatency = 'SendLatency' in params ? params.SendLatency : null;
|
|
593
|
+
this.RecvLatency = 'RecvLatency' in params ? params.RecvLatency : null;
|
|
489
594
|
|
|
490
595
|
}
|
|
491
596
|
}
|
|
@@ -3127,6 +3232,12 @@ It must be in UTC format, such as `2020-01-01T12:00:00Z`.
|
|
|
3127
3232
|
*/
|
|
3128
3233
|
this.Period = null;
|
|
3129
3234
|
|
|
3235
|
+
/**
|
|
3236
|
+
* Peer IP address
|
|
3237
|
+
* @type {string || null}
|
|
3238
|
+
*/
|
|
3239
|
+
this.RemoteIp = null;
|
|
3240
|
+
|
|
3130
3241
|
}
|
|
3131
3242
|
|
|
3132
3243
|
/**
|
|
@@ -3143,6 +3254,7 @@ It must be in UTC format, such as `2020-01-01T12:00:00Z`.
|
|
|
3143
3254
|
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
3144
3255
|
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
3145
3256
|
this.Period = 'Period' in params ? params.Period : null;
|
|
3257
|
+
this.RemoteIp = 'RemoteIp' in params ? params.RemoteIp : null;
|
|
3146
3258
|
|
|
3147
3259
|
}
|
|
3148
3260
|
}
|