tencentcloud-sdk-nodejs 4.1.55 → 4.1.56
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/ess/v20201111/ess_client.js +3 -0
- package/es/services/lke/v20231130/lke_client.js +25 -10
- 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/as/v20180419/as_models.d.ts +3 -5
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +4 -0
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +30 -20
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +4 -0
- package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +6 -2
- package/tencentcloud/services/cwp/v20180228/cwp_client.js +6 -2
- package/tencentcloud/services/dc/v20180410/dc_models.d.ts +16 -0
- package/tencentcloud/services/emr/v20190103/emr_client.d.ts +3 -1
- package/tencentcloud/services/emr/v20190103/emr_client.js +3 -1
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +5 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +6 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +32 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +2 -1
- package/tencentcloud/services/goosefs/v20220519/goosefs_client.d.ts +3 -1
- package/tencentcloud/services/goosefs/v20220519/goosefs_client.js +3 -1
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +1 -1
- package/tencentcloud/services/lke/v20231130/lke_client.d.ts +32 -11
- package/tencentcloud/services/lke/v20231130/lke_client.js +46 -15
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +561 -96
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +1 -1
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +1 -1
- package/tencentcloud/services/ssl/v20191205/ssl_client.d.ts +2 -2
- package/tencentcloud/services/ssl/v20191205/ssl_client.js +2 -2
- package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +3 -4
- package/tencentcloud/services/tat/v20201028/tat_models.d.ts +12 -0
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +5 -5
package/es/common/sdk_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.1.
|
|
1
|
+
export const sdkVersion = "4.1.56";
|
|
@@ -177,6 +177,9 @@ export class Client extends AbstractClient {
|
|
|
177
177
|
async DescribeFileUrls(req, cb) {
|
|
178
178
|
return this.request("DescribeFileUrls", req, cb);
|
|
179
179
|
}
|
|
180
|
+
async OperateSeals(req, cb) {
|
|
181
|
+
return this.request("OperateSeals", req, cb);
|
|
182
|
+
}
|
|
180
183
|
async CreateIntegrationRole(req, cb) {
|
|
181
184
|
return this.request("CreateIntegrationRole", req, cb);
|
|
182
185
|
}
|
|
@@ -33,6 +33,9 @@ export class Client extends AbstractClient {
|
|
|
33
33
|
async DeleteQA(req, cb) {
|
|
34
34
|
return this.request("DeleteQA", req, cb);
|
|
35
35
|
}
|
|
36
|
+
async StopWorkflowRun(req, cb) {
|
|
37
|
+
return this.request("StopWorkflowRun", req, cb);
|
|
38
|
+
}
|
|
36
39
|
async CreateAttributeLabel(req, cb) {
|
|
37
40
|
return this.request("CreateAttributeLabel", req, cb);
|
|
38
41
|
}
|
|
@@ -84,8 +87,8 @@ export class Client extends AbstractClient {
|
|
|
84
87
|
async DescribeSearchStatsGraph(req, cb) {
|
|
85
88
|
return this.request("DescribeSearchStatsGraph", req, cb);
|
|
86
89
|
}
|
|
87
|
-
async
|
|
88
|
-
return this.request("
|
|
90
|
+
async ListWorkflowRuns(req, cb) {
|
|
91
|
+
return this.request("ListWorkflowRuns", req, cb);
|
|
89
92
|
}
|
|
90
93
|
async VerifyQA(req, cb) {
|
|
91
94
|
return this.request("VerifyQA", req, cb);
|
|
@@ -141,6 +144,12 @@ export class Client extends AbstractClient {
|
|
|
141
144
|
async DescribeTokenUsage(req, cb) {
|
|
142
145
|
return this.request("DescribeTokenUsage", req, cb);
|
|
143
146
|
}
|
|
147
|
+
async DescribeNodeRun(req, cb) {
|
|
148
|
+
return this.request("DescribeNodeRun", req, cb);
|
|
149
|
+
}
|
|
150
|
+
async DeleteDocCate(req, cb) {
|
|
151
|
+
return this.request("DeleteDocCate", req, cb);
|
|
152
|
+
}
|
|
144
153
|
async ListQACate(req, cb) {
|
|
145
154
|
return this.request("ListQACate", req, cb);
|
|
146
155
|
}
|
|
@@ -174,12 +183,15 @@ export class Client extends AbstractClient {
|
|
|
174
183
|
async DeleteSharedKnowledge(req, cb) {
|
|
175
184
|
return this.request("DeleteSharedKnowledge", req, cb);
|
|
176
185
|
}
|
|
177
|
-
async
|
|
178
|
-
return this.request("
|
|
186
|
+
async ModifyDocCate(req, cb) {
|
|
187
|
+
return this.request("ModifyDocCate", req, cb);
|
|
179
188
|
}
|
|
180
189
|
async ListDoc(req, cb) {
|
|
181
190
|
return this.request("ListDoc", req, cb);
|
|
182
191
|
}
|
|
192
|
+
async CreateWorkflowRun(req, cb) {
|
|
193
|
+
return this.request("CreateWorkflowRun", req, cb);
|
|
194
|
+
}
|
|
183
195
|
async ListQA(req, cb) {
|
|
184
196
|
return this.request("ListQA", req, cb);
|
|
185
197
|
}
|
|
@@ -189,8 +201,8 @@ export class Client extends AbstractClient {
|
|
|
189
201
|
async GetLikeDataCount(req, cb) {
|
|
190
202
|
return this.request("GetLikeDataCount", req, cb);
|
|
191
203
|
}
|
|
192
|
-
async
|
|
193
|
-
return this.request("
|
|
204
|
+
async DescribeRobotBizIDByAppKey(req, cb) {
|
|
205
|
+
return this.request("DescribeRobotBizIDByAppKey", req, cb);
|
|
194
206
|
}
|
|
195
207
|
async ExportQAList(req, cb) {
|
|
196
208
|
return this.request("ExportQAList", req, cb);
|
|
@@ -210,8 +222,8 @@ export class Client extends AbstractClient {
|
|
|
210
222
|
async IsTransferIntent(req, cb) {
|
|
211
223
|
return this.request("IsTransferIntent", req, cb);
|
|
212
224
|
}
|
|
213
|
-
async
|
|
214
|
-
return this.request("
|
|
225
|
+
async IgnoreUnsatisfiedReply(req, cb) {
|
|
226
|
+
return this.request("IgnoreUnsatisfiedReply", req, cb);
|
|
215
227
|
}
|
|
216
228
|
async ReferShareKnowledge(req, cb) {
|
|
217
229
|
return this.request("ReferShareKnowledge", req, cb);
|
|
@@ -267,6 +279,9 @@ export class Client extends AbstractClient {
|
|
|
267
279
|
async GetAnswerTypeDataCount(req, cb) {
|
|
268
280
|
return this.request("GetAnswerTypeDataCount", req, cb);
|
|
269
281
|
}
|
|
282
|
+
async DescribeWorkflowRun(req, cb) {
|
|
283
|
+
return this.request("DescribeWorkflowRun", req, cb);
|
|
284
|
+
}
|
|
270
285
|
async ListReleaseDocPreview(req, cb) {
|
|
271
286
|
return this.request("ListReleaseDocPreview", req, cb);
|
|
272
287
|
}
|
|
@@ -312,7 +327,7 @@ export class Client extends AbstractClient {
|
|
|
312
327
|
async ListAppKnowledgeDetail(req, cb) {
|
|
313
328
|
return this.request("ListAppKnowledgeDetail", req, cb);
|
|
314
329
|
}
|
|
315
|
-
async
|
|
316
|
-
return this.request("
|
|
330
|
+
async DescribeReleaseInfo(req, cb) {
|
|
331
|
+
return this.request("DescribeReleaseInfo", req, cb);
|
|
317
332
|
}
|
|
318
333
|
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.1.
|
|
1
|
+
export declare const sdkVersion = "4.1.56";
|
|
@@ -2743,11 +2743,9 @@ export interface DescribeAutoScalingActivitiesRequest {
|
|
|
2743
2743
|
*/
|
|
2744
2744
|
ActivityIds?: Array<string>;
|
|
2745
2745
|
/**
|
|
2746
|
-
*
|
|
2747
|
-
<
|
|
2748
|
-
<li> activity-status-code
|
|
2749
|
-
<li> activity-type - String - 是否必填:否 -(过滤条件)按照伸缩活动类型过滤。(SCALE_OUT:扩容活动|SCALE_IN:缩容活动|ATTACH_INSTANCES:添加实例|REMOVE_INSTANCES:销毁实例|DETACH_INSTANCES:移出实例|TERMINATE_INSTANCES_UNEXPECTEDLY:实例在CVM控制台被销毁|REPLACE_UNHEALTHY_INSTANCE:替换不健康实例|UPDATE_LOAD_BALANCERS:更新负载均衡器)</li>
|
|
2750
|
-
<li> activity-id - String - 是否必填:否 -(过滤条件)按照伸缩活动ID过滤。</li>
|
|
2746
|
+
* 过滤条件。过滤字段取值范围如下:
|
|
2747
|
+
<ul>
|
|
2748
|
+
<li><strong>auto-scaling-group-id</strong><ul><li>按照【<strong>伸缩组ID</strong>】进行过滤。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li><li>类型:String</li><li>必选:否</li><li>示例值: asg-kiju7yt5</li></ul></li><li><strong>activity-status-code</strong><ul><li>按照【<strong>伸缩活动状态</strong>】进行过滤</li><li>类型:String</li><li>必选:否</li><li>可选项: </li><ul><li>INIT:初始化中</li><li>RUNNING:运行中</li><li>SUCCESSFUL:活动成功</li><li>PARTIALLY_SUCCESSFUL:活动部分成功</li><li>FAILED:活动失败</li><li>CANCELLED:活动取消</li></ul></ul></li><li><strong>activity-type</strong><ul><li>按照【<strong>伸缩活动类型</strong>】进行过滤</li><li>类型:String</li><li>必选:否</li><li>可选项: </li><ul><li>SCALE_OUT:扩容活动</li><li>SCALE_IN:缩容活动</li><li>ATTACH_INSTANCES:添加实例</li><li>REMOVE_INSTANCES:销毁实例</li><li>DETACH_INSTANCES:移出实例</li><li>TERMINATE_INSTANCES_UNEXPECTEDLY:实例在CVM控制台被销毁</li><li>REPLACE_UNHEALTHY_INSTANCE:替换不健康实例</li><li>START_INSTANCES:开启实例</li><li>STOP_INSTANCES:关闭实例</li><li>INVOKE_COMMAND:执行命令</li></ul></ul></li><li><strong>activity-id</strong><ul><li>按照【<strong>伸缩活动ID</strong>】进行过滤。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 获取伸缩活动ID。</li><li>类型:String</li><li>必选:否</li><li>示例值: asa-hy6tr4ed</li></ul></li></ul>
|
|
2751
2749
|
每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。参数不支持同时指定`ActivityIds`和`Filters`。
|
|
2752
2750
|
*/
|
|
2753
2751
|
Filters?: Array<Filter>;
|
|
@@ -1187,6 +1187,10 @@ export interface CreateRecTaskRequest {
|
|
|
1187
1187
|
KeyWordLibIdList?: Array<string>;
|
|
1188
1188
|
/**
|
|
1189
1189
|
* 替换词汇表id, 适用于热词和自学习场景也无法解决的极端case词组, 会对识别结果强制替换。具体可参考[配置控制台](https://console.cloud.tencent.com/asr/replaceword);强制替换功能可能会影响正常识别结果,请谨慎使用
|
|
1190
|
+
|
|
1191
|
+
注意:
|
|
1192
|
+
1. 本功能配置完成后,预计在10分钟后生效
|
|
1193
|
+
|
|
1190
1194
|
*/
|
|
1191
1195
|
ReplaceTextId?: string;
|
|
1192
1196
|
}
|
|
@@ -1546,17 +1546,17 @@ export interface AssociateSecurityGroupsResponse {
|
|
|
1546
1546
|
*/
|
|
1547
1547
|
export interface DescribeCPUExpandStrategyInfoResponse {
|
|
1548
1548
|
/**
|
|
1549
|
-
*
|
|
1549
|
+
* 策略类型。输出值 auto、manual。如果返回为 NULL 说明尚未开通弹性扩容策略。
|
|
1550
1550
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1551
1551
|
*/
|
|
1552
1552
|
Type?: string;
|
|
1553
1553
|
/**
|
|
1554
|
-
* 手动扩容的 CPU 。Type为 manual 时有效。
|
|
1554
|
+
* 手动扩容的 CPU 。Type 为 manual 时有效。
|
|
1555
1555
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1556
1556
|
*/
|
|
1557
1557
|
ExpandCpu?: number;
|
|
1558
1558
|
/**
|
|
1559
|
-
* 自动扩容策略。Type 为 auto
|
|
1559
|
+
* 自动扩容策略。Type 为 auto 时有效。
|
|
1560
1560
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1561
1561
|
*/
|
|
1562
1562
|
AutoStrategy?: AutoStrategy;
|
|
@@ -1565,7 +1565,7 @@ export interface DescribeCPUExpandStrategyInfoResponse {
|
|
|
1565
1565
|
*/
|
|
1566
1566
|
PeriodStrategy?: PeriodStrategy;
|
|
1567
1567
|
/**
|
|
1568
|
-
*
|
|
1568
|
+
* 按时间段扩容策略。
|
|
1569
1569
|
*/
|
|
1570
1570
|
TimeIntervalStrategy?: TimeIntervalStrategy;
|
|
1571
1571
|
/**
|
|
@@ -2433,11 +2433,13 @@ export interface DescribeBinlogsRequest {
|
|
|
2433
2433
|
*/
|
|
2434
2434
|
export interface TimeIntervalStrategy {
|
|
2435
2435
|
/**
|
|
2436
|
-
*
|
|
2436
|
+
* 开始扩容时间。
|
|
2437
|
+
说明:此值的格式为 Integer 的时间戳。
|
|
2437
2438
|
*/
|
|
2438
2439
|
StartTime?: number;
|
|
2439
2440
|
/**
|
|
2440
|
-
*
|
|
2441
|
+
* 结束扩容时间。
|
|
2442
|
+
说明:此值的格式为 Integer 的时间戳。
|
|
2441
2443
|
*/
|
|
2442
2444
|
EndTime?: number;
|
|
2443
2445
|
}
|
|
@@ -3185,7 +3187,7 @@ export interface DescribeSlowLogsResponse {
|
|
|
3185
3187
|
*/
|
|
3186
3188
|
export interface DescribeCPUExpandStrategyInfoRequest {
|
|
3187
3189
|
/**
|
|
3188
|
-
* 实例 ID
|
|
3190
|
+
* 实例 ID。
|
|
3189
3191
|
*/
|
|
3190
3192
|
InstanceId: string;
|
|
3191
3193
|
}
|
|
@@ -7488,11 +7490,12 @@ export interface DescribeTagsOfInstanceIdsRequest {
|
|
|
7488
7490
|
*/
|
|
7489
7491
|
export interface StartCpuExpandRequest {
|
|
7490
7492
|
/**
|
|
7491
|
-
* 实例 ID
|
|
7493
|
+
* 实例 ID。
|
|
7492
7494
|
*/
|
|
7493
7495
|
InstanceId: string;
|
|
7494
7496
|
/**
|
|
7495
|
-
* 扩容类型。auto 自动 manual 立即生效 timeInterval 按时间段 period
|
|
7497
|
+
* 扩容类型。auto 自动 manual 立即生效 timeInterval 按时间段 period 按周期。
|
|
7498
|
+
|
|
7496
7499
|
*/
|
|
7497
7500
|
Type: string;
|
|
7498
7501
|
/**
|
|
@@ -7505,11 +7508,11 @@ export interface StartCpuExpandRequest {
|
|
|
7505
7508
|
*/
|
|
7506
7509
|
AutoStrategy?: AutoStrategy;
|
|
7507
7510
|
/**
|
|
7508
|
-
*
|
|
7511
|
+
* 按时间段扩容策略。
|
|
7509
7512
|
*/
|
|
7510
7513
|
TimeIntervalStrategy?: TimeIntervalStrategy;
|
|
7511
7514
|
/**
|
|
7512
|
-
*
|
|
7515
|
+
* 按周期扩容策略。
|
|
7513
7516
|
*/
|
|
7514
7517
|
PeriodStrategy?: PeriodStrategy;
|
|
7515
7518
|
}
|
|
@@ -8243,11 +8246,11 @@ export interface DeleteParamTemplateResponse {
|
|
|
8243
8246
|
*/
|
|
8244
8247
|
export interface TimeInterval {
|
|
8245
8248
|
/**
|
|
8246
|
-
*
|
|
8249
|
+
* 开始时间。
|
|
8247
8250
|
*/
|
|
8248
8251
|
StartTime?: string;
|
|
8249
8252
|
/**
|
|
8250
|
-
*
|
|
8253
|
+
* 结束时间。
|
|
8251
8254
|
*/
|
|
8252
8255
|
EndTime?: string;
|
|
8253
8256
|
}
|
|
@@ -9172,31 +9175,38 @@ export interface DescribeDBFeaturesRequest {
|
|
|
9172
9175
|
*/
|
|
9173
9176
|
export interface TImeCycle {
|
|
9174
9177
|
/**
|
|
9175
|
-
*
|
|
9178
|
+
* 按周期扩容时,是否选择周一扩容。
|
|
9179
|
+
说明:取值 true,表示选择,取值 false,表示不选择。
|
|
9176
9180
|
*/
|
|
9177
9181
|
Monday?: boolean;
|
|
9178
9182
|
/**
|
|
9179
|
-
*
|
|
9183
|
+
* 按周期扩容时,是否选择周二扩容。
|
|
9184
|
+
说明:取值 true,表示选择,取值 false,表示不选择。
|
|
9180
9185
|
*/
|
|
9181
9186
|
Tuesday?: boolean;
|
|
9182
9187
|
/**
|
|
9183
|
-
*
|
|
9188
|
+
* 按周期扩容时,是否选择周三扩容。
|
|
9189
|
+
说明:取值 true,表示选择,取值 false,表示不选择。
|
|
9184
9190
|
*/
|
|
9185
9191
|
Wednesday?: boolean;
|
|
9186
9192
|
/**
|
|
9187
|
-
*
|
|
9193
|
+
* 按周期扩容时,是否选择周四扩容。
|
|
9194
|
+
说明:取值 true,表示选择,取值 false,表示不选择。
|
|
9188
9195
|
*/
|
|
9189
9196
|
Thursday?: boolean;
|
|
9190
9197
|
/**
|
|
9191
|
-
*
|
|
9198
|
+
* 按周期扩容时,是否选择周五扩容。
|
|
9199
|
+
说明:取值 true,表示选择,取值 false,表示不选择。
|
|
9192
9200
|
*/
|
|
9193
9201
|
Friday?: boolean;
|
|
9194
9202
|
/**
|
|
9195
|
-
*
|
|
9203
|
+
* 按周期扩容时,是否选择周六扩容。
|
|
9204
|
+
说明:取值 true,表示选择,取值 false,表示不选择。
|
|
9196
9205
|
*/
|
|
9197
9206
|
Saturday?: boolean;
|
|
9198
9207
|
/**
|
|
9199
|
-
*
|
|
9208
|
+
* 按周期扩容时,是否选择周日扩容。
|
|
9209
|
+
说明:取值 true,表示选择,取值 false,表示不选择。
|
|
9200
9210
|
*/
|
|
9201
9211
|
Sunday?: boolean;
|
|
9202
9212
|
}
|
|
@@ -1311,7 +1311,9 @@ export declare class Client extends AbstractClient {
|
|
|
1311
1311
|
*/
|
|
1312
1312
|
UpdateBaselineStrategy(req: UpdateBaselineStrategyRequest, cb?: (error: string, rep: UpdateBaselineStrategyResponse) => void): Promise<UpdateBaselineStrategyResponse>;
|
|
1313
1313
|
/**
|
|
1314
|
-
*
|
|
1314
|
+
* 产品变动切换到了\\n切换到 AddVulIgnoreRule / ModifyVulIgnoreRule CancelVulIgnoreRule\\n相关接口
|
|
1315
|
+
|
|
1316
|
+
取消漏洞忽略
|
|
1315
1317
|
*/
|
|
1316
1318
|
CancelIgnoreVul(req: CancelIgnoreVulRequest, cb?: (error: string, rep: CancelIgnoreVulResponse) => void): Promise<CancelIgnoreVulResponse>;
|
|
1317
1319
|
/**
|
|
@@ -2042,7 +2044,9 @@ export declare class Client extends AbstractClient {
|
|
|
2042
2044
|
*/
|
|
2043
2045
|
DescribeMalwareWhiteListAffectList(req: DescribeMalwareWhiteListAffectListRequest, cb?: (error: string, rep: DescribeMalwareWhiteListAffectListResponse) => void): Promise<DescribeMalwareWhiteListAffectListResponse>;
|
|
2044
2046
|
/**
|
|
2045
|
-
*
|
|
2047
|
+
* 产品变动切换到了\\n切换到 AddVulIgnoreRule / ModifyVulIgnoreRule CancelVulIgnoreRule\\n相关接口
|
|
2048
|
+
|
|
2049
|
+
本接口 (IgnoreImpactedHosts) 用于忽略漏洞。
|
|
2046
2050
|
*/
|
|
2047
2051
|
IgnoreImpactedHosts(req: IgnoreImpactedHostsRequest, cb?: (error: string, rep: IgnoreImpactedHostsResponse) => void): Promise<IgnoreImpactedHostsResponse>;
|
|
2048
2052
|
/**
|
|
@@ -1981,7 +1981,9 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1981
1981
|
return this.request("UpdateBaselineStrategy", req, cb);
|
|
1982
1982
|
}
|
|
1983
1983
|
/**
|
|
1984
|
-
*
|
|
1984
|
+
* 产品变动切换到了\\n切换到 AddVulIgnoreRule / ModifyVulIgnoreRule CancelVulIgnoreRule\\n相关接口
|
|
1985
|
+
|
|
1986
|
+
取消漏洞忽略
|
|
1985
1987
|
*/
|
|
1986
1988
|
async CancelIgnoreVul(req, cb) {
|
|
1987
1989
|
return this.request("CancelIgnoreVul", req, cb);
|
|
@@ -3076,7 +3078,9 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
3076
3078
|
return this.request("DescribeMalwareWhiteListAffectList", req, cb);
|
|
3077
3079
|
}
|
|
3078
3080
|
/**
|
|
3079
|
-
*
|
|
3081
|
+
* 产品变动切换到了\\n切换到 AddVulIgnoreRule / ModifyVulIgnoreRule CancelVulIgnoreRule\\n相关接口
|
|
3082
|
+
|
|
3083
|
+
本接口 (IgnoreImpactedHosts) 用于忽略漏洞。
|
|
3080
3084
|
*/
|
|
3081
3085
|
async IgnoreImpactedHosts(req, cb) {
|
|
3082
3086
|
return this.request("IgnoreImpactedHosts", req, cb);
|
|
@@ -288,6 +288,14 @@ export interface DirectConnect {
|
|
|
288
288
|
* 是否三层架构
|
|
289
289
|
*/
|
|
290
290
|
IsThreeArch?: boolean;
|
|
291
|
+
/**
|
|
292
|
+
* 是否MACsec
|
|
293
|
+
*/
|
|
294
|
+
IsMacSec?: boolean;
|
|
295
|
+
/**
|
|
296
|
+
* 端口规格(Mbps)
|
|
297
|
+
*/
|
|
298
|
+
PortSpecification?: number;
|
|
291
299
|
}
|
|
292
300
|
/**
|
|
293
301
|
* 互联网地址详细信息
|
|
@@ -478,6 +486,10 @@ export interface AccessPoint {
|
|
|
478
486
|
* 接入点地址。
|
|
479
487
|
*/
|
|
480
488
|
Address?: string;
|
|
489
|
+
/**
|
|
490
|
+
* 是否MACsec
|
|
491
|
+
*/
|
|
492
|
+
IsMacSec?: boolean;
|
|
481
493
|
}
|
|
482
494
|
/**
|
|
483
495
|
* ApplyInternetAddress返回参数结构体
|
|
@@ -1155,6 +1167,10 @@ export interface CreateDirectConnectRequest {
|
|
|
1155
1167
|
* 标签键值对
|
|
1156
1168
|
*/
|
|
1157
1169
|
Tags?: Array<Tag>;
|
|
1170
|
+
/**
|
|
1171
|
+
* 是否MACsec需求
|
|
1172
|
+
*/
|
|
1173
|
+
IsMacSec?: boolean;
|
|
1158
1174
|
}
|
|
1159
1175
|
/**
|
|
1160
1176
|
* EnableInternetAddress请求参数结构体
|
|
@@ -319,7 +319,9 @@ export declare class Client extends AbstractClient {
|
|
|
319
319
|
*/
|
|
320
320
|
DescribeTrinoQueryInfo(req: DescribeTrinoQueryInfoRequest, cb?: (error: string, rep: DescribeTrinoQueryInfoResponse) => void): Promise<DescribeTrinoQueryInfoResponse>;
|
|
321
321
|
/**
|
|
322
|
-
*
|
|
322
|
+
* 已废弃,请使用DeployYarnConf\\n,近一年未被调用
|
|
323
|
+
|
|
324
|
+
刷新YARN的动态资源池。已废弃,请使用`DeployYarnConf`
|
|
323
325
|
*/
|
|
324
326
|
ModifyResourcePools(req: ModifyResourcePoolsRequest, cb?: (error: string, rep: ModifyResourcePoolsResponse) => void): Promise<ModifyResourcePoolsResponse>;
|
|
325
327
|
/**
|
|
@@ -489,7 +489,9 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
489
489
|
return this.request("DescribeTrinoQueryInfo", req, cb);
|
|
490
490
|
}
|
|
491
491
|
/**
|
|
492
|
-
*
|
|
492
|
+
* 已废弃,请使用DeployYarnConf\\n,近一年未被调用
|
|
493
|
+
|
|
494
|
+
刷新YARN的动态资源池。已废弃,请使用`DeployYarnConf`
|
|
493
495
|
*/
|
|
494
496
|
async ModifyResourcePools(req, cb) {
|
|
495
497
|
return this.request("ModifyResourcePools", req, cb);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { DescribePersonCertificateResponse, CreateOrganizationGroupInvitationLinkRequest, DescribeCancelFlowsTaskResponse, DescribeUserFlowTypeResponse, DescribeFileCounterSignResultRequest, CreateSealRequest, CancelFlowResponse, DescribeExtendedServiceAuthDetailResponse, UpdateIntegrationEmployeesResponse, CreateContractDiffTaskWebUrlRequest, CreatePreparedPersonalEsignRequest, CreateLegalSealQrCodeResponse, DescribeIntegrationDepartmentsResponse, CreateFileCounterSignRequest, DescribeOrganizationVerifyStatusResponse, DeleteExtendedServiceAuthInfosResponse, CreateFlowForwardsRequest, CreateDynamicFlowApproverRequest, CreateFlowApproversResponse, DescribeFileUrlsResponse, CreateFlowRemindsRequest, CancelUserAutoSignEnableUrlRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeIntegrationDepartmentsRequest, DescribeThirdPartyAuthCodeResponse, DescribeUserVerifyStatusResponse, DisableUserAutoSignResponse, ModifyExtendedServiceRequest, CreateBatchInitOrganizationUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateContractDiffTaskWebUrlResponse, CreateIntegrationEmployeesRequest, CreateOrganizationAuthFileResponse, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, DescribeContractDiffTaskWebUrlResponse, OperateTemplateRequest, CreateOrganizationAuthUrlRequest, CreateBatchQuickSignUrlResponse, CreateIntegrationRoleRequest, ModifyApplicationCallbackInfoRequest, DeleteIntegrationRoleUsersResponse, CreateConvertTaskApiRequest, DeleteIntegrationEmployeesResponse, CreateFlowGroupSignReviewResponse, CreateBatchSignUrlResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeUserAutoSignStatusResponse, CreateFlowGroupByFilesRequest, DescribeFlowComponentsResponse, DescribeFlowEvidenceReportResponse, CreateWebThemeConfigRequest, DescribeSignFaceVideoRequest, CreateEmployeeQualificationSealQrCodeResponse, CreateFlowGroupByTemplatesResponse, CreateUserVerifyUrlResponse, DescribeBatchOrganizationRegistrationUrlsRequest, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, CreateDynamicFlowApproverResponse, CreateBatchOrganizationRegistrationTasksResponse, CreateReleaseFlowResponse, CreateBatchInitOrganizationUrlRequest, CreateWebThemeConfigResponse, BindEmployeeUserIdWithClientOpenIdRequest, CreateOrganizationInfoChangeUrlResponse, DeleteOrganizationAuthorizationsResponse, DescribeExtendedServiceAuthDetailRequest, CreateUserNameChangeUrlRequest, CreateOrganizationAuthFileRequest, CreateIntegrationDepartmentResponse, DescribeFlowTemplatesRequest, CreateIntegrationSubOrganizationActiveRecordResponse, ArchiveDynamicFlowResponse, DeleteSealPoliciesResponse, CreateLegalSealQrCodeRequest, DescribeOrganizationAuthStatusResponse, CreateUserAutoSignSealUrlResponse, CreateEmployeeQualificationSealQrCodeRequest, CreatePersonAuthCertificateImageResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DeleteSealPoliciesRequest, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, CreateEmployeeChangeUrlResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateOrganizationAuthUrlResponse, DescribeOrganizationAuthStatusRequest, CreateSchemeUrlResponse, CreateFlowByFilesRequest, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreatePartnerAutoSignAuthUrlResponse, ArchiveDynamicFlowRequest, CreateUserAutoSignSealUrlRequest, ModifyFlowDeadlineRequest, CreateFlowApproversRequest, ModifyFlowDeadlineResponse, CreateFlowEvidenceReportResponse, CreatePrepareFlowGroupResponse, CreateIntegrationRoleResponse, DescribeFlowComponentsRequest, OperateTemplateResponse, CreateIntegrationDepartmentRequest, DescribeUserVerifyStatusRequest, CreateFlowBlockchainEvidenceUrlResponse, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, VerifyDigitFileResponse, DescribeOrganizationSealsResponse, CreateUserMobileChangeUrlRequest, CreateEmbedWebUrlRequest, DeleteIntegrationEmployeesRequest, DescribeUserAutoSignStatusRequest, GetTaskResultApiRequest, DescribeFlowBriefsResponse, ModifyIntegrationRoleRequest, CreateFlowGroupByFilesResponse, CreateReleaseFlowRequest, DeleteIntegrationRoleUsersRequest, CreateFlowSignUrlRequest, CreateIntegrationEmployeesResponse, CreateIntegrationUserRolesRequest, CreatePersonAuthCertificateImageRequest, CreateFlowByFilesResponse, UploadFilesResponse, DescribeFlowEvidenceReportRequest, CreateEmployeeChangeUrlRequest, DescribeBillUsageResponse, CreateFlowSignReviewResponse, ModifyIntegrationDepartmentRequest, RenewAutoSignLicenseRequest, CreateUserAutoSignEnableUrlRequest, CreateOrganizationBatchSignUrlResponse, UnbindEmployeeUserIdWithClientOpenIdRequest, DeleteOrganizationAuthorizationsRequest, StartFlowRequest, CreateBatchOrganizationRegistrationTasksRequest, CreateUserVerifyUrlRequest, CreatePartnerAutoSignAuthUrlRequest, CreateExtendedServiceAuthInfosResponse, CreateFlowForwardsResponse, CreateOrganizationBatchSignUrlRequest, CreatePrepareFlowResponse, ModifyIntegrationDepartmentResponse, GetTaskResultApiResponse, DescribeOrganizationVerifyStatusRequest, DescribeBillUsageRequest, CancelMultiFlowSignQRCodeRequest, DeleteIntegrationDepartmentRequest, CancelUserAutoSignEnableUrlResponse, CreatePrepareFlowGroupRequest, CreateFileCounterSignResponse, DescribeContractDiffTaskWebUrlRequest, CreateUserNameChangeUrlResponse, CreateSealResponse, CreatePrepareFlowRequest, DescribeUserFlowTypeRequest, DescribeCancelFlowsTaskRequest, CreateEmbedWebUrlResponse, ModifyExtendedServiceResponse, CreateFlowGroupByTemplatesRequest, DescribeFileCounterSignResultResponse, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, DescribeIntegrationRolesResponse, CreateBatchSignUrlRequest, CreateExtendedServiceAuthInfosRequest, VerifyDigitFileRequest, UpdateIntegrationEmployeesRequest, DescribeFlowBriefsRequest, CreateSealPolicyRequest, DescribeBillUsageDetailResponse, CreateUserMobileChangeUrlResponse, CreateUserAutoSignEnableUrlResponse, DescribeSignFaceVideoResponse, ModifyIntegrationRoleResponse, VerifyPdfResponse, CreateFlowGroupSignReviewRequest, DescribeBillUsageDetailRequest, DescribeFlowTemplatesResponse, DescribeBatchOrganizationRegistrationUrlsResponse, UploadFilesRequest, DescribeOrganizationSealsRequest, DescribePersonCertificateRequest, CreateBatchOrganizationAuthorizationUrlRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, VerifyPdfRequest, DescribeFlowInfoRequest, DeleteExtendedServiceAuthInfosRequest, DescribeExtendedServiceAuthInfosResponse, CreateBatchOrganizationAuthorizationUrlResponse, DescribeFlowInfoResponse, RenewAutoSignLicenseResponse, CancelMultiFlowSignQRCodeResponse, CreateFlowResponse, CreateIntegrationSubOrganizationActiveRecordRequest, CreateFlowBlockchainEvidenceUrlRequest, CreateBatchQuickSignUrlRequest, CreateOrganizationInfoChangeUrlRequest, DescribeOrganizationGroupOrganizationsResponse, CreateOrganizationGroupInvitationLinkResponse } from "./ess_models";
|
|
3
|
+
import { DescribePersonCertificateResponse, CreateOrganizationGroupInvitationLinkRequest, DescribeCancelFlowsTaskResponse, DescribeUserFlowTypeResponse, DescribeFileCounterSignResultRequest, CreateSealRequest, CancelFlowResponse, DescribeExtendedServiceAuthDetailResponse, UpdateIntegrationEmployeesResponse, CreateContractDiffTaskWebUrlRequest, CreatePreparedPersonalEsignRequest, CreateLegalSealQrCodeResponse, DescribeIntegrationDepartmentsResponse, CreateFileCounterSignRequest, DescribeOrganizationVerifyStatusResponse, DeleteExtendedServiceAuthInfosResponse, CreateFlowForwardsRequest, CreateDynamicFlowApproverRequest, CreateFlowApproversResponse, DescribeFileUrlsResponse, CreateFlowRemindsRequest, CancelUserAutoSignEnableUrlRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeIntegrationDepartmentsRequest, DescribeThirdPartyAuthCodeResponse, DescribeUserVerifyStatusResponse, DisableUserAutoSignResponse, ModifyExtendedServiceRequest, CreateBatchInitOrganizationUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateContractDiffTaskWebUrlResponse, CreateIntegrationEmployeesRequest, CreateOrganizationAuthFileResponse, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, DescribeContractDiffTaskWebUrlResponse, OperateTemplateRequest, CreateOrganizationAuthUrlRequest, CreateBatchQuickSignUrlResponse, CreateIntegrationRoleRequest, ModifyApplicationCallbackInfoRequest, DeleteIntegrationRoleUsersResponse, CreateConvertTaskApiRequest, DeleteIntegrationEmployeesResponse, CreateFlowGroupSignReviewResponse, CreateBatchSignUrlResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeUserAutoSignStatusResponse, CreateFlowGroupByFilesRequest, DescribeFlowComponentsResponse, DescribeFlowEvidenceReportResponse, CreateWebThemeConfigRequest, DescribeSignFaceVideoRequest, CreateEmployeeQualificationSealQrCodeResponse, CreateFlowGroupByTemplatesResponse, CreateUserVerifyUrlResponse, DescribeBatchOrganizationRegistrationUrlsRequest, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, CreateDynamicFlowApproverResponse, CreateBatchOrganizationRegistrationTasksResponse, CreateReleaseFlowResponse, CreateBatchInitOrganizationUrlRequest, CreateWebThemeConfigResponse, BindEmployeeUserIdWithClientOpenIdRequest, CreateOrganizationInfoChangeUrlResponse, DeleteOrganizationAuthorizationsResponse, DescribeExtendedServiceAuthDetailRequest, CreateUserNameChangeUrlRequest, CreateOrganizationAuthFileRequest, CreateIntegrationDepartmentResponse, DescribeFlowTemplatesRequest, CreateIntegrationSubOrganizationActiveRecordResponse, ArchiveDynamicFlowResponse, DeleteSealPoliciesResponse, CreateLegalSealQrCodeRequest, DescribeOrganizationAuthStatusResponse, CreateUserAutoSignSealUrlResponse, CreateEmployeeQualificationSealQrCodeRequest, CreatePersonAuthCertificateImageResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DeleteSealPoliciesRequest, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, CreateEmployeeChangeUrlResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateOrganizationAuthUrlResponse, DescribeOrganizationAuthStatusRequest, CreateSchemeUrlResponse, CreateFlowByFilesRequest, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreatePartnerAutoSignAuthUrlResponse, ArchiveDynamicFlowRequest, CreateUserAutoSignSealUrlRequest, ModifyFlowDeadlineRequest, CreateFlowApproversRequest, ModifyFlowDeadlineResponse, OperateSealsResponse, CreateFlowEvidenceReportResponse, CreatePrepareFlowGroupResponse, CreateIntegrationRoleResponse, DescribeFlowComponentsRequest, OperateTemplateResponse, CreateIntegrationDepartmentRequest, DescribeUserVerifyStatusRequest, CreateFlowBlockchainEvidenceUrlResponse, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, VerifyDigitFileResponse, DescribeOrganizationSealsResponse, CreateUserMobileChangeUrlRequest, CreateEmbedWebUrlRequest, DeleteIntegrationEmployeesRequest, DescribeUserAutoSignStatusRequest, GetTaskResultApiRequest, DescribeFlowBriefsResponse, ModifyIntegrationRoleRequest, CreateFlowGroupByFilesResponse, CreateReleaseFlowRequest, DeleteIntegrationRoleUsersRequest, CreateFlowSignUrlRequest, CreateIntegrationEmployeesResponse, CreateIntegrationUserRolesRequest, CreatePersonAuthCertificateImageRequest, CreateFlowByFilesResponse, UploadFilesResponse, DescribeFlowEvidenceReportRequest, CreateEmployeeChangeUrlRequest, DescribeBillUsageResponse, CreateFlowSignReviewResponse, ModifyIntegrationDepartmentRequest, RenewAutoSignLicenseRequest, CreateUserAutoSignEnableUrlRequest, CreateOrganizationBatchSignUrlResponse, UnbindEmployeeUserIdWithClientOpenIdRequest, DeleteOrganizationAuthorizationsRequest, StartFlowRequest, CreateBatchOrganizationRegistrationTasksRequest, CreateUserVerifyUrlRequest, CreatePartnerAutoSignAuthUrlRequest, CreateExtendedServiceAuthInfosResponse, CreateFlowForwardsResponse, CreateOrganizationBatchSignUrlRequest, CreatePrepareFlowResponse, ModifyIntegrationDepartmentResponse, GetTaskResultApiResponse, DescribeOrganizationVerifyStatusRequest, DescribeBillUsageRequest, CancelMultiFlowSignQRCodeRequest, DeleteIntegrationDepartmentRequest, CancelUserAutoSignEnableUrlResponse, CreatePrepareFlowGroupRequest, CreateFileCounterSignResponse, DescribeContractDiffTaskWebUrlRequest, CreateUserNameChangeUrlResponse, CreateSealResponse, CreatePrepareFlowRequest, DescribeUserFlowTypeRequest, DescribeCancelFlowsTaskRequest, CreateEmbedWebUrlResponse, ModifyExtendedServiceResponse, CreateFlowGroupByTemplatesRequest, DescribeFileCounterSignResultResponse, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, DescribeIntegrationRolesResponse, CreateBatchSignUrlRequest, CreateExtendedServiceAuthInfosRequest, VerifyDigitFileRequest, UpdateIntegrationEmployeesRequest, DescribeFlowBriefsRequest, CreateSealPolicyRequest, DescribeBillUsageDetailResponse, CreateUserMobileChangeUrlResponse, CreateUserAutoSignEnableUrlResponse, DescribeSignFaceVideoResponse, ModifyIntegrationRoleResponse, VerifyPdfResponse, CreateFlowGroupSignReviewRequest, DescribeBillUsageDetailRequest, DescribeFlowTemplatesResponse, DescribeBatchOrganizationRegistrationUrlsResponse, UploadFilesRequest, DescribeOrganizationSealsRequest, DescribePersonCertificateRequest, CreateBatchOrganizationAuthorizationUrlRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, VerifyPdfRequest, DescribeFlowInfoRequest, DeleteExtendedServiceAuthInfosRequest, DescribeExtendedServiceAuthInfosResponse, CreateBatchOrganizationAuthorizationUrlResponse, DescribeFlowInfoResponse, RenewAutoSignLicenseResponse, CancelMultiFlowSignQRCodeResponse, CreateFlowResponse, CreateIntegrationSubOrganizationActiveRecordRequest, CreateFlowBlockchainEvidenceUrlRequest, CreateBatchQuickSignUrlRequest, OperateSealsRequest, CreateOrganizationInfoChangeUrlRequest, DescribeOrganizationGroupOrganizationsResponse, CreateOrganizationGroupInvitationLinkResponse } from "./ess_models";
|
|
4
4
|
/**
|
|
5
5
|
* ess client
|
|
6
6
|
* @class
|
|
@@ -715,6 +715,10 @@ export declare class Client extends AbstractClient {
|
|
|
715
715
|
<font color="red"><b>生成的链接是有时间限制的,过期后将无法访问</b></font>。您可以在接口返回的信息中查看具体的过期时间。为避免错误,请确保在链接过期之前进行下载操作。
|
|
716
716
|
*/
|
|
717
717
|
DescribeFileUrls(req: DescribeFileUrlsRequest, cb?: (error: string, rep: DescribeFileUrlsResponse) => void): Promise<DescribeFileUrlsResponse>;
|
|
718
|
+
/**
|
|
719
|
+
* 修改印章状态(停用、启用)
|
|
720
|
+
*/
|
|
721
|
+
OperateSeals(req: OperateSealsRequest, cb?: (error: string, rep: OperateSealsResponse) => void): Promise<OperateSealsResponse>;
|
|
718
722
|
/**
|
|
719
723
|
* 此接口(CreateIntegrationRole)用来创建企业自定义的SaaS角色或集团角色。
|
|
720
724
|
|
|
@@ -851,6 +851,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
851
851
|
async DescribeFileUrls(req, cb) {
|
|
852
852
|
return this.request("DescribeFileUrls", req, cb);
|
|
853
853
|
}
|
|
854
|
+
/**
|
|
855
|
+
* 修改印章状态(停用、启用)
|
|
856
|
+
*/
|
|
857
|
+
async OperateSeals(req, cb) {
|
|
858
|
+
return this.request("OperateSeals", req, cb);
|
|
859
|
+
}
|
|
854
860
|
/**
|
|
855
861
|
* 此接口(CreateIntegrationRole)用来创建企业自定义的SaaS角色或集团角色。
|
|
856
862
|
|
|
@@ -5895,6 +5895,15 @@ export interface RecipientComponentInfo {
|
|
|
5895
5895
|
*/
|
|
5896
5896
|
Components?: Array<FilledComponent>;
|
|
5897
5897
|
}
|
|
5898
|
+
/**
|
|
5899
|
+
* OperateSeals返回参数结构体
|
|
5900
|
+
*/
|
|
5901
|
+
export interface OperateSealsResponse {
|
|
5902
|
+
/**
|
|
5903
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5904
|
+
*/
|
|
5905
|
+
RequestId?: string;
|
|
5906
|
+
}
|
|
5898
5907
|
/**
|
|
5899
5908
|
* CreateFlowEvidenceReport返回参数结构体
|
|
5900
5909
|
*/
|
|
@@ -10606,6 +10615,29 @@ export interface FileUrl {
|
|
|
10606
10615
|
*/
|
|
10607
10616
|
Option: string;
|
|
10608
10617
|
}
|
|
10618
|
+
/**
|
|
10619
|
+
* OperateSeals请求参数结构体
|
|
10620
|
+
*/
|
|
10621
|
+
export interface OperateSealsRequest {
|
|
10622
|
+
/**
|
|
10623
|
+
* 执行本接口操作的员工信息。 注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
|
|
10624
|
+
*/
|
|
10625
|
+
Operator?: UserInfo;
|
|
10626
|
+
/**
|
|
10627
|
+
* 代理企业和员工的信息。 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
10628
|
+
*/
|
|
10629
|
+
Agent?: Agent;
|
|
10630
|
+
/**
|
|
10631
|
+
* 操作类型,int,目前支持传入以下类型:
|
|
10632
|
+
<ul><li>1:启用印章</li></ul>
|
|
10633
|
+
<ul><li>2:停用印章</li></ul>
|
|
10634
|
+
*/
|
|
10635
|
+
Act?: number;
|
|
10636
|
+
/**
|
|
10637
|
+
* 需要操作的印章ID,数组形式,印章ID可从【web控制台->印章 】获取。
|
|
10638
|
+
*/
|
|
10639
|
+
SealIds?: Array<string>;
|
|
10640
|
+
}
|
|
10609
10641
|
/**
|
|
10610
10642
|
* CreateOrganizationInfoChangeUrl请求参数结构体
|
|
10611
10643
|
*/
|
|
@@ -8009,7 +8009,8 @@ export interface ChannelCreateBatchSignUrlRequest {
|
|
|
8009
8009
|
*/
|
|
8010
8010
|
CanBatchReject?: boolean;
|
|
8011
8011
|
/**
|
|
8012
|
-
* 是否允许此链接中签署方批量确认已读文件。 <ul><li>false (默认): 不允许批量确认已读文件。</li> <li>true : 允许批量确认已读文件。</li></ul
|
|
8012
|
+
* 是否允许此链接中签署方批量确认已读文件。 <ul><li>false (默认): 不允许批量确认已读文件。</li> <li>true : 允许批量确认已读文件。</li></ul>
|
|
8013
|
+
注:`1. 此功能为白名单功能,使用前请联系对应客户经理进行开通。2. 使用此功能时,FlowIds参数必传。3. 对于企业签署方,如果对印章/签名控件有限制要求,需要保证所有印章/签名控件的限制要求(印章id或印章/签名类型限制)一致,否则无法使用此功能。`
|
|
8013
8014
|
*/
|
|
8014
8015
|
CanSkipReadFlow?: boolean;
|
|
8015
8016
|
}
|
|
@@ -8,7 +8,9 @@ import { CreateFileSystemResponse, CreateFilesetRequest, DescribeFilesetsRequest
|
|
|
8
8
|
export declare class Client extends AbstractClient {
|
|
9
9
|
constructor(clientConfig: ClientConfig);
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* 接口废弃
|
|
12
|
+
|
|
13
|
+
查询GooseFS集群角色
|
|
12
14
|
*/
|
|
13
15
|
DescribeClusterRoles(req: DescribeClusterRolesRequest, cb?: (error: string, rep: DescribeClusterRolesResponse) => void): Promise<DescribeClusterRolesResponse>;
|
|
14
16
|
/**
|
|
@@ -28,7 +28,9 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
28
28
|
super("goosefs.tencentcloudapi.com", "2022-05-19", clientConfig);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* 接口废弃
|
|
32
|
+
|
|
33
|
+
查询GooseFS集群角色
|
|
32
34
|
*/
|
|
33
35
|
async DescribeClusterRoles(req, cb) {
|
|
34
36
|
return this.request("DescribeClusterRoles", req, cb);
|
|
@@ -7103,7 +7103,7 @@ export interface DeleteFenceBindResponse {
|
|
|
7103
7103
|
*/
|
|
7104
7104
|
export interface ActivateTWeCallLicenseRequest {
|
|
7105
7105
|
/**
|
|
7106
|
-
* TWecall类型:0-体验套餐;1
|
|
7106
|
+
* TWecall类型:0-体验套餐;1-基础版;3-高级版;
|
|
7107
7107
|
*/
|
|
7108
7108
|
PkgType: number;
|
|
7109
7109
|
/**
|