tencentcloud-sdk-nodejs 4.1.180 → 4.1.182
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/es/common/sdk_version.js +1 -1
- package/es/services/cloudapp/v20220530/cloudapp_client.js +3 -0
- package/es/services/ctsdb/v20230202/ctsdb_client.js +3 -0
- package/es/services/cynosdb/v20190107/cynosdb_client.js +141 -30
- package/es/services/hunyuan/v20230901/hunyuan_client.js +33 -39
- package/es/services/mps/v20190612/mps_client.js +3 -0
- package/es/services/tcb/v20180608/tcb_client.js +180 -141
- package/es/services/tcr/v20190924/tcr_client.js +3 -0
- package/es/services/vod/v20180717/vod_client.js +47 -20
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +11 -23
- package/tencentcloud/services/apm/v20210622/apm_client.d.ts +1 -2
- package/tencentcloud/services/apm/v20210622/apm_client.js +1 -2
- package/tencentcloud/services/apm/v20210622/apm_models.d.ts +41 -0
- package/tencentcloud/services/cloudapp/v20220530/cloudapp_client.d.ts +5 -1
- package/tencentcloud/services/cloudapp/v20220530/cloudapp_client.js +6 -0
- package/tencentcloud/services/cloudapp/v20220530/cloudapp_models.d.ts +60 -13
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +4 -0
- package/tencentcloud/services/ctsdb/v20230202/ctsdb_client.d.ts +5 -1
- package/tencentcloud/services/ctsdb/v20230202/ctsdb_client.js +6 -0
- package/tencentcloud/services/ctsdb/v20230202/ctsdb_models.d.ts +211 -44
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +179 -31
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +267 -45
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +2860 -453
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +24 -0
- package/tencentcloud/services/es/v20180416/es_models.d.ts +30 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +11 -12
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +60 -393
- package/tencentcloud/services/gme/v20180711/gme_client.d.ts +0 -4
- package/tencentcloud/services/gme/v20180711/gme_client.js +0 -4
- package/tencentcloud/services/gme/v20180711/gme_models.d.ts +7 -10
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_client.d.ts +62 -72
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_client.js +83 -97
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +0 -99
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +9 -5
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +5 -1
- package/tencentcloud/services/mps/v20190612/mps_client.js +6 -0
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +99 -0
- package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +41 -28
- package/tencentcloud/services/ses/v20201002/ses_models.d.ts +5 -4
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +199 -147
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +296 -218
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +1109 -268
- package/tencentcloud/services/tcr/v20190924/tcr_client.d.ts +5 -1
- package/tencentcloud/services/tcr/v20190924/tcr_client.js +6 -0
- package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +73 -42
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +2 -1
- package/tencentcloud/services/teo/v20220901/teo_client.js +2 -1
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +98 -48
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +0 -3
- package/tencentcloud/services/tts/v20190823/tts_models.d.ts +15 -15
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +83 -47
- package/tencentcloud/services/vod/v20180717/vod_client.js +110 -56
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +903 -411
|
@@ -28,247 +28,247 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
28
28
|
super("tcb.tencentcloudapi.com", "2018-06-08", clientConfig);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* 查询后付费短信资源量
|
|
32
|
+
1 有免费包的返回SmsFreeQuota结构所有字段
|
|
33
|
+
2 没有免费包,有付费包,付费返回复用SmsFreeQuota结构,其中只有 TodayUsedQuota 字段有效
|
|
34
|
+
3 都没有返回为空数组
|
|
32
35
|
*/
|
|
33
|
-
async
|
|
34
|
-
return this.request("
|
|
36
|
+
async DescribeSmsQuotas(req, cb) {
|
|
37
|
+
return this.request("DescribeSmsQuotas", req, cb);
|
|
35
38
|
}
|
|
36
39
|
/**
|
|
37
|
-
*
|
|
40
|
+
* 修改云开发网关API
|
|
38
41
|
*/
|
|
39
|
-
async
|
|
40
|
-
return this.request("
|
|
42
|
+
async ModifyCloudBaseGWAPI(req, cb) {
|
|
43
|
+
return this.request("ModifyCloudBaseGWAPI", req, cb);
|
|
41
44
|
}
|
|
42
45
|
/**
|
|
43
|
-
*
|
|
46
|
+
* 开通后付费资源
|
|
44
47
|
*/
|
|
45
|
-
async
|
|
46
|
-
return this.request("
|
|
48
|
+
async CreatePostpayPackage(req, cb) {
|
|
49
|
+
return this.request("CreatePostpayPackage", req, cb);
|
|
47
50
|
}
|
|
48
51
|
/**
|
|
49
|
-
*
|
|
52
|
+
* 获取新套餐列表,含详情,如果传了PackageId,则只获取指定套餐详情
|
|
50
53
|
*/
|
|
51
|
-
async
|
|
52
|
-
return this.request("
|
|
54
|
+
async DescribeBaasPackageList(req, cb) {
|
|
55
|
+
return this.request("DescribeBaasPackageList", req, cb);
|
|
53
56
|
}
|
|
54
57
|
/**
|
|
55
|
-
*
|
|
58
|
+
* 云项目部署列表
|
|
56
59
|
*/
|
|
57
|
-
async
|
|
58
|
-
return this.request("
|
|
60
|
+
async DescribeCloudBaseProjectVersionList(req, cb) {
|
|
61
|
+
return this.request("DescribeCloudBaseProjectVersionList", req, cb);
|
|
59
62
|
}
|
|
60
63
|
/**
|
|
61
|
-
*
|
|
64
|
+
* 获取云开发项目列表
|
|
62
65
|
*/
|
|
63
|
-
async
|
|
64
|
-
return this.request("
|
|
66
|
+
async DescribeCloudBaseProjectLatestVersionList(req, cb) {
|
|
67
|
+
return this.request("DescribeCloudBaseProjectLatestVersionList", req, cb);
|
|
65
68
|
}
|
|
66
69
|
/**
|
|
67
|
-
*
|
|
70
|
+
* 删除tcb用户
|
|
68
71
|
*/
|
|
69
|
-
async
|
|
70
|
-
return this.request("
|
|
72
|
+
async DeleteUsers(req, cb) {
|
|
73
|
+
return this.request("DeleteUsers", req, cb);
|
|
71
74
|
}
|
|
72
75
|
/**
|
|
73
|
-
*
|
|
76
|
+
* 创建云应用服务
|
|
74
77
|
*/
|
|
75
|
-
async
|
|
76
|
-
return this.request("
|
|
78
|
+
async EstablishCloudBaseRunServer(req, cb) {
|
|
79
|
+
return this.request("EstablishCloudBaseRunServer", req, cb);
|
|
77
80
|
}
|
|
78
81
|
/**
|
|
79
|
-
*
|
|
82
|
+
* 创建云开发项目
|
|
80
83
|
*/
|
|
81
|
-
async
|
|
82
|
-
return this.request("
|
|
84
|
+
async CreateAndDeployCloudBaseProject(req, cb) {
|
|
85
|
+
return this.request("CreateAndDeployCloudBaseProject", req, cb);
|
|
83
86
|
}
|
|
84
87
|
/**
|
|
85
|
-
*
|
|
88
|
+
* 检查是否开通Tcb服务
|
|
86
89
|
*/
|
|
87
|
-
async
|
|
88
|
-
return this.request("
|
|
90
|
+
async CheckTcbService(req, cb) {
|
|
91
|
+
return this.request("CheckTcbService", req, cb);
|
|
89
92
|
}
|
|
90
93
|
/**
|
|
91
|
-
*
|
|
94
|
+
* 创建或修改安全网关路由
|
|
92
95
|
*/
|
|
93
|
-
async
|
|
94
|
-
return this.request("
|
|
96
|
+
async EstablishWxGatewayRoute(req, cb) {
|
|
97
|
+
return this.request("EstablishWxGatewayRoute", req, cb);
|
|
95
98
|
}
|
|
96
99
|
/**
|
|
97
|
-
*
|
|
100
|
+
* 查询用户活动信息
|
|
98
101
|
*/
|
|
99
|
-
async
|
|
100
|
-
return this.request("
|
|
102
|
+
async DescribeUserActivityInfo(req, cb) {
|
|
103
|
+
return this.request("DescribeUserActivityInfo", req, cb);
|
|
101
104
|
}
|
|
102
105
|
/**
|
|
103
|
-
*
|
|
104
|
-
1 有免费包的返回SmsFreeQuota结构所有字段
|
|
105
|
-
2 没有免费包,有付费包,付费返回复用SmsFreeQuota结构,其中只有 TodayUsedQuota 字段有效
|
|
106
|
-
3 都没有返回为空数组
|
|
106
|
+
* 删除云项目
|
|
107
107
|
*/
|
|
108
|
-
async
|
|
109
|
-
return this.request("
|
|
108
|
+
async DeleteCloudBaseProjectLatestVersion(req, cb) {
|
|
109
|
+
return this.request("DeleteCloudBaseProjectLatestVersion", req, cb);
|
|
110
110
|
}
|
|
111
111
|
/**
|
|
112
|
-
*
|
|
112
|
+
* 获取网关服务
|
|
113
113
|
*/
|
|
114
|
-
async
|
|
115
|
-
return this.request("
|
|
114
|
+
async DescribeCloudBaseGWService(req, cb) {
|
|
115
|
+
return this.request("DescribeCloudBaseGWService", req, cb);
|
|
116
116
|
}
|
|
117
117
|
/**
|
|
118
|
-
*
|
|
118
|
+
* 批量冻结
|
|
119
119
|
*/
|
|
120
|
-
async
|
|
121
|
-
return this.request("
|
|
120
|
+
async FreezeCloudBaseRunServers(req, cb) {
|
|
121
|
+
return this.request("FreezeCloudBaseRunServers", req, cb);
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
|
-
*
|
|
124
|
+
* 获取云托管代码上传url
|
|
125
125
|
*/
|
|
126
|
-
async
|
|
127
|
-
return this.request("
|
|
126
|
+
async DescribeCloudBaseBuildService(req, cb) {
|
|
127
|
+
return this.request("DescribeCloudBaseBuildService", req, cb);
|
|
128
128
|
}
|
|
129
129
|
/**
|
|
130
|
-
*
|
|
130
|
+
* 创建云开发网关API
|
|
131
131
|
*/
|
|
132
|
-
async
|
|
133
|
-
return this.request("
|
|
132
|
+
async CreateCloudBaseGWAPI(req, cb) {
|
|
133
|
+
return this.request("CreateCloudBaseGWAPI", req, cb);
|
|
134
134
|
}
|
|
135
135
|
/**
|
|
136
|
-
*
|
|
136
|
+
* 创建tcb用户
|
|
137
137
|
*/
|
|
138
|
-
async
|
|
139
|
-
return this.request("
|
|
138
|
+
async CreateUser(req, cb) {
|
|
139
|
+
return this.request("CreateUser", req, cb);
|
|
140
140
|
}
|
|
141
141
|
/**
|
|
142
|
-
*
|
|
142
|
+
* 创建静态托管资源,包括COS和CDN,异步任务创建,查看创建结果需要根据DescribeStaticStore接口来查看
|
|
143
143
|
*/
|
|
144
|
-
async
|
|
145
|
-
return this.request("
|
|
144
|
+
async CreateStaticStore(req, cb) {
|
|
145
|
+
return this.request("CreateStaticStore", req, cb);
|
|
146
146
|
}
|
|
147
147
|
/**
|
|
148
|
-
*
|
|
148
|
+
* 修改登录配置
|
|
149
149
|
*/
|
|
150
|
-
async
|
|
151
|
-
return this.request("
|
|
150
|
+
async EditAuthConfig(req, cb) {
|
|
151
|
+
return this.request("EditAuthConfig", req, cb);
|
|
152
152
|
}
|
|
153
153
|
/**
|
|
154
|
-
*
|
|
154
|
+
* 本接口(ListTables)用于查询所有表信息,包括表名、表中数据条数、表中数据量、索引个数及索引的大小等
|
|
155
155
|
*/
|
|
156
|
-
async
|
|
157
|
-
return this.request("
|
|
156
|
+
async DescribeTables(req, cb) {
|
|
157
|
+
return this.request("DescribeTables", req, cb);
|
|
158
158
|
}
|
|
159
159
|
/**
|
|
160
|
-
*
|
|
160
|
+
* 查询环境1分钱抵扣信息
|
|
161
161
|
*/
|
|
162
|
-
async
|
|
163
|
-
return this.request("
|
|
162
|
+
async DescribeSpecialCostItems(req, cb) {
|
|
163
|
+
return this.request("DescribeSpecialCostItems", req, cb);
|
|
164
164
|
}
|
|
165
165
|
/**
|
|
166
|
-
*
|
|
166
|
+
* 删除网关某版本
|
|
167
167
|
*/
|
|
168
|
-
async
|
|
169
|
-
return this.request("
|
|
168
|
+
async DeleteGatewayVersion(req, cb) {
|
|
169
|
+
return this.request("DeleteGatewayVersion", req, cb);
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
|
-
*
|
|
172
|
+
* 修改日志主题
|
|
173
173
|
*/
|
|
174
|
-
async
|
|
175
|
-
return this.request("
|
|
174
|
+
async ModifyClsTopic(req, cb) {
|
|
175
|
+
return this.request("ModifyClsTopic", req, cb);
|
|
176
176
|
}
|
|
177
177
|
/**
|
|
178
|
-
*
|
|
178
|
+
* 查询tcb用户列表
|
|
179
179
|
*/
|
|
180
|
-
async
|
|
181
|
-
return this.request("
|
|
180
|
+
async DescribeUserList(req, cb) {
|
|
181
|
+
return this.request("DescribeUserList", req, cb);
|
|
182
182
|
}
|
|
183
183
|
/**
|
|
184
|
-
*
|
|
184
|
+
* 查询静态托管域名任务状态
|
|
185
185
|
*/
|
|
186
|
-
async
|
|
187
|
-
return this.request("
|
|
186
|
+
async DescribeHostingDomainTask(req, cb) {
|
|
187
|
+
return this.request("DescribeHostingDomainTask", req, cb);
|
|
188
188
|
}
|
|
189
189
|
/**
|
|
190
|
-
*
|
|
190
|
+
* 删除安全网关路由
|
|
191
191
|
*/
|
|
192
|
-
async
|
|
193
|
-
return this.request("
|
|
192
|
+
async DeleteWxGatewayRoute(req, cb) {
|
|
193
|
+
return this.request("DeleteWxGatewayRoute", req, cb);
|
|
194
194
|
}
|
|
195
195
|
/**
|
|
196
|
-
*
|
|
196
|
+
* 设置网关版本的流量比例
|
|
197
197
|
*/
|
|
198
|
-
async
|
|
199
|
-
return this.request("
|
|
198
|
+
async ModifyGatewayVersionTraffic(req, cb) {
|
|
199
|
+
return this.request("ModifyGatewayVersionTraffic", req, cb);
|
|
200
200
|
}
|
|
201
201
|
/**
|
|
202
|
-
*
|
|
202
|
+
* 增加安全域名
|
|
203
203
|
*/
|
|
204
|
-
async
|
|
205
|
-
return this.request("
|
|
204
|
+
async CreateAuthDomain(req, cb) {
|
|
205
|
+
return this.request("CreateAuthDomain", req, cb);
|
|
206
206
|
}
|
|
207
207
|
/**
|
|
208
|
-
*
|
|
208
|
+
* 获取环境列表,含环境下的各个资源信息。尤其是各资源的唯一标识,是请求各资源的关键参数
|
|
209
209
|
*/
|
|
210
|
-
async
|
|
211
|
-
return this.request("
|
|
210
|
+
async DescribeEnvs(req, cb) {
|
|
211
|
+
return this.request("DescribeEnvs", req, cb);
|
|
212
212
|
}
|
|
213
213
|
/**
|
|
214
|
-
*
|
|
214
|
+
* 绑定云开发自定义域名,用于云接入和静态托管
|
|
215
215
|
*/
|
|
216
|
-
async
|
|
217
|
-
return this.request("
|
|
216
|
+
async BindCloudBaseAccessDomain(req, cb) {
|
|
217
|
+
return this.request("BindCloudBaseAccessDomain", req, cb);
|
|
218
218
|
}
|
|
219
219
|
/**
|
|
220
|
-
*
|
|
220
|
+
* 查看容器托管的集群状态
|
|
221
221
|
*/
|
|
222
|
-
async
|
|
223
|
-
return this.request("
|
|
222
|
+
async DescribeCloudBaseRunResource(req, cb) {
|
|
223
|
+
return this.request("DescribeCloudBaseRunResource", req, cb);
|
|
224
224
|
}
|
|
225
225
|
/**
|
|
226
|
-
*
|
|
226
|
+
* 查看安全网关路由
|
|
227
227
|
*/
|
|
228
|
-
async
|
|
229
|
-
return this.request("
|
|
228
|
+
async DescribeWxGatewayRoutes(req, cb) {
|
|
229
|
+
return this.request("DescribeWxGatewayRoutes", req, cb);
|
|
230
230
|
}
|
|
231
231
|
/**
|
|
232
|
-
*
|
|
232
|
+
* 获取环境下单地域
|
|
233
233
|
*/
|
|
234
|
-
async
|
|
235
|
-
return this.request("
|
|
234
|
+
async DescribeEnvDealRegion(req, cb) {
|
|
235
|
+
return this.request("DescribeEnvDealRegion", req, cb);
|
|
236
236
|
}
|
|
237
237
|
/**
|
|
238
|
-
*
|
|
238
|
+
* 查询网关监控数据
|
|
239
239
|
*/
|
|
240
|
-
async
|
|
241
|
-
return this.request("
|
|
240
|
+
async DescribeGatewayCurveData(req, cb) {
|
|
241
|
+
return this.request("DescribeGatewayCurveData", req, cb);
|
|
242
242
|
}
|
|
243
243
|
/**
|
|
244
|
-
*
|
|
244
|
+
* 描述扩展上传文件信息
|
|
245
245
|
*/
|
|
246
|
-
async
|
|
247
|
-
return this.request("
|
|
246
|
+
async DescribeExtensionUploadInfo(req, cb) {
|
|
247
|
+
return this.request("DescribeExtensionUploadInfo", req, cb);
|
|
248
248
|
}
|
|
249
249
|
/**
|
|
250
|
-
*
|
|
250
|
+
* 本接口(ListTables)用于查询所有表信息,包括表名、表中数据条数、表中数据量、索引个数及索引的大小等
|
|
251
251
|
*/
|
|
252
|
-
async
|
|
253
|
-
return this.request("
|
|
252
|
+
async ListTables(req, cb) {
|
|
253
|
+
return this.request("ListTables", req, cb);
|
|
254
254
|
}
|
|
255
255
|
/**
|
|
256
|
-
*
|
|
256
|
+
* 查询数据库安全规则
|
|
257
257
|
*/
|
|
258
|
-
async
|
|
259
|
-
return this.request("
|
|
258
|
+
async DescribeSafeRule(req, cb) {
|
|
259
|
+
return this.request("DescribeSafeRule", req, cb);
|
|
260
260
|
}
|
|
261
261
|
/**
|
|
262
|
-
*
|
|
262
|
+
* 删除服务版本
|
|
263
263
|
*/
|
|
264
|
-
async
|
|
265
|
-
return this.request("
|
|
264
|
+
async DeleteCloudBaseRunServerVersion(req, cb) {
|
|
265
|
+
return this.request("DeleteCloudBaseRunServerVersion", req, cb);
|
|
266
266
|
}
|
|
267
267
|
/**
|
|
268
|
-
*
|
|
268
|
+
* 开通容器托管的资源,包括集群创建,VPC配置,异步任务创建,镜像托管,Coding等,查看创建结果需要根据DescribeCloudBaseRunResource接口来查看
|
|
269
269
|
*/
|
|
270
|
-
async
|
|
271
|
-
return this.request("
|
|
270
|
+
async CreateCloudBaseRunResource(req, cb) {
|
|
271
|
+
return this.request("CreateCloudBaseRunResource", req, cb);
|
|
272
272
|
}
|
|
273
273
|
/**
|
|
274
274
|
* 获取增值包计费相关信息
|
|
@@ -277,22 +277,34 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
277
277
|
return this.request("DescribeExtraPkgBillingInfo", req, cb);
|
|
278
278
|
}
|
|
279
279
|
/**
|
|
280
|
-
*
|
|
280
|
+
* 执行SQL语句
|
|
281
281
|
*/
|
|
282
|
-
async
|
|
283
|
-
return this.request("
|
|
282
|
+
async RunSql(req, cb) {
|
|
283
|
+
return this.request("RunSql", req, cb);
|
|
284
284
|
}
|
|
285
285
|
/**
|
|
286
|
-
*
|
|
286
|
+
* 查询版本历史
|
|
287
287
|
*/
|
|
288
|
-
async
|
|
289
|
-
return this.request("
|
|
288
|
+
async DescribeCloudBaseRunVersionSnapshot(req, cb) {
|
|
289
|
+
return this.request("DescribeCloudBaseRunVersionSnapshot", req, cb);
|
|
290
|
+
}
|
|
291
|
+
/**
|
|
292
|
+
* 创建云开发产品计费订单
|
|
293
|
+
*/
|
|
294
|
+
async CreateBillDeal(req, cb) {
|
|
295
|
+
return this.request("CreateBillDeal", req, cb);
|
|
290
296
|
}
|
|
291
297
|
/**
|
|
292
298
|
* 根据用户传入的指标, 拉取一段时间内的监控数据。
|
|
293
299
|
*/
|
|
294
|
-
async
|
|
295
|
-
return this.request("
|
|
300
|
+
async DescribeCurveData(req, cb) {
|
|
301
|
+
return this.request("DescribeCurveData", req, cb);
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* 修改数据库权限
|
|
305
|
+
*/
|
|
306
|
+
async ModifyDatabaseACL(req, cb) {
|
|
307
|
+
return this.request("ModifyDatabaseACL", req, cb);
|
|
296
308
|
}
|
|
297
309
|
/**
|
|
298
310
|
* TCB云API统一入口
|
|
@@ -301,82 +313,88 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
301
313
|
return this.request("CommonServiceAPI", req, cb);
|
|
302
314
|
}
|
|
303
315
|
/**
|
|
304
|
-
*
|
|
316
|
+
* 查询环境个数上限
|
|
305
317
|
*/
|
|
306
|
-
async
|
|
307
|
-
return this.request("
|
|
318
|
+
async DescribeEnvLimit(req, cb) {
|
|
319
|
+
return this.request("DescribeEnvLimit", req, cb);
|
|
308
320
|
}
|
|
309
321
|
/**
|
|
310
|
-
*
|
|
322
|
+
* 销毁静态托管资源,该接口创建异步销毁任务,资源最终状态可从DestroyStaticStore接口查看
|
|
311
323
|
*/
|
|
312
|
-
async
|
|
313
|
-
return this.request("
|
|
324
|
+
async DestroyStaticStore(req, cb) {
|
|
325
|
+
return this.request("DestroyStaticStore", req, cb);
|
|
314
326
|
}
|
|
315
327
|
/**
|
|
316
|
-
*
|
|
328
|
+
* 查询后付费免费配额信息
|
|
317
329
|
*/
|
|
318
|
-
async
|
|
319
|
-
return this.request("
|
|
330
|
+
async DescribeEnvFreeQuota(req, cb) {
|
|
331
|
+
return this.request("DescribeEnvFreeQuota", req, cb);
|
|
320
332
|
}
|
|
321
333
|
/**
|
|
322
|
-
*
|
|
334
|
+
* 创建托管域名
|
|
323
335
|
*/
|
|
324
|
-
async
|
|
325
|
-
return this.request("
|
|
336
|
+
async CreateHostingDomain(req, cb) {
|
|
337
|
+
return this.request("CreateHostingDomain", req, cb);
|
|
326
338
|
}
|
|
327
339
|
/**
|
|
328
|
-
*
|
|
340
|
+
* 绑定另外一个环境下的网关,callContainer请求可以访问到该网关
|
|
329
341
|
*/
|
|
330
|
-
async
|
|
331
|
-
return this.request("
|
|
342
|
+
async BindEnvGateway(req, cb) {
|
|
343
|
+
return this.request("BindEnvGateway", req, cb);
|
|
332
344
|
}
|
|
333
345
|
/**
|
|
334
|
-
*
|
|
346
|
+
* 创建服务版本
|
|
335
347
|
*/
|
|
336
|
-
async
|
|
337
|
-
return this.request("
|
|
348
|
+
async CreateCloudBaseRunServerVersion(req, cb) {
|
|
349
|
+
return this.request("CreateCloudBaseRunServerVersion", req, cb);
|
|
338
350
|
}
|
|
339
351
|
/**
|
|
340
|
-
*
|
|
352
|
+
* 查询服务版本的详情,CPU和MEM 请使用CPUSize和MemSize
|
|
341
353
|
*/
|
|
342
|
-
async
|
|
343
|
-
return this.request("
|
|
354
|
+
async DescribeCloudBaseRunServerVersion(req, cb) {
|
|
355
|
+
return this.request("DescribeCloudBaseRunServerVersion", req, cb);
|
|
344
356
|
}
|
|
345
357
|
/**
|
|
346
|
-
*
|
|
358
|
+
* 查看安全网关
|
|
347
359
|
*/
|
|
348
|
-
async
|
|
349
|
-
return this.request("
|
|
360
|
+
async DescribeWxGateways(req, cb) {
|
|
361
|
+
return this.request("DescribeWxGateways", req, cb);
|
|
350
362
|
}
|
|
351
363
|
/**
|
|
352
|
-
*
|
|
364
|
+
* 查询单个服务的详情,版本以及详情
|
|
353
365
|
*/
|
|
354
|
-
async
|
|
355
|
-
return this.request("
|
|
366
|
+
async DescribeCloudBaseRunServer(req, cb) {
|
|
367
|
+
return this.request("DescribeCloudBaseRunServer", req, cb);
|
|
356
368
|
}
|
|
357
369
|
/**
|
|
358
|
-
*
|
|
370
|
+
* 查看容器托管的集群状态扩展使用
|
|
359
371
|
*/
|
|
360
|
-
async
|
|
361
|
-
return this.request("
|
|
372
|
+
async DescribeCloudBaseRunResourceForExtend(req, cb) {
|
|
373
|
+
return this.request("DescribeCloudBaseRunResourceForExtend", req, cb);
|
|
362
374
|
}
|
|
363
375
|
/**
|
|
364
|
-
*
|
|
376
|
+
* 查询表的相关信息,包括索引等信息
|
|
365
377
|
*/
|
|
366
|
-
async
|
|
367
|
-
return this.request("
|
|
378
|
+
async DescribeTable(req, cb) {
|
|
379
|
+
return this.request("DescribeTable", req, cb);
|
|
368
380
|
}
|
|
369
381
|
/**
|
|
370
|
-
*
|
|
382
|
+
* 获取后付费免费额度
|
|
371
383
|
*/
|
|
372
|
-
async
|
|
373
|
-
return this.request("
|
|
384
|
+
async DescribePostpayPackageFreeQuotas(req, cb) {
|
|
385
|
+
return this.request("DescribePostpayPackageFreeQuotas", req, cb);
|
|
374
386
|
}
|
|
375
387
|
/**
|
|
376
|
-
*
|
|
388
|
+
* 更新活动详情
|
|
377
389
|
*/
|
|
378
|
-
async
|
|
379
|
-
return this.request("
|
|
390
|
+
async ReplaceActivityRecord(req, cb) {
|
|
391
|
+
return this.request("ReplaceActivityRecord", req, cb);
|
|
392
|
+
}
|
|
393
|
+
/**
|
|
394
|
+
* 删除网关域名
|
|
395
|
+
*/
|
|
396
|
+
async DeleteCloudBaseGWDomain(req, cb) {
|
|
397
|
+
return this.request("DeleteCloudBaseGWDomain", req, cb);
|
|
380
398
|
}
|
|
381
399
|
/**
|
|
382
400
|
* 本接口(DeleteTable)用于删除表,删除表后表中数据将会被删除且无法恢复,请谨慎操作
|
|
@@ -391,22 +409,16 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
391
409
|
return this.request("DestroyEnv", req, cb);
|
|
392
410
|
}
|
|
393
411
|
/**
|
|
394
|
-
*
|
|
412
|
+
* 查询环境计费周期
|
|
395
413
|
*/
|
|
396
|
-
async
|
|
397
|
-
return this.request("
|
|
414
|
+
async DescribeEnvAccountCircle(req, cb) {
|
|
415
|
+
return this.request("DescribeEnvAccountCircle", req, cb);
|
|
398
416
|
}
|
|
399
417
|
/**
|
|
400
|
-
*
|
|
401
|
-
*/
|
|
402
|
-
async DescribeCloudBaseBuildService(req, cb) {
|
|
403
|
-
return this.request("DescribeCloudBaseBuildService", req, cb);
|
|
404
|
-
}
|
|
405
|
-
/**
|
|
406
|
-
* 查询版本历史
|
|
418
|
+
* 查询后付费资源免费量
|
|
407
419
|
*/
|
|
408
|
-
async
|
|
409
|
-
return this.request("
|
|
420
|
+
async DescribePostpayFreeQuotas(req, cb) {
|
|
421
|
+
return this.request("DescribePostpayFreeQuotas", req, cb);
|
|
410
422
|
}
|
|
411
423
|
/**
|
|
412
424
|
* 查询网关版本信息
|
|
@@ -416,76 +428,142 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
416
428
|
return this.request("DescribeGatewayVersions", req, cb);
|
|
417
429
|
}
|
|
418
430
|
/**
|
|
419
|
-
*
|
|
431
|
+
* 本接口(CreateTable)用于创建表,支持创建capped类型集合,暂时不支持分片表
|
|
420
432
|
*/
|
|
421
|
-
async
|
|
422
|
-
return this.request("
|
|
433
|
+
async CreateTable(req, cb) {
|
|
434
|
+
return this.request("CreateTable", req, cb);
|
|
423
435
|
}
|
|
424
436
|
/**
|
|
425
|
-
*
|
|
437
|
+
* 查询服务版本的详情
|
|
426
438
|
*/
|
|
427
|
-
async
|
|
428
|
-
return this.request("
|
|
439
|
+
async DescribeCbrServerVersion(req, cb) {
|
|
440
|
+
return this.request("DescribeCbrServerVersion", req, cb);
|
|
429
441
|
}
|
|
430
442
|
/**
|
|
431
|
-
*
|
|
443
|
+
* 获取网关API列表
|
|
432
444
|
*/
|
|
433
|
-
async
|
|
434
|
-
return this.request("
|
|
445
|
+
async DescribeCloudBaseGWAPI(req, cb) {
|
|
446
|
+
return this.request("DescribeCloudBaseGWAPI", req, cb);
|
|
435
447
|
}
|
|
436
448
|
/**
|
|
437
|
-
*
|
|
449
|
+
* 查询环境后付费计费详情
|
|
438
450
|
*/
|
|
439
|
-
async
|
|
440
|
-
return this.request("
|
|
451
|
+
async DescribeEnvPostpaidDeduct(req, cb) {
|
|
452
|
+
return this.request("DescribeEnvPostpaidDeduct", req, cb);
|
|
441
453
|
}
|
|
442
454
|
/**
|
|
443
|
-
*
|
|
455
|
+
* 获取下载文件信息
|
|
444
456
|
*/
|
|
445
|
-
async
|
|
446
|
-
return this.request("
|
|
457
|
+
async DescribeDownloadFile(req, cb) {
|
|
458
|
+
return this.request("DescribeDownloadFile", req, cb);
|
|
447
459
|
}
|
|
448
460
|
/**
|
|
449
|
-
*
|
|
461
|
+
* 获取安全域名列表
|
|
450
462
|
*/
|
|
451
|
-
async
|
|
452
|
-
return this.request("
|
|
463
|
+
async DescribeAuthDomains(req, cb) {
|
|
464
|
+
return this.request("DescribeAuthDomains", req, cb);
|
|
453
465
|
}
|
|
454
466
|
/**
|
|
455
|
-
*
|
|
467
|
+
* 批量解冻服务
|
|
456
468
|
*/
|
|
457
|
-
async
|
|
458
|
-
return this.request("
|
|
469
|
+
async UnfreezeCloudBaseRunServers(req, cb) {
|
|
470
|
+
return this.request("UnfreezeCloudBaseRunServers", req, cb);
|
|
459
471
|
}
|
|
460
472
|
/**
|
|
461
|
-
*
|
|
473
|
+
* 获取计费相关信息
|
|
462
474
|
*/
|
|
463
|
-
async
|
|
464
|
-
return this.request("
|
|
475
|
+
async DescribeBillingInfo(req, cb) {
|
|
476
|
+
return this.request("DescribeBillingInfo", req, cb);
|
|
465
477
|
}
|
|
466
478
|
/**
|
|
467
|
-
*
|
|
479
|
+
* 针对已隔离的免费环境,可以通过本接口将其恢复访问。
|
|
468
480
|
*/
|
|
469
|
-
async
|
|
470
|
-
return this.request("
|
|
481
|
+
async ReinstateEnv(req, cb) {
|
|
482
|
+
return this.request("ReinstateEnv", req, cb);
|
|
471
483
|
}
|
|
472
484
|
/**
|
|
473
|
-
*
|
|
485
|
+
* 获取数据库权限
|
|
474
486
|
*/
|
|
475
|
-
async
|
|
476
|
-
return this.request("
|
|
487
|
+
async DescribeDatabaseACL(req, cb) {
|
|
488
|
+
return this.request("DescribeDatabaseACL", req, cb);
|
|
477
489
|
}
|
|
478
490
|
/**
|
|
479
|
-
*
|
|
491
|
+
* 修改容器内的版本流量配置
|
|
480
492
|
*/
|
|
481
|
-
async
|
|
482
|
-
return this.request("
|
|
493
|
+
async ModifyCloudBaseRunServerFlowConf(req, cb) {
|
|
494
|
+
return this.request("ModifyCloudBaseRunServerFlowConf", req, cb);
|
|
483
495
|
}
|
|
484
496
|
/**
|
|
485
|
-
*
|
|
497
|
+
* 查看当前环境下静态托管资源信息,根据返回结果判断静态资源的状态
|
|
486
498
|
*/
|
|
487
|
-
async
|
|
488
|
-
return this.request("
|
|
499
|
+
async DescribeStaticStore(req, cb) {
|
|
500
|
+
return this.request("DescribeStaticStore", req, cb);
|
|
501
|
+
}
|
|
502
|
+
/**
|
|
503
|
+
* 本接口(UpdateTable)用于修改表信息,当前可以支持创建和删除索引
|
|
504
|
+
*/
|
|
505
|
+
async UpdateTable(req, cb) {
|
|
506
|
+
return this.request("UpdateTable", req, cb);
|
|
507
|
+
}
|
|
508
|
+
/**
|
|
509
|
+
* 删除网关API
|
|
510
|
+
*/
|
|
511
|
+
async DeleteCloudBaseGWAPI(req, cb) {
|
|
512
|
+
return this.request("DeleteCloudBaseGWAPI", req, cb);
|
|
513
|
+
}
|
|
514
|
+
/**
|
|
515
|
+
* 根据用户传入的指标, 拉取一段时间内的监控数据。
|
|
516
|
+
*/
|
|
517
|
+
async DescribeGraphData(req, cb) {
|
|
518
|
+
return this.request("DescribeGraphData", req, cb);
|
|
519
|
+
}
|
|
520
|
+
/**
|
|
521
|
+
* 查询活动记录信息
|
|
522
|
+
*/
|
|
523
|
+
async DescribeActivityRecord(req, cb) {
|
|
524
|
+
return this.request("DescribeActivityRecord", req, cb);
|
|
525
|
+
}
|
|
526
|
+
/**
|
|
527
|
+
* 搜索CLS日志,TCB角色密钥访问
|
|
528
|
+
*/
|
|
529
|
+
async SearchClsLog(req, cb) {
|
|
530
|
+
return this.request("SearchClsLog", req, cb);
|
|
531
|
+
}
|
|
532
|
+
/**
|
|
533
|
+
* 查询指定指标的配额使用量
|
|
534
|
+
*/
|
|
535
|
+
async DescribeQuotaData(req, cb) {
|
|
536
|
+
return this.request("DescribeQuotaData", req, cb);
|
|
537
|
+
}
|
|
538
|
+
/**
|
|
539
|
+
* 修改tcb用户
|
|
540
|
+
*/
|
|
541
|
+
async ModifyUser(req, cb) {
|
|
542
|
+
return this.request("ModifyUser", req, cb);
|
|
543
|
+
}
|
|
544
|
+
/**
|
|
545
|
+
* 更新环境信息
|
|
546
|
+
*/
|
|
547
|
+
async ModifyEnv(req, cb) {
|
|
548
|
+
return this.request("ModifyEnv", req, cb);
|
|
549
|
+
}
|
|
550
|
+
/**
|
|
551
|
+
* 修改服务版本的副本数,环境变量
|
|
552
|
+
*/
|
|
553
|
+
async ModifyCloudBaseRunServerVersion(req, cb) {
|
|
554
|
+
return this.request("ModifyCloudBaseRunServerVersion", req, cb);
|
|
555
|
+
}
|
|
556
|
+
/**
|
|
557
|
+
* 查询服务版本详情(新)
|
|
558
|
+
*/
|
|
559
|
+
async DescribeCloudBaseRunVersion(req, cb) {
|
|
560
|
+
return this.request("DescribeCloudBaseRunVersion", req, cb);
|
|
561
|
+
}
|
|
562
|
+
/**
|
|
563
|
+
* 绑定自定义域名
|
|
564
|
+
*/
|
|
565
|
+
async BindCloudBaseGWDomain(req, cb) {
|
|
566
|
+
return this.request("BindCloudBaseGWDomain", req, cb);
|
|
489
567
|
}
|
|
490
568
|
}
|
|
491
569
|
exports.Client = Client;
|