tencentcloud-sdk-nodejs-cynosdb 4.0.605 → 4.0.607
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/CHANGELOG.md +337 -0
- package/SERVICE_CHANGELOG.md +312 -108
- package/package.json +1 -1
- package/products.md +30 -30
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +772 -479
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +1407 -234
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +249 -153
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +372 -228
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +1189 -193
@@ -50,6 +50,19 @@ export interface InquirePriceRenewRequest {
|
|
50
50
|
*/
|
51
51
|
TimeUnit: string;
|
52
52
|
}
|
53
|
+
/**
|
54
|
+
* DescribeAccountPrivileges返回参数结构体
|
55
|
+
*/
|
56
|
+
export interface DescribeAccountPrivilegesResponse {
|
57
|
+
/**
|
58
|
+
* 权限列表,示例值为:["select","update","delete","create","drop","references","index","alter","show_db","create_tmp_table","lock_tables","execute","create_view","show_view","create_routine","alter_routine","event","trigger"]
|
59
|
+
*/
|
60
|
+
Privileges: Array<string>;
|
61
|
+
/**
|
62
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
63
|
+
*/
|
64
|
+
RequestId?: string;
|
65
|
+
}
|
53
66
|
/**
|
54
67
|
* 实例的审计规则详情,DescribeAuditRuleWithInstanceIds接口的出参。
|
55
68
|
*/
|
@@ -231,6 +244,19 @@ export interface BillingResourceInfo {
|
|
231
244
|
*/
|
232
245
|
DealName: string;
|
233
246
|
}
|
247
|
+
/**
|
248
|
+
* ModifyClusterPasswordComplexity返回参数结构体
|
249
|
+
*/
|
250
|
+
export interface ModifyClusterPasswordComplexityResponse {
|
251
|
+
/**
|
252
|
+
* 任务流ID
|
253
|
+
*/
|
254
|
+
FlowId: number;
|
255
|
+
/**
|
256
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
257
|
+
*/
|
258
|
+
RequestId?: string;
|
259
|
+
}
|
234
260
|
/**
|
235
261
|
* ModifyBackupName返回参数结构体
|
236
262
|
*/
|
@@ -329,22 +355,13 @@ export interface SwitchClusterZoneResponse {
|
|
329
355
|
RequestId?: string;
|
330
356
|
}
|
331
357
|
/**
|
332
|
-
*
|
358
|
+
* DescribeClusterPasswordComplexity请求参数结构体
|
333
359
|
*/
|
334
|
-
export interface
|
335
|
-
/**
|
336
|
-
* 参数名
|
337
|
-
*/
|
338
|
-
ParamName: string;
|
360
|
+
export interface DescribeClusterPasswordComplexityRequest {
|
339
361
|
/**
|
340
|
-
*
|
362
|
+
* 集群ID
|
341
363
|
*/
|
342
|
-
|
343
|
-
/**
|
344
|
-
* 参数旧值(只在出参时有用)
|
345
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
346
|
-
*/
|
347
|
-
OldValue?: string;
|
364
|
+
ClusterId: string;
|
348
365
|
}
|
349
366
|
/**
|
350
367
|
* AssociateSecurityGroups请求参数结构体
|
@@ -398,6 +415,28 @@ export interface ModifyInstanceNameRequest {
|
|
398
415
|
*/
|
399
416
|
InstanceName: string;
|
400
417
|
}
|
418
|
+
/**
|
419
|
+
* ModifyClusterDatabase返回参数结构体
|
420
|
+
*/
|
421
|
+
export interface ModifyClusterDatabaseResponse {
|
422
|
+
/**
|
423
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
424
|
+
*/
|
425
|
+
RequestId?: string;
|
426
|
+
}
|
427
|
+
/**
|
428
|
+
* UpgradeClusterVersion返回参数结构体
|
429
|
+
*/
|
430
|
+
export interface UpgradeClusterVersionResponse {
|
431
|
+
/**
|
432
|
+
* 异步任务id
|
433
|
+
*/
|
434
|
+
FlowId: number;
|
435
|
+
/**
|
436
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
437
|
+
*/
|
438
|
+
RequestId?: string;
|
439
|
+
}
|
401
440
|
/**
|
402
441
|
* DescribeDBSecurityGroups返回参数结构体
|
403
442
|
*/
|
@@ -412,13 +451,17 @@ export interface DescribeDBSecurityGroupsResponse {
|
|
412
451
|
RequestId?: string;
|
413
452
|
}
|
414
453
|
/**
|
415
|
-
*
|
454
|
+
* CloseWan返回参数结构体
|
416
455
|
*/
|
417
|
-
export interface
|
456
|
+
export interface CloseWanResponse {
|
418
457
|
/**
|
419
|
-
*
|
458
|
+
* 任务流ID
|
420
459
|
*/
|
421
|
-
|
460
|
+
FlowId: number;
|
461
|
+
/**
|
462
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
463
|
+
*/
|
464
|
+
RequestId?: string;
|
422
465
|
}
|
423
466
|
/**
|
424
467
|
* 账号参数
|
@@ -451,6 +494,15 @@ export interface DescribeBinlogsResponse {
|
|
451
494
|
*/
|
452
495
|
RequestId?: string;
|
453
496
|
}
|
497
|
+
/**
|
498
|
+
* DeleteParamTemplate返回参数结构体
|
499
|
+
*/
|
500
|
+
export interface DeleteParamTemplateResponse {
|
501
|
+
/**
|
502
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
503
|
+
*/
|
504
|
+
RequestId?: string;
|
505
|
+
}
|
454
506
|
/**
|
455
507
|
* DescribeInstances返回参数结构体
|
456
508
|
*/
|
@@ -564,6 +616,55 @@ export interface ModifyClusterNameResponse {
|
|
564
616
|
*/
|
565
617
|
RequestId?: string;
|
566
618
|
}
|
619
|
+
/**
|
620
|
+
* 实例慢查询信息
|
621
|
+
*/
|
622
|
+
export interface SlowQueriesItem {
|
623
|
+
/**
|
624
|
+
* 执行时间戳
|
625
|
+
*/
|
626
|
+
Timestamp: number;
|
627
|
+
/**
|
628
|
+
* 执行时长,单位秒
|
629
|
+
*/
|
630
|
+
QueryTime: number;
|
631
|
+
/**
|
632
|
+
* sql语句
|
633
|
+
*/
|
634
|
+
SqlText: string;
|
635
|
+
/**
|
636
|
+
* 客户端host
|
637
|
+
*/
|
638
|
+
UserHost: string;
|
639
|
+
/**
|
640
|
+
* 用户名
|
641
|
+
*/
|
642
|
+
UserName: string;
|
643
|
+
/**
|
644
|
+
* 数据库名
|
645
|
+
*/
|
646
|
+
Database: string;
|
647
|
+
/**
|
648
|
+
* 锁时长,单位秒
|
649
|
+
*/
|
650
|
+
LockTime: number;
|
651
|
+
/**
|
652
|
+
* 扫描行数
|
653
|
+
*/
|
654
|
+
RowsExamined: number;
|
655
|
+
/**
|
656
|
+
* 返回行数
|
657
|
+
*/
|
658
|
+
RowsSent: number;
|
659
|
+
/**
|
660
|
+
* sql模版
|
661
|
+
*/
|
662
|
+
SqlTemplate: string;
|
663
|
+
/**
|
664
|
+
* sql语句md5
|
665
|
+
*/
|
666
|
+
SqlMd5: string;
|
667
|
+
}
|
567
668
|
/**
|
568
669
|
* DescribeClusterParams返回参数结构体
|
569
670
|
*/
|
@@ -582,6 +683,15 @@ export interface DescribeClusterParamsResponse {
|
|
582
683
|
*/
|
583
684
|
RequestId?: string;
|
584
685
|
}
|
686
|
+
/**
|
687
|
+
* CloseWan请求参数结构体
|
688
|
+
*/
|
689
|
+
export interface CloseWanRequest {
|
690
|
+
/**
|
691
|
+
* 实例组id
|
692
|
+
*/
|
693
|
+
InstanceGrpId: string;
|
694
|
+
}
|
585
695
|
/**
|
586
696
|
* IsolateInstance返回参数结构体
|
587
697
|
*/
|
@@ -706,6 +816,32 @@ export interface DescribeParamTemplatesRequest {
|
|
706
816
|
*/
|
707
817
|
OrderDirection?: string;
|
708
818
|
}
|
819
|
+
/**
|
820
|
+
* CopyClusterPasswordComplexity返回参数结构体
|
821
|
+
*/
|
822
|
+
export interface CopyClusterPasswordComplexityResponse {
|
823
|
+
/**
|
824
|
+
* 任务流ID
|
825
|
+
*/
|
826
|
+
FlowId: number;
|
827
|
+
/**
|
828
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
829
|
+
*/
|
830
|
+
RequestId?: string;
|
831
|
+
}
|
832
|
+
/**
|
833
|
+
* 集群绑定的标签信息,包含标签键TagKey和标签值TagValue
|
834
|
+
*/
|
835
|
+
export interface Tag {
|
836
|
+
/**
|
837
|
+
* 标签键
|
838
|
+
*/
|
839
|
+
TagKey: string;
|
840
|
+
/**
|
841
|
+
* 标签值
|
842
|
+
*/
|
843
|
+
TagValue: string;
|
844
|
+
}
|
709
845
|
/**
|
710
846
|
* DescribeAuditLogs返回参数结构体
|
711
847
|
*/
|
@@ -724,6 +860,23 @@ export interface DescribeAuditLogsResponse {
|
|
724
860
|
*/
|
725
861
|
RequestId?: string;
|
726
862
|
}
|
863
|
+
/**
|
864
|
+
* DescribeInstanceParams请求参数结构体
|
865
|
+
*/
|
866
|
+
export interface DescribeInstanceParamsRequest {
|
867
|
+
/**
|
868
|
+
* 集群ID
|
869
|
+
*/
|
870
|
+
ClusterId: string;
|
871
|
+
/**
|
872
|
+
* 实例ID,支持批量查询
|
873
|
+
*/
|
874
|
+
InstanceIds: Array<string>;
|
875
|
+
/**
|
876
|
+
* 参数名搜索条件,支持模糊匹配
|
877
|
+
*/
|
878
|
+
ParamKeyword?: string;
|
879
|
+
}
|
727
880
|
/**
|
728
881
|
* SearchClusterTables请求参数结构体
|
729
882
|
*/
|
@@ -749,22 +902,35 @@ export interface SearchClusterTablesRequest {
|
|
749
902
|
TableType?: string;
|
750
903
|
}
|
751
904
|
/**
|
752
|
-
*
|
905
|
+
* DeleteParamTemplate请求参数结构体
|
753
906
|
*/
|
754
|
-
export interface
|
907
|
+
export interface DeleteParamTemplateRequest {
|
908
|
+
/**
|
909
|
+
* 参数模版ID
|
910
|
+
*/
|
911
|
+
TemplateId: number;
|
912
|
+
}
|
913
|
+
/**
|
914
|
+
* DescribeClusterDetailDatabases请求参数结构体
|
915
|
+
*/
|
916
|
+
export interface DescribeClusterDetailDatabasesRequest {
|
755
917
|
/**
|
756
918
|
* 集群ID
|
757
919
|
*/
|
758
920
|
ClusterId: string;
|
759
921
|
/**
|
760
|
-
*
|
922
|
+
* 偏移量,默认0
|
761
923
|
*/
|
762
|
-
|
924
|
+
Offset?: number;
|
925
|
+
/**
|
926
|
+
* 返回数量,默认20,最大100
|
927
|
+
*/
|
928
|
+
Limit?: number;
|
929
|
+
/**
|
930
|
+
* 数据库名称
|
931
|
+
*/
|
932
|
+
DbName?: string;
|
763
933
|
}
|
764
|
-
/**
|
765
|
-
* 参数是否可修改的详细信息
|
766
|
-
*/
|
767
|
-
export declare type ModifiableInfo = null;
|
768
934
|
/**
|
769
935
|
* DescribeFlow返回参数结构体
|
770
936
|
*/
|
@@ -892,6 +1058,33 @@ export interface SetRenewFlagRequest {
|
|
892
1058
|
*/
|
893
1059
|
AutoRenewFlag: number;
|
894
1060
|
}
|
1061
|
+
/**
|
1062
|
+
* OfflineCluster请求参数结构体
|
1063
|
+
*/
|
1064
|
+
export interface OfflineClusterRequest {
|
1065
|
+
/**
|
1066
|
+
* 集群ID
|
1067
|
+
*/
|
1068
|
+
ClusterId: string;
|
1069
|
+
}
|
1070
|
+
/**
|
1071
|
+
* DescribeClusterDetailDatabases返回参数结构体
|
1072
|
+
*/
|
1073
|
+
export interface DescribeClusterDetailDatabasesResponse {
|
1074
|
+
/**
|
1075
|
+
* 数据库信息
|
1076
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1077
|
+
*/
|
1078
|
+
DbInfos: Array<DbInfo>;
|
1079
|
+
/**
|
1080
|
+
* 总数
|
1081
|
+
*/
|
1082
|
+
TotalCount: number;
|
1083
|
+
/**
|
1084
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1085
|
+
*/
|
1086
|
+
RequestId?: string;
|
1087
|
+
}
|
895
1088
|
/**
|
896
1089
|
* 实例组信息
|
897
1090
|
*/
|
@@ -985,53 +1178,17 @@ export interface CynosdbInstanceGrp {
|
|
985
1178
|
NetServiceId: number;
|
986
1179
|
}
|
987
1180
|
/**
|
988
|
-
*
|
1181
|
+
* CreateParamTemplate返回参数结构体
|
989
1182
|
*/
|
990
|
-
export interface
|
991
|
-
/**
|
992
|
-
* 执行时间戳
|
993
|
-
*/
|
994
|
-
Timestamp: number;
|
995
|
-
/**
|
996
|
-
* 执行时长,单位秒
|
997
|
-
*/
|
998
|
-
QueryTime: number;
|
999
|
-
/**
|
1000
|
-
* sql语句
|
1001
|
-
*/
|
1002
|
-
SqlText: string;
|
1003
|
-
/**
|
1004
|
-
* 客户端host
|
1005
|
-
*/
|
1006
|
-
UserHost: string;
|
1183
|
+
export interface CreateParamTemplateResponse {
|
1007
1184
|
/**
|
1008
|
-
*
|
1009
|
-
*/
|
1010
|
-
UserName: string;
|
1011
|
-
/**
|
1012
|
-
* 数据库名
|
1013
|
-
*/
|
1014
|
-
Database: string;
|
1015
|
-
/**
|
1016
|
-
* 锁时长,单位秒
|
1017
|
-
*/
|
1018
|
-
LockTime: number;
|
1019
|
-
/**
|
1020
|
-
* 扫描行数
|
1021
|
-
*/
|
1022
|
-
RowsExamined: number;
|
1023
|
-
/**
|
1024
|
-
* 返回行数
|
1025
|
-
*/
|
1026
|
-
RowsSent: number;
|
1027
|
-
/**
|
1028
|
-
* sql模版
|
1185
|
+
* 模版ID
|
1029
1186
|
*/
|
1030
|
-
|
1187
|
+
TemplateId: number;
|
1031
1188
|
/**
|
1032
|
-
*
|
1189
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1033
1190
|
*/
|
1034
|
-
|
1191
|
+
RequestId?: string;
|
1035
1192
|
}
|
1036
1193
|
/**
|
1037
1194
|
* ActivateInstance请求参数结构体
|
@@ -1237,17 +1394,13 @@ export interface ModifyClusterStorageResponse {
|
|
1237
1394
|
RequestId?: string;
|
1238
1395
|
}
|
1239
1396
|
/**
|
1240
|
-
*
|
1397
|
+
* CloseClusterPasswordComplexity请求参数结构体
|
1241
1398
|
*/
|
1242
|
-
export interface
|
1399
|
+
export interface CloseClusterPasswordComplexityRequest {
|
1243
1400
|
/**
|
1244
|
-
*
|
1401
|
+
* 集群ID数组
|
1245
1402
|
*/
|
1246
|
-
|
1247
|
-
/**
|
1248
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1249
|
-
*/
|
1250
|
-
RequestId?: string;
|
1403
|
+
ClusterIds: Array<string>;
|
1251
1404
|
}
|
1252
1405
|
/**
|
1253
1406
|
* ModifyDBInstanceSecurityGroups返回参数结构体
|
@@ -1429,11 +1582,24 @@ export interface SwitchClusterZoneRequest {
|
|
1429
1582
|
IsInMaintainPeriod?: string;
|
1430
1583
|
}
|
1431
1584
|
/**
|
1432
|
-
*
|
1585
|
+
* 实例参数信息
|
1433
1586
|
*/
|
1434
|
-
export interface
|
1587
|
+
export interface InstanceParamItem {
|
1435
1588
|
/**
|
1436
|
-
* 实例
|
1589
|
+
* 实例ID
|
1590
|
+
*/
|
1591
|
+
InstanceId: string;
|
1592
|
+
/**
|
1593
|
+
* 实例参数列表
|
1594
|
+
*/
|
1595
|
+
ParamsItems: Array<ParamItemDetail>;
|
1596
|
+
}
|
1597
|
+
/**
|
1598
|
+
* DescribeInstanceDetail请求参数结构体
|
1599
|
+
*/
|
1600
|
+
export interface DescribeInstanceDetailRequest {
|
1601
|
+
/**
|
1602
|
+
* 实例ID
|
1437
1603
|
*/
|
1438
1604
|
InstanceId: string;
|
1439
1605
|
}
|
@@ -1523,17 +1689,13 @@ export interface UpgradeInstanceRequest {
|
|
1523
1689
|
UpgradeMode?: string;
|
1524
1690
|
}
|
1525
1691
|
/**
|
1526
|
-
*
|
1692
|
+
* ModifyMaintainPeriodConfig返回参数结构体
|
1527
1693
|
*/
|
1528
|
-
export interface
|
1529
|
-
/**
|
1530
|
-
* 数据库名称
|
1531
|
-
*/
|
1532
|
-
Database: string;
|
1694
|
+
export interface ModifyMaintainPeriodConfigResponse {
|
1533
1695
|
/**
|
1534
|
-
*
|
1696
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1535
1697
|
*/
|
1536
|
-
|
1698
|
+
RequestId?: string;
|
1537
1699
|
}
|
1538
1700
|
/**
|
1539
1701
|
* IsolateInstance请求参数结构体
|
@@ -1584,17 +1746,29 @@ export interface DeleteBackupResponse {
|
|
1584
1746
|
RequestId?: string;
|
1585
1747
|
}
|
1586
1748
|
/**
|
1587
|
-
*
|
1749
|
+
* ModifyInstanceParam请求参数结构体
|
1588
1750
|
*/
|
1589
|
-
export interface
|
1751
|
+
export interface ModifyInstanceParamRequest {
|
1590
1752
|
/**
|
1591
|
-
*
|
1753
|
+
* 集群ID
|
1592
1754
|
*/
|
1593
|
-
|
1755
|
+
ClusterId: string;
|
1594
1756
|
/**
|
1595
|
-
*
|
1757
|
+
* 实例ID
|
1596
1758
|
*/
|
1597
|
-
|
1759
|
+
InstanceIds?: Array<string>;
|
1760
|
+
/**
|
1761
|
+
* 集群参数列表
|
1762
|
+
*/
|
1763
|
+
ClusterParamList?: Array<ModifyParamItem>;
|
1764
|
+
/**
|
1765
|
+
* 实例参数列表
|
1766
|
+
*/
|
1767
|
+
InstanceParamList?: Array<ModifyParamItem>;
|
1768
|
+
/**
|
1769
|
+
* yes:在运维时间窗内修改,no:立即执行(默认值)
|
1770
|
+
*/
|
1771
|
+
IsInMaintainPeriod?: string;
|
1598
1772
|
}
|
1599
1773
|
/**
|
1600
1774
|
* DescribeProjectSecurityGroups返回参数结构体
|
@@ -1639,6 +1813,19 @@ export interface CreateAuditLogFileResponse {
|
|
1639
1813
|
*/
|
1640
1814
|
RequestId?: string;
|
1641
1815
|
}
|
1816
|
+
/**
|
1817
|
+
* OpenWan返回参数结构体
|
1818
|
+
*/
|
1819
|
+
export interface OpenWanResponse {
|
1820
|
+
/**
|
1821
|
+
* 任务流ID
|
1822
|
+
*/
|
1823
|
+
FlowId: number;
|
1824
|
+
/**
|
1825
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1826
|
+
*/
|
1827
|
+
RequestId?: string;
|
1828
|
+
}
|
1642
1829
|
/**
|
1643
1830
|
* PauseServerless返回参数结构体
|
1644
1831
|
*/
|
@@ -1653,13 +1840,95 @@ export interface PauseServerlessResponse {
|
|
1653
1840
|
RequestId?: string;
|
1654
1841
|
}
|
1655
1842
|
/**
|
1656
|
-
*
|
1843
|
+
* 实例参数详细描述
|
1657
1844
|
*/
|
1658
|
-
export interface
|
1845
|
+
export interface ParamDetail {
|
1659
1846
|
/**
|
1660
|
-
*
|
1847
|
+
* 参数名称
|
1661
1848
|
*/
|
1662
|
-
|
1849
|
+
ParamName: string;
|
1850
|
+
/**
|
1851
|
+
* 参数类型:integer,enum,float,string,func
|
1852
|
+
*/
|
1853
|
+
ParamType: string;
|
1854
|
+
/**
|
1855
|
+
* true-支持"func",false-不支持公式
|
1856
|
+
*/
|
1857
|
+
SupportFunc: boolean;
|
1858
|
+
/**
|
1859
|
+
* 默认值
|
1860
|
+
*/
|
1861
|
+
Default: string;
|
1862
|
+
/**
|
1863
|
+
* 参数描述
|
1864
|
+
*/
|
1865
|
+
Description: string;
|
1866
|
+
/**
|
1867
|
+
* 参数当前值
|
1868
|
+
*/
|
1869
|
+
CurrentValue: string;
|
1870
|
+
/**
|
1871
|
+
* 修改参数后,是否需要重启数据库以使参数生效。0-不需要重启,1-需要重启。
|
1872
|
+
*/
|
1873
|
+
NeedReboot: number;
|
1874
|
+
/**
|
1875
|
+
* 参数容许的最大值
|
1876
|
+
*/
|
1877
|
+
Max: string;
|
1878
|
+
/**
|
1879
|
+
* 参数容许的最小值
|
1880
|
+
*/
|
1881
|
+
Min: string;
|
1882
|
+
/**
|
1883
|
+
* 参数的可选枚举值。如果为非枚举值,则为空
|
1884
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1885
|
+
*/
|
1886
|
+
EnumValue: Array<string>;
|
1887
|
+
/**
|
1888
|
+
* 1:全局参数,0:非全局参数
|
1889
|
+
*/
|
1890
|
+
IsGlobal: number;
|
1891
|
+
/**
|
1892
|
+
* 匹配类型,multiVal
|
1893
|
+
*/
|
1894
|
+
MatchType: string;
|
1895
|
+
/**
|
1896
|
+
* 匹配目标值,当multiVal时,各个key用,分割
|
1897
|
+
*/
|
1898
|
+
MatchValue: string;
|
1899
|
+
/**
|
1900
|
+
* true-为公式,false-非公式
|
1901
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1902
|
+
*/
|
1903
|
+
IsFunc: boolean;
|
1904
|
+
/**
|
1905
|
+
* 参数设置为公式时,Func返回设置的公式内容
|
1906
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1907
|
+
*/
|
1908
|
+
Func: string;
|
1909
|
+
/**
|
1910
|
+
* 参数是否可修改
|
1911
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1912
|
+
*/
|
1913
|
+
ModifiableInfo: ModifiableInfo;
|
1914
|
+
}
|
1915
|
+
/**
|
1916
|
+
* DescribeAuditRuleWithInstanceIds返回参数结构体
|
1917
|
+
*/
|
1918
|
+
export interface DescribeAuditRuleWithInstanceIdsResponse {
|
1919
|
+
/**
|
1920
|
+
* 无
|
1921
|
+
*/
|
1922
|
+
TotalCount: number;
|
1923
|
+
/**
|
1924
|
+
* 实例审计规则信息。
|
1925
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1926
|
+
*/
|
1927
|
+
Items: Array<InstanceAuditRule>;
|
1928
|
+
/**
|
1929
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1930
|
+
*/
|
1931
|
+
RequestId?: string;
|
1663
1932
|
}
|
1664
1933
|
/**
|
1665
1934
|
* ResetAccountPassword返回参数结构体
|
@@ -1782,18 +2051,26 @@ export interface DescribeBinlogDownloadUrlResponse {
|
|
1782
2051
|
RequestId?: string;
|
1783
2052
|
}
|
1784
2053
|
/**
|
1785
|
-
*
|
2054
|
+
* ModifyClusterParam请求参数结构体
|
1786
2055
|
*/
|
1787
|
-
export interface
|
2056
|
+
export interface ModifyClusterParamRequest {
|
1788
2057
|
/**
|
1789
|
-
*
|
2058
|
+
* 集群ID
|
1790
2059
|
*/
|
1791
|
-
|
2060
|
+
ClusterId: string;
|
1792
2061
|
/**
|
1793
|
-
|
1794
|
-
|
1795
|
-
|
1796
|
-
|
2062
|
+
* 要修改的参数列表。每一个元素是ParamName、CurrentValue和OldValue的组合。ParamName是参数名称,CurrentValue是当前值,OldValue是之前值且不做校验
|
2063
|
+
*/
|
2064
|
+
ParamList: Array<ParamItem>;
|
2065
|
+
/**
|
2066
|
+
* 维护期间执行-yes,立即执行-no
|
2067
|
+
*/
|
2068
|
+
IsInMaintainPeriod?: string;
|
2069
|
+
}
|
2070
|
+
/**
|
2071
|
+
* DeleteAccounts返回参数结构体
|
2072
|
+
*/
|
2073
|
+
export interface DeleteAccountsResponse {
|
1797
2074
|
/**
|
1798
2075
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1799
2076
|
*/
|
@@ -2135,6 +2412,45 @@ export interface CynosdbInstance {
|
|
2135
2412
|
*/
|
2136
2413
|
InstanceNetInfo?: Array<InstanceNetInfo>;
|
2137
2414
|
}
|
2415
|
+
/**
|
2416
|
+
* DescribeClusterPasswordComplexity返回参数结构体
|
2417
|
+
*/
|
2418
|
+
export interface DescribeClusterPasswordComplexityResponse {
|
2419
|
+
/**
|
2420
|
+
* 数据字典参数
|
2421
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2422
|
+
*/
|
2423
|
+
ValidatePasswordDictionary: ParamInfo;
|
2424
|
+
/**
|
2425
|
+
* 密码长度
|
2426
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2427
|
+
*/
|
2428
|
+
ValidatePasswordLength: ParamInfo;
|
2429
|
+
/**
|
2430
|
+
* 大小写敏感字符个数
|
2431
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2432
|
+
*/
|
2433
|
+
ValidatePasswordMixedCaseCount: ParamInfo;
|
2434
|
+
/**
|
2435
|
+
* 数字个数
|
2436
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2437
|
+
*/
|
2438
|
+
ValidatePasswordNumberCount: ParamInfo;
|
2439
|
+
/**
|
2440
|
+
* 密码等级
|
2441
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2442
|
+
*/
|
2443
|
+
ValidatePasswordPolicy: ParamInfo;
|
2444
|
+
/**
|
2445
|
+
* 特殊字符个数
|
2446
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2447
|
+
*/
|
2448
|
+
ValidatePasswordSpecialCharCount: ParamInfo;
|
2449
|
+
/**
|
2450
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2451
|
+
*/
|
2452
|
+
RequestId?: string;
|
2453
|
+
}
|
2138
2454
|
/**
|
2139
2455
|
* DescribeAuditRuleWithInstanceIds请求参数结构体
|
2140
2456
|
*/
|
@@ -2184,6 +2500,61 @@ export interface ModifyClusterSlaveZoneResponse {
|
|
2184
2500
|
*/
|
2185
2501
|
RequestId?: string;
|
2186
2502
|
}
|
2503
|
+
/**
|
2504
|
+
* 实例参数信息
|
2505
|
+
*/
|
2506
|
+
export interface ParamItemDetail {
|
2507
|
+
/**
|
2508
|
+
* 当前值
|
2509
|
+
*/
|
2510
|
+
CurrentValue: string;
|
2511
|
+
/**
|
2512
|
+
* 默认值
|
2513
|
+
*/
|
2514
|
+
Default: string;
|
2515
|
+
/**
|
2516
|
+
* 参数的可选枚举值。如果为非枚举值,则为空
|
2517
|
+
*/
|
2518
|
+
EnumValue: Array<string>;
|
2519
|
+
/**
|
2520
|
+
* 1:全局参数,0:非全局参数
|
2521
|
+
*/
|
2522
|
+
IsGlobal: number;
|
2523
|
+
/**
|
2524
|
+
* 最大值
|
2525
|
+
*/
|
2526
|
+
Max: string;
|
2527
|
+
/**
|
2528
|
+
* 最小值
|
2529
|
+
*/
|
2530
|
+
Min: string;
|
2531
|
+
/**
|
2532
|
+
* 修改参数后,是否需要重启数据库以使参数生效。0-不需要重启,1-需要重启。
|
2533
|
+
*/
|
2534
|
+
NeedReboot: number;
|
2535
|
+
/**
|
2536
|
+
* 参数名称
|
2537
|
+
*/
|
2538
|
+
ParamName: string;
|
2539
|
+
/**
|
2540
|
+
* 参数类型:integer,enum,float,string,func
|
2541
|
+
*/
|
2542
|
+
ParamType: string;
|
2543
|
+
/**
|
2544
|
+
* 参数描述
|
2545
|
+
*/
|
2546
|
+
Description: string;
|
2547
|
+
/**
|
2548
|
+
* 类型是否为公式
|
2549
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2550
|
+
*/
|
2551
|
+
IsFunc: boolean;
|
2552
|
+
/**
|
2553
|
+
* 参数配置公式
|
2554
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2555
|
+
*/
|
2556
|
+
Func: string;
|
2557
|
+
}
|
2187
2558
|
/**
|
2188
2559
|
* GrantAccountPrivileges请求参数结构体
|
2189
2560
|
*/
|
@@ -2230,6 +2601,24 @@ export interface BinlogItem {
|
|
2230
2601
|
*/
|
2231
2602
|
BinlogId: number;
|
2232
2603
|
}
|
2604
|
+
/**
|
2605
|
+
* 修改的实例参数信息
|
2606
|
+
*/
|
2607
|
+
export interface ModifyParamItem {
|
2608
|
+
/**
|
2609
|
+
* 参数名
|
2610
|
+
*/
|
2611
|
+
ParamName: string;
|
2612
|
+
/**
|
2613
|
+
* 参数当前值
|
2614
|
+
*/
|
2615
|
+
CurrentValue: string;
|
2616
|
+
/**
|
2617
|
+
* 参数旧值(只在出参时有用)
|
2618
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2619
|
+
*/
|
2620
|
+
OldValue?: string;
|
2621
|
+
}
|
2233
2622
|
/**
|
2234
2623
|
* ModifyAuditService请求参数结构体
|
2235
2624
|
*/
|
@@ -2480,17 +2869,42 @@ export interface DescribeClustersResponse {
|
|
2480
2869
|
RequestId?: string;
|
2481
2870
|
}
|
2482
2871
|
/**
|
2483
|
-
*
|
2872
|
+
* OpenAuditService请求参数结构体
|
2484
2873
|
*/
|
2485
|
-
export interface
|
2874
|
+
export interface OpenAuditServiceRequest {
|
2486
2875
|
/**
|
2487
|
-
*
|
2876
|
+
* 实例ID。
|
2488
2877
|
*/
|
2489
|
-
|
2878
|
+
InstanceId: string;
|
2490
2879
|
/**
|
2491
|
-
*
|
2880
|
+
* 日志保留时长。
|
2492
2881
|
*/
|
2493
|
-
|
2882
|
+
LogExpireDay: number;
|
2883
|
+
/**
|
2884
|
+
* 高频日志保留时长。
|
2885
|
+
*/
|
2886
|
+
HighLogExpireDay?: number;
|
2887
|
+
/**
|
2888
|
+
* 审计规则。同RuleTemplateIds都不填是全审计。
|
2889
|
+
*/
|
2890
|
+
AuditRuleFilters?: Array<AuditRuleFilters>;
|
2891
|
+
/**
|
2892
|
+
* 规则模版ID。同AuditRuleFilters都不填是全审计。
|
2893
|
+
*/
|
2894
|
+
RuleTemplateIds?: Array<string>;
|
2895
|
+
}
|
2896
|
+
/**
|
2897
|
+
* 查询过滤器
|
2898
|
+
*/
|
2899
|
+
export interface QueryFilter {
|
2900
|
+
/**
|
2901
|
+
* 搜索字段,目前支持:"InstanceId", "ProjectId", "InstanceName", "Vip"
|
2902
|
+
*/
|
2903
|
+
Names: Array<string>;
|
2904
|
+
/**
|
2905
|
+
* 搜索字符串
|
2906
|
+
*/
|
2907
|
+
Values: Array<string>;
|
2494
2908
|
/**
|
2495
2909
|
* 是否精确匹配
|
2496
2910
|
*/
|
@@ -2536,11 +2950,24 @@ export interface DescribeBackupConfigResponse {
|
|
2536
2950
|
RequestId?: string;
|
2537
2951
|
}
|
2538
2952
|
/**
|
2539
|
-
*
|
2953
|
+
* ModifyBinlogSaveDays请求参数结构体
|
2540
2954
|
*/
|
2541
|
-
export interface
|
2955
|
+
export interface ModifyBinlogSaveDaysRequest {
|
2542
2956
|
/**
|
2543
|
-
*
|
2957
|
+
* 集群ID
|
2958
|
+
*/
|
2959
|
+
ClusterId: string;
|
2960
|
+
/**
|
2961
|
+
* Binlog保留天数
|
2962
|
+
*/
|
2963
|
+
BinlogSaveDays: number;
|
2964
|
+
}
|
2965
|
+
/**
|
2966
|
+
* ResumeServerless返回参数结构体
|
2967
|
+
*/
|
2968
|
+
export interface ResumeServerlessResponse {
|
2969
|
+
/**
|
2970
|
+
* 异步流程ID
|
2544
2971
|
*/
|
2545
2972
|
FlowId: number;
|
2546
2973
|
/**
|
@@ -2634,34 +3061,26 @@ export interface Addr {
|
|
2634
3061
|
Port: number;
|
2635
3062
|
}
|
2636
3063
|
/**
|
2637
|
-
*
|
3064
|
+
* PauseServerless请求参数结构体
|
2638
3065
|
*/
|
2639
|
-
export interface
|
2640
|
-
/**
|
2641
|
-
* 参数模板ID
|
2642
|
-
*/
|
2643
|
-
Id: number;
|
2644
|
-
/**
|
2645
|
-
* 参数模板名称
|
2646
|
-
*/
|
2647
|
-
TemplateName: string;
|
3066
|
+
export interface PauseServerlessRequest {
|
2648
3067
|
/**
|
2649
|
-
*
|
3068
|
+
* 集群ID
|
2650
3069
|
*/
|
2651
|
-
|
3070
|
+
ClusterId: string;
|
2652
3071
|
/**
|
2653
|
-
*
|
3072
|
+
* 是否强制暂停,忽略当前的用户链接 0:不强制 1:强制, 默认为1
|
2654
3073
|
*/
|
2655
|
-
|
3074
|
+
ForcePause?: number;
|
3075
|
+
}
|
3076
|
+
/**
|
3077
|
+
* ModifyParamTemplate返回参数结构体
|
3078
|
+
*/
|
3079
|
+
export interface ModifyParamTemplateResponse {
|
2656
3080
|
/**
|
2657
|
-
*
|
3081
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2658
3082
|
*/
|
2659
|
-
|
2660
|
-
/**
|
2661
|
-
* 参数模板详情
|
2662
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2663
|
-
*/
|
2664
|
-
ParamInfoSet: Array<TemplateParamInfo>;
|
3083
|
+
RequestId?: string;
|
2665
3084
|
}
|
2666
3085
|
/**
|
2667
3086
|
* 参数信息
|
@@ -2800,6 +3219,67 @@ export interface SecurityGroup {
|
|
2800
3219
|
*/
|
2801
3220
|
SecurityGroupRemark: string;
|
2802
3221
|
}
|
3222
|
+
/**
|
3223
|
+
* 数据库详细信息
|
3224
|
+
*/
|
3225
|
+
export interface DbInfo {
|
3226
|
+
/**
|
3227
|
+
* 数据库名称
|
3228
|
+
*/
|
3229
|
+
DbName: string;
|
3230
|
+
/**
|
3231
|
+
* 字符集类型
|
3232
|
+
*/
|
3233
|
+
CharacterSet: string;
|
3234
|
+
/**
|
3235
|
+
* 数据库状态
|
3236
|
+
*/
|
3237
|
+
Status: string;
|
3238
|
+
/**
|
3239
|
+
* 拍讯规则
|
3240
|
+
*/
|
3241
|
+
CollateRule: string;
|
3242
|
+
/**
|
3243
|
+
* 数据库备注
|
3244
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3245
|
+
*/
|
3246
|
+
Description: string;
|
3247
|
+
/**
|
3248
|
+
* 用户权限
|
3249
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3250
|
+
*/
|
3251
|
+
UserHostPrivileges: Array<UserHostPrivilege>;
|
3252
|
+
/**
|
3253
|
+
* 数据库ID
|
3254
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3255
|
+
*/
|
3256
|
+
DbId: number;
|
3257
|
+
/**
|
3258
|
+
* 创建时间
|
3259
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3260
|
+
*/
|
3261
|
+
CreateTime: string;
|
3262
|
+
/**
|
3263
|
+
* 更新时间
|
3264
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3265
|
+
*/
|
3266
|
+
UpdateTime: string;
|
3267
|
+
/**
|
3268
|
+
* 用户appid
|
3269
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3270
|
+
*/
|
3271
|
+
AppId: number;
|
3272
|
+
/**
|
3273
|
+
* 用户Uin
|
3274
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3275
|
+
*/
|
3276
|
+
Uin: string;
|
3277
|
+
/**
|
3278
|
+
* 集群Id
|
3279
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3280
|
+
*/
|
3281
|
+
ClusterId: string;
|
3282
|
+
}
|
2803
3283
|
/**
|
2804
3284
|
* DescribeBackupDownloadUrl请求参数结构体
|
2805
3285
|
*/
|
@@ -2854,29 +3334,119 @@ export interface OfflineInstanceRequest {
|
|
2854
3334
|
InstanceIdList: Array<string>;
|
2855
3335
|
}
|
2856
3336
|
/**
|
2857
|
-
*
|
3337
|
+
* ModifyClusterPasswordComplexity请求参数结构体
|
2858
3338
|
*/
|
2859
|
-
export interface
|
3339
|
+
export interface ModifyClusterPasswordComplexityRequest {
|
2860
3340
|
/**
|
2861
|
-
*
|
3341
|
+
* 集群id
|
2862
3342
|
*/
|
2863
|
-
|
3343
|
+
ClusterId: string;
|
2864
3344
|
/**
|
2865
|
-
*
|
3345
|
+
* 密码长度
|
2866
3346
|
*/
|
2867
|
-
|
3347
|
+
ValidatePasswordLength: number;
|
2868
3348
|
/**
|
2869
|
-
*
|
3349
|
+
* 大小写字符个数
|
2870
3350
|
*/
|
2871
|
-
|
3351
|
+
ValidatePasswordMixedCaseCount: number;
|
2872
3352
|
/**
|
2873
|
-
*
|
3353
|
+
* 特殊字符个数
|
2874
3354
|
*/
|
2875
|
-
|
3355
|
+
ValidatePasswordSpecialCharCount: number;
|
2876
3356
|
/**
|
2877
|
-
*
|
3357
|
+
* 数字个数
|
2878
3358
|
*/
|
2879
|
-
|
3359
|
+
ValidatePasswordNumberCount: number;
|
3360
|
+
/**
|
3361
|
+
* 密码强度("MEDIUM", "STRONG")
|
3362
|
+
*/
|
3363
|
+
ValidatePasswordPolicy: string;
|
3364
|
+
/**
|
3365
|
+
* 数据字典
|
3366
|
+
*/
|
3367
|
+
ValidatePasswordDictionary?: Array<string>;
|
3368
|
+
}
|
3369
|
+
/**
|
3370
|
+
* RevokeAccountPrivileges请求参数结构体
|
3371
|
+
*/
|
3372
|
+
export interface RevokeAccountPrivilegesRequest {
|
3373
|
+
/**
|
3374
|
+
* 集群id
|
3375
|
+
*/
|
3376
|
+
ClusterId: string;
|
3377
|
+
/**
|
3378
|
+
* 账号信息
|
3379
|
+
*/
|
3380
|
+
Account: InputAccount;
|
3381
|
+
/**
|
3382
|
+
* 数据库表权限数组
|
3383
|
+
*/
|
3384
|
+
DbTablePrivileges: Array<string>;
|
3385
|
+
/**
|
3386
|
+
* 数据库表信息
|
3387
|
+
*/
|
3388
|
+
DbTables: Array<DbTable>;
|
3389
|
+
}
|
3390
|
+
/**
|
3391
|
+
* OpenWan请求参数结构体
|
3392
|
+
*/
|
3393
|
+
export interface OpenWanRequest {
|
3394
|
+
/**
|
3395
|
+
* 实例组id
|
3396
|
+
*/
|
3397
|
+
InstanceGrpId: string;
|
3398
|
+
}
|
3399
|
+
/**
|
3400
|
+
* OpenClusterPasswordComplexity返回参数结构体
|
3401
|
+
*/
|
3402
|
+
export interface OpenClusterPasswordComplexityResponse {
|
3403
|
+
/**
|
3404
|
+
* 任务流ID
|
3405
|
+
*/
|
3406
|
+
FlowId: number;
|
3407
|
+
/**
|
3408
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3409
|
+
*/
|
3410
|
+
RequestId?: string;
|
3411
|
+
}
|
3412
|
+
/**
|
3413
|
+
* DescribeInstanceDetail返回参数结构体
|
3414
|
+
*/
|
3415
|
+
export interface DescribeInstanceDetailResponse {
|
3416
|
+
/**
|
3417
|
+
* 实例详情
|
3418
|
+
*/
|
3419
|
+
Detail: CynosdbInstanceDetail;
|
3420
|
+
/**
|
3421
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3422
|
+
*/
|
3423
|
+
RequestId?: string;
|
3424
|
+
}
|
3425
|
+
/**
|
3426
|
+
* OfflineInstance返回参数结构体
|
3427
|
+
*/
|
3428
|
+
export interface OfflineInstanceResponse {
|
3429
|
+
/**
|
3430
|
+
* 任务流ID
|
3431
|
+
*/
|
3432
|
+
FlowId: number;
|
3433
|
+
/**
|
3434
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3435
|
+
*/
|
3436
|
+
RequestId?: string;
|
3437
|
+
}
|
3438
|
+
/**
|
3439
|
+
* ModifyInstanceParam返回参数结构体
|
3440
|
+
*/
|
3441
|
+
export interface ModifyInstanceParamResponse {
|
3442
|
+
/**
|
3443
|
+
* 任务ID
|
3444
|
+
*/
|
3445
|
+
FlowId: number;
|
3446
|
+
/**
|
3447
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3448
|
+
*/
|
3449
|
+
RequestId?: string;
|
2880
3450
|
}
|
2881
3451
|
/**
|
2882
3452
|
* 安全组规则
|
@@ -2975,6 +3545,19 @@ export interface NetAddr {
|
|
2975
3545
|
*/
|
2976
3546
|
InstanceGroupId?: string;
|
2977
3547
|
}
|
3548
|
+
/**
|
3549
|
+
* CopyClusterPasswordComplexity请求参数结构体
|
3550
|
+
*/
|
3551
|
+
export interface CopyClusterPasswordComplexityRequest {
|
3552
|
+
/**
|
3553
|
+
* 复制集群ID数组
|
3554
|
+
*/
|
3555
|
+
ClusterIds: Array<string>;
|
3556
|
+
/**
|
3557
|
+
* 集群id
|
3558
|
+
*/
|
3559
|
+
SourceClusterId: string;
|
3560
|
+
}
|
2978
3561
|
/**
|
2979
3562
|
* 参数模板详情
|
2980
3563
|
*/
|
@@ -3063,6 +3646,34 @@ export interface CreateBackupResponse {
|
|
3063
3646
|
*/
|
3064
3647
|
RequestId?: string;
|
3065
3648
|
}
|
3649
|
+
/**
|
3650
|
+
* 用户主机权限
|
3651
|
+
*/
|
3652
|
+
export interface UserHostPrivilege {
|
3653
|
+
/**
|
3654
|
+
* 授权用户
|
3655
|
+
*/
|
3656
|
+
DbUserName: string;
|
3657
|
+
/**
|
3658
|
+
* 客户端ip
|
3659
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3660
|
+
*/
|
3661
|
+
DbHost: string;
|
3662
|
+
/**
|
3663
|
+
* 用户权限
|
3664
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3665
|
+
*/
|
3666
|
+
DbPrivilege: string;
|
3667
|
+
}
|
3668
|
+
/**
|
3669
|
+
* ModifyAccountPrivileges返回参数结构体
|
3670
|
+
*/
|
3671
|
+
export interface ModifyAccountPrivilegesResponse {
|
3672
|
+
/**
|
3673
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3674
|
+
*/
|
3675
|
+
RequestId?: string;
|
3676
|
+
}
|
3066
3677
|
/**
|
3067
3678
|
* DescribeRollbackTimeValidity返回参数结构体
|
3068
3679
|
*/
|
@@ -3131,6 +3742,15 @@ export interface DescribeInstanceSlowQueriesResponse {
|
|
3131
3742
|
*/
|
3132
3743
|
RequestId?: string;
|
3133
3744
|
}
|
3745
|
+
/**
|
3746
|
+
* ModifyAccountHost返回参数结构体
|
3747
|
+
*/
|
3748
|
+
export interface ModifyAccountHostResponse {
|
3749
|
+
/**
|
3750
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3751
|
+
*/
|
3752
|
+
RequestId?: string;
|
3753
|
+
}
|
3134
3754
|
/**
|
3135
3755
|
* DescribeInstances请求参数结构体
|
3136
3756
|
*/
|
@@ -3179,6 +3799,57 @@ export interface DescribeInstancesRequest {
|
|
3179
3799
|
*/
|
3180
3800
|
InstanceIds?: Array<string>;
|
3181
3801
|
}
|
3802
|
+
/**
|
3803
|
+
* OpenReadOnlyInstanceExclusiveAccess请求参数结构体
|
3804
|
+
*/
|
3805
|
+
export interface OpenReadOnlyInstanceExclusiveAccessRequest {
|
3806
|
+
/**
|
3807
|
+
* 集群ID
|
3808
|
+
*/
|
3809
|
+
ClusterId: string;
|
3810
|
+
/**
|
3811
|
+
* 需要开通独有访问的只读实例ID
|
3812
|
+
*/
|
3813
|
+
InstanceId: string;
|
3814
|
+
/**
|
3815
|
+
* 指定的vpc ID
|
3816
|
+
*/
|
3817
|
+
VpcId: string;
|
3818
|
+
/**
|
3819
|
+
* 指定的子网ID
|
3820
|
+
*/
|
3821
|
+
SubnetId: string;
|
3822
|
+
/**
|
3823
|
+
* 端口
|
3824
|
+
*/
|
3825
|
+
Port: number;
|
3826
|
+
/**
|
3827
|
+
* 安全组
|
3828
|
+
*/
|
3829
|
+
SecurityGroupIds?: Array<string>;
|
3830
|
+
}
|
3831
|
+
/**
|
3832
|
+
* CloseClusterPasswordComplexity返回参数结构体
|
3833
|
+
*/
|
3834
|
+
export interface CloseClusterPasswordComplexityResponse {
|
3835
|
+
/**
|
3836
|
+
* 任务流ID
|
3837
|
+
*/
|
3838
|
+
FlowId: number;
|
3839
|
+
/**
|
3840
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3841
|
+
*/
|
3842
|
+
RequestId?: string;
|
3843
|
+
}
|
3844
|
+
/**
|
3845
|
+
* DescribeMaintainPeriod请求参数结构体
|
3846
|
+
*/
|
3847
|
+
export interface DescribeMaintainPeriodRequest {
|
3848
|
+
/**
|
3849
|
+
* 实例ID
|
3850
|
+
*/
|
3851
|
+
InstanceId: string;
|
3852
|
+
}
|
3182
3853
|
/**
|
3183
3854
|
* DescribeBackupDownloadUrl返回参数结构体
|
3184
3855
|
*/
|
@@ -3246,6 +3917,39 @@ export interface InquirePriceCreateRequest {
|
|
3246
3917
|
*/
|
3247
3918
|
TimeUnit?: string;
|
3248
3919
|
}
|
3920
|
+
/**
|
3921
|
+
* OpenClusterPasswordComplexity请求参数结构体
|
3922
|
+
*/
|
3923
|
+
export interface OpenClusterPasswordComplexityRequest {
|
3924
|
+
/**
|
3925
|
+
* 集群id
|
3926
|
+
*/
|
3927
|
+
ClusterId: string;
|
3928
|
+
/**
|
3929
|
+
* 密码长度
|
3930
|
+
*/
|
3931
|
+
ValidatePasswordLength: number;
|
3932
|
+
/**
|
3933
|
+
* 大小写字符个数
|
3934
|
+
*/
|
3935
|
+
ValidatePasswordMixedCaseCount: number;
|
3936
|
+
/**
|
3937
|
+
* 特殊字符个数
|
3938
|
+
*/
|
3939
|
+
ValidatePasswordSpecialCharCount: number;
|
3940
|
+
/**
|
3941
|
+
* 数字个数
|
3942
|
+
*/
|
3943
|
+
ValidatePasswordNumberCount: number;
|
3944
|
+
/**
|
3945
|
+
* 密码强度("MEDIUM", "STRONG")
|
3946
|
+
*/
|
3947
|
+
ValidatePasswordPolicy: string;
|
3948
|
+
/**
|
3949
|
+
* 数据字典
|
3950
|
+
*/
|
3951
|
+
ValidatePasswordDictionary?: Array<string>;
|
3952
|
+
}
|
3249
3953
|
/**
|
3250
3954
|
* CreateAuditRuleTemplate请求参数结构体
|
3251
3955
|
*/
|
@@ -3336,6 +4040,27 @@ export interface ExportInstanceSlowQueriesRequest {
|
|
3336
4040
|
*/
|
3337
4041
|
FileType?: string;
|
3338
4042
|
}
|
4043
|
+
/**
|
4044
|
+
* ModifyAccountDescription请求参数结构体
|
4045
|
+
*/
|
4046
|
+
export interface ModifyAccountDescriptionRequest {
|
4047
|
+
/**
|
4048
|
+
* 数据库账号名
|
4049
|
+
*/
|
4050
|
+
AccountName: string;
|
4051
|
+
/**
|
4052
|
+
* 数据库账号描述信息
|
4053
|
+
*/
|
4054
|
+
Description: string;
|
4055
|
+
/**
|
4056
|
+
* 集群ID
|
4057
|
+
*/
|
4058
|
+
ClusterId: string;
|
4059
|
+
/**
|
4060
|
+
* 主机,默认为"%"
|
4061
|
+
*/
|
4062
|
+
Host?: string;
|
4063
|
+
}
|
3339
4064
|
/**
|
3340
4065
|
* 修改参数时,传入参数描述
|
3341
4066
|
*/
|
@@ -3676,6 +4401,27 @@ export interface SaleZone {
|
|
3676
4401
|
*/
|
3677
4402
|
IsWholeRdmaZone?: string;
|
3678
4403
|
}
|
4404
|
+
/**
|
4405
|
+
* ModifyParamTemplate请求参数结构体
|
4406
|
+
*/
|
4407
|
+
export interface ModifyParamTemplateRequest {
|
4408
|
+
/**
|
4409
|
+
* 模版ID
|
4410
|
+
*/
|
4411
|
+
TemplateId: number;
|
4412
|
+
/**
|
4413
|
+
* 模版名
|
4414
|
+
*/
|
4415
|
+
TemplateName?: string;
|
4416
|
+
/**
|
4417
|
+
* 模版描述
|
4418
|
+
*/
|
4419
|
+
TemplateDescription?: string;
|
4420
|
+
/**
|
4421
|
+
* 参数列表
|
4422
|
+
*/
|
4423
|
+
ParamList?: Array<ModifyParamItem>;
|
4424
|
+
}
|
3679
4425
|
/**
|
3680
4426
|
* 任务信息
|
3681
4427
|
*/
|
@@ -3742,38 +4488,59 @@ export interface SwitchProxyVpcResponse {
|
|
3742
4488
|
RequestId?: string;
|
3743
4489
|
}
|
3744
4490
|
/**
|
3745
|
-
*
|
4491
|
+
* DescribeParamTemplateDetail请求参数结构体
|
3746
4492
|
*/
|
3747
|
-
export interface
|
4493
|
+
export interface DescribeParamTemplateDetailRequest {
|
4494
|
+
/**
|
4495
|
+
* 参数模版ID
|
4496
|
+
*/
|
4497
|
+
TemplateId: number;
|
4498
|
+
}
|
4499
|
+
/**
|
4500
|
+
* ModifyAccountHost请求参数结构体
|
4501
|
+
*/
|
4502
|
+
export interface ModifyAccountHostRequest {
|
3748
4503
|
/**
|
3749
4504
|
* 集群id
|
3750
4505
|
*/
|
3751
4506
|
ClusterId: string;
|
4507
|
+
/**
|
4508
|
+
* 新主机
|
4509
|
+
*/
|
4510
|
+
NewHost: string;
|
3752
4511
|
/**
|
3753
4512
|
* 账号信息
|
3754
4513
|
*/
|
3755
4514
|
Account: InputAccount;
|
4515
|
+
}
|
4516
|
+
/**
|
4517
|
+
* CreateParamTemplate请求参数结构体
|
4518
|
+
*/
|
4519
|
+
export interface CreateParamTemplateRequest {
|
3756
4520
|
/**
|
3757
|
-
*
|
4521
|
+
* 模版名称
|
3758
4522
|
*/
|
3759
|
-
|
4523
|
+
TemplateName: string;
|
3760
4524
|
/**
|
3761
|
-
*
|
4525
|
+
* mysql版本号
|
3762
4526
|
*/
|
3763
|
-
|
3764
|
-
}
|
3765
|
-
/**
|
3766
|
-
* ResumeServerless返回参数结构体
|
3767
|
-
*/
|
3768
|
-
export interface ResumeServerlessResponse {
|
4527
|
+
EngineVersion: string;
|
3769
4528
|
/**
|
3770
|
-
*
|
4529
|
+
* 模版描述
|
3771
4530
|
*/
|
3772
|
-
|
4531
|
+
TemplateDescription?: string;
|
3773
4532
|
/**
|
3774
|
-
*
|
4533
|
+
* 可选参数,需要复制的模版ID
|
3775
4534
|
*/
|
3776
|
-
|
4535
|
+
TemplateId?: number;
|
4536
|
+
/**
|
4537
|
+
* 数据库类型,可选值:NORMAL(默认值),SERVERLESS
|
4538
|
+
*/
|
4539
|
+
DbMode?: string;
|
4540
|
+
/**
|
4541
|
+
* 参数列表
|
4542
|
+
*/
|
4543
|
+
ParamList?: Array<ParamItem>;
|
3777
4544
|
}
|
3778
4545
|
/**
|
3779
4546
|
* DescribeAuditRuleTemplates请求参数结构体
|
@@ -3852,6 +4619,15 @@ export interface DescribeFlowRequest {
|
|
3852
4619
|
*/
|
3853
4620
|
FlowId: number;
|
3854
4621
|
}
|
4622
|
+
/**
|
4623
|
+
* RestartInstance请求参数结构体
|
4624
|
+
*/
|
4625
|
+
export interface RestartInstanceRequest {
|
4626
|
+
/**
|
4627
|
+
* 实例id
|
4628
|
+
*/
|
4629
|
+
InstanceId: string;
|
4630
|
+
}
|
3855
4631
|
/**
|
3856
4632
|
* 审计日志文件
|
3857
4633
|
*/
|
@@ -3888,33 +4664,29 @@ export interface AuditLogFile {
|
|
3888
4664
|
ErrMsg: string;
|
3889
4665
|
}
|
3890
4666
|
/**
|
3891
|
-
*
|
4667
|
+
* ModifyAccountPrivileges请求参数结构体
|
3892
4668
|
*/
|
3893
|
-
export interface
|
4669
|
+
export interface ModifyAccountPrivilegesRequest {
|
3894
4670
|
/**
|
3895
|
-
* 集群
|
4671
|
+
* 集群id
|
3896
4672
|
*/
|
3897
4673
|
ClusterId: string;
|
3898
4674
|
/**
|
3899
|
-
*
|
3900
|
-
*/
|
3901
|
-
InstanceId: string;
|
3902
|
-
/**
|
3903
|
-
* 指定的vpc ID
|
4675
|
+
* 账号信息
|
3904
4676
|
*/
|
3905
|
-
|
4677
|
+
Account: InputAccount;
|
3906
4678
|
/**
|
3907
|
-
*
|
4679
|
+
* 全局权限数组
|
3908
4680
|
*/
|
3909
|
-
|
4681
|
+
GlobalPrivileges?: Array<string>;
|
3910
4682
|
/**
|
3911
|
-
*
|
4683
|
+
* 数据库权限数组
|
3912
4684
|
*/
|
3913
|
-
|
4685
|
+
DatabasePrivileges?: Array<DatabasePrivileges>;
|
3914
4686
|
/**
|
3915
|
-
*
|
4687
|
+
* 表权限数组
|
3916
4688
|
*/
|
3917
|
-
|
4689
|
+
TablePrivileges?: Array<TablePrivileges>;
|
3918
4690
|
}
|
3919
4691
|
/**
|
3920
4692
|
* 数据库账号信息
|
@@ -3970,6 +4742,15 @@ export interface CreateBackupRequest {
|
|
3970
4742
|
*/
|
3971
4743
|
BackupName?: string;
|
3972
4744
|
}
|
4745
|
+
/**
|
4746
|
+
* CreateClusterDatabase返回参数结构体
|
4747
|
+
*/
|
4748
|
+
export interface CreateClusterDatabaseResponse {
|
4749
|
+
/**
|
4750
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4751
|
+
*/
|
4752
|
+
RequestId?: string;
|
4753
|
+
}
|
3973
4754
|
/**
|
3974
4755
|
* DescribeClusterParamLogs请求参数结构体
|
3975
4756
|
*/
|
@@ -4026,6 +4807,19 @@ export interface Module {
|
|
4026
4807
|
*/
|
4027
4808
|
ModuleName: string;
|
4028
4809
|
}
|
4810
|
+
/**
|
4811
|
+
* 回档数据库及表
|
4812
|
+
*/
|
4813
|
+
export interface RollbackTable {
|
4814
|
+
/**
|
4815
|
+
* 数据库名称
|
4816
|
+
*/
|
4817
|
+
Database: string;
|
4818
|
+
/**
|
4819
|
+
* 数据库表
|
4820
|
+
*/
|
4821
|
+
Tables: Array<RollbackTableInfo>;
|
4822
|
+
}
|
4029
4823
|
/**
|
4030
4824
|
* DescribeMaintainPeriod返回参数结构体
|
4031
4825
|
*/
|
@@ -4195,6 +4989,15 @@ export interface ActivateInstanceResponse {
|
|
4195
4989
|
*/
|
4196
4990
|
RequestId?: string;
|
4197
4991
|
}
|
4992
|
+
/**
|
4993
|
+
* ModifyAccountDescription返回参数结构体
|
4994
|
+
*/
|
4995
|
+
export interface ModifyAccountDescriptionResponse {
|
4996
|
+
/**
|
4997
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4998
|
+
*/
|
4999
|
+
RequestId?: string;
|
5000
|
+
}
|
4198
5001
|
/**
|
4199
5002
|
* DescribeRollbackTimeValidity请求参数结构体
|
4200
5003
|
*/
|
@@ -4327,6 +5130,31 @@ export interface AddInstancesRequest {
|
|
4327
5130
|
*/
|
4328
5131
|
SecurityGroupIds?: Array<string>;
|
4329
5132
|
}
|
5133
|
+
/**
|
5134
|
+
* ModifyClusterDatabase请求参数结构体
|
5135
|
+
*/
|
5136
|
+
export interface ModifyClusterDatabaseRequest {
|
5137
|
+
/**
|
5138
|
+
* 集群ID
|
5139
|
+
*/
|
5140
|
+
ClusterId: string;
|
5141
|
+
/**
|
5142
|
+
* 数据库名
|
5143
|
+
*/
|
5144
|
+
DbName: string;
|
5145
|
+
/**
|
5146
|
+
* 新授权用户主机权限
|
5147
|
+
*/
|
5148
|
+
NewUserHostPrivileges?: Array<UserHostPrivilege>;
|
5149
|
+
/**
|
5150
|
+
* 备注
|
5151
|
+
*/
|
5152
|
+
Description?: string;
|
5153
|
+
/**
|
5154
|
+
* 历史授权用户主机权限
|
5155
|
+
*/
|
5156
|
+
OldUserHostPrivileges?: Array<UserHostPrivilege>;
|
5157
|
+
}
|
4330
5158
|
/**
|
4331
5159
|
* InquirePriceCreate返回参数结构体
|
4332
5160
|
*/
|
@@ -4622,6 +5450,23 @@ export interface RuleFilters {
|
|
4622
5450
|
*/
|
4623
5451
|
Value: Array<string>;
|
4624
5452
|
}
|
5453
|
+
/**
|
5454
|
+
* UpgradeClusterVersion请求参数结构体
|
5455
|
+
*/
|
5456
|
+
export interface UpgradeClusterVersionRequest {
|
5457
|
+
/**
|
5458
|
+
* 集群id
|
5459
|
+
*/
|
5460
|
+
ClusterId: string;
|
5461
|
+
/**
|
5462
|
+
* 内核版本
|
5463
|
+
*/
|
5464
|
+
CynosVersion: string;
|
5465
|
+
/**
|
5466
|
+
* 升级时间类型,可选:upgradeImmediate,upgradeInMaintain
|
5467
|
+
*/
|
5468
|
+
UpgradeType: string;
|
5469
|
+
}
|
4625
5470
|
/**
|
4626
5471
|
* ExportInstanceSlowQueries返回参数结构体
|
4627
5472
|
*/
|
@@ -4635,6 +5480,15 @@ export interface ExportInstanceSlowQueriesResponse {
|
|
4635
5480
|
*/
|
4636
5481
|
RequestId?: string;
|
4637
5482
|
}
|
5483
|
+
/**
|
5484
|
+
* DeleteClusterDatabase返回参数结构体
|
5485
|
+
*/
|
5486
|
+
export interface DeleteClusterDatabaseResponse {
|
5487
|
+
/**
|
5488
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5489
|
+
*/
|
5490
|
+
RequestId?: string;
|
5491
|
+
}
|
4638
5492
|
/**
|
4639
5493
|
* 集群详情详细信息
|
4640
5494
|
*/
|
@@ -4913,18 +5767,30 @@ export interface DescribeInstanceErrorLogsRequest {
|
|
4913
5767
|
KeyWords?: Array<string>;
|
4914
5768
|
}
|
4915
5769
|
/**
|
4916
|
-
*
|
5770
|
+
* DeleteClusterDatabase请求参数结构体
|
4917
5771
|
*/
|
4918
|
-
export interface
|
5772
|
+
export interface DeleteClusterDatabaseRequest {
|
4919
5773
|
/**
|
4920
|
-
*
|
5774
|
+
* 集群ID
|
4921
5775
|
*/
|
4922
|
-
|
5776
|
+
ClusterId: string;
|
5777
|
+
/**
|
5778
|
+
* 数据库名
|
5779
|
+
*/
|
5780
|
+
DbNames: Array<string>;
|
4923
5781
|
}
|
4924
5782
|
/**
|
4925
|
-
*
|
5783
|
+
* 参数是否可修改的详细信息
|
4926
5784
|
*/
|
4927
|
-
export
|
5785
|
+
export declare type ModifiableInfo = null;
|
5786
|
+
/**
|
5787
|
+
* DescribeInstanceParams返回参数结构体
|
5788
|
+
*/
|
5789
|
+
export interface DescribeInstanceParamsResponse {
|
5790
|
+
/**
|
5791
|
+
* 实例参数列表
|
5792
|
+
*/
|
5793
|
+
Items: Array<InstanceParamItem>;
|
4928
5794
|
/**
|
4929
5795
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4930
5796
|
*/
|
@@ -4977,6 +5843,19 @@ export interface ModifyBackupNameRequest {
|
|
4977
5843
|
*/
|
4978
5844
|
BackupName: string;
|
4979
5845
|
}
|
5846
|
+
/**
|
5847
|
+
* DeleteAccounts请求参数结构体
|
5848
|
+
*/
|
5849
|
+
export interface DeleteAccountsRequest {
|
5850
|
+
/**
|
5851
|
+
* 集群ID
|
5852
|
+
*/
|
5853
|
+
ClusterId: string;
|
5854
|
+
/**
|
5855
|
+
* 账号数组,包含account和host
|
5856
|
+
*/
|
5857
|
+
Accounts?: Array<InputAccount>;
|
5858
|
+
}
|
4980
5859
|
/**
|
4981
5860
|
* ModifyInstanceName返回参数结构体
|
4982
5861
|
*/
|
@@ -5009,21 +5888,63 @@ export interface DescribeBinlogSaveDaysResponse {
|
|
5009
5888
|
RequestId?: string;
|
5010
5889
|
}
|
5011
5890
|
/**
|
5012
|
-
*
|
5891
|
+
* DescribeAccountPrivileges请求参数结构体
|
5013
5892
|
*/
|
5014
|
-
export interface
|
5893
|
+
export interface DescribeAccountPrivilegesRequest {
|
5015
5894
|
/**
|
5016
|
-
* 集群
|
5895
|
+
* 集群id
|
5017
5896
|
*/
|
5018
5897
|
ClusterId: string;
|
5019
5898
|
/**
|
5020
|
-
*
|
5899
|
+
* 账户名
|
5021
5900
|
*/
|
5022
|
-
|
5901
|
+
AccountName: string;
|
5023
5902
|
/**
|
5024
|
-
*
|
5903
|
+
* 主机
|
5025
5904
|
*/
|
5026
|
-
|
5905
|
+
Host: string;
|
5906
|
+
/**
|
5907
|
+
* 数据库名,为*时,忽略Type/TableName, 表示修改用户全局权限;
|
5908
|
+
*/
|
5909
|
+
Db: string;
|
5910
|
+
/**
|
5911
|
+
* 指定数据库下的对象类型,可选"table","*"
|
5912
|
+
*/
|
5913
|
+
Type: string;
|
5914
|
+
/**
|
5915
|
+
* 当Type="table"时,用来指定表名
|
5916
|
+
*/
|
5917
|
+
TableName?: string;
|
5918
|
+
}
|
5919
|
+
/**
|
5920
|
+
* 参数模板信息
|
5921
|
+
*/
|
5922
|
+
export interface ParamTemplateListInfo {
|
5923
|
+
/**
|
5924
|
+
* 参数模板ID
|
5925
|
+
*/
|
5926
|
+
Id: number;
|
5927
|
+
/**
|
5928
|
+
* 参数模板名称
|
5929
|
+
*/
|
5930
|
+
TemplateName: string;
|
5931
|
+
/**
|
5932
|
+
* 参数模板描述
|
5933
|
+
*/
|
5934
|
+
TemplateDescription: string;
|
5935
|
+
/**
|
5936
|
+
* 引擎版本
|
5937
|
+
*/
|
5938
|
+
EngineVersion: string;
|
5939
|
+
/**
|
5940
|
+
* 数据库类型,可选值:NORMAL,SERVERLESS
|
5941
|
+
*/
|
5942
|
+
DbMode: string;
|
5943
|
+
/**
|
5944
|
+
* 参数模板详情
|
5945
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5946
|
+
*/
|
5947
|
+
ParamInfoSet: Array<TemplateParamInfo>;
|
5027
5948
|
}
|
5028
5949
|
/**
|
5029
5950
|
* DescribeAccounts返回参数结构体
|
@@ -5052,6 +5973,35 @@ export interface ModifyAccountParamsResponse {
|
|
5052
5973
|
*/
|
5053
5974
|
RequestId?: string;
|
5054
5975
|
}
|
5976
|
+
/**
|
5977
|
+
* CreateClusterDatabase请求参数结构体
|
5978
|
+
*/
|
5979
|
+
export interface CreateClusterDatabaseRequest {
|
5980
|
+
/**
|
5981
|
+
* 集群ID
|
5982
|
+
*/
|
5983
|
+
ClusterId: string;
|
5984
|
+
/**
|
5985
|
+
* 数据库名
|
5986
|
+
*/
|
5987
|
+
DbName: string;
|
5988
|
+
/**
|
5989
|
+
* 字符集类型
|
5990
|
+
*/
|
5991
|
+
CharacterSet: string;
|
5992
|
+
/**
|
5993
|
+
* 排序规则
|
5994
|
+
*/
|
5995
|
+
CollateRule: string;
|
5996
|
+
/**
|
5997
|
+
* 授权用户主机权限
|
5998
|
+
*/
|
5999
|
+
UserHostPrivileges?: Array<UserHostPrivilege>;
|
6000
|
+
/**
|
6001
|
+
* 备注
|
6002
|
+
*/
|
6003
|
+
Description?: string;
|
6004
|
+
}
|
5055
6005
|
/**
|
5056
6006
|
* DeleteBackup请求参数结构体
|
5057
6007
|
*/
|
@@ -5232,13 +6182,46 @@ export interface DescribeAccountAllGrantPrivilegesRequest {
|
|
5232
6182
|
Account: InputAccount;
|
5233
6183
|
}
|
5234
6184
|
/**
|
5235
|
-
*
|
6185
|
+
* DescribeParamTemplateDetail返回参数结构体
|
5236
6186
|
*/
|
5237
|
-
export interface
|
6187
|
+
export interface DescribeParamTemplateDetailResponse {
|
5238
6188
|
/**
|
5239
|
-
*
|
6189
|
+
* 参数模版ID
|
5240
6190
|
*/
|
5241
|
-
|
6191
|
+
TemplateId: number;
|
6192
|
+
/**
|
6193
|
+
* 参数模版名称
|
6194
|
+
*/
|
6195
|
+
TemplateName: string;
|
6196
|
+
/**
|
6197
|
+
* 参数模版描述
|
6198
|
+
*/
|
6199
|
+
TemplateDescription: string;
|
6200
|
+
/**
|
6201
|
+
* 引擎版本
|
6202
|
+
*/
|
6203
|
+
EngineVersion: string;
|
6204
|
+
/**
|
6205
|
+
* 参数总条数
|
6206
|
+
*/
|
6207
|
+
TotalCount: number;
|
6208
|
+
/**
|
6209
|
+
* 参数列表
|
6210
|
+
*/
|
6211
|
+
Items: Array<ParamDetail>;
|
6212
|
+
/**
|
6213
|
+
* 数据库类型,可选值:NORMAL,SERVERLESS
|
6214
|
+
*/
|
6215
|
+
DbMode: string;
|
6216
|
+
/**
|
6217
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
6218
|
+
*/
|
6219
|
+
RequestId?: string;
|
6220
|
+
}
|
6221
|
+
/**
|
6222
|
+
* ModifyBinlogSaveDays返回参数结构体
|
6223
|
+
*/
|
6224
|
+
export interface ModifyBinlogSaveDaysResponse {
|
5242
6225
|
/**
|
5243
6226
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5244
6227
|
*/
|
@@ -5296,6 +6279,19 @@ export interface DescribeAuditLogFilesRequest {
|
|
5296
6279
|
*/
|
5297
6280
|
FileName?: string;
|
5298
6281
|
}
|
6282
|
+
/**
|
6283
|
+
* ModifyVipVport返回参数结构体
|
6284
|
+
*/
|
6285
|
+
export interface ModifyVipVportResponse {
|
6286
|
+
/**
|
6287
|
+
* 异步任务id
|
6288
|
+
*/
|
6289
|
+
FlowId: number;
|
6290
|
+
/**
|
6291
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
6292
|
+
*/
|
6293
|
+
RequestId?: string;
|
6294
|
+
}
|
5299
6295
|
/**
|
5300
6296
|
* DescribeClusterDetail返回参数结构体
|
5301
6297
|
*/
|