tencentcloud-sdk-nodejs-tem 4.0.1052 → 4.1.24
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 +27 -5
- package/es/index.js +1 -0
- package/es/services/index.js +1 -0
- package/es/services/tem/index.js +6 -0
- package/es/services/tem/v20201221/index.js +6 -0
- package/es/services/tem/v20201221/tem_client.js +57 -0
- package/es/services/tem/v20201221/tem_models.js +0 -0
- package/es/services/tem/v20210701/index.js +6 -0
- package/es/services/tem/v20210701/tem_client.js +156 -0
- package/es/services/tem/v20210701/tem_models.js +0 -0
- package/package.json +26 -8
- package/tencentcloud/services/tem/index.d.ts +4 -4
- package/tencentcloud/services/tem/index.js +2 -2
- package/tencentcloud/services/tem/v20201221/index.js +2 -1
- package/tencentcloud/services/tem/v20201221/tem_client.js +2 -1
- package/tencentcloud/services/tem/v20210701/index.js +2 -1
- package/tencentcloud/services/tem/v20210701/tem_client.js +2 -1
- package/tencentcloud/services/tem/v20210701/tem_models.d.ts +57 -306
- package/index.d.ts +0 -2
- package/index.js +0 -6
- package/prettier.config.js +0 -38
- package/src/index.ts +0 -1
- package/src/services/index.ts +0 -1
- package/src/services/tem/index.ts +0 -7
- package/src/services/tem/v20201221/index.ts +0 -6
- package/src/services/tem/v20201221/tem_client.ts +0 -255
- package/src/services/tem/v20201221/tem_models.ts +0 -1430
- package/src/services/tem/v20210701/index.ts +0 -6
- package/src/services/tem/v20210701/tem_client.ts +0 -685
- package/src/services/tem/v20210701/tem_models.ts +0 -4453
- package/tsconfig.json +0 -33
- package/typings/index.d.ts +0 -2
package/README.md
CHANGED
|
@@ -44,18 +44,40 @@ npm install tencentcloud-sdk-nodejs-vpc --save
|
|
|
44
44
|
|
|
45
45
|
### 安装全产品 SDK
|
|
46
46
|
|
|
47
|
+
如果项目依赖的云产品较多,可以引入全产品 SDK。
|
|
48
|
+
|
|
47
49
|
```
|
|
48
50
|
npm install tencentcloud-sdk-nodejs --save
|
|
49
51
|
```
|
|
50
52
|
|
|
51
|
-
全产品 SDK
|
|
53
|
+
全产品 SDK 包含所有云产品调用代码和 TypeScript 类型文件,体积偏大。对于体积敏感的场景,推荐安装指定产品 SDK。
|
|
54
|
+
|
|
55
|
+
如果既希望全产品调用,又对包体积比较敏感,可以使用 Slim 版本 SDK。Slim SDK 移除类型文件,并进行了代码压缩,适合体积敏感场景使用:
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
npm install tencentcloud-sdk-slim-nodejs --save
|
|
59
|
+
```
|
|
52
60
|
|
|
53
61
|
## 通过源码包安装
|
|
54
62
|
|
|
55
|
-
1.
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
63
|
+
1. clone 代码到本地:
|
|
64
|
+
```
|
|
65
|
+
git clone https://github.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
66
|
+
# 或者
|
|
67
|
+
git clone https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
68
|
+
```
|
|
69
|
+
2. 在项目根目录执行以下命令完成构建:
|
|
70
|
+
```
|
|
71
|
+
npm install && npm run build
|
|
72
|
+
```
|
|
73
|
+
3. 打包 NPM 压缩文件,例如 `tencentcloud-sdk-nodejs-4.0.0.tgz`
|
|
74
|
+
```
|
|
75
|
+
npm pack
|
|
76
|
+
```
|
|
77
|
+
4. 安装包到你的项目里:
|
|
78
|
+
```
|
|
79
|
+
npm install /path/to/tencentcloud-sdk-nodejs/tencentcloud-sdk-nodejs-4.0.0.tgz
|
|
80
|
+
```
|
|
59
81
|
|
|
60
82
|
# 示例
|
|
61
83
|
|
package/es/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./services";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { tem } from "./tem";
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
+
export class Client extends TencentCloudCommon.AbstractClient {
|
|
3
|
+
constructor(clientConfig) {
|
|
4
|
+
super("tem.tencentcloudapi.com", "2020-12-21", clientConfig);
|
|
5
|
+
}
|
|
6
|
+
async ModifyNamespace(req, cb) {
|
|
7
|
+
return this.request("ModifyNamespace", req, cb);
|
|
8
|
+
}
|
|
9
|
+
async CreateNamespace(req, cb) {
|
|
10
|
+
return this.request("CreateNamespace", req, cb);
|
|
11
|
+
}
|
|
12
|
+
async ModifyIngress(req, cb) {
|
|
13
|
+
return this.request("ModifyIngress", req, cb);
|
|
14
|
+
}
|
|
15
|
+
async GenerateDownloadUrl(req, cb) {
|
|
16
|
+
return this.request("GenerateDownloadUrl", req, cb);
|
|
17
|
+
}
|
|
18
|
+
async CreateCosToken(req, cb) {
|
|
19
|
+
return this.request("CreateCosToken", req, cb);
|
|
20
|
+
}
|
|
21
|
+
async DescribeIngress(req, cb) {
|
|
22
|
+
return this.request("DescribeIngress", req, cb);
|
|
23
|
+
}
|
|
24
|
+
async CreateCosTokenV2(req, cb) {
|
|
25
|
+
return this.request("CreateCosTokenV2", req, cb);
|
|
26
|
+
}
|
|
27
|
+
async DeployServiceV2(req, cb) {
|
|
28
|
+
return this.request("DeployServiceV2", req, cb);
|
|
29
|
+
}
|
|
30
|
+
async CreateServiceV2(req, cb) {
|
|
31
|
+
return this.request("CreateServiceV2", req, cb);
|
|
32
|
+
}
|
|
33
|
+
async DescribeRelatedIngresses(req, cb) {
|
|
34
|
+
return this.request("DescribeRelatedIngresses", req, cb);
|
|
35
|
+
}
|
|
36
|
+
async ModifyServiceInfo(req, cb) {
|
|
37
|
+
return this.request("ModifyServiceInfo", req, cb);
|
|
38
|
+
}
|
|
39
|
+
async RestartServiceRunPod(req, cb) {
|
|
40
|
+
return this.request("RestartServiceRunPod", req, cb);
|
|
41
|
+
}
|
|
42
|
+
async CreateResource(req, cb) {
|
|
43
|
+
return this.request("CreateResource", req, cb);
|
|
44
|
+
}
|
|
45
|
+
async DescribeServiceRunPodListV2(req, cb) {
|
|
46
|
+
return this.request("DescribeServiceRunPodListV2", req, cb);
|
|
47
|
+
}
|
|
48
|
+
async DescribeIngresses(req, cb) {
|
|
49
|
+
return this.request("DescribeIngresses", req, cb);
|
|
50
|
+
}
|
|
51
|
+
async DescribeNamespaces(req, cb) {
|
|
52
|
+
return this.request("DescribeNamespaces", req, cb);
|
|
53
|
+
}
|
|
54
|
+
async DeleteIngress(req, cb) {
|
|
55
|
+
return this.request("DeleteIngress", req, cb);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
+
export class Client extends TencentCloudCommon.AbstractClient {
|
|
3
|
+
constructor(clientConfig) {
|
|
4
|
+
super("tem.tencentcloudapi.com", "2021-07-01", clientConfig);
|
|
5
|
+
}
|
|
6
|
+
async ModifyConfigData(req, cb) {
|
|
7
|
+
return this.request("ModifyConfigData", req, cb);
|
|
8
|
+
}
|
|
9
|
+
async DescribeApplicationsStatus(req, cb) {
|
|
10
|
+
return this.request("DescribeApplicationsStatus", req, cb);
|
|
11
|
+
}
|
|
12
|
+
async DescribeApplicationServiceList(req, cb) {
|
|
13
|
+
return this.request("DescribeApplicationServiceList", req, cb);
|
|
14
|
+
}
|
|
15
|
+
async DescribePagedLogConfigList(req, cb) {
|
|
16
|
+
return this.request("DescribePagedLogConfigList", req, cb);
|
|
17
|
+
}
|
|
18
|
+
async ModifyIngress(req, cb) {
|
|
19
|
+
return this.request("ModifyIngress", req, cb);
|
|
20
|
+
}
|
|
21
|
+
async EnableApplicationAutoscaler(req, cb) {
|
|
22
|
+
return this.request("EnableApplicationAutoscaler", req, cb);
|
|
23
|
+
}
|
|
24
|
+
async ModifyApplicationReplicas(req, cb) {
|
|
25
|
+
return this.request("ModifyApplicationReplicas", req, cb);
|
|
26
|
+
}
|
|
27
|
+
async CreateApplicationAutoscaler(req, cb) {
|
|
28
|
+
return this.request("CreateApplicationAutoscaler", req, cb);
|
|
29
|
+
}
|
|
30
|
+
async RestartApplicationPod(req, cb) {
|
|
31
|
+
return this.request("RestartApplicationPod", req, cb);
|
|
32
|
+
}
|
|
33
|
+
async ModifyLogConfig(req, cb) {
|
|
34
|
+
return this.request("ModifyLogConfig", req, cb);
|
|
35
|
+
}
|
|
36
|
+
async DeleteApplication(req, cb) {
|
|
37
|
+
return this.request("DeleteApplication", req, cb);
|
|
38
|
+
}
|
|
39
|
+
async DescribeEnvironmentStatus(req, cb) {
|
|
40
|
+
return this.request("DescribeEnvironmentStatus", req, cb);
|
|
41
|
+
}
|
|
42
|
+
async ResumeDeployApplication(req, cb) {
|
|
43
|
+
return this.request("ResumeDeployApplication", req, cb);
|
|
44
|
+
}
|
|
45
|
+
async DeleteIngress(req, cb) {
|
|
46
|
+
return this.request("DeleteIngress", req, cb);
|
|
47
|
+
}
|
|
48
|
+
async DeployApplication(req, cb) {
|
|
49
|
+
return this.request("DeployApplication", req, cb);
|
|
50
|
+
}
|
|
51
|
+
async ModifyApplicationAutoscaler(req, cb) {
|
|
52
|
+
return this.request("ModifyApplicationAutoscaler", req, cb);
|
|
53
|
+
}
|
|
54
|
+
async DescribeDeployApplicationDetail(req, cb) {
|
|
55
|
+
return this.request("DescribeDeployApplicationDetail", req, cb);
|
|
56
|
+
}
|
|
57
|
+
async ModifyApplicationService(req, cb) {
|
|
58
|
+
return this.request("ModifyApplicationService", req, cb);
|
|
59
|
+
}
|
|
60
|
+
async ModifyEnvironment(req, cb) {
|
|
61
|
+
return this.request("ModifyEnvironment", req, cb);
|
|
62
|
+
}
|
|
63
|
+
async DescribeEnvironment(req, cb) {
|
|
64
|
+
return this.request("DescribeEnvironment", req, cb);
|
|
65
|
+
}
|
|
66
|
+
async DescribeLogConfig(req, cb) {
|
|
67
|
+
return this.request("DescribeLogConfig", req, cb);
|
|
68
|
+
}
|
|
69
|
+
async StopApplication(req, cb) {
|
|
70
|
+
return this.request("StopApplication", req, cb);
|
|
71
|
+
}
|
|
72
|
+
async CreateLogConfig(req, cb) {
|
|
73
|
+
return this.request("CreateLogConfig", req, cb);
|
|
74
|
+
}
|
|
75
|
+
async CreateApplicationService(req, cb) {
|
|
76
|
+
return this.request("CreateApplicationService", req, cb);
|
|
77
|
+
}
|
|
78
|
+
async DescribeApplicationInfo(req, cb) {
|
|
79
|
+
return this.request("DescribeApplicationInfo", req, cb);
|
|
80
|
+
}
|
|
81
|
+
async CreateConfigData(req, cb) {
|
|
82
|
+
return this.request("CreateConfigData", req, cb);
|
|
83
|
+
}
|
|
84
|
+
async DescribeApplicationPods(req, cb) {
|
|
85
|
+
return this.request("DescribeApplicationPods", req, cb);
|
|
86
|
+
}
|
|
87
|
+
async DeleteApplicationAutoscaler(req, cb) {
|
|
88
|
+
return this.request("DeleteApplicationAutoscaler", req, cb);
|
|
89
|
+
}
|
|
90
|
+
async ModifyApplicationInfo(req, cb) {
|
|
91
|
+
return this.request("ModifyApplicationInfo", req, cb);
|
|
92
|
+
}
|
|
93
|
+
async DestroyConfigData(req, cb) {
|
|
94
|
+
return this.request("DestroyConfigData", req, cb);
|
|
95
|
+
}
|
|
96
|
+
async DescribeEnvironments(req, cb) {
|
|
97
|
+
return this.request("DescribeEnvironments", req, cb);
|
|
98
|
+
}
|
|
99
|
+
async CreateCosToken(req, cb) {
|
|
100
|
+
return this.request("CreateCosToken", req, cb);
|
|
101
|
+
}
|
|
102
|
+
async DescribeIngress(req, cb) {
|
|
103
|
+
return this.request("DescribeIngress", req, cb);
|
|
104
|
+
}
|
|
105
|
+
async DeleteApplicationService(req, cb) {
|
|
106
|
+
return this.request("DeleteApplicationService", req, cb);
|
|
107
|
+
}
|
|
108
|
+
async GenerateApplicationPackageDownloadUrl(req, cb) {
|
|
109
|
+
return this.request("GenerateApplicationPackageDownloadUrl", req, cb);
|
|
110
|
+
}
|
|
111
|
+
async CreateEnvironment(req, cb) {
|
|
112
|
+
return this.request("CreateEnvironment", req, cb);
|
|
113
|
+
}
|
|
114
|
+
async DisableApplicationAutoscaler(req, cb) {
|
|
115
|
+
return this.request("DisableApplicationAutoscaler", req, cb);
|
|
116
|
+
}
|
|
117
|
+
async DescribeIngresses(req, cb) {
|
|
118
|
+
return this.request("DescribeIngresses", req, cb);
|
|
119
|
+
}
|
|
120
|
+
async CreateApplication(req, cb) {
|
|
121
|
+
return this.request("CreateApplication", req, cb);
|
|
122
|
+
}
|
|
123
|
+
async RestartApplication(req, cb) {
|
|
124
|
+
return this.request("RestartApplication", req, cb);
|
|
125
|
+
}
|
|
126
|
+
async RollingUpdateApplicationByVersion(req, cb) {
|
|
127
|
+
return this.request("RollingUpdateApplicationByVersion", req, cb);
|
|
128
|
+
}
|
|
129
|
+
async DescribeApplications(req, cb) {
|
|
130
|
+
return this.request("DescribeApplications", req, cb);
|
|
131
|
+
}
|
|
132
|
+
async RevertDeployApplication(req, cb) {
|
|
133
|
+
return this.request("RevertDeployApplication", req, cb);
|
|
134
|
+
}
|
|
135
|
+
async DestroyLogConfig(req, cb) {
|
|
136
|
+
return this.request("DestroyLogConfig", req, cb);
|
|
137
|
+
}
|
|
138
|
+
async DescribeRelatedIngresses(req, cb) {
|
|
139
|
+
return this.request("DescribeRelatedIngresses", req, cb);
|
|
140
|
+
}
|
|
141
|
+
async DescribeConfigData(req, cb) {
|
|
142
|
+
return this.request("DescribeConfigData", req, cb);
|
|
143
|
+
}
|
|
144
|
+
async CreateResource(req, cb) {
|
|
145
|
+
return this.request("CreateResource", req, cb);
|
|
146
|
+
}
|
|
147
|
+
async DescribeApplicationAutoscalerList(req, cb) {
|
|
148
|
+
return this.request("DescribeApplicationAutoscalerList", req, cb);
|
|
149
|
+
}
|
|
150
|
+
async DestroyEnvironment(req, cb) {
|
|
151
|
+
return this.request("DestroyEnvironment", req, cb);
|
|
152
|
+
}
|
|
153
|
+
async DescribeConfigDataList(req, cb) {
|
|
154
|
+
return this.request("DescribeConfigDataList", req, cb);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,16 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tencentcloud-sdk-nodejs-tem",
|
|
3
|
-
"version": "4.
|
|
4
|
-
"description": "
|
|
5
|
-
"main": "tencentcloud/index.js",
|
|
3
|
+
"version": "4.1.24",
|
|
4
|
+
"description": "腾讯云 API NODEJS SDK",
|
|
5
|
+
"main": "./tencentcloud/index.js",
|
|
6
|
+
"module": "./es/index.js",
|
|
7
|
+
"types": "./tencentcloud/index.d.ts",
|
|
6
8
|
"scripts": {
|
|
7
9
|
"test": "mocha -t 10000",
|
|
8
|
-
"build": "
|
|
9
|
-
"
|
|
10
|
+
"build": "concurrently 'npm:build:cjs' 'npm:build:es'",
|
|
11
|
+
"build:cjs": "tsc -p tsconfig.json",
|
|
12
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
13
|
+
"build:slim": "node ./scripts/build_slim.js",
|
|
14
|
+
"prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'",
|
|
15
|
+
"clean": "rimraf tencentcloud es"
|
|
10
16
|
},
|
|
11
17
|
"engines": {
|
|
12
18
|
"node": ">=10"
|
|
13
19
|
},
|
|
20
|
+
"files": [
|
|
21
|
+
"tencentcloud",
|
|
22
|
+
"es"
|
|
23
|
+
],
|
|
14
24
|
"keywords": [
|
|
15
25
|
"tencentcloudapi",
|
|
16
26
|
"tencentcloud",
|
|
@@ -22,7 +32,7 @@
|
|
|
22
32
|
"author": "tencentcloudapi",
|
|
23
33
|
"license": "Apache-2.0",
|
|
24
34
|
"dependencies": {
|
|
25
|
-
"tencentcloud-sdk-nodejs-common": "
|
|
35
|
+
"tencentcloud-sdk-nodejs-common": "*",
|
|
26
36
|
"tslib": "1.13.0"
|
|
27
37
|
},
|
|
28
38
|
"directories": {
|
|
@@ -35,14 +45,22 @@
|
|
|
35
45
|
},
|
|
36
46
|
"devDependencies": {
|
|
37
47
|
"@types/form-data": "^2.5.0",
|
|
48
|
+
"@types/json-bigint": "^1.0.1",
|
|
38
49
|
"@types/node": "^14.0.26",
|
|
39
50
|
"@types/node-fetch": "^2.5.7",
|
|
51
|
+
"@types/uuid": "^9.0.8",
|
|
40
52
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
41
53
|
"@typescript-eslint/parser": "^2.34.0",
|
|
54
|
+
"babel-eslint": "^10.0.2",
|
|
42
55
|
"chai": "^4.2.0",
|
|
56
|
+
"concurrently": "^6.5.1",
|
|
57
|
+
"esbuild": "^0.25.0",
|
|
43
58
|
"eslint": "^6.8.0",
|
|
44
|
-
"
|
|
59
|
+
"eslint-plugin-react": "^7.17.0",
|
|
60
|
+
"mocha": "^8.4.0",
|
|
61
|
+
"prettier": "^2.3.0",
|
|
62
|
+
"rimraf": "^5.0.10",
|
|
45
63
|
"ts-node": "^8.10.2",
|
|
46
64
|
"typescript": "^3.9.7"
|
|
47
65
|
}
|
|
48
|
-
}
|
|
66
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare const tem: {
|
|
2
|
-
v20201221: {
|
|
3
|
-
Client: typeof import("./v20201221/tem_client").Client;
|
|
4
|
-
Models: typeof import("./v20201221/tem_models");
|
|
5
|
-
};
|
|
6
2
|
v20210701: {
|
|
7
3
|
Client: typeof import("./v20210701/tem_client").Client;
|
|
8
4
|
Models: typeof import("./v20210701/tem_models");
|
|
9
5
|
};
|
|
6
|
+
v20201221: {
|
|
7
|
+
Client: typeof import("./v20201221/tem_client").Client;
|
|
8
|
+
Models: typeof import("./v20201221/tem_models");
|
|
9
|
+
};
|
|
10
10
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.tem = void 0;
|
|
4
|
-
const v20201221_1 = require("./v20201221");
|
|
5
4
|
const v20210701_1 = require("./v20210701");
|
|
5
|
+
const v20201221_1 = require("./v20201221");
|
|
6
6
|
exports.tem = {
|
|
7
|
-
v20201221: v20201221_1.v20201221,
|
|
8
7
|
v20210701: v20210701_1.v20210701,
|
|
8
|
+
v20201221: v20201221_1.v20201221,
|
|
9
9
|
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.v20201221 = void 0;
|
|
4
|
-
const
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const Models = tslib_1.__importStar(require("./tem_models"));
|
|
5
6
|
const tem_client_1 = require("./tem_client");
|
|
6
7
|
exports.v20201221 = {
|
|
7
8
|
Client: tem_client_1.Client,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Client = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
4
5
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
5
6
|
/*
|
|
6
7
|
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
@@ -18,7 +19,7 @@ exports.Client = void 0;
|
|
|
18
19
|
* specific language governing permissions and limitations
|
|
19
20
|
* under the License.
|
|
20
21
|
*/
|
|
21
|
-
const TencentCloudCommon = require("tencentcloud-sdk-nodejs-common");
|
|
22
|
+
const TencentCloudCommon = tslib_1.__importStar(require("tencentcloud-sdk-nodejs-common"));
|
|
22
23
|
/**
|
|
23
24
|
* tem client
|
|
24
25
|
* @class
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.v20210701 = void 0;
|
|
4
|
-
const
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const Models = tslib_1.__importStar(require("./tem_models"));
|
|
5
6
|
const tem_client_1 = require("./tem_client");
|
|
6
7
|
exports.v20210701 = {
|
|
7
8
|
Client: tem_client_1.Client,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Client = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
4
5
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
5
6
|
/*
|
|
6
7
|
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
@@ -18,7 +19,7 @@ exports.Client = void 0;
|
|
|
18
19
|
* specific language governing permissions and limitations
|
|
19
20
|
* under the License.
|
|
20
21
|
*/
|
|
21
|
-
const TencentCloudCommon = require("tencentcloud-sdk-nodejs-common");
|
|
22
|
+
const TencentCloudCommon = tslib_1.__importStar(require("tencentcloud-sdk-nodejs-common"));
|
|
22
23
|
/**
|
|
23
24
|
* tem client
|
|
24
25
|
* @class
|