tencentcloud-sdk-nodejs-cloudstudio 4.0.973 → 4.1.70

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
@@ -1,36 +1,88 @@
1
1
  # 简介
2
2
 
3
- 欢迎使用腾讯云开发者工具套件(SDK),NODEJS SDK 4.0 是云 API 3.0 平台的配套工具。目前已经支持 cvm、vpc、cbs 等产品,后续所有的云服务产品都会接入进来。新版 SDK 实现了统一化,具有各个语言版本的 SDK 使用方法相同,接口调用方式相同,统一的错误码和返回包格式这些优点。
4
- 为方便 NODEJS 开发者调试和接入腾讯云产品 API,这里向您介绍适用于 NODEJS 的腾讯云开发工具包,并提供首次使用开发工具包的简单示例。让您快速获取腾讯云 NODEJS SDK 并开始调用。
3
+ 欢迎使用腾讯云开发者工具套件(SDK),Node.js SDK 4.0 是云 API 3.0 平台的配套工具。
4
+ 为方便 Node.js 开发者调试和接入腾讯云产品 API,这里向您介绍适用于 Node.js 的腾讯云开发工具包,并提供首次使用开发工具包的简单示例。让您快速获取腾讯云 Node.js SDK 并开始调用。
5
5
 
6
6
  # 依赖环境
7
7
 
8
- 1. NODEJS 10.0.0 版本及以上
9
- 2. 从腾讯云控制台 开通相应产品
10
- 3. 获取 SecretID、SecretKey 以及调用地址(endpoint),endpoint 一般形式为\*.tencentcloudapi.com,如 CVM 的调用地址为 cvm.tencentcloudapi.com,具体参考各产品说明。
8
+ 1. Node.js 10.0.0 版本及以上。
9
+ 2. 注意:部分产品需在 [腾讯云控制台](https://console.cloud.tencent.com/) 开通服务后才能使用。
11
10
 
12
11
  # 获取安装
13
12
 
14
- 安装 NODEJS SDK 前,先获取安全凭证。在第一次使用云 API 之前,用户首先需要在腾讯云控制台上申请安全凭证,安全凭证包括 SecretID SecretKey, SecretID 是用于标识 API 调用者的身份,SecretKey 是用于加密签名字符串和服务器端验证签名字符串的密钥。SecretKey 必须严格保管,避免泄露。
13
+ 使用 SDK 需要 API 密钥,可前往 [腾讯云控制台 - 访问密钥](https://console.cloud.tencent.com/cam/capi) 页面申请,API 密钥包括 SecretID SecretKey,密钥须严格保管,避免泄露。
15
14
 
16
- ## 通过 Npm 安装
15
+ ## 通过 npm 安装
17
16
 
18
- 通过 npm 获取安装是使用 NODEJS SDK 的推荐方法,npm 是 NODEJS 的包管理工具。关于 npm 详细可参考[ npm 官网](https://www.npmjs.com/) 。
17
+ 通过 npm 获取安装是使用 Node.js SDK 的推荐方法,关于 npm 详细可参考 [NPM 官网](https://www.npmjs.com/) 。
19
18
 
20
- 1. 执行以下安装命令:
21
- > npm install tencentcloud-sdk-nodejs --save
22
- 2. 在您的代码中引用对应模块代码,可参考示例。
23
- 3. 如上引用方式会将腾讯云所有产品sdk下载到本地,可以将tencentcloud-sdk-nodejs换成tencentcloud-sdk-nodejs-cvm/cbs/vpc等,即可引用特定产品的sdk,代码中可将require("tencentcloud-sdk-nodejs")改为require("tencentcloud-sdk-nodejs-cvm/cbs/vpc"),其余不变,可参考示例,可大大节省存储空间。
19
+ ### 安装指定产品 SDK(推荐)
20
+
21
+ 安装 CVM SDK:
22
+
23
+ ```
24
+ npm install tencentcloud-sdk-nodejs-cvm --save
25
+ ```
26
+
27
+ 安装 VPC SDK:
28
+
29
+ ```
30
+ npm install tencentcloud-sdk-nodejs-vpc --save
31
+ ```
32
+
33
+ 具体产品的缩写表请参考 [products.md](./products.md) 中的包名字段。
34
+
35
+ 安装指定产品 SDK 后,注意修改引入的包名:
36
+
37
+ ```diff
38
+ - const tencentcloud = require("tencentcloud-sdk-nodejs")
39
+ + const { cvm } = require("tencentcloud-sdk-nodejs-cvm")
40
+
41
+ - const CvmClient = tencentcloud.cvm.v20170312.Client
42
+ + const CvmClient = cvm.v20170312.Client
43
+ ```
44
+
45
+ ### 安装全产品 SDK
46
+
47
+ 如果项目依赖的云产品较多,可以引入全产品 SDK。
48
+
49
+ ```
50
+ npm install tencentcloud-sdk-nodejs --save
51
+ ```
52
+
53
+ 全产品 SDK 包含所有云产品调用代码和 TypeScript 类型文件,体积偏大。对于体积敏感的场景,推荐安装指定产品 SDK。
54
+
55
+ 如果既希望全产品调用,又对包体积比较敏感,可以使用 Slim 版本 SDK。Slim SDK 移除类型文件,并进行了代码压缩,适合体积敏感场景使用:
56
+
57
+ ```
58
+ npm install tencentcloud-sdk-slim-nodejs --save
59
+ ```
24
60
 
25
61
  ## 通过源码包安装
26
62
 
27
- 1. 前往 [Github 仓库](https://github.com/tencentcloud/tencentcloud-sdk-nodejs) 或者 [Gitee 仓库](https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs) 下载源码压缩包。
28
- 2. 解压源码包到您项目合适的位置,例如 `sdk/tencentcloud-sdk-nodejs`。
29
- 3. 执行 `npm install ./sdk/tencentcloud-sdk-nodejs`。
30
- 4. 使用 `require("tencentcloud-sdk-nodejs")` 的方式引入sdk,具体可参考示例。
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
+ ```
31
81
 
32
82
  # 示例
33
83
 
84
+ 以云服务器产品查询可用区列表接口为例。
85
+
34
86
  ```js
35
87
  const tencentcloud = require("tencentcloud-sdk-nodejs")
36
88
 
@@ -73,7 +125,7 @@ client.DescribeZones().then(
73
125
  )
74
126
  ```
75
127
 
76
- 在支持 typescript 项目中,采用如下方式调用
128
+ 在支持 TypeScript 项目中,采用如下方式调用
77
129
 
78
130
  ```js
79
131
  import * as tencentcloud from "tencentcloud-sdk-nodejs"
@@ -83,10 +135,11 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
83
135
  // ...
84
136
  ```
85
137
 
86
- 实例化`Client` 的入参支持 `clientConfig` 数据结构和说明 详见 [ClientConfig](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts)
138
+ 实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts)
87
139
 
88
140
  ## Common Client
89
- 从 4.0.714 版本开始腾讯云 NODEJS SDK 支持使用泛用性的 API 调用方式(Common Client)进行请求。您只需要安装 tencentcloud-sdk-nodejs-common 包,即可向任何产品发起调用。
141
+
142
+ 从 4.0.714 版本开始,腾讯云 Node.js SDK 支持使用泛用性的 API 调用方式(Common Client)进行请求。您只需要安装 tencentcloud-sdk-nodejs-common 包,即可向任何产品发起调用。
90
143
 
91
144
  **注意,您必须明确知道您调用的接口所需参数,否则可能会调用失败。**
92
145
 
@@ -94,19 +147,19 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
94
147
 
95
148
  ## 更多示例
96
149
 
97
- 更丰富的使用 demo 请在 examples 目录中寻找。
150
+ 请参考 [examples](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/tree/master/examples) 目录。
98
151
 
99
152
  # 相关配置
100
153
 
101
154
  ## 代理
102
155
 
103
- 如果是有代理的环境下,需要配置代理,请在创建Client时传入 [profile.httpProfile.proxy](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
156
+ 如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
104
157
 
105
158
  # 凭证管理
106
159
 
107
160
  除显式传入凭证外,从 `v4.0.506` 起支持 [腾讯云实例角色](https://cloud.tencent.com/document/product/213/47668)
108
161
 
109
- 在您为实例绑定角色后,您可以在实例中访问相关元数据接口获取临时凭证。用法可参考 [js示例代码](./examples/cvm_role.js) 或 [ts示例代码](./examples/cvm_role.ts)
162
+ 在您为实例绑定角色后,您可以在实例中访问相关元数据接口获取临时凭证。用法可参考 [js 示例代码](./examples/cvm_role.js) 或 [ts 示例代码](./examples/cvm_role.ts)
110
163
  ```javascript
111
164
  // ...
112
165
  const CvmRoleCredential = require("tencentcloud-sdk-nodejs/tencentcloud/common/cvm_role_credential").default
@@ -118,20 +171,16 @@ new XxxClient({
118
171
  })
119
172
  ```
120
173
 
121
- # 旧版 SDK
122
-
123
- 我们推荐使用新版 NODEJS SDK,如果一定要用旧版 SDK,请前往[github 仓库](https://github.com/CFETeam/qcloudapi-sdk)下载。
124
-
125
174
  # 常见问题
126
- - webpack打包出错/浏览器报错
175
+ - webpack 打包出错/浏览器报错
127
176
 
128
- 请**务必不要**将此sdk直接用于web前端(包括小程序等),暴露密钥在这些环境非常不安全。
177
+ 请**务必不要**将此 SDK 直接用于 Web 前端(包括小程序等),暴露密钥在这些环境非常不安全。
129
178
 
130
- 正确的做法是在自己的服务端引用此sdk,并保存好密钥,做好请求鉴权;前端再调用服务端执行业务流程。
179
+ 正确的做法是在自己的服务端引用此 SDK,并保存好密钥,做好请求鉴权,前端再调用服务端执行业务流程。
131
180
 
132
181
  - `The "original" argument must be of type Function.`
133
182
 
134
- 通常是因为nodejs版本低于 `v10` ,或处于非node环境,请再次确认执行环境。
183
+ 通常是因为 Node.js 版本低于 `v10` ,或处于非 Node.js 环境,请再次确认执行环境。
135
184
 
136
185
  - 请求不通
137
186
 
package/es/index.js ADDED
@@ -0,0 +1 @@
1
+ export * from "./services";
@@ -0,0 +1,4 @@
1
+ import { v20230508 } from "./v20230508";
2
+ export const cloudstudio = {
3
+ v20230508: v20230508,
4
+ };
@@ -0,0 +1,33 @@
1
+ import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
+ export class Client extends TencentCloudCommon.AbstractClient {
3
+ constructor(clientConfig) {
4
+ super("cloudstudio.tencentcloudapi.com", "2023-05-08", clientConfig);
5
+ }
6
+ async DescribeConfig(req, cb) {
7
+ return this.request("DescribeConfig", req, cb);
8
+ }
9
+ async ModifyWorkspace(req, cb) {
10
+ return this.request("ModifyWorkspace", req, cb);
11
+ }
12
+ async DescribeWorkspaces(req, cb) {
13
+ return this.request("DescribeWorkspaces", req, cb);
14
+ }
15
+ async DescribeImages(req, cb) {
16
+ return this.request("DescribeImages", req, cb);
17
+ }
18
+ async CreateWorkspace(req, cb) {
19
+ return this.request("CreateWorkspace", req, cb);
20
+ }
21
+ async CreateWorkspaceToken(req, cb) {
22
+ return this.request("CreateWorkspaceToken", req, cb);
23
+ }
24
+ async RemoveWorkspace(req, cb) {
25
+ return this.request("RemoveWorkspace", req, cb);
26
+ }
27
+ async StopWorkspace(req, cb) {
28
+ return this.request("StopWorkspace", req, cb);
29
+ }
30
+ async RunWorkspace(req, cb) {
31
+ return this.request("RunWorkspace", req, cb);
32
+ }
33
+ }
@@ -0,0 +1,6 @@
1
+ import * as Models from "./cloudstudio_models";
2
+ import { Client } from "./cloudstudio_client";
3
+ export const v20230508 = {
4
+ Client: Client,
5
+ Models: Models,
6
+ };
@@ -0,0 +1 @@
1
+ export { cloudstudio } from "./cloudstudio";
package/package.json CHANGED
@@ -1,16 +1,26 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-cloudstudio",
3
- "version": "4.0.973",
4
- "description": "Tencent Cloud API NODEJS SDK",
5
- "main": "tencentcloud/index.js",
3
+ "version": "4.1.70",
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": "tsc",
9
- "prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'"
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": "^4.0.488",
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
- "mocha": "^8.1.1",
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,9 +1,10 @@
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
- * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
7
+ * Copyright (c) 2018 Tencent. All Rights Reserved.
7
8
  *
8
9
  * Licensed under the Apache License, Version 2.0 (the "License");
9
10
  * you may not use this file except in compliance with the License.
@@ -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
  * cloudstudio client
24
25
  * @class
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /*
3
- * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ * Copyright (c) 2018 Tencent. All Rights Reserved.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
6
  * you may not use this file except in compliance with the License.
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.v20230508 = void 0;
4
- const Models = require("./cloudstudio_models");
4
+ const tslib_1 = require("tslib");
5
+ const Models = tslib_1.__importStar(require("./cloudstudio_models"));
5
6
  const cloudstudio_client_1 = require("./cloudstudio_client");
6
7
  exports.v20230508 = {
7
8
  Client: cloudstudio_client_1.Client,
package/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- import * as tencentcloud from './tencentcloud';
2
- export default tencentcloud;
package/index.js DELETED
@@ -1,6 +0,0 @@
1
- 'use strict'
2
- Object.defineProperty(exports, '__esModule', { value: true })
3
- const tslib_1 = require('tslib')
4
- const tencentcloud = tslib_1.__importStar(require('./tencentcloud'))
5
- exports.default = tencentcloud
6
- //# sourceMappingURL=index.js.map
@@ -1,38 +0,0 @@
1
- // prettier.config.js
2
- module.exports = {
3
- // 一行最多 100 字符
4
- printWidth: 100,
5
- // 使用 4 个空格缩进
6
- tabWidth: 2,
7
- // 不使用缩进符,而使用空格
8
- useTabs: false,
9
- // 行尾需要有分号
10
- semi: false,
11
- // 使用单引号
12
- singleQuote: false,
13
- // 对象的 key 仅在必要时用引号
14
- quoteProps: "as-needed",
15
- // jsx 不使用单引号,而使用双引号
16
- jsxSingleQuote: false,
17
- // 末尾不需要逗号
18
- trailingComma: "es5",
19
- // 大括号内的首尾需要空格
20
- bracketSpacing: true,
21
- // jsx 标签的反尖括号需要换行
22
- jsxBracketSameLine: false,
23
- // 箭头函数,只有一个参数的时候,也需要括号
24
- arrowParens: "always",
25
- // 每个文件格式化的范围是文件的全部内容
26
- rangeStart: 0,
27
- rangeEnd: Infinity,
28
- // 不需要写文件开头的 @prettier
29
- requirePragma: false,
30
- // 不需要自动在文件开头插入 @prettier
31
- insertPragma: false,
32
- // 使用默认的折行标准
33
- proseWrap: "preserve",
34
- // 根据显示样式决定 html 要不要折行
35
- htmlWhitespaceSensitivity: "css",
36
- // 换行符使用 lf
37
- endOfLine: "lf",
38
- }
package/products.md DELETED
@@ -1,258 +0,0 @@
1
- | 包名 | 产品中文名 | 更新时间 |
2
- |-|-|-|
3
- | aa | [活动防刷](https://cloud.tencent.com/document/product/1189) | 2023-05-18 01:01:13 |
4
- | aai | [](https://cloud.tencent.com/document/product) | 2019-08-08 23:15:13 |
5
- | acp | [应用合规平台](https://cloud.tencent.com/document/product/1553) | 2024-11-01 01:03:06 |
6
- | advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2024-10-15 01:02:26 |
7
- | af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2024-05-31 01:07:20 |
8
- | afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2024-05-31 01:07:25 |
9
- | aiart | [大模型图像创作引擎](https://cloud.tencent.com/document/product/1668) | 2024-11-15 01:07:37 |
10
- | ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-08-17 01:06:14 |
11
- | ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2024-09-03 01:07:31 |
12
- | anicloud | [动效素材服务](https://cloud.tencent.com/document/product/1641) | 2023-05-18 01:01:53 |
13
- | antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/297) | 2024-08-22 01:03:05 |
14
- | apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-04-04 06:05:36 |
15
- | ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-04-04 06:05:40 |
16
- | api | [云 API](https://cloud.tencent.com/document/product/1278) | 2023-01-05 01:02:52 |
17
- | apigateway | [API 网关](https://cloud.tencent.com/document/product/628) | 2024-11-06 01:08:54 |
18
- | apm | [应用性能监控](https://cloud.tencent.com/document/product/1463) | 2024-11-15 01:09:10 |
19
- | as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2024-11-15 01:09:21 |
20
- | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2024-11-11 01:05:31 |
21
- | asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2023-05-18 01:04:02 |
22
- | ba | [ICP备案](https://cloud.tencent.com/document/product/243) | 2024-04-22 01:08:02 |
23
- | batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2024-11-15 01:10:08 |
24
- | bda | [人体分析](https://cloud.tencent.com/document/product/1208) | 2024-11-14 01:10:31 |
25
- | bi | [商业智能分析 BI](https://cloud.tencent.com/document/product/590) | 2024-11-08 01:10:34 |
26
- | billing | [费用中心](https://cloud.tencent.com/document/product/555) | 2024-11-07 11:57:32 |
27
- | bizlive | [商业直播](https://cloud.tencent.com/document/product) | 2020-03-10 01:08:07 |
28
- | bm | [黑石物理服务器CPM](https://cloud.tencent.com/document/product/386) | 2024-03-20 01:08:40 |
29
- | bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2024-10-18 01:04:14 |
30
- | bmeip | [黑石弹性公网IP](https://cloud.tencent.com/document/product/1028) | 2024-03-20 01:08:53 |
31
- | bmlb | [黑石负载均衡](https://cloud.tencent.com/document/product/1027) | 2024-03-20 01:08:56 |
32
- | bmvpc | [黑石私有网络](https://cloud.tencent.com/document/product/1024) | 2024-03-20 01:09:02 |
33
- | bpaas | [商业流程服务](https://cloud.tencent.com/document/product/1083) | 2024-07-05 01:04:07 |
34
- | bri | [业务风险情报](https://cloud.tencent.com/document/product/1064) | 2024-06-19 01:13:52 |
35
- | bsca | [软件成分分析](https://cloud.tencent.com/document/product/1483) | 2024-10-31 01:12:39 |
36
- | btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2024-11-06 15:27:32 |
37
- | ca | [腾讯云CA](https://cloud.tencent.com/document/product/1691) | 2024-11-05 01:13:21 |
38
- | cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2024-11-08 01:13:00 |
39
- | captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2024-10-23 01:09:56 |
40
- | car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2024-06-19 01:14:59 |
41
- | cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2024-11-15 01:13:36 |
42
- | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2024-11-15 01:13:45 |
43
- | ccc | [云联络中心](https://cloud.tencent.com/document/product/679) | 2024-11-15 01:14:07 |
44
- | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2024-11-15 01:14:36 |
45
- | cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2024-11-15 01:15:46 |
46
- | cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2024-10-25 01:16:59 |
47
- | cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2024-11-08 01:17:02 |
48
- | cdwch | [腾讯云数据仓库TCHouse-C](https://cloud.tencent.com/document/product/1299) | 2024-11-07 15:32:30 |
49
- | cdwdoris | [腾讯云数据仓库 TCHouse-D](https://cloud.tencent.com/document/product/1387) | 2024-11-07 01:17:24 |
50
- | cdwpg | [云数据仓库 PostgreSQL](https://cloud.tencent.com/document/product/878) | 2024-03-28 01:10:53 |
51
- | cdz | [专属可用区](https://cloud.tencent.com/document/product/1629) | 2024-11-14 01:17:55 |
52
- | cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2024-11-08 01:17:55 |
53
- | cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2024-11-06 01:18:36 |
54
- | cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2024-11-06 01:18:58 |
55
- | chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2024-03-20 01:10:55 |
56
- | ciam | [账号风控平台](https://cloud.tencent.com/document/product/1441) | 2024-10-28 01:19:38 |
57
- | cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2023-05-18 01:12:07 |
58
- | cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
59
- | cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
60
- | ckafka | [消息队列 CKafka 版](https://cloud.tencent.com/document/product/597) | 2024-11-15 01:19:10 |
61
- | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2024-11-05 01:20:40 |
62
- | cloudapp | [云应用](https://cloud.tencent.com/document/product/1689) | 2024-11-05 01:21:22 |
63
- | cloudaudit | [操作审计](https://cloud.tencent.com/document/product/629) | 2024-11-08 01:21:05 |
64
- | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2024-03-20 01:11:31 |
65
- | cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2024-11-15 01:20:43 |
66
- | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2024-11-14 01:21:24 |
67
- | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2024-09-25 01:13:30 |
68
- | cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2024-11-07 01:22:53 |
69
- | cms | [内容安全](https://cloud.tencent.com/document/product/669) | 2024-06-20 01:24:47 |
70
- | config | [配置审计](https://cloud.tencent.com/document/product/1579) | 2024-03-20 01:12:18 |
71
- | controlcenter | [控制中心](https://cloud.tencent.com/document/product/1708) | 2024-10-24 01:13:25 |
72
- | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2023-09-21 02:09:54 |
73
- | csip | [云安全一体化平台](https://cloud.tencent.com/document/product/664) | 2024-11-04 21:21:11 |
74
- | csxg | [5G入云服务](https://cloud.tencent.com/document/product/1687) | 2024-03-20 01:12:25 |
75
- | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2024-11-15 01:22:53 |
76
- | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2024-11-15 01:23:47 |
77
- | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
78
- | cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2024-11-07 01:24:28 |
79
- | dasb | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2024-11-15 01:27:43 |
80
- | dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
81
- | dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2023-05-18 01:20:11 |
82
- | dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2024-10-22 01:16:15 |
83
- | dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2024-07-08 01:12:54 |
84
- | dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2024-10-15 16:53:15 |
85
- | dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2024-11-08 01:27:11 |
86
- | dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2024-11-11 01:28:04 |
87
- | dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2024-11-06 01:29:58 |
88
- | domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-10-25 01:35:02 |
89
- | drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2024-11-06 01:31:02 |
90
- | ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2024-03-20 01:15:13 |
91
- | dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2024-10-14 01:17:08 |
92
- | dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
93
- | dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2024-09-27 01:14:07 |
94
- | eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2024-10-29 01:30:37 |
95
- | ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2024-09-05 01:32:54 |
96
- | ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2024-10-22 01:18:29 |
97
- | ecm | [边缘计算机器](https://cloud.tencent.com/document/product/1108) | 2024-11-05 01:39:00 |
98
- | eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2024-06-25 01:14:34 |
99
- | eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-08-10 01:17:44 |
100
- | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2024-11-15 01:34:09 |
101
- | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2024-11-15 01:34:50 |
102
- | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2024-11-15 01:35:24 |
103
- | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2024-11-15 01:36:14 |
104
- | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2024-11-15 01:36:59 |
105
- | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2024-11-14 01:38:53 |
106
- | fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2024-11-15 01:37:24 |
107
- | ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2024-11-15 01:37:30 |
108
- | gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2024-10-30 01:36:27 |
109
- | gme | [游戏多媒体引擎](https://cloud.tencent.com/document/product/607) | 2024-11-15 01:38:15 |
110
- | goosefs | [数据加速器 GooseFS](https://cloud.tencent.com/document/product/1424) | 2024-10-31 01:41:32 |
111
- | gpm | [游戏玩家匹配](https://cloud.tencent.com/document/product/1294) | 2022-07-11 06:12:36 |
112
- | gs | [云游戏](https://cloud.tencent.com/document/product/1162) | 2024-05-28 01:43:15 |
113
- | gse | [游戏服务器伸缩](https://cloud.tencent.com/document/product/1165) | 2022-07-11 06:12:44 |
114
- | gwlb | [网关负载均衡](https://cloud.tencent.com/document/product/1782) | 2024-10-17 01:20:20 |
115
- | habo | [](https://cloud.tencent.com/document/product) | 2019-05-09 19:37:22 |
116
- | hai | [高性能应用服务](https://cloud.tencent.com/document/product/1721) | 2024-11-14 01:40:52 |
117
- | hasim | [高可用物联网卡](https://cloud.tencent.com/document/product/1482) | 2023-05-18 01:29:47 |
118
- | hcm | [数学作业批改](https://cloud.tencent.com/document/product/1004) | 2024-05-09 01:16:27 |
119
- | hunyuan | [腾讯混元大模型](https://cloud.tencent.com/document/product/1729) | 2024-11-12 01:40:53 |
120
- | iai | [人脸识别](https://cloud.tencent.com/document/product/867) | 2024-11-14 01:41:32 |
121
- | ic | [图片瘦身](https://cloud.tencent.com/document/product/636) | 2023-03-02 01:23:21 |
122
- | icr | [对话机器人](https://cloud.tencent.com/document/product/1268) | 2024-04-22 01:17:48 |
123
- | ie | [智能编辑](https://cloud.tencent.com/document/product/1186) | 2023-08-17 03:20:18 |
124
- | iecp | [物联网边缘计算平台](https://cloud.tencent.com/document/product/1118) | 2024-09-25 01:22:07 |
125
- | ig | [智能导诊](https://cloud.tencent.com/document/product/1273) | 2024-11-12 15:37:28 |
126
- | iir | [智能识图](https://cloud.tencent.com/document/product/1217) | 2022-04-04 06:48:05 |
127
- | ims | [图片内容安全](https://cloud.tencent.com/document/product/1125) | 2024-09-25 01:22:24 |
128
- | ioa | [iOA 零信任安全管理系统](https://cloud.tencent.com/document/product/1092) | 2024-11-11 01:39:45 |
129
- | iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2023-07-17 01:22:28 |
130
- | iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2024-06-05 01:47:50 |
131
- | iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2024-11-07 01:40:20 |
132
- | iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2023-05-18 01:33:02 |
133
- | iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2024-11-06 01:44:05 |
134
- | iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2024-03-20 01:18:54 |
135
- | irp | [智能推荐平台](https://cloud.tencent.com/document/product/1541) | 2024-10-17 01:22:29 |
136
- | iss | [智能视图计算平台](https://cloud.tencent.com/document/product/1344) | 2024-11-12 01:45:41 |
137
- | ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2024-07-09 14:27:21 |
138
- | keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2024-03-20 01:19:20 |
139
- | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2024-11-07 01:44:48 |
140
- | lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2024-11-08 01:44:33 |
141
- | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2024-11-07 01:45:38 |
142
- | live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2024-11-15 01:45:49 |
143
- | lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2024-11-14 01:49:38 |
144
- | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
145
- | lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
146
- | mall | [商场客留大数据](https://cloud.tencent.com/document/product/1707) | 2024-03-20 01:20:11 |
147
- | mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2024-11-07 01:48:13 |
148
- | market | [云市场](https://cloud.tencent.com/document/product/306) | 2024-03-20 01:20:21 |
149
- | memcached | [云数据库Memcached](https://cloud.tencent.com/document/product/241) | 2024-08-28 02:03:45 |
150
- | mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-07-08 06:11:32 |
151
- | mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2024-11-11 01:49:22 |
152
- | mna | [多网聚合加速](https://cloud.tencent.com/document/product/1385) | 2024-08-23 01:55:12 |
153
- | mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2024-11-05 01:57:16 |
154
- | monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2024-10-22 01:25:28 |
155
- | mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2024-11-05 01:58:59 |
156
- | mqtt | [消息队列 MQTT 版](https://cloud.tencent.com/document/product/1778) | 2024-11-01 01:51:29 |
157
- | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2024-11-15 01:52:05 |
158
- | ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2024-11-14 01:54:52 |
159
- | msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2024-04-17 14:48:31 |
160
- | mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
161
- | nlp | [NLP 服务](https://cloud.tencent.com/document/product/271) | 2024-09-27 01:23:18 |
162
- | npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
163
- | oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2024-11-05 02:01:14 |
164
- | ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2024-11-15 01:53:15 |
165
- | omics | [腾讯健康组学平台](https://cloud.tencent.com/document/product/1643) | 2024-11-15 01:54:17 |
166
- | organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2024-11-08 01:54:14 |
167
- | partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2024-11-15 01:55:27 |
168
- | pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2023-05-18 01:44:14 |
169
- | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2024-09-25 01:28:57 |
170
- | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2024-11-08 01:56:01 |
171
- | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2024-11-07 01:56:43 |
172
- | rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2024-10-22 01:28:15 |
173
- | redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2024-11-11 01:58:20 |
174
- | region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2024-10-25 02:05:36 |
175
- | rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2023-12-25 00:16:39 |
176
- | rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
177
- | rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2024-11-15 01:57:50 |
178
- | scf | [云函数](https://cloud.tencent.com/document/product/583) | 2024-11-14 02:00:43 |
179
- | ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2024-10-22 01:28:58 |
180
- | smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2024-08-12 02:09:46 |
181
- | smop | [腾讯安心用户运营平台](https://cloud.tencent.com/document/product/1310) | 2024-10-31 02:02:47 |
182
- | smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2024-07-09 01:21:06 |
183
- | sms | [短信](https://cloud.tencent.com/document/product/382) | 2024-10-21 17:47:13 |
184
- | soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2024-11-13 02:01:41 |
185
- | solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
186
- | sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2024-11-15 01:59:49 |
187
- | ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2023-11-15 02:18:28 |
188
- | ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2024-11-15 02:00:46 |
189
- | sslpod | [证书监控 SSLPod](https://cloud.tencent.com/document/product/1084) | 2024-03-20 01:24:03 |
190
- | ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2024-11-08 02:01:05 |
191
- | sts | [安全凭证服务](https://cloud.tencent.com/document/product/1312) | 2024-10-24 01:29:59 |
192
- | svp | [节省计划](https://cloud.tencent.com/document/product/1761) | 2024-05-23 17:09:13 |
193
- | taf | [流量反欺诈](https://cloud.tencent.com/document/product/1031) | 2024-11-04 02:00:37 |
194
- | tag | [标签](https://cloud.tencent.com/document/product/651) | 2024-11-11 02:03:20 |
195
- | tan | [碳引擎](https://cloud.tencent.com/document/product/1498) | 2024-03-20 01:24:15 |
196
- | tat | [自动化助手](https://cloud.tencent.com/document/product/1340) | 2024-11-14 02:04:21 |
197
- | tav | [文件检测](https://cloud.tencent.com/document/product) | 2019-11-28 22:10:04 |
198
- | tbaas | [腾讯云区块链服务平台 TBaaS](https://cloud.tencent.com/document/product/663) | 2024-05-14 02:28:40 |
199
- | tbm | [](https://cloud.tencent.com/document/product) | 2019-03-29 14:49:11 |
200
- | tbp | [腾讯智能对话平台](https://cloud.tencent.com/document/product/1060) | 2024-03-20 01:24:24 |
201
- | tcaplusdb | [游戏数据库 TcaplusDB](https://cloud.tencent.com/document/product/596) | 2024-08-05 02:05:20 |
202
- | tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2024-09-26 01:32:18 |
203
- | tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2024-08-08 02:12:50 |
204
- | tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
205
- | tchd | [腾讯云健康看板](https://cloud.tencent.com/document/product/1688) | 2024-03-20 01:24:49 |
206
- | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
207
- | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2024-06-18 02:13:19 |
208
- | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2024-11-11 02:05:44 |
209
- | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-11-04 02:03:35 |
210
- | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2024-07-10 01:25:35 |
211
- | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2024-06-04 02:17:43 |
212
- | tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2024-11-11 02:06:49 |
213
- | tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2024-11-14 02:08:25 |
214
- | tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2024-11-05 02:16:13 |
215
- | teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2024-11-06 02:09:56 |
216
- | thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2024-11-15 02:07:32 |
217
- | tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
218
- | tic | [资源编排 TIC](https://cloud.tencent.com/document/product/1213) | 2023-08-17 05:26:08 |
219
- | ticm | [智能鉴黄](https://cloud.tencent.com/document/product/864) | 2021-01-07 08:08:15 |
220
- | tics | [威胁情报云查服务](https://cloud.tencent.com/document/product/1013) | 2024-03-20 01:27:08 |
221
- | tiems | [腾讯云 TI 平台 TI-EMS ](https://cloud.tencent.com/document/product/1120) | 2022-07-19 06:19:39 |
222
- | tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2024-08-19 02:22:39 |
223
- | tione | [TI-ONE 训练平台](https://cloud.tencent.com/document/product/851) | 2024-06-07 02:37:51 |
224
- | tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2024-03-20 01:27:28 |
225
- | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2024-11-08 02:10:17 |
226
- | tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
227
- | tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2024-10-30 02:12:39 |
228
- | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2024-10-31 02:18:23 |
229
- | tourism | [文旅客情大数据](https://cloud.tencent.com/document/product/1684) | 2024-03-20 01:28:59 |
230
- | trdp | [流量风险决策平台](https://cloud.tencent.com/document/product/1604) | 2023-05-18 02:01:19 |
231
- | trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2024-10-22 12:32:33 |
232
- | trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2024-11-08 02:10:59 |
233
- | trro | [远程实时操控](https://cloud.tencent.com/document/product/1584) | 2024-11-14 02:13:50 |
234
- | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2024-11-15 02:11:01 |
235
- | tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2024-11-07 02:12:18 |
236
- | tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2024-09-25 01:37:11 |
237
- | tsi | [腾讯同传系统](https://cloud.tencent.com/document/product/1399) | 2024-10-23 01:36:51 |
238
- | tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2024-03-20 01:30:06 |
239
- | tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2024-09-26 01:38:14 |
240
- | ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2024-03-20 01:30:08 |
241
- | vcg | [视频生成](https://cloud.tencent.com/document/product/1770) | 2024-06-06 02:47:17 |
242
- | vclm | [大模型视频创作引擎](https://cloud.tencent.com/document/product/1616) | 2024-11-15 02:13:50 |
243
- | vdb | [向量数据库](https://cloud.tencent.com/document/product/1709) | 2024-10-16 01:30:53 |
244
- | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2024-07-26 02:26:34 |
245
- | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2024-03-20 01:30:13 |
246
- | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-09-11 19:07:13 |
247
- | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2024-11-15 02:16:09 |
248
- | vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-09-06 02:27:27 |
249
- | vtc | [视频转译](https://cloud.tencent.com/document/product/1769) | 2024-10-16 01:32:39 |
250
- | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2024-11-14 02:22:02 |
251
- | wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2024-03-20 01:32:09 |
252
- | wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2024-11-12 02:23:06 |
253
- | weilingwith | [微瓴同业开放平台](https://cloud.tencent.com/document/product/1693) | 2024-11-07 02:23:06 |
254
- | wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
255
- | yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2024-06-05 02:38:46 |
256
- | youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
257
- | yunjing | [主机安全](https://cloud.tencent.com/document/product) | 2020-09-15 08:08:47 |
258
- | yunsou | [腾讯云搜TCS](https://cloud.tencent.com/document/product/270) | 2024-03-20 01:33:14 |
package/src/index.ts DELETED
@@ -1 +0,0 @@
1
- export * from "./services"
@@ -1,5 +0,0 @@
1
- import { v20230508 } from "./v20230508"
2
-
3
- export const cloudstudio = {
4
- v20230508: v20230508,
5
- }
@@ -1,144 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-unused-vars */
2
- /*
3
- * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License");
6
- * you may not use this file except in compliance with the License.
7
- * You may obtain a copy of the License at
8
- *
9
- * http://www.apache.org/licenses/LICENSE-2.0
10
- *
11
- * Unless required by applicable law or agreed to in writing,
12
- * software distributed under the License is distributed on an
13
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
- * KIND, either express or implied. See the License for the
15
- * specific language governing permissions and limitations
16
- * under the License.
17
- */
18
- import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common"
19
- import {
20
- DescribeConfigRequest,
21
- DescribeWorkspacesRequest,
22
- Env,
23
- RunWorkspaceRequest,
24
- CreateWorkspaceTokenResponse,
25
- GitRepository,
26
- CreateWorkspaceTokenRequest,
27
- CreateWorkspaceRequest,
28
- RunWorkspaceResponse,
29
- StopWorkspaceResponse,
30
- RemoveWorkspaceResponse,
31
- RemoveWorkspaceRequest,
32
- LifeCycleCommand,
33
- StopWorkspaceRequest,
34
- WorkspaceStatusInfo,
35
- LifeCycle,
36
- ModifyWorkspaceResponse,
37
- CreateWorkspaceResponse,
38
- Image,
39
- DescribeConfigResponse,
40
- DescribeImagesRequest,
41
- DescribeWorkspacesResponse,
42
- ModifyWorkspaceRequest,
43
- DescribeImagesResponse,
44
- } from "./cloudstudio_models"
45
-
46
- /**
47
- * cloudstudio client
48
- * @class
49
- */
50
- export class Client extends TencentCloudCommon.AbstractClient {
51
- constructor(clientConfig: TencentCloudCommon.ClientConfig) {
52
- super("cloudstudio.tencentcloudapi.com", "2023-05-08", clientConfig)
53
- }
54
-
55
- /**
56
- * 获取用户配置
57
- */
58
- async DescribeConfig(
59
- req: DescribeConfigRequest,
60
- cb?: (error: string, rep: DescribeConfigResponse) => void
61
- ): Promise<DescribeConfigResponse> {
62
- return this.request("DescribeConfig", req, cb)
63
- }
64
-
65
- /**
66
- * 修改工作空间
67
- */
68
- async ModifyWorkspace(
69
- req: ModifyWorkspaceRequest,
70
- cb?: (error: string, rep: ModifyWorkspaceResponse) => void
71
- ): Promise<ModifyWorkspaceResponse> {
72
- return this.request("ModifyWorkspace", req, cb)
73
- }
74
-
75
- /**
76
- * 获取用户工作空间列表
77
- */
78
- async DescribeWorkspaces(
79
- req: DescribeWorkspacesRequest,
80
- cb?: (error: string, rep: DescribeWorkspacesResponse) => void
81
- ): Promise<DescribeWorkspacesResponse> {
82
- return this.request("DescribeWorkspaces", req, cb)
83
- }
84
-
85
- /**
86
- * 获取基础镜像列表
87
- */
88
- async DescribeImages(
89
- req?: DescribeImagesRequest,
90
- cb?: (error: string, rep: DescribeImagesResponse) => void
91
- ): Promise<DescribeImagesResponse> {
92
- return this.request("DescribeImages", req, cb)
93
- }
94
-
95
- /**
96
- * 创建工作空间
97
- */
98
- async CreateWorkspace(
99
- req: CreateWorkspaceRequest,
100
- cb?: (error: string, rep: CreateWorkspaceResponse) => void
101
- ): Promise<CreateWorkspaceResponse> {
102
- return this.request("CreateWorkspace", req, cb)
103
- }
104
-
105
- /**
106
- * 创建工作空间临时访问凭证,重复调用会创建新的 Token,旧的 Token 将会自动失效
107
- */
108
- async CreateWorkspaceToken(
109
- req: CreateWorkspaceTokenRequest,
110
- cb?: (error: string, rep: CreateWorkspaceTokenResponse) => void
111
- ): Promise<CreateWorkspaceTokenResponse> {
112
- return this.request("CreateWorkspaceToken", req, cb)
113
- }
114
-
115
- /**
116
- * 删除工作空间
117
- */
118
- async RemoveWorkspace(
119
- req: RemoveWorkspaceRequest,
120
- cb?: (error: string, rep: RemoveWorkspaceResponse) => void
121
- ): Promise<RemoveWorkspaceResponse> {
122
- return this.request("RemoveWorkspace", req, cb)
123
- }
124
-
125
- /**
126
- * 停止运行空间
127
- */
128
- async StopWorkspace(
129
- req: StopWorkspaceRequest,
130
- cb?: (error: string, rep: StopWorkspaceResponse) => void
131
- ): Promise<StopWorkspaceResponse> {
132
- return this.request("StopWorkspace", req, cb)
133
- }
134
-
135
- /**
136
- * 运行空间
137
- */
138
- async RunWorkspace(
139
- req: RunWorkspaceRequest,
140
- cb?: (error: string, rep: RunWorkspaceResponse) => void
141
- ): Promise<RunWorkspaceResponse> {
142
- return this.request("RunWorkspace", req, cb)
143
- }
144
- }
@@ -1,439 +0,0 @@
1
- /*
2
- * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing,
11
- * software distributed under the License is distributed on an
12
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13
- * KIND, either express or implied. See the License for the
14
- * specific language governing permissions and limitations
15
- * under the License.
16
- */
17
-
18
- /**
19
- * DescribeConfig请求参数结构体
20
- */
21
- export interface DescribeConfigRequest {
22
- /**
23
- * 配置名称
24
- */
25
- Name: string
26
- }
27
-
28
- /**
29
- * DescribeWorkspaces请求参数结构体
30
- */
31
- export interface DescribeWorkspacesRequest {
32
- /**
33
- * 工作空间名称过滤条件
34
- */
35
- Name?: string
36
- }
37
-
38
- /**
39
- * 环境变量
40
- */
41
- export interface Env {
42
- /**
43
- * 环境变量 key
44
- */
45
- Name: string
46
- /**
47
- * 环境变量 value
48
- */
49
- Value: string
50
- }
51
-
52
- /**
53
- * RunWorkspace请求参数结构体
54
- */
55
- export interface RunWorkspaceRequest {
56
- /**
57
- * 工作空间 SpaceKey
58
- */
59
- SpaceKey: string
60
- }
61
-
62
- /**
63
- * CreateWorkspaceToken返回参数结构体
64
- */
65
- export interface CreateWorkspaceTokenResponse {
66
- /**
67
- * 访问工作空间临时凭证
68
- */
69
- Token?: string
70
- /**
71
- * token 过期时间
72
- */
73
- ExpiredTime?: string
74
- /**
75
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
76
- */
77
- RequestId?: string
78
- }
79
-
80
- /**
81
- * Git 仓库
82
- */
83
- export interface GitRepository {
84
- /**
85
- * Git 仓库地址
86
- */
87
- Url: string
88
- /**
89
- * Git 仓库分支名或 Tag 名
90
- */
91
- Branch?: string
92
- }
93
-
94
- /**
95
- * CreateWorkspaceToken请求参数结构体
96
- */
97
- export interface CreateWorkspaceTokenRequest {
98
- /**
99
- * 工作空间 SpaceKey
100
- */
101
- SpaceKey: string
102
- /**
103
- * token过期时间,单位是秒,默认 3600
104
- */
105
- TokenExpiredLimitSec?: number
106
- /**
107
- * token 授权策略,可选值为 workspace-run-only, all。默认为 workspace-run-only
108
- */
109
- Policies?: Array<string>
110
- }
111
-
112
- /**
113
- * CreateWorkspace请求参数结构体
114
- */
115
- export interface CreateWorkspaceRequest {
116
- /**
117
- * 工作空间名称, 长度限制 2~64
118
- */
119
- Name: string
120
- /**
121
- * 工作空间描述, 长度限制 0~255
122
- */
123
- Description?: string
124
- /**
125
- * 工作空间规格。Standard: 2C4G, Calculation: 4C8G, Profession: 8C16G. 默认是 Standard。
126
- */
127
- Specs?: string
128
- /**
129
- * 工作空间基础镜像名称, 默认会使用 All In One 镜像, 长度限制 1~255
130
- */
131
- Image?: string
132
- /**
133
- * Git 仓库. 工作空间启动时会自动克隆该仓库
134
- */
135
- Repository?: GitRepository
136
- /**
137
- * 环境变量. 会被注入到工作空间中
138
- */
139
- Envs?: Array<Env>
140
- /**
141
- * 预装插件. 工作空间启动时, 会自动安装这些插件。长度限制: 0~10
142
- */
143
- Extensions?: Array<string>
144
- /**
145
- * 工作空间生命周期钩子. 分为三个阶段 init, start, destroy. 分别表示工作空间数据初始化阶段, 工作空间启动阶段, 工作空间关闭阶段. 用户可以自定义 shell 命令.
146
- */
147
- Lifecycle?: LifeCycle
148
- /**
149
- * 应用名称
150
- */
151
- TenantAppId?: number
152
- /**
153
- * 用户UIN
154
- */
155
- TenantUin?: string
156
- /**
157
- * VPCID
158
- */
159
- TenantUniqVpcId?: string
160
- /**
161
- * 子网ID
162
- */
163
- TenantSubnetId?: string
164
- /**
165
- * 地域
166
- */
167
- Region?: string
168
- }
169
-
170
- /**
171
- * RunWorkspace返回参数结构体
172
- */
173
- export interface RunWorkspaceResponse {
174
- /**
175
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
176
- */
177
- RequestId?: string
178
- }
179
-
180
- /**
181
- * StopWorkspace返回参数结构体
182
- */
183
- export interface StopWorkspaceResponse {
184
- /**
185
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
186
- */
187
- RequestId?: string
188
- }
189
-
190
- /**
191
- * RemoveWorkspace返回参数结构体
192
- */
193
- export interface RemoveWorkspaceResponse {
194
- /**
195
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
196
- */
197
- RequestId?: string
198
- }
199
-
200
- /**
201
- * RemoveWorkspace请求参数结构体
202
- */
203
- export interface RemoveWorkspaceRequest {
204
- /**
205
- * 工作空间 SpaceKey
206
- */
207
- SpaceKey: string
208
- }
209
-
210
- /**
211
- * 工作空间生命周期执行指令
212
- */
213
- export interface LifeCycleCommand {
214
- /**
215
- * 指令描述
216
- */
217
- Name: string
218
- /**
219
- * 具体命令
220
- */
221
- Command: string
222
- }
223
-
224
- /**
225
- * StopWorkspace请求参数结构体
226
- */
227
- export interface StopWorkspaceRequest {
228
- /**
229
- * 工作空间 SpaceKey
230
- */
231
- SpaceKey: string
232
- }
233
-
234
- /**
235
- * 获取用户工作空间返回信息
236
- */
237
- export interface WorkspaceStatusInfo {
238
- /**
239
- * 工作空间 ID
240
- */
241
- Id?: number
242
- /**
243
- * 工作空间名称
244
- */
245
- Name?: string
246
- /**
247
- * 工作空间标识
248
- */
249
- SpaceKey?: string
250
- /**
251
- * 工作空间状态
252
- */
253
- Status?: string
254
- /**
255
- * CPU数量
256
- */
257
- Cpu?: number
258
- /**
259
- * 内存
260
- */
261
- Memory?: number
262
- /**
263
- * 工作空间图标
264
- */
265
- Icon?: string
266
- /**
267
- * 工作空间状态, 异常原因
268
- */
269
- StatusReason?: string
270
- /**
271
- * 工作空间描述
272
- */
273
- Description?: string
274
- /**
275
- * 工作空间类型
276
- */
277
- WorkspaceType?: string
278
- /**
279
- * Git 仓库 HTTPS 地址
280
- */
281
- VersionControlUrl?: string
282
- /**
283
- * Git 仓库引用。指定分支使用 /refs/heads/{分支名}, 指定 Tag 用 /refs/tags/{Tag名}
284
- */
285
- VersionControlRef?: string
286
- /**
287
- * 最后操作时间
288
- */
289
- LastOpsDate?: string
290
- /**
291
- * 创建时间
292
- */
293
- CreateDate?: string
294
- }
295
-
296
- /**
297
- * 工作空间生命周期自动执行脚本
298
- */
299
- export interface LifeCycle {
300
- /**
301
- * 工作空间首次初始化时执行
302
- */
303
- Init?: Array<LifeCycleCommand>
304
- /**
305
- * 每次工作空间启动时执行
306
- */
307
- Start?: Array<LifeCycleCommand>
308
- /**
309
- * 每次工作空间关闭时执行
310
- */
311
- Destroy?: Array<LifeCycleCommand>
312
- }
313
-
314
- /**
315
- * ModifyWorkspace返回参数结构体
316
- */
317
- export interface ModifyWorkspaceResponse {
318
- /**
319
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
320
- */
321
- RequestId?: string
322
- }
323
-
324
- /**
325
- * CreateWorkspace返回参数结构体
326
- */
327
- export interface CreateWorkspaceResponse {
328
- /**
329
- * 工作空间 SpaceKey
330
- */
331
- SpaceKey?: string
332
- /**
333
- * 工作空间名称
334
- */
335
- Name?: string
336
- /**
337
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
338
- */
339
- RequestId?: string
340
- }
341
-
342
- /**
343
- * 基础镜像
344
- */
345
- export interface Image {
346
- /**
347
- * 镜像名称
348
- */
349
- Name?: string
350
- /**
351
- * 镜像仓库
352
- */
353
- Repository?: string
354
- /**
355
- * tag 列表
356
- */
357
- Tags?: Array<string>
358
- }
359
-
360
- /**
361
- * DescribeConfig返回参数结构体
362
- */
363
- export interface DescribeConfigResponse {
364
- /**
365
- * 配置值
366
- */
367
- Data?: string
368
- /**
369
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
370
- */
371
- RequestId?: string
372
- }
373
-
374
- /**
375
- * DescribeImages请求参数结构体
376
- */
377
- export type DescribeImagesRequest = null
378
-
379
- /**
380
- * DescribeWorkspaces返回参数结构体
381
- */
382
- export interface DescribeWorkspacesResponse {
383
- /**
384
- * 工作空间列表
385
- */
386
- Data?: Array<WorkspaceStatusInfo>
387
- /**
388
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
389
- */
390
- RequestId?: string
391
- }
392
-
393
- /**
394
- * ModifyWorkspace请求参数结构体
395
- */
396
- export interface ModifyWorkspaceRequest {
397
- /**
398
- * 工作空间 SpaceKey. 更新该工作空间的属性
399
- */
400
- SpaceKey: string
401
- /**
402
- * 工作空间名称
403
- */
404
- Name?: string
405
- /**
406
- * 工作空间描述
407
- */
408
- Description?: string
409
- /**
410
- * 工作空间规格。STANDARD: 2C4G, CALCULATION: 4C8G, PROFESSION: 8C16G. 默认是 STANDARD。
411
- */
412
- Specs?: string
413
- /**
414
- * 环境变量. 会被注入到工作空间中
415
- */
416
- Envs?: Array<Env>
417
- /**
418
- * 预装插件. 工作空间启动时, 会自动安装这些插件
419
- */
420
- Extensions?: Array<string>
421
- /**
422
- * 工作空间生命周期钩子. 分为三个阶段 init, start, destroy. 分别表示工作空间数据初始化阶段, 工作空间启动阶段, 工作空间关闭阶段. 用户可以自定义 shell 命令.
423
- */
424
- Lifecycle?: LifeCycle
425
- }
426
-
427
- /**
428
- * DescribeImages返回参数结构体
429
- */
430
- export interface DescribeImagesResponse {
431
- /**
432
- * 镜像列表
433
- */
434
- Images?: Array<Image>
435
- /**
436
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
437
- */
438
- RequestId?: string
439
- }
@@ -1,6 +0,0 @@
1
- import * as Models from "./cloudstudio_models"
2
- import { Client } from "./cloudstudio_client"
3
- export const v20230508 = {
4
- Client: Client,
5
- Models: Models,
6
- }
@@ -1 +0,0 @@
1
- export { cloudstudio } from "./cloudstudio"
package/tsconfig.json DELETED
@@ -1,33 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- // "incremental": true, /* 增量编译 提高编译速度*/
4
- "target": "ES2019" /* 编译目标ES版本*/,
5
- "module": "commonjs" /* 编译目标模块系统*/,
6
- // "lib": [], /* 编译过程中需要引入的库文件列表*/
7
- "declaration": true /* 编译时创建声明文件 */,
8
- "outDir": "tencentcloud" /* ts编译输出目录 */,
9
- "rootDir": "src" /* ts编译根目录. */,
10
- "importHelpers": true /* 从tslib导入辅助工具函数(如__importDefault)*/,
11
- "strict": true /* 严格模式开关 等价于noImplicitAny、strictNullChecks、strictFunctionTypes、strictBindCallApply等设置true */,
12
- "strictNullChecks": false,
13
- "noUnusedLocals": false /* 未使用局部变量报错*/,
14
- "noUnusedParameters": false /* 未使用参数报错*/,
15
- "noImplicitReturns": true /* 有代码路径没有返回值时报错*/,
16
- "noFallthroughCasesInSwitch": true /* 不允许switch的case语句贯穿*/,
17
- "moduleResolution": "node" /* 模块解析策略 */,
18
- "typeRoots": [
19
- /* 要包含的类型声明文件路径列表*/
20
- "./typings",
21
- "./node_modules/@types"
22
- ],
23
- "allowSyntheticDefaultImports": true /* 允许从没有设置默认导出的模块中默认导入,仅用于提示,不影响编译结果*/,
24
- "esModuleInterop": false /* 允许编译生成文件时,在代码中注入工具类(__importDefault、__importStar)对ESM与commonjs混用情况做兼容处理*/,
25
- "sourceMap": false
26
- },
27
- "include": [
28
- /* 需要编译的文件 */
29
- "src/**/*.ts",
30
- "typings/**/*.ts"
31
- ],
32
- "exclude": []
33
- }
@@ -1,2 +0,0 @@
1
- declare module "get-stream"
2
- declare module "is-stream"