tencentcloud-sdk-nodejs-tem 4.0.450 → 4.0.452
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/CHANGELOG.md +263 -0
- package/SERVICE_CHANGELOG.md +271 -70
- package/package.json +1 -1
- package/products.md +14 -14
- package/src/services/tem/v20210701/tem_client.ts +60 -11
- package/src/services/tem/v20210701/tem_models.ts +318 -102
- package/tencentcloud/services/tem/v20210701/tem_client.d.ts +19 -3
- package/tencentcloud/services/tem/v20210701/tem_client.js +27 -3
- package/tencentcloud/services/tem/v20210701/tem_models.d.ts +278 -94
|
@@ -22,6 +22,7 @@ import {
|
|
|
22
22
|
NamespacePage,
|
|
23
23
|
DescribeApplicationInfoResponse,
|
|
24
24
|
ModifyIngressResponse,
|
|
25
|
+
DeleteApplicationServiceRequest,
|
|
25
26
|
RestartApplicationPodRequest,
|
|
26
27
|
DestroyLogConfigResponse,
|
|
27
28
|
ResumeDeployApplicationResponse,
|
|
@@ -43,28 +44,30 @@ import {
|
|
|
43
44
|
CreateEnvironmentResponse,
|
|
44
45
|
DescribeEnvironmentStatusRequest,
|
|
45
46
|
RevertDeployApplicationResponse,
|
|
46
|
-
|
|
47
|
+
DeployStrategyConf,
|
|
47
48
|
DescribeApplicationsResponse,
|
|
48
|
-
|
|
49
|
+
CreateCosTokenRequest,
|
|
49
50
|
DescribeEnvironmentsRequest,
|
|
50
51
|
LogConfigListPage,
|
|
51
52
|
ServiceVersionBrief,
|
|
52
53
|
CreateEnvironmentRequest,
|
|
53
54
|
NodeInfo,
|
|
55
|
+
DescribeApplicationServiceListResponse,
|
|
54
56
|
DescribeLogConfigRequest,
|
|
55
57
|
TemDeployApplicationDetailInfo,
|
|
56
58
|
DescribeEnvironmentStatusResponse,
|
|
57
|
-
|
|
59
|
+
EsInfo,
|
|
58
60
|
DescribeApplicationPodsResponse,
|
|
59
61
|
DescribeConfigDataListRequest,
|
|
60
62
|
EnableApplicationAutoscalerResponse,
|
|
61
63
|
ServicePage,
|
|
62
64
|
TemServiceVersionInfo,
|
|
63
65
|
ServicePortMapping,
|
|
64
|
-
|
|
66
|
+
IngressInfo,
|
|
65
67
|
ModifyApplicationAutoscalerRequest,
|
|
66
68
|
ModifyConfigDataResponse,
|
|
67
69
|
ModifyIngressRequest,
|
|
70
|
+
Tag,
|
|
68
71
|
EnablePrometheusConf,
|
|
69
72
|
DescribeIngressesRequest,
|
|
70
73
|
StorageMountConf,
|
|
@@ -74,6 +77,7 @@ import {
|
|
|
74
77
|
ModifyConfigDataRequest,
|
|
75
78
|
CreateConfigDataResponse,
|
|
76
79
|
DescribeApplicationsStatusRequest,
|
|
80
|
+
DescribeIngressResponse,
|
|
77
81
|
RunVersionPod,
|
|
78
82
|
CreateResourceResponse,
|
|
79
83
|
ModifyApplicationInfoResponse,
|
|
@@ -105,17 +109,20 @@ import {
|
|
|
105
109
|
TemService,
|
|
106
110
|
IngressRule,
|
|
107
111
|
CronHorizontalAutoscaler,
|
|
112
|
+
DescribeApplicationServiceListRequest,
|
|
108
113
|
DescribeDeployApplicationDetailResponse,
|
|
109
114
|
IngressRuleValue,
|
|
110
115
|
DescribeEnvironmentResponse,
|
|
111
116
|
TemNamespaceInfo,
|
|
112
117
|
CreateApplicationAutoscalerRequest,
|
|
118
|
+
DeleteApplicationServiceResponse,
|
|
113
119
|
ConfigData,
|
|
114
120
|
ResumeDeployApplicationRequest,
|
|
115
121
|
DescribeConfigDataRequest,
|
|
116
122
|
MountedSettingConf,
|
|
117
123
|
CreateLogConfigResponse,
|
|
118
124
|
DescribeConfigDataListResponse,
|
|
125
|
+
ModifyApplicationServiceRequest,
|
|
119
126
|
DescribePagedLogConfigListResponse,
|
|
120
127
|
HealthCheckConfig,
|
|
121
128
|
DeployServiceBatchDetail,
|
|
@@ -131,13 +138,14 @@ import {
|
|
|
131
138
|
CreateApplicationRequest,
|
|
132
139
|
NamespaceStatusInfo,
|
|
133
140
|
DescribeRunPodPage,
|
|
141
|
+
CreateApplicationServiceRequest,
|
|
134
142
|
ModifyApplicationReplicasResponse,
|
|
135
143
|
UseDefaultRepoParameters,
|
|
136
144
|
CronHorizontalAutoscalerSchedule,
|
|
137
145
|
ModifyEnvironmentRequest,
|
|
138
146
|
GenerateApplicationPackageDownloadUrlResponse,
|
|
139
147
|
IngressRuleBackend,
|
|
140
|
-
|
|
148
|
+
CreateApplicationServiceResponse,
|
|
141
149
|
WorkloadInfo,
|
|
142
150
|
IngressRulePath,
|
|
143
151
|
NamespaceInfo,
|
|
@@ -146,6 +154,7 @@ import {
|
|
|
146
154
|
RevertDeployApplicationRequest,
|
|
147
155
|
CreateApplicationResponse,
|
|
148
156
|
HorizontalAutoscaler,
|
|
157
|
+
ModifyApplicationServiceResponse,
|
|
149
158
|
PortMapping,
|
|
150
159
|
LogConfig,
|
|
151
160
|
ModifyEnvironmentResponse,
|
|
@@ -186,6 +195,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
186
195
|
return this.request("DescribeApplicationsStatus", req, cb)
|
|
187
196
|
}
|
|
188
197
|
|
|
198
|
+
/**
|
|
199
|
+
* 查询应用访问方式列表
|
|
200
|
+
*/
|
|
201
|
+
async DescribeApplicationServiceList(
|
|
202
|
+
req: DescribeApplicationServiceListRequest,
|
|
203
|
+
cb?: (error: string, rep: DescribeApplicationServiceListResponse) => void
|
|
204
|
+
): Promise<DescribeApplicationServiceListResponse> {
|
|
205
|
+
return this.request("DescribeApplicationServiceList", req, cb)
|
|
206
|
+
}
|
|
207
|
+
|
|
189
208
|
/**
|
|
190
209
|
* 查询分页的日志收集配置列表
|
|
191
210
|
*/
|
|
@@ -279,6 +298,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
279
298
|
return this.request("DescribeEnvironmentStatus", req, cb)
|
|
280
299
|
}
|
|
281
300
|
|
|
301
|
+
/**
|
|
302
|
+
* 开始下一批次发布
|
|
303
|
+
*/
|
|
304
|
+
async ResumeDeployApplication(
|
|
305
|
+
req: ResumeDeployApplicationRequest,
|
|
306
|
+
cb?: (error: string, rep: ResumeDeployApplicationResponse) => void
|
|
307
|
+
): Promise<ResumeDeployApplicationResponse> {
|
|
308
|
+
return this.request("ResumeDeployApplication", req, cb)
|
|
309
|
+
}
|
|
310
|
+
|
|
282
311
|
/**
|
|
283
312
|
* 删除 Ingress 规则
|
|
284
313
|
*/
|
|
@@ -320,13 +349,13 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
320
349
|
}
|
|
321
350
|
|
|
322
351
|
/**
|
|
323
|
-
*
|
|
352
|
+
* 修改服务访问方式列表
|
|
324
353
|
*/
|
|
325
|
-
async
|
|
326
|
-
req:
|
|
327
|
-
cb?: (error: string, rep:
|
|
328
|
-
): Promise<
|
|
329
|
-
return this.request("
|
|
354
|
+
async ModifyApplicationService(
|
|
355
|
+
req: ModifyApplicationServiceRequest,
|
|
356
|
+
cb?: (error: string, rep: ModifyApplicationServiceResponse) => void
|
|
357
|
+
): Promise<ModifyApplicationServiceResponse> {
|
|
358
|
+
return this.request("ModifyApplicationService", req, cb)
|
|
330
359
|
}
|
|
331
360
|
|
|
332
361
|
/**
|
|
@@ -379,6 +408,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
379
408
|
return this.request("CreateLogConfig", req, cb)
|
|
380
409
|
}
|
|
381
410
|
|
|
411
|
+
/**
|
|
412
|
+
* 新增访问方式
|
|
413
|
+
*/
|
|
414
|
+
async CreateApplicationService(
|
|
415
|
+
req: CreateApplicationServiceRequest,
|
|
416
|
+
cb?: (error: string, rep: CreateApplicationServiceResponse) => void
|
|
417
|
+
): Promise<CreateApplicationServiceResponse> {
|
|
418
|
+
return this.request("CreateApplicationService", req, cb)
|
|
419
|
+
}
|
|
420
|
+
|
|
382
421
|
/**
|
|
383
422
|
* 服务基本信息查看
|
|
384
423
|
*/
|
|
@@ -469,6 +508,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
469
508
|
return this.request("DescribeIngress", req, cb)
|
|
470
509
|
}
|
|
471
510
|
|
|
511
|
+
/**
|
|
512
|
+
* 删除一条访问方式
|
|
513
|
+
*/
|
|
514
|
+
async DeleteApplicationService(
|
|
515
|
+
req: DeleteApplicationServiceRequest,
|
|
516
|
+
cb?: (error: string, rep: DeleteApplicationServiceResponse) => void
|
|
517
|
+
): Promise<DeleteApplicationServiceResponse> {
|
|
518
|
+
return this.request("DeleteApplicationService", req, cb)
|
|
519
|
+
}
|
|
520
|
+
|
|
472
521
|
/**
|
|
473
522
|
* 生成应用程序包预签名下载链接
|
|
474
523
|
*/
|