tencentcloud-sdk-nodejs-tsw 4.0.917 → 4.1.18

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 @@
1
+ export { tsw } from "./tsw";
@@ -0,0 +1,6 @@
1
+ import { v20210412 } from "./v20210412";
2
+ import { v20200924 } from "./v20200924";
3
+ export const tsw = {
4
+ v20210412: v20210412,
5
+ v20200924: v20200924,
6
+ };
@@ -0,0 +1,6 @@
1
+ import * as Models from "./tsw_models";
2
+ import { Client } from "./tsw_client";
3
+ export const v20200924 = {
4
+ Client: Client,
5
+ Models: Models,
6
+ };
@@ -0,0 +1,9 @@
1
+ import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
+ export class Client extends TencentCloudCommon.AbstractClient {
3
+ constructor(clientConfig) {
4
+ super("tsw.tencentcloudapi.com", "2020-09-24", clientConfig);
5
+ }
6
+ async DescribeAgentShell(req, cb) {
7
+ return this.request("DescribeAgentShell", req, cb);
8
+ }
9
+ }
File without changes
@@ -0,0 +1,6 @@
1
+ import * as Models from "./tsw_models";
2
+ import { Client } from "./tsw_client";
3
+ export const v20210412 = {
4
+ Client: Client,
5
+ Models: Models,
6
+ };
@@ -0,0 +1,15 @@
1
+ import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
+ export class Client extends TencentCloudCommon.AbstractClient {
3
+ constructor(clientConfig) {
4
+ super("tsw.tencentcloudapi.com", "2021-04-12", clientConfig);
5
+ }
6
+ async DescribeToken(req, cb) {
7
+ return this.request("DescribeToken", req, cb);
8
+ }
9
+ async DescribeServiceAlertObject(req, cb) {
10
+ return this.request("DescribeServiceAlertObject", req, cb);
11
+ }
12
+ async DescribeComponentAlertObject(req, cb) {
13
+ return this.request("DescribeComponentAlertObject", req, cb);
14
+ }
15
+ }
File without changes
package/package.json CHANGED
@@ -1,16 +1,26 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-tsw",
3
- "version": "4.0.917",
4
- "description": "Tencent Cloud API NODEJS SDK",
5
- "main": "tencentcloud/index.js",
3
+ "version": "4.1.18",
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,10 +1,10 @@
1
1
  export declare const tsw: {
2
- v20200924: {
3
- Client: typeof import("./v20200924/tsw_client").Client;
4
- Models: typeof import("./v20200924/tsw_models");
5
- };
6
2
  v20210412: {
7
3
  Client: typeof import("./v20210412/tsw_client").Client;
8
4
  Models: typeof import("./v20210412/tsw_models");
9
5
  };
6
+ v20200924: {
7
+ Client: typeof import("./v20200924/tsw_client").Client;
8
+ Models: typeof import("./v20200924/tsw_models");
9
+ };
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.tsw = void 0;
4
- const v20200924_1 = require("./v20200924");
5
4
  const v20210412_1 = require("./v20210412");
5
+ const v20200924_1 = require("./v20200924");
6
6
  exports.tsw = {
7
- v20200924: v20200924_1.v20200924,
8
7
  v20210412: v20210412_1.v20210412,
8
+ v20200924: v20200924_1.v20200924,
9
9
  };
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.v20200924 = void 0;
4
- const Models = require("./tsw_models");
4
+ const tslib_1 = require("tslib");
5
+ const Models = tslib_1.__importStar(require("./tsw_models"));
5
6
  const tsw_client_1 = require("./tsw_client");
6
7
  exports.v20200924 = {
7
8
  Client: tsw_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
  * tsw client
24
25
  * @class
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.v20210412 = void 0;
4
- const Models = require("./tsw_models");
4
+ const tslib_1 = require("tslib");
5
+ const Models = tslib_1.__importStar(require("./tsw_models"));
5
6
  const tsw_client_1 = require("./tsw_client");
6
7
  exports.v20210412 = {
7
8
  Client: tsw_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
  * tsw client
24
25
  * @class
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,254 +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-03-20 01:07:29 |
6
- | advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2024-03-20 01:07:31 |
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-08-13 01:03:11 |
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-07-26 01:08:05 |
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-06-04 01:07:52 |
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-06-17 01:08:48 |
18
- | apm | [应用性能监控](https://cloud.tencent.com/document/product/1463) | 2024-07-31 01:04:59 |
19
- | as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2024-08-13 01:05:49 |
20
- | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2024-07-16 01:08:08 |
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-06-25 01:07:59 |
24
- | bda | [人体分析](https://cloud.tencent.com/document/product/1208) | 2024-03-20 01:08:23 |
25
- | bi | [商业智能分析 BI](https://cloud.tencent.com/document/product/590) | 2024-07-26 01:11:20 |
26
- | billing | [费用中心](https://cloud.tencent.com/document/product/555) | 2024-08-14 01:07:50 |
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-04-24 01:05:22 |
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-04-16 01:05:23 |
36
- | btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2024-03-20 01:09:12 |
37
- | cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2024-07-24 01:13:41 |
38
- | captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2024-07-26 01:14:48 |
39
- | car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2024-06-19 01:14:59 |
40
- | cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2024-07-26 01:15:04 |
41
- | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2024-08-01 01:15:22 |
42
- | ccc | [云联络中心](https://cloud.tencent.com/document/product/679) | 2024-07-25 01:15:18 |
43
- | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2024-08-02 01:11:12 |
44
- | cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2024-07-17 01:09:51 |
45
- | cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2024-07-26 01:17:46 |
46
- | cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2024-06-18 01:18:51 |
47
- | cdwch | [腾讯云数据仓库TCHouse-C](https://cloud.tencent.com/document/product/1299) | 2024-07-24 01:18:03 |
48
- | cdwdoris | [腾讯云数据仓库 TCHouse-D](https://cloud.tencent.com/document/product/1387) | 2024-08-01 01:19:02 |
49
- | cdwpg | [云数据仓库 PostgreSQL](https://cloud.tencent.com/document/product/878) | 2024-03-28 01:10:53 |
50
- | cdz | [专属可用区](https://cloud.tencent.com/document/product/1629) | 2024-07-15 09:37:14 |
51
- | cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2024-07-26 14:53:06 |
52
- | cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2024-08-05 01:14:34 |
53
- | cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2024-07-30 01:19:22 |
54
- | chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2024-03-20 01:10:55 |
55
- | ciam | [账号风控平台](https://cloud.tencent.com/document/product/1441) | 2024-06-17 01:21:02 |
56
- | cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2023-05-18 01:12:07 |
57
- | cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
58
- | cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
59
- | ckafka | [消息队列 CKafka 版](https://cloud.tencent.com/document/product/597) | 2024-07-22 01:20:34 |
60
- | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2024-07-19 01:23:35 |
61
- | cloudapp | [云应用](https://cloud.tencent.com/document/product/1689) | 2024-07-18 10:12:45 |
62
- | cloudaudit | [操作审计](https://cloud.tencent.com/document/product/629) | 2024-01-15 01:09:37 |
63
- | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2024-03-20 01:11:31 |
64
- | cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2024-05-29 01:21:54 |
65
- | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2024-08-12 01:23:51 |
66
- | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2024-07-29 01:23:21 |
67
- | cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2024-06-21 01:24:31 |
68
- | cms | [内容安全](https://cloud.tencent.com/document/product/669) | 2024-06-20 01:24:47 |
69
- | config | [配置审计](https://cloud.tencent.com/document/product/1579) | 2024-03-20 01:12:18 |
70
- | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2023-09-21 02:09:54 |
71
- | cr | [金融联络机器人](https://cloud.tencent.com/document/product/656) | 2021-02-24 08:03:24 |
72
- | csip | [云安全一体化平台](https://cloud.tencent.com/document/product/664) | 2024-08-02 01:20:09 |
73
- | csxg | [5G入云服务](https://cloud.tencent.com/document/product/1687) | 2024-03-20 01:12:25 |
74
- | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2024-08-07 01:23:06 |
75
- | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2024-08-13 01:26:39 |
76
- | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
77
- | cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2024-08-09 01:26:13 |
78
- | dasb | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2024-07-16 01:13:41 |
79
- | dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
80
- | dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2023-05-18 01:20:11 |
81
- | dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2024-08-07 01:30:42 |
82
- | dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2024-07-08 01:12:54 |
83
- | dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2024-07-15 01:09:18 |
84
- | dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2024-07-11 01:14:04 |
85
- | dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2024-08-08 01:33:40 |
86
- | dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2024-07-29 01:33:59 |
87
- | domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-07-31 01:30:16 |
88
- | drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2024-07-12 01:14:44 |
89
- | ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2024-03-20 01:15:13 |
90
- | dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2024-08-06 01:35:34 |
91
- | dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
92
- | dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2024-07-24 01:36:02 |
93
- | eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2024-06-07 01:44:56 |
94
- | ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2024-03-20 01:15:51 |
95
- | ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2024-03-20 01:15:52 |
96
- | ecm | [边缘计算机器](https://cloud.tencent.com/document/product/1108) | 2024-07-26 01:38:19 |
97
- | eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2024-06-25 01:14:34 |
98
- | eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-08-10 01:17:44 |
99
- | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2024-08-12 01:41:17 |
100
- | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2024-08-14 01:44:38 |
101
- | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2024-08-14 01:45:25 |
102
- | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2024-08-14 01:46:41 |
103
- | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2024-07-16 01:16:45 |
104
- | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2024-08-14 01:47:53 |
105
- | fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2024-07-05 01:10:44 |
106
- | ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2024-03-20 01:17:13 |
107
- | gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2024-07-23 01:36:12 |
108
- | gme | [游戏多媒体引擎](https://cloud.tencent.com/document/product/607) | 2024-06-27 01:13:06 |
109
- | goosefs | [数据加速器 GooseFS](https://cloud.tencent.com/document/product/1424) | 2024-07-10 01:17:00 |
110
- | gpm | [游戏玩家匹配](https://cloud.tencent.com/document/product/1294) | 2022-07-11 06:12:36 |
111
- | gs | [云游戏](https://cloud.tencent.com/document/product/1162) | 2024-05-28 01:43:15 |
112
- | gse | [游戏服务器伸缩](https://cloud.tencent.com/document/product/1165) | 2022-07-11 06:12:44 |
113
- | habo | [](https://cloud.tencent.com/document/product) | 2019-05-09 19:37:22 |
114
- | hai | [高性能应用服务](https://cloud.tencent.com/document/product/1721) | 2024-05-29 01:43:09 |
115
- | hasim | [高可用物联网卡](https://cloud.tencent.com/document/product/1482) | 2023-05-18 01:29:47 |
116
- | hcm | [数学作业批改](https://cloud.tencent.com/document/product/1004) | 2024-05-09 01:16:27 |
117
- | hunyuan | [腾讯混元大模型](https://cloud.tencent.com/document/product/1729) | 2024-08-09 01:41:34 |
118
- | iai | [人脸识别](https://cloud.tencent.com/document/product/867) | 2024-03-20 01:17:43 |
119
- | ic | [图片瘦身](https://cloud.tencent.com/document/product/636) | 2023-03-02 01:23:21 |
120
- | icr | [对话机器人](https://cloud.tencent.com/document/product/1268) | 2024-04-22 01:17:48 |
121
- | ie | [智能编辑](https://cloud.tencent.com/document/product/1186) | 2023-08-17 03:20:18 |
122
- | iecp | [物联网边缘计算平台](https://cloud.tencent.com/document/product/1118) | 2024-06-20 01:46:44 |
123
- | iir | [智能识图](https://cloud.tencent.com/document/product/1217) | 2022-04-04 06:48:05 |
124
- | ims | [图片内容安全](https://cloud.tencent.com/document/product/1125) | 2024-07-03 01:17:26 |
125
- | ioa | [iOA 零信任安全管理系统](https://cloud.tencent.com/document/product/1092) | 2024-08-13 01:52:20 |
126
- | iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2023-07-17 01:22:28 |
127
- | iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2024-06-05 01:47:50 |
128
- | iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2024-08-08 01:47:56 |
129
- | iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2023-05-18 01:33:02 |
130
- | iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2024-07-08 01:16:48 |
131
- | iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2024-03-20 01:18:54 |
132
- | irp | [智能推荐平台](https://cloud.tencent.com/document/product/1541) | 2024-03-20 01:19:05 |
133
- | iss | [智能视图计算平台](https://cloud.tencent.com/document/product/1344) | 2024-07-23 01:43:27 |
134
- | ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2024-07-09 14:27:21 |
135
- | keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2024-03-20 01:19:20 |
136
- | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2024-04-17 01:17:16 |
137
- | lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2024-08-01 01:53:15 |
138
- | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2024-07-26 01:52:51 |
139
- | live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2024-08-14 02:01:47 |
140
- | lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2024-08-09 01:52:09 |
141
- | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
142
- | lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
143
- | mall | [商场客留大数据](https://cloud.tencent.com/document/product/1707) | 2024-03-20 01:20:11 |
144
- | mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2024-07-12 01:20:13 |
145
- | market | [云市场](https://cloud.tencent.com/document/product/306) | 2024-03-20 01:20:21 |
146
- | memcached | [云数据库Memcached](https://cloud.tencent.com/document/product/241) | 2024-03-20 01:20:22 |
147
- | mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-07-08 06:11:32 |
148
- | mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2024-07-02 01:19:41 |
149
- | mna | [多网聚合加速](https://cloud.tencent.com/document/product/1385) | 2024-07-22 01:55:24 |
150
- | mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2024-08-14 02:06:02 |
151
- | monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2024-08-05 01:52:14 |
152
- | mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2024-08-02 01:54:19 |
153
- | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2024-06-14 02:16:42 |
154
- | ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2024-08-14 02:10:26 |
155
- | msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2024-04-17 14:48:31 |
156
- | mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
157
- | nlp | [NLP 服务](https://cloud.tencent.com/document/product/271) | 2024-05-07 01:22:11 |
158
- | npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
159
- | oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2024-07-23 01:53:12 |
160
- | ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2024-08-14 02:11:42 |
161
- | omics | [腾讯健康组学平台](https://cloud.tencent.com/document/product/1643) | 2024-06-13 02:11:33 |
162
- | organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2024-08-14 02:13:26 |
163
- | partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2024-06-26 01:21:35 |
164
- | pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2023-05-18 01:44:14 |
165
- | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2024-07-23 01:55:36 |
166
- | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2024-06-18 02:05:02 |
167
- | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2024-08-09 02:01:53 |
168
- | rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2024-08-01 02:05:51 |
169
- | redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2024-08-07 02:08:35 |
170
- | region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2024-04-22 01:23:34 |
171
- | rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2023-12-25 00:16:39 |
172
- | rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
173
- | rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2024-07-12 01:22:59 |
174
- | scf | [云函数](https://cloud.tencent.com/document/product/583) | 2024-07-03 01:22:38 |
175
- | ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2024-07-15 01:18:34 |
176
- | smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2024-08-12 02:09:46 |
177
- | smop | [腾讯安心用户运营平台](https://cloud.tencent.com/document/product/1310) | 2024-04-11 01:20:38 |
178
- | smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2024-07-09 01:21:06 |
179
- | sms | [短信](https://cloud.tencent.com/document/product/382) | 2024-08-13 02:19:06 |
180
- | soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2024-04-11 01:20:45 |
181
- | solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
182
- | sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2024-08-12 02:10:23 |
183
- | ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2023-11-15 02:18:28 |
184
- | ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2024-08-08 02:09:39 |
185
- | sslpod | [证书监控 SSLPod](https://cloud.tencent.com/document/product/1084) | 2024-03-20 01:24:03 |
186
- | ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2024-05-21 02:06:48 |
187
- | sts | [安全凭证服务](https://cloud.tencent.com/document/product/1312) | 2024-03-20 01:24:08 |
188
- | svp | [节省计划](https://cloud.tencent.com/document/product/1761) | 2024-05-23 17:09:13 |
189
- | taf | [流量反欺诈](https://cloud.tencent.com/document/product/1031) | 2024-06-12 02:24:32 |
190
- | tag | [标签](https://cloud.tencent.com/document/product/651) | 2024-03-22 01:21:43 |
191
- | tan | [碳引擎](https://cloud.tencent.com/document/product/1498) | 2024-03-20 01:24:15 |
192
- | tat | [自动化助手](https://cloud.tencent.com/document/product/1340) | 2024-08-14 02:23:52 |
193
- | tav | [文件检测](https://cloud.tencent.com/document/product) | 2019-11-28 22:10:04 |
194
- | tbaas | [腾讯云区块链服务平台 TBaaS](https://cloud.tencent.com/document/product/663) | 2024-05-14 02:28:40 |
195
- | tbm | [](https://cloud.tencent.com/document/product) | 2019-03-29 14:49:11 |
196
- | tbp | [腾讯智能对话平台](https://cloud.tencent.com/document/product/1060) | 2024-03-20 01:24:24 |
197
- | tcaplusdb | [游戏数据库 TcaplusDB](https://cloud.tencent.com/document/product/596) | 2024-08-05 02:05:20 |
198
- | tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2024-08-07 02:15:35 |
199
- | tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2024-08-08 02:12:50 |
200
- | tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
201
- | tchd | [腾讯云健康看板](https://cloud.tencent.com/document/product/1688) | 2024-03-20 01:24:49 |
202
- | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
203
- | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2024-06-18 02:13:19 |
204
- | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2024-07-23 02:04:12 |
205
- | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-08-09 02:10:59 |
206
- | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2024-07-10 01:25:35 |
207
- | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2024-06-04 02:17:43 |
208
- | tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2024-07-17 01:25:48 |
209
- | tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2024-08-07 02:22:38 |
210
- | tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2024-07-24 02:14:59 |
211
- | teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2024-07-03 19:33:55 |
212
- | thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2024-07-24 02:16:49 |
213
- | tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
214
- | tic | [资源编排 TIC](https://cloud.tencent.com/document/product/1213) | 2023-08-17 05:26:08 |
215
- | ticm | [智能鉴黄](https://cloud.tencent.com/document/product/864) | 2021-01-07 08:08:15 |
216
- | tics | [威胁情报云查服务](https://cloud.tencent.com/document/product/1013) | 2024-03-20 01:27:08 |
217
- | tiems | [腾讯云 TI 平台 TI-EMS ](https://cloud.tencent.com/document/product/1120) | 2022-07-19 06:19:39 |
218
- | tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2024-07-05 01:19:00 |
219
- | tione | [TI-ONE 训练平台](https://cloud.tencent.com/document/product/851) | 2024-06-07 02:37:51 |
220
- | tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2024-03-20 01:27:28 |
221
- | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2024-07-24 02:19:34 |
222
- | tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
223
- | tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2024-04-29 01:26:41 |
224
- | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2024-08-02 02:17:43 |
225
- | tourism | [文旅客情大数据](https://cloud.tencent.com/document/product/1684) | 2024-03-20 01:28:59 |
226
- | trdp | [流量风险决策平台](https://cloud.tencent.com/document/product/1604) | 2023-05-18 02:01:19 |
227
- | trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2024-08-14 02:39:09 |
228
- | trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2024-06-06 02:42:14 |
229
- | trro | [远程实时操控](https://cloud.tencent.com/document/product/1584) | 2024-07-31 02:17:29 |
230
- | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2024-08-12 02:26:47 |
231
- | tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2024-08-08 02:24:45 |
232
- | tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2024-07-30 11:37:37 |
233
- | tsi | [腾讯同传系统](https://cloud.tencent.com/document/product/1399) | 2024-08-02 02:22:13 |
234
- | tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2024-03-20 01:30:06 |
235
- | tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2024-08-07 02:33:08 |
236
- | ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2024-03-20 01:30:08 |
237
- | vcg | [视频生成](https://cloud.tencent.com/document/product/1770) | 2024-06-06 02:47:17 |
238
- | vclm | [大模型视频创作引擎](https://cloud.tencent.com/document/product/1616) | 2024-07-31 02:21:05 |
239
- | vdb | [向量数据库](https://cloud.tencent.com/document/product/1709) | 2024-07-09 01:25:36 |
240
- | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2024-07-26 02:26:34 |
241
- | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2024-03-20 01:30:13 |
242
- | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-08-12 02:30:46 |
243
- | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2024-08-13 02:46:47 |
244
- | vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-08-07 02:38:54 |
245
- | vtc | [视频转译](https://cloud.tencent.com/document/product/1769) | 2024-07-31 02:26:05 |
246
- | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2024-08-09 02:30:19 |
247
- | wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2024-03-20 01:32:09 |
248
- | wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2024-08-08 02:34:16 |
249
- | weilingwith | [微瓴同业开放平台](https://cloud.tencent.com/document/product/1693) | 2024-05-15 01:38:36 |
250
- | wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
251
- | yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2024-06-05 02:38:46 |
252
- | youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
253
- | yunjing | [主机安全](https://cloud.tencent.com/document/product) | 2020-09-15 08:08:47 |
254
- | 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 +0,0 @@
1
- export { tsw } from "./tsw"
@@ -1,7 +0,0 @@
1
- import { v20200924 } from "./v20200924"
2
- import { v20210412 } from "./v20210412"
3
-
4
- export const tsw = {
5
- v20200924: v20200924,
6
- v20210412: v20210412,
7
- }
@@ -1,6 +0,0 @@
1
- import * as Models from "./tsw_models"
2
- import { Client } from "./tsw_client"
3
- export const v20200924 = {
4
- Client: Client,
5
- Models: Models,
6
- }
@@ -1,39 +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 { DescribeAgentShellResponse, AgentShell, DescribeAgentShellRequest } from "./tsw_models"
20
-
21
- /**
22
- * tsw client
23
- * @class
24
- */
25
- export class Client extends TencentCloudCommon.AbstractClient {
26
- constructor(clientConfig: TencentCloudCommon.ClientConfig) {
27
- super("tsw.tencentcloudapi.com", "2020-09-24", clientConfig)
28
- }
29
-
30
- /**
31
- * 获取服务接入信息
32
- */
33
- async DescribeAgentShell(
34
- req?: DescribeAgentShellRequest,
35
- cb?: (error: string, rep: DescribeAgentShellResponse) => void
36
- ): Promise<DescribeAgentShellResponse> {
37
- return this.request("DescribeAgentShell", req, cb)
38
- }
39
- }
@@ -1,82 +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
- * DescribeAgentShell返回参数结构体
20
- */
21
- export interface DescribeAgentShellResponse {
22
- /**
23
- * 接入信息
24
- 注意:此字段可能返回 null,表示取不到有效值。
25
- */
26
- Result: AgentShell
27
- /**
28
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
29
- */
30
- RequestId?: string
31
- }
32
-
33
- /**
34
- * agent安装脚本串
35
- */
36
- export interface AgentShell {
37
- /**
38
- * 鉴权token
39
- 注意:此字段可能返回 null,表示取不到有效值。
40
- */
41
- Token: string
42
- /**
43
- * 数据接收Ip
44
- 注意:此字段可能返回 null,表示取不到有效值。
45
- */
46
- EtlIp: string
47
- /**
48
- * 数据接收port
49
- 注意:此字段可能返回 null,表示取不到有效值。
50
- */
51
- EtlPort: string
52
- /**
53
- * 手动接入脚本串
54
- 注意:此字段可能返回 null,表示取不到有效值。
55
- */
56
- ByHandAccess: string
57
- /**
58
- * 自动接入脚本串
59
- 注意:此字段可能返回 null,表示取不到有效值。
60
- */
61
- ByShellAccess: string
62
- /**
63
- * SkyWalking数据接收port
64
- 注意:此字段可能返回 null,表示取不到有效值。
65
- */
66
- SkyWalkingPort: string
67
- /**
68
- * Zipkin数据接收port
69
- 注意:此字段可能返回 null,表示取不到有效值。
70
- */
71
- ZipkinPort: string
72
- /**
73
- * Jaeger数据接收port
74
- 注意:此字段可能返回 null,表示取不到有效值。
75
- */
76
- JaegerPort: string
77
- }
78
-
79
- /**
80
- * DescribeAgentShell请求参数结构体
81
- */
82
- export type DescribeAgentShellRequest = null
@@ -1,6 +0,0 @@
1
- import * as Models from "./tsw_models"
2
- import { Client } from "./tsw_client"
3
- export const v20210412 = {
4
- Client: Client,
5
- Models: Models,
6
- }
@@ -1,66 +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
- DescribeTokenRequest,
21
- DescribeServiceAlertObjectResponse,
22
- DescribeComponentAlertObjectResponse,
23
- DescribeServiceAlertObjectRequest,
24
- DescribeComponentAlertObjectRequest,
25
- DescribeTokenResponse,
26
- } from "./tsw_models"
27
-
28
- /**
29
- * tsw client
30
- * @class
31
- */
32
- export class Client extends TencentCloudCommon.AbstractClient {
33
- constructor(clientConfig: TencentCloudCommon.ClientConfig) {
34
- super("tsw.tencentcloudapi.com", "2021-04-12", clientConfig)
35
- }
36
-
37
- /**
38
- * 查询token
39
- */
40
- async DescribeToken(
41
- req: DescribeTokenRequest,
42
- cb?: (error: string, rep: DescribeTokenResponse) => void
43
- ): Promise<DescribeTokenResponse> {
44
- return this.request("DescribeToken", req, cb)
45
- }
46
-
47
- /**
48
- * 获取告警对象-服务告警表
49
- */
50
- async DescribeServiceAlertObject(
51
- req?: DescribeServiceAlertObjectRequest,
52
- cb?: (error: string, rep: DescribeServiceAlertObjectResponse) => void
53
- ): Promise<DescribeServiceAlertObjectResponse> {
54
- return this.request("DescribeServiceAlertObject", req, cb)
55
- }
56
-
57
- /**
58
- * 获取告警对象-组件告警
59
- */
60
- async DescribeComponentAlertObject(
61
- req?: DescribeComponentAlertObjectRequest,
62
- cb?: (error: string, rep: DescribeComponentAlertObjectResponse) => void
63
- ): Promise<DescribeComponentAlertObjectResponse> {
64
- return this.request("DescribeComponentAlertObject", req, cb)
65
- }
66
- }
@@ -1,70 +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
- * DescribeToken请求参数结构体
20
- */
21
- export interface DescribeTokenRequest {
22
- /**
23
- * 命名空间
24
- */
25
- Namespace: string
26
- }
27
-
28
- /**
29
- * DescribeServiceAlertObject返回参数结构体
30
- */
31
- export interface DescribeServiceAlertObjectResponse {
32
- /**
33
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
34
- */
35
- RequestId?: string
36
- }
37
-
38
- /**
39
- * DescribeComponentAlertObject返回参数结构体
40
- */
41
- export interface DescribeComponentAlertObjectResponse {
42
- /**
43
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
44
- */
45
- RequestId?: string
46
- }
47
-
48
- /**
49
- * DescribeServiceAlertObject请求参数结构体
50
- */
51
- export type DescribeServiceAlertObjectRequest = null
52
-
53
- /**
54
- * DescribeComponentAlertObject请求参数结构体
55
- */
56
- export type DescribeComponentAlertObjectRequest = null
57
-
58
- /**
59
- * DescribeToken返回参数结构体
60
- */
61
- export interface DescribeTokenResponse {
62
- /**
63
- * token
64
- */
65
- Result: string
66
- /**
67
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
68
- */
69
- RequestId?: string
70
- }
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"