tencentcloud-sdk-nodejs 4.0.409 → 4.0.410
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 +195 -0
- package/SERVICE_CHANGELOG.md +270 -62
- package/package.json +1 -1
- package/products.md +13 -13
- package/src/common/sdk_version.ts +1 -1
- package/src/services/bda/v20200324/bda_models.ts +12 -0
- package/src/services/cat/v20180409/cat_models.ts +1 -5
- package/src/services/cbs/v20170312/cbs_models.ts +31 -19
- package/src/services/cdb/v20170320/cdb_models.ts +1 -1
- package/src/services/cdn/v20180606/cdn_models.ts +12 -0
- package/src/services/cpdp/v20190820/cpdp_client.ts +9 -36
- package/src/services/cpdp/v20190820/cpdp_models.ts +19 -260
- package/src/services/cvm/v20170312/cvm_models.ts +2 -2
- package/src/services/dnspod/v20210323/dnspod_models.ts +5 -0
- package/src/services/faceid/v20180301/faceid_models.ts +19 -3
- package/src/services/tcr/v20190924/tcr_models.ts +2 -2
- package/src/services/tem/v20210701/tem_client.ts +72 -8
- package/src/services/tem/v20210701/tem_models.ts +550 -111
- package/src/services/teo/v20220106/teo_models.ts +9 -3
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bda/v20200324/bda_models.d.ts +10 -0
- package/tencentcloud/services/cat/v20180409/cat_models.d.ts +1 -5
- package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +25 -15
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +10 -0
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +4 -12
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +4 -16
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +16 -218
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +2 -2
- package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +4 -0
- package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +16 -3
- package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +2 -2
- package/tencentcloud/services/tem/v20210701/tem_client.d.ts +23 -3
- package/tencentcloud/services/tem/v20210701/tem_client.js +32 -2
- package/tencentcloud/services/tem/v20210701/tem_models.d.ts +469 -98
- package/tencentcloud/services/teo/v20220106/teo_models.d.ts +8 -3
- package/test/cpdp.v20190820.test.js +2 -22
- package/test/tem.v20210701.test.js +50 -0
|
@@ -325,9 +325,17 @@ export interface GetEidTokenConfig {
|
|
|
325
325
|
*/
|
|
326
326
|
UseIntentionVerify?: boolean;
|
|
327
327
|
/**
|
|
328
|
-
*
|
|
328
|
+
* 意愿核身模式。枚举值:1( 朗读模式),2(问答模式) 。默认值1
|
|
329
|
+
*/
|
|
330
|
+
IntentionMode?: string;
|
|
331
|
+
/**
|
|
332
|
+
* 意愿核身朗读模式使用的文案,若未使用意愿核身朗读功能,该字段无需传入。默认为空,最长可接受120的字符串长度。
|
|
329
333
|
*/
|
|
330
334
|
IntentionVerifyText?: string;
|
|
335
|
+
/**
|
|
336
|
+
* 意愿核身问答模式的配置列表。当前仅支持一个问答。
|
|
337
|
+
*/
|
|
338
|
+
IntentionQuestions?: Array<IntentionQuestion>;
|
|
331
339
|
}
|
|
332
340
|
/**
|
|
333
341
|
* CheckIdCardInformation返回参数结构体
|
|
@@ -503,7 +511,7 @@ export interface GetEidResultRequest {
|
|
|
503
511
|
*/
|
|
504
512
|
EidToken: string;
|
|
505
513
|
/**
|
|
506
|
-
* 指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证信息;3:最佳截图信息;5
|
|
514
|
+
* 指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证信息;3:最佳截图信息;5:意愿核身朗读模式相关结果;6:意愿核身问答模式相关结果)。
|
|
507
515
|
如 13表示拉取文本类、最佳截图信息。
|
|
508
516
|
默认值:0
|
|
509
517
|
*/
|
|
@@ -1592,10 +1600,15 @@ export interface GetEidResultResponse {
|
|
|
1592
1600
|
*/
|
|
1593
1601
|
EidInfo: EidInfo;
|
|
1594
1602
|
/**
|
|
1595
|
-
*
|
|
1603
|
+
* 意愿核身朗读模式相关信息。若未使用意愿核身朗读功能,该字段返回值可以不处理。
|
|
1596
1604
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1597
1605
|
*/
|
|
1598
1606
|
IntentionVerifyData: IntentionVerifyData;
|
|
1607
|
+
/**
|
|
1608
|
+
* 意愿核身问答模式相关信息。若未使用意愿核身问答模式功能,该字段返回值可以不处理。
|
|
1609
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1610
|
+
*/
|
|
1611
|
+
IntentionQuestionResult: IntentionQuestionResult;
|
|
1599
1612
|
/**
|
|
1600
1613
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1601
1614
|
*/
|
|
@@ -3912,7 +3912,7 @@ export interface TcrRepositoryInfo {
|
|
|
3912
3912
|
*/
|
|
3913
3913
|
Namespace: string;
|
|
3914
3914
|
/**
|
|
3915
|
-
*
|
|
3915
|
+
* 创建时间,格式"2006-01-02 15:04:05.999999999 -0700 MST"
|
|
3916
3916
|
*/
|
|
3917
3917
|
CreationTime: string;
|
|
3918
3918
|
/**
|
|
@@ -3930,7 +3930,7 @@ export interface TcrRepositoryInfo {
|
|
|
3930
3930
|
*/
|
|
3931
3931
|
BriefDescription: string;
|
|
3932
3932
|
/**
|
|
3933
|
-
*
|
|
3933
|
+
* 更新时间,格式"2006-01-02 15:04:05.999999999 -0700 MST"
|
|
3934
3934
|
*/
|
|
3935
3935
|
UpdateTime: string;
|
|
3936
3936
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { CreateResourceRequest, DescribeConfigDataResponse, DescribeApplicationInfoResponse, ModifyIngressResponse, RestartApplicationPodRequest, ResumeDeployApplicationResponse, DescribeApplicationPodsRequest, DeleteIngressResponse, DeleteApplicationResponse, ModifyApplicationAutoscalerResponse, RollingUpdateApplicationByVersionRequest, CreateCosTokenResponse,
|
|
3
|
+
import { CreateResourceRequest, DescribeConfigDataResponse, DescribeApplicationInfoResponse, ModifyIngressResponse, RestartApplicationPodRequest, DestroyLogConfigResponse, ResumeDeployApplicationResponse, DescribeApplicationPodsRequest, DeleteIngressResponse, DeleteApplicationResponse, ModifyApplicationAutoscalerResponse, RollingUpdateApplicationByVersionRequest, CreateCosTokenResponse, ModifyLogConfigResponse, RollingUpdateApplicationByVersionResponse, StopApplicationRequest, ModifyApplicationInfoRequest, DestroyEnvironmentRequest, CreateEnvironmentResponse, DescribeEnvironmentStatusRequest, RevertDeployApplicationResponse, DescribeApplicationsResponse, DescribeEnvironmentsRequest, CreateEnvironmentRequest, DescribeLogConfigRequest, DescribeEnvironmentStatusResponse, DescribeApplicationPodsResponse, DescribeConfigDataListRequest, CreateCosTokenRequest, ModifyApplicationAutoscalerRequest, ModifyConfigDataResponse, ModifyIngressRequest, DescribeIngressesRequest, CreateLogConfigRequest, RestartApplicationResponse, DescribeIngressesResponse, ModifyConfigDataRequest, CreateConfigDataResponse, DescribeApplicationsStatusRequest, CreateResourceResponse, ModifyApplicationInfoResponse, RestartApplicationRequest, DestroyEnvironmentResponse, DescribeIngressRequest, StopApplicationResponse, DeployApplicationResponse, RestartApplicationPodResponse, DeleteApplicationRequest, CreateApplicationAutoscalerResponse, DeleteApplicationAutoscalerRequest, DescribeApplicationAutoscalerListRequest, DescribeApplicationsStatusResponse, DescribeDeployApplicationDetailRequest, DeleteIngressRequest, DescribeRelatedIngressesRequest, GenerateApplicationPackageDownloadUrlRequest, DescribeEnvironmentsResponse, DeleteApplicationAutoscalerResponse, DescribeRelatedIngressesResponse, DescribePagedLogConfigListRequest, DescribeDeployApplicationDetailResponse, CreateApplicationAutoscalerRequest, ResumeDeployApplicationRequest, DescribeConfigDataRequest, CreateLogConfigResponse, DescribeConfigDataListResponse, DescribePagedLogConfigListResponse, CreateConfigDataRequest, DeployApplicationRequest, DescribeApplicationAutoscalerListResponse, DestroyConfigDataRequest, DestroyConfigDataResponse, DescribeApplicationsRequest, DescribeApplicationInfoRequest, CreateApplicationRequest, ModifyApplicationReplicasResponse, ModifyEnvironmentRequest, GenerateApplicationPackageDownloadUrlResponse, DescribeIngressResponse, DescribeLogConfigResponse, RevertDeployApplicationRequest, CreateApplicationResponse, ModifyEnvironmentResponse, ModifyApplicationReplicasRequest, ModifyLogConfigRequest, DestroyLogConfigRequest } from "./tem_models";
|
|
4
4
|
/**
|
|
5
5
|
* tem client
|
|
6
6
|
* @class
|
|
@@ -15,6 +15,10 @@ export declare class Client extends AbstractClient {
|
|
|
15
15
|
* 单环境下所有应用状态查看
|
|
16
16
|
*/
|
|
17
17
|
DescribeApplicationsStatus(req: DescribeApplicationsStatusRequest, cb?: (error: string, rep: DescribeApplicationsStatusResponse) => void): Promise<DescribeApplicationsStatusResponse>;
|
|
18
|
+
/**
|
|
19
|
+
* 查询分页的日志收集配置列表
|
|
20
|
+
*/
|
|
21
|
+
DescribePagedLogConfigList(req: DescribePagedLogConfigListRequest, cb?: (error: string, rep: DescribePagedLogConfigListResponse) => void): Promise<DescribePagedLogConfigListResponse>;
|
|
18
22
|
/**
|
|
19
23
|
* 创建或者更新 Ingress 规则
|
|
20
24
|
*/
|
|
@@ -31,6 +35,10 @@ export declare class Client extends AbstractClient {
|
|
|
31
35
|
* 重启应用实例
|
|
32
36
|
*/
|
|
33
37
|
RestartApplicationPod(req: RestartApplicationPodRequest, cb?: (error: string, rep: RestartApplicationPodResponse) => void): Promise<RestartApplicationPodResponse>;
|
|
38
|
+
/**
|
|
39
|
+
* 编辑日志收集配置
|
|
40
|
+
*/
|
|
41
|
+
ModifyLogConfig(req: ModifyLogConfigRequest, cb?: (error: string, rep: ModifyLogConfigResponse) => void): Promise<ModifyLogConfigResponse>;
|
|
34
42
|
/**
|
|
35
43
|
* 服务删除
|
|
36
44
|
- 停止当前运行服务
|
|
@@ -66,10 +74,18 @@ export declare class Client extends AbstractClient {
|
|
|
66
74
|
* 编辑环境
|
|
67
75
|
*/
|
|
68
76
|
ModifyEnvironment(req: ModifyEnvironmentRequest, cb?: (error: string, rep: ModifyEnvironmentResponse) => void): Promise<ModifyEnvironmentResponse>;
|
|
77
|
+
/**
|
|
78
|
+
* 查询日志收集配置详情
|
|
79
|
+
*/
|
|
80
|
+
DescribeLogConfig(req: DescribeLogConfigRequest, cb?: (error: string, rep: DescribeLogConfigResponse) => void): Promise<DescribeLogConfigResponse>;
|
|
69
81
|
/**
|
|
70
82
|
* 服务停止
|
|
71
83
|
*/
|
|
72
84
|
StopApplication(req: StopApplicationRequest, cb?: (error: string, rep: StopApplicationResponse) => void): Promise<StopApplicationResponse>;
|
|
85
|
+
/**
|
|
86
|
+
* 创建日志收集配置
|
|
87
|
+
*/
|
|
88
|
+
CreateLogConfig(req: CreateLogConfigRequest, cb?: (error: string, rep: CreateLogConfigResponse) => void): Promise<CreateLogConfigResponse>;
|
|
73
89
|
/**
|
|
74
90
|
* 服务基本信息查看
|
|
75
91
|
*/
|
|
@@ -95,7 +111,7 @@ export declare class Client extends AbstractClient {
|
|
|
95
111
|
*/
|
|
96
112
|
DestroyConfigData(req: DestroyConfigDataRequest, cb?: (error: string, rep: DestroyConfigDataResponse) => void): Promise<DestroyConfigDataResponse>;
|
|
97
113
|
/**
|
|
98
|
-
*
|
|
114
|
+
* 获取环境列表
|
|
99
115
|
*/
|
|
100
116
|
DescribeEnvironments(req: DescribeEnvironmentsRequest, cb?: (error: string, rep: DescribeEnvironmentsResponse) => void): Promise<DescribeEnvironmentsResponse>;
|
|
101
117
|
/**
|
|
@@ -138,6 +154,10 @@ export declare class Client extends AbstractClient {
|
|
|
138
154
|
* 回滚分批发布
|
|
139
155
|
*/
|
|
140
156
|
RevertDeployApplication(req: RevertDeployApplicationRequest, cb?: (error: string, rep: RevertDeployApplicationResponse) => void): Promise<RevertDeployApplicationResponse>;
|
|
157
|
+
/**
|
|
158
|
+
* 销毁日志收集配置
|
|
159
|
+
*/
|
|
160
|
+
DestroyLogConfig(req: DestroyLogConfigRequest, cb?: (error: string, rep: DestroyLogConfigResponse) => void): Promise<DestroyLogConfigResponse>;
|
|
141
161
|
/**
|
|
142
162
|
* 查询应用关联的 Ingress 规则列表
|
|
143
163
|
*/
|
|
@@ -155,7 +175,7 @@ export declare class Client extends AbstractClient {
|
|
|
155
175
|
*/
|
|
156
176
|
DescribeApplicationAutoscalerList(req: DescribeApplicationAutoscalerListRequest, cb?: (error: string, rep: DescribeApplicationAutoscalerListResponse) => void): Promise<DescribeApplicationAutoscalerListResponse>;
|
|
157
177
|
/**
|
|
158
|
-
*
|
|
178
|
+
* 销毁环境
|
|
159
179
|
*/
|
|
160
180
|
DestroyEnvironment(req: DestroyEnvironmentRequest, cb?: (error: string, rep: DestroyEnvironmentResponse) => void): Promise<DestroyEnvironmentResponse>;
|
|
161
181
|
/**
|
|
@@ -39,6 +39,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
39
39
|
async DescribeApplicationsStatus(req, cb) {
|
|
40
40
|
return this.request("DescribeApplicationsStatus", req, cb);
|
|
41
41
|
}
|
|
42
|
+
/**
|
|
43
|
+
* 查询分页的日志收集配置列表
|
|
44
|
+
*/
|
|
45
|
+
async DescribePagedLogConfigList(req, cb) {
|
|
46
|
+
return this.request("DescribePagedLogConfigList", req, cb);
|
|
47
|
+
}
|
|
42
48
|
/**
|
|
43
49
|
* 创建或者更新 Ingress 规则
|
|
44
50
|
*/
|
|
@@ -63,6 +69,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
63
69
|
async RestartApplicationPod(req, cb) {
|
|
64
70
|
return this.request("RestartApplicationPod", req, cb);
|
|
65
71
|
}
|
|
72
|
+
/**
|
|
73
|
+
* 编辑日志收集配置
|
|
74
|
+
*/
|
|
75
|
+
async ModifyLogConfig(req, cb) {
|
|
76
|
+
return this.request("ModifyLogConfig", req, cb);
|
|
77
|
+
}
|
|
66
78
|
/**
|
|
67
79
|
* 服务删除
|
|
68
80
|
- 停止当前运行服务
|
|
@@ -114,12 +126,24 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
114
126
|
async ModifyEnvironment(req, cb) {
|
|
115
127
|
return this.request("ModifyEnvironment", req, cb);
|
|
116
128
|
}
|
|
129
|
+
/**
|
|
130
|
+
* 查询日志收集配置详情
|
|
131
|
+
*/
|
|
132
|
+
async DescribeLogConfig(req, cb) {
|
|
133
|
+
return this.request("DescribeLogConfig", req, cb);
|
|
134
|
+
}
|
|
117
135
|
/**
|
|
118
136
|
* 服务停止
|
|
119
137
|
*/
|
|
120
138
|
async StopApplication(req, cb) {
|
|
121
139
|
return this.request("StopApplication", req, cb);
|
|
122
140
|
}
|
|
141
|
+
/**
|
|
142
|
+
* 创建日志收集配置
|
|
143
|
+
*/
|
|
144
|
+
async CreateLogConfig(req, cb) {
|
|
145
|
+
return this.request("CreateLogConfig", req, cb);
|
|
146
|
+
}
|
|
123
147
|
/**
|
|
124
148
|
* 服务基本信息查看
|
|
125
149
|
*/
|
|
@@ -157,7 +181,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
157
181
|
return this.request("DestroyConfigData", req, cb);
|
|
158
182
|
}
|
|
159
183
|
/**
|
|
160
|
-
*
|
|
184
|
+
* 获取环境列表
|
|
161
185
|
*/
|
|
162
186
|
async DescribeEnvironments(req, cb) {
|
|
163
187
|
return this.request("DescribeEnvironments", req, cb);
|
|
@@ -222,6 +246,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
222
246
|
async RevertDeployApplication(req, cb) {
|
|
223
247
|
return this.request("RevertDeployApplication", req, cb);
|
|
224
248
|
}
|
|
249
|
+
/**
|
|
250
|
+
* 销毁日志收集配置
|
|
251
|
+
*/
|
|
252
|
+
async DestroyLogConfig(req, cb) {
|
|
253
|
+
return this.request("DestroyLogConfig", req, cb);
|
|
254
|
+
}
|
|
225
255
|
/**
|
|
226
256
|
* 查询应用关联的 Ingress 规则列表
|
|
227
257
|
*/
|
|
@@ -247,7 +277,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
247
277
|
return this.request("DescribeApplicationAutoscalerList", req, cb);
|
|
248
278
|
}
|
|
249
279
|
/**
|
|
250
|
-
*
|
|
280
|
+
* 销毁环境
|
|
251
281
|
*/
|
|
252
282
|
async DestroyEnvironment(req, cb) {
|
|
253
283
|
return this.request("DestroyEnvironment", req, cb);
|