tencentcloud-sdk-nodejs-cynosdb 4.0.1053 → 4.1.1
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/README.md +18 -4
- package/es/index.js +1 -0
- package/es/services/cynosdb/index.js +4 -0
- package/es/services/cynosdb/v20190107/cynosdb_client.js +471 -0
- package/es/services/cynosdb/v20190107/cynosdb_models.js +0 -0
- package/es/services/cynosdb/v20190107/index.js +6 -0
- package/es/services/index.js +1 -0
- package/package.json +24 -8
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +2 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +1 -43
- package/tencentcloud/services/cynosdb/v20190107/index.js +2 -1
- package/index.d.ts +0 -2
- package/index.js +0 -6
- package/prettier.config.js +0 -38
- package/src/index.ts +0 -1
- package/src/services/cynosdb/index.ts +0 -5
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +0 -2004
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +0 -10831
- package/src/services/cynosdb/v20190107/index.ts +0 -6
- package/src/services/index.ts +0 -1
- package/tsconfig.json +0 -33
- package/typings/index.d.ts +0 -2
@@ -188,7 +188,6 @@ export interface DescribeClusterParamsResponse {
|
|
188
188
|
TotalCount?: number;
|
189
189
|
/**
|
190
190
|
* 实例参数列表
|
191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
192
191
|
*/
|
193
192
|
Items?: Array<ParamInfo>;
|
194
193
|
/**
|
@@ -295,7 +294,6 @@ export interface DescribeProxiesResponse {
|
|
295
294
|
TotalCount?: number;
|
296
295
|
/**
|
297
296
|
* 数据库代理组列表
|
298
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
299
297
|
*/
|
300
298
|
ProxyGroupInfos?: Array<ProxyGroupInfo>;
|
301
299
|
/**
|
@@ -1087,32 +1085,26 @@ export interface CynosdbInstance {
|
|
1087
1085
|
export interface DescribeClusterPasswordComplexityResponse {
|
1088
1086
|
/**
|
1089
1087
|
* 数据字典参数
|
1090
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1091
1088
|
*/
|
1092
1089
|
ValidatePasswordDictionary?: ParamInfo;
|
1093
1090
|
/**
|
1094
1091
|
* 密码长度
|
1095
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1096
1092
|
*/
|
1097
1093
|
ValidatePasswordLength?: ParamInfo;
|
1098
1094
|
/**
|
1099
1095
|
* 大小写敏感字符个数
|
1100
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1101
1096
|
*/
|
1102
1097
|
ValidatePasswordMixedCaseCount?: ParamInfo;
|
1103
1098
|
/**
|
1104
1099
|
* 数字个数
|
1105
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1106
1100
|
*/
|
1107
1101
|
ValidatePasswordNumberCount?: ParamInfo;
|
1108
1102
|
/**
|
1109
1103
|
* 密码等级
|
1110
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1111
1104
|
*/
|
1112
1105
|
ValidatePasswordPolicy?: ParamInfo;
|
1113
1106
|
/**
|
1114
1107
|
* 特殊字符个数
|
1115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1116
1108
|
*/
|
1117
1109
|
ValidatePasswordSpecialCharCount?: ParamInfo;
|
1118
1110
|
/**
|
@@ -1620,25 +1612,21 @@ export interface StartCLSDeliveryResponse {
|
|
1620
1612
|
export interface ParamItemInfo {
|
1621
1613
|
/**
|
1622
1614
|
* 参数名字
|
1623
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1624
1615
|
*/
|
1625
1616
|
ParamName?: string;
|
1626
1617
|
/**
|
1627
1618
|
* 参数新值
|
1628
1619
|
|
1629
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1630
1620
|
*/
|
1631
1621
|
NewValue?: string;
|
1632
1622
|
/**
|
1633
1623
|
* 参数旧值
|
1634
1624
|
|
1635
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1636
1625
|
*/
|
1637
1626
|
OldValue?: string;
|
1638
1627
|
/**
|
1639
1628
|
* 参数公式
|
1640
1629
|
|
1641
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1642
1630
|
*/
|
1643
1631
|
ValueFunction?: string;
|
1644
1632
|
}
|
@@ -1762,7 +1750,6 @@ export interface DescribeZonesResponse {
|
|
1762
1750
|
export interface SearchClusterTablesResponse {
|
1763
1751
|
/**
|
1764
1752
|
* 数据表列表
|
1765
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1766
1753
|
*/
|
1767
1754
|
Tables?: Array<DatabaseTables>;
|
1768
1755
|
/**
|
@@ -1810,7 +1797,6 @@ export interface DescribeChangedParamsAfterUpgradeResponse {
|
|
1810
1797
|
TotalCount?: number;
|
1811
1798
|
/**
|
1812
1799
|
* 实例参数列表
|
1813
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1814
1800
|
*/
|
1815
1801
|
Items?: Array<ParamItemInfo>;
|
1816
1802
|
/**
|
@@ -2586,12 +2572,10 @@ export interface DescribeBinlogsRequest {
|
|
2586
2572
|
export interface InquirePriceModifyResponse {
|
2587
2573
|
/**
|
2588
2574
|
* 实例价格
|
2589
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2590
2575
|
*/
|
2591
2576
|
InstancePrice?: TradePrice;
|
2592
2577
|
/**
|
2593
2578
|
* 存储价格
|
2594
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2595
2579
|
*/
|
2596
2580
|
StoragePrice?: TradePrice;
|
2597
2581
|
/**
|
@@ -2732,7 +2716,6 @@ export interface DescribeResourcePackageListResponse {
|
|
2732
2716
|
Total?: number;
|
2733
2717
|
/**
|
2734
2718
|
* 资源包明细
|
2735
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2736
2719
|
*/
|
2737
2720
|
Detail?: Array<Package>;
|
2738
2721
|
/**
|
@@ -3091,7 +3074,6 @@ export interface ServerlessSpec {
|
|
3091
3074
|
export interface DescribeClusterDetailDatabasesResponse {
|
3092
3075
|
/**
|
3093
3076
|
* 数据库信息
|
3094
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3095
3077
|
*/
|
3096
3078
|
DbInfos?: Array<DbInfo>;
|
3097
3079
|
/**
|
@@ -5144,7 +5126,7 @@ export interface ModifyBackupConfigRequest {
|
|
5144
5126
|
*/
|
5145
5127
|
BackupFreq?: Array<string>;
|
5146
5128
|
/**
|
5147
|
-
*
|
5129
|
+
* 该参数目前不支持修改,无需填写。
|
5148
5130
|
*/
|
5149
5131
|
BackupType?: string;
|
5150
5132
|
/**
|
@@ -5525,12 +5507,10 @@ export interface DescribeAccountsRequest {
|
|
5525
5507
|
export interface DescribeRollbackTimeRangeResponse {
|
5526
5508
|
/**
|
5527
5509
|
* 有效回归时间范围开始时间点(已废弃)
|
5528
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5529
5510
|
*/
|
5530
5511
|
TimeRangeStart?: string;
|
5531
5512
|
/**
|
5532
5513
|
* 有效回归时间范围结束时间点(已废弃)
|
5533
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5534
5514
|
*/
|
5535
5515
|
TimeRangeEnd?: string;
|
5536
5516
|
/**
|
@@ -6043,7 +6023,6 @@ export interface DescribeClusterParamLogsResponse {
|
|
6043
6023
|
TotalCount?: number;
|
6044
6024
|
/**
|
6045
6025
|
* 参数修改记录
|
6046
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6047
6026
|
*/
|
6048
6027
|
ClusterParamLogs?: Array<ClusterParamModifyLog>;
|
6049
6028
|
/**
|
@@ -6765,7 +6744,6 @@ export interface DescribeResourcePackageSaleSpecResponse {
|
|
6765
6744
|
Total?: number;
|
6766
6745
|
/**
|
6767
6746
|
* 资源包明细说明
|
6768
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6769
6747
|
*/
|
6770
6748
|
Detail?: Array<SalePackageSpec>;
|
6771
6749
|
/**
|
@@ -7484,12 +7462,10 @@ export interface ModifyClusterSlaveZoneRequest {
|
|
7484
7462
|
export interface DescribeInstanceErrorLogsResponse {
|
7485
7463
|
/**
|
7486
7464
|
* 日志条数
|
7487
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7488
7465
|
*/
|
7489
7466
|
TotalCount?: number;
|
7490
7467
|
/**
|
7491
7468
|
* 错误日志列表
|
7492
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7493
7469
|
*/
|
7494
7470
|
ErrorLogs?: Array<CynosdbErrorLogItem>;
|
7495
7471
|
/**
|
@@ -7503,12 +7479,10 @@ export interface DescribeInstanceErrorLogsResponse {
|
|
7503
7479
|
export interface DescribeSupportProxyVersionResponse {
|
7504
7480
|
/**
|
7505
7481
|
* 支持的数据库代理版本集合
|
7506
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7507
7482
|
*/
|
7508
7483
|
SupportProxyVersions?: Array<string>;
|
7509
7484
|
/**
|
7510
7485
|
* 当前proxy版本号
|
7511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7512
7486
|
*/
|
7513
7487
|
CurrentProxyVersion?: string;
|
7514
7488
|
/**
|
@@ -8573,17 +8547,14 @@ export interface DescribeTasksRequest {
|
|
8573
8547
|
export interface ModifyClusterStorageResponse {
|
8574
8548
|
/**
|
8575
8549
|
* 冻结流水ID
|
8576
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8577
8550
|
*/
|
8578
8551
|
TranId?: string;
|
8579
8552
|
/**
|
8580
8553
|
* 大订单号
|
8581
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8582
8554
|
*/
|
8583
8555
|
BigDealIds?: Array<string>;
|
8584
8556
|
/**
|
8585
8557
|
* 订单号
|
8586
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8587
8558
|
*/
|
8588
8559
|
DealNames?: Array<string>;
|
8589
8560
|
/**
|
@@ -8992,7 +8963,6 @@ export interface SwitchClusterLogBin {
|
|
8992
8963
|
export interface ExportInstanceErrorLogsResponse {
|
8993
8964
|
/**
|
8994
8965
|
* 错误日志导出内容
|
8995
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8996
8966
|
*/
|
8997
8967
|
ErrorLogItems?: Array<ErrorLogItemExport>;
|
8998
8968
|
/**
|
@@ -9088,7 +9058,6 @@ export interface GrantAccountPrivilegesRequest {
|
|
9088
9058
|
export interface IsolateClusterResponse {
|
9089
9059
|
/**
|
9090
9060
|
* 任务流ID(后付费或者serverless资源返回,如果需要同步任务状态,请使用DescribeFlow接口)
|
9091
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9092
9061
|
*/
|
9093
9062
|
FlowId?: number;
|
9094
9063
|
/**
|
@@ -9107,27 +9076,22 @@ export interface IsolateClusterResponse {
|
|
9107
9076
|
export interface RenewClustersResponse {
|
9108
9077
|
/**
|
9109
9078
|
* 预付费总订单号
|
9110
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9111
9079
|
*/
|
9112
9080
|
BigDealIds?: Array<string>;
|
9113
9081
|
/**
|
9114
9082
|
* 退款订单号
|
9115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9116
9083
|
*/
|
9117
9084
|
DealNames?: Array<string>;
|
9118
9085
|
/**
|
9119
9086
|
* 冻结流水,一次开通一个冻结流水
|
9120
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9121
9087
|
*/
|
9122
9088
|
TranId?: string;
|
9123
9089
|
/**
|
9124
9090
|
* 每个订单号对应的发货资源id列表
|
9125
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9126
9091
|
*/
|
9127
9092
|
ResourceIds?: Array<string>;
|
9128
9093
|
/**
|
9129
9094
|
* 集群id列表
|
9130
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9131
9095
|
*/
|
9132
9096
|
ClusterIds?: Array<string>;
|
9133
9097
|
/**
|
@@ -9537,22 +9501,18 @@ export interface DescribeInstancesWithinSameClusterResponse {
|
|
9537
9501
|
export interface RollbackToNewClusterResponse {
|
9538
9502
|
/**
|
9539
9503
|
* 冻结流水ID
|
9540
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9541
9504
|
*/
|
9542
9505
|
TranId?: string;
|
9543
9506
|
/**
|
9544
9507
|
* 订单号
|
9545
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9546
9508
|
*/
|
9547
9509
|
DealNames?: Array<string>;
|
9548
9510
|
/**
|
9549
9511
|
* 资源ID列表(该字段已不再维护,请使用dealNames字段查询接口DescribeResourcesByDealName获取资源ID)
|
9550
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9551
9512
|
*/
|
9552
9513
|
ResourceIds?: Array<string>;
|
9553
9514
|
/**
|
9554
9515
|
* 集群ID列表(该字段已不再维护,请使用dealNames字段查询接口DescribeResourcesByDealName获取集群ID)
|
9555
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9556
9516
|
*/
|
9557
9517
|
ClusterIds?: Array<string>;
|
9558
9518
|
/**
|
@@ -9657,12 +9617,10 @@ export interface DescribeInstanceCLSLogDeliveryRequest {
|
|
9657
9617
|
export interface UpgradeInstanceResponse {
|
9658
9618
|
/**
|
9659
9619
|
* 冻结流水ID
|
9660
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9661
9620
|
*/
|
9662
9621
|
TranId?: string;
|
9663
9622
|
/**
|
9664
9623
|
* 大订单号
|
9665
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9666
9624
|
*/
|
9667
9625
|
BigDealIds?: Array<string>;
|
9668
9626
|
/**
|
@@ -1,7 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.v20190107 = void 0;
|
4
|
-
const
|
4
|
+
const tslib_1 = require("tslib");
|
5
|
+
const Models = tslib_1.__importStar(require("./cynosdb_models"));
|
5
6
|
const cynosdb_client_1 = require("./cynosdb_client");
|
6
7
|
exports.v20190107 = {
|
7
8
|
Client: cynosdb_client_1.Client,
|
package/index.d.ts
DELETED
package/index.js
DELETED
package/prettier.config.js
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
// prettier.config.js
|
2
|
-
module.exports = {
|
3
|
-
// 一行最多 100 字符
|
4
|
-
printWidth: 100,
|
5
|
-
// 使用 4 个空格缩进
|
6
|
-
tabWidth: 2,
|
7
|
-
// 不使用缩进符,而使用空格
|
8
|
-
useTabs: false,
|
9
|
-
// 行尾需要有分号
|
10
|
-
semi: false,
|
11
|
-
// 使用单引号
|
12
|
-
singleQuote: false,
|
13
|
-
// 对象的 key 仅在必要时用引号
|
14
|
-
quoteProps: "as-needed",
|
15
|
-
// jsx 不使用单引号,而使用双引号
|
16
|
-
jsxSingleQuote: false,
|
17
|
-
// 末尾不需要逗号
|
18
|
-
trailingComma: "es5",
|
19
|
-
// 大括号内的首尾需要空格
|
20
|
-
bracketSpacing: true,
|
21
|
-
// jsx 标签的反尖括号需要换行
|
22
|
-
jsxBracketSameLine: false,
|
23
|
-
// 箭头函数,只有一个参数的时候,也需要括号
|
24
|
-
arrowParens: "always",
|
25
|
-
// 每个文件格式化的范围是文件的全部内容
|
26
|
-
rangeStart: 0,
|
27
|
-
rangeEnd: Infinity,
|
28
|
-
// 不需要写文件开头的 @prettier
|
29
|
-
requirePragma: false,
|
30
|
-
// 不需要自动在文件开头插入 @prettier
|
31
|
-
insertPragma: false,
|
32
|
-
// 使用默认的折行标准
|
33
|
-
proseWrap: "preserve",
|
34
|
-
// 根据显示样式决定 html 要不要折行
|
35
|
-
htmlWhitespaceSensitivity: "css",
|
36
|
-
// 换行符使用 lf
|
37
|
-
endOfLine: "lf",
|
38
|
-
}
|
package/src/index.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from "./services"
|