tencentcloud-sdk-nodejs-gwlb 4.1.117 → 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-gwlb",
|
|
3
|
-
"version": "4.1.
|
|
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": "^
|
|
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": "^
|
|
64
|
+
"typescript": "^5.9.2",
|
|
65
|
+
"vitest": "2.1.9"
|
|
65
66
|
}
|
|
66
67
|
}
|
|
@@ -924,6 +924,37 @@ export interface TargetGroupInfo {
|
|
|
924
924
|
* 目标组的标签。
|
|
925
925
|
*/
|
|
926
926
|
Tag?: Array<TagInfo>;
|
|
927
|
+
/**
|
|
928
|
+
* 流量分发方式
|
|
929
|
+
|
|
930
|
+
- STATELESS:无状态
|
|
931
|
+
- STATEFUL: 有状态
|
|
932
|
+
*/
|
|
933
|
+
ForwardingMode?: string;
|
|
934
|
+
/**
|
|
935
|
+
* TCP协议连接空闲超时时间,可配置60s-6000s,默认350s。
|
|
936
|
+
*/
|
|
937
|
+
TcpIdleConnectTimeout?: number;
|
|
938
|
+
/**
|
|
939
|
+
* 其他协议连接空闲超时时间,可配置5s-180s,默认120s
|
|
940
|
+
*/
|
|
941
|
+
OthersIdleConnectTimeout?: number;
|
|
942
|
+
/**
|
|
943
|
+
* 重新调度功能内的解绑后端服务开关,开关打开后解绑后端服务会触发重新调度。
|
|
944
|
+
*/
|
|
945
|
+
RescheduleUnbindRs?: boolean;
|
|
946
|
+
/**
|
|
947
|
+
* 解绑RS后开启重调度的时间,可配置0s-3600s,默认0s
|
|
948
|
+
*/
|
|
949
|
+
RescheduleUnbindRsStartTime?: number;
|
|
950
|
+
/**
|
|
951
|
+
* 重新调度功能内的后端服务健康探测异常开关,开关打开后后端服务健康检查异常会触发重新调度。
|
|
952
|
+
*/
|
|
953
|
+
RescheduleUnhealthy?: boolean;
|
|
954
|
+
/**
|
|
955
|
+
* 后端服务健康探测异常后开启重调度的时间,可配置0s-3600s,默认0s
|
|
956
|
+
*/
|
|
957
|
+
RescheduleUnhealthyStartTime?: number;
|
|
927
958
|
}
|
|
928
959
|
/**
|
|
929
960
|
* DescribeGatewayLoadBalancers返回参数结构体
|