tencentcloud-sdk-nodejs-cynosdb 4.1.39 → 4.1.41

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-cynosdb",
3
- "version": "4.1.39",
3
+ "version": "4.1.41",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -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请求参数结构体
@@ -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
  */
@@ -7172,6 +7222,10 @@ export interface CynosdbCluster {
7172
7222
  * 实例绑定资源包信息(此处只返回存储资源包,即packageType=DISK)
7173
7223
  */
7174
7224
  ResourcePackages?: Array<ResourcePackage>;
7225
+ /**
7226
+ * 全球数据库唯一标识
7227
+ */
7228
+ GdnId?: string;
7175
7229
  }
7176
7230
  /**
7177
7231
  * OpenWan返回参数结构体
@@ -7455,6 +7509,7 @@ export interface CreateAuditLogFileRequest {
7455
7509
  OrderBy?: string;
7456
7510
  /**
7457
7511
  * 已废弃。
7512
+ * @deprecated
7458
7513
  */
7459
7514
  Filter?: AuditLogFilter;
7460
7515
  /**
@@ -7763,6 +7818,17 @@ export interface CynosdbClusterDetail {
7763
7818
  * 版本标签
7764
7819
  */
7765
7820
  CynosVersionTag?: string;
7821
+ /**
7822
+ * 全球数据库网络唯一标识
7823
+ */
7824
+ GdnId?: string;
7825
+ /**
7826
+ * 集群在全球数据网络中的角色。
7827
+ 主集群- primary
7828
+ 从集群 - standby
7829
+ 如为空,该字段无效
7830
+ */
7831
+ GdnRole?: string;
7766
7832
  }
7767
7833
  /**
7768
7834
  * RestartInstance请求参数结构体