tencentcloud-sdk-nodejs 4.1.197 → 4.1.198
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/common/sdk_version.js +1 -1
- package/es/services/bh/v20230418/bh_client.js +20 -8
- package/es/services/cynosdb/v20190107/cynosdb_client.js +69 -27
- package/es/services/tcb/v20180608/tcb_client.js +50 -20
- package/es/services/tione/v20211111/tione_client.js +3 -0
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ags/v20250920/ags_models.d.ts +26 -26
- package/tencentcloud/services/bh/v20230418/bh_client.d.ts +25 -9
- package/tencentcloud/services/bh/v20230418/bh_client.js +36 -12
- package/tencentcloud/services/bh/v20230418/bh_models.d.ts +172 -100
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +23 -15
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +8 -9
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +1 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +85 -29
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +126 -42
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +1260 -456
- package/tencentcloud/services/emr/v20190103/emr_client.d.ts +2 -2
- package/tencentcloud/services/emr/v20190103/emr_client.js +2 -2
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +16 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +32 -4
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +25 -88
- package/tencentcloud/services/ioa/v20220601/ioa_models.d.ts +9 -0
- package/tencentcloud/services/ivld/v20210903/ivld_models.d.ts +31 -31
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +56 -56
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +7 -7
- package/tencentcloud/services/monitor/v20230616/monitor_models.d.ts +60 -33
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +4 -5
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +21 -13
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +94 -37
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +123 -46
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +1076 -157
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +5 -1
- package/tencentcloud/services/tione/v20211111/tione_client.js +6 -0
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +363 -48
- package/tencentcloud/services/tiw/v20190919/tiw_models.d.ts +1 -1
- package/tencentcloud/services/tmt/v20180321/tmt_models.d.ts +11 -11
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +11 -41
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +62 -0
|
@@ -187,6 +187,19 @@ export interface ModifyMaintainPeriodConfigRequest {
|
|
|
187
187
|
*/
|
|
188
188
|
MaintainWeekDays: Array<string>;
|
|
189
189
|
}
|
|
190
|
+
/**
|
|
191
|
+
* DescribeZones请求参数结构体
|
|
192
|
+
*/
|
|
193
|
+
export interface DescribeZonesRequest {
|
|
194
|
+
/**
|
|
195
|
+
* 是否包含虚拟区
|
|
196
|
+
*/
|
|
197
|
+
IncludeVirtualZones?: boolean;
|
|
198
|
+
/**
|
|
199
|
+
* 是否展示地域下所有可用区,并显示用户每个可用区权限
|
|
200
|
+
*/
|
|
201
|
+
ShowPermission?: boolean;
|
|
202
|
+
}
|
|
190
203
|
/**
|
|
191
204
|
* 实例参数修改任务详情
|
|
192
205
|
*/
|
|
@@ -234,6 +247,31 @@ export interface ModifyClusterStorageRequest {
|
|
|
234
247
|
*/
|
|
235
248
|
DealMode?: number;
|
|
236
249
|
}
|
|
250
|
+
/**
|
|
251
|
+
* 集群信息
|
|
252
|
+
*/
|
|
253
|
+
export interface DescribeVaultBackupClusterInfo {
|
|
254
|
+
/**
|
|
255
|
+
* 集群ID
|
|
256
|
+
*/
|
|
257
|
+
ClusterId?: string;
|
|
258
|
+
/**
|
|
259
|
+
* 集群名称
|
|
260
|
+
*/
|
|
261
|
+
ClusterName?: string;
|
|
262
|
+
/**
|
|
263
|
+
* 集群状态
|
|
264
|
+
*/
|
|
265
|
+
ClusterStatus?: string;
|
|
266
|
+
/**
|
|
267
|
+
* 集群所在地域
|
|
268
|
+
*/
|
|
269
|
+
ClusterRegion?: string;
|
|
270
|
+
/**
|
|
271
|
+
* 集群所在可用区
|
|
272
|
+
*/
|
|
273
|
+
ClusterZone?: string;
|
|
274
|
+
}
|
|
237
275
|
/**
|
|
238
276
|
* DescribeResourcePackageDetail返回参数结构体
|
|
239
277
|
*/
|
|
@@ -372,6 +410,32 @@ export interface ModifyBackupDownloadRestrictionResponse {
|
|
|
372
410
|
*/
|
|
373
411
|
RequestId?: string;
|
|
374
412
|
}
|
|
413
|
+
/**
|
|
414
|
+
* 将被删除的备份文件列表
|
|
415
|
+
*/
|
|
416
|
+
export interface WillDeleteItem {
|
|
417
|
+
/**
|
|
418
|
+
* 备份文件ID
|
|
419
|
+
*/
|
|
420
|
+
BackupId?: number;
|
|
421
|
+
/**
|
|
422
|
+
* 备份文件名称
|
|
423
|
+
*/
|
|
424
|
+
BackupName?: string;
|
|
425
|
+
}
|
|
426
|
+
/**
|
|
427
|
+
* TransferClusterZone返回参数结构体
|
|
428
|
+
*/
|
|
429
|
+
export interface TransferClusterZoneResponse {
|
|
430
|
+
/**
|
|
431
|
+
* 异步任务id
|
|
432
|
+
*/
|
|
433
|
+
TaskId?: number;
|
|
434
|
+
/**
|
|
435
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
436
|
+
*/
|
|
437
|
+
RequestId?: string;
|
|
438
|
+
}
|
|
375
439
|
/**
|
|
376
440
|
* DescribeClusterDatabaseTables请求参数结构体
|
|
377
441
|
*/
|
|
@@ -398,6 +462,19 @@ export interface DescribeClusterDatabaseTablesRequest {
|
|
|
398
462
|
*/
|
|
399
463
|
TableType?: string;
|
|
400
464
|
}
|
|
465
|
+
/**
|
|
466
|
+
* ModifyClusterBinlogRedoLogAutoCopyVault请求参数结构体
|
|
467
|
+
*/
|
|
468
|
+
export interface ModifyClusterBinlogRedoLogAutoCopyVaultRequest {
|
|
469
|
+
/**
|
|
470
|
+
* 集群ID
|
|
471
|
+
*/
|
|
472
|
+
ClusterId: string;
|
|
473
|
+
/**
|
|
474
|
+
* 自动拷贝保险箱配置列表
|
|
475
|
+
*/
|
|
476
|
+
AutoCopyVaults?: Array<CreateBackupVaultItem>;
|
|
477
|
+
}
|
|
401
478
|
/**
|
|
402
479
|
* DescribeClusterParams返回参数结构体
|
|
403
480
|
*/
|
|
@@ -504,6 +581,19 @@ export interface DescribeAuditInstanceListResponse {
|
|
|
504
581
|
*/
|
|
505
582
|
RequestId?: string;
|
|
506
583
|
}
|
|
584
|
+
/**
|
|
585
|
+
* DescribeVaultBackupClusterInfo返回参数结构体
|
|
586
|
+
*/
|
|
587
|
+
export interface DescribeVaultBackupClusterInfoResponse {
|
|
588
|
+
/**
|
|
589
|
+
* 保险箱信息
|
|
590
|
+
*/
|
|
591
|
+
ClusterInfos?: Array<DescribeVaultBackupClusterInfo>;
|
|
592
|
+
/**
|
|
593
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
594
|
+
*/
|
|
595
|
+
RequestId?: string;
|
|
596
|
+
}
|
|
507
597
|
/**
|
|
508
598
|
* DescribeSlaveZones返回参数结构体
|
|
509
599
|
*/
|
|
@@ -653,6 +743,31 @@ export interface CreateClustersResponse {
|
|
|
653
743
|
*/
|
|
654
744
|
RequestId?: string;
|
|
655
745
|
}
|
|
746
|
+
/**
|
|
747
|
+
* 访问代理配置
|
|
748
|
+
*/
|
|
749
|
+
export interface ProxyConfigInfo {
|
|
750
|
+
/**
|
|
751
|
+
* 数据库代理组节点个数。该参数不再建议使用,建议使用ProxyZones
|
|
752
|
+
*/
|
|
753
|
+
ProxyCount?: number;
|
|
754
|
+
/**
|
|
755
|
+
* cpu核数
|
|
756
|
+
*/
|
|
757
|
+
Cpu?: number;
|
|
758
|
+
/**
|
|
759
|
+
* 内存
|
|
760
|
+
*/
|
|
761
|
+
Mem?: number;
|
|
762
|
+
/**
|
|
763
|
+
* 描述说明
|
|
764
|
+
*/
|
|
765
|
+
Description?: string;
|
|
766
|
+
/**
|
|
767
|
+
* 数据库节点信息(该参数与ProxyCount需要任选一个输入)
|
|
768
|
+
*/
|
|
769
|
+
ProxyZones?: Array<ProxyZone>;
|
|
770
|
+
}
|
|
656
771
|
/**
|
|
657
772
|
* 实例组信息
|
|
658
773
|
*/
|
|
@@ -859,6 +974,24 @@ export interface StopCLSDeliveryRequest {
|
|
|
859
974
|
*/
|
|
860
975
|
IsInMaintainPeriod?: string;
|
|
861
976
|
}
|
|
977
|
+
/**
|
|
978
|
+
* OpenWan请求参数结构体
|
|
979
|
+
*/
|
|
980
|
+
export interface OpenWanRequest {
|
|
981
|
+
/**
|
|
982
|
+
* 实例组id
|
|
983
|
+
* @deprecated
|
|
984
|
+
*/
|
|
985
|
+
InstanceGrpId?: string;
|
|
986
|
+
/**
|
|
987
|
+
* 实例ID
|
|
988
|
+
*/
|
|
989
|
+
InstanceId?: string;
|
|
990
|
+
/**
|
|
991
|
+
* 实例组id
|
|
992
|
+
*/
|
|
993
|
+
InstanceGroupId?: string;
|
|
994
|
+
}
|
|
862
995
|
/**
|
|
863
996
|
* ExportResourcePackageDeductDetails返回参数结构体
|
|
864
997
|
*/
|
|
@@ -1000,6 +1133,19 @@ export interface DescribeClusterDetailRequest {
|
|
|
1000
1133
|
*/
|
|
1001
1134
|
ClusterId: string;
|
|
1002
1135
|
}
|
|
1136
|
+
/**
|
|
1137
|
+
* CopyBackupToVault返回参数结构体
|
|
1138
|
+
*/
|
|
1139
|
+
export interface CopyBackupToVaultResponse {
|
|
1140
|
+
/**
|
|
1141
|
+
* 任务ID
|
|
1142
|
+
*/
|
|
1143
|
+
TaskId?: number;
|
|
1144
|
+
/**
|
|
1145
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1146
|
+
*/
|
|
1147
|
+
RequestId?: string;
|
|
1148
|
+
}
|
|
1003
1149
|
/**
|
|
1004
1150
|
* ModifyResourcePackageName请求参数结构体
|
|
1005
1151
|
*/
|
|
@@ -1837,6 +1983,51 @@ export interface DescribeIntegrateTaskRequest {
|
|
|
1837
1983
|
*/
|
|
1838
1984
|
DealNames?: Array<string>;
|
|
1839
1985
|
}
|
|
1986
|
+
/**
|
|
1987
|
+
* DescribeBinlogListByVault请求参数结构体
|
|
1988
|
+
*/
|
|
1989
|
+
export interface DescribeBinlogListByVaultRequest {
|
|
1990
|
+
/**
|
|
1991
|
+
* 保险箱ID
|
|
1992
|
+
*/
|
|
1993
|
+
VaultId: string;
|
|
1994
|
+
/**
|
|
1995
|
+
* 集群ID
|
|
1996
|
+
*/
|
|
1997
|
+
ClusterId?: string;
|
|
1998
|
+
/**
|
|
1999
|
+
* 备份ID列表
|
|
2000
|
+
*/
|
|
2001
|
+
BackupIds?: Array<number | bigint>;
|
|
2002
|
+
/**
|
|
2003
|
+
* 备份名称列表
|
|
2004
|
+
*/
|
|
2005
|
+
BackupNames?: Array<string>;
|
|
2006
|
+
/**
|
|
2007
|
+
* 文件名列表
|
|
2008
|
+
*/
|
|
2009
|
+
FileNames?: Array<string>;
|
|
2010
|
+
/**
|
|
2011
|
+
* 返回数量,范围: (0, 100],默认100
|
|
2012
|
+
*/
|
|
2013
|
+
Limit?: number;
|
|
2014
|
+
/**
|
|
2015
|
+
* 偏移量,范围: [0, INF),默认0
|
|
2016
|
+
*/
|
|
2017
|
+
Offset?: number;
|
|
2018
|
+
/**
|
|
2019
|
+
* 排序字段,可选值: VaultId, VaultName, BackupSaveSeconds, LockedTime, CreateTime, UpdateTime,默认createTime
|
|
2020
|
+
*/
|
|
2021
|
+
OrderBy?: string;
|
|
2022
|
+
/**
|
|
2023
|
+
* 排序方式,可选值: desc, asc, DESC, ASC,默认desc
|
|
2024
|
+
*/
|
|
2025
|
+
OrderByType?: string;
|
|
2026
|
+
/**
|
|
2027
|
+
* 状态
|
|
2028
|
+
*/
|
|
2029
|
+
Status?: string;
|
|
2030
|
+
}
|
|
1840
2031
|
/**
|
|
1841
2032
|
* 安全组规则
|
|
1842
2033
|
*/
|
|
@@ -2143,6 +2334,23 @@ export interface ExportResourcePackageDeductDetailsRequest {
|
|
|
2143
2334
|
*/
|
|
2144
2335
|
FileType?: string;
|
|
2145
2336
|
}
|
|
2337
|
+
/**
|
|
2338
|
+
* redolog信息
|
|
2339
|
+
*/
|
|
2340
|
+
export interface DescribeRedoLogListByVaultItem {
|
|
2341
|
+
/**
|
|
2342
|
+
* 集群ID
|
|
2343
|
+
*/
|
|
2344
|
+
ClusterId?: string;
|
|
2345
|
+
/**
|
|
2346
|
+
* 集群名称
|
|
2347
|
+
*/
|
|
2348
|
+
ClusterName?: string;
|
|
2349
|
+
/**
|
|
2350
|
+
* RedoLog文件信息
|
|
2351
|
+
*/
|
|
2352
|
+
RedoFileInfo?: RedoLogItem;
|
|
2353
|
+
}
|
|
2146
2354
|
/**
|
|
2147
2355
|
* StartCLSDelivery返回参数结构体
|
|
2148
2356
|
*/
|
|
@@ -3169,29 +3377,54 @@ export interface OpenSSLRequest {
|
|
|
3169
3377
|
InstanceId?: string;
|
|
3170
3378
|
}
|
|
3171
3379
|
/**
|
|
3172
|
-
*
|
|
3380
|
+
* DescribeVaults请求参数结构体
|
|
3173
3381
|
*/
|
|
3174
|
-
export interface
|
|
3382
|
+
export interface DescribeVaultsRequest {
|
|
3175
3383
|
/**
|
|
3176
|
-
*
|
|
3384
|
+
* 保险箱ID列表,用于精确筛选
|
|
3177
3385
|
*/
|
|
3178
|
-
|
|
3386
|
+
VaultIds?: Array<string>;
|
|
3179
3387
|
/**
|
|
3180
|
-
*
|
|
3388
|
+
* 保险箱名称,用于模糊筛选
|
|
3181
3389
|
*/
|
|
3182
|
-
|
|
3390
|
+
VaultName?: string;
|
|
3183
3391
|
/**
|
|
3184
|
-
*
|
|
3392
|
+
* 保险箱状态列表,用于筛选
|
|
3185
3393
|
*/
|
|
3186
|
-
|
|
3394
|
+
Status?: Array<string>;
|
|
3187
3395
|
/**
|
|
3188
|
-
*
|
|
3396
|
+
* 每页数量,范围(0,100],默认100
|
|
3189
3397
|
*/
|
|
3190
|
-
|
|
3398
|
+
Limit?: number;
|
|
3191
3399
|
/**
|
|
3192
|
-
*
|
|
3400
|
+
* 偏移量,范围[0,+∞),默认0
|
|
3193
3401
|
*/
|
|
3194
|
-
|
|
3402
|
+
Offset?: number;
|
|
3403
|
+
/**
|
|
3404
|
+
* 排序字段,可选值:VaultId, VaultName, BackupSaveSeconds, LockedTime, CreateTime, UpdateTime
|
|
3405
|
+
*/
|
|
3406
|
+
OrderBy?: string;
|
|
3407
|
+
/**
|
|
3408
|
+
* 排序方式,可选值:desc, asc, DESC, ASC
|
|
3409
|
+
*/
|
|
3410
|
+
OrderByType?: string;
|
|
3411
|
+
}
|
|
3412
|
+
/**
|
|
3413
|
+
* CheckTransferClusterZone返回参数结构体
|
|
3414
|
+
*/
|
|
3415
|
+
export interface CheckTransferClusterZoneResponse {
|
|
3416
|
+
/**
|
|
3417
|
+
* 是否check成功
|
|
3418
|
+
*/
|
|
3419
|
+
CheckStatus?: boolean;
|
|
3420
|
+
/**
|
|
3421
|
+
* check失败的原因
|
|
3422
|
+
*/
|
|
3423
|
+
CheckMsg?: string;
|
|
3424
|
+
/**
|
|
3425
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3426
|
+
*/
|
|
3427
|
+
RequestId?: string;
|
|
3195
3428
|
}
|
|
3196
3429
|
/**
|
|
3197
3430
|
* DescribeClusterInstanceGrps返回参数结构体
|
|
@@ -3549,70 +3782,147 @@ export interface DescribeClusterParamsRequest {
|
|
|
3549
3782
|
IsGlobal?: string;
|
|
3550
3783
|
}
|
|
3551
3784
|
/**
|
|
3552
|
-
*
|
|
3785
|
+
* 保险箱信息
|
|
3553
3786
|
*/
|
|
3554
|
-
export interface
|
|
3787
|
+
export interface DescribeVaultsItem {
|
|
3555
3788
|
/**
|
|
3556
|
-
*
|
|
3789
|
+
* 保险箱ID
|
|
3557
3790
|
*/
|
|
3558
|
-
|
|
3559
|
-
}
|
|
3560
|
-
/**
|
|
3561
|
-
* DescribeAccountAllGrantPrivileges请求参数结构体
|
|
3562
|
-
*/
|
|
3563
|
-
export interface DescribeAccountAllGrantPrivilegesRequest {
|
|
3791
|
+
VaultId?: string;
|
|
3564
3792
|
/**
|
|
3565
|
-
*
|
|
3793
|
+
* 保险箱名称
|
|
3566
3794
|
*/
|
|
3567
|
-
|
|
3795
|
+
VaultName?: string;
|
|
3568
3796
|
/**
|
|
3569
|
-
*
|
|
3797
|
+
* 保险箱描述
|
|
3570
3798
|
*/
|
|
3571
|
-
|
|
3572
|
-
}
|
|
3573
|
-
/**
|
|
3574
|
-
* DeleteCLSDelivery请求参数结构体
|
|
3575
|
-
*/
|
|
3576
|
-
export interface DeleteCLSDeliveryRequest {
|
|
3799
|
+
VaultDescribe?: string;
|
|
3577
3800
|
/**
|
|
3578
|
-
*
|
|
3801
|
+
* 加密密钥ID
|
|
3579
3802
|
*/
|
|
3580
|
-
|
|
3803
|
+
KeyId?: string;
|
|
3581
3804
|
/**
|
|
3582
|
-
*
|
|
3805
|
+
* 密钥所在地域
|
|
3583
3806
|
*/
|
|
3584
|
-
|
|
3807
|
+
KeyRegion?: string;
|
|
3585
3808
|
/**
|
|
3586
|
-
*
|
|
3809
|
+
* 密钥类型
|
|
3587
3810
|
*/
|
|
3588
|
-
|
|
3811
|
+
KeyType?: string;
|
|
3589
3812
|
/**
|
|
3590
|
-
*
|
|
3813
|
+
* 备份文件数量
|
|
3591
3814
|
*/
|
|
3592
|
-
|
|
3593
|
-
}
|
|
3594
|
-
/**
|
|
3595
|
-
* DescribeLibraDBClusterAccountPrivileges请求参数结构体
|
|
3596
|
-
*/
|
|
3597
|
-
export interface DescribeLibraDBClusterAccountPrivilegesRequest {
|
|
3815
|
+
BackupFileCount?: number;
|
|
3598
3816
|
/**
|
|
3599
|
-
*
|
|
3817
|
+
* 备份文件总大小(字节)
|
|
3600
3818
|
*/
|
|
3601
|
-
|
|
3819
|
+
BackupFileSize?: number;
|
|
3602
3820
|
/**
|
|
3603
|
-
*
|
|
3821
|
+
* Binlog文件数量
|
|
3604
3822
|
*/
|
|
3605
|
-
|
|
3823
|
+
BinlogFileCount?: number;
|
|
3606
3824
|
/**
|
|
3607
|
-
*
|
|
3825
|
+
* Binlog文件总大小(字节)
|
|
3608
3826
|
*/
|
|
3609
|
-
|
|
3827
|
+
BinlogFileSize?: number;
|
|
3610
3828
|
/**
|
|
3611
|
-
*
|
|
3829
|
+
* RedoLog文件数量
|
|
3612
3830
|
*/
|
|
3613
|
-
|
|
3831
|
+
RedoLogFileCount?: number;
|
|
3614
3832
|
/**
|
|
3615
|
-
*
|
|
3833
|
+
* RedoLog文件总大小(字节)
|
|
3834
|
+
*/
|
|
3835
|
+
RedoLogFileSize?: number;
|
|
3836
|
+
/**
|
|
3837
|
+
* 保险箱状态
|
|
3838
|
+
*/
|
|
3839
|
+
Status?: string;
|
|
3840
|
+
/**
|
|
3841
|
+
* 备份保留时长(秒)
|
|
3842
|
+
*/
|
|
3843
|
+
BackupSaveSeconds?: number;
|
|
3844
|
+
/**
|
|
3845
|
+
* 锁定时间
|
|
3846
|
+
*/
|
|
3847
|
+
LockedTime?: string;
|
|
3848
|
+
/**
|
|
3849
|
+
* 关联任务列表
|
|
3850
|
+
*/
|
|
3851
|
+
Tasks?: Array<ObjectTask>;
|
|
3852
|
+
/**
|
|
3853
|
+
* 保险箱所在地域
|
|
3854
|
+
*/
|
|
3855
|
+
VaultRegion?: string;
|
|
3856
|
+
/**
|
|
3857
|
+
* 自动投递关系
|
|
3858
|
+
*/
|
|
3859
|
+
AutoCopyConfigs?: Array<AutoCopyConfig>;
|
|
3860
|
+
}
|
|
3861
|
+
/**
|
|
3862
|
+
* ModifyAccountHost返回参数结构体
|
|
3863
|
+
*/
|
|
3864
|
+
export interface ModifyAccountHostResponse {
|
|
3865
|
+
/**
|
|
3866
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3867
|
+
*/
|
|
3868
|
+
RequestId?: string;
|
|
3869
|
+
}
|
|
3870
|
+
/**
|
|
3871
|
+
* DescribeAccountAllGrantPrivileges请求参数结构体
|
|
3872
|
+
*/
|
|
3873
|
+
export interface DescribeAccountAllGrantPrivilegesRequest {
|
|
3874
|
+
/**
|
|
3875
|
+
* 集群id
|
|
3876
|
+
*/
|
|
3877
|
+
ClusterId: string;
|
|
3878
|
+
/**
|
|
3879
|
+
* 账号信息
|
|
3880
|
+
*/
|
|
3881
|
+
Account: InputAccount;
|
|
3882
|
+
}
|
|
3883
|
+
/**
|
|
3884
|
+
* DeleteCLSDelivery请求参数结构体
|
|
3885
|
+
*/
|
|
3886
|
+
export interface DeleteCLSDeliveryRequest {
|
|
3887
|
+
/**
|
|
3888
|
+
* 实例id
|
|
3889
|
+
*/
|
|
3890
|
+
InstanceId: string;
|
|
3891
|
+
/**
|
|
3892
|
+
* 日志主题id
|
|
3893
|
+
*/
|
|
3894
|
+
CLSTopicIds: Array<string>;
|
|
3895
|
+
/**
|
|
3896
|
+
* 日志类型
|
|
3897
|
+
*/
|
|
3898
|
+
LogType?: string;
|
|
3899
|
+
/**
|
|
3900
|
+
* 是否维护时间运行
|
|
3901
|
+
*/
|
|
3902
|
+
IsInMaintainPeriod?: string;
|
|
3903
|
+
}
|
|
3904
|
+
/**
|
|
3905
|
+
* DescribeLibraDBClusterAccountPrivileges请求参数结构体
|
|
3906
|
+
*/
|
|
3907
|
+
export interface DescribeLibraDBClusterAccountPrivilegesRequest {
|
|
3908
|
+
/**
|
|
3909
|
+
* 集群id
|
|
3910
|
+
*/
|
|
3911
|
+
ClusterId: string;
|
|
3912
|
+
/**
|
|
3913
|
+
* 账号名
|
|
3914
|
+
*/
|
|
3915
|
+
AccountName: string;
|
|
3916
|
+
/**
|
|
3917
|
+
* 主机名
|
|
3918
|
+
*/
|
|
3919
|
+
Host: string;
|
|
3920
|
+
/**
|
|
3921
|
+
* 数据库名
|
|
3922
|
+
*/
|
|
3923
|
+
Db: string;
|
|
3924
|
+
/**
|
|
3925
|
+
* 类型
|
|
3616
3926
|
*/
|
|
3617
3927
|
Type: string;
|
|
3618
3928
|
/**
|
|
@@ -3788,6 +4098,31 @@ export interface ModifyLibraDBClusterReplicationObjectResponse {
|
|
|
3788
4098
|
*/
|
|
3789
4099
|
RequestId?: string;
|
|
3790
4100
|
}
|
|
4101
|
+
/**
|
|
4102
|
+
* UpgradeProxyVersion请求参数结构体
|
|
4103
|
+
*/
|
|
4104
|
+
export interface UpgradeProxyVersionRequest {
|
|
4105
|
+
/**
|
|
4106
|
+
* 集群ID
|
|
4107
|
+
*/
|
|
4108
|
+
ClusterId: string;
|
|
4109
|
+
/**
|
|
4110
|
+
* 数据库代理当前版本
|
|
4111
|
+
*/
|
|
4112
|
+
SrcProxyVersion: string;
|
|
4113
|
+
/**
|
|
4114
|
+
* 数据库代理升级版本
|
|
4115
|
+
*/
|
|
4116
|
+
DstProxyVersion: string;
|
|
4117
|
+
/**
|
|
4118
|
+
* 数据库代理组ID
|
|
4119
|
+
*/
|
|
4120
|
+
ProxyGroupId?: string;
|
|
4121
|
+
/**
|
|
4122
|
+
* 升级时间 :no(升级完成时)yes(实例维护时间)
|
|
4123
|
+
*/
|
|
4124
|
+
IsInMaintainPeriod?: string;
|
|
4125
|
+
}
|
|
3791
4126
|
/**
|
|
3792
4127
|
* 备可用区库存信息
|
|
3793
4128
|
*/
|
|
@@ -4497,6 +4832,19 @@ export interface DescribeClusterTransparentEncryptInfoRequest {
|
|
|
4497
4832
|
*/
|
|
4498
4833
|
ClusterId: string;
|
|
4499
4834
|
}
|
|
4835
|
+
/**
|
|
4836
|
+
* DeleteVaults返回参数结构体
|
|
4837
|
+
*/
|
|
4838
|
+
export interface DeleteVaultsResponse {
|
|
4839
|
+
/**
|
|
4840
|
+
* 删除任务列表,每个保险箱对应一个任务
|
|
4841
|
+
*/
|
|
4842
|
+
VaultTask?: Array<DeleteVaultTask>;
|
|
4843
|
+
/**
|
|
4844
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4845
|
+
*/
|
|
4846
|
+
RequestId?: string;
|
|
4847
|
+
}
|
|
4500
4848
|
/**
|
|
4501
4849
|
* 同步对象详情
|
|
4502
4850
|
*/
|
|
@@ -5096,17 +5444,21 @@ export interface SwitchClusterVpcResponse {
|
|
|
5096
5444
|
RequestId?: string;
|
|
5097
5445
|
}
|
|
5098
5446
|
/**
|
|
5099
|
-
*
|
|
5447
|
+
* DescribeRedoLogListByVault返回参数结构体
|
|
5100
5448
|
*/
|
|
5101
|
-
export interface
|
|
5449
|
+
export interface DescribeRedoLogListByVaultResponse {
|
|
5102
5450
|
/**
|
|
5103
|
-
*
|
|
5451
|
+
* 符合条件的RedoLog文件总数
|
|
5104
5452
|
*/
|
|
5105
|
-
|
|
5453
|
+
TotalCount?: number;
|
|
5106
5454
|
/**
|
|
5107
|
-
*
|
|
5455
|
+
* RedoLog文件列表
|
|
5108
5456
|
*/
|
|
5109
|
-
|
|
5457
|
+
RedoLogList?: Array<DescribeRedoLogListByVaultItem>;
|
|
5458
|
+
/**
|
|
5459
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5460
|
+
*/
|
|
5461
|
+
RequestId?: string;
|
|
5110
5462
|
}
|
|
5111
5463
|
/**
|
|
5112
5464
|
* 集群绑定的标签信息,包含标签键TagKey和标签值TagValue
|
|
@@ -5316,6 +5668,51 @@ export interface CreateClusterDatabaseResponse {
|
|
|
5316
5668
|
*/
|
|
5317
5669
|
RequestId?: string;
|
|
5318
5670
|
}
|
|
5671
|
+
/**
|
|
5672
|
+
* DescribeRedoLogListByVault请求参数结构体
|
|
5673
|
+
*/
|
|
5674
|
+
export interface DescribeRedoLogListByVaultRequest {
|
|
5675
|
+
/**
|
|
5676
|
+
* 保险箱ID
|
|
5677
|
+
*/
|
|
5678
|
+
VaultId: string;
|
|
5679
|
+
/**
|
|
5680
|
+
* 备份ID列表
|
|
5681
|
+
*/
|
|
5682
|
+
BackupIds?: Array<number | bigint>;
|
|
5683
|
+
/**
|
|
5684
|
+
* 集群ID
|
|
5685
|
+
*/
|
|
5686
|
+
ClusterId?: string;
|
|
5687
|
+
/**
|
|
5688
|
+
* 备份名称列表
|
|
5689
|
+
*/
|
|
5690
|
+
BackupNames?: Array<string>;
|
|
5691
|
+
/**
|
|
5692
|
+
* 文件名称列表
|
|
5693
|
+
*/
|
|
5694
|
+
FileNames?: Array<string>;
|
|
5695
|
+
/**
|
|
5696
|
+
* 每页数量,范围(0,100],默认100
|
|
5697
|
+
*/
|
|
5698
|
+
Limit?: number;
|
|
5699
|
+
/**
|
|
5700
|
+
* 偏移量,范围[0,INF),默认0
|
|
5701
|
+
*/
|
|
5702
|
+
Offset?: number;
|
|
5703
|
+
/**
|
|
5704
|
+
* 排序字段,可选值:VaultId,VaultName,BackupSaveSeconds,LockedTime,CreateTime,UpdateTime,默认createTime
|
|
5705
|
+
*/
|
|
5706
|
+
OrderBy?: string;
|
|
5707
|
+
/**
|
|
5708
|
+
* 排序方式,可选值:desc,asc,DESC,ASC,默认desc
|
|
5709
|
+
*/
|
|
5710
|
+
OrderByType?: string;
|
|
5711
|
+
/**
|
|
5712
|
+
* 状态
|
|
5713
|
+
*/
|
|
5714
|
+
Status?: string;
|
|
5715
|
+
}
|
|
5319
5716
|
/**
|
|
5320
5717
|
* DescribeClusters返回参数结构体
|
|
5321
5718
|
*/
|
|
@@ -5375,6 +5772,27 @@ export interface DescribeBackupConfigResponse {
|
|
|
5375
5772
|
*/
|
|
5376
5773
|
RequestId?: string;
|
|
5377
5774
|
}
|
|
5775
|
+
/**
|
|
5776
|
+
* 保险箱自动投递关系
|
|
5777
|
+
*/
|
|
5778
|
+
export interface AutoCopyConfig {
|
|
5779
|
+
/**
|
|
5780
|
+
* 集群id
|
|
5781
|
+
*/
|
|
5782
|
+
ClusterId?: string;
|
|
5783
|
+
/**
|
|
5784
|
+
* 保险箱ID
|
|
5785
|
+
*/
|
|
5786
|
+
VaultId?: string;
|
|
5787
|
+
/**
|
|
5788
|
+
* 保险箱地域
|
|
5789
|
+
*/
|
|
5790
|
+
VaultRegion?: string;
|
|
5791
|
+
/**
|
|
5792
|
+
* 投递类型:binlog, redolog, snapshot, logic
|
|
5793
|
+
*/
|
|
5794
|
+
CopyType?: string;
|
|
5795
|
+
}
|
|
5378
5796
|
/**
|
|
5379
5797
|
* DescribeParamTemplates返回参数结构体
|
|
5380
5798
|
*/
|
|
@@ -5645,22 +6063,21 @@ export interface InstanceAuditStatus {
|
|
|
5645
6063
|
DeliverSummary?: Array<DeliverSummary>;
|
|
5646
6064
|
}
|
|
5647
6065
|
/**
|
|
5648
|
-
*
|
|
6066
|
+
* DescribeVaults返回参数结构体
|
|
5649
6067
|
*/
|
|
5650
|
-
export interface
|
|
6068
|
+
export interface DescribeVaultsResponse {
|
|
5651
6069
|
/**
|
|
5652
|
-
*
|
|
5653
|
-
* @deprecated
|
|
6070
|
+
* 保险箱列表
|
|
5654
6071
|
*/
|
|
5655
|
-
|
|
6072
|
+
Vaults?: Array<DescribeVaultsItem>;
|
|
5656
6073
|
/**
|
|
5657
|
-
*
|
|
6074
|
+
* 总数量
|
|
5658
6075
|
*/
|
|
5659
|
-
|
|
6076
|
+
TotalCount?: number;
|
|
5660
6077
|
/**
|
|
5661
|
-
*
|
|
6078
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5662
6079
|
*/
|
|
5663
|
-
|
|
6080
|
+
RequestId?: string;
|
|
5664
6081
|
}
|
|
5665
6082
|
/**
|
|
5666
6083
|
* DescribeClusterInstanceGroups返回参数结构体
|
|
@@ -6017,6 +6434,55 @@ export interface DescribeLibraDBClusterDetailResponse {
|
|
|
6017
6434
|
*/
|
|
6018
6435
|
RequestId?: string;
|
|
6019
6436
|
}
|
|
6437
|
+
/**
|
|
6438
|
+
* 全球数据库任务信息
|
|
6439
|
+
*/
|
|
6440
|
+
export interface GdnTaskInfo {
|
|
6441
|
+
/**
|
|
6442
|
+
* 全球数据库唯一标识
|
|
6443
|
+
*/
|
|
6444
|
+
GdnId?: string;
|
|
6445
|
+
/**
|
|
6446
|
+
* 全球数据库唯一别名
|
|
6447
|
+
*/
|
|
6448
|
+
GdnName?: string;
|
|
6449
|
+
/**
|
|
6450
|
+
* 主集群ID
|
|
6451
|
+
*/
|
|
6452
|
+
PrimaryClusterId?: string;
|
|
6453
|
+
/**
|
|
6454
|
+
* 主集群所在地域
|
|
6455
|
+
*/
|
|
6456
|
+
PrimaryClusterRegion?: string;
|
|
6457
|
+
/**
|
|
6458
|
+
* 从集群所在地域
|
|
6459
|
+
*/
|
|
6460
|
+
StandbyClusterRegion?: string;
|
|
6461
|
+
/**
|
|
6462
|
+
* 从集群ID
|
|
6463
|
+
*/
|
|
6464
|
+
StandbyClusterId?: string;
|
|
6465
|
+
/**
|
|
6466
|
+
* 从集群名称
|
|
6467
|
+
*/
|
|
6468
|
+
StandbyClusterName?: string;
|
|
6469
|
+
/**
|
|
6470
|
+
* 是否已强切
|
|
6471
|
+
*/
|
|
6472
|
+
ForceSwitchGdn?: string;
|
|
6473
|
+
/**
|
|
6474
|
+
* 返回码
|
|
6475
|
+
*/
|
|
6476
|
+
Code?: number;
|
|
6477
|
+
/**
|
|
6478
|
+
* 提示信息
|
|
6479
|
+
*/
|
|
6480
|
+
Message?: string;
|
|
6481
|
+
/**
|
|
6482
|
+
* 是否支持强切
|
|
6483
|
+
*/
|
|
6484
|
+
IsSupportForce?: string;
|
|
6485
|
+
}
|
|
6020
6486
|
/**
|
|
6021
6487
|
* GrantAccountPrivileges返回参数结构体
|
|
6022
6488
|
*/
|
|
@@ -6146,58 +6612,22 @@ export interface ResumeServerlessResponse {
|
|
|
6146
6612
|
RequestId?: string;
|
|
6147
6613
|
}
|
|
6148
6614
|
/**
|
|
6149
|
-
*
|
|
6615
|
+
* DeleteBackupVault返回参数结构体
|
|
6150
6616
|
*/
|
|
6151
|
-
export interface
|
|
6617
|
+
export interface DeleteBackupVaultResponse {
|
|
6152
6618
|
/**
|
|
6153
|
-
*
|
|
6619
|
+
* 任务ID,用于查询任务执行状态
|
|
6154
6620
|
*/
|
|
6155
|
-
|
|
6621
|
+
TaskId?: number;
|
|
6156
6622
|
/**
|
|
6157
|
-
*
|
|
6623
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6158
6624
|
*/
|
|
6159
|
-
|
|
6160
|
-
|
|
6161
|
-
|
|
6162
|
-
|
|
6163
|
-
|
|
6164
|
-
|
|
6165
|
-
* 主集群所在地域
|
|
6166
|
-
*/
|
|
6167
|
-
PrimaryClusterRegion?: string;
|
|
6168
|
-
/**
|
|
6169
|
-
* 从集群所在地域
|
|
6170
|
-
*/
|
|
6171
|
-
StandbyClusterRegion?: string;
|
|
6172
|
-
/**
|
|
6173
|
-
* 从集群ID
|
|
6174
|
-
*/
|
|
6175
|
-
StandbyClusterId?: string;
|
|
6176
|
-
/**
|
|
6177
|
-
* 从集群名称
|
|
6178
|
-
*/
|
|
6179
|
-
StandbyClusterName?: string;
|
|
6180
|
-
/**
|
|
6181
|
-
* 是否已强切
|
|
6182
|
-
*/
|
|
6183
|
-
ForceSwitchGdn?: string;
|
|
6184
|
-
/**
|
|
6185
|
-
* 返回码
|
|
6186
|
-
*/
|
|
6187
|
-
Code?: number;
|
|
6188
|
-
/**
|
|
6189
|
-
* 提示信息
|
|
6190
|
-
*/
|
|
6191
|
-
Message?: string;
|
|
6192
|
-
/**
|
|
6193
|
-
* 是否支持强切
|
|
6194
|
-
*/
|
|
6195
|
-
IsSupportForce?: string;
|
|
6196
|
-
}
|
|
6197
|
-
/**
|
|
6198
|
-
* DescribeBackupDownloadUserRestriction返回参数结构体
|
|
6199
|
-
*/
|
|
6200
|
-
export interface DescribeBackupDownloadUserRestrictionResponse {
|
|
6625
|
+
RequestId?: string;
|
|
6626
|
+
}
|
|
6627
|
+
/**
|
|
6628
|
+
* DescribeBackupDownloadUserRestriction返回参数结构体
|
|
6629
|
+
*/
|
|
6630
|
+
export interface DescribeBackupDownloadUserRestrictionResponse {
|
|
6201
6631
|
/**
|
|
6202
6632
|
* 集群备份下载限制信息
|
|
6203
6633
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -6459,6 +6889,19 @@ export interface CLSInfo {
|
|
|
6459
6889
|
*/
|
|
6460
6890
|
GroupName?: string;
|
|
6461
6891
|
}
|
|
6892
|
+
/**
|
|
6893
|
+
* DeleteBackupVault请求参数结构体
|
|
6894
|
+
*/
|
|
6895
|
+
export interface DeleteBackupVaultRequest {
|
|
6896
|
+
/**
|
|
6897
|
+
* 备份保险箱ID,长度必须大于0
|
|
6898
|
+
*/
|
|
6899
|
+
VaultId: string;
|
|
6900
|
+
/**
|
|
6901
|
+
* 待删除的备份文件ID列表,不能为空
|
|
6902
|
+
*/
|
|
6903
|
+
BackupIds: Array<number | bigint>;
|
|
6904
|
+
}
|
|
6462
6905
|
/**
|
|
6463
6906
|
* 高级映射,自动映射规则
|
|
6464
6907
|
*/
|
|
@@ -6676,6 +7119,19 @@ export interface AddInstancesRequest {
|
|
|
6676
7119
|
*/
|
|
6677
7120
|
UpgradeProxy?: UpgradeProxy;
|
|
6678
7121
|
}
|
|
7122
|
+
/**
|
|
7123
|
+
* ModifyVault返回参数结构体
|
|
7124
|
+
*/
|
|
7125
|
+
export interface ModifyVaultResponse {
|
|
7126
|
+
/**
|
|
7127
|
+
* 任务ID
|
|
7128
|
+
*/
|
|
7129
|
+
TaskId?: number;
|
|
7130
|
+
/**
|
|
7131
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7132
|
+
*/
|
|
7133
|
+
RequestId?: string;
|
|
7134
|
+
}
|
|
6679
7135
|
/**
|
|
6680
7136
|
* 实例详情
|
|
6681
7137
|
*/
|
|
@@ -6841,17 +7297,125 @@ export interface DescribeBackupDownloadRestrictionRequest {
|
|
|
6841
7297
|
ClusterIds: Array<string>;
|
|
6842
7298
|
}
|
|
6843
7299
|
/**
|
|
6844
|
-
*
|
|
7300
|
+
* libra集群详情
|
|
6845
7301
|
*/
|
|
6846
|
-
export interface
|
|
7302
|
+
export interface LibraDBClusterDetail {
|
|
6847
7303
|
/**
|
|
6848
|
-
*
|
|
7304
|
+
* 集群id
|
|
6849
7305
|
*/
|
|
6850
|
-
|
|
7306
|
+
ClusterId?: string;
|
|
6851
7307
|
/**
|
|
6852
|
-
*
|
|
7308
|
+
* 集群名称
|
|
6853
7309
|
*/
|
|
6854
|
-
|
|
7310
|
+
ClusterName?: string;
|
|
7311
|
+
/**
|
|
7312
|
+
* 地域
|
|
7313
|
+
*/
|
|
7314
|
+
Region?: string;
|
|
7315
|
+
/**
|
|
7316
|
+
* 状态
|
|
7317
|
+
*/
|
|
7318
|
+
Status?: string;
|
|
7319
|
+
/**
|
|
7320
|
+
* 状态描述
|
|
7321
|
+
*/
|
|
7322
|
+
StatusDesc?: string;
|
|
7323
|
+
/**
|
|
7324
|
+
* 存储大小
|
|
7325
|
+
*/
|
|
7326
|
+
Storage?: number;
|
|
7327
|
+
/**
|
|
7328
|
+
* VPC名称
|
|
7329
|
+
*/
|
|
7330
|
+
VpcName?: string;
|
|
7331
|
+
/**
|
|
7332
|
+
* vpc唯一id
|
|
7333
|
+
*/
|
|
7334
|
+
VpcId?: string;
|
|
7335
|
+
/**
|
|
7336
|
+
* 子网名称
|
|
7337
|
+
*/
|
|
7338
|
+
SubnetName?: string;
|
|
7339
|
+
/**
|
|
7340
|
+
* 子网ID
|
|
7341
|
+
*/
|
|
7342
|
+
SubnetId?: string;
|
|
7343
|
+
/**
|
|
7344
|
+
* 创建时间
|
|
7345
|
+
*/
|
|
7346
|
+
CreateTime?: string;
|
|
7347
|
+
/**
|
|
7348
|
+
* 数据库版本
|
|
7349
|
+
*/
|
|
7350
|
+
DbVersion?: string;
|
|
7351
|
+
/**
|
|
7352
|
+
* 使用容量
|
|
7353
|
+
*/
|
|
7354
|
+
UsedStorage?: number;
|
|
7355
|
+
/**
|
|
7356
|
+
* vip地址
|
|
7357
|
+
*/
|
|
7358
|
+
Vip?: string;
|
|
7359
|
+
/**
|
|
7360
|
+
* vport端口
|
|
7361
|
+
*/
|
|
7362
|
+
Vport?: number;
|
|
7363
|
+
/**
|
|
7364
|
+
* 集群只读实例的vip地址和vport端口
|
|
7365
|
+
*/
|
|
7366
|
+
RoAddr?: Array<RoAddr>;
|
|
7367
|
+
/**
|
|
7368
|
+
* cynos版本
|
|
7369
|
+
*/
|
|
7370
|
+
CynosVersion?: string;
|
|
7371
|
+
/**
|
|
7372
|
+
* 是否冻结
|
|
7373
|
+
*/
|
|
7374
|
+
IsFreeze?: string;
|
|
7375
|
+
/**
|
|
7376
|
+
* 任务列表
|
|
7377
|
+
*/
|
|
7378
|
+
Tasks?: Array<ObjectTask>;
|
|
7379
|
+
/**
|
|
7380
|
+
* 主可用区
|
|
7381
|
+
*/
|
|
7382
|
+
MasterZone?: string;
|
|
7383
|
+
/**
|
|
7384
|
+
* 实例集合
|
|
7385
|
+
*/
|
|
7386
|
+
InstanceSet?: Array<InstanceSet>;
|
|
7387
|
+
/**
|
|
7388
|
+
* 付费模式
|
|
7389
|
+
*/
|
|
7390
|
+
PayMode?: number;
|
|
7391
|
+
/**
|
|
7392
|
+
* 到期时间
|
|
7393
|
+
*/
|
|
7394
|
+
PeriodEndTime?: string;
|
|
7395
|
+
/**
|
|
7396
|
+
* 项目id
|
|
7397
|
+
*/
|
|
7398
|
+
ProjectID?: number;
|
|
7399
|
+
/**
|
|
7400
|
+
* 自动续费标识
|
|
7401
|
+
*/
|
|
7402
|
+
RenewFlag?: number;
|
|
7403
|
+
/**
|
|
7404
|
+
* 版本标签
|
|
7405
|
+
*/
|
|
7406
|
+
CynosVersionTag?: string;
|
|
7407
|
+
/**
|
|
7408
|
+
* 不支持添加ro yes-不支持添加ro, no/null/"" 支持添加ro
|
|
7409
|
+
*/
|
|
7410
|
+
NoSupportAddRo?: string;
|
|
7411
|
+
/**
|
|
7412
|
+
* 可用区
|
|
7413
|
+
*/
|
|
7414
|
+
Zone?: string;
|
|
7415
|
+
/**
|
|
7416
|
+
* 物理可用区
|
|
7417
|
+
*/
|
|
7418
|
+
PhysicalZone?: string;
|
|
6855
7419
|
}
|
|
6856
7420
|
/**
|
|
6857
7421
|
* 资源包信息
|
|
@@ -7638,6 +8202,15 @@ export interface DescribeAccountsRequest {
|
|
|
7638
8202
|
*/
|
|
7639
8203
|
AccountRegular?: string;
|
|
7640
8204
|
}
|
|
8205
|
+
/**
|
|
8206
|
+
* DescribeVaultBackupClusterInfo请求参数结构体
|
|
8207
|
+
*/
|
|
8208
|
+
export interface DescribeVaultBackupClusterInfoRequest {
|
|
8209
|
+
/**
|
|
8210
|
+
* 备份保险箱ID
|
|
8211
|
+
*/
|
|
8212
|
+
VaultId: string;
|
|
8213
|
+
}
|
|
7641
8214
|
/**
|
|
7642
8215
|
* DescribeRollbackTimeRange返回参数结构体
|
|
7643
8216
|
*/
|
|
@@ -7659,6 +8232,23 @@ export interface DescribeRollbackTimeRangeResponse {
|
|
|
7659
8232
|
*/
|
|
7660
8233
|
RequestId?: string;
|
|
7661
8234
|
}
|
|
8235
|
+
/**
|
|
8236
|
+
* binlog备份信息
|
|
8237
|
+
*/
|
|
8238
|
+
export interface DescribeBinlogListByVaultItem {
|
|
8239
|
+
/**
|
|
8240
|
+
* 集群ID
|
|
8241
|
+
*/
|
|
8242
|
+
ClusterId?: string;
|
|
8243
|
+
/**
|
|
8244
|
+
* 集群名称
|
|
8245
|
+
*/
|
|
8246
|
+
ClusterName?: string;
|
|
8247
|
+
/**
|
|
8248
|
+
* Binlog文件信息
|
|
8249
|
+
*/
|
|
8250
|
+
BinlogFileInfo?: BinlogItem;
|
|
8251
|
+
}
|
|
7662
8252
|
/**
|
|
7663
8253
|
* ModifyBackupName返回参数结构体
|
|
7664
8254
|
*/
|
|
@@ -7772,6 +8362,23 @@ export interface ModifyClusterGlobalEncryptionResponse {
|
|
|
7772
8362
|
*/
|
|
7773
8363
|
RequestId?: string;
|
|
7774
8364
|
}
|
|
8365
|
+
/**
|
|
8366
|
+
* CheckTransferClusterZone请求参数结构体
|
|
8367
|
+
*/
|
|
8368
|
+
export interface CheckTransferClusterZoneRequest {
|
|
8369
|
+
/**
|
|
8370
|
+
* 源集群Id
|
|
8371
|
+
*/
|
|
8372
|
+
ClusterId: string;
|
|
8373
|
+
/**
|
|
8374
|
+
* 目标可用区
|
|
8375
|
+
*/
|
|
8376
|
+
DstZone: string;
|
|
8377
|
+
/**
|
|
8378
|
+
* proxy迁移的目标可用区信息
|
|
8379
|
+
*/
|
|
8380
|
+
ProxyZones?: Array<ProxyZone>;
|
|
8381
|
+
}
|
|
7775
8382
|
/**
|
|
7776
8383
|
* CloseWan返回参数结构体
|
|
7777
8384
|
*/
|
|
@@ -8080,6 +8687,35 @@ export interface DescribeFlowResponse {
|
|
|
8080
8687
|
*/
|
|
8081
8688
|
RequestId?: string;
|
|
8082
8689
|
}
|
|
8690
|
+
/**
|
|
8691
|
+
* CalculateBackupSaveSecExpires请求参数结构体
|
|
8692
|
+
*/
|
|
8693
|
+
export interface CalculateBackupSaveSecExpiresRequest {
|
|
8694
|
+
/**
|
|
8695
|
+
* 备份保险箱ID
|
|
8696
|
+
*/
|
|
8697
|
+
VaultId: string;
|
|
8698
|
+
/**
|
|
8699
|
+
* 备份保留时长(秒),必须大于0
|
|
8700
|
+
*/
|
|
8701
|
+
BackupSaveSeconds?: number;
|
|
8702
|
+
/**
|
|
8703
|
+
* 每页数量,范围(0,100],默认10
|
|
8704
|
+
*/
|
|
8705
|
+
Limit?: number;
|
|
8706
|
+
/**
|
|
8707
|
+
* 偏移量,范围[0,INF),默认0
|
|
8708
|
+
*/
|
|
8709
|
+
Offset?: number;
|
|
8710
|
+
/**
|
|
8711
|
+
* 排序字段,可选值:VaultId,VaultName,BackupSaveSeconds,LockedTime,CreateTime,UpdateTime,默认endTime
|
|
8712
|
+
*/
|
|
8713
|
+
OrderBy?: string;
|
|
8714
|
+
/**
|
|
8715
|
+
* 排序方式,可选值:desc,asc,DESC,ASC,默认desc
|
|
8716
|
+
*/
|
|
8717
|
+
OrderByType?: string;
|
|
8718
|
+
}
|
|
8083
8719
|
/**
|
|
8084
8720
|
* ExportInstanceErrorLogs请求参数结构体
|
|
8085
8721
|
*/
|
|
@@ -8189,19 +8825,6 @@ export interface DescribeLibraDBClusterTableMappingResponse {
|
|
|
8189
8825
|
*/
|
|
8190
8826
|
RequestId?: string;
|
|
8191
8827
|
}
|
|
8192
|
-
/**
|
|
8193
|
-
* DeleteClusterDatabase请求参数结构体
|
|
8194
|
-
*/
|
|
8195
|
-
export interface DeleteClusterDatabaseRequest {
|
|
8196
|
-
/**
|
|
8197
|
-
* 集群ID
|
|
8198
|
-
*/
|
|
8199
|
-
ClusterId: string;
|
|
8200
|
-
/**
|
|
8201
|
-
* 数据库名
|
|
8202
|
-
*/
|
|
8203
|
-
DbNames: Array<string>;
|
|
8204
|
-
}
|
|
8205
8828
|
/**
|
|
8206
8829
|
* DescribeInstanceCLSLogDelivery请求参数结构体
|
|
8207
8830
|
*/
|
|
@@ -8804,6 +9427,19 @@ export interface ModifyParamsData {
|
|
|
8804
9427
|
*/
|
|
8805
9428
|
CurValue?: string;
|
|
8806
9429
|
}
|
|
9430
|
+
/**
|
|
9431
|
+
* CreateVault返回参数结构体
|
|
9432
|
+
*/
|
|
9433
|
+
export interface CreateVaultResponse {
|
|
9434
|
+
/**
|
|
9435
|
+
* 任务ID,用于查询任务执行状态
|
|
9436
|
+
*/
|
|
9437
|
+
TaskId?: number;
|
|
9438
|
+
/**
|
|
9439
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9440
|
+
*/
|
|
9441
|
+
RequestId?: string;
|
|
9442
|
+
}
|
|
8807
9443
|
/**
|
|
8808
9444
|
* 资源包绑定的实例信息
|
|
8809
9445
|
*/
|
|
@@ -9180,15 +9816,48 @@ export interface ReloadBalanceProxyNodeResponse {
|
|
|
9180
9816
|
RequestId?: string;
|
|
9181
9817
|
}
|
|
9182
9818
|
/**
|
|
9183
|
-
*
|
|
9819
|
+
* CreateVault请求参数结构体
|
|
9184
9820
|
*/
|
|
9185
|
-
export interface
|
|
9821
|
+
export interface CreateVaultRequest {
|
|
9186
9822
|
/**
|
|
9187
|
-
*
|
|
9823
|
+
* 保险箱名称,长度必须大于0
|
|
9188
9824
|
*/
|
|
9189
|
-
|
|
9190
|
-
|
|
9191
|
-
|
|
9825
|
+
VaultName: string;
|
|
9826
|
+
/**
|
|
9827
|
+
* 备份保留时长(秒),必须大于0
|
|
9828
|
+
*/
|
|
9829
|
+
BackupSaveSeconds: number;
|
|
9830
|
+
/**
|
|
9831
|
+
* 保险箱描述
|
|
9832
|
+
*/
|
|
9833
|
+
VaultDescribe?: string;
|
|
9834
|
+
/**
|
|
9835
|
+
* KMS密钥ID,长度0-36字符
|
|
9836
|
+
*/
|
|
9837
|
+
KeyId?: string;
|
|
9838
|
+
/**
|
|
9839
|
+
* 密钥类型,可选值:cloud(云托管密钥)、custom(自定义密钥)
|
|
9840
|
+
*/
|
|
9841
|
+
KeyType?: string;
|
|
9842
|
+
/**
|
|
9843
|
+
* 密钥所在地域,长度0-32字符
|
|
9844
|
+
*/
|
|
9845
|
+
KeyRegion?: string;
|
|
9846
|
+
/**
|
|
9847
|
+
* 锁定时间,格式:YYYY-MM-DD HH:mm:ss
|
|
9848
|
+
*/
|
|
9849
|
+
LockedTime?: string;
|
|
9850
|
+
}
|
|
9851
|
+
/**
|
|
9852
|
+
* CloseAuditService返回参数结构体
|
|
9853
|
+
*/
|
|
9854
|
+
export interface CloseAuditServiceResponse {
|
|
9855
|
+
/**
|
|
9856
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9857
|
+
*/
|
|
9858
|
+
RequestId?: string;
|
|
9859
|
+
}
|
|
9860
|
+
/**
|
|
9192
9861
|
* ModifyParamTemplate返回参数结构体
|
|
9193
9862
|
*/
|
|
9194
9863
|
export interface ModifyParamTemplateResponse {
|
|
@@ -9388,17 +10057,21 @@ export interface CreateProxyRequest {
|
|
|
9388
10057
|
ProxyZones?: Array<ProxyZone>;
|
|
9389
10058
|
}
|
|
9390
10059
|
/**
|
|
9391
|
-
*
|
|
10060
|
+
* DescribeBackupListByVaultItem
|
|
9392
10061
|
*/
|
|
9393
|
-
export interface
|
|
10062
|
+
export interface DescribeBackupListByVaultItem {
|
|
9394
10063
|
/**
|
|
9395
|
-
*
|
|
10064
|
+
* 集群id
|
|
9396
10065
|
*/
|
|
9397
|
-
|
|
10066
|
+
ClusterId?: string;
|
|
9398
10067
|
/**
|
|
9399
|
-
*
|
|
10068
|
+
* 集群name
|
|
9400
10069
|
*/
|
|
9401
|
-
|
|
10070
|
+
ClusterName?: string;
|
|
10071
|
+
/**
|
|
10072
|
+
* 备份信息
|
|
10073
|
+
*/
|
|
10074
|
+
BackupFileInfo?: BackupFileInfo;
|
|
9402
10075
|
}
|
|
9403
10076
|
/**
|
|
9404
10077
|
* DescribeResourcePackageSaleSpec返回参数结构体
|
|
@@ -9417,6 +10090,23 @@ export interface DescribeResourcePackageSaleSpecResponse {
|
|
|
9417
10090
|
*/
|
|
9418
10091
|
RequestId?: string;
|
|
9419
10092
|
}
|
|
10093
|
+
/**
|
|
10094
|
+
* OpenClusterReadOnlyInstanceGroupAccess请求参数结构体
|
|
10095
|
+
*/
|
|
10096
|
+
export interface OpenClusterReadOnlyInstanceGroupAccessRequest {
|
|
10097
|
+
/**
|
|
10098
|
+
* 集群ID
|
|
10099
|
+
*/
|
|
10100
|
+
ClusterId: string;
|
|
10101
|
+
/**
|
|
10102
|
+
* 端口
|
|
10103
|
+
*/
|
|
10104
|
+
Port: string;
|
|
10105
|
+
/**
|
|
10106
|
+
* 安全组ID
|
|
10107
|
+
*/
|
|
10108
|
+
SecurityGroupIds?: Array<string>;
|
|
10109
|
+
}
|
|
9420
10110
|
/**
|
|
9421
10111
|
* UpgradeClusterVersion返回参数结构体
|
|
9422
10112
|
*/
|
|
@@ -9448,122 +10138,19 @@ export interface QuerySimpleFilter {
|
|
|
9448
10138
|
ExactMatch?: boolean;
|
|
9449
10139
|
}
|
|
9450
10140
|
/**
|
|
9451
|
-
*
|
|
10141
|
+
* DescribeResourcesByDealName请求参数结构体
|
|
9452
10142
|
*/
|
|
9453
|
-
export interface
|
|
9454
|
-
/**
|
|
9455
|
-
* 用户id
|
|
9456
|
-
*/
|
|
9457
|
-
AppId?: number;
|
|
9458
|
-
/**
|
|
9459
|
-
* 集群ID
|
|
9460
|
-
*/
|
|
9461
|
-
ClusterId?: string;
|
|
9462
|
-
/**
|
|
9463
|
-
* 集群名称
|
|
9464
|
-
*/
|
|
9465
|
-
ClusterName?: string;
|
|
9466
|
-
/**
|
|
9467
|
-
* 创建时间
|
|
9468
|
-
*/
|
|
9469
|
-
CreateTime?: string;
|
|
9470
|
-
/**
|
|
9471
|
-
* cynos版本
|
|
9472
|
-
*/
|
|
9473
|
-
CynosVersion?: string;
|
|
9474
|
-
/**
|
|
9475
|
-
* 版本标签
|
|
9476
|
-
*/
|
|
9477
|
-
CynosVersionTag?: string;
|
|
9478
|
-
/**
|
|
9479
|
-
* 数据库版本
|
|
9480
|
-
*/
|
|
9481
|
-
DbVersion?: string;
|
|
9482
|
-
/**
|
|
9483
|
-
* 实例数量
|
|
9484
|
-
*/
|
|
9485
|
-
InstanceNum?: number;
|
|
9486
|
-
/**
|
|
9487
|
-
* 是否冻结
|
|
9488
|
-
*/
|
|
9489
|
-
IsFreeze?: string;
|
|
9490
|
-
/**
|
|
9491
|
-
* 网络地址
|
|
9492
|
-
*/
|
|
9493
|
-
NetAddrs?: Array<NetAddr>;
|
|
9494
|
-
/**
|
|
9495
|
-
* 付费模式
|
|
9496
|
-
*/
|
|
9497
|
-
PayMode?: number;
|
|
9498
|
-
/**
|
|
9499
|
-
* 到期时间
|
|
9500
|
-
|
|
9501
|
-
*/
|
|
9502
|
-
PeriodEndTime?: string;
|
|
9503
|
-
/**
|
|
9504
|
-
* 项目id
|
|
9505
|
-
*/
|
|
9506
|
-
ProjectID?: number;
|
|
9507
|
-
/**
|
|
9508
|
-
* 地域
|
|
9509
|
-
*/
|
|
9510
|
-
Region?: string;
|
|
9511
|
-
/**
|
|
9512
|
-
* 自动续费标识,1为自动续费,0为到期不续
|
|
9513
|
-
*/
|
|
9514
|
-
RenewFlag?: number;
|
|
9515
|
-
/**
|
|
9516
|
-
* 状态
|
|
9517
|
-
*/
|
|
9518
|
-
Status?: string;
|
|
9519
|
-
/**
|
|
9520
|
-
* 状态描述
|
|
9521
|
-
*/
|
|
9522
|
-
StatusDesc?: string;
|
|
9523
|
-
/**
|
|
9524
|
-
* 存储大小,单位为G
|
|
9525
|
-
*/
|
|
9526
|
-
Storage?: number;
|
|
9527
|
-
/**
|
|
9528
|
-
* 子网ID
|
|
9529
|
-
*/
|
|
9530
|
-
SubnetId?: string;
|
|
9531
|
-
/**
|
|
9532
|
-
* 任务列表
|
|
9533
|
-
*/
|
|
9534
|
-
Tasks?: Array<ObjectTask>;
|
|
9535
|
-
/**
|
|
9536
|
-
* 账户id
|
|
9537
|
-
*/
|
|
9538
|
-
Uin?: string;
|
|
9539
|
-
/**
|
|
9540
|
-
* vip地址
|
|
9541
|
-
*/
|
|
9542
|
-
Vip?: string;
|
|
9543
|
-
/**
|
|
9544
|
-
* vpc唯一id
|
|
9545
|
-
*/
|
|
9546
|
-
VpcId?: string;
|
|
9547
|
-
/**
|
|
9548
|
-
* vport端口
|
|
9549
|
-
*/
|
|
9550
|
-
Vport?: number;
|
|
9551
|
-
/**
|
|
9552
|
-
* 更新时间
|
|
9553
|
-
*/
|
|
9554
|
-
UpdateTime?: string;
|
|
9555
|
-
/**
|
|
9556
|
-
* 主可用区
|
|
9557
|
-
*/
|
|
9558
|
-
MasterZone?: string;
|
|
10143
|
+
export interface DescribeResourcesByDealNameRequest {
|
|
9559
10144
|
/**
|
|
9560
|
-
*
|
|
10145
|
+
* 计费订单ID(如果计费还没回调业务发货,可能出现错误码InvalidParameterValue.DealNameNotFound,这种情况需要业务重试DescribeResourcesByDealName接口直到成功)。
|
|
10146
|
+
DealName与DealNames至少应输入一项,两者都传时以DealName为准。
|
|
9561
10147
|
*/
|
|
9562
|
-
|
|
10148
|
+
DealName?: string;
|
|
9563
10149
|
/**
|
|
9564
|
-
*
|
|
10150
|
+
* 计费订单ID列表,可以一次查询若干条订单ID对应资源信息(如果计费还没回调业务发货,可能出现错误码InvalidParameterValue.DealNameNotFound,这种情况需要业务重试DescribeResourcesByDealName接口直到成功)。
|
|
10151
|
+
DealName与DealNames至少应输入一项,两者都传时以DealName为准。
|
|
9565
10152
|
*/
|
|
9566
|
-
|
|
10153
|
+
DealNames?: Array<string>;
|
|
9567
10154
|
}
|
|
9568
10155
|
/**
|
|
9569
10156
|
* DescribeLibraDBClusterAccountPrivileges返回参数结构体
|
|
@@ -9673,6 +10260,19 @@ export interface DescribeInstancesRequest {
|
|
|
9673
10260
|
*/
|
|
9674
10261
|
ClusterType?: string;
|
|
9675
10262
|
}
|
|
10263
|
+
/**
|
|
10264
|
+
* CopyBackupToVault请求参数结构体
|
|
10265
|
+
*/
|
|
10266
|
+
export interface CopyBackupToVaultRequest {
|
|
10267
|
+
/**
|
|
10268
|
+
* 目标保险箱ID,备份文件将复制到此保险箱
|
|
10269
|
+
*/
|
|
10270
|
+
VaultId?: string;
|
|
10271
|
+
/**
|
|
10272
|
+
* 备份文件ID列表,支持批量复制多个备份文件
|
|
10273
|
+
*/
|
|
10274
|
+
BackupIds?: Array<number | bigint>;
|
|
10275
|
+
}
|
|
9676
10276
|
/**
|
|
9677
10277
|
* CloseClusterPasswordComplexity返回参数结构体
|
|
9678
10278
|
*/
|
|
@@ -9804,6 +10404,23 @@ export interface PauseServerlessRequest {
|
|
|
9804
10404
|
*/
|
|
9805
10405
|
ForcePause?: number;
|
|
9806
10406
|
}
|
|
10407
|
+
/**
|
|
10408
|
+
* DescribeBinlogListByVault返回参数结构体
|
|
10409
|
+
*/
|
|
10410
|
+
export interface DescribeBinlogListByVaultResponse {
|
|
10411
|
+
/**
|
|
10412
|
+
* 总数量
|
|
10413
|
+
*/
|
|
10414
|
+
TotalCount?: number;
|
|
10415
|
+
/**
|
|
10416
|
+
* Binlog文件列表
|
|
10417
|
+
*/
|
|
10418
|
+
BinlogList?: Array<DescribeBinlogListByVaultItem>;
|
|
10419
|
+
/**
|
|
10420
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10421
|
+
*/
|
|
10422
|
+
RequestId?: string;
|
|
10423
|
+
}
|
|
9807
10424
|
/**
|
|
9808
10425
|
* 集群信息
|
|
9809
10426
|
*/
|
|
@@ -10084,6 +10701,23 @@ export interface DeleteLibraDBClusterAccountsResponse {
|
|
|
10084
10701
|
*/
|
|
10085
10702
|
RequestId?: string;
|
|
10086
10703
|
}
|
|
10704
|
+
/**
|
|
10705
|
+
* DescribeSSLStatus返回参数结构体
|
|
10706
|
+
*/
|
|
10707
|
+
export interface DescribeSSLStatusResponse {
|
|
10708
|
+
/**
|
|
10709
|
+
* yes-开启,no-关闭
|
|
10710
|
+
*/
|
|
10711
|
+
IsOpenSSL?: string;
|
|
10712
|
+
/**
|
|
10713
|
+
* 证书下载地址
|
|
10714
|
+
*/
|
|
10715
|
+
DownloadUrl?: string;
|
|
10716
|
+
/**
|
|
10717
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10718
|
+
*/
|
|
10719
|
+
RequestId?: string;
|
|
10720
|
+
}
|
|
10087
10721
|
/**
|
|
10088
10722
|
* ModifyClusterGlobalEncryption请求参数结构体
|
|
10089
10723
|
*/
|
|
@@ -10456,17 +11090,33 @@ export interface CreateAuditLogFileRequest {
|
|
|
10456
11090
|
ColumnFilter?: Array<string>;
|
|
10457
11091
|
}
|
|
10458
11092
|
/**
|
|
10459
|
-
*
|
|
11093
|
+
* CalculateBackupSaveSecExpires返回参数结构体
|
|
10460
11094
|
*/
|
|
10461
|
-
export interface
|
|
11095
|
+
export interface CalculateBackupSaveSecExpiresResponse {
|
|
10462
11096
|
/**
|
|
10463
|
-
*
|
|
11097
|
+
* 将被删除的备份文件总数
|
|
10464
11098
|
*/
|
|
10465
|
-
|
|
11099
|
+
WillDeleteBackupFileCount?: number;
|
|
10466
11100
|
/**
|
|
10467
|
-
*
|
|
11101
|
+
* 将被删除的备份文件列表
|
|
10468
11102
|
*/
|
|
10469
|
-
|
|
11103
|
+
WillDeleteBackupFiles?: Array<WillDeleteItem>;
|
|
11104
|
+
/**
|
|
11105
|
+
* 将被删除的Binlog文件总数
|
|
11106
|
+
*/
|
|
11107
|
+
WillDeleteBinlogFileCount?: number;
|
|
11108
|
+
/**
|
|
11109
|
+
* 将被删除的Binlog文件列表
|
|
11110
|
+
*/
|
|
11111
|
+
WillDeleteBinlogFiles?: Array<WillDeleteItem>;
|
|
11112
|
+
/**
|
|
11113
|
+
* 将被删除的Redolog文件总数
|
|
11114
|
+
*/
|
|
11115
|
+
WillDeleteRedoLogFileCount?: number;
|
|
11116
|
+
/**
|
|
11117
|
+
* 将被删除的Redolog文件列表
|
|
11118
|
+
*/
|
|
11119
|
+
WillDeleteRedoLogFiles?: Array<WillDeleteItem>;
|
|
10470
11120
|
/**
|
|
10471
11121
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10472
11122
|
*/
|
|
@@ -11087,125 +11737,17 @@ export interface ModifyResourcePackageClustersResponse {
|
|
|
11087
11737
|
RequestId?: string;
|
|
11088
11738
|
}
|
|
11089
11739
|
/**
|
|
11090
|
-
*
|
|
11740
|
+
* 账号,包含accountName和host
|
|
11091
11741
|
*/
|
|
11092
|
-
export interface
|
|
11093
|
-
/**
|
|
11094
|
-
* 集群id
|
|
11095
|
-
*/
|
|
11096
|
-
ClusterId?: string;
|
|
11097
|
-
/**
|
|
11098
|
-
* 集群名称
|
|
11099
|
-
*/
|
|
11100
|
-
ClusterName?: string;
|
|
11101
|
-
/**
|
|
11102
|
-
* 地域
|
|
11103
|
-
*/
|
|
11104
|
-
Region?: string;
|
|
11105
|
-
/**
|
|
11106
|
-
* 状态
|
|
11107
|
-
*/
|
|
11108
|
-
Status?: string;
|
|
11109
|
-
/**
|
|
11110
|
-
* 状态描述
|
|
11111
|
-
*/
|
|
11112
|
-
StatusDesc?: string;
|
|
11113
|
-
/**
|
|
11114
|
-
* 存储大小
|
|
11115
|
-
*/
|
|
11116
|
-
Storage?: number;
|
|
11117
|
-
/**
|
|
11118
|
-
* VPC名称
|
|
11119
|
-
*/
|
|
11120
|
-
VpcName?: string;
|
|
11121
|
-
/**
|
|
11122
|
-
* vpc唯一id
|
|
11123
|
-
*/
|
|
11124
|
-
VpcId?: string;
|
|
11125
|
-
/**
|
|
11126
|
-
* 子网名称
|
|
11127
|
-
*/
|
|
11128
|
-
SubnetName?: string;
|
|
11129
|
-
/**
|
|
11130
|
-
* 子网ID
|
|
11131
|
-
*/
|
|
11132
|
-
SubnetId?: string;
|
|
11133
|
-
/**
|
|
11134
|
-
* 创建时间
|
|
11135
|
-
*/
|
|
11136
|
-
CreateTime?: string;
|
|
11137
|
-
/**
|
|
11138
|
-
* 数据库版本
|
|
11139
|
-
*/
|
|
11140
|
-
DbVersion?: string;
|
|
11141
|
-
/**
|
|
11142
|
-
* 使用容量
|
|
11143
|
-
*/
|
|
11144
|
-
UsedStorage?: number;
|
|
11145
|
-
/**
|
|
11146
|
-
* vip地址
|
|
11147
|
-
*/
|
|
11148
|
-
Vip?: string;
|
|
11149
|
-
/**
|
|
11150
|
-
* vport端口
|
|
11151
|
-
*/
|
|
11152
|
-
Vport?: number;
|
|
11153
|
-
/**
|
|
11154
|
-
* 集群只读实例的vip地址和vport端口
|
|
11155
|
-
*/
|
|
11156
|
-
RoAddr?: Array<RoAddr>;
|
|
11157
|
-
/**
|
|
11158
|
-
* cynos版本
|
|
11159
|
-
*/
|
|
11160
|
-
CynosVersion?: string;
|
|
11161
|
-
/**
|
|
11162
|
-
* 是否冻结
|
|
11163
|
-
*/
|
|
11164
|
-
IsFreeze?: string;
|
|
11165
|
-
/**
|
|
11166
|
-
* 任务列表
|
|
11167
|
-
*/
|
|
11168
|
-
Tasks?: Array<ObjectTask>;
|
|
11169
|
-
/**
|
|
11170
|
-
* 主可用区
|
|
11171
|
-
*/
|
|
11172
|
-
MasterZone?: string;
|
|
11173
|
-
/**
|
|
11174
|
-
* 实例集合
|
|
11175
|
-
*/
|
|
11176
|
-
InstanceSet?: Array<InstanceSet>;
|
|
11177
|
-
/**
|
|
11178
|
-
* 付费模式
|
|
11179
|
-
*/
|
|
11180
|
-
PayMode?: number;
|
|
11181
|
-
/**
|
|
11182
|
-
* 到期时间
|
|
11183
|
-
*/
|
|
11184
|
-
PeriodEndTime?: string;
|
|
11185
|
-
/**
|
|
11186
|
-
* 项目id
|
|
11187
|
-
*/
|
|
11188
|
-
ProjectID?: number;
|
|
11189
|
-
/**
|
|
11190
|
-
* 自动续费标识
|
|
11191
|
-
*/
|
|
11192
|
-
RenewFlag?: number;
|
|
11193
|
-
/**
|
|
11194
|
-
* 版本标签
|
|
11195
|
-
*/
|
|
11196
|
-
CynosVersionTag?: string;
|
|
11197
|
-
/**
|
|
11198
|
-
* 不支持添加ro yes-不支持添加ro, no/null/"" 支持添加ro
|
|
11199
|
-
*/
|
|
11200
|
-
NoSupportAddRo?: string;
|
|
11742
|
+
export interface InputAccount {
|
|
11201
11743
|
/**
|
|
11202
|
-
*
|
|
11744
|
+
* 账号
|
|
11203
11745
|
*/
|
|
11204
|
-
|
|
11746
|
+
AccountName: string;
|
|
11205
11747
|
/**
|
|
11206
|
-
*
|
|
11748
|
+
* 主机,默认‘%’
|
|
11207
11749
|
*/
|
|
11208
|
-
|
|
11750
|
+
Host?: string;
|
|
11209
11751
|
}
|
|
11210
11752
|
/**
|
|
11211
11753
|
* DescribeSaveBackupClusters请求参数结构体
|
|
@@ -11297,29 +11839,17 @@ export interface RollBackClusterRequest {
|
|
|
11297
11839
|
VaultId?: string;
|
|
11298
11840
|
}
|
|
11299
11841
|
/**
|
|
11300
|
-
*
|
|
11842
|
+
* ModifyClusterBinlogRedoLogAutoCopyVault返回参数结构体
|
|
11301
11843
|
*/
|
|
11302
|
-
export interface
|
|
11844
|
+
export interface ModifyClusterBinlogRedoLogAutoCopyVaultResponse {
|
|
11303
11845
|
/**
|
|
11304
|
-
*
|
|
11305
|
-
*/
|
|
11306
|
-
ProxyCount?: number;
|
|
11307
|
-
/**
|
|
11308
|
-
* cpu核数
|
|
11309
|
-
*/
|
|
11310
|
-
Cpu?: number;
|
|
11311
|
-
/**
|
|
11312
|
-
* 内存
|
|
11313
|
-
*/
|
|
11314
|
-
Mem?: number;
|
|
11315
|
-
/**
|
|
11316
|
-
* 描述说明
|
|
11846
|
+
* 任务ID
|
|
11317
11847
|
*/
|
|
11318
|
-
|
|
11848
|
+
TaskId?: number;
|
|
11319
11849
|
/**
|
|
11320
|
-
*
|
|
11850
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11321
11851
|
*/
|
|
11322
|
-
|
|
11852
|
+
RequestId?: string;
|
|
11323
11853
|
}
|
|
11324
11854
|
/**
|
|
11325
11855
|
* ModifyClusterName请求参数结构体
|
|
@@ -12210,40 +12740,17 @@ export interface DescribeAuditRuleTemplatesResponse {
|
|
|
12210
12740
|
RequestId?: string;
|
|
12211
12741
|
}
|
|
12212
12742
|
/**
|
|
12213
|
-
*
|
|
12743
|
+
* DeleteClusterDatabase请求参数结构体
|
|
12214
12744
|
*/
|
|
12215
|
-
export interface
|
|
12216
|
-
/**
|
|
12217
|
-
* 是否开启自动逻辑备份
|
|
12218
|
-
*/
|
|
12219
|
-
LogicBackupEnable?: string;
|
|
12220
|
-
/**
|
|
12221
|
-
* 自动逻辑备份开始时间
|
|
12222
|
-
*/
|
|
12223
|
-
LogicBackupTimeBeg?: number;
|
|
12224
|
-
/**
|
|
12225
|
-
* 自动逻辑备份结束时间
|
|
12226
|
-
*/
|
|
12227
|
-
LogicBackupTimeEnd?: number;
|
|
12228
|
-
/**
|
|
12229
|
-
* 自动逻辑备份保留时间
|
|
12230
|
-
单位:秒
|
|
12231
|
-
*/
|
|
12232
|
-
LogicReserveDuration?: number;
|
|
12233
|
-
/**
|
|
12234
|
-
* 是否开启跨地域逻辑备份
|
|
12235
|
-
可选值:ON/OFF
|
|
12236
|
-
*/
|
|
12237
|
-
LogicCrossRegionsEnable?: string;
|
|
12745
|
+
export interface DeleteClusterDatabaseRequest {
|
|
12238
12746
|
/**
|
|
12239
|
-
*
|
|
12240
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
12747
|
+
* 集群ID
|
|
12241
12748
|
*/
|
|
12242
|
-
|
|
12749
|
+
ClusterId: string;
|
|
12243
12750
|
/**
|
|
12244
|
-
*
|
|
12751
|
+
* 数据库名
|
|
12245
12752
|
*/
|
|
12246
|
-
|
|
12753
|
+
DbNames: Array<string>;
|
|
12247
12754
|
}
|
|
12248
12755
|
/**
|
|
12249
12756
|
* proxy节点可用区内个数
|
|
@@ -12318,6 +12825,19 @@ export interface DescribeProjectSecurityGroupsResponse {
|
|
|
12318
12825
|
*/
|
|
12319
12826
|
RequestId?: string;
|
|
12320
12827
|
}
|
|
12828
|
+
/**
|
|
12829
|
+
* DeleteLibraDBCluster返回参数结构体
|
|
12830
|
+
*/
|
|
12831
|
+
export interface DeleteLibraDBClusterResponse {
|
|
12832
|
+
/**
|
|
12833
|
+
* flow id
|
|
12834
|
+
*/
|
|
12835
|
+
FlowId?: number;
|
|
12836
|
+
/**
|
|
12837
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12838
|
+
*/
|
|
12839
|
+
RequestId?: string;
|
|
12840
|
+
}
|
|
12321
12841
|
/**
|
|
12322
12842
|
* 实例参数详细描述
|
|
12323
12843
|
*/
|
|
@@ -12539,40 +13059,89 @@ export interface DescribeBackupListRequest {
|
|
|
12539
13059
|
* 是否跨地域备份
|
|
12540
13060
|
*/
|
|
12541
13061
|
IsCrossRegionsBackup?: string;
|
|
13062
|
+
/**
|
|
13063
|
+
* 需要查询的状态
|
|
13064
|
+
*/
|
|
13065
|
+
BackupStatus?: Array<string>;
|
|
12542
13066
|
}
|
|
12543
13067
|
/**
|
|
12544
13068
|
* 实例初始化配置信息
|
|
12545
13069
|
*/
|
|
12546
13070
|
export interface IntegrateInstanceInfo {
|
|
12547
13071
|
/**
|
|
12548
|
-
* 实例cpu
|
|
13072
|
+
* 实例cpu
|
|
13073
|
+
*/
|
|
13074
|
+
Cpu: number;
|
|
13075
|
+
/**
|
|
13076
|
+
* 实例内存
|
|
13077
|
+
*/
|
|
13078
|
+
Memory: number;
|
|
13079
|
+
/**
|
|
13080
|
+
* 实例类型 rw/ro
|
|
13081
|
+
*/
|
|
13082
|
+
InstanceType: string;
|
|
13083
|
+
/**
|
|
13084
|
+
* 实例个数,范围[1,15]
|
|
13085
|
+
*/
|
|
13086
|
+
InstanceCount: number;
|
|
13087
|
+
/**
|
|
13088
|
+
* 实例机器类型 common-公通用型,exclusive-独享型
|
|
13089
|
+
*/
|
|
13090
|
+
DeviceType?: string;
|
|
13091
|
+
}
|
|
13092
|
+
/**
|
|
13093
|
+
* 转换集群log bin开关
|
|
13094
|
+
*/
|
|
13095
|
+
export interface SwitchClusterLogBin {
|
|
13096
|
+
/**
|
|
13097
|
+
* 状态
|
|
13098
|
+
*/
|
|
13099
|
+
Status?: string;
|
|
13100
|
+
}
|
|
13101
|
+
/**
|
|
13102
|
+
* ModifyVault请求参数结构体
|
|
13103
|
+
*/
|
|
13104
|
+
export interface ModifyVaultRequest {
|
|
13105
|
+
/**
|
|
13106
|
+
* 保险箱ID
|
|
13107
|
+
*/
|
|
13108
|
+
VaultId: string;
|
|
13109
|
+
/**
|
|
13110
|
+
* 保险箱名称,最大255字符
|
|
13111
|
+
*/
|
|
13112
|
+
VaultName?: string;
|
|
13113
|
+
/**
|
|
13114
|
+
* 保险箱描述,最大1024字符
|
|
13115
|
+
*/
|
|
13116
|
+
VaultDescribe?: string;
|
|
13117
|
+
/**
|
|
13118
|
+
* 备份保留时长(秒),范围: (0, 632448000]
|
|
12549
13119
|
*/
|
|
12550
|
-
|
|
13120
|
+
BackupSaveSeconds?: number;
|
|
12551
13121
|
/**
|
|
12552
|
-
*
|
|
13122
|
+
* 加密密钥ID,最大36字符
|
|
12553
13123
|
*/
|
|
12554
|
-
|
|
13124
|
+
KeyId?: string;
|
|
12555
13125
|
/**
|
|
12556
|
-
*
|
|
13126
|
+
* 密钥类型,可选值: cloud、custom
|
|
12557
13127
|
*/
|
|
12558
|
-
|
|
13128
|
+
KeyType?: string;
|
|
12559
13129
|
/**
|
|
12560
|
-
*
|
|
13130
|
+
* 密钥所在地域,最大32字符
|
|
12561
13131
|
*/
|
|
12562
|
-
|
|
13132
|
+
KeyRegion?: string;
|
|
12563
13133
|
/**
|
|
12564
|
-
*
|
|
13134
|
+
* 是否锁定保险箱
|
|
12565
13135
|
*/
|
|
12566
|
-
|
|
12567
|
-
}
|
|
12568
|
-
/**
|
|
12569
|
-
* 转换集群log bin开关
|
|
12570
|
-
*/
|
|
12571
|
-
export interface SwitchClusterLogBin {
|
|
13136
|
+
IsLock?: boolean;
|
|
12572
13137
|
/**
|
|
12573
|
-
*
|
|
13138
|
+
* 锁定到期时间,格式: 2006-01-02 15:04:05,锁定时间距当前最多15天
|
|
12574
13139
|
*/
|
|
12575
|
-
|
|
13140
|
+
LockedTime?: string;
|
|
13141
|
+
/**
|
|
13142
|
+
* 是否加密
|
|
13143
|
+
*/
|
|
13144
|
+
IsEncryption?: boolean;
|
|
12576
13145
|
}
|
|
12577
13146
|
/**
|
|
12578
13147
|
* ExportInstanceErrorLogs返回参数结构体
|
|
@@ -13238,6 +13807,15 @@ export interface LibraDBVersion {
|
|
|
13238
13807
|
*/
|
|
13239
13808
|
HasPermission?: boolean;
|
|
13240
13809
|
}
|
|
13810
|
+
/**
|
|
13811
|
+
* DeleteVaults请求参数结构体
|
|
13812
|
+
*/
|
|
13813
|
+
export interface DeleteVaultsRequest {
|
|
13814
|
+
/**
|
|
13815
|
+
* 待删除的备份保险箱ID列表,不能为空,保险箱内必须已清空所有文件
|
|
13816
|
+
*/
|
|
13817
|
+
VaultIds: Array<string>;
|
|
13818
|
+
}
|
|
13241
13819
|
/**
|
|
13242
13820
|
* 任务进度查询
|
|
13243
13821
|
*/
|
|
@@ -13395,19 +13973,122 @@ export interface RollbackToNewClusterResponse {
|
|
|
13395
13973
|
RequestId?: string;
|
|
13396
13974
|
}
|
|
13397
13975
|
/**
|
|
13398
|
-
*
|
|
13976
|
+
* 集群列表信息
|
|
13399
13977
|
*/
|
|
13400
|
-
export interface
|
|
13978
|
+
export interface LibraDBClusterSet {
|
|
13401
13979
|
/**
|
|
13402
|
-
*
|
|
13403
|
-
DealName与DealNames至少应输入一项,两者都传时以DealName为准。
|
|
13980
|
+
* 用户id
|
|
13404
13981
|
*/
|
|
13405
|
-
|
|
13982
|
+
AppId?: number;
|
|
13406
13983
|
/**
|
|
13407
|
-
*
|
|
13408
|
-
DealName与DealNames至少应输入一项,两者都传时以DealName为准。
|
|
13984
|
+
* 集群ID
|
|
13409
13985
|
*/
|
|
13410
|
-
|
|
13986
|
+
ClusterId?: string;
|
|
13987
|
+
/**
|
|
13988
|
+
* 集群名称
|
|
13989
|
+
*/
|
|
13990
|
+
ClusterName?: string;
|
|
13991
|
+
/**
|
|
13992
|
+
* 创建时间
|
|
13993
|
+
*/
|
|
13994
|
+
CreateTime?: string;
|
|
13995
|
+
/**
|
|
13996
|
+
* cynos版本
|
|
13997
|
+
*/
|
|
13998
|
+
CynosVersion?: string;
|
|
13999
|
+
/**
|
|
14000
|
+
* 版本标签
|
|
14001
|
+
*/
|
|
14002
|
+
CynosVersionTag?: string;
|
|
14003
|
+
/**
|
|
14004
|
+
* 数据库版本
|
|
14005
|
+
*/
|
|
14006
|
+
DbVersion?: string;
|
|
14007
|
+
/**
|
|
14008
|
+
* 实例数量
|
|
14009
|
+
*/
|
|
14010
|
+
InstanceNum?: number;
|
|
14011
|
+
/**
|
|
14012
|
+
* 是否冻结
|
|
14013
|
+
*/
|
|
14014
|
+
IsFreeze?: string;
|
|
14015
|
+
/**
|
|
14016
|
+
* 网络地址
|
|
14017
|
+
*/
|
|
14018
|
+
NetAddrs?: Array<NetAddr>;
|
|
14019
|
+
/**
|
|
14020
|
+
* 付费模式
|
|
14021
|
+
*/
|
|
14022
|
+
PayMode?: number;
|
|
14023
|
+
/**
|
|
14024
|
+
* 到期时间
|
|
14025
|
+
|
|
14026
|
+
*/
|
|
14027
|
+
PeriodEndTime?: string;
|
|
14028
|
+
/**
|
|
14029
|
+
* 项目id
|
|
14030
|
+
*/
|
|
14031
|
+
ProjectID?: number;
|
|
14032
|
+
/**
|
|
14033
|
+
* 地域
|
|
14034
|
+
*/
|
|
14035
|
+
Region?: string;
|
|
14036
|
+
/**
|
|
14037
|
+
* 自动续费标识,1为自动续费,0为到期不续
|
|
14038
|
+
*/
|
|
14039
|
+
RenewFlag?: number;
|
|
14040
|
+
/**
|
|
14041
|
+
* 状态
|
|
14042
|
+
*/
|
|
14043
|
+
Status?: string;
|
|
14044
|
+
/**
|
|
14045
|
+
* 状态描述
|
|
14046
|
+
*/
|
|
14047
|
+
StatusDesc?: string;
|
|
14048
|
+
/**
|
|
14049
|
+
* 存储大小,单位为G
|
|
14050
|
+
*/
|
|
14051
|
+
Storage?: number;
|
|
14052
|
+
/**
|
|
14053
|
+
* 子网ID
|
|
14054
|
+
*/
|
|
14055
|
+
SubnetId?: string;
|
|
14056
|
+
/**
|
|
14057
|
+
* 任务列表
|
|
14058
|
+
*/
|
|
14059
|
+
Tasks?: Array<ObjectTask>;
|
|
14060
|
+
/**
|
|
14061
|
+
* 账户id
|
|
14062
|
+
*/
|
|
14063
|
+
Uin?: string;
|
|
14064
|
+
/**
|
|
14065
|
+
* vip地址
|
|
14066
|
+
*/
|
|
14067
|
+
Vip?: string;
|
|
14068
|
+
/**
|
|
14069
|
+
* vpc唯一id
|
|
14070
|
+
*/
|
|
14071
|
+
VpcId?: string;
|
|
14072
|
+
/**
|
|
14073
|
+
* vport端口
|
|
14074
|
+
*/
|
|
14075
|
+
Vport?: number;
|
|
14076
|
+
/**
|
|
14077
|
+
* 更新时间
|
|
14078
|
+
*/
|
|
14079
|
+
UpdateTime?: string;
|
|
14080
|
+
/**
|
|
14081
|
+
* 主可用区
|
|
14082
|
+
*/
|
|
14083
|
+
MasterZone?: string;
|
|
14084
|
+
/**
|
|
14085
|
+
* 物理可用区
|
|
14086
|
+
*/
|
|
14087
|
+
PhysicalZone?: string;
|
|
14088
|
+
/**
|
|
14089
|
+
* 可用区
|
|
14090
|
+
*/
|
|
14091
|
+
Zone?: string;
|
|
13411
14092
|
}
|
|
13412
14093
|
/**
|
|
13413
14094
|
* DeleteClusterSaveBackup请求参数结构体
|
|
@@ -13619,6 +14300,35 @@ export interface DescribeResourcePackageListRequest {
|
|
|
13619
14300
|
*/
|
|
13620
14301
|
Limit?: number;
|
|
13621
14302
|
}
|
|
14303
|
+
/**
|
|
14304
|
+
* TransferClusterZone请求参数结构体
|
|
14305
|
+
*/
|
|
14306
|
+
export interface TransferClusterZoneRequest {
|
|
14307
|
+
/**
|
|
14308
|
+
* 源集群Id
|
|
14309
|
+
*/
|
|
14310
|
+
ClusterId: string;
|
|
14311
|
+
/**
|
|
14312
|
+
* 目标可用区
|
|
14313
|
+
*/
|
|
14314
|
+
DstZone: string;
|
|
14315
|
+
/**
|
|
14316
|
+
* 跨可用区迁移主从数据延迟校验阈值,单位毫秒(ms)
|
|
14317
|
+
*/
|
|
14318
|
+
MaxLag: number;
|
|
14319
|
+
/**
|
|
14320
|
+
* Immediate:立即执行,InMaintain:时间窗口执行
|
|
14321
|
+
*/
|
|
14322
|
+
TransferType: string;
|
|
14323
|
+
/**
|
|
14324
|
+
* 多可用区备区
|
|
14325
|
+
*/
|
|
14326
|
+
DstSlaveZone?: string;
|
|
14327
|
+
/**
|
|
14328
|
+
* proxy迁移的目标可用区信息
|
|
14329
|
+
*/
|
|
14330
|
+
ProxyZones?: Array<ProxyZone>;
|
|
14331
|
+
}
|
|
13622
14332
|
/**
|
|
13623
14333
|
* CloseSSL返回参数结构体
|
|
13624
14334
|
*/
|
|
@@ -13671,21 +14381,21 @@ export interface OpenClusterPasswordComplexityResponse {
|
|
|
13671
14381
|
RequestId?: string;
|
|
13672
14382
|
}
|
|
13673
14383
|
/**
|
|
13674
|
-
*
|
|
14384
|
+
* DescribeBackupListByVault返回参数结构体
|
|
13675
14385
|
*/
|
|
13676
|
-
export interface
|
|
14386
|
+
export interface DescribeBackupListByVaultResponse {
|
|
13677
14387
|
/**
|
|
13678
|
-
*
|
|
14388
|
+
* 符合条件的备份文件总数
|
|
13679
14389
|
*/
|
|
13680
|
-
|
|
14390
|
+
TotalCount?: number;
|
|
13681
14391
|
/**
|
|
13682
|
-
*
|
|
14392
|
+
* 备份文件列表
|
|
13683
14393
|
*/
|
|
13684
|
-
|
|
14394
|
+
BackupList?: Array<DescribeBackupListByVaultItem>;
|
|
13685
14395
|
/**
|
|
13686
|
-
*
|
|
14396
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13687
14397
|
*/
|
|
13688
|
-
|
|
14398
|
+
RequestId?: string;
|
|
13689
14399
|
}
|
|
13690
14400
|
/**
|
|
13691
14401
|
* DescribeAuditRuleTemplates请求参数结构体
|
|
@@ -14035,6 +14745,42 @@ export interface ClusterParamModifyLog {
|
|
|
14035
14745
|
*/
|
|
14036
14746
|
InstanceId?: string;
|
|
14037
14747
|
}
|
|
14748
|
+
/**
|
|
14749
|
+
* 逻辑备份配置信息
|
|
14750
|
+
*/
|
|
14751
|
+
export interface LogicBackupConfigInfo {
|
|
14752
|
+
/**
|
|
14753
|
+
* 是否开启自动逻辑备份
|
|
14754
|
+
*/
|
|
14755
|
+
LogicBackupEnable?: string;
|
|
14756
|
+
/**
|
|
14757
|
+
* 自动逻辑备份开始时间
|
|
14758
|
+
*/
|
|
14759
|
+
LogicBackupTimeBeg?: number;
|
|
14760
|
+
/**
|
|
14761
|
+
* 自动逻辑备份结束时间
|
|
14762
|
+
*/
|
|
14763
|
+
LogicBackupTimeEnd?: number;
|
|
14764
|
+
/**
|
|
14765
|
+
* 自动逻辑备份保留时间
|
|
14766
|
+
单位:秒
|
|
14767
|
+
*/
|
|
14768
|
+
LogicReserveDuration?: number;
|
|
14769
|
+
/**
|
|
14770
|
+
* 是否开启跨地域逻辑备份
|
|
14771
|
+
可选值:ON/OFF
|
|
14772
|
+
*/
|
|
14773
|
+
LogicCrossRegionsEnable?: string;
|
|
14774
|
+
/**
|
|
14775
|
+
* 逻辑备份所跨地域
|
|
14776
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14777
|
+
*/
|
|
14778
|
+
LogicCrossRegions?: Array<string>;
|
|
14779
|
+
/**
|
|
14780
|
+
* 备份投递关系
|
|
14781
|
+
*/
|
|
14782
|
+
AutoCopyVaults?: Array<CreateBackupVaultItem>;
|
|
14783
|
+
}
|
|
14038
14784
|
/**
|
|
14039
14785
|
* 实例组信息
|
|
14040
14786
|
*/
|
|
@@ -14283,6 +15029,19 @@ export interface ErrorLogItemExport {
|
|
|
14283
15029
|
*/
|
|
14284
15030
|
Content?: string;
|
|
14285
15031
|
}
|
|
15032
|
+
/**
|
|
15033
|
+
* 删除保险箱任务信息
|
|
15034
|
+
*/
|
|
15035
|
+
export interface DeleteVaultTask {
|
|
15036
|
+
/**
|
|
15037
|
+
* 保险箱ID
|
|
15038
|
+
*/
|
|
15039
|
+
VaultId?: string;
|
|
15040
|
+
/**
|
|
15041
|
+
* 任务ID
|
|
15042
|
+
*/
|
|
15043
|
+
TaskId?: number;
|
|
15044
|
+
}
|
|
14286
15045
|
/**
|
|
14287
15046
|
* DescribeParamTemplateDetail返回参数结构体
|
|
14288
15047
|
*/
|
|
@@ -14364,6 +15123,51 @@ export interface ClusterReadOnlyValue {
|
|
|
14364
15123
|
*/
|
|
14365
15124
|
ReadOnlyValue?: string;
|
|
14366
15125
|
}
|
|
15126
|
+
/**
|
|
15127
|
+
* DescribeBackupListByVault请求参数结构体
|
|
15128
|
+
*/
|
|
15129
|
+
export interface DescribeBackupListByVaultRequest {
|
|
15130
|
+
/**
|
|
15131
|
+
* 保险箱ID,长度必须大于0
|
|
15132
|
+
*/
|
|
15133
|
+
VaultId: string;
|
|
15134
|
+
/**
|
|
15135
|
+
* 备份文件ID列表,用于筛选特定备份
|
|
15136
|
+
*/
|
|
15137
|
+
BackupIds?: Array<number | bigint>;
|
|
15138
|
+
/**
|
|
15139
|
+
* 集群ID,用于筛选特定集群的备份
|
|
15140
|
+
*/
|
|
15141
|
+
ClusterId?: string;
|
|
15142
|
+
/**
|
|
15143
|
+
* 备份名称列表,用于精确匹配筛选
|
|
15144
|
+
*/
|
|
15145
|
+
BackupNames?: Array<string>;
|
|
15146
|
+
/**
|
|
15147
|
+
* 文件名称列表,用于精确匹配筛选
|
|
15148
|
+
*/
|
|
15149
|
+
FileNames?: Array<string>;
|
|
15150
|
+
/**
|
|
15151
|
+
* 分页数量,取值范围:(0, 100],默认100
|
|
15152
|
+
*/
|
|
15153
|
+
Limit?: number;
|
|
15154
|
+
/**
|
|
15155
|
+
* 分页偏移量,取值范围:[0, INF),默认0
|
|
15156
|
+
*/
|
|
15157
|
+
Offset?: number;
|
|
15158
|
+
/**
|
|
15159
|
+
* 排序字段,可选值:VaultId, VaultName, BackupSaveSeconds, LockedTime, CreateTime, UpdateTime,默认createTime
|
|
15160
|
+
*/
|
|
15161
|
+
OrderBy?: string;
|
|
15162
|
+
/**
|
|
15163
|
+
* 排序方式,可选值:desc, asc, DESC, ASC,默认desc
|
|
15164
|
+
*/
|
|
15165
|
+
OrderByType?: string;
|
|
15166
|
+
/**
|
|
15167
|
+
* 状态
|
|
15168
|
+
*/
|
|
15169
|
+
Status?: string;
|
|
15170
|
+
}
|
|
14367
15171
|
/**
|
|
14368
15172
|
* 可用区库存信息
|
|
14369
15173
|
*/
|