tencentcloud-sdk-nodejs 4.0.518 → 4.0.519
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 +184 -0
- package/SERVICE_CHANGELOG.md +217 -136
- package/package.json +1 -1
- package/products.md +17 -17
- package/src/common/sdk_version.ts +1 -1
- package/src/services/car/v20220110/car_models.ts +5 -0
- package/src/services/ccc/v20200210/ccc_models.ts +6 -0
- package/src/services/cdn/v20180606/cdn_models.ts +3 -3
- package/src/services/cfg/v20210820/cfg_models.ts +2 -2
- package/src/services/chdfs/v20201112/chdfs_models.ts +19 -1
- package/src/services/dbbrain/v20210527/dbbrain_client.ts +1 -0
- package/src/services/dbbrain/v20210527/dbbrain_models.ts +36 -1
- package/src/services/dts/v20211206/dts_client.ts +1 -1
- package/src/services/ecm/v20190719/ecm_models.ts +17 -1
- package/src/services/ess/v20201111/ess_models.ts +6 -1
- package/src/services/essbasic/v20210526/essbasic_client.ts +1 -1
- package/src/services/essbasic/v20210526/essbasic_models.ts +1 -1
- package/src/services/lighthouse/v20200324/lighthouse_models.ts +3 -3
- package/src/services/tke/v20180525/tke_client.ts +148 -49
- package/src/services/tke/v20180525/tke_models.ts +589 -199
- package/src/services/tsf/v20180326/tsf_models.ts +1 -1
- package/src/services/yinsuda/v20220527/yinsuda_client.ts +15 -3
- package/src/services/yinsuda/v20220527/yinsuda_models.ts +81 -31
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/car/v20220110/car_models.d.ts +4 -0
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +5 -0
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +3 -3
- package/tencentcloud/services/cfg/v20210820/cfg_models.d.ts +2 -2
- package/tencentcloud/services/chdfs/v20201112/chdfs_models.d.ts +16 -1
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +31 -1
- package/tencentcloud/services/dts/v20211206/dts_client.d.ts +1 -1
- package/tencentcloud/services/dts/v20211206/dts_client.js +1 -1
- package/tencentcloud/services/ecm/v20190719/ecm_models.d.ts +14 -1
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +5 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +1 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +1 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1 -1
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +3 -3
- package/tencentcloud/services/tke/v20180525/tke_client.d.ts +47 -15
- package/tencentcloud/services/tke/v20180525/tke_client.js +69 -21
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +503 -170
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +1 -1
- package/tencentcloud/services/yinsuda/v20220527/yinsuda_client.d.ts +5 -1
- package/tencentcloud/services/yinsuda/v20220527/yinsuda_client.js +6 -0
- package/tencentcloud/services/yinsuda/v20220527/yinsuda_models.d.ts +71 -29
- package/test/tke.v20180525.test.js +100 -20
- package/test/yinsuda.v20220527.test.js +10 -0
|
@@ -12771,7 +12771,7 @@ export interface DescribeContainerGroupsRequest {
|
|
|
12771
12771
|
SearchWord?: string
|
|
12772
12772
|
|
|
12773
12773
|
/**
|
|
12774
|
-
* 分组所属应用ID
|
|
12774
|
+
* 分组所属应用ID。必填
|
|
12775
12775
|
*/
|
|
12776
12776
|
ApplicationId?: string
|
|
12777
12777
|
|
|
@@ -18,13 +18,14 @@
|
|
|
18
18
|
import { AbstractClient } from "../../../common/abstract_client"
|
|
19
19
|
import { ClientConfig } from "../../../common/interface"
|
|
20
20
|
import {
|
|
21
|
+
ApplyChorusResponse,
|
|
21
22
|
KTVBPMInfo,
|
|
22
23
|
DescribeKTVSuggestionsResponse,
|
|
23
24
|
KTVMatchRuleMusicInfo,
|
|
24
25
|
JoinRoomInput,
|
|
25
26
|
DestroyKTVRobotResponse,
|
|
26
27
|
MusicAlbumCoverInfo,
|
|
27
|
-
|
|
28
|
+
CreateKTVRobotRequest,
|
|
28
29
|
KTVSuggestionInfo,
|
|
29
30
|
SyncKTVRobotCommandRequest,
|
|
30
31
|
DescribeKTVPlaylistDetailRequest,
|
|
@@ -35,6 +36,7 @@ import {
|
|
|
35
36
|
DescribeKTVPlaylistsResponse,
|
|
36
37
|
DescribeKTVPlaylistsRequest,
|
|
37
38
|
DescribeKTVPlaylistDetailResponse,
|
|
39
|
+
SyncKTVRobotCommandResponse,
|
|
38
40
|
SetDestroyModeCommandInput,
|
|
39
41
|
SetAudioParamCommandInput,
|
|
40
42
|
KTVMatchMusic,
|
|
@@ -42,7 +44,7 @@ import {
|
|
|
42
44
|
DescribeKTVRobotsResponse,
|
|
43
45
|
KTVTagGroupInfo,
|
|
44
46
|
BatchDescribeKTVMusicDetailsRequest,
|
|
45
|
-
|
|
47
|
+
AMEMusicBaseInfo,
|
|
46
48
|
DescribeKTVMusicsByTagResponse,
|
|
47
49
|
KTVTagInfo,
|
|
48
50
|
MusicAlbumInfo,
|
|
@@ -54,7 +56,7 @@ import {
|
|
|
54
56
|
DescribeKTVTagsResponse,
|
|
55
57
|
ChorusClip,
|
|
56
58
|
SetPlaylistCommandInput,
|
|
57
|
-
|
|
59
|
+
ApplyChorusRequest,
|
|
58
60
|
BatchDescribeKTVMusicDetailsResponse,
|
|
59
61
|
KTVMatchRule,
|
|
60
62
|
KTVMusicBaseInfo,
|
|
@@ -159,6 +161,16 @@ export class Client extends AbstractClient {
|
|
|
159
161
|
return this.request("DescribeKTVPlaylists", req, cb)
|
|
160
162
|
}
|
|
161
163
|
|
|
164
|
+
/**
|
|
165
|
+
* 申请合唱相关信息,用于标记用户的演唱是在合唱场景下。
|
|
166
|
+
*/
|
|
167
|
+
async ApplyChorus(
|
|
168
|
+
req: ApplyChorusRequest,
|
|
169
|
+
cb?: (error: string, rep: ApplyChorusResponse) => void
|
|
170
|
+
): Promise<ApplyChorusResponse> {
|
|
171
|
+
return this.request("ApplyChorus", req, cb)
|
|
172
|
+
}
|
|
173
|
+
|
|
162
174
|
/**
|
|
163
175
|
* 获取机器人列表,支持 Id、状态等过滤条件。
|
|
164
176
|
*/
|
|
@@ -15,6 +15,21 @@
|
|
|
15
15
|
* under the License.
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
+
/**
|
|
19
|
+
* ApplyChorus返回参数结构体
|
|
20
|
+
*/
|
|
21
|
+
export interface ApplyChorusResponse {
|
|
22
|
+
/**
|
|
23
|
+
* 合唱 Token。
|
|
24
|
+
*/
|
|
25
|
+
ChorusToken: string
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
29
|
+
*/
|
|
30
|
+
RequestId?: string
|
|
31
|
+
}
|
|
32
|
+
|
|
18
33
|
/**
|
|
19
34
|
* 节拍信息。
|
|
20
35
|
*/
|
|
@@ -103,23 +118,34 @@ export interface MusicAlbumCoverInfo {
|
|
|
103
118
|
}
|
|
104
119
|
|
|
105
120
|
/**
|
|
106
|
-
*
|
|
121
|
+
* CreateKTVRobot请求参数结构体
|
|
107
122
|
*/
|
|
108
|
-
export interface
|
|
123
|
+
export interface CreateKTVRobotRequest {
|
|
109
124
|
/**
|
|
110
|
-
*
|
|
125
|
+
* 应用名称。
|
|
111
126
|
*/
|
|
112
|
-
|
|
127
|
+
AppName: string
|
|
113
128
|
|
|
114
129
|
/**
|
|
115
|
-
*
|
|
130
|
+
* 用户标识。
|
|
116
131
|
*/
|
|
117
|
-
|
|
132
|
+
UserId: string
|
|
118
133
|
|
|
119
134
|
/**
|
|
120
|
-
|
|
135
|
+
* RTC厂商类型,取值有:
|
|
136
|
+
<li>TRTC</li>
|
|
137
|
+
*/
|
|
138
|
+
RTCSystem: string
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* 进房参数。
|
|
121
142
|
*/
|
|
122
|
-
|
|
143
|
+
JoinRoomInput: JoinRoomInput
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* 创建机器人时初始化参数。
|
|
147
|
+
*/
|
|
148
|
+
SyncRobotCommands?: Array<SyncRobotCommand>
|
|
123
149
|
}
|
|
124
150
|
|
|
125
151
|
/**
|
|
@@ -368,6 +394,16 @@ export interface DescribeKTVPlaylistDetailResponse {
|
|
|
368
394
|
RequestId?: string
|
|
369
395
|
}
|
|
370
396
|
|
|
397
|
+
/**
|
|
398
|
+
* SyncKTVRobotCommand返回参数结构体
|
|
399
|
+
*/
|
|
400
|
+
export interface SyncKTVRobotCommandResponse {
|
|
401
|
+
/**
|
|
402
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
403
|
+
*/
|
|
404
|
+
RequestId?: string
|
|
405
|
+
}
|
|
406
|
+
|
|
371
407
|
/**
|
|
372
408
|
* 设置销毁模式
|
|
373
409
|
*/
|
|
@@ -505,34 +541,23 @@ export interface BatchDescribeKTVMusicDetailsRequest {
|
|
|
505
541
|
}
|
|
506
542
|
|
|
507
543
|
/**
|
|
508
|
-
*
|
|
544
|
+
* AME 曲库歌曲基础信息。
|
|
509
545
|
*/
|
|
510
|
-
export interface
|
|
511
|
-
/**
|
|
512
|
-
* 应用名称。
|
|
513
|
-
*/
|
|
514
|
-
AppName: string
|
|
515
|
-
|
|
546
|
+
export interface AMEMusicBaseInfo {
|
|
516
547
|
/**
|
|
517
|
-
*
|
|
548
|
+
* 歌曲 Id。
|
|
518
549
|
*/
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
/**
|
|
522
|
-
* RTC厂商类型,取值有:
|
|
523
|
-
<li>TRTC</li>
|
|
524
|
-
*/
|
|
525
|
-
RTCSystem: string
|
|
550
|
+
MusicId: string
|
|
526
551
|
|
|
527
552
|
/**
|
|
528
|
-
*
|
|
553
|
+
* 歌曲名称。
|
|
529
554
|
*/
|
|
530
|
-
|
|
555
|
+
Name: string
|
|
531
556
|
|
|
532
557
|
/**
|
|
533
|
-
*
|
|
558
|
+
* 歌手列表。
|
|
534
559
|
*/
|
|
535
|
-
|
|
560
|
+
SingerSet: Array<string>
|
|
536
561
|
}
|
|
537
562
|
|
|
538
563
|
/**
|
|
@@ -815,13 +840,38 @@ export interface SetPlaylistCommandInput {
|
|
|
815
840
|
}
|
|
816
841
|
|
|
817
842
|
/**
|
|
818
|
-
*
|
|
843
|
+
* ApplyChorus请求参数结构体
|
|
819
844
|
*/
|
|
820
|
-
export interface
|
|
845
|
+
export interface ApplyChorusRequest {
|
|
821
846
|
/**
|
|
822
|
-
*
|
|
847
|
+
* 应用名称。
|
|
823
848
|
*/
|
|
824
|
-
|
|
849
|
+
AppName: string
|
|
850
|
+
|
|
851
|
+
/**
|
|
852
|
+
* 用户标识。
|
|
853
|
+
*/
|
|
854
|
+
UserId: string
|
|
855
|
+
|
|
856
|
+
/**
|
|
857
|
+
* 房间号。
|
|
858
|
+
*/
|
|
859
|
+
RoomId: string
|
|
860
|
+
|
|
861
|
+
/**
|
|
862
|
+
* 歌曲 Id。
|
|
863
|
+
*/
|
|
864
|
+
MusicId: string
|
|
865
|
+
|
|
866
|
+
/**
|
|
867
|
+
* 最大合唱人数,默认值为 8,最大值为 20。
|
|
868
|
+
*/
|
|
869
|
+
MaxChorusNum?: number
|
|
870
|
+
|
|
871
|
+
/**
|
|
872
|
+
* 合唱用户标识列表。
|
|
873
|
+
*/
|
|
874
|
+
ChorusUserIds?: Array<string>
|
|
825
875
|
}
|
|
826
876
|
|
|
827
877
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.0.
|
|
1
|
+
export declare const sdkVersion = "4.0.519";
|
|
@@ -6018,7 +6018,7 @@ off:不支持
|
|
|
6018
6018
|
*/
|
|
6019
6019
|
QnPrivateAccess: QnPrivateAccess;
|
|
6020
6020
|
/**
|
|
6021
|
-
* HTTPS
|
|
6021
|
+
* HTTPS服务,缺省时默认开启
|
|
6022
6022
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6023
6023
|
*/
|
|
6024
6024
|
HttpsBilling: HttpsBilling;
|
|
@@ -8182,11 +8182,11 @@ export interface DescribeDomainsConfigResponse {
|
|
|
8182
8182
|
RequestId?: string;
|
|
8183
8183
|
}
|
|
8184
8184
|
/**
|
|
8185
|
-
*
|
|
8185
|
+
* HTTPS服务,若关闭,下发配置拦截https请求,开启时会产生计费
|
|
8186
8186
|
*/
|
|
8187
8187
|
export interface HttpsBilling {
|
|
8188
8188
|
/**
|
|
8189
|
-
* HTTPS
|
|
8189
|
+
* HTTPS服务,缺省时默认开启【会产生计费】
|
|
8190
8190
|
*/
|
|
8191
8191
|
Switch: string;
|
|
8192
8192
|
}
|
|
@@ -636,7 +636,7 @@ export interface CreateTaskFromTemplateResponse {
|
|
|
636
636
|
/**
|
|
637
637
|
* 创建成功的演练ID
|
|
638
638
|
*/
|
|
639
|
-
TaskId
|
|
639
|
+
TaskId?: number;
|
|
640
640
|
/**
|
|
641
641
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
642
642
|
*/
|
|
@@ -795,7 +795,7 @@ export interface TaskReportInfo {
|
|
|
795
795
|
*/
|
|
796
796
|
export interface CreateTaskFromTemplateRequest {
|
|
797
797
|
/**
|
|
798
|
-
*
|
|
798
|
+
* 从经验库中查询到的经验模板ID
|
|
799
799
|
*/
|
|
800
800
|
TemplateId: number;
|
|
801
801
|
/**
|
|
@@ -86,6 +86,16 @@ export interface DescribeFileSystemResponse {
|
|
|
86
86
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
87
87
|
*/
|
|
88
88
|
DegradeCapacityUsed: number;
|
|
89
|
+
/**
|
|
90
|
+
* 已使用COS深度归档存储容量(byte)
|
|
91
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
92
|
+
*/
|
|
93
|
+
DeepArchiveCapacityUsed: number;
|
|
94
|
+
/**
|
|
95
|
+
* 已使用COS智能分层存储容量(byte)
|
|
96
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
97
|
+
*/
|
|
98
|
+
IntelligentCapacityUsed: number;
|
|
89
99
|
/**
|
|
90
100
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
91
101
|
*/
|
|
@@ -481,6 +491,11 @@ export interface CreateLifeCycleRulesRequest {
|
|
|
481
491
|
* CreateAccessRules返回参数结构体
|
|
482
492
|
*/
|
|
483
493
|
export interface CreateAccessRulesResponse {
|
|
494
|
+
/**
|
|
495
|
+
* 权限规则列表
|
|
496
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
497
|
+
*/
|
|
498
|
+
AccessRules: Array<AccessRule>;
|
|
484
499
|
/**
|
|
485
500
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
486
501
|
*/
|
|
@@ -644,7 +659,7 @@ export interface Transition {
|
|
|
644
659
|
*/
|
|
645
660
|
Days: number;
|
|
646
661
|
/**
|
|
647
|
-
* 转换类型(1:归档;2:删除;3
|
|
662
|
+
* 转换类型(1:归档;2:删除;3:低频;4:深度归档;5:智能分层)
|
|
648
663
|
*/
|
|
649
664
|
Type: number;
|
|
650
665
|
}
|
|
@@ -594,6 +594,23 @@ export interface DescribeMySqlProcessListResponse {
|
|
|
594
594
|
*/
|
|
595
595
|
RequestId?: string;
|
|
596
596
|
}
|
|
597
|
+
/**
|
|
598
|
+
* 实时会话访问来源详情。
|
|
599
|
+
*/
|
|
600
|
+
export interface SessionItem {
|
|
601
|
+
/**
|
|
602
|
+
* 访问来源。
|
|
603
|
+
*/
|
|
604
|
+
Ip: string;
|
|
605
|
+
/**
|
|
606
|
+
* 当前访问来源活跃连接数
|
|
607
|
+
*/
|
|
608
|
+
ActiveConn: string;
|
|
609
|
+
/**
|
|
610
|
+
* 当前访问来源总连接数
|
|
611
|
+
*/
|
|
612
|
+
AllConn: number;
|
|
613
|
+
}
|
|
597
614
|
/**
|
|
598
615
|
* 实例健康详情。
|
|
599
616
|
*/
|
|
@@ -836,7 +853,20 @@ export interface CreateDBDiagReportTaskResponse {
|
|
|
836
853
|
/**
|
|
837
854
|
* 实时会话统计详情。
|
|
838
855
|
*/
|
|
839
|
-
export
|
|
856
|
+
export interface ProcessStatistic {
|
|
857
|
+
/**
|
|
858
|
+
* 会话详情数组。
|
|
859
|
+
*/
|
|
860
|
+
Items: Array<SessionItem>;
|
|
861
|
+
/**
|
|
862
|
+
* 总连接数。
|
|
863
|
+
*/
|
|
864
|
+
AllConnSum: number;
|
|
865
|
+
/**
|
|
866
|
+
* 总活跃连接数。
|
|
867
|
+
*/
|
|
868
|
+
ActiveConnSum: number;
|
|
869
|
+
}
|
|
840
870
|
/**
|
|
841
871
|
* CreateMailProfile返回参数结构体
|
|
842
872
|
*/
|
|
@@ -89,7 +89,7 @@ export declare class Client extends AbstractClient {
|
|
|
89
89
|
*/
|
|
90
90
|
PauseSyncJob(req: PauseSyncJobRequest, cb?: (error: string, rep: PauseSyncJobResponse) => void): Promise<PauseSyncJobResponse>;
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* 恢复处于暂停中的数据同步任务。
|
|
93
93
|
*/
|
|
94
94
|
ContinueSyncJob(req: ContinueSyncJobRequest, cb?: (error: string, rep: ContinueSyncJobResponse) => void): Promise<ContinueSyncJobResponse>;
|
|
95
95
|
/**
|
|
@@ -149,7 +149,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
149
149
|
return this.request("PauseSyncJob", req, cb);
|
|
150
150
|
}
|
|
151
151
|
/**
|
|
152
|
-
*
|
|
152
|
+
* 恢复处于暂停中的数据同步任务。
|
|
153
153
|
*/
|
|
154
154
|
async ContinueSyncJob(req, cb) {
|
|
155
155
|
return this.request("ContinueSyncJob", req, cb);
|
|
@@ -1691,6 +1691,11 @@ export interface LoadBalancer {
|
|
|
1691
1691
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1692
1692
|
*/
|
|
1693
1693
|
LoadBalancerPassToTarget: boolean;
|
|
1694
|
+
/**
|
|
1695
|
+
* 负载均衡实例的IPv6地址
|
|
1696
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1697
|
+
*/
|
|
1698
|
+
AddressIPv6: string;
|
|
1694
1699
|
}
|
|
1695
1700
|
/**
|
|
1696
1701
|
* ModifyModuleName返回参数结构体
|
|
@@ -3321,7 +3326,7 @@ export interface CreateLoadBalancerResponse {
|
|
|
3321
3326
|
* 由负载均衡实例ID组成的数组
|
|
3322
3327
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3323
3328
|
*/
|
|
3324
|
-
LoadBalancerIds
|
|
3329
|
+
LoadBalancerIds: Array<string>;
|
|
3325
3330
|
/**
|
|
3326
3331
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3327
3332
|
*/
|
|
@@ -5456,6 +5461,14 @@ export interface CreateLoadBalancerRequest {
|
|
|
5456
5461
|
* 安全组。
|
|
5457
5462
|
*/
|
|
5458
5463
|
SecurityGroups?: Array<string>;
|
|
5464
|
+
/**
|
|
5465
|
+
* 仅适用于公网负载均衡。IP版本,可取值:IPV4、IPv6FullChain,默认值 IPV4。说明:取值为IPv6FullChain,表示为IPv6版本。
|
|
5466
|
+
*/
|
|
5467
|
+
AddressIPVersion?: string;
|
|
5468
|
+
/**
|
|
5469
|
+
* 在购买IPV6负载均衡实例的情况下,必须指定子网 ID, 此参数必填。
|
|
5470
|
+
*/
|
|
5471
|
+
SubnetId?: string;
|
|
5459
5472
|
}
|
|
5460
5473
|
/**
|
|
5461
5474
|
* 实例的网络相关信息。
|
|
@@ -305,7 +305,7 @@ export interface CreateConvertTaskApiRequest {
|
|
|
305
305
|
*/
|
|
306
306
|
ResourceId: string;
|
|
307
307
|
/**
|
|
308
|
-
*
|
|
308
|
+
* 调用方用户信息,userId 必填
|
|
309
309
|
*/
|
|
310
310
|
Operator?: UserInfo;
|
|
311
311
|
/**
|
|
@@ -2320,6 +2320,10 @@ export interface VerifyPdfResponse {
|
|
|
2320
2320
|
;5-文件签名格式错误
|
|
2321
2321
|
*/
|
|
2322
2322
|
PdfVerifyResults: Array<PdfVerifyResult>;
|
|
2323
|
+
/**
|
|
2324
|
+
* 验签序列号
|
|
2325
|
+
*/
|
|
2326
|
+
VerifySerialNo: string;
|
|
2323
2327
|
/**
|
|
2324
2328
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2325
2329
|
*/
|
|
@@ -85,7 +85,7 @@ export declare class Client extends AbstractClient {
|
|
|
85
85
|
*/
|
|
86
86
|
ChannelCreateBoundFlows(req: ChannelCreateBoundFlowsRequest, cb?: (error: string, rep: ChannelCreateBoundFlowsResponse) => void): Promise<ChannelCreateBoundFlowsResponse>;
|
|
87
87
|
/**
|
|
88
|
-
* 指定需要批量撤销的签署流程Id,获取批量撤销链接
|
|
88
|
+
* 指定需要批量撤销的签署流程Id,获取批量撤销链接 - 不建议使用此接口,可使用ChannelBatchCancelFlows
|
|
89
89
|
客户指定需要撤销的签署流程Id,最多100个,超过100不处理;
|
|
90
90
|
接口调用成功返回批量撤销合同的链接,通过链接跳转到电子签小程序完成批量撤销;
|
|
91
91
|
可以撤回:未全部签署完成;不可以撤回(终态):已全部签署完成、已拒签、已过期、已撤回。
|
|
@@ -129,7 +129,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
129
129
|
return this.request("ChannelCreateBoundFlows", req, cb);
|
|
130
130
|
}
|
|
131
131
|
/**
|
|
132
|
-
* 指定需要批量撤销的签署流程Id,获取批量撤销链接
|
|
132
|
+
* 指定需要批量撤销的签署流程Id,获取批量撤销链接 - 不建议使用此接口,可使用ChannelBatchCancelFlows
|
|
133
133
|
客户指定需要撤销的签署流程Id,最多100个,超过100不处理;
|
|
134
134
|
接口调用成功返回批量撤销合同的链接,通过链接跳转到电子签小程序完成批量撤销;
|
|
135
135
|
可以撤回:未全部签署完成;不可以撤回(终态):已全部签署完成、已拒签、已过期、已撤回。
|
|
@@ -1266,7 +1266,7 @@ export interface DescribeBlueprintsRequest {
|
|
|
1266
1266
|
类型:String
|
|
1267
1267
|
必选:否
|
|
1268
1268
|
<li>blueprint-type</li>按照【镜像类型】进行过滤。
|
|
1269
|
-
取值:APP_OS(应用镜像 );PURE_OS(系统镜像);PRIVATE(自定义镜像);SHARED(共享镜像)。
|
|
1269
|
+
取值:APP_OS(应用镜像 );PURE_OS(系统镜像);DOCKER(Docker容器镜像);PRIVATE(自定义镜像);SHARED(共享镜像)。
|
|
1270
1270
|
类型:String
|
|
1271
1271
|
必选:否
|
|
1272
1272
|
<li>platform-type</li>按照【镜像平台类型】进行过滤。
|
|
@@ -1769,11 +1769,11 @@ export interface DescribeBlueprintsResponse {
|
|
|
1769
1769
|
/**
|
|
1770
1770
|
* 符合条件的镜像数量。
|
|
1771
1771
|
*/
|
|
1772
|
-
TotalCount
|
|
1772
|
+
TotalCount?: number;
|
|
1773
1773
|
/**
|
|
1774
1774
|
* 镜像详细信息列表。
|
|
1775
1775
|
*/
|
|
1776
|
-
BlueprintSet
|
|
1776
|
+
BlueprintSet?: Array<Blueprint>;
|
|
1777
1777
|
/**
|
|
1778
1778
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1779
1779
|
*/
|