tencentcloud-sdk-nodejs-cdwdoris 4.1.102 → 4.1.126

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 CHANGED
@@ -62,6 +62,8 @@ npm install tencentcloud-sdk-slim-nodejs --save
62
62
 
63
63
  1. clone 代码到本地:
64
64
  ```
65
+ git clone https://cnb.cool/tencent/cloud/api/sdk/tencentcloud-sdk-nodejs
66
+ # 或者
65
67
  git clone https://github.com/tencentcloud/tencentcloud-sdk-nodejs
66
68
  # 或者
67
69
  git clone https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs
@@ -135,7 +137,7 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
135
137
  // ...
136
138
  ```
137
139
 
138
- 实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts)。
140
+ 实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](src/common/interface.ts)。
139
141
 
140
142
  ## Common Client
141
143
 
@@ -143,17 +145,17 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
143
145
 
144
146
  **注意,您必须明确知道您调用的接口所需参数,否则可能会调用失败。**
145
147
 
146
- 详细使用请参阅示例:[使用 Common Client 进行调用](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/tree/master/examples/common)
148
+ 详细使用请参阅示例:[使用 Common Client 进行调用](examples/common)
147
149
 
148
150
  ## 更多示例
149
151
 
150
- 请参考 [examples](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/tree/master/examples) 目录。
152
+ 请参考 [examples](examples) 目录。
151
153
 
152
154
  # 相关配置
153
155
 
154
156
  ## 代理
155
157
 
156
- 如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
158
+ 如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
157
159
 
158
160
  # 凭证管理
159
161
 
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-cdwdoris",
3
- "version": "4.1.102",
3
+ "version": "4.1.126",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -12,7 +12,8 @@
12
12
  "build:es": "tsc -p tsconfig.es.json",
13
13
  "build:slim": "node ./scripts/build_slim.js",
14
14
  "prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'",
15
- "clean": "rimraf tencentcloud es"
15
+ "clean": "rimraf tencentcloud es",
16
+ "test:common": "vitest run"
16
17
  },
17
18
  "engines": {
18
19
  "node": ">=10"
@@ -44,9 +45,9 @@
44
45
  "url": "https://github.com/tencentcloud/tencentcloud-sdk-nodejs"
45
46
  },
46
47
  "devDependencies": {
47
- "@types/form-data": "^2.5.0",
48
+ "@types/ini": "^4.1.1",
48
49
  "@types/json-bigint": "^1.0.1",
49
- "@types/node": "^14.0.26",
50
+ "@types/node": "^18.0.0",
50
51
  "@types/node-fetch": "^2.5.7",
51
52
  "@types/uuid": "^9.0.8",
52
53
  "@typescript-eslint/eslint-plugin": "^2.34.0",
@@ -61,6 +62,7 @@
61
62
  "prettier": "^2.3.0",
62
63
  "rimraf": "^5.0.10",
63
64
  "ts-node": "^8.10.2",
64
- "typescript": "^3.9.7"
65
+ "typescript": "^5.9.2",
66
+ "vitest": "2.1.9"
65
67
  }
66
68
  }
@@ -2314,7 +2314,7 @@ export interface RestartClusterForConfigsResponse {
2314
2314
  */
2315
2315
  export interface InstanceInfo {
2316
2316
  /**
2317
- * 集群实例ID, "cdw-xxxx" 字符串类型
2317
+ * 集群实例ID, "cdwdoris-xxxx" 字符串类型
2318
2318
  */
2319
2319
  InstanceId?: string;
2320
2320
  /**
@@ -2323,9 +2323,10 @@ export interface InstanceInfo {
2323
2323
  InstanceName?: string;
2324
2324
  /**
2325
2325
  * 状态,
2326
- Init 创建中; Serving 运行中;
2327
- Deleted已销毁;Deleting 销毁中;
2328
- Modify 集群变更中;
2326
+ Init 创建中
2327
+ Serving 运行中
2328
+ Isolated 已隔离
2329
+ Changing 变更中
2329
2330
  */
2330
2331
  Status?: string;
2331
2332
  /**
@@ -2392,7 +2393,7 @@ export interface InstanceInfo {
2392
2393
  */
2393
2394
  RegionId?: number;
2394
2395
  /**
2395
- * 可用区说明,例如 "广州二区"
2396
+ * 可用区说明,例如 "广州三区"
2396
2397
  */
2397
2398
  ZoneDesc?: string;
2398
2399
  /**
@@ -2542,6 +2543,14 @@ export interface InstanceInfo {
2542
2543
  * 存算分离的指标 当是true 不支持新建计算组
2543
2544
  */
2544
2545
  IsMasterNonVM?: boolean;
2546
+ /**
2547
+ * Cos容量包大小
2548
+ */
2549
+ CosPkgCapacity?: number;
2550
+ /**
2551
+ * 集群是否使用托管桶
2552
+ */
2553
+ UseManagedBucket?: boolean;
2545
2554
  }
2546
2555
  /**
2547
2556
  * DescribeUserBindWorkloadGroup请求参数结构体
@@ -3420,7 +3429,11 @@ export interface CreateWorkloadGroupResponse {
3420
3429
  */
3421
3430
  export interface DescribeInstanceStateResponse {
3422
3431
  /**
3423
- * 集群状态,例如:Serving
3432
+ * 集群状态
3433
+ Init 创建中
3434
+ Serving 运行中
3435
+ Isolated 已隔离
3436
+ Changing 变更中
3424
3437
  */
3425
3438
  InstanceState?: string;
3426
3439
  /**
@@ -1,4 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.cdwdoris = void 0;
3
4
  var cdwdoris_1 = require("./cdwdoris");
4
5
  Object.defineProperty(exports, "cdwdoris", { enumerable: true, get: function () { return cdwdoris_1.cdwdoris; } });