tencentcloud-sdk-nodejs-clb 4.1.118 → 4.1.119

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.
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-clb",
3
- "version": "4.1.118",
3
+ "version": "4.1.119",
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,8 @@
44
45
  "url": "https://github.com/tencentcloud/tencentcloud-sdk-nodejs"
45
46
  },
46
47
  "devDependencies": {
47
- "@types/form-data": "^2.5.0",
48
48
  "@types/json-bigint": "^1.0.1",
49
- "@types/node": "^14.0.26",
49
+ "@types/node": "^18.0.0",
50
50
  "@types/node-fetch": "^2.5.7",
51
51
  "@types/uuid": "^9.0.8",
52
52
  "@typescript-eslint/eslint-plugin": "^2.34.0",
@@ -61,6 +61,7 @@
61
61
  "prettier": "^2.3.0",
62
62
  "rimraf": "^5.0.10",
63
63
  "ts-node": "^8.10.2",
64
- "typescript": "^3.9.7"
64
+ "typescript": "^5.9.2",
65
+ "vitest": "2.1.9"
65
66
  }
66
67
  }
@@ -39,7 +39,7 @@ export interface DescribeTargetGroupListResponse {
39
39
  /**
40
40
  * DescribeQuota请求参数结构体
41
41
  */
42
- export declare type DescribeQuotaRequest = null;
42
+ export type DescribeQuotaRequest = null;
43
43
  /**
44
44
  * DescribeTargetGroupList请求参数结构体
45
45
  */
@@ -939,6 +939,10 @@ export interface AddCustomizedConfigRequest {
939
939
  * 配置内容
940
940
  */
941
941
  ConfigContent: string;
942
+ /**
943
+ * 标签
944
+ */
945
+ Tags?: Array<TagInfo>;
942
946
  }
943
947
  /**
944
948
  * 传统型负载均衡的后端服务相关信息
@@ -2185,7 +2189,7 @@ export interface ModifyLoadBalancerSlaResponse {
2185
2189
  /**
2186
2190
  * DescribeClsLogSet请求参数结构体
2187
2191
  */
2188
- export declare type DescribeClsLogSetRequest = null;
2192
+ export type DescribeClsLogSetRequest = null;
2189
2193
  /**
2190
2194
  * 监听器的信息
2191
2195
  */
@@ -4120,7 +4124,7 @@ export interface DeregisterTargetsResponse {
4120
4124
  /**
4121
4125
  * DescribeLoadBalancerOverview请求参数结构体
4122
4126
  */
4123
- export declare type DescribeLoadBalancerOverviewRequest = null;
4127
+ export type DescribeLoadBalancerOverviewRequest = null;
4124
4128
  /**
4125
4129
  * 重定向目标的信息
4126
4130
  */
@@ -1,4 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.clb = void 0;
3
4
  var clb_1 = require("./clb");
4
5
  Object.defineProperty(exports, "clb", { enumerable: true, get: function () { return clb_1.clb; } });