@antchain/abc 1.0.14

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.
@@ -0,0 +1,1019 @@
1
+ /// <reference types="node" />
2
+ import * as $Util from '@alicloud/tea-util';
3
+ import { Readable } from 'stream';
4
+ import * as $tea from '@alicloud/tea-typescript';
5
+ /**
6
+ * Model for initing client
7
+ */
8
+ export declare class Config extends $tea.Model {
9
+ accessKeyId?: string;
10
+ accessKeySecret?: string;
11
+ securityToken?: string;
12
+ protocol?: string;
13
+ readTimeout?: number;
14
+ connectTimeout?: number;
15
+ httpProxy?: string;
16
+ httpsProxy?: string;
17
+ endpoint?: string;
18
+ noProxy?: string;
19
+ maxIdleConns?: number;
20
+ userAgent?: string;
21
+ socks5Proxy?: string;
22
+ socks5NetWork?: string;
23
+ maxIdleTimeMillis?: number;
24
+ keepAliveDurationMillis?: number;
25
+ maxRequests?: number;
26
+ maxRequestsPerHost?: number;
27
+ static names(): {
28
+ [key: string]: string;
29
+ };
30
+ static types(): {
31
+ [key: string]: any;
32
+ };
33
+ constructor(map?: {
34
+ [key: string]: any;
35
+ });
36
+ }
37
+ export declare class SubDemoStruct extends $tea.Model {
38
+ name: string;
39
+ value: string;
40
+ static names(): {
41
+ [key: string]: string;
42
+ };
43
+ static types(): {
44
+ [key: string]: any;
45
+ };
46
+ constructor(map?: {
47
+ [key: string]: any;
48
+ });
49
+ }
50
+ export declare class AbcDemoStruct extends $tea.Model {
51
+ someString?: string;
52
+ someNumber: number;
53
+ someBoolean: boolean;
54
+ someDate?: string;
55
+ someStringList?: string[];
56
+ someStruct: SubDemoStruct;
57
+ someStructList: SubDemoStruct[];
58
+ static names(): {
59
+ [key: string]: string;
60
+ };
61
+ static types(): {
62
+ [key: string]: any;
63
+ };
64
+ constructor(map?: {
65
+ [key: string]: any;
66
+ });
67
+ }
68
+ export declare class TestDemo extends $tea.Model {
69
+ demo: string;
70
+ static names(): {
71
+ [key: string]: string;
72
+ };
73
+ static types(): {
74
+ [key: string]: any;
75
+ };
76
+ constructor(map?: {
77
+ [key: string]: any;
78
+ });
79
+ }
80
+ export declare class FaceImage extends $tea.Model {
81
+ content?: string;
82
+ rect: string;
83
+ static names(): {
84
+ [key: string]: string;
85
+ };
86
+ static types(): {
87
+ [key: string]: any;
88
+ };
89
+ constructor(map?: {
90
+ [key: string]: any;
91
+ });
92
+ }
93
+ export declare class ResultListDemo extends $tea.Model {
94
+ code: AbcDemoStruct;
95
+ data: AbcDemoStruct;
96
+ message: AbcDemoStruct;
97
+ static names(): {
98
+ [key: string]: string;
99
+ };
100
+ static types(): {
101
+ [key: string]: any;
102
+ };
103
+ constructor(map?: {
104
+ [key: string]: any;
105
+ });
106
+ }
107
+ export declare class NameAndAge extends $tea.Model {
108
+ name?: string;
109
+ age?: number;
110
+ static names(): {
111
+ [key: string]: string;
112
+ };
113
+ static types(): {
114
+ [key: string]: any;
115
+ };
116
+ constructor(map?: {
117
+ [key: string]: any;
118
+ });
119
+ }
120
+ export declare class GongXiangnengli extends $tea.Model {
121
+ static names(): {
122
+ [key: string]: string;
123
+ };
124
+ static types(): {
125
+ [key: string]: any;
126
+ };
127
+ constructor(map?: {
128
+ [key: string]: any;
129
+ });
130
+ }
131
+ export declare class InitParks extends $tea.Model {
132
+ time: string;
133
+ operator: string;
134
+ count: number;
135
+ static names(): {
136
+ [key: string]: string;
137
+ };
138
+ static types(): {
139
+ [key: string]: any;
140
+ };
141
+ constructor(map?: {
142
+ [key: string]: any;
143
+ });
144
+ }
145
+ export declare class InitPark extends $tea.Model {
146
+ demo: string;
147
+ static names(): {
148
+ [key: string]: string;
149
+ };
150
+ static types(): {
151
+ [key: string]: any;
152
+ };
153
+ constructor(map?: {
154
+ [key: string]: any;
155
+ });
156
+ }
157
+ export declare class InitPack extends $tea.Model {
158
+ time: string;
159
+ operate: string;
160
+ count: number;
161
+ static names(): {
162
+ [key: string]: string;
163
+ };
164
+ static types(): {
165
+ [key: string]: any;
166
+ };
167
+ constructor(map?: {
168
+ [key: string]: any;
169
+ });
170
+ }
171
+ export declare class TestPark extends $tea.Model {
172
+ time: string;
173
+ operator: string;
174
+ count: number;
175
+ static names(): {
176
+ [key: string]: string;
177
+ };
178
+ static types(): {
179
+ [key: string]: any;
180
+ };
181
+ constructor(map?: {
182
+ [key: string]: any;
183
+ });
184
+ }
185
+ export declare class XNameValuePair extends $tea.Model {
186
+ name: string;
187
+ value: string;
188
+ static names(): {
189
+ [key: string]: string;
190
+ };
191
+ static types(): {
192
+ [key: string]: any;
193
+ };
194
+ constructor(map?: {
195
+ [key: string]: any;
196
+ });
197
+ }
198
+ export declare class PreviewDemoRequest extends $tea.Model {
199
+ authToken?: string;
200
+ productInstanceId?: string;
201
+ inputString: string;
202
+ inputNumber?: number;
203
+ inputBoolean: boolean;
204
+ inputDate?: string;
205
+ inputStringList?: string[];
206
+ inputStruct: AbcDemoStruct;
207
+ inputStructList: AbcDemoStruct[];
208
+ fileObject?: Readable;
209
+ fileObjectName?: string;
210
+ fileId: string;
211
+ static names(): {
212
+ [key: string]: string;
213
+ };
214
+ static types(): {
215
+ [key: string]: any;
216
+ };
217
+ constructor(map?: {
218
+ [key: string]: any;
219
+ });
220
+ }
221
+ export declare class PreviewDemoResponse extends $tea.Model {
222
+ reqMsgId?: string;
223
+ resultCode?: string;
224
+ resultMsg?: string;
225
+ outputString?: string;
226
+ outputNumber?: number;
227
+ outputBoolean?: boolean;
228
+ outputDate?: string;
229
+ outputStringList?: string[];
230
+ outputStruct?: AbcDemoStruct;
231
+ outputStructList?: AbcDemoStruct[];
232
+ static names(): {
233
+ [key: string]: string;
234
+ };
235
+ static types(): {
236
+ [key: string]: any;
237
+ };
238
+ constructor(map?: {
239
+ [key: string]: any;
240
+ });
241
+ }
242
+ export declare class QueryGatewayRequest extends $tea.Model {
243
+ authToken?: string;
244
+ productInstanceId?: string;
245
+ data: string;
246
+ param: AbcDemoStruct;
247
+ static names(): {
248
+ [key: string]: string;
249
+ };
250
+ static types(): {
251
+ [key: string]: any;
252
+ };
253
+ constructor(map?: {
254
+ [key: string]: any;
255
+ });
256
+ }
257
+ export declare class QueryGatewayResponse extends $tea.Model {
258
+ reqMsgId?: string;
259
+ resultCode?: string;
260
+ resultMsg?: string;
261
+ queryResult?: string;
262
+ static names(): {
263
+ [key: string]: string;
264
+ };
265
+ static types(): {
266
+ [key: string]: any;
267
+ };
268
+ constructor(map?: {
269
+ [key: string]: any;
270
+ });
271
+ }
272
+ export declare class QueryAbcdaAbcddaaRequest extends $tea.Model {
273
+ authToken?: string;
274
+ productInstanceId?: string;
275
+ static names(): {
276
+ [key: string]: string;
277
+ };
278
+ static types(): {
279
+ [key: string]: any;
280
+ };
281
+ constructor(map?: {
282
+ [key: string]: any;
283
+ });
284
+ }
285
+ export declare class QueryAbcdaAbcddaaResponse extends $tea.Model {
286
+ reqMsgId?: string;
287
+ resultCode?: string;
288
+ resultMsg?: string;
289
+ static names(): {
290
+ [key: string]: string;
291
+ };
292
+ static types(): {
293
+ [key: string]: any;
294
+ };
295
+ constructor(map?: {
296
+ [key: string]: any;
297
+ });
298
+ }
299
+ export declare class MatchSecurityFaceRequest extends $tea.Model {
300
+ authToken?: string;
301
+ productInstanceId?: string;
302
+ bizId: string;
303
+ face1?: FaceImage;
304
+ face2?: FaceImage;
305
+ static names(): {
306
+ [key: string]: string;
307
+ };
308
+ static types(): {
309
+ [key: string]: any;
310
+ };
311
+ constructor(map?: {
312
+ [key: string]: any;
313
+ });
314
+ }
315
+ export declare class MatchSecurityFaceResponse extends $tea.Model {
316
+ reqMsgId?: string;
317
+ resultCode?: string;
318
+ resultMsg?: string;
319
+ transactionId?: string;
320
+ samePerson?: string;
321
+ score?: string;
322
+ static names(): {
323
+ [key: string]: string;
324
+ };
325
+ static types(): {
326
+ [key: string]: any;
327
+ };
328
+ constructor(map?: {
329
+ [key: string]: any;
330
+ });
331
+ }
332
+ export declare class UploadTestFileRequest extends $tea.Model {
333
+ authToken?: string;
334
+ productInstanceId?: string;
335
+ fileObject?: Readable;
336
+ fileObjectName?: string;
337
+ fileId: string;
338
+ static names(): {
339
+ [key: string]: string;
340
+ };
341
+ static types(): {
342
+ [key: string]: any;
343
+ };
344
+ constructor(map?: {
345
+ [key: string]: any;
346
+ });
347
+ }
348
+ export declare class UploadTestFileResponse extends $tea.Model {
349
+ reqMsgId?: string;
350
+ resultCode?: string;
351
+ resultMsg?: string;
352
+ static names(): {
353
+ [key: string]: string;
354
+ };
355
+ static types(): {
356
+ [key: string]: any;
357
+ };
358
+ constructor(map?: {
359
+ [key: string]: any;
360
+ });
361
+ }
362
+ export declare class QueryTimeOneRequest extends $tea.Model {
363
+ authToken?: string;
364
+ productInstanceId?: string;
365
+ timeout?: string;
366
+ static names(): {
367
+ [key: string]: string;
368
+ };
369
+ static types(): {
370
+ [key: string]: any;
371
+ };
372
+ constructor(map?: {
373
+ [key: string]: any;
374
+ });
375
+ }
376
+ export declare class QueryTimeOneResponse extends $tea.Model {
377
+ reqMsgId?: string;
378
+ resultCode?: string;
379
+ resultMsg?: string;
380
+ stauts?: string;
381
+ msg?: string;
382
+ static names(): {
383
+ [key: string]: string;
384
+ };
385
+ static types(): {
386
+ [key: string]: any;
387
+ };
388
+ constructor(map?: {
389
+ [key: string]: any;
390
+ });
391
+ }
392
+ export declare class QueryTimeTwoRequest extends $tea.Model {
393
+ authToken?: string;
394
+ productInstanceId?: string;
395
+ timeout?: string;
396
+ static names(): {
397
+ [key: string]: string;
398
+ };
399
+ static types(): {
400
+ [key: string]: any;
401
+ };
402
+ constructor(map?: {
403
+ [key: string]: any;
404
+ });
405
+ }
406
+ export declare class QueryTimeTwoResponse extends $tea.Model {
407
+ reqMsgId?: string;
408
+ resultCode?: string;
409
+ resultMsg?: string;
410
+ stauts?: string;
411
+ msg?: string;
412
+ static names(): {
413
+ [key: string]: string;
414
+ };
415
+ static types(): {
416
+ [key: string]: any;
417
+ };
418
+ constructor(map?: {
419
+ [key: string]: any;
420
+ });
421
+ }
422
+ export declare class QueryTimeThreeRequest extends $tea.Model {
423
+ authToken?: string;
424
+ productInstanceId?: string;
425
+ timeout?: string;
426
+ static names(): {
427
+ [key: string]: string;
428
+ };
429
+ static types(): {
430
+ [key: string]: any;
431
+ };
432
+ constructor(map?: {
433
+ [key: string]: any;
434
+ });
435
+ }
436
+ export declare class QueryTimeThreeResponse extends $tea.Model {
437
+ reqMsgId?: string;
438
+ resultCode?: string;
439
+ resultMsg?: string;
440
+ stauts?: string;
441
+ msg?: string;
442
+ static names(): {
443
+ [key: string]: string;
444
+ };
445
+ static types(): {
446
+ [key: string]: any;
447
+ };
448
+ constructor(map?: {
449
+ [key: string]: any;
450
+ });
451
+ }
452
+ export declare class QueryTimeFourRequest extends $tea.Model {
453
+ authToken?: string;
454
+ productInstanceId?: string;
455
+ timeout?: string;
456
+ static names(): {
457
+ [key: string]: string;
458
+ };
459
+ static types(): {
460
+ [key: string]: any;
461
+ };
462
+ constructor(map?: {
463
+ [key: string]: any;
464
+ });
465
+ }
466
+ export declare class QueryTimeFourResponse extends $tea.Model {
467
+ reqMsgId?: string;
468
+ resultCode?: string;
469
+ resultMsg?: string;
470
+ stauts?: string;
471
+ msg?: string;
472
+ static names(): {
473
+ [key: string]: string;
474
+ };
475
+ static types(): {
476
+ [key: string]: any;
477
+ };
478
+ constructor(map?: {
479
+ [key: string]: any;
480
+ });
481
+ }
482
+ export declare class QueryTimeFiveRequest extends $tea.Model {
483
+ authToken?: string;
484
+ productInstanceId?: string;
485
+ timeout?: string;
486
+ static names(): {
487
+ [key: string]: string;
488
+ };
489
+ static types(): {
490
+ [key: string]: any;
491
+ };
492
+ constructor(map?: {
493
+ [key: string]: any;
494
+ });
495
+ }
496
+ export declare class QueryTimeFiveResponse extends $tea.Model {
497
+ reqMsgId?: string;
498
+ resultCode?: string;
499
+ resultMsg?: string;
500
+ stauts?: string;
501
+ msg?: string;
502
+ static names(): {
503
+ [key: string]: string;
504
+ };
505
+ static types(): {
506
+ [key: string]: any;
507
+ };
508
+ constructor(map?: {
509
+ [key: string]: any;
510
+ });
511
+ }
512
+ export declare class CreateapiExistingProductsRequest extends $tea.Model {
513
+ authToken?: string;
514
+ productInstanceId?: string;
515
+ execNum: number;
516
+ static names(): {
517
+ [key: string]: string;
518
+ };
519
+ static types(): {
520
+ [key: string]: any;
521
+ };
522
+ constructor(map?: {
523
+ [key: string]: any;
524
+ });
525
+ }
526
+ export declare class CreateapiExistingProductsResponse extends $tea.Model {
527
+ reqMsgId?: string;
528
+ resultCode?: string;
529
+ resultMsg?: string;
530
+ execNumEcho?: number;
531
+ static names(): {
532
+ [key: string]: string;
533
+ };
534
+ static types(): {
535
+ [key: string]: any;
536
+ };
537
+ constructor(map?: {
538
+ [key: string]: any;
539
+ });
540
+ }
541
+ export declare class APreCreateApiRequest extends $tea.Model {
542
+ authToken?: string;
543
+ productInstanceId?: string;
544
+ time: string;
545
+ operator: string;
546
+ count: number;
547
+ originInfo: string;
548
+ static names(): {
549
+ [key: string]: string;
550
+ };
551
+ static types(): {
552
+ [key: string]: any;
553
+ };
554
+ constructor(map?: {
555
+ [key: string]: any;
556
+ });
557
+ }
558
+ export declare class APreCreateApiResponse extends $tea.Model {
559
+ reqMsgId?: string;
560
+ resultCode?: string;
561
+ resultMsg?: string;
562
+ updInfo?: string;
563
+ updPark?: InitParks;
564
+ static names(): {
565
+ [key: string]: string;
566
+ };
567
+ static types(): {
568
+ [key: string]: any;
569
+ };
570
+ constructor(map?: {
571
+ [key: string]: any;
572
+ });
573
+ }
574
+ export declare class ApiTestCreateRequest extends $tea.Model {
575
+ authToken?: string;
576
+ productInstanceId?: string;
577
+ timeout: string;
578
+ static names(): {
579
+ [key: string]: string;
580
+ };
581
+ static types(): {
582
+ [key: string]: any;
583
+ };
584
+ constructor(map?: {
585
+ [key: string]: any;
586
+ });
587
+ }
588
+ export declare class ApiTestCreateResponse extends $tea.Model {
589
+ reqMsgId?: string;
590
+ resultCode?: string;
591
+ resultMsg?: string;
592
+ status?: string;
593
+ msg?: string;
594
+ static names(): {
595
+ [key: string]: string;
596
+ };
597
+ static types(): {
598
+ [key: string]: any;
599
+ };
600
+ constructor(map?: {
601
+ [key: string]: any;
602
+ });
603
+ }
604
+ export declare class QueryApprovalTestRequest extends $tea.Model {
605
+ authToken?: string;
606
+ productInstanceId?: string;
607
+ input: string;
608
+ delete: string;
609
+ static names(): {
610
+ [key: string]: string;
611
+ };
612
+ static types(): {
613
+ [key: string]: any;
614
+ };
615
+ constructor(map?: {
616
+ [key: string]: any;
617
+ });
618
+ }
619
+ export declare class QueryApprovalTestResponse extends $tea.Model {
620
+ reqMsgId?: string;
621
+ resultCode?: string;
622
+ resultMsg?: string;
623
+ msg?: string;
624
+ code?: number;
625
+ static names(): {
626
+ [key: string]: string;
627
+ };
628
+ static types(): {
629
+ [key: string]: any;
630
+ };
631
+ constructor(map?: {
632
+ [key: string]: any;
633
+ });
634
+ }
635
+ export declare class QueryOneLimitRequest extends $tea.Model {
636
+ authToken?: string;
637
+ productInstanceId?: string;
638
+ timeout: string;
639
+ static names(): {
640
+ [key: string]: string;
641
+ };
642
+ static types(): {
643
+ [key: string]: any;
644
+ };
645
+ constructor(map?: {
646
+ [key: string]: any;
647
+ });
648
+ }
649
+ export declare class QueryOneLimitResponse extends $tea.Model {
650
+ reqMsgId?: string;
651
+ resultCode?: string;
652
+ resultMsg?: string;
653
+ stauts?: string;
654
+ msg?: string;
655
+ static names(): {
656
+ [key: string]: string;
657
+ };
658
+ static types(): {
659
+ [key: string]: any;
660
+ };
661
+ constructor(map?: {
662
+ [key: string]: any;
663
+ });
664
+ }
665
+ export declare class ImportOneLimitRequest extends $tea.Model {
666
+ authToken?: string;
667
+ productInstanceId?: string;
668
+ timeout: string;
669
+ static names(): {
670
+ [key: string]: string;
671
+ };
672
+ static types(): {
673
+ [key: string]: any;
674
+ };
675
+ constructor(map?: {
676
+ [key: string]: any;
677
+ });
678
+ }
679
+ export declare class ImportOneLimitResponse extends $tea.Model {
680
+ reqMsgId?: string;
681
+ resultCode?: string;
682
+ resultMsg?: string;
683
+ stauts?: string;
684
+ msg?: string;
685
+ static names(): {
686
+ [key: string]: string;
687
+ };
688
+ static types(): {
689
+ [key: string]: any;
690
+ };
691
+ constructor(map?: {
692
+ [key: string]: any;
693
+ });
694
+ }
695
+ export declare class QueryGongxiangTesttestRequest extends $tea.Model {
696
+ authToken?: string;
697
+ productInstanceId?: string;
698
+ character1: string;
699
+ character2: number;
700
+ static names(): {
701
+ [key: string]: string;
702
+ };
703
+ static types(): {
704
+ [key: string]: any;
705
+ };
706
+ constructor(map?: {
707
+ [key: string]: any;
708
+ });
709
+ }
710
+ export declare class QueryGongxiangTesttestResponse extends $tea.Model {
711
+ reqMsgId?: string;
712
+ resultCode?: string;
713
+ resultMsg?: string;
714
+ character1?: string;
715
+ static names(): {
716
+ [key: string]: string;
717
+ };
718
+ static types(): {
719
+ [key: string]: any;
720
+ };
721
+ constructor(map?: {
722
+ [key: string]: any;
723
+ });
724
+ }
725
+ export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
726
+ authToken?: string;
727
+ apiCode: string;
728
+ fileLabel?: string;
729
+ fileMetadata?: string;
730
+ fileName?: string;
731
+ mimeType?: string;
732
+ apiCluster?: string;
733
+ static names(): {
734
+ [key: string]: string;
735
+ };
736
+ static types(): {
737
+ [key: string]: any;
738
+ };
739
+ constructor(map?: {
740
+ [key: string]: any;
741
+ });
742
+ }
743
+ export declare class CreateAntcloudGatewayxFileUploadResponse extends $tea.Model {
744
+ reqMsgId?: string;
745
+ resultCode?: string;
746
+ resultMsg?: string;
747
+ expiredTime?: string;
748
+ fileId?: string;
749
+ uploadHeaders?: XNameValuePair[];
750
+ uploadUrl?: string;
751
+ static names(): {
752
+ [key: string]: string;
753
+ };
754
+ static types(): {
755
+ [key: string]: any;
756
+ };
757
+ constructor(map?: {
758
+ [key: string]: any;
759
+ });
760
+ }
761
+ export default class Client {
762
+ _endpoint: string;
763
+ _regionId: string;
764
+ _accessKeyId: string;
765
+ _accessKeySecret: string;
766
+ _protocol: string;
767
+ _userAgent: string;
768
+ _readTimeout: number;
769
+ _connectTimeout: number;
770
+ _httpProxy: string;
771
+ _httpsProxy: string;
772
+ _socks5Proxy: string;
773
+ _socks5NetWork: string;
774
+ _noProxy: string;
775
+ _maxIdleConns: number;
776
+ _securityToken: string;
777
+ _maxIdleTimeMillis: number;
778
+ _keepAliveDurationMillis: number;
779
+ _maxRequests: number;
780
+ _maxRequestsPerHost: number;
781
+ /**
782
+ * Init client with Config
783
+ * @param config config contains the necessary information to create a client
784
+ */
785
+ constructor(config: Config);
786
+ /**
787
+ * Encapsulate the request and invoke the network
788
+ * @param action api name
789
+ * @param protocol http or https
790
+ * @param method e.g. GET
791
+ * @param pathname pathname of every api
792
+ * @param request which contains request params
793
+ * @param runtime which controls some details of call api, such as retry times
794
+ * @return the response
795
+ */
796
+ doRequest(version: string, action: string, protocol: string, method: string, pathname: string, request: {
797
+ [key: string]: any;
798
+ }, headers: {
799
+ [key: string]: string;
800
+ }, runtime: $Util.RuntimeOptions): Promise<{
801
+ [key: string]: any;
802
+ }>;
803
+ /**
804
+ * Description: 录入演示111
805
+ * Summary: 录入演示API
806
+ */
807
+ previewDemo(request: PreviewDemoRequest): Promise<PreviewDemoResponse>;
808
+ /**
809
+ * Description: 录入演示111
810
+ * Summary: 录入演示API
811
+ */
812
+ previewDemoEx(request: PreviewDemoRequest, headers: {
813
+ [key: string]: string;
814
+ }, runtime: $Util.RuntimeOptions): Promise<PreviewDemoResponse>;
815
+ /**
816
+ * Description: 测试导入api1
817
+ * Summary: 测试导入api1
818
+ */
819
+ queryGateway(request: QueryGatewayRequest): Promise<QueryGatewayResponse>;
820
+ /**
821
+ * Description: 测试导入api1
822
+ * Summary: 测试导入api1
823
+ */
824
+ queryGatewayEx(request: QueryGatewayRequest, headers: {
825
+ [key: string]: string;
826
+ }, runtime: $Util.RuntimeOptions): Promise<QueryGatewayResponse>;
827
+ /**
828
+ * Description: 调试a s dddd
829
+ * Summary: 调试1
830
+ */
831
+ queryAbcdaAbcddaa(request: QueryAbcdaAbcddaaRequest): Promise<QueryAbcdaAbcddaaResponse>;
832
+ /**
833
+ * Description: 调试a s dddd
834
+ * Summary: 调试1
835
+ */
836
+ queryAbcdaAbcddaaEx(request: QueryAbcdaAbcddaaRequest, headers: {
837
+ [key: string]: string;
838
+ }, runtime: $Util.RuntimeOptions): Promise<QueryAbcdaAbcddaaResponse>;
839
+ /**
840
+ * Description: 测试大安全接口
841
+ * Summary: 测试大安全接口
842
+ */
843
+ matchSecurityFace(request: MatchSecurityFaceRequest): Promise<MatchSecurityFaceResponse>;
844
+ /**
845
+ * Description: 测试大安全接口
846
+ * Summary: 测试大安全接口
847
+ */
848
+ matchSecurityFaceEx(request: MatchSecurityFaceRequest, headers: {
849
+ [key: string]: string;
850
+ }, runtime: $Util.RuntimeOptions): Promise<MatchSecurityFaceResponse>;
851
+ /**
852
+ * Description: 文件上传测试接口
853
+ * Summary: 文件上传测试接口
854
+ */
855
+ uploadTestFile(request: UploadTestFileRequest): Promise<UploadTestFileResponse>;
856
+ /**
857
+ * Description: 文件上传测试接口
858
+ * Summary: 文件上传测试接口
859
+ */
860
+ uploadTestFileEx(request: UploadTestFileRequest, headers: {
861
+ [key: string]: string;
862
+ }, runtime: $Util.RuntimeOptions): Promise<UploadTestFileResponse>;
863
+ /**
864
+ * Description: 压测接口1
865
+ * Summary: 压测接口1
866
+ */
867
+ queryTimeOne(request: QueryTimeOneRequest): Promise<QueryTimeOneResponse>;
868
+ /**
869
+ * Description: 压测接口1
870
+ * Summary: 压测接口1
871
+ */
872
+ queryTimeOneEx(request: QueryTimeOneRequest, headers: {
873
+ [key: string]: string;
874
+ }, runtime: $Util.RuntimeOptions): Promise<QueryTimeOneResponse>;
875
+ /**
876
+ * Description: 压测接口2
877
+ * Summary: 压测接口2
878
+ */
879
+ queryTimeTwo(request: QueryTimeTwoRequest): Promise<QueryTimeTwoResponse>;
880
+ /**
881
+ * Description: 压测接口2
882
+ * Summary: 压测接口2
883
+ */
884
+ queryTimeTwoEx(request: QueryTimeTwoRequest, headers: {
885
+ [key: string]: string;
886
+ }, runtime: $Util.RuntimeOptions): Promise<QueryTimeTwoResponse>;
887
+ /**
888
+ * Description: 压测接口3
889
+ * Summary: 压测接口3
890
+ */
891
+ queryTimeThree(request: QueryTimeThreeRequest): Promise<QueryTimeThreeResponse>;
892
+ /**
893
+ * Description: 压测接口3
894
+ * Summary: 压测接口3
895
+ */
896
+ queryTimeThreeEx(request: QueryTimeThreeRequest, headers: {
897
+ [key: string]: string;
898
+ }, runtime: $Util.RuntimeOptions): Promise<QueryTimeThreeResponse>;
899
+ /**
900
+ * Description: 压测接口4
901
+ * Summary: 压测接口4
902
+ */
903
+ queryTimeFour(request: QueryTimeFourRequest): Promise<QueryTimeFourResponse>;
904
+ /**
905
+ * Description: 压测接口4
906
+ * Summary: 压测接口4
907
+ */
908
+ queryTimeFourEx(request: QueryTimeFourRequest, headers: {
909
+ [key: string]: string;
910
+ }, runtime: $Util.RuntimeOptions): Promise<QueryTimeFourResponse>;
911
+ /**
912
+ * Description: 压测接口5
913
+ * Summary: 压测接口5
914
+ */
915
+ queryTimeFive(request: QueryTimeFiveRequest): Promise<QueryTimeFiveResponse>;
916
+ /**
917
+ * Description: 压测接口5
918
+ * Summary: 压测接口5
919
+ */
920
+ queryTimeFiveEx(request: QueryTimeFiveRequest, headers: {
921
+ [key: string]: string;
922
+ }, runtime: $Util.RuntimeOptions): Promise<QueryTimeFiveResponse>;
923
+ /**
924
+ * Description: 已有产品创建api
925
+ * Summary: 已有产品创建api
926
+ */
927
+ createapiExistingProducts(request: CreateapiExistingProductsRequest): Promise<CreateapiExistingProductsResponse>;
928
+ /**
929
+ * Description: 已有产品创建api
930
+ * Summary: 已有产品创建api
931
+ */
932
+ createapiExistingProductsEx(request: CreateapiExistingProductsRequest, headers: {
933
+ [key: string]: string;
934
+ }, runtime: $Util.RuntimeOptions): Promise<CreateapiExistingProductsResponse>;
935
+ /**
936
+ * Description: 已有产品下创建的api
937
+ * Summary: 已有产品下创建的api
938
+ */
939
+ aPreCreateApi(request: APreCreateApiRequest): Promise<APreCreateApiResponse>;
940
+ /**
941
+ * Description: 已有产品下创建的api
942
+ * Summary: 已有产品下创建的api
943
+ */
944
+ aPreCreateApiEx(request: APreCreateApiRequest, headers: {
945
+ [key: string]: string;
946
+ }, runtime: $Util.RuntimeOptions): Promise<APreCreateApiResponse>;
947
+ /**
948
+ * Description: 测试使用api
949
+ * Summary: 测试使用api
950
+ */
951
+ apiTestCreate(request: ApiTestCreateRequest): Promise<ApiTestCreateResponse>;
952
+ /**
953
+ * Description: 测试使用api
954
+ * Summary: 测试使用api
955
+ */
956
+ apiTestCreateEx(request: ApiTestCreateRequest, headers: {
957
+ [key: string]: string;
958
+ }, runtime: $Util.RuntimeOptions): Promise<ApiTestCreateResponse>;
959
+ /**
960
+ * Description: 用于测试api评审接入SDL/修改后的评审/0323
961
+ * Summary: 用于测试api评审接入SDL/修改后的评审/0323
962
+ */
963
+ queryApprovalTest(request: QueryApprovalTestRequest): Promise<QueryApprovalTestResponse>;
964
+ /**
965
+ * Description: 用于测试api评审接入SDL/修改后的评审/0323
966
+ * Summary: 用于测试api评审接入SDL/修改后的评审/0323
967
+ */
968
+ queryApprovalTestEx(request: QueryApprovalTestRequest, headers: {
969
+ [key: string]: string;
970
+ }, runtime: $Util.RuntimeOptions): Promise<QueryApprovalTestResponse>;
971
+ /**
972
+ * Description: 个人工作台二期预发测试
973
+ * Summary: 个人工作台二期预发测试
974
+ */
975
+ queryOneLimit(request: QueryOneLimitRequest): Promise<QueryOneLimitResponse>;
976
+ /**
977
+ * Description: 个人工作台二期预发测试
978
+ * Summary: 个人工作台二期预发测试
979
+ */
980
+ queryOneLimitEx(request: QueryOneLimitRequest, headers: {
981
+ [key: string]: string;
982
+ }, runtime: $Util.RuntimeOptions): Promise<QueryOneLimitResponse>;
983
+ /**
984
+ * Description: 个人工作台二期预发测试
985
+ * Summary: 个人工作台二期预发测试
986
+ */
987
+ importOneLimit(request: ImportOneLimitRequest): Promise<ImportOneLimitResponse>;
988
+ /**
989
+ * Description: 个人工作台二期预发测试
990
+ * Summary: 个人工作台二期预发测试
991
+ */
992
+ importOneLimitEx(request: ImportOneLimitRequest, headers: {
993
+ [key: string]: string;
994
+ }, runtime: $Util.RuntimeOptions): Promise<ImportOneLimitResponse>;
995
+ /**
996
+ * Description: 用于共享能力中心六期接入rasp回归验证
997
+ * Summary: 用于共享能力中心六期接入rasp回归验证
998
+ */
999
+ queryGongxiangTesttest(request: QueryGongxiangTesttestRequest): Promise<QueryGongxiangTesttestResponse>;
1000
+ /**
1001
+ * Description: 用于共享能力中心六期接入rasp回归验证
1002
+ * Summary: 用于共享能力中心六期接入rasp回归验证
1003
+ */
1004
+ queryGongxiangTesttestEx(request: QueryGongxiangTesttestRequest, headers: {
1005
+ [key: string]: string;
1006
+ }, runtime: $Util.RuntimeOptions): Promise<QueryGongxiangTesttestResponse>;
1007
+ /**
1008
+ * Description: 创建HTTP PUT提交的文件上传
1009
+ * Summary: 文件上传创建
1010
+ */
1011
+ createAntcloudGatewayxFileUpload(request: CreateAntcloudGatewayxFileUploadRequest): Promise<CreateAntcloudGatewayxFileUploadResponse>;
1012
+ /**
1013
+ * Description: 创建HTTP PUT提交的文件上传
1014
+ * Summary: 文件上传创建
1015
+ */
1016
+ createAntcloudGatewayxFileUploadEx(request: CreateAntcloudGatewayxFileUploadRequest, headers: {
1017
+ [key: string]: string;
1018
+ }, runtime: $Util.RuntimeOptions): Promise<CreateAntcloudGatewayxFileUploadResponse>;
1019
+ }