@antchain/abc 1.0.14 → 1.0.34
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/dist/client.d.ts +1162 -83
- package/dist/client.js +1211 -27
- package/dist/client.js.map +1 -1
- package/package.json +30 -29
- package/src/client.ts +2039 -243
package/dist/client.d.ts
CHANGED
|
@@ -3,26 +3,129 @@ import * as $Util from '@alicloud/tea-util';
|
|
|
3
3
|
import { Readable } from 'stream';
|
|
4
4
|
import * as $tea from '@alicloud/tea-typescript';
|
|
5
5
|
/**
|
|
6
|
+
* @remarks
|
|
6
7
|
* Model for initing client
|
|
7
8
|
*/
|
|
8
9
|
export declare class Config extends $tea.Model {
|
|
10
|
+
/**
|
|
11
|
+
* @remarks
|
|
12
|
+
* accesskey id
|
|
13
|
+
*/
|
|
9
14
|
accessKeyId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @remarks
|
|
17
|
+
* accesskey secret
|
|
18
|
+
*/
|
|
10
19
|
accessKeySecret?: string;
|
|
20
|
+
/**
|
|
21
|
+
* @remarks
|
|
22
|
+
* security token
|
|
23
|
+
*/
|
|
11
24
|
securityToken?: string;
|
|
25
|
+
/**
|
|
26
|
+
* @remarks
|
|
27
|
+
* http protocol
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* http
|
|
31
|
+
*/
|
|
12
32
|
protocol?: string;
|
|
33
|
+
/**
|
|
34
|
+
* @remarks
|
|
35
|
+
* read timeout
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* 10
|
|
39
|
+
*/
|
|
13
40
|
readTimeout?: number;
|
|
41
|
+
/**
|
|
42
|
+
* @remarks
|
|
43
|
+
* connect timeout
|
|
44
|
+
*
|
|
45
|
+
* @example
|
|
46
|
+
* 10
|
|
47
|
+
*/
|
|
14
48
|
connectTimeout?: number;
|
|
49
|
+
/**
|
|
50
|
+
* @remarks
|
|
51
|
+
* http proxy
|
|
52
|
+
*
|
|
53
|
+
* @example
|
|
54
|
+
* http://localhost
|
|
55
|
+
*/
|
|
15
56
|
httpProxy?: string;
|
|
57
|
+
/**
|
|
58
|
+
* @remarks
|
|
59
|
+
* https proxy
|
|
60
|
+
*
|
|
61
|
+
* @example
|
|
62
|
+
* https://localhost
|
|
63
|
+
*/
|
|
16
64
|
httpsProxy?: string;
|
|
65
|
+
/**
|
|
66
|
+
* @remarks
|
|
67
|
+
* endpoint
|
|
68
|
+
*
|
|
69
|
+
* @example
|
|
70
|
+
* cs.aliyuncs.com
|
|
71
|
+
*/
|
|
17
72
|
endpoint?: string;
|
|
73
|
+
/**
|
|
74
|
+
* @remarks
|
|
75
|
+
* proxy white list
|
|
76
|
+
*
|
|
77
|
+
* @example
|
|
78
|
+
* http://localhost
|
|
79
|
+
*/
|
|
18
80
|
noProxy?: string;
|
|
81
|
+
/**
|
|
82
|
+
* @remarks
|
|
83
|
+
* max idle conns
|
|
84
|
+
*
|
|
85
|
+
* @example
|
|
86
|
+
* 3
|
|
87
|
+
*/
|
|
19
88
|
maxIdleConns?: number;
|
|
89
|
+
/**
|
|
90
|
+
* @remarks
|
|
91
|
+
* user agent
|
|
92
|
+
*
|
|
93
|
+
* @example
|
|
94
|
+
* Alibabacloud/1
|
|
95
|
+
*/
|
|
20
96
|
userAgent?: string;
|
|
97
|
+
/**
|
|
98
|
+
* @remarks
|
|
99
|
+
* socks5 proxy
|
|
100
|
+
*/
|
|
21
101
|
socks5Proxy?: string;
|
|
102
|
+
/**
|
|
103
|
+
* @remarks
|
|
104
|
+
* socks5 network
|
|
105
|
+
*
|
|
106
|
+
* @example
|
|
107
|
+
* TCP
|
|
108
|
+
*/
|
|
22
109
|
socks5NetWork?: string;
|
|
110
|
+
/**
|
|
111
|
+
* @remarks
|
|
112
|
+
* 长链接最大空闲时长
|
|
113
|
+
*/
|
|
23
114
|
maxIdleTimeMillis?: number;
|
|
115
|
+
/**
|
|
116
|
+
* @remarks
|
|
117
|
+
* 长链接最大连接时长
|
|
118
|
+
*/
|
|
24
119
|
keepAliveDurationMillis?: number;
|
|
120
|
+
/**
|
|
121
|
+
* @remarks
|
|
122
|
+
* 最大连接数(长链接最大总数)
|
|
123
|
+
*/
|
|
25
124
|
maxRequests?: number;
|
|
125
|
+
/**
|
|
126
|
+
* @remarks
|
|
127
|
+
* 每个目标主机的最大连接数(分主机域名的长链接最大总数
|
|
128
|
+
*/
|
|
26
129
|
maxRequestsPerHost?: number;
|
|
27
130
|
static names(): {
|
|
28
131
|
[key: string]: string;
|
|
@@ -35,7 +138,15 @@ export declare class Config extends $tea.Model {
|
|
|
35
138
|
});
|
|
36
139
|
}
|
|
37
140
|
export declare class SubDemoStruct extends $tea.Model {
|
|
141
|
+
/**
|
|
142
|
+
* @example
|
|
143
|
+
* name
|
|
144
|
+
*/
|
|
38
145
|
name: string;
|
|
146
|
+
/**
|
|
147
|
+
* @example
|
|
148
|
+
* value
|
|
149
|
+
*/
|
|
39
150
|
value: string;
|
|
40
151
|
static names(): {
|
|
41
152
|
[key: string]: string;
|
|
@@ -48,12 +159,40 @@ export declare class SubDemoStruct extends $tea.Model {
|
|
|
48
159
|
});
|
|
49
160
|
}
|
|
50
161
|
export declare class AbcDemoStruct extends $tea.Model {
|
|
162
|
+
/**
|
|
163
|
+
* @example
|
|
164
|
+
* str
|
|
165
|
+
*/
|
|
51
166
|
someString?: string;
|
|
167
|
+
/**
|
|
168
|
+
* @example
|
|
169
|
+
* 100
|
|
170
|
+
*/
|
|
52
171
|
someNumber: number;
|
|
172
|
+
/**
|
|
173
|
+
* @example
|
|
174
|
+
* true, false
|
|
175
|
+
*/
|
|
53
176
|
someBoolean: boolean;
|
|
177
|
+
/**
|
|
178
|
+
* @example
|
|
179
|
+
* 2018-10-10T10:10:00Z
|
|
180
|
+
*/
|
|
54
181
|
someDate?: string;
|
|
182
|
+
/**
|
|
183
|
+
* @example
|
|
184
|
+
* somestring
|
|
185
|
+
*/
|
|
55
186
|
someStringList?: string[];
|
|
187
|
+
/**
|
|
188
|
+
* @example
|
|
189
|
+
* { "name": "value" }
|
|
190
|
+
*/
|
|
56
191
|
someStruct: SubDemoStruct;
|
|
192
|
+
/**
|
|
193
|
+
* @example
|
|
194
|
+
* [{"name": "value"}]
|
|
195
|
+
*/
|
|
57
196
|
someStructList: SubDemoStruct[];
|
|
58
197
|
static names(): {
|
|
59
198
|
[key: string]: string;
|
|
@@ -66,6 +205,10 @@ export declare class AbcDemoStruct extends $tea.Model {
|
|
|
66
205
|
});
|
|
67
206
|
}
|
|
68
207
|
export declare class TestDemo extends $tea.Model {
|
|
208
|
+
/**
|
|
209
|
+
* @example
|
|
210
|
+
* id
|
|
211
|
+
*/
|
|
69
212
|
demo: string;
|
|
70
213
|
static names(): {
|
|
71
214
|
[key: string]: string;
|
|
@@ -78,7 +221,15 @@ export declare class TestDemo extends $tea.Model {
|
|
|
78
221
|
});
|
|
79
222
|
}
|
|
80
223
|
export declare class FaceImage extends $tea.Model {
|
|
224
|
+
/**
|
|
225
|
+
* @example
|
|
226
|
+
* 123
|
|
227
|
+
*/
|
|
81
228
|
content?: string;
|
|
229
|
+
/**
|
|
230
|
+
* @example
|
|
231
|
+
* 123
|
|
232
|
+
*/
|
|
82
233
|
rect: string;
|
|
83
234
|
static names(): {
|
|
84
235
|
[key: string]: string;
|
|
@@ -91,8 +242,20 @@ export declare class FaceImage extends $tea.Model {
|
|
|
91
242
|
});
|
|
92
243
|
}
|
|
93
244
|
export declare class ResultListDemo extends $tea.Model {
|
|
245
|
+
/**
|
|
246
|
+
* @example
|
|
247
|
+
* {"name":"value"}
|
|
248
|
+
*/
|
|
94
249
|
code: AbcDemoStruct;
|
|
250
|
+
/**
|
|
251
|
+
* @example
|
|
252
|
+
* {"name":{"key":"value"}}
|
|
253
|
+
*/
|
|
95
254
|
data: AbcDemoStruct;
|
|
255
|
+
/**
|
|
256
|
+
* @example
|
|
257
|
+
* {"message":"success"}
|
|
258
|
+
*/
|
|
96
259
|
message: AbcDemoStruct;
|
|
97
260
|
static names(): {
|
|
98
261
|
[key: string]: string;
|
|
@@ -105,7 +268,15 @@ export declare class ResultListDemo extends $tea.Model {
|
|
|
105
268
|
});
|
|
106
269
|
}
|
|
107
270
|
export declare class NameAndAge extends $tea.Model {
|
|
271
|
+
/**
|
|
272
|
+
* @example
|
|
273
|
+
* 张三
|
|
274
|
+
*/
|
|
108
275
|
name?: string;
|
|
276
|
+
/**
|
|
277
|
+
* @example
|
|
278
|
+
* 18
|
|
279
|
+
*/
|
|
109
280
|
age?: number;
|
|
110
281
|
static names(): {
|
|
111
282
|
[key: string]: string;
|
|
@@ -129,8 +300,20 @@ export declare class GongXiangnengli extends $tea.Model {
|
|
|
129
300
|
});
|
|
130
301
|
}
|
|
131
302
|
export declare class InitParks extends $tea.Model {
|
|
303
|
+
/**
|
|
304
|
+
* @example
|
|
305
|
+
* 2024-11-03 14:00
|
|
306
|
+
*/
|
|
132
307
|
time: string;
|
|
308
|
+
/**
|
|
309
|
+
* @example
|
|
310
|
+
* 姜泽琦
|
|
311
|
+
*/
|
|
133
312
|
operator: string;
|
|
313
|
+
/**
|
|
314
|
+
* @example
|
|
315
|
+
* 1
|
|
316
|
+
*/
|
|
134
317
|
count: number;
|
|
135
318
|
static names(): {
|
|
136
319
|
[key: string]: string;
|
|
@@ -143,6 +326,10 @@ export declare class InitParks extends $tea.Model {
|
|
|
143
326
|
});
|
|
144
327
|
}
|
|
145
328
|
export declare class InitPark extends $tea.Model {
|
|
329
|
+
/**
|
|
330
|
+
* @example
|
|
331
|
+
* 1
|
|
332
|
+
*/
|
|
146
333
|
demo: string;
|
|
147
334
|
static names(): {
|
|
148
335
|
[key: string]: string;
|
|
@@ -155,8 +342,20 @@ export declare class InitPark extends $tea.Model {
|
|
|
155
342
|
});
|
|
156
343
|
}
|
|
157
344
|
export declare class InitPack extends $tea.Model {
|
|
345
|
+
/**
|
|
346
|
+
* @example
|
|
347
|
+
* 2018-10-10T10:10:00Z
|
|
348
|
+
*/
|
|
158
349
|
time: string;
|
|
350
|
+
/**
|
|
351
|
+
* @example
|
|
352
|
+
* 张三
|
|
353
|
+
*/
|
|
159
354
|
operate: string;
|
|
355
|
+
/**
|
|
356
|
+
* @example
|
|
357
|
+
* 1
|
|
358
|
+
*/
|
|
160
359
|
count: number;
|
|
161
360
|
static names(): {
|
|
162
361
|
[key: string]: string;
|
|
@@ -169,8 +368,20 @@ export declare class InitPack extends $tea.Model {
|
|
|
169
368
|
});
|
|
170
369
|
}
|
|
171
370
|
export declare class TestPark extends $tea.Model {
|
|
371
|
+
/**
|
|
372
|
+
* @example
|
|
373
|
+
* 2022-11-07 14:48
|
|
374
|
+
*/
|
|
172
375
|
time: string;
|
|
376
|
+
/**
|
|
377
|
+
* @example
|
|
378
|
+
* 张三
|
|
379
|
+
*/
|
|
173
380
|
operator: string;
|
|
381
|
+
/**
|
|
382
|
+
* @example
|
|
383
|
+
* 1
|
|
384
|
+
*/
|
|
174
385
|
count: number;
|
|
175
386
|
static names(): {
|
|
176
387
|
[key: string]: string;
|
|
@@ -182,8 +393,32 @@ export declare class TestPark extends $tea.Model {
|
|
|
182
393
|
[key: string]: any;
|
|
183
394
|
});
|
|
184
395
|
}
|
|
396
|
+
export declare class DevTest extends $tea.Model {
|
|
397
|
+
/**
|
|
398
|
+
* @example
|
|
399
|
+
* 200
|
|
400
|
+
*/
|
|
401
|
+
timeout: string;
|
|
402
|
+
static names(): {
|
|
403
|
+
[key: string]: string;
|
|
404
|
+
};
|
|
405
|
+
static types(): {
|
|
406
|
+
[key: string]: any;
|
|
407
|
+
};
|
|
408
|
+
constructor(map?: {
|
|
409
|
+
[key: string]: any;
|
|
410
|
+
});
|
|
411
|
+
}
|
|
185
412
|
export declare class XNameValuePair extends $tea.Model {
|
|
413
|
+
/**
|
|
414
|
+
* @example
|
|
415
|
+
* key
|
|
416
|
+
*/
|
|
186
417
|
name: string;
|
|
418
|
+
/**
|
|
419
|
+
* @example
|
|
420
|
+
* value
|
|
421
|
+
*/
|
|
187
422
|
value: string;
|
|
188
423
|
static names(): {
|
|
189
424
|
[key: string]: string;
|
|
@@ -195,6 +430,157 @@ export declare class XNameValuePair extends $tea.Model {
|
|
|
195
430
|
[key: string]: any;
|
|
196
431
|
});
|
|
197
432
|
}
|
|
433
|
+
export declare class QueryAlltestOneRequest extends $tea.Model {
|
|
434
|
+
authToken?: string;
|
|
435
|
+
productInstanceId?: string;
|
|
436
|
+
timeout: string;
|
|
437
|
+
static names(): {
|
|
438
|
+
[key: string]: string;
|
|
439
|
+
};
|
|
440
|
+
static types(): {
|
|
441
|
+
[key: string]: any;
|
|
442
|
+
};
|
|
443
|
+
constructor(map?: {
|
|
444
|
+
[key: string]: any;
|
|
445
|
+
});
|
|
446
|
+
}
|
|
447
|
+
export declare class QueryAlltestOneResponse extends $tea.Model {
|
|
448
|
+
reqMsgId?: string;
|
|
449
|
+
resultCode?: string;
|
|
450
|
+
resultMsg?: string;
|
|
451
|
+
msg?: string;
|
|
452
|
+
stauts?: string;
|
|
453
|
+
static names(): {
|
|
454
|
+
[key: string]: string;
|
|
455
|
+
};
|
|
456
|
+
static types(): {
|
|
457
|
+
[key: string]: any;
|
|
458
|
+
};
|
|
459
|
+
constructor(map?: {
|
|
460
|
+
[key: string]: any;
|
|
461
|
+
});
|
|
462
|
+
}
|
|
463
|
+
export declare class ImportAlltestOneRequest extends $tea.Model {
|
|
464
|
+
authToken?: string;
|
|
465
|
+
productInstanceId?: string;
|
|
466
|
+
timeout: string;
|
|
467
|
+
static names(): {
|
|
468
|
+
[key: string]: string;
|
|
469
|
+
};
|
|
470
|
+
static types(): {
|
|
471
|
+
[key: string]: any;
|
|
472
|
+
};
|
|
473
|
+
constructor(map?: {
|
|
474
|
+
[key: string]: any;
|
|
475
|
+
});
|
|
476
|
+
}
|
|
477
|
+
export declare class ImportAlltestOneResponse extends $tea.Model {
|
|
478
|
+
reqMsgId?: string;
|
|
479
|
+
resultCode?: string;
|
|
480
|
+
resultMsg?: string;
|
|
481
|
+
msg?: string;
|
|
482
|
+
stauts?: string;
|
|
483
|
+
static names(): {
|
|
484
|
+
[key: string]: string;
|
|
485
|
+
};
|
|
486
|
+
static types(): {
|
|
487
|
+
[key: string]: any;
|
|
488
|
+
};
|
|
489
|
+
constructor(map?: {
|
|
490
|
+
[key: string]: any;
|
|
491
|
+
});
|
|
492
|
+
}
|
|
493
|
+
export declare class StabilizeAlltestOneRequest extends $tea.Model {
|
|
494
|
+
authToken?: string;
|
|
495
|
+
productInstanceId?: string;
|
|
496
|
+
timeout: string;
|
|
497
|
+
static names(): {
|
|
498
|
+
[key: string]: string;
|
|
499
|
+
};
|
|
500
|
+
static types(): {
|
|
501
|
+
[key: string]: any;
|
|
502
|
+
};
|
|
503
|
+
constructor(map?: {
|
|
504
|
+
[key: string]: any;
|
|
505
|
+
});
|
|
506
|
+
}
|
|
507
|
+
export declare class StabilizeAlltestOneResponse extends $tea.Model {
|
|
508
|
+
reqMsgId?: string;
|
|
509
|
+
resultCode?: string;
|
|
510
|
+
resultMsg?: string;
|
|
511
|
+
stauts?: string;
|
|
512
|
+
msg?: string;
|
|
513
|
+
static names(): {
|
|
514
|
+
[key: string]: string;
|
|
515
|
+
};
|
|
516
|
+
static types(): {
|
|
517
|
+
[key: string]: any;
|
|
518
|
+
};
|
|
519
|
+
constructor(map?: {
|
|
520
|
+
[key: string]: any;
|
|
521
|
+
});
|
|
522
|
+
}
|
|
523
|
+
export declare class UnstabilizeAlltestOneRequest extends $tea.Model {
|
|
524
|
+
authToken?: string;
|
|
525
|
+
productInstanceId?: string;
|
|
526
|
+
timeout: string;
|
|
527
|
+
static names(): {
|
|
528
|
+
[key: string]: string;
|
|
529
|
+
};
|
|
530
|
+
static types(): {
|
|
531
|
+
[key: string]: any;
|
|
532
|
+
};
|
|
533
|
+
constructor(map?: {
|
|
534
|
+
[key: string]: any;
|
|
535
|
+
});
|
|
536
|
+
}
|
|
537
|
+
export declare class UnstabilizeAlltestOneResponse extends $tea.Model {
|
|
538
|
+
reqMsgId?: string;
|
|
539
|
+
resultCode?: string;
|
|
540
|
+
resultMsg?: string;
|
|
541
|
+
stauts?: string;
|
|
542
|
+
msg?: string;
|
|
543
|
+
static names(): {
|
|
544
|
+
[key: string]: string;
|
|
545
|
+
};
|
|
546
|
+
static types(): {
|
|
547
|
+
[key: string]: any;
|
|
548
|
+
};
|
|
549
|
+
constructor(map?: {
|
|
550
|
+
[key: string]: any;
|
|
551
|
+
});
|
|
552
|
+
}
|
|
553
|
+
export declare class QueryAlltestTwoRequest extends $tea.Model {
|
|
554
|
+
authToken?: string;
|
|
555
|
+
productInstanceId?: string;
|
|
556
|
+
timeout: string;
|
|
557
|
+
a: TestDemo;
|
|
558
|
+
static names(): {
|
|
559
|
+
[key: string]: string;
|
|
560
|
+
};
|
|
561
|
+
static types(): {
|
|
562
|
+
[key: string]: any;
|
|
563
|
+
};
|
|
564
|
+
constructor(map?: {
|
|
565
|
+
[key: string]: any;
|
|
566
|
+
});
|
|
567
|
+
}
|
|
568
|
+
export declare class QueryAlltestTwoResponse extends $tea.Model {
|
|
569
|
+
reqMsgId?: string;
|
|
570
|
+
resultCode?: string;
|
|
571
|
+
resultMsg?: string;
|
|
572
|
+
msg?: string;
|
|
573
|
+
stauts?: string;
|
|
574
|
+
static names(): {
|
|
575
|
+
[key: string]: string;
|
|
576
|
+
};
|
|
577
|
+
static types(): {
|
|
578
|
+
[key: string]: any;
|
|
579
|
+
};
|
|
580
|
+
constructor(map?: {
|
|
581
|
+
[key: string]: any;
|
|
582
|
+
});
|
|
583
|
+
}
|
|
198
584
|
export declare class PreviewDemoRequest extends $tea.Model {
|
|
199
585
|
authToken?: string;
|
|
200
586
|
productInstanceId?: string;
|
|
@@ -205,7 +591,15 @@ export declare class PreviewDemoRequest extends $tea.Model {
|
|
|
205
591
|
inputStringList?: string[];
|
|
206
592
|
inputStruct: AbcDemoStruct;
|
|
207
593
|
inputStructList: AbcDemoStruct[];
|
|
594
|
+
/**
|
|
595
|
+
* @remarks
|
|
596
|
+
* 待上传文件
|
|
597
|
+
*/
|
|
208
598
|
fileObject?: Readable;
|
|
599
|
+
/**
|
|
600
|
+
* @remarks
|
|
601
|
+
* 待上传文件名
|
|
602
|
+
*/
|
|
209
603
|
fileObjectName?: string;
|
|
210
604
|
fileId: string;
|
|
211
605
|
static names(): {
|
|
@@ -218,17 +612,414 @@ export declare class PreviewDemoRequest extends $tea.Model {
|
|
|
218
612
|
[key: string]: any;
|
|
219
613
|
});
|
|
220
614
|
}
|
|
221
|
-
export declare class PreviewDemoResponse extends $tea.Model {
|
|
615
|
+
export declare class PreviewDemoResponse extends $tea.Model {
|
|
616
|
+
reqMsgId?: string;
|
|
617
|
+
resultCode?: string;
|
|
618
|
+
resultMsg?: string;
|
|
619
|
+
outputString?: string;
|
|
620
|
+
outputNumber?: number;
|
|
621
|
+
outputBoolean?: boolean;
|
|
622
|
+
outputDate?: string;
|
|
623
|
+
outputStringList?: string[];
|
|
624
|
+
outputStruct?: AbcDemoStruct;
|
|
625
|
+
outputStructList?: AbcDemoStruct[];
|
|
626
|
+
static names(): {
|
|
627
|
+
[key: string]: string;
|
|
628
|
+
};
|
|
629
|
+
static types(): {
|
|
630
|
+
[key: string]: any;
|
|
631
|
+
};
|
|
632
|
+
constructor(map?: {
|
|
633
|
+
[key: string]: any;
|
|
634
|
+
});
|
|
635
|
+
}
|
|
636
|
+
export declare class QueryGatewayRequest extends $tea.Model {
|
|
637
|
+
authToken?: string;
|
|
638
|
+
productInstanceId?: string;
|
|
639
|
+
data: string;
|
|
640
|
+
param: AbcDemoStruct;
|
|
641
|
+
static names(): {
|
|
642
|
+
[key: string]: string;
|
|
643
|
+
};
|
|
644
|
+
static types(): {
|
|
645
|
+
[key: string]: any;
|
|
646
|
+
};
|
|
647
|
+
constructor(map?: {
|
|
648
|
+
[key: string]: any;
|
|
649
|
+
});
|
|
650
|
+
}
|
|
651
|
+
export declare class QueryGatewayResponse extends $tea.Model {
|
|
652
|
+
reqMsgId?: string;
|
|
653
|
+
resultCode?: string;
|
|
654
|
+
resultMsg?: string;
|
|
655
|
+
queryResult?: string;
|
|
656
|
+
static names(): {
|
|
657
|
+
[key: string]: string;
|
|
658
|
+
};
|
|
659
|
+
static types(): {
|
|
660
|
+
[key: string]: any;
|
|
661
|
+
};
|
|
662
|
+
constructor(map?: {
|
|
663
|
+
[key: string]: any;
|
|
664
|
+
});
|
|
665
|
+
}
|
|
666
|
+
export declare class QueryAbcdaAbcddaaRequest extends $tea.Model {
|
|
667
|
+
authToken?: string;
|
|
668
|
+
productInstanceId?: 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 QueryAbcdaAbcddaaResponse extends $tea.Model {
|
|
680
|
+
reqMsgId?: string;
|
|
681
|
+
resultCode?: string;
|
|
682
|
+
resultMsg?: string;
|
|
683
|
+
static names(): {
|
|
684
|
+
[key: string]: string;
|
|
685
|
+
};
|
|
686
|
+
static types(): {
|
|
687
|
+
[key: string]: any;
|
|
688
|
+
};
|
|
689
|
+
constructor(map?: {
|
|
690
|
+
[key: string]: any;
|
|
691
|
+
});
|
|
692
|
+
}
|
|
693
|
+
export declare class MatchSecurityFaceRequest extends $tea.Model {
|
|
694
|
+
authToken?: string;
|
|
695
|
+
productInstanceId?: string;
|
|
696
|
+
bizId: string;
|
|
697
|
+
face1?: FaceImage;
|
|
698
|
+
face2?: FaceImage;
|
|
699
|
+
static names(): {
|
|
700
|
+
[key: string]: string;
|
|
701
|
+
};
|
|
702
|
+
static types(): {
|
|
703
|
+
[key: string]: any;
|
|
704
|
+
};
|
|
705
|
+
constructor(map?: {
|
|
706
|
+
[key: string]: any;
|
|
707
|
+
});
|
|
708
|
+
}
|
|
709
|
+
export declare class MatchSecurityFaceResponse extends $tea.Model {
|
|
710
|
+
reqMsgId?: string;
|
|
711
|
+
resultCode?: string;
|
|
712
|
+
resultMsg?: string;
|
|
713
|
+
transactionId?: string;
|
|
714
|
+
samePerson?: string;
|
|
715
|
+
score?: string;
|
|
716
|
+
static names(): {
|
|
717
|
+
[key: string]: string;
|
|
718
|
+
};
|
|
719
|
+
static types(): {
|
|
720
|
+
[key: string]: any;
|
|
721
|
+
};
|
|
722
|
+
constructor(map?: {
|
|
723
|
+
[key: string]: any;
|
|
724
|
+
});
|
|
725
|
+
}
|
|
726
|
+
export declare class UploadTestFileRequest extends $tea.Model {
|
|
727
|
+
authToken?: string;
|
|
728
|
+
productInstanceId?: string;
|
|
729
|
+
/**
|
|
730
|
+
* @remarks
|
|
731
|
+
* 待上传文件
|
|
732
|
+
*/
|
|
733
|
+
fileObject?: Readable;
|
|
734
|
+
/**
|
|
735
|
+
* @remarks
|
|
736
|
+
* 待上传文件名
|
|
737
|
+
*/
|
|
738
|
+
fileObjectName?: string;
|
|
739
|
+
fileId: string;
|
|
740
|
+
static names(): {
|
|
741
|
+
[key: string]: string;
|
|
742
|
+
};
|
|
743
|
+
static types(): {
|
|
744
|
+
[key: string]: any;
|
|
745
|
+
};
|
|
746
|
+
constructor(map?: {
|
|
747
|
+
[key: string]: any;
|
|
748
|
+
});
|
|
749
|
+
}
|
|
750
|
+
export declare class UploadTestFileResponse extends $tea.Model {
|
|
751
|
+
reqMsgId?: string;
|
|
752
|
+
resultCode?: string;
|
|
753
|
+
resultMsg?: string;
|
|
754
|
+
static names(): {
|
|
755
|
+
[key: string]: string;
|
|
756
|
+
};
|
|
757
|
+
static types(): {
|
|
758
|
+
[key: string]: any;
|
|
759
|
+
};
|
|
760
|
+
constructor(map?: {
|
|
761
|
+
[key: string]: any;
|
|
762
|
+
});
|
|
763
|
+
}
|
|
764
|
+
export declare class QueryTimeOneRequest extends $tea.Model {
|
|
765
|
+
authToken?: string;
|
|
766
|
+
productInstanceId?: string;
|
|
767
|
+
timeout?: string;
|
|
768
|
+
static names(): {
|
|
769
|
+
[key: string]: string;
|
|
770
|
+
};
|
|
771
|
+
static types(): {
|
|
772
|
+
[key: string]: any;
|
|
773
|
+
};
|
|
774
|
+
constructor(map?: {
|
|
775
|
+
[key: string]: any;
|
|
776
|
+
});
|
|
777
|
+
}
|
|
778
|
+
export declare class QueryTimeOneResponse extends $tea.Model {
|
|
779
|
+
reqMsgId?: string;
|
|
780
|
+
resultCode?: string;
|
|
781
|
+
resultMsg?: string;
|
|
782
|
+
stauts?: string;
|
|
783
|
+
msg?: string;
|
|
784
|
+
static names(): {
|
|
785
|
+
[key: string]: string;
|
|
786
|
+
};
|
|
787
|
+
static types(): {
|
|
788
|
+
[key: string]: any;
|
|
789
|
+
};
|
|
790
|
+
constructor(map?: {
|
|
791
|
+
[key: string]: any;
|
|
792
|
+
});
|
|
793
|
+
}
|
|
794
|
+
export declare class QueryTimeTwoRequest extends $tea.Model {
|
|
795
|
+
authToken?: string;
|
|
796
|
+
productInstanceId?: string;
|
|
797
|
+
timeout?: string;
|
|
798
|
+
static names(): {
|
|
799
|
+
[key: string]: string;
|
|
800
|
+
};
|
|
801
|
+
static types(): {
|
|
802
|
+
[key: string]: any;
|
|
803
|
+
};
|
|
804
|
+
constructor(map?: {
|
|
805
|
+
[key: string]: any;
|
|
806
|
+
});
|
|
807
|
+
}
|
|
808
|
+
export declare class QueryTimeTwoResponse extends $tea.Model {
|
|
809
|
+
reqMsgId?: string;
|
|
810
|
+
resultCode?: string;
|
|
811
|
+
resultMsg?: string;
|
|
812
|
+
stauts?: string;
|
|
813
|
+
msg?: string;
|
|
814
|
+
static names(): {
|
|
815
|
+
[key: string]: string;
|
|
816
|
+
};
|
|
817
|
+
static types(): {
|
|
818
|
+
[key: string]: any;
|
|
819
|
+
};
|
|
820
|
+
constructor(map?: {
|
|
821
|
+
[key: string]: any;
|
|
822
|
+
});
|
|
823
|
+
}
|
|
824
|
+
export declare class QueryTimeThreeRequest extends $tea.Model {
|
|
825
|
+
authToken?: string;
|
|
826
|
+
productInstanceId?: string;
|
|
827
|
+
timeout?: string;
|
|
828
|
+
static names(): {
|
|
829
|
+
[key: string]: string;
|
|
830
|
+
};
|
|
831
|
+
static types(): {
|
|
832
|
+
[key: string]: any;
|
|
833
|
+
};
|
|
834
|
+
constructor(map?: {
|
|
835
|
+
[key: string]: any;
|
|
836
|
+
});
|
|
837
|
+
}
|
|
838
|
+
export declare class QueryTimeThreeResponse extends $tea.Model {
|
|
839
|
+
reqMsgId?: string;
|
|
840
|
+
resultCode?: string;
|
|
841
|
+
resultMsg?: string;
|
|
842
|
+
stauts?: string;
|
|
843
|
+
msg?: string;
|
|
844
|
+
static names(): {
|
|
845
|
+
[key: string]: string;
|
|
846
|
+
};
|
|
847
|
+
static types(): {
|
|
848
|
+
[key: string]: any;
|
|
849
|
+
};
|
|
850
|
+
constructor(map?: {
|
|
851
|
+
[key: string]: any;
|
|
852
|
+
});
|
|
853
|
+
}
|
|
854
|
+
export declare class QueryTimeFourRequest extends $tea.Model {
|
|
855
|
+
authToken?: string;
|
|
856
|
+
productInstanceId?: string;
|
|
857
|
+
timeout?: string;
|
|
858
|
+
static names(): {
|
|
859
|
+
[key: string]: string;
|
|
860
|
+
};
|
|
861
|
+
static types(): {
|
|
862
|
+
[key: string]: any;
|
|
863
|
+
};
|
|
864
|
+
constructor(map?: {
|
|
865
|
+
[key: string]: any;
|
|
866
|
+
});
|
|
867
|
+
}
|
|
868
|
+
export declare class QueryTimeFourResponse extends $tea.Model {
|
|
869
|
+
reqMsgId?: string;
|
|
870
|
+
resultCode?: string;
|
|
871
|
+
resultMsg?: string;
|
|
872
|
+
stauts?: string;
|
|
873
|
+
msg?: string;
|
|
874
|
+
static names(): {
|
|
875
|
+
[key: string]: string;
|
|
876
|
+
};
|
|
877
|
+
static types(): {
|
|
878
|
+
[key: string]: any;
|
|
879
|
+
};
|
|
880
|
+
constructor(map?: {
|
|
881
|
+
[key: string]: any;
|
|
882
|
+
});
|
|
883
|
+
}
|
|
884
|
+
export declare class QueryTimeFiveRequest extends $tea.Model {
|
|
885
|
+
authToken?: string;
|
|
886
|
+
productInstanceId?: string;
|
|
887
|
+
timeout?: string;
|
|
888
|
+
static names(): {
|
|
889
|
+
[key: string]: string;
|
|
890
|
+
};
|
|
891
|
+
static types(): {
|
|
892
|
+
[key: string]: any;
|
|
893
|
+
};
|
|
894
|
+
constructor(map?: {
|
|
895
|
+
[key: string]: any;
|
|
896
|
+
});
|
|
897
|
+
}
|
|
898
|
+
export declare class QueryTimeFiveResponse extends $tea.Model {
|
|
899
|
+
reqMsgId?: string;
|
|
900
|
+
resultCode?: string;
|
|
901
|
+
resultMsg?: string;
|
|
902
|
+
stauts?: string;
|
|
903
|
+
msg?: string;
|
|
904
|
+
static names(): {
|
|
905
|
+
[key: string]: string;
|
|
906
|
+
};
|
|
907
|
+
static types(): {
|
|
908
|
+
[key: string]: any;
|
|
909
|
+
};
|
|
910
|
+
constructor(map?: {
|
|
911
|
+
[key: string]: any;
|
|
912
|
+
});
|
|
913
|
+
}
|
|
914
|
+
export declare class CccAaaBbbRequest extends $tea.Model {
|
|
915
|
+
authToken?: string;
|
|
916
|
+
productInstanceId?: string;
|
|
917
|
+
static names(): {
|
|
918
|
+
[key: string]: string;
|
|
919
|
+
};
|
|
920
|
+
static types(): {
|
|
921
|
+
[key: string]: any;
|
|
922
|
+
};
|
|
923
|
+
constructor(map?: {
|
|
924
|
+
[key: string]: any;
|
|
925
|
+
});
|
|
926
|
+
}
|
|
927
|
+
export declare class CccAaaBbbResponse extends $tea.Model {
|
|
928
|
+
reqMsgId?: string;
|
|
929
|
+
resultCode?: string;
|
|
930
|
+
resultMsg?: string;
|
|
931
|
+
static names(): {
|
|
932
|
+
[key: string]: string;
|
|
933
|
+
};
|
|
934
|
+
static types(): {
|
|
935
|
+
[key: string]: any;
|
|
936
|
+
};
|
|
937
|
+
constructor(map?: {
|
|
938
|
+
[key: string]: any;
|
|
939
|
+
});
|
|
940
|
+
}
|
|
941
|
+
export declare class CreateapiExistingProductsRequest extends $tea.Model {
|
|
942
|
+
authToken?: string;
|
|
943
|
+
productInstanceId?: string;
|
|
944
|
+
execNum: number;
|
|
945
|
+
static names(): {
|
|
946
|
+
[key: string]: string;
|
|
947
|
+
};
|
|
948
|
+
static types(): {
|
|
949
|
+
[key: string]: any;
|
|
950
|
+
};
|
|
951
|
+
constructor(map?: {
|
|
952
|
+
[key: string]: any;
|
|
953
|
+
});
|
|
954
|
+
}
|
|
955
|
+
export declare class CreateapiExistingProductsResponse extends $tea.Model {
|
|
956
|
+
reqMsgId?: string;
|
|
957
|
+
resultCode?: string;
|
|
958
|
+
resultMsg?: string;
|
|
959
|
+
execNumEcho?: number;
|
|
960
|
+
static names(): {
|
|
961
|
+
[key: string]: string;
|
|
962
|
+
};
|
|
963
|
+
static types(): {
|
|
964
|
+
[key: string]: any;
|
|
965
|
+
};
|
|
966
|
+
constructor(map?: {
|
|
967
|
+
[key: string]: any;
|
|
968
|
+
});
|
|
969
|
+
}
|
|
970
|
+
export declare class APreCreateApiRequest extends $tea.Model {
|
|
971
|
+
authToken?: string;
|
|
972
|
+
productInstanceId?: string;
|
|
973
|
+
time: string;
|
|
974
|
+
operator: string;
|
|
975
|
+
count: number;
|
|
976
|
+
originInfo: string;
|
|
977
|
+
static names(): {
|
|
978
|
+
[key: string]: string;
|
|
979
|
+
};
|
|
980
|
+
static types(): {
|
|
981
|
+
[key: string]: any;
|
|
982
|
+
};
|
|
983
|
+
constructor(map?: {
|
|
984
|
+
[key: string]: any;
|
|
985
|
+
});
|
|
986
|
+
}
|
|
987
|
+
export declare class APreCreateApiResponse extends $tea.Model {
|
|
988
|
+
reqMsgId?: string;
|
|
989
|
+
resultCode?: string;
|
|
990
|
+
resultMsg?: string;
|
|
991
|
+
updInfo?: string;
|
|
992
|
+
updPark?: InitParks;
|
|
993
|
+
static names(): {
|
|
994
|
+
[key: string]: string;
|
|
995
|
+
};
|
|
996
|
+
static types(): {
|
|
997
|
+
[key: string]: any;
|
|
998
|
+
};
|
|
999
|
+
constructor(map?: {
|
|
1000
|
+
[key: string]: any;
|
|
1001
|
+
});
|
|
1002
|
+
}
|
|
1003
|
+
export declare class ApiTestCreateRequest extends $tea.Model {
|
|
1004
|
+
authToken?: string;
|
|
1005
|
+
productInstanceId?: string;
|
|
1006
|
+
timeout: string;
|
|
1007
|
+
static names(): {
|
|
1008
|
+
[key: string]: string;
|
|
1009
|
+
};
|
|
1010
|
+
static types(): {
|
|
1011
|
+
[key: string]: any;
|
|
1012
|
+
};
|
|
1013
|
+
constructor(map?: {
|
|
1014
|
+
[key: string]: any;
|
|
1015
|
+
});
|
|
1016
|
+
}
|
|
1017
|
+
export declare class ApiTestCreateResponse extends $tea.Model {
|
|
222
1018
|
reqMsgId?: string;
|
|
223
1019
|
resultCode?: string;
|
|
224
1020
|
resultMsg?: string;
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
outputBoolean?: boolean;
|
|
228
|
-
outputDate?: string;
|
|
229
|
-
outputStringList?: string[];
|
|
230
|
-
outputStruct?: AbcDemoStruct;
|
|
231
|
-
outputStructList?: AbcDemoStruct[];
|
|
1021
|
+
status?: string;
|
|
1022
|
+
msg?: string;
|
|
232
1023
|
static names(): {
|
|
233
1024
|
[key: string]: string;
|
|
234
1025
|
};
|
|
@@ -239,11 +1030,11 @@ export declare class PreviewDemoResponse extends $tea.Model {
|
|
|
239
1030
|
[key: string]: any;
|
|
240
1031
|
});
|
|
241
1032
|
}
|
|
242
|
-
export declare class
|
|
1033
|
+
export declare class QueryApprovalTestRequest extends $tea.Model {
|
|
243
1034
|
authToken?: string;
|
|
244
1035
|
productInstanceId?: string;
|
|
245
|
-
|
|
246
|
-
|
|
1036
|
+
input: string;
|
|
1037
|
+
delete: string;
|
|
247
1038
|
static names(): {
|
|
248
1039
|
[key: string]: string;
|
|
249
1040
|
};
|
|
@@ -254,11 +1045,12 @@ export declare class QueryGatewayRequest extends $tea.Model {
|
|
|
254
1045
|
[key: string]: any;
|
|
255
1046
|
});
|
|
256
1047
|
}
|
|
257
|
-
export declare class
|
|
1048
|
+
export declare class QueryApprovalTestResponse extends $tea.Model {
|
|
258
1049
|
reqMsgId?: string;
|
|
259
1050
|
resultCode?: string;
|
|
260
1051
|
resultMsg?: string;
|
|
261
|
-
|
|
1052
|
+
msg?: string;
|
|
1053
|
+
code?: number;
|
|
262
1054
|
static names(): {
|
|
263
1055
|
[key: string]: string;
|
|
264
1056
|
};
|
|
@@ -269,7 +1061,7 @@ export declare class QueryGatewayResponse extends $tea.Model {
|
|
|
269
1061
|
[key: string]: any;
|
|
270
1062
|
});
|
|
271
1063
|
}
|
|
272
|
-
export declare class
|
|
1064
|
+
export declare class AzxdAzsxRequest extends $tea.Model {
|
|
273
1065
|
authToken?: string;
|
|
274
1066
|
productInstanceId?: string;
|
|
275
1067
|
static names(): {
|
|
@@ -282,7 +1074,7 @@ export declare class QueryAbcdaAbcddaaRequest extends $tea.Model {
|
|
|
282
1074
|
[key: string]: any;
|
|
283
1075
|
});
|
|
284
1076
|
}
|
|
285
|
-
export declare class
|
|
1077
|
+
export declare class AzxdAzsxResponse extends $tea.Model {
|
|
286
1078
|
reqMsgId?: string;
|
|
287
1079
|
resultCode?: string;
|
|
288
1080
|
resultMsg?: string;
|
|
@@ -296,12 +1088,10 @@ export declare class QueryAbcdaAbcddaaResponse extends $tea.Model {
|
|
|
296
1088
|
[key: string]: any;
|
|
297
1089
|
});
|
|
298
1090
|
}
|
|
299
|
-
export declare class
|
|
1091
|
+
export declare class QueryTestOneRequest extends $tea.Model {
|
|
300
1092
|
authToken?: string;
|
|
301
1093
|
productInstanceId?: string;
|
|
302
|
-
|
|
303
|
-
face1?: FaceImage;
|
|
304
|
-
face2?: FaceImage;
|
|
1094
|
+
timeout: string;
|
|
305
1095
|
static names(): {
|
|
306
1096
|
[key: string]: string;
|
|
307
1097
|
};
|
|
@@ -312,13 +1102,12 @@ export declare class MatchSecurityFaceRequest extends $tea.Model {
|
|
|
312
1102
|
[key: string]: any;
|
|
313
1103
|
});
|
|
314
1104
|
}
|
|
315
|
-
export declare class
|
|
1105
|
+
export declare class QueryTestOneResponse extends $tea.Model {
|
|
316
1106
|
reqMsgId?: string;
|
|
317
1107
|
resultCode?: string;
|
|
318
1108
|
resultMsg?: string;
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
score?: string;
|
|
1109
|
+
stauts?: string;
|
|
1110
|
+
msg?: string;
|
|
322
1111
|
static names(): {
|
|
323
1112
|
[key: string]: string;
|
|
324
1113
|
};
|
|
@@ -329,12 +1118,10 @@ export declare class MatchSecurityFaceResponse extends $tea.Model {
|
|
|
329
1118
|
[key: string]: any;
|
|
330
1119
|
});
|
|
331
1120
|
}
|
|
332
|
-
export declare class
|
|
1121
|
+
export declare class ImportTestOneRequest extends $tea.Model {
|
|
333
1122
|
authToken?: string;
|
|
334
1123
|
productInstanceId?: string;
|
|
335
|
-
|
|
336
|
-
fileObjectName?: string;
|
|
337
|
-
fileId: string;
|
|
1124
|
+
timeout: string;
|
|
338
1125
|
static names(): {
|
|
339
1126
|
[key: string]: string;
|
|
340
1127
|
};
|
|
@@ -345,10 +1132,12 @@ export declare class UploadTestFileRequest extends $tea.Model {
|
|
|
345
1132
|
[key: string]: any;
|
|
346
1133
|
});
|
|
347
1134
|
}
|
|
348
|
-
export declare class
|
|
1135
|
+
export declare class ImportTestOneResponse extends $tea.Model {
|
|
349
1136
|
reqMsgId?: string;
|
|
350
1137
|
resultCode?: string;
|
|
351
1138
|
resultMsg?: string;
|
|
1139
|
+
msg?: string;
|
|
1140
|
+
stauts?: string;
|
|
352
1141
|
static names(): {
|
|
353
1142
|
[key: string]: string;
|
|
354
1143
|
};
|
|
@@ -359,10 +1148,10 @@ export declare class UploadTestFileResponse extends $tea.Model {
|
|
|
359
1148
|
[key: string]: any;
|
|
360
1149
|
});
|
|
361
1150
|
}
|
|
362
|
-
export declare class
|
|
1151
|
+
export declare class StabilizeTestOneRequest extends $tea.Model {
|
|
363
1152
|
authToken?: string;
|
|
364
1153
|
productInstanceId?: string;
|
|
365
|
-
timeout
|
|
1154
|
+
timeout: string;
|
|
366
1155
|
static names(): {
|
|
367
1156
|
[key: string]: string;
|
|
368
1157
|
};
|
|
@@ -373,12 +1162,12 @@ export declare class QueryTimeOneRequest extends $tea.Model {
|
|
|
373
1162
|
[key: string]: any;
|
|
374
1163
|
});
|
|
375
1164
|
}
|
|
376
|
-
export declare class
|
|
1165
|
+
export declare class StabilizeTestOneResponse extends $tea.Model {
|
|
377
1166
|
reqMsgId?: string;
|
|
378
1167
|
resultCode?: string;
|
|
379
1168
|
resultMsg?: string;
|
|
380
|
-
stauts?: string;
|
|
381
1169
|
msg?: string;
|
|
1170
|
+
stauts?: string;
|
|
382
1171
|
static names(): {
|
|
383
1172
|
[key: string]: string;
|
|
384
1173
|
};
|
|
@@ -389,7 +1178,7 @@ export declare class QueryTimeOneResponse extends $tea.Model {
|
|
|
389
1178
|
[key: string]: any;
|
|
390
1179
|
});
|
|
391
1180
|
}
|
|
392
|
-
export declare class
|
|
1181
|
+
export declare class CaptureTestOneRequest extends $tea.Model {
|
|
393
1182
|
authToken?: string;
|
|
394
1183
|
productInstanceId?: string;
|
|
395
1184
|
timeout?: string;
|
|
@@ -403,12 +1192,12 @@ export declare class QueryTimeTwoRequest extends $tea.Model {
|
|
|
403
1192
|
[key: string]: any;
|
|
404
1193
|
});
|
|
405
1194
|
}
|
|
406
|
-
export declare class
|
|
1195
|
+
export declare class CaptureTestOneResponse extends $tea.Model {
|
|
407
1196
|
reqMsgId?: string;
|
|
408
1197
|
resultCode?: string;
|
|
409
1198
|
resultMsg?: string;
|
|
410
|
-
stauts?: string;
|
|
411
1199
|
msg?: string;
|
|
1200
|
+
stauts?: string;
|
|
412
1201
|
static names(): {
|
|
413
1202
|
[key: string]: string;
|
|
414
1203
|
};
|
|
@@ -419,10 +1208,10 @@ export declare class QueryTimeTwoResponse extends $tea.Model {
|
|
|
419
1208
|
[key: string]: any;
|
|
420
1209
|
});
|
|
421
1210
|
}
|
|
422
|
-
export declare class
|
|
1211
|
+
export declare class MatchTestOneRequest extends $tea.Model {
|
|
423
1212
|
authToken?: string;
|
|
424
1213
|
productInstanceId?: string;
|
|
425
|
-
timeout
|
|
1214
|
+
timeout: string;
|
|
426
1215
|
static names(): {
|
|
427
1216
|
[key: string]: string;
|
|
428
1217
|
};
|
|
@@ -433,12 +1222,12 @@ export declare class QueryTimeThreeRequest extends $tea.Model {
|
|
|
433
1222
|
[key: string]: any;
|
|
434
1223
|
});
|
|
435
1224
|
}
|
|
436
|
-
export declare class
|
|
1225
|
+
export declare class MatchTestOneResponse extends $tea.Model {
|
|
437
1226
|
reqMsgId?: string;
|
|
438
1227
|
resultCode?: string;
|
|
439
1228
|
resultMsg?: string;
|
|
440
|
-
stauts?: string;
|
|
441
1229
|
msg?: string;
|
|
1230
|
+
stauts?: string;
|
|
442
1231
|
static names(): {
|
|
443
1232
|
[key: string]: string;
|
|
444
1233
|
};
|
|
@@ -449,10 +1238,10 @@ export declare class QueryTimeThreeResponse extends $tea.Model {
|
|
|
449
1238
|
[key: string]: any;
|
|
450
1239
|
});
|
|
451
1240
|
}
|
|
452
|
-
export declare class
|
|
1241
|
+
export declare class OperateTestOneRequest extends $tea.Model {
|
|
453
1242
|
authToken?: string;
|
|
454
1243
|
productInstanceId?: string;
|
|
455
|
-
timeout
|
|
1244
|
+
timeout: string;
|
|
456
1245
|
static names(): {
|
|
457
1246
|
[key: string]: string;
|
|
458
1247
|
};
|
|
@@ -463,12 +1252,12 @@ export declare class QueryTimeFourRequest extends $tea.Model {
|
|
|
463
1252
|
[key: string]: any;
|
|
464
1253
|
});
|
|
465
1254
|
}
|
|
466
|
-
export declare class
|
|
1255
|
+
export declare class OperateTestOneResponse extends $tea.Model {
|
|
467
1256
|
reqMsgId?: string;
|
|
468
1257
|
resultCode?: string;
|
|
469
1258
|
resultMsg?: string;
|
|
470
|
-
stauts?: string;
|
|
471
1259
|
msg?: string;
|
|
1260
|
+
stauts?: string;
|
|
472
1261
|
static names(): {
|
|
473
1262
|
[key: string]: string;
|
|
474
1263
|
};
|
|
@@ -479,10 +1268,10 @@ export declare class QueryTimeFourResponse extends $tea.Model {
|
|
|
479
1268
|
[key: string]: any;
|
|
480
1269
|
});
|
|
481
1270
|
}
|
|
482
|
-
export declare class
|
|
1271
|
+
export declare class TimeTestOneRequest extends $tea.Model {
|
|
483
1272
|
authToken?: string;
|
|
484
1273
|
productInstanceId?: string;
|
|
485
|
-
timeout
|
|
1274
|
+
timeout: string;
|
|
486
1275
|
static names(): {
|
|
487
1276
|
[key: string]: string;
|
|
488
1277
|
};
|
|
@@ -493,12 +1282,12 @@ export declare class QueryTimeFiveRequest extends $tea.Model {
|
|
|
493
1282
|
[key: string]: any;
|
|
494
1283
|
});
|
|
495
1284
|
}
|
|
496
|
-
export declare class
|
|
1285
|
+
export declare class TimeTestOneResponse extends $tea.Model {
|
|
497
1286
|
reqMsgId?: string;
|
|
498
1287
|
resultCode?: string;
|
|
499
1288
|
resultMsg?: string;
|
|
500
|
-
stauts?: string;
|
|
501
1289
|
msg?: string;
|
|
1290
|
+
stauts?: string;
|
|
502
1291
|
static names(): {
|
|
503
1292
|
[key: string]: string;
|
|
504
1293
|
};
|
|
@@ -509,10 +1298,10 @@ export declare class QueryTimeFiveResponse extends $tea.Model {
|
|
|
509
1298
|
[key: string]: any;
|
|
510
1299
|
});
|
|
511
1300
|
}
|
|
512
|
-
export declare class
|
|
1301
|
+
export declare class QueryOneLimitRequest extends $tea.Model {
|
|
513
1302
|
authToken?: string;
|
|
514
1303
|
productInstanceId?: string;
|
|
515
|
-
|
|
1304
|
+
timeout: string;
|
|
516
1305
|
static names(): {
|
|
517
1306
|
[key: string]: string;
|
|
518
1307
|
};
|
|
@@ -523,11 +1312,12 @@ export declare class CreateapiExistingProductsRequest extends $tea.Model {
|
|
|
523
1312
|
[key: string]: any;
|
|
524
1313
|
});
|
|
525
1314
|
}
|
|
526
|
-
export declare class
|
|
1315
|
+
export declare class QueryOneLimitResponse extends $tea.Model {
|
|
527
1316
|
reqMsgId?: string;
|
|
528
1317
|
resultCode?: string;
|
|
529
1318
|
resultMsg?: string;
|
|
530
|
-
|
|
1319
|
+
stauts?: string;
|
|
1320
|
+
msg?: string;
|
|
531
1321
|
static names(): {
|
|
532
1322
|
[key: string]: string;
|
|
533
1323
|
};
|
|
@@ -538,13 +1328,10 @@ export declare class CreateapiExistingProductsResponse extends $tea.Model {
|
|
|
538
1328
|
[key: string]: any;
|
|
539
1329
|
});
|
|
540
1330
|
}
|
|
541
|
-
export declare class
|
|
1331
|
+
export declare class ImportOneLimitRequest extends $tea.Model {
|
|
542
1332
|
authToken?: string;
|
|
543
1333
|
productInstanceId?: string;
|
|
544
|
-
|
|
545
|
-
operator: string;
|
|
546
|
-
count: number;
|
|
547
|
-
originInfo: string;
|
|
1334
|
+
timeout: string;
|
|
548
1335
|
static names(): {
|
|
549
1336
|
[key: string]: string;
|
|
550
1337
|
};
|
|
@@ -555,12 +1342,12 @@ export declare class APreCreateApiRequest extends $tea.Model {
|
|
|
555
1342
|
[key: string]: any;
|
|
556
1343
|
});
|
|
557
1344
|
}
|
|
558
|
-
export declare class
|
|
1345
|
+
export declare class ImportOneLimitResponse extends $tea.Model {
|
|
559
1346
|
reqMsgId?: string;
|
|
560
1347
|
resultCode?: string;
|
|
561
1348
|
resultMsg?: string;
|
|
562
|
-
|
|
563
|
-
|
|
1349
|
+
stauts?: string;
|
|
1350
|
+
msg?: string;
|
|
564
1351
|
static names(): {
|
|
565
1352
|
[key: string]: string;
|
|
566
1353
|
};
|
|
@@ -571,7 +1358,7 @@ export declare class APreCreateApiResponse extends $tea.Model {
|
|
|
571
1358
|
[key: string]: any;
|
|
572
1359
|
});
|
|
573
1360
|
}
|
|
574
|
-
export declare class
|
|
1361
|
+
export declare class StabilizeOneLimitRequest extends $tea.Model {
|
|
575
1362
|
authToken?: string;
|
|
576
1363
|
productInstanceId?: string;
|
|
577
1364
|
timeout: string;
|
|
@@ -585,11 +1372,11 @@ export declare class ApiTestCreateRequest extends $tea.Model {
|
|
|
585
1372
|
[key: string]: any;
|
|
586
1373
|
});
|
|
587
1374
|
}
|
|
588
|
-
export declare class
|
|
1375
|
+
export declare class StabilizeOneLimitResponse extends $tea.Model {
|
|
589
1376
|
reqMsgId?: string;
|
|
590
1377
|
resultCode?: string;
|
|
591
1378
|
resultMsg?: string;
|
|
592
|
-
|
|
1379
|
+
stauts?: string;
|
|
593
1380
|
msg?: string;
|
|
594
1381
|
static names(): {
|
|
595
1382
|
[key: string]: string;
|
|
@@ -601,11 +1388,10 @@ export declare class ApiTestCreateResponse extends $tea.Model {
|
|
|
601
1388
|
[key: string]: any;
|
|
602
1389
|
});
|
|
603
1390
|
}
|
|
604
|
-
export declare class
|
|
1391
|
+
export declare class UnstabilizeOneLimitRequest extends $tea.Model {
|
|
605
1392
|
authToken?: string;
|
|
606
1393
|
productInstanceId?: string;
|
|
607
|
-
|
|
608
|
-
delete: string;
|
|
1394
|
+
timeout: string;
|
|
609
1395
|
static names(): {
|
|
610
1396
|
[key: string]: string;
|
|
611
1397
|
};
|
|
@@ -616,12 +1402,12 @@ export declare class QueryApprovalTestRequest extends $tea.Model {
|
|
|
616
1402
|
[key: string]: any;
|
|
617
1403
|
});
|
|
618
1404
|
}
|
|
619
|
-
export declare class
|
|
1405
|
+
export declare class UnstabilizeOneLimitResponse extends $tea.Model {
|
|
620
1406
|
reqMsgId?: string;
|
|
621
1407
|
resultCode?: string;
|
|
622
1408
|
resultMsg?: string;
|
|
623
1409
|
msg?: string;
|
|
624
|
-
|
|
1410
|
+
stauts?: string;
|
|
625
1411
|
static names(): {
|
|
626
1412
|
[key: string]: string;
|
|
627
1413
|
};
|
|
@@ -632,7 +1418,7 @@ export declare class QueryApprovalTestResponse extends $tea.Model {
|
|
|
632
1418
|
[key: string]: any;
|
|
633
1419
|
});
|
|
634
1420
|
}
|
|
635
|
-
export declare class
|
|
1421
|
+
export declare class ResetOneLimitRequest extends $tea.Model {
|
|
636
1422
|
authToken?: string;
|
|
637
1423
|
productInstanceId?: string;
|
|
638
1424
|
timeout: string;
|
|
@@ -646,12 +1432,12 @@ export declare class QueryOneLimitRequest extends $tea.Model {
|
|
|
646
1432
|
[key: string]: any;
|
|
647
1433
|
});
|
|
648
1434
|
}
|
|
649
|
-
export declare class
|
|
1435
|
+
export declare class ResetOneLimitResponse extends $tea.Model {
|
|
650
1436
|
reqMsgId?: string;
|
|
651
1437
|
resultCode?: string;
|
|
652
1438
|
resultMsg?: string;
|
|
653
|
-
stauts?: string;
|
|
654
1439
|
msg?: string;
|
|
1440
|
+
stauts?: string;
|
|
655
1441
|
static names(): {
|
|
656
1442
|
[key: string]: string;
|
|
657
1443
|
};
|
|
@@ -662,10 +1448,11 @@ export declare class QueryOneLimitResponse extends $tea.Model {
|
|
|
662
1448
|
[key: string]: any;
|
|
663
1449
|
});
|
|
664
1450
|
}
|
|
665
|
-
export declare class
|
|
1451
|
+
export declare class WithdrawOneLimitRequest extends $tea.Model {
|
|
666
1452
|
authToken?: string;
|
|
667
1453
|
productInstanceId?: string;
|
|
668
|
-
timeout
|
|
1454
|
+
timeout?: string;
|
|
1455
|
+
param?: AbcDemoStruct[];
|
|
669
1456
|
static names(): {
|
|
670
1457
|
[key: string]: string;
|
|
671
1458
|
};
|
|
@@ -676,12 +1463,12 @@ export declare class ImportOneLimitRequest extends $tea.Model {
|
|
|
676
1463
|
[key: string]: any;
|
|
677
1464
|
});
|
|
678
1465
|
}
|
|
679
|
-
export declare class
|
|
1466
|
+
export declare class WithdrawOneLimitResponse extends $tea.Model {
|
|
680
1467
|
reqMsgId?: string;
|
|
681
1468
|
resultCode?: string;
|
|
682
1469
|
resultMsg?: string;
|
|
683
|
-
stauts?: string;
|
|
684
1470
|
msg?: string;
|
|
1471
|
+
stauts?: string;
|
|
685
1472
|
static names(): {
|
|
686
1473
|
[key: string]: string;
|
|
687
1474
|
};
|
|
@@ -779,19 +1566,23 @@ export default class Client {
|
|
|
779
1566
|
_maxRequests: number;
|
|
780
1567
|
_maxRequestsPerHost: number;
|
|
781
1568
|
/**
|
|
1569
|
+
* @remarks
|
|
782
1570
|
* Init client with Config
|
|
783
|
-
*
|
|
1571
|
+
*
|
|
1572
|
+
* @param config - config contains the necessary information to create a client
|
|
784
1573
|
*/
|
|
785
1574
|
constructor(config: Config);
|
|
786
1575
|
/**
|
|
1576
|
+
* @remarks
|
|
787
1577
|
* Encapsulate the request and invoke the network
|
|
788
|
-
*
|
|
789
|
-
* @param
|
|
790
|
-
* @param
|
|
791
|
-
* @param
|
|
792
|
-
* @param
|
|
793
|
-
* @param
|
|
794
|
-
* @
|
|
1578
|
+
*
|
|
1579
|
+
* @param action - api name
|
|
1580
|
+
* @param protocol - http or https
|
|
1581
|
+
* @param method - e.g. GET
|
|
1582
|
+
* @param pathname - pathname of every api
|
|
1583
|
+
* @param request - which contains request params
|
|
1584
|
+
* @param runtime - which controls some details of call api, such as retry times
|
|
1585
|
+
* @returns the response
|
|
795
1586
|
*/
|
|
796
1587
|
doRequest(version: string, action: string, protocol: string, method: string, pathname: string, request: {
|
|
797
1588
|
[key: string]: any;
|
|
@@ -801,11 +1592,83 @@ export default class Client {
|
|
|
801
1592
|
[key: string]: any;
|
|
802
1593
|
}>;
|
|
803
1594
|
/**
|
|
1595
|
+
* @remarks
|
|
1596
|
+
* Description: 个人工作台二期预发测试
|
|
1597
|
+
* Summary: 个人工作台二期预发测试
|
|
1598
|
+
*/
|
|
1599
|
+
queryAlltestOne(request: QueryAlltestOneRequest): Promise<QueryAlltestOneResponse>;
|
|
1600
|
+
/**
|
|
1601
|
+
* @remarks
|
|
1602
|
+
* Description: 个人工作台二期预发测试
|
|
1603
|
+
* Summary: 个人工作台二期预发测试
|
|
1604
|
+
*/
|
|
1605
|
+
queryAlltestOneEx(request: QueryAlltestOneRequest, headers: {
|
|
1606
|
+
[key: string]: string;
|
|
1607
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryAlltestOneResponse>;
|
|
1608
|
+
/**
|
|
1609
|
+
* @remarks
|
|
1610
|
+
* Description: 个人工作台二期预发测试
|
|
1611
|
+
* Summary: 个人工作台二期预发测试
|
|
1612
|
+
*/
|
|
1613
|
+
importAlltestOne(request: ImportAlltestOneRequest): Promise<ImportAlltestOneResponse>;
|
|
1614
|
+
/**
|
|
1615
|
+
* @remarks
|
|
1616
|
+
* Description: 个人工作台二期预发测试
|
|
1617
|
+
* Summary: 个人工作台二期预发测试
|
|
1618
|
+
*/
|
|
1619
|
+
importAlltestOneEx(request: ImportAlltestOneRequest, headers: {
|
|
1620
|
+
[key: string]: string;
|
|
1621
|
+
}, runtime: $Util.RuntimeOptions): Promise<ImportAlltestOneResponse>;
|
|
1622
|
+
/**
|
|
1623
|
+
* @remarks
|
|
1624
|
+
* Description: 个人工作台二期预发测试
|
|
1625
|
+
* Summary: 个人工作台二期预发测试
|
|
1626
|
+
*/
|
|
1627
|
+
stabilizeAlltestOne(request: StabilizeAlltestOneRequest): Promise<StabilizeAlltestOneResponse>;
|
|
1628
|
+
/**
|
|
1629
|
+
* @remarks
|
|
1630
|
+
* Description: 个人工作台二期预发测试
|
|
1631
|
+
* Summary: 个人工作台二期预发测试
|
|
1632
|
+
*/
|
|
1633
|
+
stabilizeAlltestOneEx(request: StabilizeAlltestOneRequest, headers: {
|
|
1634
|
+
[key: string]: string;
|
|
1635
|
+
}, runtime: $Util.RuntimeOptions): Promise<StabilizeAlltestOneResponse>;
|
|
1636
|
+
/**
|
|
1637
|
+
* @remarks
|
|
1638
|
+
* Description: 个人工作台二期预发测试
|
|
1639
|
+
* Summary: 个人工作台二期预发测试
|
|
1640
|
+
*/
|
|
1641
|
+
unstabilizeAlltestOne(request: UnstabilizeAlltestOneRequest): Promise<UnstabilizeAlltestOneResponse>;
|
|
1642
|
+
/**
|
|
1643
|
+
* @remarks
|
|
1644
|
+
* Description: 个人工作台二期预发测试
|
|
1645
|
+
* Summary: 个人工作台二期预发测试
|
|
1646
|
+
*/
|
|
1647
|
+
unstabilizeAlltestOneEx(request: UnstabilizeAlltestOneRequest, headers: {
|
|
1648
|
+
[key: string]: string;
|
|
1649
|
+
}, runtime: $Util.RuntimeOptions): Promise<UnstabilizeAlltestOneResponse>;
|
|
1650
|
+
/**
|
|
1651
|
+
* @remarks
|
|
1652
|
+
* Description: 个人工作台测试AAA
|
|
1653
|
+
* Summary: 个人工作台测试AAA
|
|
1654
|
+
*/
|
|
1655
|
+
queryAlltestTwo(request: QueryAlltestTwoRequest): Promise<QueryAlltestTwoResponse>;
|
|
1656
|
+
/**
|
|
1657
|
+
* @remarks
|
|
1658
|
+
* Description: 个人工作台测试AAA
|
|
1659
|
+
* Summary: 个人工作台测试AAA
|
|
1660
|
+
*/
|
|
1661
|
+
queryAlltestTwoEx(request: QueryAlltestTwoRequest, headers: {
|
|
1662
|
+
[key: string]: string;
|
|
1663
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryAlltestTwoResponse>;
|
|
1664
|
+
/**
|
|
1665
|
+
* @remarks
|
|
804
1666
|
* Description: 录入演示111
|
|
805
1667
|
* Summary: 录入演示API
|
|
806
1668
|
*/
|
|
807
1669
|
previewDemo(request: PreviewDemoRequest): Promise<PreviewDemoResponse>;
|
|
808
1670
|
/**
|
|
1671
|
+
* @remarks
|
|
809
1672
|
* Description: 录入演示111
|
|
810
1673
|
* Summary: 录入演示API
|
|
811
1674
|
*/
|
|
@@ -813,11 +1676,13 @@ export default class Client {
|
|
|
813
1676
|
[key: string]: string;
|
|
814
1677
|
}, runtime: $Util.RuntimeOptions): Promise<PreviewDemoResponse>;
|
|
815
1678
|
/**
|
|
1679
|
+
* @remarks
|
|
816
1680
|
* Description: 测试导入api1
|
|
817
1681
|
* Summary: 测试导入api1
|
|
818
1682
|
*/
|
|
819
1683
|
queryGateway(request: QueryGatewayRequest): Promise<QueryGatewayResponse>;
|
|
820
1684
|
/**
|
|
1685
|
+
* @remarks
|
|
821
1686
|
* Description: 测试导入api1
|
|
822
1687
|
* Summary: 测试导入api1
|
|
823
1688
|
*/
|
|
@@ -825,11 +1690,13 @@ export default class Client {
|
|
|
825
1690
|
[key: string]: string;
|
|
826
1691
|
}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayResponse>;
|
|
827
1692
|
/**
|
|
1693
|
+
* @remarks
|
|
828
1694
|
* Description: 调试a s dddd
|
|
829
1695
|
* Summary: 调试1
|
|
830
1696
|
*/
|
|
831
1697
|
queryAbcdaAbcddaa(request: QueryAbcdaAbcddaaRequest): Promise<QueryAbcdaAbcddaaResponse>;
|
|
832
1698
|
/**
|
|
1699
|
+
* @remarks
|
|
833
1700
|
* Description: 调试a s dddd
|
|
834
1701
|
* Summary: 调试1
|
|
835
1702
|
*/
|
|
@@ -837,11 +1704,13 @@ export default class Client {
|
|
|
837
1704
|
[key: string]: string;
|
|
838
1705
|
}, runtime: $Util.RuntimeOptions): Promise<QueryAbcdaAbcddaaResponse>;
|
|
839
1706
|
/**
|
|
1707
|
+
* @remarks
|
|
840
1708
|
* Description: 测试大安全接口
|
|
841
1709
|
* Summary: 测试大安全接口
|
|
842
1710
|
*/
|
|
843
1711
|
matchSecurityFace(request: MatchSecurityFaceRequest): Promise<MatchSecurityFaceResponse>;
|
|
844
1712
|
/**
|
|
1713
|
+
* @remarks
|
|
845
1714
|
* Description: 测试大安全接口
|
|
846
1715
|
* Summary: 测试大安全接口
|
|
847
1716
|
*/
|
|
@@ -849,11 +1718,13 @@ export default class Client {
|
|
|
849
1718
|
[key: string]: string;
|
|
850
1719
|
}, runtime: $Util.RuntimeOptions): Promise<MatchSecurityFaceResponse>;
|
|
851
1720
|
/**
|
|
1721
|
+
* @remarks
|
|
852
1722
|
* Description: 文件上传测试接口
|
|
853
1723
|
* Summary: 文件上传测试接口
|
|
854
1724
|
*/
|
|
855
1725
|
uploadTestFile(request: UploadTestFileRequest): Promise<UploadTestFileResponse>;
|
|
856
1726
|
/**
|
|
1727
|
+
* @remarks
|
|
857
1728
|
* Description: 文件上传测试接口
|
|
858
1729
|
* Summary: 文件上传测试接口
|
|
859
1730
|
*/
|
|
@@ -861,11 +1732,13 @@ export default class Client {
|
|
|
861
1732
|
[key: string]: string;
|
|
862
1733
|
}, runtime: $Util.RuntimeOptions): Promise<UploadTestFileResponse>;
|
|
863
1734
|
/**
|
|
1735
|
+
* @remarks
|
|
864
1736
|
* Description: 压测接口1
|
|
865
1737
|
* Summary: 压测接口1
|
|
866
1738
|
*/
|
|
867
1739
|
queryTimeOne(request: QueryTimeOneRequest): Promise<QueryTimeOneResponse>;
|
|
868
1740
|
/**
|
|
1741
|
+
* @remarks
|
|
869
1742
|
* Description: 压测接口1
|
|
870
1743
|
* Summary: 压测接口1
|
|
871
1744
|
*/
|
|
@@ -873,11 +1746,13 @@ export default class Client {
|
|
|
873
1746
|
[key: string]: string;
|
|
874
1747
|
}, runtime: $Util.RuntimeOptions): Promise<QueryTimeOneResponse>;
|
|
875
1748
|
/**
|
|
1749
|
+
* @remarks
|
|
876
1750
|
* Description: 压测接口2
|
|
877
1751
|
* Summary: 压测接口2
|
|
878
1752
|
*/
|
|
879
1753
|
queryTimeTwo(request: QueryTimeTwoRequest): Promise<QueryTimeTwoResponse>;
|
|
880
1754
|
/**
|
|
1755
|
+
* @remarks
|
|
881
1756
|
* Description: 压测接口2
|
|
882
1757
|
* Summary: 压测接口2
|
|
883
1758
|
*/
|
|
@@ -885,11 +1760,13 @@ export default class Client {
|
|
|
885
1760
|
[key: string]: string;
|
|
886
1761
|
}, runtime: $Util.RuntimeOptions): Promise<QueryTimeTwoResponse>;
|
|
887
1762
|
/**
|
|
1763
|
+
* @remarks
|
|
888
1764
|
* Description: 压测接口3
|
|
889
1765
|
* Summary: 压测接口3
|
|
890
1766
|
*/
|
|
891
1767
|
queryTimeThree(request: QueryTimeThreeRequest): Promise<QueryTimeThreeResponse>;
|
|
892
1768
|
/**
|
|
1769
|
+
* @remarks
|
|
893
1770
|
* Description: 压测接口3
|
|
894
1771
|
* Summary: 压测接口3
|
|
895
1772
|
*/
|
|
@@ -897,11 +1774,13 @@ export default class Client {
|
|
|
897
1774
|
[key: string]: string;
|
|
898
1775
|
}, runtime: $Util.RuntimeOptions): Promise<QueryTimeThreeResponse>;
|
|
899
1776
|
/**
|
|
1777
|
+
* @remarks
|
|
900
1778
|
* Description: 压测接口4
|
|
901
1779
|
* Summary: 压测接口4
|
|
902
1780
|
*/
|
|
903
1781
|
queryTimeFour(request: QueryTimeFourRequest): Promise<QueryTimeFourResponse>;
|
|
904
1782
|
/**
|
|
1783
|
+
* @remarks
|
|
905
1784
|
* Description: 压测接口4
|
|
906
1785
|
* Summary: 压测接口4
|
|
907
1786
|
*/
|
|
@@ -909,11 +1788,13 @@ export default class Client {
|
|
|
909
1788
|
[key: string]: string;
|
|
910
1789
|
}, runtime: $Util.RuntimeOptions): Promise<QueryTimeFourResponse>;
|
|
911
1790
|
/**
|
|
1791
|
+
* @remarks
|
|
912
1792
|
* Description: 压测接口5
|
|
913
1793
|
* Summary: 压测接口5
|
|
914
1794
|
*/
|
|
915
1795
|
queryTimeFive(request: QueryTimeFiveRequest): Promise<QueryTimeFiveResponse>;
|
|
916
1796
|
/**
|
|
1797
|
+
* @remarks
|
|
917
1798
|
* Description: 压测接口5
|
|
918
1799
|
* Summary: 压测接口5
|
|
919
1800
|
*/
|
|
@@ -921,11 +1802,27 @@ export default class Client {
|
|
|
921
1802
|
[key: string]: string;
|
|
922
1803
|
}, runtime: $Util.RuntimeOptions): Promise<QueryTimeFiveResponse>;
|
|
923
1804
|
/**
|
|
1805
|
+
* @remarks
|
|
1806
|
+
* Description: aaa
|
|
1807
|
+
* Summary: aaa
|
|
1808
|
+
*/
|
|
1809
|
+
cccAaaBbb(request: CccAaaBbbRequest): Promise<CccAaaBbbResponse>;
|
|
1810
|
+
/**
|
|
1811
|
+
* @remarks
|
|
1812
|
+
* Description: aaa
|
|
1813
|
+
* Summary: aaa
|
|
1814
|
+
*/
|
|
1815
|
+
cccAaaBbbEx(request: CccAaaBbbRequest, headers: {
|
|
1816
|
+
[key: string]: string;
|
|
1817
|
+
}, runtime: $Util.RuntimeOptions): Promise<CccAaaBbbResponse>;
|
|
1818
|
+
/**
|
|
1819
|
+
* @remarks
|
|
924
1820
|
* Description: 已有产品创建api
|
|
925
1821
|
* Summary: 已有产品创建api
|
|
926
1822
|
*/
|
|
927
1823
|
createapiExistingProducts(request: CreateapiExistingProductsRequest): Promise<CreateapiExistingProductsResponse>;
|
|
928
1824
|
/**
|
|
1825
|
+
* @remarks
|
|
929
1826
|
* Description: 已有产品创建api
|
|
930
1827
|
* Summary: 已有产品创建api
|
|
931
1828
|
*/
|
|
@@ -933,11 +1830,13 @@ export default class Client {
|
|
|
933
1830
|
[key: string]: string;
|
|
934
1831
|
}, runtime: $Util.RuntimeOptions): Promise<CreateapiExistingProductsResponse>;
|
|
935
1832
|
/**
|
|
1833
|
+
* @remarks
|
|
936
1834
|
* Description: 已有产品下创建的api
|
|
937
1835
|
* Summary: 已有产品下创建的api
|
|
938
1836
|
*/
|
|
939
1837
|
aPreCreateApi(request: APreCreateApiRequest): Promise<APreCreateApiResponse>;
|
|
940
1838
|
/**
|
|
1839
|
+
* @remarks
|
|
941
1840
|
* Description: 已有产品下创建的api
|
|
942
1841
|
* Summary: 已有产品下创建的api
|
|
943
1842
|
*/
|
|
@@ -945,11 +1844,13 @@ export default class Client {
|
|
|
945
1844
|
[key: string]: string;
|
|
946
1845
|
}, runtime: $Util.RuntimeOptions): Promise<APreCreateApiResponse>;
|
|
947
1846
|
/**
|
|
1847
|
+
* @remarks
|
|
948
1848
|
* Description: 测试使用api
|
|
949
1849
|
* Summary: 测试使用api
|
|
950
1850
|
*/
|
|
951
1851
|
apiTestCreate(request: ApiTestCreateRequest): Promise<ApiTestCreateResponse>;
|
|
952
1852
|
/**
|
|
1853
|
+
* @remarks
|
|
953
1854
|
* Description: 测试使用api
|
|
954
1855
|
* Summary: 测试使用api
|
|
955
1856
|
*/
|
|
@@ -957,11 +1858,13 @@ export default class Client {
|
|
|
957
1858
|
[key: string]: string;
|
|
958
1859
|
}, runtime: $Util.RuntimeOptions): Promise<ApiTestCreateResponse>;
|
|
959
1860
|
/**
|
|
1861
|
+
* @remarks
|
|
960
1862
|
* Description: 用于测试api评审接入SDL/修改后的评审/0323
|
|
961
1863
|
* Summary: 用于测试api评审接入SDL/修改后的评审/0323
|
|
962
1864
|
*/
|
|
963
1865
|
queryApprovalTest(request: QueryApprovalTestRequest): Promise<QueryApprovalTestResponse>;
|
|
964
1866
|
/**
|
|
1867
|
+
* @remarks
|
|
965
1868
|
* Description: 用于测试api评审接入SDL/修改后的评审/0323
|
|
966
1869
|
* Summary: 用于测试api评审接入SDL/修改后的评审/0323
|
|
967
1870
|
*/
|
|
@@ -969,23 +1872,139 @@ export default class Client {
|
|
|
969
1872
|
[key: string]: string;
|
|
970
1873
|
}, runtime: $Util.RuntimeOptions): Promise<QueryApprovalTestResponse>;
|
|
971
1874
|
/**
|
|
1875
|
+
* @remarks
|
|
1876
|
+
* Description: 1
|
|
1877
|
+
* Summary: 1
|
|
1878
|
+
*/
|
|
1879
|
+
azxdAzsx(request: AzxdAzsxRequest): Promise<AzxdAzsxResponse>;
|
|
1880
|
+
/**
|
|
1881
|
+
* @remarks
|
|
1882
|
+
* Description: 1
|
|
1883
|
+
* Summary: 1
|
|
1884
|
+
*/
|
|
1885
|
+
azxdAzsxEx(request: AzxdAzsxRequest, headers: {
|
|
1886
|
+
[key: string]: string;
|
|
1887
|
+
}, runtime: $Util.RuntimeOptions): Promise<AzxdAzsxResponse>;
|
|
1888
|
+
/**
|
|
1889
|
+
* @remarks
|
|
1890
|
+
* Description: 钟忆个人工作台预发测试1
|
|
1891
|
+
* Summary: 钟忆个人工作台预发测试1
|
|
1892
|
+
*/
|
|
1893
|
+
queryTestOne(request: QueryTestOneRequest): Promise<QueryTestOneResponse>;
|
|
1894
|
+
/**
|
|
1895
|
+
* @remarks
|
|
1896
|
+
* Description: 钟忆个人工作台预发测试1
|
|
1897
|
+
* Summary: 钟忆个人工作台预发测试1
|
|
1898
|
+
*/
|
|
1899
|
+
queryTestOneEx(request: QueryTestOneRequest, headers: {
|
|
1900
|
+
[key: string]: string;
|
|
1901
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryTestOneResponse>;
|
|
1902
|
+
/**
|
|
1903
|
+
* @remarks
|
|
972
1904
|
* Description: 个人工作台二期预发测试
|
|
973
1905
|
* Summary: 个人工作台二期预发测试
|
|
974
1906
|
*/
|
|
975
|
-
|
|
1907
|
+
importTestOne(request: ImportTestOneRequest): Promise<ImportTestOneResponse>;
|
|
1908
|
+
/**
|
|
1909
|
+
* @remarks
|
|
1910
|
+
* Description: 个人工作台二期预发测试
|
|
1911
|
+
* Summary: 个人工作台二期预发测试
|
|
1912
|
+
*/
|
|
1913
|
+
importTestOneEx(request: ImportTestOneRequest, headers: {
|
|
1914
|
+
[key: string]: string;
|
|
1915
|
+
}, runtime: $Util.RuntimeOptions): Promise<ImportTestOneResponse>;
|
|
1916
|
+
/**
|
|
1917
|
+
* @remarks
|
|
1918
|
+
* Description: 个人工作台二期预发测试
|
|
1919
|
+
* Summary: 个人工作台二期预发测试
|
|
1920
|
+
*/
|
|
1921
|
+
stabilizeTestOne(request: StabilizeTestOneRequest): Promise<StabilizeTestOneResponse>;
|
|
1922
|
+
/**
|
|
1923
|
+
* @remarks
|
|
1924
|
+
* Description: 个人工作台二期预发测试
|
|
1925
|
+
* Summary: 个人工作台二期预发测试
|
|
1926
|
+
*/
|
|
1927
|
+
stabilizeTestOneEx(request: StabilizeTestOneRequest, headers: {
|
|
1928
|
+
[key: string]: string;
|
|
1929
|
+
}, runtime: $Util.RuntimeOptions): Promise<StabilizeTestOneResponse>;
|
|
1930
|
+
/**
|
|
1931
|
+
* @remarks
|
|
1932
|
+
* Description: 个人工作台二期预发测试
|
|
1933
|
+
* Summary: 个人工作台二期预发测试
|
|
1934
|
+
*/
|
|
1935
|
+
captureTestOne(request: CaptureTestOneRequest): Promise<CaptureTestOneResponse>;
|
|
1936
|
+
/**
|
|
1937
|
+
* @remarks
|
|
1938
|
+
* Description: 个人工作台二期预发测试
|
|
1939
|
+
* Summary: 个人工作台二期预发测试
|
|
1940
|
+
*/
|
|
1941
|
+
captureTestOneEx(request: CaptureTestOneRequest, headers: {
|
|
1942
|
+
[key: string]: string;
|
|
1943
|
+
}, runtime: $Util.RuntimeOptions): Promise<CaptureTestOneResponse>;
|
|
1944
|
+
/**
|
|
1945
|
+
* @remarks
|
|
1946
|
+
* Description: 个人工作台二期预发测试
|
|
1947
|
+
* Summary: 个人工作台二期预发测试
|
|
1948
|
+
*/
|
|
1949
|
+
matchTestOne(request: MatchTestOneRequest): Promise<MatchTestOneResponse>;
|
|
1950
|
+
/**
|
|
1951
|
+
* @remarks
|
|
1952
|
+
* Description: 个人工作台二期预发测试
|
|
1953
|
+
* Summary: 个人工作台二期预发测试
|
|
1954
|
+
*/
|
|
1955
|
+
matchTestOneEx(request: MatchTestOneRequest, headers: {
|
|
1956
|
+
[key: string]: string;
|
|
1957
|
+
}, runtime: $Util.RuntimeOptions): Promise<MatchTestOneResponse>;
|
|
1958
|
+
/**
|
|
1959
|
+
* @remarks
|
|
1960
|
+
* Description: 个人工作台二期预发测试
|
|
1961
|
+
* Summary: 个人工作台二期预发测试
|
|
1962
|
+
*/
|
|
1963
|
+
operateTestOne(request: OperateTestOneRequest): Promise<OperateTestOneResponse>;
|
|
976
1964
|
/**
|
|
1965
|
+
* @remarks
|
|
977
1966
|
* Description: 个人工作台二期预发测试
|
|
978
1967
|
* Summary: 个人工作台二期预发测试
|
|
979
1968
|
*/
|
|
1969
|
+
operateTestOneEx(request: OperateTestOneRequest, headers: {
|
|
1970
|
+
[key: string]: string;
|
|
1971
|
+
}, runtime: $Util.RuntimeOptions): Promise<OperateTestOneResponse>;
|
|
1972
|
+
/**
|
|
1973
|
+
* @remarks
|
|
1974
|
+
* Description: 个人工作台新增接口测试
|
|
1975
|
+
* Summary: 个人工作台新增接口测试
|
|
1976
|
+
*/
|
|
1977
|
+
timeTestOne(request: TimeTestOneRequest): Promise<TimeTestOneResponse>;
|
|
1978
|
+
/**
|
|
1979
|
+
* @remarks
|
|
1980
|
+
* Description: 个人工作台新增接口测试
|
|
1981
|
+
* Summary: 个人工作台新增接口测试
|
|
1982
|
+
*/
|
|
1983
|
+
timeTestOneEx(request: TimeTestOneRequest, headers: {
|
|
1984
|
+
[key: string]: string;
|
|
1985
|
+
}, runtime: $Util.RuntimeOptions): Promise<TimeTestOneResponse>;
|
|
1986
|
+
/**
|
|
1987
|
+
* @remarks
|
|
1988
|
+
* Description: 哈哈哈哈哈哈哈哈个人工作台二期预发测试qqq
|
|
1989
|
+
* Summary: 哈哈哈哈哈哈哈哈个人工作台二期预发测试qqq
|
|
1990
|
+
*/
|
|
1991
|
+
queryOneLimit(request: QueryOneLimitRequest): Promise<QueryOneLimitResponse>;
|
|
1992
|
+
/**
|
|
1993
|
+
* @remarks
|
|
1994
|
+
* Description: 哈哈哈哈哈哈哈哈个人工作台二期预发测试qqq
|
|
1995
|
+
* Summary: 哈哈哈哈哈哈哈哈个人工作台二期预发测试qqq
|
|
1996
|
+
*/
|
|
980
1997
|
queryOneLimitEx(request: QueryOneLimitRequest, headers: {
|
|
981
1998
|
[key: string]: string;
|
|
982
1999
|
}, runtime: $Util.RuntimeOptions): Promise<QueryOneLimitResponse>;
|
|
983
2000
|
/**
|
|
2001
|
+
* @remarks
|
|
984
2002
|
* Description: 个人工作台二期预发测试
|
|
985
2003
|
* Summary: 个人工作台二期预发测试
|
|
986
2004
|
*/
|
|
987
2005
|
importOneLimit(request: ImportOneLimitRequest): Promise<ImportOneLimitResponse>;
|
|
988
2006
|
/**
|
|
2007
|
+
* @remarks
|
|
989
2008
|
* Description: 个人工作台二期预发测试
|
|
990
2009
|
* Summary: 个人工作台二期预发测试
|
|
991
2010
|
*/
|
|
@@ -993,11 +2012,69 @@ export default class Client {
|
|
|
993
2012
|
[key: string]: string;
|
|
994
2013
|
}, runtime: $Util.RuntimeOptions): Promise<ImportOneLimitResponse>;
|
|
995
2014
|
/**
|
|
2015
|
+
* @remarks
|
|
2016
|
+
* Description: 个人工作台二期预发测试
|
|
2017
|
+
* Summary: 个人工作台二期预发测试
|
|
2018
|
+
*/
|
|
2019
|
+
stabilizeOneLimit(request: StabilizeOneLimitRequest): Promise<StabilizeOneLimitResponse>;
|
|
2020
|
+
/**
|
|
2021
|
+
* @remarks
|
|
2022
|
+
* Description: 个人工作台二期预发测试
|
|
2023
|
+
* Summary: 个人工作台二期预发测试
|
|
2024
|
+
*/
|
|
2025
|
+
stabilizeOneLimitEx(request: StabilizeOneLimitRequest, headers: {
|
|
2026
|
+
[key: string]: string;
|
|
2027
|
+
}, runtime: $Util.RuntimeOptions): Promise<StabilizeOneLimitResponse>;
|
|
2028
|
+
/**
|
|
2029
|
+
* @remarks
|
|
2030
|
+
* Description: 个人工作台二期测试接口
|
|
2031
|
+
* Summary: 个人工作台二期测试接口
|
|
2032
|
+
*/
|
|
2033
|
+
unstabilizeOneLimit(request: UnstabilizeOneLimitRequest): Promise<UnstabilizeOneLimitResponse>;
|
|
2034
|
+
/**
|
|
2035
|
+
* @remarks
|
|
2036
|
+
* Description: 个人工作台二期测试接口
|
|
2037
|
+
* Summary: 个人工作台二期测试接口
|
|
2038
|
+
*/
|
|
2039
|
+
unstabilizeOneLimitEx(request: UnstabilizeOneLimitRequest, headers: {
|
|
2040
|
+
[key: string]: string;
|
|
2041
|
+
}, runtime: $Util.RuntimeOptions): Promise<UnstabilizeOneLimitResponse>;
|
|
2042
|
+
/**
|
|
2043
|
+
* @remarks
|
|
2044
|
+
* Description: 个人工作台二期预发测试
|
|
2045
|
+
* Summary: 个人工作台二期预发测试
|
|
2046
|
+
*/
|
|
2047
|
+
resetOneLimit(request: ResetOneLimitRequest): Promise<ResetOneLimitResponse>;
|
|
2048
|
+
/**
|
|
2049
|
+
* @remarks
|
|
2050
|
+
* Description: 个人工作台二期预发测试
|
|
2051
|
+
* Summary: 个人工作台二期预发测试
|
|
2052
|
+
*/
|
|
2053
|
+
resetOneLimitEx(request: ResetOneLimitRequest, headers: {
|
|
2054
|
+
[key: string]: string;
|
|
2055
|
+
}, runtime: $Util.RuntimeOptions): Promise<ResetOneLimitResponse>;
|
|
2056
|
+
/**
|
|
2057
|
+
* @remarks
|
|
2058
|
+
* Description: 个人工作台二期预发测试
|
|
2059
|
+
* Summary: 个人工作台二期预发测试
|
|
2060
|
+
*/
|
|
2061
|
+
withdrawOneLimit(request: WithdrawOneLimitRequest): Promise<WithdrawOneLimitResponse>;
|
|
2062
|
+
/**
|
|
2063
|
+
* @remarks
|
|
2064
|
+
* Description: 个人工作台二期预发测试
|
|
2065
|
+
* Summary: 个人工作台二期预发测试
|
|
2066
|
+
*/
|
|
2067
|
+
withdrawOneLimitEx(request: WithdrawOneLimitRequest, headers: {
|
|
2068
|
+
[key: string]: string;
|
|
2069
|
+
}, runtime: $Util.RuntimeOptions): Promise<WithdrawOneLimitResponse>;
|
|
2070
|
+
/**
|
|
2071
|
+
* @remarks
|
|
996
2072
|
* Description: 用于共享能力中心六期接入rasp回归验证
|
|
997
2073
|
* Summary: 用于共享能力中心六期接入rasp回归验证
|
|
998
2074
|
*/
|
|
999
2075
|
queryGongxiangTesttest(request: QueryGongxiangTesttestRequest): Promise<QueryGongxiangTesttestResponse>;
|
|
1000
2076
|
/**
|
|
2077
|
+
* @remarks
|
|
1001
2078
|
* Description: 用于共享能力中心六期接入rasp回归验证
|
|
1002
2079
|
* Summary: 用于共享能力中心六期接入rasp回归验证
|
|
1003
2080
|
*/
|
|
@@ -1005,11 +2082,13 @@ export default class Client {
|
|
|
1005
2082
|
[key: string]: string;
|
|
1006
2083
|
}, runtime: $Util.RuntimeOptions): Promise<QueryGongxiangTesttestResponse>;
|
|
1007
2084
|
/**
|
|
2085
|
+
* @remarks
|
|
1008
2086
|
* Description: 创建HTTP PUT提交的文件上传
|
|
1009
2087
|
* Summary: 文件上传创建
|
|
1010
2088
|
*/
|
|
1011
2089
|
createAntcloudGatewayxFileUpload(request: CreateAntcloudGatewayxFileUploadRequest): Promise<CreateAntcloudGatewayxFileUploadResponse>;
|
|
1012
2090
|
/**
|
|
2091
|
+
* @remarks
|
|
1013
2092
|
* Description: 创建HTTP PUT提交的文件上传
|
|
1014
2093
|
* Summary: 文件上传创建
|
|
1015
2094
|
*/
|