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