@antchain/abc 1.0.15 → 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 +1081 -86
- package/dist/client.js +1113 -51
- package/dist/client.js.map +1 -1
- package/package.json +30 -29
- package/src/client.ts +1878 -246
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,351 @@ 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 {
|
|
222
956
|
reqMsgId?: string;
|
|
223
957
|
resultCode?: string;
|
|
224
958
|
resultMsg?: string;
|
|
225
|
-
|
|
226
|
-
outputNumber?: number;
|
|
227
|
-
outputBoolean?: boolean;
|
|
228
|
-
outputDate?: string;
|
|
229
|
-
outputStringList?: string[];
|
|
230
|
-
outputStruct?: AbcDemoStruct;
|
|
231
|
-
outputStructList?: AbcDemoStruct[];
|
|
959
|
+
execNumEcho?: number;
|
|
232
960
|
static names(): {
|
|
233
961
|
[key: string]: string;
|
|
234
962
|
};
|
|
@@ -239,11 +967,13 @@ export declare class PreviewDemoResponse extends $tea.Model {
|
|
|
239
967
|
[key: string]: any;
|
|
240
968
|
});
|
|
241
969
|
}
|
|
242
|
-
export declare class
|
|
970
|
+
export declare class APreCreateApiRequest extends $tea.Model {
|
|
243
971
|
authToken?: string;
|
|
244
972
|
productInstanceId?: string;
|
|
245
|
-
|
|
246
|
-
|
|
973
|
+
time: string;
|
|
974
|
+
operator: string;
|
|
975
|
+
count: number;
|
|
976
|
+
originInfo: string;
|
|
247
977
|
static names(): {
|
|
248
978
|
[key: string]: string;
|
|
249
979
|
};
|
|
@@ -254,11 +984,12 @@ export declare class QueryGatewayRequest extends $tea.Model {
|
|
|
254
984
|
[key: string]: any;
|
|
255
985
|
});
|
|
256
986
|
}
|
|
257
|
-
export declare class
|
|
987
|
+
export declare class APreCreateApiResponse extends $tea.Model {
|
|
258
988
|
reqMsgId?: string;
|
|
259
989
|
resultCode?: string;
|
|
260
990
|
resultMsg?: string;
|
|
261
|
-
|
|
991
|
+
updInfo?: string;
|
|
992
|
+
updPark?: InitParks;
|
|
262
993
|
static names(): {
|
|
263
994
|
[key: string]: string;
|
|
264
995
|
};
|
|
@@ -269,9 +1000,10 @@ export declare class QueryGatewayResponse extends $tea.Model {
|
|
|
269
1000
|
[key: string]: any;
|
|
270
1001
|
});
|
|
271
1002
|
}
|
|
272
|
-
export declare class
|
|
1003
|
+
export declare class ApiTestCreateRequest extends $tea.Model {
|
|
273
1004
|
authToken?: string;
|
|
274
1005
|
productInstanceId?: string;
|
|
1006
|
+
timeout: string;
|
|
275
1007
|
static names(): {
|
|
276
1008
|
[key: string]: string;
|
|
277
1009
|
};
|
|
@@ -282,10 +1014,12 @@ export declare class QueryAbcdaAbcddaaRequest extends $tea.Model {
|
|
|
282
1014
|
[key: string]: any;
|
|
283
1015
|
});
|
|
284
1016
|
}
|
|
285
|
-
export declare class
|
|
1017
|
+
export declare class ApiTestCreateResponse extends $tea.Model {
|
|
286
1018
|
reqMsgId?: string;
|
|
287
1019
|
resultCode?: string;
|
|
288
1020
|
resultMsg?: string;
|
|
1021
|
+
status?: string;
|
|
1022
|
+
msg?: string;
|
|
289
1023
|
static names(): {
|
|
290
1024
|
[key: string]: string;
|
|
291
1025
|
};
|
|
@@ -296,12 +1030,11 @@ export declare class QueryAbcdaAbcddaaResponse extends $tea.Model {
|
|
|
296
1030
|
[key: string]: any;
|
|
297
1031
|
});
|
|
298
1032
|
}
|
|
299
|
-
export declare class
|
|
1033
|
+
export declare class QueryApprovalTestRequest extends $tea.Model {
|
|
300
1034
|
authToken?: string;
|
|
301
1035
|
productInstanceId?: string;
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
face2?: FaceImage;
|
|
1036
|
+
input: string;
|
|
1037
|
+
delete: string;
|
|
305
1038
|
static names(): {
|
|
306
1039
|
[key: string]: string;
|
|
307
1040
|
};
|
|
@@ -312,13 +1045,12 @@ export declare class MatchSecurityFaceRequest extends $tea.Model {
|
|
|
312
1045
|
[key: string]: any;
|
|
313
1046
|
});
|
|
314
1047
|
}
|
|
315
|
-
export declare class
|
|
1048
|
+
export declare class QueryApprovalTestResponse extends $tea.Model {
|
|
316
1049
|
reqMsgId?: string;
|
|
317
1050
|
resultCode?: string;
|
|
318
1051
|
resultMsg?: string;
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
score?: string;
|
|
1052
|
+
msg?: string;
|
|
1053
|
+
code?: number;
|
|
322
1054
|
static names(): {
|
|
323
1055
|
[key: string]: string;
|
|
324
1056
|
};
|
|
@@ -329,12 +1061,9 @@ export declare class MatchSecurityFaceResponse extends $tea.Model {
|
|
|
329
1061
|
[key: string]: any;
|
|
330
1062
|
});
|
|
331
1063
|
}
|
|
332
|
-
export declare class
|
|
1064
|
+
export declare class AzxdAzsxRequest extends $tea.Model {
|
|
333
1065
|
authToken?: string;
|
|
334
1066
|
productInstanceId?: string;
|
|
335
|
-
fileObject?: Readable;
|
|
336
|
-
fileObjectName?: string;
|
|
337
|
-
fileId: string;
|
|
338
1067
|
static names(): {
|
|
339
1068
|
[key: string]: string;
|
|
340
1069
|
};
|
|
@@ -345,7 +1074,7 @@ export declare class UploadTestFileRequest extends $tea.Model {
|
|
|
345
1074
|
[key: string]: any;
|
|
346
1075
|
});
|
|
347
1076
|
}
|
|
348
|
-
export declare class
|
|
1077
|
+
export declare class AzxdAzsxResponse extends $tea.Model {
|
|
349
1078
|
reqMsgId?: string;
|
|
350
1079
|
resultCode?: string;
|
|
351
1080
|
resultMsg?: string;
|
|
@@ -359,10 +1088,10 @@ export declare class UploadTestFileResponse extends $tea.Model {
|
|
|
359
1088
|
[key: string]: any;
|
|
360
1089
|
});
|
|
361
1090
|
}
|
|
362
|
-
export declare class
|
|
1091
|
+
export declare class QueryTestOneRequest extends $tea.Model {
|
|
363
1092
|
authToken?: string;
|
|
364
1093
|
productInstanceId?: string;
|
|
365
|
-
timeout
|
|
1094
|
+
timeout: string;
|
|
366
1095
|
static names(): {
|
|
367
1096
|
[key: string]: string;
|
|
368
1097
|
};
|
|
@@ -373,7 +1102,7 @@ export declare class QueryTimeOneRequest extends $tea.Model {
|
|
|
373
1102
|
[key: string]: any;
|
|
374
1103
|
});
|
|
375
1104
|
}
|
|
376
|
-
export declare class
|
|
1105
|
+
export declare class QueryTestOneResponse extends $tea.Model {
|
|
377
1106
|
reqMsgId?: string;
|
|
378
1107
|
resultCode?: string;
|
|
379
1108
|
resultMsg?: string;
|
|
@@ -389,10 +1118,10 @@ export declare class QueryTimeOneResponse extends $tea.Model {
|
|
|
389
1118
|
[key: string]: any;
|
|
390
1119
|
});
|
|
391
1120
|
}
|
|
392
|
-
export declare class
|
|
1121
|
+
export declare class ImportTestOneRequest extends $tea.Model {
|
|
393
1122
|
authToken?: string;
|
|
394
1123
|
productInstanceId?: string;
|
|
395
|
-
timeout
|
|
1124
|
+
timeout: string;
|
|
396
1125
|
static names(): {
|
|
397
1126
|
[key: string]: string;
|
|
398
1127
|
};
|
|
@@ -403,12 +1132,12 @@ export declare class QueryTimeTwoRequest extends $tea.Model {
|
|
|
403
1132
|
[key: string]: any;
|
|
404
1133
|
});
|
|
405
1134
|
}
|
|
406
|
-
export declare class
|
|
1135
|
+
export declare class ImportTestOneResponse extends $tea.Model {
|
|
407
1136
|
reqMsgId?: string;
|
|
408
1137
|
resultCode?: string;
|
|
409
1138
|
resultMsg?: string;
|
|
410
|
-
stauts?: string;
|
|
411
1139
|
msg?: string;
|
|
1140
|
+
stauts?: string;
|
|
412
1141
|
static names(): {
|
|
413
1142
|
[key: string]: string;
|
|
414
1143
|
};
|
|
@@ -419,10 +1148,10 @@ export declare class QueryTimeTwoResponse extends $tea.Model {
|
|
|
419
1148
|
[key: string]: any;
|
|
420
1149
|
});
|
|
421
1150
|
}
|
|
422
|
-
export declare class
|
|
1151
|
+
export declare class StabilizeTestOneRequest extends $tea.Model {
|
|
423
1152
|
authToken?: string;
|
|
424
1153
|
productInstanceId?: string;
|
|
425
|
-
timeout
|
|
1154
|
+
timeout: string;
|
|
426
1155
|
static names(): {
|
|
427
1156
|
[key: string]: string;
|
|
428
1157
|
};
|
|
@@ -433,12 +1162,12 @@ export declare class QueryTimeThreeRequest extends $tea.Model {
|
|
|
433
1162
|
[key: string]: any;
|
|
434
1163
|
});
|
|
435
1164
|
}
|
|
436
|
-
export declare class
|
|
1165
|
+
export declare class StabilizeTestOneResponse extends $tea.Model {
|
|
437
1166
|
reqMsgId?: string;
|
|
438
1167
|
resultCode?: string;
|
|
439
1168
|
resultMsg?: string;
|
|
440
|
-
stauts?: string;
|
|
441
1169
|
msg?: string;
|
|
1170
|
+
stauts?: string;
|
|
442
1171
|
static names(): {
|
|
443
1172
|
[key: string]: string;
|
|
444
1173
|
};
|
|
@@ -449,7 +1178,7 @@ export declare class QueryTimeThreeResponse extends $tea.Model {
|
|
|
449
1178
|
[key: string]: any;
|
|
450
1179
|
});
|
|
451
1180
|
}
|
|
452
|
-
export declare class
|
|
1181
|
+
export declare class CaptureTestOneRequest extends $tea.Model {
|
|
453
1182
|
authToken?: string;
|
|
454
1183
|
productInstanceId?: string;
|
|
455
1184
|
timeout?: string;
|
|
@@ -463,12 +1192,12 @@ export declare class QueryTimeFourRequest extends $tea.Model {
|
|
|
463
1192
|
[key: string]: any;
|
|
464
1193
|
});
|
|
465
1194
|
}
|
|
466
|
-
export declare class
|
|
1195
|
+
export declare class CaptureTestOneResponse extends $tea.Model {
|
|
467
1196
|
reqMsgId?: string;
|
|
468
1197
|
resultCode?: string;
|
|
469
1198
|
resultMsg?: string;
|
|
470
|
-
stauts?: string;
|
|
471
1199
|
msg?: string;
|
|
1200
|
+
stauts?: string;
|
|
472
1201
|
static names(): {
|
|
473
1202
|
[key: string]: string;
|
|
474
1203
|
};
|
|
@@ -479,10 +1208,10 @@ export declare class QueryTimeFourResponse extends $tea.Model {
|
|
|
479
1208
|
[key: string]: any;
|
|
480
1209
|
});
|
|
481
1210
|
}
|
|
482
|
-
export declare class
|
|
1211
|
+
export declare class MatchTestOneRequest extends $tea.Model {
|
|
483
1212
|
authToken?: string;
|
|
484
1213
|
productInstanceId?: string;
|
|
485
|
-
timeout
|
|
1214
|
+
timeout: string;
|
|
486
1215
|
static names(): {
|
|
487
1216
|
[key: string]: string;
|
|
488
1217
|
};
|
|
@@ -493,12 +1222,12 @@ export declare class QueryTimeFiveRequest extends $tea.Model {
|
|
|
493
1222
|
[key: string]: any;
|
|
494
1223
|
});
|
|
495
1224
|
}
|
|
496
|
-
export declare class
|
|
1225
|
+
export declare class MatchTestOneResponse extends $tea.Model {
|
|
497
1226
|
reqMsgId?: string;
|
|
498
1227
|
resultCode?: string;
|
|
499
1228
|
resultMsg?: string;
|
|
500
|
-
stauts?: string;
|
|
501
1229
|
msg?: string;
|
|
1230
|
+
stauts?: string;
|
|
502
1231
|
static names(): {
|
|
503
1232
|
[key: string]: string;
|
|
504
1233
|
};
|
|
@@ -509,10 +1238,10 @@ export declare class QueryTimeFiveResponse extends $tea.Model {
|
|
|
509
1238
|
[key: string]: any;
|
|
510
1239
|
});
|
|
511
1240
|
}
|
|
512
|
-
export declare class
|
|
1241
|
+
export declare class OperateTestOneRequest extends $tea.Model {
|
|
513
1242
|
authToken?: string;
|
|
514
1243
|
productInstanceId?: string;
|
|
515
|
-
|
|
1244
|
+
timeout: string;
|
|
516
1245
|
static names(): {
|
|
517
1246
|
[key: string]: string;
|
|
518
1247
|
};
|
|
@@ -523,11 +1252,12 @@ export declare class CreateapiExistingProductsRequest extends $tea.Model {
|
|
|
523
1252
|
[key: string]: any;
|
|
524
1253
|
});
|
|
525
1254
|
}
|
|
526
|
-
export declare class
|
|
1255
|
+
export declare class OperateTestOneResponse extends $tea.Model {
|
|
527
1256
|
reqMsgId?: string;
|
|
528
1257
|
resultCode?: string;
|
|
529
1258
|
resultMsg?: string;
|
|
530
|
-
|
|
1259
|
+
msg?: string;
|
|
1260
|
+
stauts?: string;
|
|
531
1261
|
static names(): {
|
|
532
1262
|
[key: string]: string;
|
|
533
1263
|
};
|
|
@@ -538,13 +1268,10 @@ export declare class CreateapiExistingProductsResponse extends $tea.Model {
|
|
|
538
1268
|
[key: string]: any;
|
|
539
1269
|
});
|
|
540
1270
|
}
|
|
541
|
-
export declare class
|
|
1271
|
+
export declare class TimeTestOneRequest extends $tea.Model {
|
|
542
1272
|
authToken?: string;
|
|
543
1273
|
productInstanceId?: string;
|
|
544
|
-
|
|
545
|
-
operator: string;
|
|
546
|
-
count: number;
|
|
547
|
-
originInfo: string;
|
|
1274
|
+
timeout: string;
|
|
548
1275
|
static names(): {
|
|
549
1276
|
[key: string]: string;
|
|
550
1277
|
};
|
|
@@ -555,12 +1282,12 @@ export declare class APreCreateApiRequest extends $tea.Model {
|
|
|
555
1282
|
[key: string]: any;
|
|
556
1283
|
});
|
|
557
1284
|
}
|
|
558
|
-
export declare class
|
|
1285
|
+
export declare class TimeTestOneResponse extends $tea.Model {
|
|
559
1286
|
reqMsgId?: string;
|
|
560
1287
|
resultCode?: string;
|
|
561
1288
|
resultMsg?: string;
|
|
562
|
-
|
|
563
|
-
|
|
1289
|
+
msg?: string;
|
|
1290
|
+
stauts?: string;
|
|
564
1291
|
static names(): {
|
|
565
1292
|
[key: string]: string;
|
|
566
1293
|
};
|
|
@@ -571,7 +1298,7 @@ export declare class APreCreateApiResponse extends $tea.Model {
|
|
|
571
1298
|
[key: string]: any;
|
|
572
1299
|
});
|
|
573
1300
|
}
|
|
574
|
-
export declare class
|
|
1301
|
+
export declare class QueryOneLimitRequest extends $tea.Model {
|
|
575
1302
|
authToken?: string;
|
|
576
1303
|
productInstanceId?: string;
|
|
577
1304
|
timeout: string;
|
|
@@ -585,11 +1312,11 @@ export declare class ApiTestCreateRequest extends $tea.Model {
|
|
|
585
1312
|
[key: string]: any;
|
|
586
1313
|
});
|
|
587
1314
|
}
|
|
588
|
-
export declare class
|
|
1315
|
+
export declare class QueryOneLimitResponse extends $tea.Model {
|
|
589
1316
|
reqMsgId?: string;
|
|
590
1317
|
resultCode?: string;
|
|
591
1318
|
resultMsg?: string;
|
|
592
|
-
|
|
1319
|
+
stauts?: string;
|
|
593
1320
|
msg?: string;
|
|
594
1321
|
static names(): {
|
|
595
1322
|
[key: string]: string;
|
|
@@ -601,11 +1328,10 @@ export declare class ApiTestCreateResponse extends $tea.Model {
|
|
|
601
1328
|
[key: string]: any;
|
|
602
1329
|
});
|
|
603
1330
|
}
|
|
604
|
-
export declare class
|
|
1331
|
+
export declare class ImportOneLimitRequest extends $tea.Model {
|
|
605
1332
|
authToken?: string;
|
|
606
1333
|
productInstanceId?: string;
|
|
607
|
-
|
|
608
|
-
delete: string;
|
|
1334
|
+
timeout: string;
|
|
609
1335
|
static names(): {
|
|
610
1336
|
[key: string]: string;
|
|
611
1337
|
};
|
|
@@ -616,12 +1342,12 @@ export declare class QueryApprovalTestRequest extends $tea.Model {
|
|
|
616
1342
|
[key: string]: any;
|
|
617
1343
|
});
|
|
618
1344
|
}
|
|
619
|
-
export declare class
|
|
1345
|
+
export declare class ImportOneLimitResponse extends $tea.Model {
|
|
620
1346
|
reqMsgId?: string;
|
|
621
1347
|
resultCode?: string;
|
|
622
1348
|
resultMsg?: string;
|
|
1349
|
+
stauts?: string;
|
|
623
1350
|
msg?: string;
|
|
624
|
-
code?: number;
|
|
625
1351
|
static names(): {
|
|
626
1352
|
[key: string]: string;
|
|
627
1353
|
};
|
|
@@ -632,7 +1358,7 @@ export declare class QueryApprovalTestResponse extends $tea.Model {
|
|
|
632
1358
|
[key: string]: any;
|
|
633
1359
|
});
|
|
634
1360
|
}
|
|
635
|
-
export declare class
|
|
1361
|
+
export declare class StabilizeOneLimitRequest extends $tea.Model {
|
|
636
1362
|
authToken?: string;
|
|
637
1363
|
productInstanceId?: string;
|
|
638
1364
|
timeout: string;
|
|
@@ -646,7 +1372,7 @@ export declare class QueryOneLimitRequest extends $tea.Model {
|
|
|
646
1372
|
[key: string]: any;
|
|
647
1373
|
});
|
|
648
1374
|
}
|
|
649
|
-
export declare class
|
|
1375
|
+
export declare class StabilizeOneLimitResponse extends $tea.Model {
|
|
650
1376
|
reqMsgId?: string;
|
|
651
1377
|
resultCode?: string;
|
|
652
1378
|
resultMsg?: string;
|
|
@@ -662,7 +1388,7 @@ export declare class QueryOneLimitResponse extends $tea.Model {
|
|
|
662
1388
|
[key: string]: any;
|
|
663
1389
|
});
|
|
664
1390
|
}
|
|
665
|
-
export declare class
|
|
1391
|
+
export declare class UnstabilizeOneLimitRequest extends $tea.Model {
|
|
666
1392
|
authToken?: string;
|
|
667
1393
|
productInstanceId?: string;
|
|
668
1394
|
timeout: string;
|
|
@@ -676,12 +1402,12 @@ export declare class ImportOneLimitRequest extends $tea.Model {
|
|
|
676
1402
|
[key: string]: any;
|
|
677
1403
|
});
|
|
678
1404
|
}
|
|
679
|
-
export declare class
|
|
1405
|
+
export declare class UnstabilizeOneLimitResponse extends $tea.Model {
|
|
680
1406
|
reqMsgId?: string;
|
|
681
1407
|
resultCode?: string;
|
|
682
1408
|
resultMsg?: string;
|
|
683
|
-
stauts?: string;
|
|
684
1409
|
msg?: string;
|
|
1410
|
+
stauts?: string;
|
|
685
1411
|
static names(): {
|
|
686
1412
|
[key: string]: string;
|
|
687
1413
|
};
|
|
@@ -692,7 +1418,7 @@ export declare class ImportOneLimitResponse extends $tea.Model {
|
|
|
692
1418
|
[key: string]: any;
|
|
693
1419
|
});
|
|
694
1420
|
}
|
|
695
|
-
export declare class
|
|
1421
|
+
export declare class ResetOneLimitRequest extends $tea.Model {
|
|
696
1422
|
authToken?: string;
|
|
697
1423
|
productInstanceId?: string;
|
|
698
1424
|
timeout: string;
|
|
@@ -706,12 +1432,12 @@ export declare class StabilizeOneLimitRequest extends $tea.Model {
|
|
|
706
1432
|
[key: string]: any;
|
|
707
1433
|
});
|
|
708
1434
|
}
|
|
709
|
-
export declare class
|
|
1435
|
+
export declare class ResetOneLimitResponse extends $tea.Model {
|
|
710
1436
|
reqMsgId?: string;
|
|
711
1437
|
resultCode?: string;
|
|
712
1438
|
resultMsg?: string;
|
|
713
|
-
stauts?: string;
|
|
714
1439
|
msg?: string;
|
|
1440
|
+
stauts?: string;
|
|
715
1441
|
static names(): {
|
|
716
1442
|
[key: string]: string;
|
|
717
1443
|
};
|
|
@@ -722,10 +1448,11 @@ export declare class StabilizeOneLimitResponse extends $tea.Model {
|
|
|
722
1448
|
[key: string]: any;
|
|
723
1449
|
});
|
|
724
1450
|
}
|
|
725
|
-
export declare class
|
|
1451
|
+
export declare class WithdrawOneLimitRequest extends $tea.Model {
|
|
726
1452
|
authToken?: string;
|
|
727
1453
|
productInstanceId?: string;
|
|
728
|
-
timeout
|
|
1454
|
+
timeout?: string;
|
|
1455
|
+
param?: AbcDemoStruct[];
|
|
729
1456
|
static names(): {
|
|
730
1457
|
[key: string]: string;
|
|
731
1458
|
};
|
|
@@ -736,7 +1463,7 @@ export declare class UnstabilizeOneLimitRequest extends $tea.Model {
|
|
|
736
1463
|
[key: string]: any;
|
|
737
1464
|
});
|
|
738
1465
|
}
|
|
739
|
-
export declare class
|
|
1466
|
+
export declare class WithdrawOneLimitResponse extends $tea.Model {
|
|
740
1467
|
reqMsgId?: string;
|
|
741
1468
|
resultCode?: string;
|
|
742
1469
|
resultMsg?: string;
|
|
@@ -839,19 +1566,23 @@ export default class Client {
|
|
|
839
1566
|
_maxRequests: number;
|
|
840
1567
|
_maxRequestsPerHost: number;
|
|
841
1568
|
/**
|
|
1569
|
+
* @remarks
|
|
842
1570
|
* Init client with Config
|
|
843
|
-
*
|
|
1571
|
+
*
|
|
1572
|
+
* @param config - config contains the necessary information to create a client
|
|
844
1573
|
*/
|
|
845
1574
|
constructor(config: Config);
|
|
846
1575
|
/**
|
|
1576
|
+
* @remarks
|
|
847
1577
|
* Encapsulate the request and invoke the network
|
|
848
|
-
*
|
|
849
|
-
* @param
|
|
850
|
-
* @param
|
|
851
|
-
* @param
|
|
852
|
-
* @param
|
|
853
|
-
* @param
|
|
854
|
-
* @
|
|
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
|
|
855
1586
|
*/
|
|
856
1587
|
doRequest(version: string, action: string, protocol: string, method: string, pathname: string, request: {
|
|
857
1588
|
[key: string]: any;
|
|
@@ -861,11 +1592,83 @@ export default class Client {
|
|
|
861
1592
|
[key: string]: any;
|
|
862
1593
|
}>;
|
|
863
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
|
|
864
1666
|
* Description: 录入演示111
|
|
865
1667
|
* Summary: 录入演示API
|
|
866
1668
|
*/
|
|
867
1669
|
previewDemo(request: PreviewDemoRequest): Promise<PreviewDemoResponse>;
|
|
868
1670
|
/**
|
|
1671
|
+
* @remarks
|
|
869
1672
|
* Description: 录入演示111
|
|
870
1673
|
* Summary: 录入演示API
|
|
871
1674
|
*/
|
|
@@ -873,11 +1676,13 @@ export default class Client {
|
|
|
873
1676
|
[key: string]: string;
|
|
874
1677
|
}, runtime: $Util.RuntimeOptions): Promise<PreviewDemoResponse>;
|
|
875
1678
|
/**
|
|
1679
|
+
* @remarks
|
|
876
1680
|
* Description: 测试导入api1
|
|
877
1681
|
* Summary: 测试导入api1
|
|
878
1682
|
*/
|
|
879
1683
|
queryGateway(request: QueryGatewayRequest): Promise<QueryGatewayResponse>;
|
|
880
1684
|
/**
|
|
1685
|
+
* @remarks
|
|
881
1686
|
* Description: 测试导入api1
|
|
882
1687
|
* Summary: 测试导入api1
|
|
883
1688
|
*/
|
|
@@ -885,11 +1690,13 @@ export default class Client {
|
|
|
885
1690
|
[key: string]: string;
|
|
886
1691
|
}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayResponse>;
|
|
887
1692
|
/**
|
|
1693
|
+
* @remarks
|
|
888
1694
|
* Description: 调试a s dddd
|
|
889
1695
|
* Summary: 调试1
|
|
890
1696
|
*/
|
|
891
1697
|
queryAbcdaAbcddaa(request: QueryAbcdaAbcddaaRequest): Promise<QueryAbcdaAbcddaaResponse>;
|
|
892
1698
|
/**
|
|
1699
|
+
* @remarks
|
|
893
1700
|
* Description: 调试a s dddd
|
|
894
1701
|
* Summary: 调试1
|
|
895
1702
|
*/
|
|
@@ -897,11 +1704,13 @@ export default class Client {
|
|
|
897
1704
|
[key: string]: string;
|
|
898
1705
|
}, runtime: $Util.RuntimeOptions): Promise<QueryAbcdaAbcddaaResponse>;
|
|
899
1706
|
/**
|
|
1707
|
+
* @remarks
|
|
900
1708
|
* Description: 测试大安全接口
|
|
901
1709
|
* Summary: 测试大安全接口
|
|
902
1710
|
*/
|
|
903
1711
|
matchSecurityFace(request: MatchSecurityFaceRequest): Promise<MatchSecurityFaceResponse>;
|
|
904
1712
|
/**
|
|
1713
|
+
* @remarks
|
|
905
1714
|
* Description: 测试大安全接口
|
|
906
1715
|
* Summary: 测试大安全接口
|
|
907
1716
|
*/
|
|
@@ -909,11 +1718,13 @@ export default class Client {
|
|
|
909
1718
|
[key: string]: string;
|
|
910
1719
|
}, runtime: $Util.RuntimeOptions): Promise<MatchSecurityFaceResponse>;
|
|
911
1720
|
/**
|
|
1721
|
+
* @remarks
|
|
912
1722
|
* Description: 文件上传测试接口
|
|
913
1723
|
* Summary: 文件上传测试接口
|
|
914
1724
|
*/
|
|
915
1725
|
uploadTestFile(request: UploadTestFileRequest): Promise<UploadTestFileResponse>;
|
|
916
1726
|
/**
|
|
1727
|
+
* @remarks
|
|
917
1728
|
* Description: 文件上传测试接口
|
|
918
1729
|
* Summary: 文件上传测试接口
|
|
919
1730
|
*/
|
|
@@ -921,11 +1732,13 @@ export default class Client {
|
|
|
921
1732
|
[key: string]: string;
|
|
922
1733
|
}, runtime: $Util.RuntimeOptions): Promise<UploadTestFileResponse>;
|
|
923
1734
|
/**
|
|
1735
|
+
* @remarks
|
|
924
1736
|
* Description: 压测接口1
|
|
925
1737
|
* Summary: 压测接口1
|
|
926
1738
|
*/
|
|
927
1739
|
queryTimeOne(request: QueryTimeOneRequest): Promise<QueryTimeOneResponse>;
|
|
928
1740
|
/**
|
|
1741
|
+
* @remarks
|
|
929
1742
|
* Description: 压测接口1
|
|
930
1743
|
* Summary: 压测接口1
|
|
931
1744
|
*/
|
|
@@ -933,11 +1746,13 @@ export default class Client {
|
|
|
933
1746
|
[key: string]: string;
|
|
934
1747
|
}, runtime: $Util.RuntimeOptions): Promise<QueryTimeOneResponse>;
|
|
935
1748
|
/**
|
|
1749
|
+
* @remarks
|
|
936
1750
|
* Description: 压测接口2
|
|
937
1751
|
* Summary: 压测接口2
|
|
938
1752
|
*/
|
|
939
1753
|
queryTimeTwo(request: QueryTimeTwoRequest): Promise<QueryTimeTwoResponse>;
|
|
940
1754
|
/**
|
|
1755
|
+
* @remarks
|
|
941
1756
|
* Description: 压测接口2
|
|
942
1757
|
* Summary: 压测接口2
|
|
943
1758
|
*/
|
|
@@ -945,11 +1760,13 @@ export default class Client {
|
|
|
945
1760
|
[key: string]: string;
|
|
946
1761
|
}, runtime: $Util.RuntimeOptions): Promise<QueryTimeTwoResponse>;
|
|
947
1762
|
/**
|
|
1763
|
+
* @remarks
|
|
948
1764
|
* Description: 压测接口3
|
|
949
1765
|
* Summary: 压测接口3
|
|
950
1766
|
*/
|
|
951
1767
|
queryTimeThree(request: QueryTimeThreeRequest): Promise<QueryTimeThreeResponse>;
|
|
952
1768
|
/**
|
|
1769
|
+
* @remarks
|
|
953
1770
|
* Description: 压测接口3
|
|
954
1771
|
* Summary: 压测接口3
|
|
955
1772
|
*/
|
|
@@ -957,11 +1774,13 @@ export default class Client {
|
|
|
957
1774
|
[key: string]: string;
|
|
958
1775
|
}, runtime: $Util.RuntimeOptions): Promise<QueryTimeThreeResponse>;
|
|
959
1776
|
/**
|
|
1777
|
+
* @remarks
|
|
960
1778
|
* Description: 压测接口4
|
|
961
1779
|
* Summary: 压测接口4
|
|
962
1780
|
*/
|
|
963
1781
|
queryTimeFour(request: QueryTimeFourRequest): Promise<QueryTimeFourResponse>;
|
|
964
1782
|
/**
|
|
1783
|
+
* @remarks
|
|
965
1784
|
* Description: 压测接口4
|
|
966
1785
|
* Summary: 压测接口4
|
|
967
1786
|
*/
|
|
@@ -969,11 +1788,13 @@ export default class Client {
|
|
|
969
1788
|
[key: string]: string;
|
|
970
1789
|
}, runtime: $Util.RuntimeOptions): Promise<QueryTimeFourResponse>;
|
|
971
1790
|
/**
|
|
1791
|
+
* @remarks
|
|
972
1792
|
* Description: 压测接口5
|
|
973
1793
|
* Summary: 压测接口5
|
|
974
1794
|
*/
|
|
975
1795
|
queryTimeFive(request: QueryTimeFiveRequest): Promise<QueryTimeFiveResponse>;
|
|
976
1796
|
/**
|
|
1797
|
+
* @remarks
|
|
977
1798
|
* Description: 压测接口5
|
|
978
1799
|
* Summary: 压测接口5
|
|
979
1800
|
*/
|
|
@@ -981,11 +1802,27 @@ export default class Client {
|
|
|
981
1802
|
[key: string]: string;
|
|
982
1803
|
}, runtime: $Util.RuntimeOptions): Promise<QueryTimeFiveResponse>;
|
|
983
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
|
|
984
1820
|
* Description: 已有产品创建api
|
|
985
1821
|
* Summary: 已有产品创建api
|
|
986
1822
|
*/
|
|
987
1823
|
createapiExistingProducts(request: CreateapiExistingProductsRequest): Promise<CreateapiExistingProductsResponse>;
|
|
988
1824
|
/**
|
|
1825
|
+
* @remarks
|
|
989
1826
|
* Description: 已有产品创建api
|
|
990
1827
|
* Summary: 已有产品创建api
|
|
991
1828
|
*/
|
|
@@ -993,11 +1830,13 @@ export default class Client {
|
|
|
993
1830
|
[key: string]: string;
|
|
994
1831
|
}, runtime: $Util.RuntimeOptions): Promise<CreateapiExistingProductsResponse>;
|
|
995
1832
|
/**
|
|
1833
|
+
* @remarks
|
|
996
1834
|
* Description: 已有产品下创建的api
|
|
997
1835
|
* Summary: 已有产品下创建的api
|
|
998
1836
|
*/
|
|
999
1837
|
aPreCreateApi(request: APreCreateApiRequest): Promise<APreCreateApiResponse>;
|
|
1000
1838
|
/**
|
|
1839
|
+
* @remarks
|
|
1001
1840
|
* Description: 已有产品下创建的api
|
|
1002
1841
|
* Summary: 已有产品下创建的api
|
|
1003
1842
|
*/
|
|
@@ -1005,11 +1844,13 @@ export default class Client {
|
|
|
1005
1844
|
[key: string]: string;
|
|
1006
1845
|
}, runtime: $Util.RuntimeOptions): Promise<APreCreateApiResponse>;
|
|
1007
1846
|
/**
|
|
1847
|
+
* @remarks
|
|
1008
1848
|
* Description: 测试使用api
|
|
1009
1849
|
* Summary: 测试使用api
|
|
1010
1850
|
*/
|
|
1011
1851
|
apiTestCreate(request: ApiTestCreateRequest): Promise<ApiTestCreateResponse>;
|
|
1012
1852
|
/**
|
|
1853
|
+
* @remarks
|
|
1013
1854
|
* Description: 测试使用api
|
|
1014
1855
|
* Summary: 测试使用api
|
|
1015
1856
|
*/
|
|
@@ -1017,11 +1858,13 @@ export default class Client {
|
|
|
1017
1858
|
[key: string]: string;
|
|
1018
1859
|
}, runtime: $Util.RuntimeOptions): Promise<ApiTestCreateResponse>;
|
|
1019
1860
|
/**
|
|
1861
|
+
* @remarks
|
|
1020
1862
|
* Description: 用于测试api评审接入SDL/修改后的评审/0323
|
|
1021
1863
|
* Summary: 用于测试api评审接入SDL/修改后的评审/0323
|
|
1022
1864
|
*/
|
|
1023
1865
|
queryApprovalTest(request: QueryApprovalTestRequest): Promise<QueryApprovalTestResponse>;
|
|
1024
1866
|
/**
|
|
1867
|
+
* @remarks
|
|
1025
1868
|
* Description: 用于测试api评审接入SDL/修改后的评审/0323
|
|
1026
1869
|
* Summary: 用于测试api评审接入SDL/修改后的评审/0323
|
|
1027
1870
|
*/
|
|
@@ -1029,23 +1872,139 @@ export default class Client {
|
|
|
1029
1872
|
[key: string]: string;
|
|
1030
1873
|
}, runtime: $Util.RuntimeOptions): Promise<QueryApprovalTestResponse>;
|
|
1031
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
|
|
1032
1904
|
* Description: 个人工作台二期预发测试
|
|
1033
1905
|
* Summary: 个人工作台二期预发测试
|
|
1034
1906
|
*/
|
|
1035
|
-
|
|
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>;
|
|
1036
1964
|
/**
|
|
1965
|
+
* @remarks
|
|
1037
1966
|
* Description: 个人工作台二期预发测试
|
|
1038
1967
|
* Summary: 个人工作台二期预发测试
|
|
1039
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
|
+
*/
|
|
1040
1997
|
queryOneLimitEx(request: QueryOneLimitRequest, headers: {
|
|
1041
1998
|
[key: string]: string;
|
|
1042
1999
|
}, runtime: $Util.RuntimeOptions): Promise<QueryOneLimitResponse>;
|
|
1043
2000
|
/**
|
|
2001
|
+
* @remarks
|
|
1044
2002
|
* Description: 个人工作台二期预发测试
|
|
1045
2003
|
* Summary: 个人工作台二期预发测试
|
|
1046
2004
|
*/
|
|
1047
2005
|
importOneLimit(request: ImportOneLimitRequest): Promise<ImportOneLimitResponse>;
|
|
1048
2006
|
/**
|
|
2007
|
+
* @remarks
|
|
1049
2008
|
* Description: 个人工作台二期预发测试
|
|
1050
2009
|
* Summary: 个人工作台二期预发测试
|
|
1051
2010
|
*/
|
|
@@ -1053,11 +2012,13 @@ export default class Client {
|
|
|
1053
2012
|
[key: string]: string;
|
|
1054
2013
|
}, runtime: $Util.RuntimeOptions): Promise<ImportOneLimitResponse>;
|
|
1055
2014
|
/**
|
|
2015
|
+
* @remarks
|
|
1056
2016
|
* Description: 个人工作台二期预发测试
|
|
1057
2017
|
* Summary: 个人工作台二期预发测试
|
|
1058
2018
|
*/
|
|
1059
2019
|
stabilizeOneLimit(request: StabilizeOneLimitRequest): Promise<StabilizeOneLimitResponse>;
|
|
1060
2020
|
/**
|
|
2021
|
+
* @remarks
|
|
1061
2022
|
* Description: 个人工作台二期预发测试
|
|
1062
2023
|
* Summary: 个人工作台二期预发测试
|
|
1063
2024
|
*/
|
|
@@ -1065,11 +2026,13 @@ export default class Client {
|
|
|
1065
2026
|
[key: string]: string;
|
|
1066
2027
|
}, runtime: $Util.RuntimeOptions): Promise<StabilizeOneLimitResponse>;
|
|
1067
2028
|
/**
|
|
2029
|
+
* @remarks
|
|
1068
2030
|
* Description: 个人工作台二期测试接口
|
|
1069
2031
|
* Summary: 个人工作台二期测试接口
|
|
1070
2032
|
*/
|
|
1071
2033
|
unstabilizeOneLimit(request: UnstabilizeOneLimitRequest): Promise<UnstabilizeOneLimitResponse>;
|
|
1072
2034
|
/**
|
|
2035
|
+
* @remarks
|
|
1073
2036
|
* Description: 个人工作台二期测试接口
|
|
1074
2037
|
* Summary: 个人工作台二期测试接口
|
|
1075
2038
|
*/
|
|
@@ -1077,11 +2040,41 @@ export default class Client {
|
|
|
1077
2040
|
[key: string]: string;
|
|
1078
2041
|
}, runtime: $Util.RuntimeOptions): Promise<UnstabilizeOneLimitResponse>;
|
|
1079
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
|
|
1080
2072
|
* Description: 用于共享能力中心六期接入rasp回归验证
|
|
1081
2073
|
* Summary: 用于共享能力中心六期接入rasp回归验证
|
|
1082
2074
|
*/
|
|
1083
2075
|
queryGongxiangTesttest(request: QueryGongxiangTesttestRequest): Promise<QueryGongxiangTesttestResponse>;
|
|
1084
2076
|
/**
|
|
2077
|
+
* @remarks
|
|
1085
2078
|
* Description: 用于共享能力中心六期接入rasp回归验证
|
|
1086
2079
|
* Summary: 用于共享能力中心六期接入rasp回归验证
|
|
1087
2080
|
*/
|
|
@@ -1089,11 +2082,13 @@ export default class Client {
|
|
|
1089
2082
|
[key: string]: string;
|
|
1090
2083
|
}, runtime: $Util.RuntimeOptions): Promise<QueryGongxiangTesttestResponse>;
|
|
1091
2084
|
/**
|
|
2085
|
+
* @remarks
|
|
1092
2086
|
* Description: 创建HTTP PUT提交的文件上传
|
|
1093
2087
|
* Summary: 文件上传创建
|
|
1094
2088
|
*/
|
|
1095
2089
|
createAntcloudGatewayxFileUpload(request: CreateAntcloudGatewayxFileUploadRequest): Promise<CreateAntcloudGatewayxFileUploadResponse>;
|
|
1096
2090
|
/**
|
|
2091
|
+
* @remarks
|
|
1097
2092
|
* Description: 创建HTTP PUT提交的文件上传
|
|
1098
2093
|
* Summary: 文件上传创建
|
|
1099
2094
|
*/
|