tencentcloud-sdk-nodejs-cynosdb 4.1.247 → 4.1.249
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/es/services/cynosdb/v20190107/cynosdb_client.js +29 -8
- package/package.json +1 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +37 -9
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +54 -12
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +508 -123
|
@@ -412,6 +412,19 @@ export interface ModifyBackupDownloadRestrictionResponse {
|
|
|
412
412
|
*/
|
|
413
413
|
RequestId?: string;
|
|
414
414
|
}
|
|
415
|
+
/**
|
|
416
|
+
* UpgradeClusterVersion返回参数结构体
|
|
417
|
+
*/
|
|
418
|
+
export interface UpgradeClusterVersionResponse {
|
|
419
|
+
/**
|
|
420
|
+
* 异步任务id
|
|
421
|
+
*/
|
|
422
|
+
FlowId?: number;
|
|
423
|
+
/**
|
|
424
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
425
|
+
*/
|
|
426
|
+
RequestId?: string;
|
|
427
|
+
}
|
|
415
428
|
/**
|
|
416
429
|
* 将被删除的备份文件列表
|
|
417
430
|
*/
|
|
@@ -1151,6 +1164,19 @@ export interface BackupRegionAndIds {
|
|
|
1151
1164
|
*/
|
|
1152
1165
|
BackupId?: number;
|
|
1153
1166
|
}
|
|
1167
|
+
/**
|
|
1168
|
+
* SearchClusterTables返回参数结构体
|
|
1169
|
+
*/
|
|
1170
|
+
export interface SearchClusterTablesResponse {
|
|
1171
|
+
/**
|
|
1172
|
+
* 数据表列表
|
|
1173
|
+
*/
|
|
1174
|
+
Tables?: Array<DatabaseTables>;
|
|
1175
|
+
/**
|
|
1176
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1177
|
+
*/
|
|
1178
|
+
RequestId?: string;
|
|
1179
|
+
}
|
|
1154
1180
|
/**
|
|
1155
1181
|
* DescribeClusterDetail请求参数结构体
|
|
1156
1182
|
*/
|
|
@@ -1208,13 +1234,35 @@ export interface UpgradeProxy {
|
|
|
1208
1234
|
ReloadBalance?: string;
|
|
1209
1235
|
}
|
|
1210
1236
|
/**
|
|
1211
|
-
*
|
|
1237
|
+
* DescribeClusterPeriodScalePolicy返回参数结构体
|
|
1212
1238
|
*/
|
|
1213
|
-
export interface
|
|
1239
|
+
export interface DescribeClusterPeriodScalePolicyResponse {
|
|
1214
1240
|
/**
|
|
1215
|
-
*
|
|
1241
|
+
* 集群周期弹性策略列表
|
|
1216
1242
|
*/
|
|
1217
|
-
|
|
1243
|
+
PolicyList?: Array<ClusterPeriodScalePolicy>;
|
|
1244
|
+
/**
|
|
1245
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1246
|
+
*/
|
|
1247
|
+
RequestId?: string;
|
|
1248
|
+
}
|
|
1249
|
+
/**
|
|
1250
|
+
* OpenAIOptimizer请求参数结构体
|
|
1251
|
+
*/
|
|
1252
|
+
export interface OpenAIOptimizerRequest {
|
|
1253
|
+
/**
|
|
1254
|
+
* <p>集群ID</p>
|
|
1255
|
+
*/
|
|
1256
|
+
ClusterId: string;
|
|
1257
|
+
/**
|
|
1258
|
+
* <p>实例ID</p>
|
|
1259
|
+
*/
|
|
1260
|
+
InstanceId: string;
|
|
1261
|
+
}
|
|
1262
|
+
/**
|
|
1263
|
+
* ModifyBackupName返回参数结构体
|
|
1264
|
+
*/
|
|
1265
|
+
export interface ModifyBackupNameResponse {
|
|
1218
1266
|
/**
|
|
1219
1267
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1220
1268
|
*/
|
|
@@ -2459,18 +2507,21 @@ export interface DescribeClusterReadOnlyResponse {
|
|
|
2459
2507
|
*/
|
|
2460
2508
|
export interface DescribeInstanceSpecsRequest {
|
|
2461
2509
|
/**
|
|
2462
|
-
*
|
|
2463
|
-
<li> MYSQL </li>
|
|
2510
|
+
* <p>数据库类型,取值范围: </p><li> MYSQL </li>
|
|
2464
2511
|
*/
|
|
2465
2512
|
DbType: string;
|
|
2466
2513
|
/**
|
|
2467
|
-
*
|
|
2514
|
+
* <p>是否需要返回可用区信息</p>
|
|
2468
2515
|
*/
|
|
2469
2516
|
IncludeZoneStocks?: boolean;
|
|
2470
2517
|
/**
|
|
2471
|
-
*
|
|
2518
|
+
* <p>实例机器类型</p>
|
|
2472
2519
|
*/
|
|
2473
2520
|
DeviceType?: string;
|
|
2521
|
+
/**
|
|
2522
|
+
* <p>集群级别,可空。例如 P0, P1</p>
|
|
2523
|
+
*/
|
|
2524
|
+
ClusterLevel?: string;
|
|
2474
2525
|
}
|
|
2475
2526
|
/**
|
|
2476
2527
|
* ModifyMaintainPeriodConfig返回参数结构体
|
|
@@ -2481,6 +2532,15 @@ export interface ModifyMaintainPeriodConfigResponse {
|
|
|
2481
2532
|
*/
|
|
2482
2533
|
RequestId?: string;
|
|
2483
2534
|
}
|
|
2535
|
+
/**
|
|
2536
|
+
* ModifyClusterPeriodScalePolicy返回参数结构体
|
|
2537
|
+
*/
|
|
2538
|
+
export interface ModifyClusterPeriodScalePolicyResponse {
|
|
2539
|
+
/**
|
|
2540
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2541
|
+
*/
|
|
2542
|
+
RequestId?: string;
|
|
2543
|
+
}
|
|
2484
2544
|
/**
|
|
2485
2545
|
* DescribeProxyNodes返回参数结构体
|
|
2486
2546
|
*/
|
|
@@ -2695,17 +2755,25 @@ export interface DescribeZonesResponse {
|
|
|
2695
2755
|
RequestId?: string;
|
|
2696
2756
|
}
|
|
2697
2757
|
/**
|
|
2698
|
-
*
|
|
2758
|
+
* GrantAccountPrivileges请求参数结构体
|
|
2699
2759
|
*/
|
|
2700
|
-
export interface
|
|
2760
|
+
export interface GrantAccountPrivilegesRequest {
|
|
2701
2761
|
/**
|
|
2702
|
-
*
|
|
2762
|
+
* 集群id
|
|
2703
2763
|
*/
|
|
2704
|
-
|
|
2764
|
+
ClusterId: string;
|
|
2705
2765
|
/**
|
|
2706
|
-
*
|
|
2766
|
+
* 账号信息
|
|
2707
2767
|
*/
|
|
2708
|
-
|
|
2768
|
+
Account: InputAccount;
|
|
2769
|
+
/**
|
|
2770
|
+
* 数据库表权限码数组
|
|
2771
|
+
*/
|
|
2772
|
+
DbTablePrivileges: Array<string>;
|
|
2773
|
+
/**
|
|
2774
|
+
* 数据库表信息
|
|
2775
|
+
*/
|
|
2776
|
+
DbTables: Array<DbTable>;
|
|
2709
2777
|
}
|
|
2710
2778
|
/**
|
|
2711
2779
|
* ModifyParamTemplate请求参数结构体
|
|
@@ -3550,6 +3618,63 @@ export interface DescribeResourcePackageDetailRequest {
|
|
|
3550
3618
|
*/
|
|
3551
3619
|
InstanceIds?: Array<string>;
|
|
3552
3620
|
}
|
|
3621
|
+
/**
|
|
3622
|
+
* 集群周期弹性策略
|
|
3623
|
+
*/
|
|
3624
|
+
export interface ClusterPeriodScalePolicy {
|
|
3625
|
+
/**
|
|
3626
|
+
* <p>策略ID</p>
|
|
3627
|
+
*/
|
|
3628
|
+
PolicyId?: string;
|
|
3629
|
+
/**
|
|
3630
|
+
* <p>实例类型。rw-读写类型,ro-只读类型。</p>
|
|
3631
|
+
*/
|
|
3632
|
+
InstanceType?: string;
|
|
3633
|
+
/**
|
|
3634
|
+
* <p>弹性下限, 后续废弃, 请使用MinCcu</p>
|
|
3635
|
+
*/
|
|
3636
|
+
MinCpu?: number;
|
|
3637
|
+
/**
|
|
3638
|
+
* <p>弹性上限,后续废弃,请使用MaxCcu</p>
|
|
3639
|
+
*/
|
|
3640
|
+
MaxCpu?: number;
|
|
3641
|
+
/**
|
|
3642
|
+
* <p>弹性开始时间</p>
|
|
3643
|
+
*/
|
|
3644
|
+
ScaleStartTime?: string;
|
|
3645
|
+
/**
|
|
3646
|
+
* <p>弹性结束时间</p>
|
|
3647
|
+
*/
|
|
3648
|
+
ScaleEndTime?: string;
|
|
3649
|
+
/**
|
|
3650
|
+
* <p>策略有效起始日期时间</p>
|
|
3651
|
+
*/
|
|
3652
|
+
PolicyStartTime?: string;
|
|
3653
|
+
/**
|
|
3654
|
+
* <p>策略有效截止日期时间</p>
|
|
3655
|
+
*/
|
|
3656
|
+
PolicyEndTime?: string;
|
|
3657
|
+
/**
|
|
3658
|
+
* <p>周期类型。day-天, week-星期,month-月</p>
|
|
3659
|
+
*/
|
|
3660
|
+
PeriodType?: string;
|
|
3661
|
+
/**
|
|
3662
|
+
* <p>在周期内的时间配置。对于week,表示星期几;对于month,表示几号。对于day,此参数不生效。</p>
|
|
3663
|
+
*/
|
|
3664
|
+
PeriodConfig?: Array<number | bigint>;
|
|
3665
|
+
/**
|
|
3666
|
+
* <p>创建时间</p>
|
|
3667
|
+
*/
|
|
3668
|
+
CreateTime?: string;
|
|
3669
|
+
/**
|
|
3670
|
+
* <p>更新时间</p>
|
|
3671
|
+
*/
|
|
3672
|
+
UpdateTime?: string;
|
|
3673
|
+
/**
|
|
3674
|
+
* <p>策略状态。normal-正常,expired-过期, deleted-删除</p>
|
|
3675
|
+
*/
|
|
3676
|
+
Status?: string;
|
|
3677
|
+
}
|
|
3553
3678
|
/**
|
|
3554
3679
|
* 实例日志投递信息
|
|
3555
3680
|
*/
|
|
@@ -4120,6 +4245,19 @@ export interface InstanceAuditLogFilter {
|
|
|
4120
4245
|
*/
|
|
4121
4246
|
Value: Array<string>;
|
|
4122
4247
|
}
|
|
4248
|
+
/**
|
|
4249
|
+
* CancelClusterServerlessScalePlan请求参数结构体
|
|
4250
|
+
*/
|
|
4251
|
+
export interface CancelClusterServerlessScalePlanRequest {
|
|
4252
|
+
/**
|
|
4253
|
+
* 集群ID
|
|
4254
|
+
*/
|
|
4255
|
+
ClusterId: string;
|
|
4256
|
+
/**
|
|
4257
|
+
* 计划ID
|
|
4258
|
+
*/
|
|
4259
|
+
PlanId: number;
|
|
4260
|
+
}
|
|
4123
4261
|
/**
|
|
4124
4262
|
* ModifyLibraDBClusterReplicationObject返回参数结构体
|
|
4125
4263
|
*/
|
|
@@ -4784,6 +4922,19 @@ export interface DescribeBinlogsResponse {
|
|
|
4784
4922
|
*/
|
|
4785
4923
|
RequestId?: string;
|
|
4786
4924
|
}
|
|
4925
|
+
/**
|
|
4926
|
+
* OpenAIOptimizer返回参数结构体
|
|
4927
|
+
*/
|
|
4928
|
+
export interface OpenAIOptimizerResponse {
|
|
4929
|
+
/**
|
|
4930
|
+
* <p>任务流id</p>
|
|
4931
|
+
*/
|
|
4932
|
+
TaskId?: number;
|
|
4933
|
+
/**
|
|
4934
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4935
|
+
*/
|
|
4936
|
+
RequestId?: string;
|
|
4937
|
+
}
|
|
4787
4938
|
/**
|
|
4788
4939
|
* 审计实例详情
|
|
4789
4940
|
*/
|
|
@@ -5667,6 +5818,23 @@ export interface RenewLibraDBClustersRequest {
|
|
|
5667
5818
|
*/
|
|
5668
5819
|
DealMode?: number;
|
|
5669
5820
|
}
|
|
5821
|
+
/**
|
|
5822
|
+
* DescribeClusterServerlessScalePlans返回参数结构体
|
|
5823
|
+
*/
|
|
5824
|
+
export interface DescribeClusterServerlessScalePlansResponse {
|
|
5825
|
+
/**
|
|
5826
|
+
* 计划总数
|
|
5827
|
+
*/
|
|
5828
|
+
TotalCount?: number;
|
|
5829
|
+
/**
|
|
5830
|
+
* 策略列表
|
|
5831
|
+
*/
|
|
5832
|
+
ServerlessScalePlans?: Array<ClusterServerlessScalePlan>;
|
|
5833
|
+
/**
|
|
5834
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5835
|
+
*/
|
|
5836
|
+
RequestId?: string;
|
|
5837
|
+
}
|
|
5670
5838
|
/**
|
|
5671
5839
|
* CreateResourcePackage返回参数结构体
|
|
5672
5840
|
*/
|
|
@@ -6912,6 +7080,19 @@ export interface SlaveZoneAttrItem {
|
|
|
6912
7080
|
*/
|
|
6913
7081
|
SemiSyncTimeout?: number;
|
|
6914
7082
|
}
|
|
7083
|
+
/**
|
|
7084
|
+
* OpenWan返回参数结构体
|
|
7085
|
+
*/
|
|
7086
|
+
export interface OpenWanResponse {
|
|
7087
|
+
/**
|
|
7088
|
+
* 任务流ID
|
|
7089
|
+
*/
|
|
7090
|
+
FlowId?: number;
|
|
7091
|
+
/**
|
|
7092
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7093
|
+
*/
|
|
7094
|
+
RequestId?: string;
|
|
7095
|
+
}
|
|
6915
7096
|
/**
|
|
6916
7097
|
* 日志投递信息
|
|
6917
7098
|
*/
|
|
@@ -8403,13 +8584,41 @@ export interface DescribeBinlogListByVaultItem {
|
|
|
8403
8584
|
BinlogFileInfo?: BinlogItem;
|
|
8404
8585
|
}
|
|
8405
8586
|
/**
|
|
8406
|
-
*
|
|
8587
|
+
* DescribeClusterServerlessScalePlans请求参数结构体
|
|
8407
8588
|
*/
|
|
8408
|
-
export interface
|
|
8589
|
+
export interface DescribeClusterServerlessScalePlansRequest {
|
|
8409
8590
|
/**
|
|
8410
|
-
*
|
|
8591
|
+
* 集群ID
|
|
8411
8592
|
*/
|
|
8412
|
-
|
|
8593
|
+
ClusterId: string;
|
|
8594
|
+
/**
|
|
8595
|
+
* 实例列表
|
|
8596
|
+
*/
|
|
8597
|
+
InstanceIds?: Array<string>;
|
|
8598
|
+
/**
|
|
8599
|
+
* 策略类型. PolicyTypePeriodScale - 周期弹性
|
|
8600
|
+
*/
|
|
8601
|
+
PolicyType?: string;
|
|
8602
|
+
/**
|
|
8603
|
+
* 计划ID
|
|
8604
|
+
*/
|
|
8605
|
+
PlanId?: number;
|
|
8606
|
+
/**
|
|
8607
|
+
* 分页数量限制,默认10
|
|
8608
|
+
*/
|
|
8609
|
+
Limit?: number;
|
|
8610
|
+
/**
|
|
8611
|
+
* 查询偏移,默认0
|
|
8612
|
+
*/
|
|
8613
|
+
Offset?: number;
|
|
8614
|
+
/**
|
|
8615
|
+
* 按计划预期执行时间为条件查询的开始时间点,包含当前时间
|
|
8616
|
+
*/
|
|
8617
|
+
ExpectedStartTime?: string;
|
|
8618
|
+
/**
|
|
8619
|
+
* 按计划预期执行时间为条件查询的结束时间点,包含当前时间
|
|
8620
|
+
*/
|
|
8621
|
+
ExpectedEndTime?: string;
|
|
8413
8622
|
}
|
|
8414
8623
|
/**
|
|
8415
8624
|
* DescribeAuditLogFiles返回参数结构体
|
|
@@ -10392,17 +10601,49 @@ export interface OpenClusterReadOnlyInstanceGroupAccessRequest {
|
|
|
10392
10601
|
SecurityGroupIds?: Array<string>;
|
|
10393
10602
|
}
|
|
10394
10603
|
/**
|
|
10395
|
-
*
|
|
10604
|
+
* ModifyClusterPeriodScalePolicy请求参数结构体
|
|
10396
10605
|
*/
|
|
10397
|
-
export interface
|
|
10606
|
+
export interface ModifyClusterPeriodScalePolicyRequest {
|
|
10398
10607
|
/**
|
|
10399
|
-
*
|
|
10608
|
+
* <p>集群ID</p>
|
|
10400
10609
|
*/
|
|
10401
|
-
|
|
10610
|
+
ClusterId: string;
|
|
10402
10611
|
/**
|
|
10403
|
-
*
|
|
10612
|
+
* <p>策略ID</p>
|
|
10404
10613
|
*/
|
|
10405
|
-
|
|
10614
|
+
PolicyId: string;
|
|
10615
|
+
/**
|
|
10616
|
+
* <p>当天开始弹性时间。格式是小时:分钟</p>
|
|
10617
|
+
*/
|
|
10618
|
+
ScaleStartTime?: string;
|
|
10619
|
+
/**
|
|
10620
|
+
* <p>当天结束弹性时间。格式是小时:分钟</p>
|
|
10621
|
+
*/
|
|
10622
|
+
ScaleEndTime?: string;
|
|
10623
|
+
/**
|
|
10624
|
+
* <p>策略生效的起始日期时间</p>
|
|
10625
|
+
*/
|
|
10626
|
+
PolicyStartTime?: string;
|
|
10627
|
+
/**
|
|
10628
|
+
* <p>策略生效的截止日期时间</p>
|
|
10629
|
+
*/
|
|
10630
|
+
PolicyEndTime?: string;
|
|
10631
|
+
/**
|
|
10632
|
+
* <p>周期类型。day-天,week-周,month-月。</p>
|
|
10633
|
+
*/
|
|
10634
|
+
PeriodType?: string;
|
|
10635
|
+
/**
|
|
10636
|
+
* <p>周期内的时间列表。针对PeriodType=week, 表示星期几,比如[1,3]表示星期一、星期三。同理,对于PeriodType=month,[1,3,10]表示每月的1、3、10号。PeriodType=day则该字段无效。</p>
|
|
10637
|
+
*/
|
|
10638
|
+
PeriodConfig?: Array<number | bigint>;
|
|
10639
|
+
/**
|
|
10640
|
+
* <p>弹性规格下限</p>
|
|
10641
|
+
*/
|
|
10642
|
+
MinCpu?: number;
|
|
10643
|
+
/**
|
|
10644
|
+
* <p>弹性规格上限</p>
|
|
10645
|
+
*/
|
|
10646
|
+
MaxCpu?: number;
|
|
10406
10647
|
}
|
|
10407
10648
|
/**
|
|
10408
10649
|
* 模糊查询过滤器
|
|
@@ -11519,247 +11760,235 @@ export interface DeleteClusterDatabaseResponse {
|
|
|
11519
11760
|
*/
|
|
11520
11761
|
export interface CynosdbClusterDetail {
|
|
11521
11762
|
/**
|
|
11522
|
-
*
|
|
11763
|
+
* <p>集群ID</p>
|
|
11523
11764
|
*/
|
|
11524
11765
|
ClusterId?: string;
|
|
11525
11766
|
/**
|
|
11526
|
-
*
|
|
11767
|
+
* <p>集群名称</p>
|
|
11527
11768
|
*/
|
|
11528
11769
|
ClusterName?: string;
|
|
11529
11770
|
/**
|
|
11530
|
-
*
|
|
11771
|
+
* <p>地域</p>
|
|
11531
11772
|
*/
|
|
11532
11773
|
Region?: string;
|
|
11533
11774
|
/**
|
|
11534
|
-
*
|
|
11775
|
+
* <p>可用区</p>
|
|
11535
11776
|
*/
|
|
11536
11777
|
Zone?: string;
|
|
11537
11778
|
/**
|
|
11538
|
-
*
|
|
11779
|
+
* <p>物理可用区</p>
|
|
11539
11780
|
*/
|
|
11540
11781
|
PhysicalZone?: string;
|
|
11541
11782
|
/**
|
|
11542
|
-
*
|
|
11543
|
-
- creating:创建中
|
|
11544
|
-
- running:运行中
|
|
11545
|
-
- isolating:隔离中
|
|
11546
|
-
- isolated:已隔离
|
|
11547
|
-
- activating:从回收站重新恢复
|
|
11548
|
-
- offlining:下线中
|
|
11549
|
-
- offlined:已下线
|
|
11550
|
-
- deleting:删除中
|
|
11551
|
-
- deleted:已删除
|
|
11783
|
+
* <p>状态,支持的值如下:</p><ul><li>creating:创建中</li><li>running:运行中</li><li>isolating:隔离中</li><li>isolated:已隔离</li><li>activating:从回收站重新恢复</li><li>offlining:下线中</li><li>offlined:已下线</li><li>deleting:删除中</li><li>deleted:已删除</li></ul>
|
|
11552
11784
|
*/
|
|
11553
11785
|
Status?: string;
|
|
11554
11786
|
/**
|
|
11555
|
-
*
|
|
11787
|
+
* <p>状态描述</p>
|
|
11556
11788
|
*/
|
|
11557
11789
|
StatusDesc?: string;
|
|
11558
11790
|
/**
|
|
11559
|
-
*
|
|
11560
|
-
resume
|
|
11561
|
-
resuming
|
|
11562
|
-
pause
|
|
11563
|
-
pausing
|
|
11791
|
+
* <p>当Db类型为SERVERLESS时,serverless集群状态,可选值:<br>resume<br>resuming<br>pause<br>pausing</p>
|
|
11564
11792
|
*/
|
|
11565
11793
|
ServerlessStatus?: string;
|
|
11566
11794
|
/**
|
|
11567
|
-
*
|
|
11795
|
+
* <p>存储Id</p>
|
|
11568
11796
|
*/
|
|
11569
11797
|
StorageId?: string;
|
|
11570
11798
|
/**
|
|
11571
|
-
*
|
|
11799
|
+
* <p>存储大小,单位为G</p>
|
|
11572
11800
|
*/
|
|
11573
11801
|
Storage?: number;
|
|
11574
11802
|
/**
|
|
11575
|
-
*
|
|
11803
|
+
* <p>最大存储规格,单位为G</p>
|
|
11576
11804
|
*/
|
|
11577
11805
|
MaxStorageSize?: number;
|
|
11578
11806
|
/**
|
|
11579
|
-
*
|
|
11807
|
+
* <p>最小存储规格,单位为G</p>
|
|
11580
11808
|
*/
|
|
11581
11809
|
MinStorageSize?: number;
|
|
11582
11810
|
/**
|
|
11583
|
-
*
|
|
11811
|
+
* <p>存储付费类型,1为包年包月,0为按量计费</p>
|
|
11584
11812
|
*/
|
|
11585
11813
|
StoragePayMode?: number;
|
|
11586
11814
|
/**
|
|
11587
|
-
* VPC
|
|
11815
|
+
* <p>VPC名称</p>
|
|
11588
11816
|
*/
|
|
11589
11817
|
VpcName?: string;
|
|
11590
11818
|
/**
|
|
11591
|
-
* vpc唯一id
|
|
11819
|
+
* <p>vpc唯一id</p>
|
|
11592
11820
|
*/
|
|
11593
11821
|
VpcId?: string;
|
|
11594
11822
|
/**
|
|
11595
|
-
*
|
|
11823
|
+
* <p>子网名称</p>
|
|
11596
11824
|
*/
|
|
11597
11825
|
SubnetName?: string;
|
|
11598
11826
|
/**
|
|
11599
|
-
*
|
|
11827
|
+
* <p>子网ID</p>
|
|
11600
11828
|
*/
|
|
11601
11829
|
SubnetId?: string;
|
|
11602
11830
|
/**
|
|
11603
|
-
*
|
|
11831
|
+
* <p>字符集</p>
|
|
11604
11832
|
*/
|
|
11605
11833
|
Charset?: string;
|
|
11606
11834
|
/**
|
|
11607
|
-
*
|
|
11835
|
+
* <p>创建时间</p>
|
|
11608
11836
|
*/
|
|
11609
11837
|
CreateTime?: string;
|
|
11610
11838
|
/**
|
|
11611
|
-
*
|
|
11839
|
+
* <p>数据库类型</p>
|
|
11612
11840
|
*/
|
|
11613
11841
|
DbType?: string;
|
|
11614
11842
|
/**
|
|
11615
|
-
* Db类型:<li>NORMAL</li><li>SERVERLESS</li>
|
|
11843
|
+
* <p>Db类型:<li>NORMAL</li><li>SERVERLESS</li></p>
|
|
11616
11844
|
*/
|
|
11617
11845
|
DbMode?: string;
|
|
11618
11846
|
/**
|
|
11619
|
-
*
|
|
11847
|
+
* <p>数据库版本</p>
|
|
11620
11848
|
*/
|
|
11621
11849
|
DbVersion?: string;
|
|
11622
11850
|
/**
|
|
11623
|
-
*
|
|
11851
|
+
* <p>存储空间上限</p>
|
|
11624
11852
|
*/
|
|
11625
11853
|
StorageLimit?: number;
|
|
11626
11854
|
/**
|
|
11627
|
-
*
|
|
11855
|
+
* <p>使用容量</p>
|
|
11628
11856
|
*/
|
|
11629
11857
|
UsedStorage?: number;
|
|
11630
11858
|
/**
|
|
11631
|
-
* vip
|
|
11859
|
+
* <p>vip地址</p>
|
|
11632
11860
|
*/
|
|
11633
11861
|
Vip?: string;
|
|
11634
11862
|
/**
|
|
11635
|
-
* vport
|
|
11863
|
+
* <p>vport端口</p>
|
|
11636
11864
|
*/
|
|
11637
11865
|
Vport?: number;
|
|
11638
11866
|
/**
|
|
11639
|
-
*
|
|
11867
|
+
* <p>集群只读实例的vip地址和vport端口</p>
|
|
11640
11868
|
*/
|
|
11641
11869
|
RoAddr?: Array<Addr>;
|
|
11642
11870
|
/**
|
|
11643
|
-
*
|
|
11871
|
+
* <p>集群支持的功能</p>
|
|
11644
11872
|
*/
|
|
11645
11873
|
Ability?: Ability;
|
|
11646
11874
|
/**
|
|
11647
|
-
* cynos
|
|
11875
|
+
* <p>cynos版本</p>
|
|
11648
11876
|
*/
|
|
11649
11877
|
CynosVersion?: string;
|
|
11650
11878
|
/**
|
|
11651
|
-
*
|
|
11879
|
+
* <p>商业类型</p>
|
|
11652
11880
|
*/
|
|
11653
11881
|
BusinessType?: string;
|
|
11654
11882
|
/**
|
|
11655
|
-
*
|
|
11883
|
+
* <p>是否有从可用区</p>
|
|
11656
11884
|
*/
|
|
11657
11885
|
HasSlaveZone?: string;
|
|
11658
11886
|
/**
|
|
11659
|
-
*
|
|
11887
|
+
* <p>是否冻结</p>
|
|
11660
11888
|
*/
|
|
11661
11889
|
IsFreeze?: string;
|
|
11662
11890
|
/**
|
|
11663
|
-
*
|
|
11891
|
+
* <p>任务列表</p>
|
|
11664
11892
|
*/
|
|
11665
11893
|
Tasks?: Array<ObjectTask>;
|
|
11666
11894
|
/**
|
|
11667
|
-
*
|
|
11895
|
+
* <p>主可用区</p>
|
|
11668
11896
|
*/
|
|
11669
11897
|
MasterZone?: string;
|
|
11670
11898
|
/**
|
|
11671
|
-
*
|
|
11899
|
+
* <p>从可用区列表</p>
|
|
11672
11900
|
*/
|
|
11673
11901
|
SlaveZones?: Array<string>;
|
|
11674
11902
|
/**
|
|
11675
|
-
*
|
|
11903
|
+
* <p>实例信息</p>
|
|
11676
11904
|
*/
|
|
11677
11905
|
InstanceSet?: Array<ClusterInstanceDetail>;
|
|
11678
11906
|
/**
|
|
11679
|
-
*
|
|
11907
|
+
* <p>付费模式</p>
|
|
11680
11908
|
*/
|
|
11681
11909
|
PayMode?: number;
|
|
11682
11910
|
/**
|
|
11683
|
-
*
|
|
11911
|
+
* <p>到期时间</p>
|
|
11684
11912
|
*/
|
|
11685
11913
|
PeriodEndTime?: string;
|
|
11686
11914
|
/**
|
|
11687
|
-
*
|
|
11915
|
+
* <p>项目id</p>
|
|
11688
11916
|
*/
|
|
11689
11917
|
ProjectID?: number;
|
|
11690
11918
|
/**
|
|
11691
|
-
*
|
|
11919
|
+
* <p>实例绑定的tag数组信息</p>
|
|
11692
11920
|
*/
|
|
11693
11921
|
ResourceTags?: Array<Tag>;
|
|
11694
11922
|
/**
|
|
11695
|
-
* Proxy
|
|
11923
|
+
* <p>Proxy状态</p>
|
|
11696
11924
|
*/
|
|
11697
11925
|
ProxyStatus?: string;
|
|
11698
11926
|
/**
|
|
11699
|
-
* binlog开关,可选值:ON, OFF
|
|
11927
|
+
* <p>binlog开关,可选值:ON, OFF</p>
|
|
11700
11928
|
*/
|
|
11701
11929
|
LogBin?: string;
|
|
11702
11930
|
/**
|
|
11703
|
-
*
|
|
11931
|
+
* <p>是否跳过交易</p>
|
|
11704
11932
|
*/
|
|
11705
11933
|
IsSkipTrade?: string;
|
|
11706
11934
|
/**
|
|
11707
|
-
* pitr类型,可选值:normal, redo_pitr
|
|
11935
|
+
* <p>pitr类型,可选值:normal, redo_pitr</p>
|
|
11708
11936
|
*/
|
|
11709
11937
|
PitrType?: string;
|
|
11710
11938
|
/**
|
|
11711
|
-
*
|
|
11939
|
+
* <p>是否打开密码复杂度</p>
|
|
11712
11940
|
*/
|
|
11713
11941
|
IsOpenPasswordComplexity?: string;
|
|
11714
11942
|
/**
|
|
11715
|
-
*
|
|
11943
|
+
* <p>网络类型</p>
|
|
11716
11944
|
*/
|
|
11717
11945
|
NetworkStatus?: string;
|
|
11718
11946
|
/**
|
|
11719
|
-
*
|
|
11947
|
+
* <p>集群绑定的资源包信息</p>
|
|
11720
11948
|
*/
|
|
11721
11949
|
ResourcePackages?: Array<ResourcePackage>;
|
|
11722
11950
|
/**
|
|
11723
|
-
*
|
|
11951
|
+
* <p>自动续费标识,1为自动续费,0为到期不续</p>
|
|
11724
11952
|
*/
|
|
11725
11953
|
RenewFlag?: number;
|
|
11726
11954
|
/**
|
|
11727
|
-
*
|
|
11955
|
+
* <p>节点网络类型</p>
|
|
11728
11956
|
*/
|
|
11729
11957
|
NetworkType?: string;
|
|
11730
11958
|
/**
|
|
11731
|
-
*
|
|
11959
|
+
* <p>备可用区属性</p>
|
|
11732
11960
|
*/
|
|
11733
11961
|
SlaveZoneAttr?: Array<SlaveZoneAttrItem>;
|
|
11734
11962
|
/**
|
|
11735
|
-
*
|
|
11963
|
+
* <p>版本标签</p>
|
|
11736
11964
|
*/
|
|
11737
11965
|
CynosVersionTag?: string;
|
|
11738
11966
|
/**
|
|
11739
|
-
*
|
|
11967
|
+
* <p>全球数据库网络唯一标识</p>
|
|
11740
11968
|
*/
|
|
11741
11969
|
GdnId?: string;
|
|
11742
11970
|
/**
|
|
11743
|
-
*
|
|
11744
|
-
主集群- primary
|
|
11745
|
-
从集群 - standby
|
|
11746
|
-
如为空,该字段无效
|
|
11971
|
+
* <p>集群在全球数据网络中的角色。<br>主集群- primary<br>从集群 - standby<br>如为空,该字段无效</p>
|
|
11747
11972
|
*/
|
|
11748
11973
|
GdnRole?: string;
|
|
11749
11974
|
/**
|
|
11750
|
-
*
|
|
11975
|
+
* <p>二级存储使用量,单位:G</p>
|
|
11751
11976
|
*/
|
|
11752
11977
|
UsedArchiveStorage?: number;
|
|
11753
11978
|
/**
|
|
11754
|
-
*
|
|
11979
|
+
* <p>归档状态,枚举值<li>normal:正常</li><li>archiving:归档中</li><li>resuming:恢复中</li><li>archived :已归档</li></p>
|
|
11755
11980
|
*/
|
|
11756
11981
|
ArchiveStatus?: string;
|
|
11757
11982
|
/**
|
|
11758
|
-
*
|
|
11983
|
+
* <p>归档进度,百分比。</p>
|
|
11759
11984
|
*/
|
|
11760
11985
|
ArchiveProgress?: number;
|
|
11761
11986
|
/**
|
|
11762
|
-
*
|
|
11987
|
+
* <p>集群级别。例如 P0, P1</p>
|
|
11988
|
+
*/
|
|
11989
|
+
ClusterLevel?: string;
|
|
11990
|
+
/**
|
|
11991
|
+
* <p>是否开启透明加密</p>
|
|
11763
11992
|
*/
|
|
11764
11993
|
IsOpenTDE?: boolean;
|
|
11765
11994
|
}
|
|
@@ -11854,26 +12083,17 @@ export interface DescribeLibraDBClusterAccountsResponse {
|
|
|
11854
12083
|
RequestId?: string;
|
|
11855
12084
|
}
|
|
11856
12085
|
/**
|
|
11857
|
-
*
|
|
12086
|
+
* CreateClusterPeriodScalePolicy返回参数结构体
|
|
11858
12087
|
*/
|
|
11859
|
-
export interface
|
|
12088
|
+
export interface CreateClusterPeriodScalePolicyResponse {
|
|
11860
12089
|
/**
|
|
11861
|
-
*
|
|
11862
|
-
*/
|
|
11863
|
-
BinlogSaveDays: number;
|
|
11864
|
-
/**
|
|
11865
|
-
* binlog异地地域备份是否开启
|
|
12090
|
+
* <p>策略ID</p>
|
|
11866
12091
|
*/
|
|
11867
|
-
|
|
11868
|
-
/**
|
|
11869
|
-
* binlog异地地域
|
|
11870
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
11871
|
-
*/
|
|
11872
|
-
BinlogCrossRegions?: Array<string>;
|
|
12092
|
+
PolicyId?: string;
|
|
11873
12093
|
/**
|
|
11874
|
-
*
|
|
12094
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11875
12095
|
*/
|
|
11876
|
-
|
|
12096
|
+
RequestId?: string;
|
|
11877
12097
|
}
|
|
11878
12098
|
/**
|
|
11879
12099
|
* DescribeAccountPrivileges请求参数结构体
|
|
@@ -11941,7 +12161,7 @@ export interface ModifyAccountParamsResponse {
|
|
|
11941
12161
|
*/
|
|
11942
12162
|
export interface DescribeInstanceSpecsResponse {
|
|
11943
12163
|
/**
|
|
11944
|
-
*
|
|
12164
|
+
* <p>规格信息</p>
|
|
11945
12165
|
*/
|
|
11946
12166
|
InstanceSpecSet?: Array<InstanceSpec>;
|
|
11947
12167
|
/**
|
|
@@ -11949,6 +12169,81 @@ export interface DescribeInstanceSpecsResponse {
|
|
|
11949
12169
|
*/
|
|
11950
12170
|
RequestId?: string;
|
|
11951
12171
|
}
|
|
12172
|
+
/**
|
|
12173
|
+
* 集群Serveless弹性计划
|
|
12174
|
+
*/
|
|
12175
|
+
export interface ClusterServerlessScalePlan {
|
|
12176
|
+
/**
|
|
12177
|
+
* <p>计划ID</p>
|
|
12178
|
+
*/
|
|
12179
|
+
PlanId?: number;
|
|
12180
|
+
/**
|
|
12181
|
+
* <p>集群ID</p>
|
|
12182
|
+
*/
|
|
12183
|
+
ClusterId?: string;
|
|
12184
|
+
/**
|
|
12185
|
+
* <p>实例对象。具体是实例id或者类型。比如ro-即集群下的所有只读实例。</p>
|
|
12186
|
+
*/
|
|
12187
|
+
ObjectInstance?: string;
|
|
12188
|
+
/**
|
|
12189
|
+
* <p>策略ID</p>
|
|
12190
|
+
*/
|
|
12191
|
+
PolicyId?: string;
|
|
12192
|
+
/**
|
|
12193
|
+
* <p>策略类型</p>
|
|
12194
|
+
*/
|
|
12195
|
+
PolicyType?: string;
|
|
12196
|
+
/**
|
|
12197
|
+
* <p>原规格下限</p>
|
|
12198
|
+
*/
|
|
12199
|
+
SourceMinCpu?: number;
|
|
12200
|
+
/**
|
|
12201
|
+
* <p>原规格上限</p>
|
|
12202
|
+
*/
|
|
12203
|
+
SourceMaxCpu?: number;
|
|
12204
|
+
/**
|
|
12205
|
+
* <p>原规格下限</p>
|
|
12206
|
+
*/
|
|
12207
|
+
TargetMinCpu?: number;
|
|
12208
|
+
/**
|
|
12209
|
+
* <p>原规格上限</p>
|
|
12210
|
+
*/
|
|
12211
|
+
TargetMaxCpu?: number;
|
|
12212
|
+
/**
|
|
12213
|
+
* <p>计划状态</p>
|
|
12214
|
+
*/
|
|
12215
|
+
Status?: string;
|
|
12216
|
+
/**
|
|
12217
|
+
* <p>弹性任务ID</p>
|
|
12218
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12219
|
+
*/
|
|
12220
|
+
ScaleTaskId?: number;
|
|
12221
|
+
/**
|
|
12222
|
+
* <p>失败原因</p>
|
|
12223
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12224
|
+
*/
|
|
12225
|
+
FailReason?: string;
|
|
12226
|
+
/**
|
|
12227
|
+
* <p>计划预期开始执行时间</p>
|
|
12228
|
+
*/
|
|
12229
|
+
ExpectedStartTime?: string;
|
|
12230
|
+
/**
|
|
12231
|
+
* <p>计划预期结束时间</p>
|
|
12232
|
+
*/
|
|
12233
|
+
ExpectedEndTime?: string;
|
|
12234
|
+
/**
|
|
12235
|
+
* <p>恢复自动弹性任务</p>
|
|
12236
|
+
*/
|
|
12237
|
+
ResetTaskId?: number;
|
|
12238
|
+
/**
|
|
12239
|
+
* <p>恢复自动弹性任务执行方式</p>
|
|
12240
|
+
*/
|
|
12241
|
+
ResetType?: string;
|
|
12242
|
+
/**
|
|
12243
|
+
* <p>恢复自动弹性任务执行时间</p>
|
|
12244
|
+
*/
|
|
12245
|
+
ResetTime?: string;
|
|
12246
|
+
}
|
|
11952
12247
|
/**
|
|
11953
12248
|
* OpenSSL返回参数结构体
|
|
11954
12249
|
*/
|
|
@@ -12244,6 +12539,19 @@ export interface IsolateLibraDBInstanceResponse {
|
|
|
12244
12539
|
*/
|
|
12245
12540
|
RequestId?: string;
|
|
12246
12541
|
}
|
|
12542
|
+
/**
|
|
12543
|
+
* DeleteClusterPeriodScalePolicy请求参数结构体
|
|
12544
|
+
*/
|
|
12545
|
+
export interface DeleteClusterPeriodScalePolicyRequest {
|
|
12546
|
+
/**
|
|
12547
|
+
* 集群ID
|
|
12548
|
+
*/
|
|
12549
|
+
ClusterId: string;
|
|
12550
|
+
/**
|
|
12551
|
+
* 策略ID
|
|
12552
|
+
*/
|
|
12553
|
+
PolicyId: string;
|
|
12554
|
+
}
|
|
12247
12555
|
/**
|
|
12248
12556
|
* RefundResourcePackage请求参数结构体
|
|
12249
12557
|
*/
|
|
@@ -12336,6 +12644,15 @@ export interface RollbackInstanceInfo {
|
|
|
12336
12644
|
*/
|
|
12337
12645
|
StorageLimit?: number;
|
|
12338
12646
|
}
|
|
12647
|
+
/**
|
|
12648
|
+
* DescribeClusterPeriodScalePolicy请求参数结构体
|
|
12649
|
+
*/
|
|
12650
|
+
export interface DescribeClusterPeriodScalePolicyRequest {
|
|
12651
|
+
/**
|
|
12652
|
+
* 集群id
|
|
12653
|
+
*/
|
|
12654
|
+
ClusterId: string;
|
|
12655
|
+
}
|
|
12339
12656
|
/**
|
|
12340
12657
|
* ModifyLibraDBClusterAccountPrivilege请求参数结构体
|
|
12341
12658
|
*/
|
|
@@ -12383,6 +12700,51 @@ export interface DeleteParamTemplateResponse {
|
|
|
12383
12700
|
*/
|
|
12384
12701
|
RequestId?: string;
|
|
12385
12702
|
}
|
|
12703
|
+
/**
|
|
12704
|
+
* CreateClusterPeriodScalePolicy请求参数结构体
|
|
12705
|
+
*/
|
|
12706
|
+
export interface CreateClusterPeriodScalePolicyRequest {
|
|
12707
|
+
/**
|
|
12708
|
+
* <p>集群ID</p>
|
|
12709
|
+
*/
|
|
12710
|
+
ClusterId: string;
|
|
12711
|
+
/**
|
|
12712
|
+
* <p>实例类型。rw读写,ro-只读</p>
|
|
12713
|
+
*/
|
|
12714
|
+
InstanceType: string;
|
|
12715
|
+
/**
|
|
12716
|
+
* <p>当天开始弹性时间。格式是小时:分钟</p>
|
|
12717
|
+
*/
|
|
12718
|
+
ScaleStartTime: string;
|
|
12719
|
+
/**
|
|
12720
|
+
* <p>当天结束弹性时间。格式是小时:分钟</p>
|
|
12721
|
+
*/
|
|
12722
|
+
ScaleEndTime: string;
|
|
12723
|
+
/**
|
|
12724
|
+
* <p>策略生效的起始日期时间</p>
|
|
12725
|
+
*/
|
|
12726
|
+
PolicyStartTime: string;
|
|
12727
|
+
/**
|
|
12728
|
+
* <p>策略生效的截止日期时间</p>
|
|
12729
|
+
*/
|
|
12730
|
+
PolicyEndTime: string;
|
|
12731
|
+
/**
|
|
12732
|
+
* <p>周期类型。day-天,week-周,month-月。</p>
|
|
12733
|
+
*/
|
|
12734
|
+
PeriodType: string;
|
|
12735
|
+
/**
|
|
12736
|
+
* <p>弹性规格下限</p>
|
|
12737
|
+
*/
|
|
12738
|
+
MinCpu?: number;
|
|
12739
|
+
/**
|
|
12740
|
+
* <p>弹性规格上限</p>
|
|
12741
|
+
*/
|
|
12742
|
+
MaxCpu?: number;
|
|
12743
|
+
/**
|
|
12744
|
+
* <p>周期内的时间列表。针对PeriodType=week, 表示星期几,比如[1,3]表示星期一、星期三。同理,对于PeriodType=month,[1,3,10]表示每月的1、3、10号。PeriodType=day则该字段无效。</p>
|
|
12745
|
+
*/
|
|
12746
|
+
PeriodConfig?: Array<number | bigint>;
|
|
12747
|
+
}
|
|
12386
12748
|
/**
|
|
12387
12749
|
* DownloadLibraDBClusterList请求参数结构体
|
|
12388
12750
|
*/
|
|
@@ -13733,25 +14095,26 @@ export interface ParamItemDetail {
|
|
|
13733
14095
|
FuncPattern?: string;
|
|
13734
14096
|
}
|
|
13735
14097
|
/**
|
|
13736
|
-
*
|
|
14098
|
+
* binlog配置信息
|
|
13737
14099
|
*/
|
|
13738
|
-
export interface
|
|
14100
|
+
export interface BinlogConfigInfo {
|
|
13739
14101
|
/**
|
|
13740
|
-
*
|
|
14102
|
+
* binlog保留时间
|
|
13741
14103
|
*/
|
|
13742
|
-
|
|
14104
|
+
BinlogSaveDays: number;
|
|
13743
14105
|
/**
|
|
13744
|
-
*
|
|
14106
|
+
* binlog异地地域备份是否开启
|
|
13745
14107
|
*/
|
|
13746
|
-
|
|
14108
|
+
BinlogCrossRegionsEnable: string;
|
|
13747
14109
|
/**
|
|
13748
|
-
*
|
|
14110
|
+
* binlog异地地域
|
|
14111
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13749
14112
|
*/
|
|
13750
|
-
|
|
14113
|
+
BinlogCrossRegions?: Array<string>;
|
|
13751
14114
|
/**
|
|
13752
|
-
*
|
|
14115
|
+
* 保险箱信息
|
|
13753
14116
|
*/
|
|
13754
|
-
|
|
14117
|
+
AutoCopyVaults?: Array<CreateBackupVaultItem>;
|
|
13755
14118
|
}
|
|
13756
14119
|
/**
|
|
13757
14120
|
* IsolateCluster返回参数结构体
|
|
@@ -14423,6 +14786,19 @@ export interface DescribeInstancesWithinSameClusterResponse {
|
|
|
14423
14786
|
*/
|
|
14424
14787
|
RequestId?: string;
|
|
14425
14788
|
}
|
|
14789
|
+
/**
|
|
14790
|
+
* CancelClusterServerlessScalePlan返回参数结构体
|
|
14791
|
+
*/
|
|
14792
|
+
export interface CancelClusterServerlessScalePlanResponse {
|
|
14793
|
+
/**
|
|
14794
|
+
* 任务id
|
|
14795
|
+
*/
|
|
14796
|
+
TaskId?: number;
|
|
14797
|
+
/**
|
|
14798
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
14799
|
+
*/
|
|
14800
|
+
RequestId?: string;
|
|
14801
|
+
}
|
|
14426
14802
|
/**
|
|
14427
14803
|
* RollbackToNewCluster返回参数结构体
|
|
14428
14804
|
*/
|
|
@@ -15511,6 +15887,15 @@ export interface ModifyLibraDBClusterProjectRequest {
|
|
|
15511
15887
|
*/
|
|
15512
15888
|
ProjectId?: number;
|
|
15513
15889
|
}
|
|
15890
|
+
/**
|
|
15891
|
+
* DeleteClusterPeriodScalePolicy返回参数结构体
|
|
15892
|
+
*/
|
|
15893
|
+
export interface DeleteClusterPeriodScalePolicyResponse {
|
|
15894
|
+
/**
|
|
15895
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15896
|
+
*/
|
|
15897
|
+
RequestId?: string;
|
|
15898
|
+
}
|
|
15514
15899
|
/**
|
|
15515
15900
|
* DeleteBackup请求参数结构体
|
|
15516
15901
|
*/
|