tencentcloud-sdk-nodejs-igtm 4.1.116 → 4.1.149
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](
|
|
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 进行调用](
|
|
148
|
+
详细使用请参阅示例:[使用 Common Client 进行调用](examples/common)
|
|
147
149
|
|
|
148
150
|
## 更多示例
|
|
149
151
|
|
|
150
|
-
请参考 [examples](
|
|
152
|
+
请参考 [examples](examples) 目录。
|
|
151
153
|
|
|
152
154
|
# 相关配置
|
|
153
155
|
|
|
154
156
|
## 代理
|
|
155
157
|
|
|
156
|
-
如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.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-igtm",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.149",
|
|
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/
|
|
48
|
+
"@types/ini": "^4.1.1",
|
|
48
49
|
"@types/json-bigint": "^1.0.1",
|
|
49
|
-
"@types/node": "^
|
|
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": "^
|
|
65
|
+
"typescript": "^5.9.2",
|
|
66
|
+
"vitest": "2.1.9"
|
|
65
67
|
}
|
|
66
68
|
}
|
|
@@ -29,7 +29,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
29
29
|
/**
|
|
30
30
|
* 实例详情
|
|
31
31
|
*/
|
|
32
|
-
DescribeInstanceDetail(req
|
|
32
|
+
DescribeInstanceDetail(req: DescribeInstanceDetailRequest, cb?: (error: string, rep: DescribeInstanceDetailResponse) => void): Promise<DescribeInstanceDetailResponse>;
|
|
33
33
|
/**
|
|
34
34
|
* 获取地址所属地域
|
|
35
35
|
*/
|
|
@@ -854,7 +854,7 @@ export interface ModifyStrategyRequest {
|
|
|
854
854
|
/**
|
|
855
855
|
* DescribeDetectors请求参数结构体
|
|
856
856
|
*/
|
|
857
|
-
export
|
|
857
|
+
export type DescribeDetectorsRequest = null;
|
|
858
858
|
/**
|
|
859
859
|
* DeleteStrategy请求参数结构体
|
|
860
860
|
*/
|
|
@@ -999,6 +999,10 @@ export interface CreateMonitorRequest {
|
|
|
999
999
|
* DescribeDetectTaskPackageList请求参数结构体
|
|
1000
1000
|
*/
|
|
1001
1001
|
export interface DescribeDetectTaskPackageListRequest {
|
|
1002
|
+
/**
|
|
1003
|
+
* 偏移量
|
|
1004
|
+
*/
|
|
1005
|
+
Offset?: number;
|
|
1002
1006
|
/**
|
|
1003
1007
|
* 每页条数
|
|
1004
1008
|
*/
|
|
@@ -1100,7 +1104,12 @@ export interface DescribeMonitorDetailResponse {
|
|
|
1100
1104
|
/**
|
|
1101
1105
|
* DescribeInstanceDetail请求参数结构体
|
|
1102
1106
|
*/
|
|
1103
|
-
export
|
|
1107
|
+
export interface DescribeInstanceDetailRequest {
|
|
1108
|
+
/**
|
|
1109
|
+
* 实例id
|
|
1110
|
+
*/
|
|
1111
|
+
InstanceId: string;
|
|
1112
|
+
}
|
|
1104
1113
|
/**
|
|
1105
1114
|
* 线路列表
|
|
1106
1115
|
*/
|
|
@@ -1181,6 +1190,10 @@ export interface Address {
|
|
|
1181
1190
|
* CreateInstance返回参数结构体
|
|
1182
1191
|
*/
|
|
1183
1192
|
export interface CreateInstanceResponse {
|
|
1193
|
+
/**
|
|
1194
|
+
* 实例id
|
|
1195
|
+
*/
|
|
1196
|
+
InstanceId?: string;
|
|
1184
1197
|
/**
|
|
1185
1198
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1186
1199
|
*/
|
|
@@ -1265,6 +1278,10 @@ export interface CreateAddressPoolResponse {
|
|
|
1265
1278
|
* DescribeInstancePackageList请求参数结构体
|
|
1266
1279
|
*/
|
|
1267
1280
|
export interface DescribeInstancePackageListRequest {
|
|
1281
|
+
/**
|
|
1282
|
+
* 偏移量
|
|
1283
|
+
*/
|
|
1284
|
+
Offset?: number;
|
|
1268
1285
|
/**
|
|
1269
1286
|
* 每页条数
|
|
1270
1287
|
*/
|
|
@@ -1303,6 +1320,10 @@ export interface DescribeMonitorsRequest {
|
|
|
1303
1320
|
* 分页,当前分页记录数
|
|
1304
1321
|
*/
|
|
1305
1322
|
Limit?: number;
|
|
1323
|
+
/**
|
|
1324
|
+
* 查询过滤条件:MonitorName:监控器名称;MonitorId:监控器id
|
|
1325
|
+
*/
|
|
1326
|
+
Filters?: Array<ResourceFilter>;
|
|
1306
1327
|
/**
|
|
1307
1328
|
* 是否查探测次数0否1是
|
|
1308
1329
|
*/
|
|
@@ -1776,6 +1797,10 @@ export interface DescribeQuotasResponse {
|
|
|
1776
1797
|
* ModifyInstanceConfig请求参数结构体
|
|
1777
1798
|
*/
|
|
1778
1799
|
export interface ModifyInstanceConfigRequest {
|
|
1800
|
+
/**
|
|
1801
|
+
* 实例id
|
|
1802
|
+
*/
|
|
1803
|
+
InstanceId: string;
|
|
1779
1804
|
/**
|
|
1780
1805
|
* 实例配置详情
|
|
1781
1806
|
*/
|