tencentcloud-sdk-nodejs-cynosdb 4.1.39 → 4.1.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -1112,6 +1112,10 @@ export interface CynosdbInstance {
|
|
1112
1112
|
* libradb 节点信息
|
1113
1113
|
*/
|
1114
1114
|
NodeList?: Array<string>;
|
1115
|
+
/**
|
1116
|
+
* 全球数据库唯一标识
|
1117
|
+
*/
|
1118
|
+
GdnId?: string;
|
1115
1119
|
}
|
1116
1120
|
/**
|
1117
1121
|
* DescribeClusterPasswordComplexity返回参数结构体
|
@@ -1956,6 +1960,7 @@ export interface DescribeAuditLogsRequest {
|
|
1956
1960
|
OrderBy?: string;
|
1957
1961
|
/**
|
1958
1962
|
* 已废弃。
|
1963
|
+
* @deprecated
|
1959
1964
|
*/
|
1960
1965
|
Filter?: AuditLogFilter;
|
1961
1966
|
/**
|
@@ -2179,6 +2184,14 @@ export interface CreateClustersRequest {
|
|
2179
2184
|
* 实例初始化配置信息,主要用于购买集群时选不同规格实例
|
2180
2185
|
*/
|
2181
2186
|
InstanceInitInfos?: Array<InstanceInitInfo>;
|
2187
|
+
/**
|
2188
|
+
* 全球数据库唯一标识
|
2189
|
+
*/
|
2190
|
+
GdnId?: string;
|
2191
|
+
/**
|
2192
|
+
* 数据库代理配置
|
2193
|
+
*/
|
2194
|
+
ProxyConfig?: ProxyConfig;
|
2182
2195
|
}
|
2183
2196
|
/**
|
2184
2197
|
* DescribeClusterParamLogs请求参数结构体
|
@@ -3361,11 +3374,11 @@ export interface RollbackData {
|
|
3361
3374
|
*/
|
3362
3375
|
SnapshotTime?: string;
|
3363
3376
|
/**
|
3364
|
-
* 回档到
|
3377
|
+
* 回档到 Serverless 集群时最小 CPU
|
3365
3378
|
*/
|
3366
3379
|
MinCpu?: number;
|
3367
3380
|
/**
|
3368
|
-
* 回档到
|
3381
|
+
* 回档到 Serverless 集群时最大 CPU
|
3369
3382
|
*/
|
3370
3383
|
MaxCpu?: number;
|
3371
3384
|
/**
|
@@ -3706,6 +3719,43 @@ export interface DescribeParamTemplatesResponse {
|
|
3706
3719
|
*/
|
3707
3720
|
RequestId?: string;
|
3708
3721
|
}
|
3722
|
+
/**
|
3723
|
+
* 访问代理配置
|
3724
|
+
*/
|
3725
|
+
export interface ProxyConfig {
|
3726
|
+
/**
|
3727
|
+
* 数据库代理组节点个数(该参数不再建议使用,建议使用ProxyZones)
|
3728
|
+
*/
|
3729
|
+
ProxyCount?: number;
|
3730
|
+
/**
|
3731
|
+
* cpu核数
|
3732
|
+
*/
|
3733
|
+
Cpu?: number;
|
3734
|
+
/**
|
3735
|
+
* 内存
|
3736
|
+
*/
|
3737
|
+
Mem?: number;
|
3738
|
+
/**
|
3739
|
+
* 连接池类型:SessionConnectionPool(会话级别连接池 )
|
3740
|
+
*/
|
3741
|
+
ConnectionPoolType?: string;
|
3742
|
+
/**
|
3743
|
+
* 是否开启连接池,yes-开启,no-不开启
|
3744
|
+
*/
|
3745
|
+
OpenConnectionPool?: string;
|
3746
|
+
/**
|
3747
|
+
* 连接池阈值:单位(秒)
|
3748
|
+
*/
|
3749
|
+
ConnectionPoolTimeOut?: number;
|
3750
|
+
/**
|
3751
|
+
* 描述说明
|
3752
|
+
*/
|
3753
|
+
Description?: string;
|
3754
|
+
/**
|
3755
|
+
* 数据库节点信息(该参数与ProxyCount需要任选一个输入)
|
3756
|
+
*/
|
3757
|
+
ProxyZones?: Array<ProxyZone>;
|
3758
|
+
}
|
3709
3759
|
/**
|
3710
3760
|
* 数据库地址
|
3711
3761
|
*/
|
@@ -7082,6 +7132,10 @@ export interface CynosdbCluster {
|
|
7082
7132
|
* cynos内核版本
|
7083
7133
|
*/
|
7084
7134
|
CynosVersion?: string;
|
7135
|
+
/**
|
7136
|
+
* cynos版本标签
|
7137
|
+
*/
|
7138
|
+
CynosVersionTag?: string;
|
7085
7139
|
/**
|
7086
7140
|
* 存储容量
|
7087
7141
|
*/
|
@@ -7172,6 +7226,14 @@ export interface CynosdbCluster {
|
|
7172
7226
|
* 实例绑定资源包信息(此处只返回存储资源包,即packageType=DISK)
|
7173
7227
|
*/
|
7174
7228
|
ResourcePackages?: Array<ResourcePackage>;
|
7229
|
+
/**
|
7230
|
+
* 全球数据库唯一标识
|
7231
|
+
*/
|
7232
|
+
GdnId?: string;
|
7233
|
+
/**
|
7234
|
+
* 集群角色。主集群- primary,从集群 - standby,如果 GdnId为空,该字段无效。
|
7235
|
+
*/
|
7236
|
+
GdnRole?: string;
|
7175
7237
|
}
|
7176
7238
|
/**
|
7177
7239
|
* OpenWan返回参数结构体
|
@@ -7455,6 +7517,7 @@ export interface CreateAuditLogFileRequest {
|
|
7455
7517
|
OrderBy?: string;
|
7456
7518
|
/**
|
7457
7519
|
* 已废弃。
|
7520
|
+
* @deprecated
|
7458
7521
|
*/
|
7459
7522
|
Filter?: AuditLogFilter;
|
7460
7523
|
/**
|
@@ -7763,6 +7826,17 @@ export interface CynosdbClusterDetail {
|
|
7763
7826
|
* 版本标签
|
7764
7827
|
*/
|
7765
7828
|
CynosVersionTag?: string;
|
7829
|
+
/**
|
7830
|
+
* 全球数据库网络唯一标识
|
7831
|
+
*/
|
7832
|
+
GdnId?: string;
|
7833
|
+
/**
|
7834
|
+
* 集群在全球数据网络中的角色。
|
7835
|
+
主集群- primary
|
7836
|
+
从集群 - standby
|
7837
|
+
如为空,该字段无效
|
7838
|
+
*/
|
7839
|
+
GdnRole?: string;
|
7766
7840
|
}
|
7767
7841
|
/**
|
7768
7842
|
* RestartInstance请求参数结构体
|