@antchain/abc 1.0.15 → 1.1.24
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 +1589 -281
- package/dist/client.js +1646 -486
- package/dist/client.js.map +1 -1
- package/package.json +30 -29
- package/src/client.ts +2625 -630
package/src/client.ts
CHANGED
|
@@ -6,26 +6,129 @@ import { Readable } from 'stream';
|
|
|
6
6
|
import * as $tea from '@alicloud/tea-typescript';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
+
* @remarks
|
|
9
10
|
* Model for initing client
|
|
10
11
|
*/
|
|
11
12
|
export class Config extends $tea.Model {
|
|
13
|
+
/**
|
|
14
|
+
* @remarks
|
|
15
|
+
* accesskey id
|
|
16
|
+
*/
|
|
12
17
|
accessKeyId?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @remarks
|
|
20
|
+
* accesskey secret
|
|
21
|
+
*/
|
|
13
22
|
accessKeySecret?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @remarks
|
|
25
|
+
* security token
|
|
26
|
+
*/
|
|
14
27
|
securityToken?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @remarks
|
|
30
|
+
* http protocol
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* http
|
|
34
|
+
*/
|
|
15
35
|
protocol?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @remarks
|
|
38
|
+
* read timeout
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* 10
|
|
42
|
+
*/
|
|
16
43
|
readTimeout?: number;
|
|
44
|
+
/**
|
|
45
|
+
* @remarks
|
|
46
|
+
* connect timeout
|
|
47
|
+
*
|
|
48
|
+
* @example
|
|
49
|
+
* 10
|
|
50
|
+
*/
|
|
17
51
|
connectTimeout?: number;
|
|
52
|
+
/**
|
|
53
|
+
* @remarks
|
|
54
|
+
* http proxy
|
|
55
|
+
*
|
|
56
|
+
* @example
|
|
57
|
+
* http://localhost
|
|
58
|
+
*/
|
|
18
59
|
httpProxy?: string;
|
|
60
|
+
/**
|
|
61
|
+
* @remarks
|
|
62
|
+
* https proxy
|
|
63
|
+
*
|
|
64
|
+
* @example
|
|
65
|
+
* https://localhost
|
|
66
|
+
*/
|
|
19
67
|
httpsProxy?: string;
|
|
68
|
+
/**
|
|
69
|
+
* @remarks
|
|
70
|
+
* endpoint
|
|
71
|
+
*
|
|
72
|
+
* @example
|
|
73
|
+
* cs.aliyuncs.com
|
|
74
|
+
*/
|
|
20
75
|
endpoint?: string;
|
|
76
|
+
/**
|
|
77
|
+
* @remarks
|
|
78
|
+
* proxy white list
|
|
79
|
+
*
|
|
80
|
+
* @example
|
|
81
|
+
* http://localhost
|
|
82
|
+
*/
|
|
21
83
|
noProxy?: string;
|
|
84
|
+
/**
|
|
85
|
+
* @remarks
|
|
86
|
+
* max idle conns
|
|
87
|
+
*
|
|
88
|
+
* @example
|
|
89
|
+
* 3
|
|
90
|
+
*/
|
|
22
91
|
maxIdleConns?: number;
|
|
92
|
+
/**
|
|
93
|
+
* @remarks
|
|
94
|
+
* user agent
|
|
95
|
+
*
|
|
96
|
+
* @example
|
|
97
|
+
* Alibabacloud/1
|
|
98
|
+
*/
|
|
23
99
|
userAgent?: string;
|
|
100
|
+
/**
|
|
101
|
+
* @remarks
|
|
102
|
+
* socks5 proxy
|
|
103
|
+
*/
|
|
24
104
|
socks5Proxy?: string;
|
|
105
|
+
/**
|
|
106
|
+
* @remarks
|
|
107
|
+
* socks5 network
|
|
108
|
+
*
|
|
109
|
+
* @example
|
|
110
|
+
* TCP
|
|
111
|
+
*/
|
|
25
112
|
socks5NetWork?: string;
|
|
113
|
+
/**
|
|
114
|
+
* @remarks
|
|
115
|
+
* 长链接最大空闲时长
|
|
116
|
+
*/
|
|
26
117
|
maxIdleTimeMillis?: number;
|
|
118
|
+
/**
|
|
119
|
+
* @remarks
|
|
120
|
+
* 长链接最大连接时长
|
|
121
|
+
*/
|
|
27
122
|
keepAliveDurationMillis?: number;
|
|
123
|
+
/**
|
|
124
|
+
* @remarks
|
|
125
|
+
* 最大连接数(长链接最大总数)
|
|
126
|
+
*/
|
|
28
127
|
maxRequests?: number;
|
|
128
|
+
/**
|
|
129
|
+
* @remarks
|
|
130
|
+
* 每个目标主机的最大连接数(分主机域名的长链接最大总数
|
|
131
|
+
*/
|
|
29
132
|
maxRequestsPerHost?: number;
|
|
30
133
|
static names(): { [key: string]: string } {
|
|
31
134
|
return {
|
|
@@ -78,23 +181,260 @@ export class Config extends $tea.Model {
|
|
|
78
181
|
}
|
|
79
182
|
}
|
|
80
183
|
|
|
81
|
-
//
|
|
82
|
-
export class
|
|
83
|
-
//
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
184
|
+
// host
|
|
185
|
+
export class Host extends $tea.Model {
|
|
186
|
+
// test_2e1ae924805f
|
|
187
|
+
/**
|
|
188
|
+
* @example
|
|
189
|
+
* test_2e1ae924805f
|
|
190
|
+
*/
|
|
191
|
+
systemName: string;
|
|
192
|
+
// 地址
|
|
193
|
+
/**
|
|
194
|
+
* @example
|
|
195
|
+
* test_941f18a4013b
|
|
196
|
+
*/
|
|
197
|
+
address: string;
|
|
198
|
+
static names(): { [key: string]: string } {
|
|
199
|
+
return {
|
|
200
|
+
systemName: 'system_name',
|
|
201
|
+
address: 'address',
|
|
202
|
+
};
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
static types(): { [key: string]: any } {
|
|
206
|
+
return {
|
|
207
|
+
systemName: 'string',
|
|
208
|
+
address: 'string',
|
|
209
|
+
};
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
constructor(map?: { [key: string]: any }) {
|
|
213
|
+
super(map);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
// 身份
|
|
218
|
+
export class Identity extends $tea.Model {
|
|
219
|
+
// ak
|
|
220
|
+
/**
|
|
221
|
+
* @example
|
|
222
|
+
* test_0efe42463f8f
|
|
223
|
+
*/
|
|
224
|
+
ak: string;
|
|
225
|
+
static names(): { [key: string]: string } {
|
|
226
|
+
return {
|
|
227
|
+
ak: 'ak',
|
|
228
|
+
};
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
static types(): { [key: string]: any } {
|
|
232
|
+
return {
|
|
233
|
+
ak: 'string',
|
|
234
|
+
};
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
constructor(map?: { [key: string]: any }) {
|
|
238
|
+
super(map);
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
// SCRealEstateQueryResponseData
|
|
243
|
+
export class SCRealEstateQueryResponseData extends $tea.Model {
|
|
244
|
+
// area_code
|
|
245
|
+
/**
|
|
246
|
+
* @example
|
|
247
|
+
* 510108
|
|
248
|
+
*/
|
|
249
|
+
areaCode: string;
|
|
250
|
+
// area_name
|
|
251
|
+
/**
|
|
252
|
+
* @example
|
|
253
|
+
* area_name
|
|
254
|
+
*/
|
|
255
|
+
areaName: string;
|
|
256
|
+
// bdcdyh
|
|
257
|
+
/**
|
|
258
|
+
* @example
|
|
259
|
+
* bdcdyh
|
|
260
|
+
*/
|
|
261
|
+
bdcdyh: string;
|
|
262
|
+
// bdcqzh
|
|
263
|
+
/**
|
|
264
|
+
* @example
|
|
265
|
+
* bdcqzh
|
|
266
|
+
*/
|
|
267
|
+
bdcqzh: string;
|
|
268
|
+
// djsj
|
|
269
|
+
/**
|
|
270
|
+
* @example
|
|
271
|
+
* djsj
|
|
272
|
+
*/
|
|
273
|
+
djsj: string;
|
|
274
|
+
// fwyt1
|
|
275
|
+
/**
|
|
276
|
+
* @example
|
|
277
|
+
* fwyt1
|
|
278
|
+
*/
|
|
279
|
+
fwyt1: string;
|
|
280
|
+
// gyqk
|
|
281
|
+
/**
|
|
282
|
+
* @example
|
|
283
|
+
* gyqk
|
|
284
|
+
*/
|
|
285
|
+
gyqk: string;
|
|
286
|
+
// qllx
|
|
287
|
+
/**
|
|
288
|
+
* @example
|
|
289
|
+
* qllx
|
|
290
|
+
*/
|
|
291
|
+
qllx: string;
|
|
292
|
+
// qlrmc
|
|
293
|
+
/**
|
|
294
|
+
* @example
|
|
295
|
+
* qlrmc
|
|
296
|
+
*/
|
|
297
|
+
qlrmc: string;
|
|
298
|
+
// scjzmj
|
|
299
|
+
/**
|
|
300
|
+
* @example
|
|
301
|
+
* scjzmj
|
|
302
|
+
*/
|
|
303
|
+
scjzmj: string;
|
|
304
|
+
static names(): { [key: string]: string } {
|
|
305
|
+
return {
|
|
306
|
+
areaCode: 'area_code',
|
|
307
|
+
areaName: 'area_name',
|
|
308
|
+
bdcdyh: 'bdcdyh',
|
|
309
|
+
bdcqzh: 'bdcqzh',
|
|
310
|
+
djsj: 'djsj',
|
|
311
|
+
fwyt1: 'fwyt1',
|
|
312
|
+
gyqk: 'gyqk',
|
|
313
|
+
qllx: 'qllx',
|
|
314
|
+
qlrmc: 'qlrmc',
|
|
315
|
+
scjzmj: 'scjzmj',
|
|
316
|
+
};
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
static types(): { [key: string]: any } {
|
|
320
|
+
return {
|
|
321
|
+
areaCode: 'string',
|
|
322
|
+
areaName: 'string',
|
|
323
|
+
bdcdyh: 'string',
|
|
324
|
+
bdcqzh: 'string',
|
|
325
|
+
djsj: 'string',
|
|
326
|
+
fwyt1: 'string',
|
|
327
|
+
gyqk: 'string',
|
|
328
|
+
qllx: 'string',
|
|
329
|
+
qlrmc: 'string',
|
|
330
|
+
scjzmj: 'string',
|
|
331
|
+
};
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
constructor(map?: { [key: string]: any }) {
|
|
335
|
+
super(map);
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
// 头文件
|
|
340
|
+
export class Header extends $tea.Model {
|
|
341
|
+
// 身份信息
|
|
342
|
+
/**
|
|
343
|
+
* @example
|
|
344
|
+
* "identity": { "ak": "test_0efe42463f8f" }
|
|
345
|
+
*/
|
|
346
|
+
identity: Identity;
|
|
347
|
+
// 调用链编号
|
|
348
|
+
/**
|
|
349
|
+
* @example
|
|
350
|
+
* test_6db79b5d2e48
|
|
351
|
+
*/
|
|
352
|
+
traceId: string;
|
|
353
|
+
// host信息
|
|
354
|
+
/**
|
|
355
|
+
* @example
|
|
356
|
+
* "host": { "systemName": "test_2e1ae924805f", "address": "test_941f18a4013b" }
|
|
357
|
+
*/
|
|
358
|
+
host: Host;
|
|
359
|
+
// 方向
|
|
360
|
+
/**
|
|
361
|
+
* @example
|
|
362
|
+
* REQUEST
|
|
363
|
+
*/
|
|
364
|
+
direction: string;
|
|
365
|
+
// 请求类型
|
|
366
|
+
/**
|
|
367
|
+
* @example
|
|
368
|
+
* INVOKE
|
|
369
|
+
*/
|
|
370
|
+
requestType: string;
|
|
371
|
+
// 协议版本
|
|
372
|
+
/**
|
|
373
|
+
* @example
|
|
374
|
+
* test_6709e9002606
|
|
375
|
+
*/
|
|
376
|
+
protocolVersion: string;
|
|
377
|
+
static names(): { [key: string]: string } {
|
|
378
|
+
return {
|
|
379
|
+
identity: 'identity',
|
|
380
|
+
traceId: 'trace_id',
|
|
381
|
+
host: 'host',
|
|
382
|
+
direction: 'direction',
|
|
383
|
+
requestType: 'request_type',
|
|
384
|
+
protocolVersion: 'protocol_version',
|
|
385
|
+
};
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
static types(): { [key: string]: any } {
|
|
389
|
+
return {
|
|
390
|
+
identity: Identity,
|
|
391
|
+
traceId: 'string',
|
|
392
|
+
host: Host,
|
|
393
|
+
direction: 'string',
|
|
394
|
+
requestType: 'string',
|
|
395
|
+
protocolVersion: 'string',
|
|
396
|
+
};
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
constructor(map?: { [key: string]: any }) {
|
|
400
|
+
super(map);
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
// routeCondition
|
|
405
|
+
export class RouteCondition extends $tea.Model {
|
|
406
|
+
// 渠道编号
|
|
407
|
+
/**
|
|
408
|
+
* @example
|
|
409
|
+
* HZZKZTKJ
|
|
410
|
+
*/
|
|
411
|
+
channelId: string;
|
|
412
|
+
static names(): { [key: string]: string } {
|
|
413
|
+
return {
|
|
414
|
+
channelId: 'channel_id',
|
|
415
|
+
};
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
static types(): { [key: string]: any } {
|
|
419
|
+
return {
|
|
420
|
+
channelId: 'string',
|
|
421
|
+
};
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
constructor(map?: { [key: string]: any }) {
|
|
425
|
+
super(map);
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
// testAtestB
|
|
430
|
+
export class SCRealEstateQueryBody extends $tea.Model {
|
|
87
431
|
static names(): { [key: string]: string } {
|
|
88
432
|
return {
|
|
89
|
-
name: 'name',
|
|
90
|
-
value: 'value',
|
|
91
433
|
};
|
|
92
434
|
}
|
|
93
435
|
|
|
94
436
|
static types(): { [key: string]: any } {
|
|
95
437
|
return {
|
|
96
|
-
name: 'string',
|
|
97
|
-
value: 'string',
|
|
98
438
|
};
|
|
99
439
|
}
|
|
100
440
|
|
|
@@ -103,43 +443,51 @@ export class SubDemoStruct extends $tea.Model {
|
|
|
103
443
|
}
|
|
104
444
|
}
|
|
105
445
|
|
|
106
|
-
//
|
|
107
|
-
export class
|
|
108
|
-
//
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
446
|
+
// Demo类1
|
|
447
|
+
export class DemoClass extends $tea.Model {
|
|
448
|
+
// 字符串测试
|
|
449
|
+
/**
|
|
450
|
+
* @example
|
|
451
|
+
* some string
|
|
452
|
+
*/
|
|
453
|
+
someString: string;
|
|
454
|
+
// 日期测试
|
|
455
|
+
/**
|
|
456
|
+
* @example
|
|
457
|
+
* 3
|
|
458
|
+
*/
|
|
459
|
+
someDate: string;
|
|
460
|
+
// Boolean测试
|
|
461
|
+
/**
|
|
462
|
+
* @example
|
|
463
|
+
* true
|
|
464
|
+
*/
|
|
113
465
|
someBoolean: boolean;
|
|
114
|
-
//
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
//
|
|
121
|
-
|
|
466
|
+
// 整数测试
|
|
467
|
+
/**
|
|
468
|
+
* @example
|
|
469
|
+
* 3
|
|
470
|
+
*/
|
|
471
|
+
someInt: number;
|
|
472
|
+
// 列表测试
|
|
473
|
+
someList: string[];
|
|
122
474
|
static names(): { [key: string]: string } {
|
|
123
475
|
return {
|
|
124
476
|
someString: 'some_string',
|
|
125
|
-
someNumber: 'some_number',
|
|
126
|
-
someBoolean: 'some_boolean',
|
|
127
477
|
someDate: 'some_date',
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
478
|
+
someBoolean: 'some_boolean',
|
|
479
|
+
someInt: 'some_int',
|
|
480
|
+
someList: 'some_list',
|
|
131
481
|
};
|
|
132
482
|
}
|
|
133
483
|
|
|
134
484
|
static types(): { [key: string]: any } {
|
|
135
485
|
return {
|
|
136
486
|
someString: 'string',
|
|
137
|
-
someNumber: 'number',
|
|
138
|
-
someBoolean: 'boolean',
|
|
139
487
|
someDate: 'string',
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
488
|
+
someBoolean: 'boolean',
|
|
489
|
+
someInt: 'number',
|
|
490
|
+
someList: { 'type': 'array', 'itemType': 'string' },
|
|
143
491
|
};
|
|
144
492
|
}
|
|
145
493
|
|
|
@@ -148,19 +496,31 @@ export class AbcDemoStruct extends $tea.Model {
|
|
|
148
496
|
}
|
|
149
497
|
}
|
|
150
498
|
|
|
151
|
-
//
|
|
152
|
-
export class
|
|
153
|
-
//
|
|
154
|
-
|
|
499
|
+
// SCRealEstateQueryRequestPayload
|
|
500
|
+
export class SCRealEstateQueryRequestPayload extends $tea.Model {
|
|
501
|
+
// xm
|
|
502
|
+
/**
|
|
503
|
+
* @example
|
|
504
|
+
* 张三
|
|
505
|
+
*/
|
|
506
|
+
xm: string;
|
|
507
|
+
// sfz
|
|
508
|
+
/**
|
|
509
|
+
* @example
|
|
510
|
+
* 51382219970820817X
|
|
511
|
+
*/
|
|
512
|
+
sfz: string;
|
|
155
513
|
static names(): { [key: string]: string } {
|
|
156
514
|
return {
|
|
157
|
-
|
|
515
|
+
xm: 'xm',
|
|
516
|
+
sfz: 'sfz',
|
|
158
517
|
};
|
|
159
518
|
}
|
|
160
519
|
|
|
161
520
|
static types(): { [key: string]: any } {
|
|
162
521
|
return {
|
|
163
|
-
|
|
522
|
+
xm: 'string',
|
|
523
|
+
sfz: 'string',
|
|
164
524
|
};
|
|
165
525
|
}
|
|
166
526
|
|
|
@@ -169,23 +529,64 @@ export class TestDemo extends $tea.Model {
|
|
|
169
529
|
}
|
|
170
530
|
}
|
|
171
531
|
|
|
172
|
-
//
|
|
173
|
-
export class
|
|
174
|
-
//
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
532
|
+
// 键值对,兼容map用
|
|
533
|
+
export class NameValuePair extends $tea.Model {
|
|
534
|
+
// 键名
|
|
535
|
+
/**
|
|
536
|
+
* @example
|
|
537
|
+
* key
|
|
538
|
+
*/
|
|
539
|
+
name: string;
|
|
540
|
+
// 键值
|
|
541
|
+
/**
|
|
542
|
+
* @example
|
|
543
|
+
* value
|
|
544
|
+
*/
|
|
545
|
+
value: string;
|
|
178
546
|
static names(): { [key: string]: string } {
|
|
179
547
|
return {
|
|
180
|
-
|
|
181
|
-
|
|
548
|
+
name: 'name',
|
|
549
|
+
value: 'value',
|
|
182
550
|
};
|
|
183
551
|
}
|
|
184
552
|
|
|
185
553
|
static types(): { [key: string]: any } {
|
|
186
554
|
return {
|
|
187
|
-
|
|
188
|
-
|
|
555
|
+
name: 'string',
|
|
556
|
+
value: 'string',
|
|
557
|
+
};
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
constructor(map?: { [key: string]: any }) {
|
|
561
|
+
super(map);
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
// 编码
|
|
566
|
+
export class Cmd extends $tea.Model {
|
|
567
|
+
// cmd编码
|
|
568
|
+
/**
|
|
569
|
+
* @example
|
|
570
|
+
* SC-RealEstate-Query
|
|
571
|
+
*/
|
|
572
|
+
cmdCode: string;
|
|
573
|
+
// 版本号
|
|
574
|
+
/**
|
|
575
|
+
* @example
|
|
576
|
+
* test_d19bd9d59915
|
|
577
|
+
*/
|
|
578
|
+
version: string;
|
|
579
|
+
static names(): { [key: string]: string } {
|
|
580
|
+
return {
|
|
581
|
+
cmdCode: 'cmd_code',
|
|
582
|
+
version: 'version',
|
|
583
|
+
};
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
static types(): { [key: string]: any } {
|
|
587
|
+
return {
|
|
588
|
+
cmdCode: 'string',
|
|
589
|
+
version: 'string',
|
|
189
590
|
};
|
|
190
591
|
}
|
|
191
592
|
|
|
@@ -194,27 +595,43 @@ export class FaceImage extends $tea.Model {
|
|
|
194
595
|
}
|
|
195
596
|
}
|
|
196
597
|
|
|
197
|
-
//
|
|
198
|
-
export class
|
|
199
|
-
//
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
598
|
+
// SCRealEstateQueryResponsePayload
|
|
599
|
+
export class SCRealEstateQueryResponsePayload extends $tea.Model {
|
|
600
|
+
// code
|
|
601
|
+
/**
|
|
602
|
+
* @example
|
|
603
|
+
* 200
|
|
604
|
+
*/
|
|
605
|
+
code: string;
|
|
606
|
+
// data
|
|
607
|
+
data: SCRealEstateQueryResponseData[];
|
|
608
|
+
// uuid
|
|
609
|
+
/**
|
|
610
|
+
* @example
|
|
611
|
+
* uuid
|
|
612
|
+
*/
|
|
613
|
+
uuid: string;
|
|
614
|
+
// ret_msg
|
|
615
|
+
/**
|
|
616
|
+
* @example
|
|
617
|
+
* ret_msg
|
|
618
|
+
*/
|
|
619
|
+
retMsg: string;
|
|
205
620
|
static names(): { [key: string]: string } {
|
|
206
621
|
return {
|
|
207
622
|
code: 'code',
|
|
208
623
|
data: 'data',
|
|
209
|
-
|
|
624
|
+
uuid: 'uuid',
|
|
625
|
+
retMsg: 'ret_msg',
|
|
210
626
|
};
|
|
211
627
|
}
|
|
212
628
|
|
|
213
629
|
static types(): { [key: string]: any } {
|
|
214
630
|
return {
|
|
215
|
-
code:
|
|
216
|
-
data:
|
|
217
|
-
|
|
631
|
+
code: 'string',
|
|
632
|
+
data: { 'type': 'array', 'itemType': SCRealEstateQueryResponseData },
|
|
633
|
+
uuid: 'string',
|
|
634
|
+
retMsg: 'string',
|
|
218
635
|
};
|
|
219
636
|
}
|
|
220
637
|
|
|
@@ -223,23 +640,1389 @@ export class ResultListDemo extends $tea.Model {
|
|
|
223
640
|
}
|
|
224
641
|
}
|
|
225
642
|
|
|
226
|
-
//
|
|
227
|
-
export class
|
|
228
|
-
//
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
643
|
+
// 键值对
|
|
644
|
+
export class Map extends $tea.Model {
|
|
645
|
+
// 键
|
|
646
|
+
/**
|
|
647
|
+
* @example
|
|
648
|
+
* key1
|
|
649
|
+
*/
|
|
650
|
+
key: string;
|
|
651
|
+
// 值
|
|
652
|
+
/**
|
|
653
|
+
* @example
|
|
654
|
+
* value1
|
|
655
|
+
*/
|
|
656
|
+
value?: string;
|
|
232
657
|
static names(): { [key: string]: string } {
|
|
233
658
|
return {
|
|
234
|
-
|
|
235
|
-
|
|
659
|
+
key: 'key',
|
|
660
|
+
value: 'value',
|
|
236
661
|
};
|
|
237
662
|
}
|
|
238
663
|
|
|
239
664
|
static types(): { [key: string]: any } {
|
|
240
665
|
return {
|
|
241
|
-
|
|
242
|
-
|
|
666
|
+
key: 'string',
|
|
667
|
+
value: 'string',
|
|
668
|
+
};
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
constructor(map?: { [key: string]: any }) {
|
|
672
|
+
super(map);
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
// 大安全佐罗测试接口结构体
|
|
677
|
+
export class FaceImage extends $tea.Model {
|
|
678
|
+
// 123
|
|
679
|
+
/**
|
|
680
|
+
* @example
|
|
681
|
+
* 123
|
|
682
|
+
*/
|
|
683
|
+
content?: string;
|
|
684
|
+
// 213
|
|
685
|
+
/**
|
|
686
|
+
* @example
|
|
687
|
+
* 13
|
|
688
|
+
*/
|
|
689
|
+
rect?: string;
|
|
690
|
+
static names(): { [key: string]: string } {
|
|
691
|
+
return {
|
|
692
|
+
content: 'content',
|
|
693
|
+
rect: 'rect',
|
|
694
|
+
};
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
static types(): { [key: string]: any } {
|
|
698
|
+
return {
|
|
699
|
+
content: 'string',
|
|
700
|
+
rect: 'string',
|
|
701
|
+
};
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
constructor(map?: { [key: string]: any }) {
|
|
705
|
+
super(map);
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
// SCRealEstateQuery
|
|
710
|
+
export class SCRealEstateQueryInvokerRequest extends $tea.Model {
|
|
711
|
+
// header
|
|
712
|
+
/**
|
|
713
|
+
* @example
|
|
714
|
+
* "header": {}
|
|
715
|
+
*/
|
|
716
|
+
header: Header;
|
|
717
|
+
// body
|
|
718
|
+
/**
|
|
719
|
+
* @example
|
|
720
|
+
* "body":{}
|
|
721
|
+
*/
|
|
722
|
+
body: SCRealEstateQueryBody;
|
|
723
|
+
static names(): { [key: string]: string } {
|
|
724
|
+
return {
|
|
725
|
+
header: 'header',
|
|
726
|
+
body: 'body',
|
|
727
|
+
};
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
static types(): { [key: string]: any } {
|
|
731
|
+
return {
|
|
732
|
+
header: Header,
|
|
733
|
+
body: SCRealEstateQueryBody,
|
|
734
|
+
};
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
constructor(map?: { [key: string]: any }) {
|
|
738
|
+
super(map);
|
|
739
|
+
}
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
// 用于上海非金迭代的测试使用
|
|
743
|
+
export class ShangHaiTest extends $tea.Model {
|
|
744
|
+
// string
|
|
745
|
+
/**
|
|
746
|
+
* @example
|
|
747
|
+
* test
|
|
748
|
+
*/
|
|
749
|
+
param1?: string;
|
|
750
|
+
// number
|
|
751
|
+
/**
|
|
752
|
+
* @example
|
|
753
|
+
* 1
|
|
754
|
+
*/
|
|
755
|
+
param2?: number;
|
|
756
|
+
static names(): { [key: string]: string } {
|
|
757
|
+
return {
|
|
758
|
+
param1: 'param_1',
|
|
759
|
+
param2: 'param_2',
|
|
760
|
+
};
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
static types(): { [key: string]: any } {
|
|
764
|
+
return {
|
|
765
|
+
param1: 'string',
|
|
766
|
+
param2: 'number',
|
|
767
|
+
};
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
constructor(map?: { [key: string]: any }) {
|
|
771
|
+
super(map);
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
// init接口响应结果,map类型
|
|
776
|
+
export class InitPack extends $tea.Model {
|
|
777
|
+
// 返回接收到请求的当前时间
|
|
778
|
+
/**
|
|
779
|
+
* @example
|
|
780
|
+
* 2022-11-07 14:48
|
|
781
|
+
*/
|
|
782
|
+
time: string;
|
|
783
|
+
// 操作人
|
|
784
|
+
/**
|
|
785
|
+
* @example
|
|
786
|
+
* wanyi
|
|
787
|
+
*/
|
|
788
|
+
operator: string;
|
|
789
|
+
// 请求编号
|
|
790
|
+
/**
|
|
791
|
+
* @example
|
|
792
|
+
* 1
|
|
793
|
+
*/
|
|
794
|
+
count: number;
|
|
795
|
+
static names(): { [key: string]: string } {
|
|
796
|
+
return {
|
|
797
|
+
time: 'time',
|
|
798
|
+
operator: 'operator',
|
|
799
|
+
count: 'count',
|
|
800
|
+
};
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
static types(): { [key: string]: any } {
|
|
804
|
+
return {
|
|
805
|
+
time: 'string',
|
|
806
|
+
operator: 'string',
|
|
807
|
+
count: 'number',
|
|
808
|
+
};
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
constructor(map?: { [key: string]: any }) {
|
|
812
|
+
super(map);
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
// 数字类型
|
|
817
|
+
export class NumberTest extends $tea.Model {
|
|
818
|
+
// 1
|
|
819
|
+
/**
|
|
820
|
+
* @example
|
|
821
|
+
* 1
|
|
822
|
+
*/
|
|
823
|
+
parameter1: number;
|
|
824
|
+
// 2
|
|
825
|
+
/**
|
|
826
|
+
* @example
|
|
827
|
+
* 2
|
|
828
|
+
*/
|
|
829
|
+
parameter2: number;
|
|
830
|
+
// 3
|
|
831
|
+
/**
|
|
832
|
+
* @example
|
|
833
|
+
* 3
|
|
834
|
+
*/
|
|
835
|
+
parameter3: number;
|
|
836
|
+
// 4
|
|
837
|
+
/**
|
|
838
|
+
* @example
|
|
839
|
+
* 4
|
|
840
|
+
*/
|
|
841
|
+
parameter4: number;
|
|
842
|
+
// 5
|
|
843
|
+
/**
|
|
844
|
+
* @example
|
|
845
|
+
* 5
|
|
846
|
+
*/
|
|
847
|
+
parameter5: DemoClass;
|
|
848
|
+
static names(): { [key: string]: string } {
|
|
849
|
+
return {
|
|
850
|
+
parameter1: 'parameter_1',
|
|
851
|
+
parameter2: 'parameter_2',
|
|
852
|
+
parameter3: 'parameter_3',
|
|
853
|
+
parameter4: 'parameter_4',
|
|
854
|
+
parameter5: 'parameter_5',
|
|
855
|
+
};
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
static types(): { [key: string]: any } {
|
|
859
|
+
return {
|
|
860
|
+
parameter1: 'number',
|
|
861
|
+
parameter2: 'number',
|
|
862
|
+
parameter3: 'number',
|
|
863
|
+
parameter4: 'number',
|
|
864
|
+
parameter5: DemoClass,
|
|
865
|
+
};
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
constructor(map?: { [key: string]: any }) {
|
|
869
|
+
super(map);
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
// testAAAA
|
|
874
|
+
export class TestClass extends $tea.Model {
|
|
875
|
+
// 1
|
|
876
|
+
/**
|
|
877
|
+
* @example
|
|
878
|
+
* testclass
|
|
879
|
+
*/
|
|
880
|
+
test: string;
|
|
881
|
+
// 2
|
|
882
|
+
/**
|
|
883
|
+
* @example
|
|
884
|
+
* testclass
|
|
885
|
+
*/
|
|
886
|
+
demo: string;
|
|
887
|
+
// 3
|
|
888
|
+
/**
|
|
889
|
+
* @example
|
|
890
|
+
* id2
|
|
891
|
+
*/
|
|
892
|
+
demo1: string;
|
|
893
|
+
// 22
|
|
894
|
+
/**
|
|
895
|
+
* @example
|
|
896
|
+
* 12
|
|
897
|
+
*/
|
|
898
|
+
demo2: string;
|
|
899
|
+
static names(): { [key: string]: string } {
|
|
900
|
+
return {
|
|
901
|
+
test: 'test',
|
|
902
|
+
demo: 'demo',
|
|
903
|
+
demo1: 'demo1',
|
|
904
|
+
demo2: 'demo2',
|
|
905
|
+
};
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
static types(): { [key: string]: any } {
|
|
909
|
+
return {
|
|
910
|
+
test: 'string',
|
|
911
|
+
demo: 'string',
|
|
912
|
+
demo1: 'string',
|
|
913
|
+
demo2: 'string',
|
|
914
|
+
};
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
constructor(map?: { [key: string]: any }) {
|
|
918
|
+
super(map);
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
// TestStruct
|
|
923
|
+
export class TestStruct extends $tea.Model {
|
|
924
|
+
// x
|
|
925
|
+
/**
|
|
926
|
+
* @example
|
|
927
|
+
* x
|
|
928
|
+
*/
|
|
929
|
+
x: string;
|
|
930
|
+
// y
|
|
931
|
+
/**
|
|
932
|
+
* @example
|
|
933
|
+
* y
|
|
934
|
+
*/
|
|
935
|
+
y: DemoClass;
|
|
936
|
+
// z
|
|
937
|
+
z: DemoClass[];
|
|
938
|
+
static names(): { [key: string]: string } {
|
|
939
|
+
return {
|
|
940
|
+
x: 'x',
|
|
941
|
+
y: 'y',
|
|
942
|
+
z: 'z',
|
|
943
|
+
};
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
static types(): { [key: string]: any } {
|
|
947
|
+
return {
|
|
948
|
+
x: 'string',
|
|
949
|
+
y: DemoClass,
|
|
950
|
+
z: { 'type': 'array', 'itemType': DemoClass },
|
|
951
|
+
};
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
constructor(map?: { [key: string]: any }) {
|
|
955
|
+
super(map);
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
// 测试
|
|
960
|
+
export class TestObject extends $tea.Model {
|
|
961
|
+
// 主键
|
|
962
|
+
/**
|
|
963
|
+
* @example
|
|
964
|
+
* 12
|
|
965
|
+
*/
|
|
966
|
+
id: number;
|
|
967
|
+
// 名称
|
|
968
|
+
/**
|
|
969
|
+
* @example
|
|
970
|
+
* 小蜜
|
|
971
|
+
*/
|
|
972
|
+
name: string;
|
|
973
|
+
static names(): { [key: string]: string } {
|
|
974
|
+
return {
|
|
975
|
+
id: 'id',
|
|
976
|
+
name: 'name',
|
|
977
|
+
};
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
static types(): { [key: string]: any } {
|
|
981
|
+
return {
|
|
982
|
+
id: 'number',
|
|
983
|
+
name: 'string',
|
|
984
|
+
};
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
constructor(map?: { [key: string]: any }) {
|
|
988
|
+
super(map);
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
// DemoTestx
|
|
993
|
+
export class DemoTestx extends $tea.Model {
|
|
994
|
+
// ability_id
|
|
995
|
+
/**
|
|
996
|
+
* @example
|
|
997
|
+
* 8000
|
|
998
|
+
*/
|
|
999
|
+
abilityId: string;
|
|
1000
|
+
static names(): { [key: string]: string } {
|
|
1001
|
+
return {
|
|
1002
|
+
abilityId: 'ability_id',
|
|
1003
|
+
};
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
static types(): { [key: string]: any } {
|
|
1007
|
+
return {
|
|
1008
|
+
abilityId: 'string',
|
|
1009
|
+
};
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
constructor(map?: { [key: string]: any }) {
|
|
1013
|
+
super(map);
|
|
1014
|
+
}
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
// 另一个Demo类
|
|
1018
|
+
export class AnotherClass extends $tea.Model {
|
|
1019
|
+
// 测试字段
|
|
1020
|
+
/**
|
|
1021
|
+
* @example
|
|
1022
|
+
* some string
|
|
1023
|
+
*/
|
|
1024
|
+
bar: string;
|
|
1025
|
+
// 引用字段
|
|
1026
|
+
ref: DemoClass;
|
|
1027
|
+
// 列表引用Struct
|
|
1028
|
+
refList?: DemoClass[];
|
|
1029
|
+
static names(): { [key: string]: string } {
|
|
1030
|
+
return {
|
|
1031
|
+
bar: 'bar',
|
|
1032
|
+
ref: 'ref',
|
|
1033
|
+
refList: 'refList',
|
|
1034
|
+
};
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
static types(): { [key: string]: any } {
|
|
1038
|
+
return {
|
|
1039
|
+
bar: 'string',
|
|
1040
|
+
ref: DemoClass,
|
|
1041
|
+
refList: { 'type': 'array', 'itemType': DemoClass },
|
|
1042
|
+
};
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
constructor(map?: { [key: string]: any }) {
|
|
1046
|
+
super(map);
|
|
1047
|
+
}
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
// 自动生成单测代码model
|
|
1051
|
+
export class AutoCodeModel extends $tea.Model {
|
|
1052
|
+
// 111
|
|
1053
|
+
/**
|
|
1054
|
+
* @example
|
|
1055
|
+
* 111
|
|
1056
|
+
*/
|
|
1057
|
+
modelStringParam: string;
|
|
1058
|
+
// 111
|
|
1059
|
+
/**
|
|
1060
|
+
* @example
|
|
1061
|
+
* 2018-10-10T10:10:00Z
|
|
1062
|
+
*/
|
|
1063
|
+
modelDateParam: string;
|
|
1064
|
+
// 111
|
|
1065
|
+
/**
|
|
1066
|
+
* @example
|
|
1067
|
+
* 111
|
|
1068
|
+
*/
|
|
1069
|
+
modelArrayParam: string[];
|
|
1070
|
+
static names(): { [key: string]: string } {
|
|
1071
|
+
return {
|
|
1072
|
+
modelStringParam: 'model_string_param',
|
|
1073
|
+
modelDateParam: 'model_date_param',
|
|
1074
|
+
modelArrayParam: 'model_array_param',
|
|
1075
|
+
};
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
static types(): { [key: string]: any } {
|
|
1079
|
+
return {
|
|
1080
|
+
modelStringParam: 'string',
|
|
1081
|
+
modelDateParam: 'string',
|
|
1082
|
+
modelArrayParam: { 'type': 'array', 'itemType': 'string' },
|
|
1083
|
+
};
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
constructor(map?: { [key: string]: any }) {
|
|
1087
|
+
super(map);
|
|
1088
|
+
}
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
// SCRealEstateQueryRequestBody
|
|
1092
|
+
export class SCRealEstateQueryRequestBody extends $tea.Model {
|
|
1093
|
+
// cmd
|
|
1094
|
+
/**
|
|
1095
|
+
* @example
|
|
1096
|
+
* "cmd": { "cmdCode": "SC-RealEstate-Query", "version": "test_d19bd9d59915" }
|
|
1097
|
+
*/
|
|
1098
|
+
cmd: Cmd;
|
|
1099
|
+
// 路由信息
|
|
1100
|
+
/**
|
|
1101
|
+
* @example
|
|
1102
|
+
* "routeCondition": { "channelId": "HZZKZTKJ" }
|
|
1103
|
+
*/
|
|
1104
|
+
routeCondition: RouteCondition;
|
|
1105
|
+
// requestId
|
|
1106
|
+
/**
|
|
1107
|
+
* @example
|
|
1108
|
+
* test_8c964bb7781a
|
|
1109
|
+
*/
|
|
1110
|
+
requestId: string;
|
|
1111
|
+
// payload
|
|
1112
|
+
/**
|
|
1113
|
+
* @example
|
|
1114
|
+
* { "xm": "张三", "sfz": "51382219970820817X"}
|
|
1115
|
+
*/
|
|
1116
|
+
payload: SCRealEstateQueryRequestPayload;
|
|
1117
|
+
static names(): { [key: string]: string } {
|
|
1118
|
+
return {
|
|
1119
|
+
cmd: 'cmd',
|
|
1120
|
+
routeCondition: 'route_condition',
|
|
1121
|
+
requestId: 'request_id',
|
|
1122
|
+
payload: 'payload',
|
|
1123
|
+
};
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
static types(): { [key: string]: any } {
|
|
1127
|
+
return {
|
|
1128
|
+
cmd: Cmd,
|
|
1129
|
+
routeCondition: RouteCondition,
|
|
1130
|
+
requestId: 'string',
|
|
1131
|
+
payload: SCRealEstateQueryRequestPayload,
|
|
1132
|
+
};
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
constructor(map?: { [key: string]: any }) {
|
|
1136
|
+
super(map);
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
// 测试
|
|
1141
|
+
export class TestAPIObject extends $tea.Model {
|
|
1142
|
+
// test
|
|
1143
|
+
/**
|
|
1144
|
+
* @example
|
|
1145
|
+
* 21
|
|
1146
|
+
*/
|
|
1147
|
+
id: number;
|
|
1148
|
+
static names(): { [key: string]: string } {
|
|
1149
|
+
return {
|
|
1150
|
+
id: 'id',
|
|
1151
|
+
};
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
static types(): { [key: string]: any } {
|
|
1155
|
+
return {
|
|
1156
|
+
id: 'number',
|
|
1157
|
+
};
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
constructor(map?: { [key: string]: any }) {
|
|
1161
|
+
super(map);
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
// ResponseBody
|
|
1166
|
+
export class SCRealEstateQueryResponseBody extends $tea.Model {
|
|
1167
|
+
// cost
|
|
1168
|
+
/**
|
|
1169
|
+
* @example
|
|
1170
|
+
* 1234
|
|
1171
|
+
*/
|
|
1172
|
+
cost: number;
|
|
1173
|
+
// response_status
|
|
1174
|
+
/**
|
|
1175
|
+
* @example
|
|
1176
|
+
* response_status
|
|
1177
|
+
*/
|
|
1178
|
+
responseStatus: string;
|
|
1179
|
+
// response_code
|
|
1180
|
+
/**
|
|
1181
|
+
* @example
|
|
1182
|
+
* 200
|
|
1183
|
+
*/
|
|
1184
|
+
responseCode: string;
|
|
1185
|
+
// request_id
|
|
1186
|
+
/**
|
|
1187
|
+
* @example
|
|
1188
|
+
* request_id
|
|
1189
|
+
*/
|
|
1190
|
+
requestId: string;
|
|
1191
|
+
// payload
|
|
1192
|
+
payload: SCRealEstateQueryResponsePayload;
|
|
1193
|
+
static names(): { [key: string]: string } {
|
|
1194
|
+
return {
|
|
1195
|
+
cost: 'cost',
|
|
1196
|
+
responseStatus: 'response_status',
|
|
1197
|
+
responseCode: 'response_code',
|
|
1198
|
+
requestId: 'request_id',
|
|
1199
|
+
payload: 'payload',
|
|
1200
|
+
};
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
static types(): { [key: string]: any } {
|
|
1204
|
+
return {
|
|
1205
|
+
cost: 'number',
|
|
1206
|
+
responseStatus: 'string',
|
|
1207
|
+
responseCode: 'string',
|
|
1208
|
+
requestId: 'string',
|
|
1209
|
+
payload: SCRealEstateQueryResponsePayload,
|
|
1210
|
+
};
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
constructor(map?: { [key: string]: any }) {
|
|
1214
|
+
super(map);
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
// Map<String,Object> 集合
|
|
1219
|
+
export class QueryMap extends $tea.Model {
|
|
1220
|
+
// 键值
|
|
1221
|
+
/**
|
|
1222
|
+
* @example
|
|
1223
|
+
* BUSINESS_CODE
|
|
1224
|
+
*/
|
|
1225
|
+
name: string;
|
|
1226
|
+
// 额外用户信息
|
|
1227
|
+
value?: NameValuePair[];
|
|
1228
|
+
static names(): { [key: string]: string } {
|
|
1229
|
+
return {
|
|
1230
|
+
name: 'name',
|
|
1231
|
+
value: 'value',
|
|
1232
|
+
};
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
static types(): { [key: string]: any } {
|
|
1236
|
+
return {
|
|
1237
|
+
name: 'string',
|
|
1238
|
+
value: { 'type': 'array', 'itemType': NameValuePair },
|
|
1239
|
+
};
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
constructor(map?: { [key: string]: any }) {
|
|
1243
|
+
super(map);
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
// 123
|
|
1248
|
+
export class TestA extends $tea.Model {
|
|
1249
|
+
// 1
|
|
1250
|
+
/**
|
|
1251
|
+
* @example
|
|
1252
|
+
* 1
|
|
1253
|
+
*/
|
|
1254
|
+
parameter1: string;
|
|
1255
|
+
// 2
|
|
1256
|
+
/**
|
|
1257
|
+
* @example
|
|
1258
|
+
* 2
|
|
1259
|
+
*/
|
|
1260
|
+
parameter2: string;
|
|
1261
|
+
// 3
|
|
1262
|
+
/**
|
|
1263
|
+
* @example
|
|
1264
|
+
* 3
|
|
1265
|
+
*/
|
|
1266
|
+
parameter3: string;
|
|
1267
|
+
// 4
|
|
1268
|
+
/**
|
|
1269
|
+
* @example
|
|
1270
|
+
* 4
|
|
1271
|
+
*/
|
|
1272
|
+
parameter4: string;
|
|
1273
|
+
// 5
|
|
1274
|
+
/**
|
|
1275
|
+
* @example
|
|
1276
|
+
* 5
|
|
1277
|
+
*/
|
|
1278
|
+
parameter5: string;
|
|
1279
|
+
// 6
|
|
1280
|
+
/**
|
|
1281
|
+
* @example
|
|
1282
|
+
* 6
|
|
1283
|
+
*/
|
|
1284
|
+
parameter6: string;
|
|
1285
|
+
// 7
|
|
1286
|
+
/**
|
|
1287
|
+
* @example
|
|
1288
|
+
* 7
|
|
1289
|
+
*/
|
|
1290
|
+
parameter7: string;
|
|
1291
|
+
// 8
|
|
1292
|
+
/**
|
|
1293
|
+
* @example
|
|
1294
|
+
* 8
|
|
1295
|
+
*/
|
|
1296
|
+
parameter8: string;
|
|
1297
|
+
// 9
|
|
1298
|
+
/**
|
|
1299
|
+
* @example
|
|
1300
|
+
* 9
|
|
1301
|
+
*/
|
|
1302
|
+
parameter9: string;
|
|
1303
|
+
// 10
|
|
1304
|
+
/**
|
|
1305
|
+
* @example
|
|
1306
|
+
* 10
|
|
1307
|
+
*/
|
|
1308
|
+
parameter10: string;
|
|
1309
|
+
static names(): { [key: string]: string } {
|
|
1310
|
+
return {
|
|
1311
|
+
parameter1: 'parameter_1',
|
|
1312
|
+
parameter2: 'parameter_2',
|
|
1313
|
+
parameter3: 'parameter_3',
|
|
1314
|
+
parameter4: 'parameter_4',
|
|
1315
|
+
parameter5: 'parameter_5',
|
|
1316
|
+
parameter6: 'parameter_6',
|
|
1317
|
+
parameter7: 'parameter_7',
|
|
1318
|
+
parameter8: 'parameter_8',
|
|
1319
|
+
parameter9: 'parameter_9',
|
|
1320
|
+
parameter10: 'parameter_10',
|
|
1321
|
+
};
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
static types(): { [key: string]: any } {
|
|
1325
|
+
return {
|
|
1326
|
+
parameter1: 'string',
|
|
1327
|
+
parameter2: 'string',
|
|
1328
|
+
parameter3: 'string',
|
|
1329
|
+
parameter4: 'string',
|
|
1330
|
+
parameter5: 'string',
|
|
1331
|
+
parameter6: 'string',
|
|
1332
|
+
parameter7: 'string',
|
|
1333
|
+
parameter8: 'string',
|
|
1334
|
+
parameter9: 'string',
|
|
1335
|
+
parameter10: 'string',
|
|
1336
|
+
};
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
constructor(map?: { [key: string]: any }) {
|
|
1340
|
+
super(map);
|
|
1341
|
+
}
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
// 自动化测试创建(勿删)
|
|
1345
|
+
export class TestsT extends $tea.Model {
|
|
1346
|
+
static names(): { [key: string]: string } {
|
|
1347
|
+
return {
|
|
1348
|
+
};
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
static types(): { [key: string]: any } {
|
|
1352
|
+
return {
|
|
1353
|
+
};
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
constructor(map?: { [key: string]: any }) {
|
|
1357
|
+
super(map);
|
|
1358
|
+
}
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
// groupA分组结构体
|
|
1362
|
+
export class GroupAClass extends $tea.Model {
|
|
1363
|
+
// -
|
|
1364
|
+
/**
|
|
1365
|
+
* @example
|
|
1366
|
+
* -
|
|
1367
|
+
*/
|
|
1368
|
+
productInstanceId?: string;
|
|
1369
|
+
// 防伪码类型
|
|
1370
|
+
/**
|
|
1371
|
+
* @example
|
|
1372
|
+
* 103001
|
|
1373
|
+
*/
|
|
1374
|
+
codeType: string;
|
|
1375
|
+
// 防伪码码值
|
|
1376
|
+
/**
|
|
1377
|
+
* @example
|
|
1378
|
+
* 600011111
|
|
1379
|
+
*/
|
|
1380
|
+
code: string;
|
|
1381
|
+
static names(): { [key: string]: string } {
|
|
1382
|
+
return {
|
|
1383
|
+
productInstanceId: 'product_instance_id',
|
|
1384
|
+
codeType: 'code_type',
|
|
1385
|
+
code: 'code',
|
|
1386
|
+
};
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
static types(): { [key: string]: any } {
|
|
1390
|
+
return {
|
|
1391
|
+
productInstanceId: 'string',
|
|
1392
|
+
codeType: 'string',
|
|
1393
|
+
code: 'string',
|
|
1394
|
+
};
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
constructor(map?: { [key: string]: any }) {
|
|
1398
|
+
super(map);
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
// 自动化测试创建(用于测试编辑功能,勿删)
|
|
1403
|
+
export class AbcdEfgh extends $tea.Model {
|
|
1404
|
+
static names(): { [key: string]: string } {
|
|
1405
|
+
return {
|
|
1406
|
+
};
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
static types(): { [key: string]: any } {
|
|
1410
|
+
return {
|
|
1411
|
+
};
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
constructor(map?: { [key: string]: any }) {
|
|
1415
|
+
super(map);
|
|
1416
|
+
}
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
// 用于测试预发ob的同步_已编辑
|
|
1420
|
+
export class PreTestUse extends $tea.Model {
|
|
1421
|
+
// 1
|
|
1422
|
+
/**
|
|
1423
|
+
* @example
|
|
1424
|
+
* 1
|
|
1425
|
+
*/
|
|
1426
|
+
param1: string;
|
|
1427
|
+
// 11
|
|
1428
|
+
/**
|
|
1429
|
+
* @example
|
|
1430
|
+
* 11
|
|
1431
|
+
*/
|
|
1432
|
+
param2: number;
|
|
1433
|
+
// boolean
|
|
1434
|
+
/**
|
|
1435
|
+
* @example
|
|
1436
|
+
* true, false
|
|
1437
|
+
*/
|
|
1438
|
+
param3: boolean;
|
|
1439
|
+
static names(): { [key: string]: string } {
|
|
1440
|
+
return {
|
|
1441
|
+
param1: 'param_1',
|
|
1442
|
+
param2: 'param_2',
|
|
1443
|
+
param3: 'param_3',
|
|
1444
|
+
};
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
static types(): { [key: string]: any } {
|
|
1448
|
+
return {
|
|
1449
|
+
param1: 'string',
|
|
1450
|
+
param2: 'number',
|
|
1451
|
+
param3: 'boolean',
|
|
1452
|
+
};
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
constructor(map?: { [key: string]: any }) {
|
|
1456
|
+
super(map);
|
|
1457
|
+
}
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
// 键值对
|
|
1461
|
+
export class XNameValuePair extends $tea.Model {
|
|
1462
|
+
// 键名
|
|
1463
|
+
/**
|
|
1464
|
+
* @example
|
|
1465
|
+
* key
|
|
1466
|
+
*/
|
|
1467
|
+
name: string;
|
|
1468
|
+
// 键值
|
|
1469
|
+
/**
|
|
1470
|
+
* @example
|
|
1471
|
+
* value
|
|
1472
|
+
*/
|
|
1473
|
+
value: string;
|
|
1474
|
+
static names(): { [key: string]: string } {
|
|
1475
|
+
return {
|
|
1476
|
+
name: 'name',
|
|
1477
|
+
value: 'value',
|
|
1478
|
+
};
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
static types(): { [key: string]: any } {
|
|
1482
|
+
return {
|
|
1483
|
+
name: 'string',
|
|
1484
|
+
value: 'string',
|
|
1485
|
+
};
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
constructor(map?: { [key: string]: any }) {
|
|
1489
|
+
super(map);
|
|
1490
|
+
}
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
export class TransferDatanetworkMeteringAaaRequest extends $tea.Model {
|
|
1494
|
+
// OAuth模式下的授权token
|
|
1495
|
+
authToken?: string;
|
|
1496
|
+
productInstanceId?: string;
|
|
1497
|
+
static names(): { [key: string]: string } {
|
|
1498
|
+
return {
|
|
1499
|
+
authToken: 'auth_token',
|
|
1500
|
+
productInstanceId: 'product_instance_id',
|
|
1501
|
+
};
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
static types(): { [key: string]: any } {
|
|
1505
|
+
return {
|
|
1506
|
+
authToken: 'string',
|
|
1507
|
+
productInstanceId: 'string',
|
|
1508
|
+
};
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
constructor(map?: { [key: string]: any }) {
|
|
1512
|
+
super(map);
|
|
1513
|
+
}
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
export class TransferDatanetworkMeteringAaaResponse extends $tea.Model {
|
|
1517
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1518
|
+
reqMsgId?: string;
|
|
1519
|
+
// 结果码,一般OK表示调用成功
|
|
1520
|
+
resultCode?: string;
|
|
1521
|
+
// 异常信息的文本描述
|
|
1522
|
+
resultMsg?: string;
|
|
1523
|
+
static names(): { [key: string]: string } {
|
|
1524
|
+
return {
|
|
1525
|
+
reqMsgId: 'req_msg_id',
|
|
1526
|
+
resultCode: 'result_code',
|
|
1527
|
+
resultMsg: 'result_msg',
|
|
1528
|
+
};
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
static types(): { [key: string]: any } {
|
|
1532
|
+
return {
|
|
1533
|
+
reqMsgId: 'string',
|
|
1534
|
+
resultCode: 'string',
|
|
1535
|
+
resultMsg: 'string',
|
|
1536
|
+
};
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
constructor(map?: { [key: string]: any }) {
|
|
1540
|
+
super(map);
|
|
1541
|
+
}
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
export class StatusGatewayCheckRequest extends $tea.Model {
|
|
1545
|
+
// OAuth模式下的授权token
|
|
1546
|
+
authToken?: string;
|
|
1547
|
+
productInstanceId?: string;
|
|
1548
|
+
static names(): { [key: string]: string } {
|
|
1549
|
+
return {
|
|
1550
|
+
authToken: 'auth_token',
|
|
1551
|
+
productInstanceId: 'product_instance_id',
|
|
1552
|
+
};
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
static types(): { [key: string]: any } {
|
|
1556
|
+
return {
|
|
1557
|
+
authToken: 'string',
|
|
1558
|
+
productInstanceId: 'string',
|
|
1559
|
+
};
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
constructor(map?: { [key: string]: any }) {
|
|
1563
|
+
super(map);
|
|
1564
|
+
}
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
export class StatusGatewayCheckResponse extends $tea.Model {
|
|
1568
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1569
|
+
reqMsgId?: string;
|
|
1570
|
+
// 结果码,一般OK表示调用成功
|
|
1571
|
+
resultCode?: string;
|
|
1572
|
+
// 异常信息的文本描述
|
|
1573
|
+
resultMsg?: string;
|
|
1574
|
+
// OK
|
|
1575
|
+
status?: string;
|
|
1576
|
+
static names(): { [key: string]: string } {
|
|
1577
|
+
return {
|
|
1578
|
+
reqMsgId: 'req_msg_id',
|
|
1579
|
+
resultCode: 'result_code',
|
|
1580
|
+
resultMsg: 'result_msg',
|
|
1581
|
+
status: 'status',
|
|
1582
|
+
};
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
static types(): { [key: string]: any } {
|
|
1586
|
+
return {
|
|
1587
|
+
reqMsgId: 'string',
|
|
1588
|
+
resultCode: 'string',
|
|
1589
|
+
resultMsg: 'string',
|
|
1590
|
+
status: 'string',
|
|
1591
|
+
};
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
constructor(map?: { [key: string]: any }) {
|
|
1595
|
+
super(map);
|
|
1596
|
+
}
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
export class EchoGatewayCheckRequest extends $tea.Model {
|
|
1600
|
+
// OAuth模式下的授权token
|
|
1601
|
+
authToken?: string;
|
|
1602
|
+
productInstanceId?: string;
|
|
1603
|
+
// input_array
|
|
1604
|
+
inputArray: TestStruct[];
|
|
1605
|
+
// file_id
|
|
1606
|
+
/**
|
|
1607
|
+
* @remarks
|
|
1608
|
+
* 待上传文件
|
|
1609
|
+
*/
|
|
1610
|
+
fileObject?: Readable;
|
|
1611
|
+
/**
|
|
1612
|
+
* @remarks
|
|
1613
|
+
* 待上传文件名
|
|
1614
|
+
*/
|
|
1615
|
+
fileObjectName?: string;
|
|
1616
|
+
fileId: string;
|
|
1617
|
+
// 1
|
|
1618
|
+
inputInt: number;
|
|
1619
|
+
// 测试一下
|
|
1620
|
+
fileName: string;
|
|
1621
|
+
static names(): { [key: string]: string } {
|
|
1622
|
+
return {
|
|
1623
|
+
authToken: 'auth_token',
|
|
1624
|
+
productInstanceId: 'product_instance_id',
|
|
1625
|
+
inputArray: 'input_array',
|
|
1626
|
+
fileObject: 'fileObject',
|
|
1627
|
+
fileObjectName: 'fileObjectName',
|
|
1628
|
+
fileId: 'file_id',
|
|
1629
|
+
inputInt: 'input_int',
|
|
1630
|
+
fileName: 'file_name',
|
|
1631
|
+
};
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
static types(): { [key: string]: any } {
|
|
1635
|
+
return {
|
|
1636
|
+
authToken: 'string',
|
|
1637
|
+
productInstanceId: 'string',
|
|
1638
|
+
inputArray: { 'type': 'array', 'itemType': TestStruct },
|
|
1639
|
+
fileObject: 'Readable',
|
|
1640
|
+
fileObjectName: 'string',
|
|
1641
|
+
fileId: 'string',
|
|
1642
|
+
inputInt: 'number',
|
|
1643
|
+
fileName: 'string',
|
|
1644
|
+
};
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
constructor(map?: { [key: string]: any }) {
|
|
1648
|
+
super(map);
|
|
1649
|
+
}
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
export class EchoGatewayCheckResponse extends $tea.Model {
|
|
1653
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1654
|
+
reqMsgId?: string;
|
|
1655
|
+
// 结果码,一般OK表示调用成功
|
|
1656
|
+
resultCode?: string;
|
|
1657
|
+
// 异常信息的文本描述
|
|
1658
|
+
resultMsg?: string;
|
|
1659
|
+
// output_demo测试
|
|
1660
|
+
outputDemo?: DemoClass;
|
|
1661
|
+
// output_string
|
|
1662
|
+
outputString?: string;
|
|
1663
|
+
// file_url
|
|
1664
|
+
fileUrl?: string;
|
|
1665
|
+
static names(): { [key: string]: string } {
|
|
1666
|
+
return {
|
|
1667
|
+
reqMsgId: 'req_msg_id',
|
|
1668
|
+
resultCode: 'result_code',
|
|
1669
|
+
resultMsg: 'result_msg',
|
|
1670
|
+
outputDemo: 'output_demo',
|
|
1671
|
+
outputString: 'output_string',
|
|
1672
|
+
fileUrl: 'file_url',
|
|
1673
|
+
};
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
static types(): { [key: string]: any } {
|
|
1677
|
+
return {
|
|
1678
|
+
reqMsgId: 'string',
|
|
1679
|
+
resultCode: 'string',
|
|
1680
|
+
resultMsg: 'string',
|
|
1681
|
+
outputDemo: DemoClass,
|
|
1682
|
+
outputString: 'string',
|
|
1683
|
+
fileUrl: 'string',
|
|
1684
|
+
};
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
constructor(map?: { [key: string]: any }) {
|
|
1688
|
+
super(map);
|
|
1689
|
+
}
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
export class QueryGatewayMyRequest extends $tea.Model {
|
|
1693
|
+
// OAuth模式下的授权token
|
|
1694
|
+
authToken?: string;
|
|
1695
|
+
productInstanceId?: string;
|
|
1696
|
+
// 字符串类型入参
|
|
1697
|
+
test1: string;
|
|
1698
|
+
// 数字入参
|
|
1699
|
+
test2: number;
|
|
1700
|
+
// 布尔值入参
|
|
1701
|
+
test3: boolean;
|
|
1702
|
+
static names(): { [key: string]: string } {
|
|
1703
|
+
return {
|
|
1704
|
+
authToken: 'auth_token',
|
|
1705
|
+
productInstanceId: 'product_instance_id',
|
|
1706
|
+
test1: 'test_1',
|
|
1707
|
+
test2: 'test_2',
|
|
1708
|
+
test3: 'test_3',
|
|
1709
|
+
};
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
static types(): { [key: string]: any } {
|
|
1713
|
+
return {
|
|
1714
|
+
authToken: 'string',
|
|
1715
|
+
productInstanceId: 'string',
|
|
1716
|
+
test1: 'string',
|
|
1717
|
+
test2: 'number',
|
|
1718
|
+
test3: 'boolean',
|
|
1719
|
+
};
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
constructor(map?: { [key: string]: any }) {
|
|
1723
|
+
super(map);
|
|
1724
|
+
}
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
export class QueryGatewayMyResponse extends $tea.Model {
|
|
1728
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1729
|
+
reqMsgId?: string;
|
|
1730
|
+
// 结果码,一般OK表示调用成功
|
|
1731
|
+
resultCode?: string;
|
|
1732
|
+
// 异常信息的文本描述
|
|
1733
|
+
resultMsg?: string;
|
|
1734
|
+
static names(): { [key: string]: string } {
|
|
1735
|
+
return {
|
|
1736
|
+
reqMsgId: 'req_msg_id',
|
|
1737
|
+
resultCode: 'result_code',
|
|
1738
|
+
resultMsg: 'result_msg',
|
|
1739
|
+
};
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
static types(): { [key: string]: any } {
|
|
1743
|
+
return {
|
|
1744
|
+
reqMsgId: 'string',
|
|
1745
|
+
resultCode: 'string',
|
|
1746
|
+
resultMsg: 'string',
|
|
1747
|
+
};
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
constructor(map?: { [key: string]: any }) {
|
|
1751
|
+
super(map);
|
|
1752
|
+
}
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
export class QueryGatewayCheckEchotimeoutRequest extends $tea.Model {
|
|
1756
|
+
// OAuth模式下的授权token
|
|
1757
|
+
authToken?: string;
|
|
1758
|
+
productInstanceId?: string;
|
|
1759
|
+
// 10
|
|
1760
|
+
timeout?: string;
|
|
1761
|
+
static names(): { [key: string]: string } {
|
|
1762
|
+
return {
|
|
1763
|
+
authToken: 'auth_token',
|
|
1764
|
+
productInstanceId: 'product_instance_id',
|
|
1765
|
+
timeout: 'timeout',
|
|
1766
|
+
};
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1769
|
+
static types(): { [key: string]: any } {
|
|
1770
|
+
return {
|
|
1771
|
+
authToken: 'string',
|
|
1772
|
+
productInstanceId: 'string',
|
|
1773
|
+
timeout: 'string',
|
|
1774
|
+
};
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
constructor(map?: { [key: string]: any }) {
|
|
1778
|
+
super(map);
|
|
1779
|
+
}
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
export class QueryGatewayCheckEchotimeoutResponse extends $tea.Model {
|
|
1783
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1784
|
+
reqMsgId?: string;
|
|
1785
|
+
// 结果码,一般OK表示调用成功
|
|
1786
|
+
resultCode?: string;
|
|
1787
|
+
// 异常信息的文本描述
|
|
1788
|
+
resultMsg?: string;
|
|
1789
|
+
// 222
|
|
1790
|
+
stauts?: string;
|
|
1791
|
+
// ok
|
|
1792
|
+
msg?: string;
|
|
1793
|
+
static names(): { [key: string]: string } {
|
|
1794
|
+
return {
|
|
1795
|
+
reqMsgId: 'req_msg_id',
|
|
1796
|
+
resultCode: 'result_code',
|
|
1797
|
+
resultMsg: 'result_msg',
|
|
1798
|
+
stauts: 'stauts',
|
|
1799
|
+
msg: 'msg',
|
|
1800
|
+
};
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
static types(): { [key: string]: any } {
|
|
1804
|
+
return {
|
|
1805
|
+
reqMsgId: 'string',
|
|
1806
|
+
resultCode: 'string',
|
|
1807
|
+
resultMsg: 'string',
|
|
1808
|
+
stauts: 'string',
|
|
1809
|
+
msg: 'string',
|
|
1810
|
+
};
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
constructor(map?: { [key: string]: any }) {
|
|
1814
|
+
super(map);
|
|
1815
|
+
}
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
export class QueryGatewayCheckEchotenRequest extends $tea.Model {
|
|
1819
|
+
// OAuth模式下的授权token
|
|
1820
|
+
authToken?: string;
|
|
1821
|
+
productInstanceId?: string;
|
|
1822
|
+
static names(): { [key: string]: string } {
|
|
1823
|
+
return {
|
|
1824
|
+
authToken: 'auth_token',
|
|
1825
|
+
productInstanceId: 'product_instance_id',
|
|
1826
|
+
};
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
static types(): { [key: string]: any } {
|
|
1830
|
+
return {
|
|
1831
|
+
authToken: 'string',
|
|
1832
|
+
productInstanceId: 'string',
|
|
1833
|
+
};
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
constructor(map?: { [key: string]: any }) {
|
|
1837
|
+
super(map);
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
export class QueryGatewayCheckEchotenResponse extends $tea.Model {
|
|
1842
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1843
|
+
reqMsgId?: string;
|
|
1844
|
+
// 结果码,一般OK表示调用成功
|
|
1845
|
+
resultCode?: string;
|
|
1846
|
+
// 异常信息的文本描述
|
|
1847
|
+
resultMsg?: string;
|
|
1848
|
+
// 222
|
|
1849
|
+
status?: string;
|
|
1850
|
+
// ok
|
|
1851
|
+
msg?: string;
|
|
1852
|
+
static names(): { [key: string]: string } {
|
|
1853
|
+
return {
|
|
1854
|
+
reqMsgId: 'req_msg_id',
|
|
1855
|
+
resultCode: 'result_code',
|
|
1856
|
+
resultMsg: 'result_msg',
|
|
1857
|
+
status: 'status',
|
|
1858
|
+
msg: 'msg',
|
|
1859
|
+
};
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
static types(): { [key: string]: any } {
|
|
1863
|
+
return {
|
|
1864
|
+
reqMsgId: 'string',
|
|
1865
|
+
resultCode: 'string',
|
|
1866
|
+
resultMsg: 'string',
|
|
1867
|
+
status: 'string',
|
|
1868
|
+
msg: 'string',
|
|
1869
|
+
};
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
constructor(map?: { [key: string]: any }) {
|
|
1873
|
+
super(map);
|
|
1874
|
+
}
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
export class QueryAdAsdAsdRequest extends $tea.Model {
|
|
1878
|
+
// OAuth模式下的授权token
|
|
1879
|
+
authToken?: string;
|
|
1880
|
+
productInstanceId?: string;
|
|
1881
|
+
// 1111
|
|
1882
|
+
bnumber: string;
|
|
1883
|
+
static names(): { [key: string]: string } {
|
|
1884
|
+
return {
|
|
1885
|
+
authToken: 'auth_token',
|
|
1886
|
+
productInstanceId: 'product_instance_id',
|
|
1887
|
+
bnumber: 'bnumber',
|
|
1888
|
+
};
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
static types(): { [key: string]: any } {
|
|
1892
|
+
return {
|
|
1893
|
+
authToken: 'string',
|
|
1894
|
+
productInstanceId: 'string',
|
|
1895
|
+
bnumber: 'string',
|
|
1896
|
+
};
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
constructor(map?: { [key: string]: any }) {
|
|
1900
|
+
super(map);
|
|
1901
|
+
}
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
export class QueryAdAsdAsdResponse extends $tea.Model {
|
|
1905
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1906
|
+
reqMsgId?: string;
|
|
1907
|
+
// 结果码,一般OK表示调用成功
|
|
1908
|
+
resultCode?: string;
|
|
1909
|
+
// 异常信息的文本描述
|
|
1910
|
+
resultMsg?: string;
|
|
1911
|
+
static names(): { [key: string]: string } {
|
|
1912
|
+
return {
|
|
1913
|
+
reqMsgId: 'req_msg_id',
|
|
1914
|
+
resultCode: 'result_code',
|
|
1915
|
+
resultMsg: 'result_msg',
|
|
1916
|
+
};
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
static types(): { [key: string]: any } {
|
|
1920
|
+
return {
|
|
1921
|
+
reqMsgId: 'string',
|
|
1922
|
+
resultCode: 'string',
|
|
1923
|
+
resultMsg: 'string',
|
|
1924
|
+
};
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
constructor(map?: { [key: string]: any }) {
|
|
1928
|
+
super(map);
|
|
1929
|
+
}
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
export class InitGatewayRoadRequest extends $tea.Model {
|
|
1933
|
+
// OAuth模式下的授权token
|
|
1934
|
+
authToken?: string;
|
|
1935
|
+
productInstanceId?: string;
|
|
1936
|
+
// 请求编号
|
|
1937
|
+
count: number;
|
|
1938
|
+
// 请求时间
|
|
1939
|
+
time: string;
|
|
1940
|
+
// 请求描述
|
|
1941
|
+
desc?: string;
|
|
1942
|
+
// 操作人
|
|
1943
|
+
operator: string;
|
|
1944
|
+
static names(): { [key: string]: string } {
|
|
1945
|
+
return {
|
|
1946
|
+
authToken: 'auth_token',
|
|
1947
|
+
productInstanceId: 'product_instance_id',
|
|
1948
|
+
count: 'count',
|
|
1949
|
+
time: 'time',
|
|
1950
|
+
desc: 'desc',
|
|
1951
|
+
operator: 'operator',
|
|
1952
|
+
};
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
static types(): { [key: string]: any } {
|
|
1956
|
+
return {
|
|
1957
|
+
authToken: 'string',
|
|
1958
|
+
productInstanceId: 'string',
|
|
1959
|
+
count: 'number',
|
|
1960
|
+
time: 'string',
|
|
1961
|
+
desc: 'string',
|
|
1962
|
+
operator: 'string',
|
|
1963
|
+
};
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
constructor(map?: { [key: string]: any }) {
|
|
1967
|
+
super(map);
|
|
1968
|
+
}
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
export class InitGatewayRoadResponse extends $tea.Model {
|
|
1972
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1973
|
+
reqMsgId?: string;
|
|
1974
|
+
// 结果码,一般OK表示调用成功
|
|
1975
|
+
resultCode?: string;
|
|
1976
|
+
// 异常信息的文本描述
|
|
1977
|
+
resultMsg?: string;
|
|
1978
|
+
// 返回desc
|
|
1979
|
+
initDesc?: string;
|
|
1980
|
+
// 组合返回请求结果
|
|
1981
|
+
initPack?: InitPack;
|
|
1982
|
+
static names(): { [key: string]: string } {
|
|
1983
|
+
return {
|
|
1984
|
+
reqMsgId: 'req_msg_id',
|
|
1985
|
+
resultCode: 'result_code',
|
|
1986
|
+
resultMsg: 'result_msg',
|
|
1987
|
+
initDesc: 'init_desc',
|
|
1988
|
+
initPack: 'init_pack',
|
|
1989
|
+
};
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
static types(): { [key: string]: any } {
|
|
1993
|
+
return {
|
|
1994
|
+
reqMsgId: 'string',
|
|
1995
|
+
resultCode: 'string',
|
|
1996
|
+
resultMsg: 'string',
|
|
1997
|
+
initDesc: 'string',
|
|
1998
|
+
initPack: InitPack,
|
|
1999
|
+
};
|
|
2000
|
+
}
|
|
2001
|
+
|
|
2002
|
+
constructor(map?: { [key: string]: any }) {
|
|
2003
|
+
super(map);
|
|
2004
|
+
}
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
export class QueryGatewayEmbedRequest extends $tea.Model {
|
|
2008
|
+
// OAuth模式下的授权token
|
|
2009
|
+
authToken?: string;
|
|
2010
|
+
productInstanceId?: string;
|
|
2011
|
+
// 实例参数
|
|
2012
|
+
timeout?: string;
|
|
2013
|
+
static names(): { [key: string]: string } {
|
|
2014
|
+
return {
|
|
2015
|
+
authToken: 'auth_token',
|
|
2016
|
+
productInstanceId: 'product_instance_id',
|
|
2017
|
+
timeout: 'timeout',
|
|
2018
|
+
};
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
static types(): { [key: string]: any } {
|
|
2022
|
+
return {
|
|
2023
|
+
authToken: 'string',
|
|
2024
|
+
productInstanceId: 'string',
|
|
2025
|
+
timeout: 'string',
|
|
243
2026
|
};
|
|
244
2027
|
}
|
|
245
2028
|
|
|
@@ -248,15 +2031,26 @@ export class NameAndAge extends $tea.Model {
|
|
|
248
2031
|
}
|
|
249
2032
|
}
|
|
250
2033
|
|
|
251
|
-
|
|
252
|
-
|
|
2034
|
+
export class QueryGatewayEmbedResponse extends $tea.Model {
|
|
2035
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
2036
|
+
reqMsgId?: string;
|
|
2037
|
+
// 结果码,一般OK表示调用成功
|
|
2038
|
+
resultCode?: string;
|
|
2039
|
+
// 异常信息的文本描述
|
|
2040
|
+
resultMsg?: string;
|
|
253
2041
|
static names(): { [key: string]: string } {
|
|
254
2042
|
return {
|
|
2043
|
+
reqMsgId: 'req_msg_id',
|
|
2044
|
+
resultCode: 'result_code',
|
|
2045
|
+
resultMsg: 'result_msg',
|
|
255
2046
|
};
|
|
256
2047
|
}
|
|
257
2048
|
|
|
258
2049
|
static types(): { [key: string]: any } {
|
|
259
2050
|
return {
|
|
2051
|
+
reqMsgId: 'string',
|
|
2052
|
+
resultCode: 'string',
|
|
2053
|
+
resultMsg: 'string',
|
|
260
2054
|
};
|
|
261
2055
|
}
|
|
262
2056
|
|
|
@@ -265,27 +2059,37 @@ export class GongXiangnengli extends $tea.Model {
|
|
|
265
2059
|
}
|
|
266
2060
|
}
|
|
267
2061
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
2062
|
+
export class UpdateGatewayRoadRequest extends $tea.Model {
|
|
2063
|
+
// OAuth模式下的授权token
|
|
2064
|
+
authToken?: string;
|
|
2065
|
+
productInstanceId?: string;
|
|
2066
|
+
// 请求时间
|
|
271
2067
|
time: string;
|
|
272
2068
|
// 操作人
|
|
273
2069
|
operator: string;
|
|
274
2070
|
// 请求编号
|
|
275
2071
|
count: number;
|
|
2072
|
+
// 原信息
|
|
2073
|
+
originInfo: string;
|
|
276
2074
|
static names(): { [key: string]: string } {
|
|
277
2075
|
return {
|
|
2076
|
+
authToken: 'auth_token',
|
|
2077
|
+
productInstanceId: 'product_instance_id',
|
|
278
2078
|
time: 'time',
|
|
279
2079
|
operator: 'operator',
|
|
280
2080
|
count: 'count',
|
|
2081
|
+
originInfo: 'origin_info',
|
|
281
2082
|
};
|
|
282
2083
|
}
|
|
283
2084
|
|
|
284
2085
|
static types(): { [key: string]: any } {
|
|
285
2086
|
return {
|
|
2087
|
+
authToken: 'string',
|
|
2088
|
+
productInstanceId: 'string',
|
|
286
2089
|
time: 'string',
|
|
287
2090
|
operator: 'string',
|
|
288
2091
|
count: 'number',
|
|
2092
|
+
originInfo: 'string',
|
|
289
2093
|
};
|
|
290
2094
|
}
|
|
291
2095
|
|
|
@@ -294,19 +2098,34 @@ export class InitParks extends $tea.Model {
|
|
|
294
2098
|
}
|
|
295
2099
|
}
|
|
296
2100
|
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
2101
|
+
export class UpdateGatewayRoadResponse extends $tea.Model {
|
|
2102
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
2103
|
+
reqMsgId?: string;
|
|
2104
|
+
// 结果码,一般OK表示调用成功
|
|
2105
|
+
resultCode?: string;
|
|
2106
|
+
// 异常信息的文本描述
|
|
2107
|
+
resultMsg?: string;
|
|
2108
|
+
// 更新后返回info
|
|
2109
|
+
updInfo?: string;
|
|
2110
|
+
// 组合返回请求结果
|
|
2111
|
+
updPack?: InitPack;
|
|
301
2112
|
static names(): { [key: string]: string } {
|
|
302
2113
|
return {
|
|
303
|
-
|
|
2114
|
+
reqMsgId: 'req_msg_id',
|
|
2115
|
+
resultCode: 'result_code',
|
|
2116
|
+
resultMsg: 'result_msg',
|
|
2117
|
+
updInfo: 'upd_info',
|
|
2118
|
+
updPack: 'upd_pack',
|
|
304
2119
|
};
|
|
305
2120
|
}
|
|
306
2121
|
|
|
307
2122
|
static types(): { [key: string]: any } {
|
|
308
2123
|
return {
|
|
309
|
-
|
|
2124
|
+
reqMsgId: 'string',
|
|
2125
|
+
resultCode: 'string',
|
|
2126
|
+
resultMsg: 'string',
|
|
2127
|
+
updInfo: 'string',
|
|
2128
|
+
updPack: InitPack,
|
|
310
2129
|
};
|
|
311
2130
|
}
|
|
312
2131
|
|
|
@@ -315,27 +2134,25 @@ export class InitPark extends $tea.Model {
|
|
|
315
2134
|
}
|
|
316
2135
|
}
|
|
317
2136
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
//
|
|
323
|
-
|
|
324
|
-
// 编号
|
|
325
|
-
count: number;
|
|
2137
|
+
export class QueryGatewayRoadRequest extends $tea.Model {
|
|
2138
|
+
// OAuth模式下的授权token
|
|
2139
|
+
authToken?: string;
|
|
2140
|
+
productInstanceId?: string;
|
|
2141
|
+
// 查询输入
|
|
2142
|
+
data: string;
|
|
326
2143
|
static names(): { [key: string]: string } {
|
|
327
2144
|
return {
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
2145
|
+
authToken: 'auth_token',
|
|
2146
|
+
productInstanceId: 'product_instance_id',
|
|
2147
|
+
data: 'data',
|
|
331
2148
|
};
|
|
332
2149
|
}
|
|
333
2150
|
|
|
334
2151
|
static types(): { [key: string]: any } {
|
|
335
2152
|
return {
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
2153
|
+
authToken: 'string',
|
|
2154
|
+
productInstanceId: 'string',
|
|
2155
|
+
data: 'string',
|
|
339
2156
|
};
|
|
340
2157
|
}
|
|
341
2158
|
|
|
@@ -344,27 +2161,30 @@ export class InitPack extends $tea.Model {
|
|
|
344
2161
|
}
|
|
345
2162
|
}
|
|
346
2163
|
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
2164
|
+
export class QueryGatewayRoadResponse extends $tea.Model {
|
|
2165
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
2166
|
+
reqMsgId?: string;
|
|
2167
|
+
// 结果码,一般OK表示调用成功
|
|
2168
|
+
resultCode?: string;
|
|
2169
|
+
// 异常信息的文本描述
|
|
2170
|
+
resultMsg?: string;
|
|
2171
|
+
// 查询返回
|
|
2172
|
+
queryResult?: string;
|
|
355
2173
|
static names(): { [key: string]: string } {
|
|
356
2174
|
return {
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
2175
|
+
reqMsgId: 'req_msg_id',
|
|
2176
|
+
resultCode: 'result_code',
|
|
2177
|
+
resultMsg: 'result_msg',
|
|
2178
|
+
queryResult: 'query_result',
|
|
360
2179
|
};
|
|
361
2180
|
}
|
|
362
2181
|
|
|
363
2182
|
static types(): { [key: string]: any } {
|
|
364
2183
|
return {
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
2184
|
+
reqMsgId: 'string',
|
|
2185
|
+
resultCode: 'string',
|
|
2186
|
+
resultMsg: 'string',
|
|
2187
|
+
queryResult: 'string',
|
|
368
2188
|
};
|
|
369
2189
|
}
|
|
370
2190
|
|
|
@@ -373,23 +2193,57 @@ export class TestPark extends $tea.Model {
|
|
|
373
2193
|
}
|
|
374
2194
|
}
|
|
375
2195
|
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
//
|
|
381
|
-
|
|
2196
|
+
export class ExecGatewayRoadRequest extends $tea.Model {
|
|
2197
|
+
// OAuth模式下的授权token
|
|
2198
|
+
authToken?: string;
|
|
2199
|
+
productInstanceId?: string;
|
|
2200
|
+
// 计算值输入
|
|
2201
|
+
execNum: number;
|
|
382
2202
|
static names(): { [key: string]: string } {
|
|
383
2203
|
return {
|
|
384
|
-
|
|
385
|
-
|
|
2204
|
+
authToken: 'auth_token',
|
|
2205
|
+
productInstanceId: 'product_instance_id',
|
|
2206
|
+
execNum: 'exec_num',
|
|
386
2207
|
};
|
|
387
2208
|
}
|
|
388
2209
|
|
|
389
2210
|
static types(): { [key: string]: any } {
|
|
390
2211
|
return {
|
|
391
|
-
|
|
392
|
-
|
|
2212
|
+
authToken: 'string',
|
|
2213
|
+
productInstanceId: 'string',
|
|
2214
|
+
execNum: 'number',
|
|
2215
|
+
};
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
constructor(map?: { [key: string]: any }) {
|
|
2219
|
+
super(map);
|
|
2220
|
+
}
|
|
2221
|
+
}
|
|
2222
|
+
|
|
2223
|
+
export class ExecGatewayRoadResponse extends $tea.Model {
|
|
2224
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
2225
|
+
reqMsgId?: string;
|
|
2226
|
+
// 结果码,一般OK表示调用成功
|
|
2227
|
+
resultCode?: string;
|
|
2228
|
+
// 异常信息的文本描述
|
|
2229
|
+
resultMsg?: string;
|
|
2230
|
+
// 计算值返回
|
|
2231
|
+
execNumEcho?: number;
|
|
2232
|
+
static names(): { [key: string]: string } {
|
|
2233
|
+
return {
|
|
2234
|
+
reqMsgId: 'req_msg_id',
|
|
2235
|
+
resultCode: 'result_code',
|
|
2236
|
+
resultMsg: 'result_msg',
|
|
2237
|
+
execNumEcho: 'exec_num_echo',
|
|
2238
|
+
};
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2241
|
+
static types(): { [key: string]: any } {
|
|
2242
|
+
return {
|
|
2243
|
+
reqMsgId: 'string',
|
|
2244
|
+
resultCode: 'string',
|
|
2245
|
+
resultMsg: 'string',
|
|
2246
|
+
execNumEcho: 'number',
|
|
393
2247
|
};
|
|
394
2248
|
}
|
|
395
2249
|
|
|
@@ -398,42 +2252,17 @@ export class XNameValuePair extends $tea.Model {
|
|
|
398
2252
|
}
|
|
399
2253
|
}
|
|
400
2254
|
|
|
401
|
-
export class
|
|
2255
|
+
export class QueryLoadtestTimeThreeRequest extends $tea.Model {
|
|
402
2256
|
// OAuth模式下的授权token
|
|
403
2257
|
authToken?: string;
|
|
404
2258
|
productInstanceId?: string;
|
|
405
|
-
//
|
|
406
|
-
|
|
407
|
-
// Long型入参
|
|
408
|
-
inputNumber?: number;
|
|
409
|
-
// 布尔型入参
|
|
410
|
-
inputBoolean: boolean;
|
|
411
|
-
// ISO8601格式字符串:yyyy-MM-dd_T_HH:mm:ss_Z_
|
|
412
|
-
inputDate?: string;
|
|
413
|
-
// 字符串列表入参
|
|
414
|
-
inputStringList?: string[];
|
|
415
|
-
// 示例结构体入参
|
|
416
|
-
inputStruct: AbcDemoStruct;
|
|
417
|
-
// 结构体数组入参
|
|
418
|
-
inputStructList: AbcDemoStruct[];
|
|
419
|
-
// 123
|
|
420
|
-
fileObject?: Readable;
|
|
421
|
-
fileObjectName?: string;
|
|
422
|
-
fileId: string;
|
|
2259
|
+
// ms
|
|
2260
|
+
timeout: number;
|
|
423
2261
|
static names(): { [key: string]: string } {
|
|
424
2262
|
return {
|
|
425
2263
|
authToken: 'auth_token',
|
|
426
2264
|
productInstanceId: 'product_instance_id',
|
|
427
|
-
|
|
428
|
-
inputNumber: 'input_number',
|
|
429
|
-
inputBoolean: 'input_boolean',
|
|
430
|
-
inputDate: 'input_date',
|
|
431
|
-
inputStringList: 'input_string_list',
|
|
432
|
-
inputStruct: 'input_struct',
|
|
433
|
-
inputStructList: 'input_struct_list',
|
|
434
|
-
fileObject: 'fileObject',
|
|
435
|
-
fileObjectName: 'fileObjectName',
|
|
436
|
-
fileId: 'file_id',
|
|
2265
|
+
timeout: 'timeout',
|
|
437
2266
|
};
|
|
438
2267
|
}
|
|
439
2268
|
|
|
@@ -441,16 +2270,7 @@ export class PreviewDemoRequest extends $tea.Model {
|
|
|
441
2270
|
return {
|
|
442
2271
|
authToken: 'string',
|
|
443
2272
|
productInstanceId: 'string',
|
|
444
|
-
|
|
445
|
-
inputNumber: 'number',
|
|
446
|
-
inputBoolean: 'boolean',
|
|
447
|
-
inputDate: 'string',
|
|
448
|
-
inputStringList: { 'type': 'array', 'itemType': 'string' },
|
|
449
|
-
inputStruct: AbcDemoStruct,
|
|
450
|
-
inputStructList: { 'type': 'array', 'itemType': AbcDemoStruct },
|
|
451
|
-
fileObject: 'Readable',
|
|
452
|
-
fileObjectName: 'string',
|
|
453
|
-
fileId: 'string',
|
|
2273
|
+
timeout: 'number',
|
|
454
2274
|
};
|
|
455
2275
|
}
|
|
456
2276
|
|
|
@@ -459,39 +2279,24 @@ export class PreviewDemoRequest extends $tea.Model {
|
|
|
459
2279
|
}
|
|
460
2280
|
}
|
|
461
2281
|
|
|
462
|
-
export class
|
|
2282
|
+
export class QueryLoadtestTimeThreeResponse extends $tea.Model {
|
|
463
2283
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
464
2284
|
reqMsgId?: string;
|
|
465
2285
|
// 结果码,一般OK表示调用成功
|
|
466
2286
|
resultCode?: string;
|
|
467
2287
|
// 异常信息的文本描述
|
|
468
2288
|
resultMsg?: string;
|
|
469
|
-
//
|
|
470
|
-
|
|
471
|
-
//
|
|
472
|
-
|
|
473
|
-
// 布尔型回参
|
|
474
|
-
outputBoolean?: boolean;
|
|
475
|
-
// ISO8602格式字符串:yyyy-MM-dd_T_HH:mm:ss_Z_
|
|
476
|
-
outputDate?: string;
|
|
477
|
-
// 字符串数组
|
|
478
|
-
outputStringList?: string[];
|
|
479
|
-
// 结构体回参
|
|
480
|
-
outputStruct?: AbcDemoStruct;
|
|
481
|
-
// 结构体列表回参
|
|
482
|
-
outputStructList?: AbcDemoStruct[];
|
|
2289
|
+
// 200
|
|
2290
|
+
stauts?: string;
|
|
2291
|
+
// ok
|
|
2292
|
+
msg?: string;
|
|
483
2293
|
static names(): { [key: string]: string } {
|
|
484
2294
|
return {
|
|
485
2295
|
reqMsgId: 'req_msg_id',
|
|
486
2296
|
resultCode: 'result_code',
|
|
487
2297
|
resultMsg: 'result_msg',
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
outputBoolean: 'output_boolean',
|
|
491
|
-
outputDate: 'output_date',
|
|
492
|
-
outputStringList: 'output_string_list',
|
|
493
|
-
outputStruct: 'output_struct',
|
|
494
|
-
outputStructList: 'output_struct_list',
|
|
2298
|
+
stauts: 'stauts',
|
|
2299
|
+
msg: 'msg',
|
|
495
2300
|
};
|
|
496
2301
|
}
|
|
497
2302
|
|
|
@@ -500,13 +2305,8 @@ export class PreviewDemoResponse extends $tea.Model {
|
|
|
500
2305
|
reqMsgId: 'string',
|
|
501
2306
|
resultCode: 'string',
|
|
502
2307
|
resultMsg: 'string',
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
outputBoolean: 'boolean',
|
|
506
|
-
outputDate: 'string',
|
|
507
|
-
outputStringList: { 'type': 'array', 'itemType': 'string' },
|
|
508
|
-
outputStruct: AbcDemoStruct,
|
|
509
|
-
outputStructList: { 'type': 'array', 'itemType': AbcDemoStruct },
|
|
2308
|
+
stauts: 'string',
|
|
2309
|
+
msg: 'string',
|
|
510
2310
|
};
|
|
511
2311
|
}
|
|
512
2312
|
|
|
@@ -515,21 +2315,23 @@ export class PreviewDemoResponse extends $tea.Model {
|
|
|
515
2315
|
}
|
|
516
2316
|
}
|
|
517
2317
|
|
|
518
|
-
export class
|
|
2318
|
+
export class QueryInstanceidRuleRequest extends $tea.Model {
|
|
519
2319
|
// OAuth模式下的授权token
|
|
520
2320
|
authToken?: string;
|
|
521
2321
|
productInstanceId?: string;
|
|
522
|
-
//
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
2322
|
+
// 数字
|
|
2323
|
+
count: string;
|
|
2324
|
+
// 姓名
|
|
2325
|
+
oprator: string;
|
|
2326
|
+
// 结构体
|
|
2327
|
+
struct: TestA;
|
|
527
2328
|
static names(): { [key: string]: string } {
|
|
528
2329
|
return {
|
|
529
2330
|
authToken: 'auth_token',
|
|
530
2331
|
productInstanceId: 'product_instance_id',
|
|
531
|
-
|
|
532
|
-
|
|
2332
|
+
count: 'count',
|
|
2333
|
+
oprator: 'oprator',
|
|
2334
|
+
struct: 'struct',
|
|
533
2335
|
};
|
|
534
2336
|
}
|
|
535
2337
|
|
|
@@ -537,8 +2339,9 @@ export class QueryGatewayRequest extends $tea.Model {
|
|
|
537
2339
|
return {
|
|
538
2340
|
authToken: 'string',
|
|
539
2341
|
productInstanceId: 'string',
|
|
540
|
-
|
|
541
|
-
|
|
2342
|
+
count: 'string',
|
|
2343
|
+
oprator: 'string',
|
|
2344
|
+
struct: TestA,
|
|
542
2345
|
};
|
|
543
2346
|
}
|
|
544
2347
|
|
|
@@ -547,21 +2350,18 @@ export class QueryGatewayRequest extends $tea.Model {
|
|
|
547
2350
|
}
|
|
548
2351
|
}
|
|
549
2352
|
|
|
550
|
-
export class
|
|
2353
|
+
export class QueryInstanceidRuleResponse extends $tea.Model {
|
|
551
2354
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
552
2355
|
reqMsgId?: string;
|
|
553
2356
|
// 结果码,一般OK表示调用成功
|
|
554
2357
|
resultCode?: string;
|
|
555
2358
|
// 异常信息的文本描述
|
|
556
2359
|
resultMsg?: string;
|
|
557
|
-
// 返回查询
|
|
558
|
-
queryResult?: string;
|
|
559
2360
|
static names(): { [key: string]: string } {
|
|
560
2361
|
return {
|
|
561
2362
|
reqMsgId: 'req_msg_id',
|
|
562
2363
|
resultCode: 'result_code',
|
|
563
2364
|
resultMsg: 'result_msg',
|
|
564
|
-
queryResult: 'query_result',
|
|
565
2365
|
};
|
|
566
2366
|
}
|
|
567
2367
|
|
|
@@ -570,7 +2370,6 @@ export class QueryGatewayResponse extends $tea.Model {
|
|
|
570
2370
|
reqMsgId: 'string',
|
|
571
2371
|
resultCode: 'string',
|
|
572
2372
|
resultMsg: 'string',
|
|
573
|
-
queryResult: 'string',
|
|
574
2373
|
};
|
|
575
2374
|
}
|
|
576
2375
|
|
|
@@ -579,14 +2378,17 @@ export class QueryGatewayResponse extends $tea.Model {
|
|
|
579
2378
|
}
|
|
580
2379
|
}
|
|
581
2380
|
|
|
582
|
-
export class
|
|
2381
|
+
export class QueryGatewayCheckEchotimeoutokRequest extends $tea.Model {
|
|
583
2382
|
// OAuth模式下的授权token
|
|
584
2383
|
authToken?: string;
|
|
585
2384
|
productInstanceId?: string;
|
|
2385
|
+
// 耗时时间
|
|
2386
|
+
timeout: string;
|
|
586
2387
|
static names(): { [key: string]: string } {
|
|
587
2388
|
return {
|
|
588
2389
|
authToken: 'auth_token',
|
|
589
2390
|
productInstanceId: 'product_instance_id',
|
|
2391
|
+
timeout: 'timeout',
|
|
590
2392
|
};
|
|
591
2393
|
}
|
|
592
2394
|
|
|
@@ -594,6 +2396,7 @@ export class QueryAbcdaAbcddaaRequest extends $tea.Model {
|
|
|
594
2396
|
return {
|
|
595
2397
|
authToken: 'string',
|
|
596
2398
|
productInstanceId: 'string',
|
|
2399
|
+
timeout: 'string',
|
|
597
2400
|
};
|
|
598
2401
|
}
|
|
599
2402
|
|
|
@@ -602,18 +2405,24 @@ export class QueryAbcdaAbcddaaRequest extends $tea.Model {
|
|
|
602
2405
|
}
|
|
603
2406
|
}
|
|
604
2407
|
|
|
605
|
-
export class
|
|
2408
|
+
export class QueryGatewayCheckEchotimeoutokResponse extends $tea.Model {
|
|
606
2409
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
607
2410
|
reqMsgId?: string;
|
|
608
2411
|
// 结果码,一般OK表示调用成功
|
|
609
2412
|
resultCode?: string;
|
|
610
2413
|
// 异常信息的文本描述
|
|
611
2414
|
resultMsg?: string;
|
|
2415
|
+
// 返回OK
|
|
2416
|
+
stauts?: string;
|
|
2417
|
+
// 结果描述
|
|
2418
|
+
msg?: string;
|
|
612
2419
|
static names(): { [key: string]: string } {
|
|
613
2420
|
return {
|
|
614
2421
|
reqMsgId: 'req_msg_id',
|
|
615
2422
|
resultCode: 'result_code',
|
|
616
2423
|
resultMsg: 'result_msg',
|
|
2424
|
+
stauts: 'stauts',
|
|
2425
|
+
msg: 'msg',
|
|
617
2426
|
};
|
|
618
2427
|
}
|
|
619
2428
|
|
|
@@ -622,6 +2431,8 @@ export class QueryAbcdaAbcddaaResponse extends $tea.Model {
|
|
|
622
2431
|
reqMsgId: 'string',
|
|
623
2432
|
resultCode: 'string',
|
|
624
2433
|
resultMsg: 'string',
|
|
2434
|
+
stauts: 'string',
|
|
2435
|
+
msg: 'string',
|
|
625
2436
|
};
|
|
626
2437
|
}
|
|
627
2438
|
|
|
@@ -630,23 +2441,20 @@ export class QueryAbcdaAbcddaaResponse extends $tea.Model {
|
|
|
630
2441
|
}
|
|
631
2442
|
}
|
|
632
2443
|
|
|
633
|
-
export class
|
|
2444
|
+
export class MatchBusinessAndInstanceRequest extends $tea.Model {
|
|
634
2445
|
// OAuth模式下的授权token
|
|
635
2446
|
authToken?: string;
|
|
636
2447
|
productInstanceId?: string;
|
|
637
|
-
//
|
|
638
|
-
|
|
639
|
-
//
|
|
640
|
-
|
|
641
|
-
// 123
|
|
642
|
-
face2?: FaceImage;
|
|
2448
|
+
// L5
|
|
2449
|
+
businessCode: string;
|
|
2450
|
+
// 实例
|
|
2451
|
+
instanceCode: string;
|
|
643
2452
|
static names(): { [key: string]: string } {
|
|
644
2453
|
return {
|
|
645
2454
|
authToken: 'auth_token',
|
|
646
2455
|
productInstanceId: 'product_instance_id',
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
face2: 'face2',
|
|
2456
|
+
businessCode: 'business_code',
|
|
2457
|
+
instanceCode: 'instance_code',
|
|
650
2458
|
};
|
|
651
2459
|
}
|
|
652
2460
|
|
|
@@ -654,9 +2462,8 @@ export class MatchSecurityFaceRequest extends $tea.Model {
|
|
|
654
2462
|
return {
|
|
655
2463
|
authToken: 'string',
|
|
656
2464
|
productInstanceId: 'string',
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
face2: FaceImage,
|
|
2465
|
+
businessCode: 'string',
|
|
2466
|
+
instanceCode: 'string',
|
|
660
2467
|
};
|
|
661
2468
|
}
|
|
662
2469
|
|
|
@@ -665,27 +2472,18 @@ export class MatchSecurityFaceRequest extends $tea.Model {
|
|
|
665
2472
|
}
|
|
666
2473
|
}
|
|
667
2474
|
|
|
668
|
-
export class
|
|
2475
|
+
export class MatchBusinessAndInstanceResponse extends $tea.Model {
|
|
669
2476
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
670
2477
|
reqMsgId?: string;
|
|
671
2478
|
// 结果码,一般OK表示调用成功
|
|
672
2479
|
resultCode?: string;
|
|
673
2480
|
// 异常信息的文本描述
|
|
674
2481
|
resultMsg?: string;
|
|
675
|
-
// 123
|
|
676
|
-
transactionId?: string;
|
|
677
|
-
// 123
|
|
678
|
-
samePerson?: string;
|
|
679
|
-
// 123
|
|
680
|
-
score?: string;
|
|
681
2482
|
static names(): { [key: string]: string } {
|
|
682
2483
|
return {
|
|
683
2484
|
reqMsgId: 'req_msg_id',
|
|
684
2485
|
resultCode: 'result_code',
|
|
685
2486
|
resultMsg: 'result_msg',
|
|
686
|
-
transactionId: 'transaction_id',
|
|
687
|
-
samePerson: 'same_person',
|
|
688
|
-
score: 'score',
|
|
689
2487
|
};
|
|
690
2488
|
}
|
|
691
2489
|
|
|
@@ -694,9 +2492,6 @@ export class MatchSecurityFaceResponse extends $tea.Model {
|
|
|
694
2492
|
reqMsgId: 'string',
|
|
695
2493
|
resultCode: 'string',
|
|
696
2494
|
resultMsg: 'string',
|
|
697
|
-
transactionId: 'string',
|
|
698
|
-
samePerson: 'string',
|
|
699
|
-
score: 'string',
|
|
700
2495
|
};
|
|
701
2496
|
}
|
|
702
2497
|
|
|
@@ -705,21 +2500,14 @@ export class MatchSecurityFaceResponse extends $tea.Model {
|
|
|
705
2500
|
}
|
|
706
2501
|
}
|
|
707
2502
|
|
|
708
|
-
export class
|
|
2503
|
+
export class TransferTesttrasferTesttrasferTesttrasferRequest extends $tea.Model {
|
|
709
2504
|
// OAuth模式下的授权token
|
|
710
2505
|
authToken?: string;
|
|
711
2506
|
productInstanceId?: string;
|
|
712
|
-
// 123
|
|
713
|
-
fileObject?: Readable;
|
|
714
|
-
fileObjectName?: string;
|
|
715
|
-
fileId: string;
|
|
716
2507
|
static names(): { [key: string]: string } {
|
|
717
2508
|
return {
|
|
718
2509
|
authToken: 'auth_token',
|
|
719
2510
|
productInstanceId: 'product_instance_id',
|
|
720
|
-
fileObject: 'fileObject',
|
|
721
|
-
fileObjectName: 'fileObjectName',
|
|
722
|
-
fileId: 'file_id',
|
|
723
2511
|
};
|
|
724
2512
|
}
|
|
725
2513
|
|
|
@@ -727,9 +2515,6 @@ export class UploadTestFileRequest extends $tea.Model {
|
|
|
727
2515
|
return {
|
|
728
2516
|
authToken: 'string',
|
|
729
2517
|
productInstanceId: 'string',
|
|
730
|
-
fileObject: 'Readable',
|
|
731
|
-
fileObjectName: 'string',
|
|
732
|
-
fileId: 'string',
|
|
733
2518
|
};
|
|
734
2519
|
}
|
|
735
2520
|
|
|
@@ -738,7 +2523,7 @@ export class UploadTestFileRequest extends $tea.Model {
|
|
|
738
2523
|
}
|
|
739
2524
|
}
|
|
740
2525
|
|
|
741
|
-
export class
|
|
2526
|
+
export class TransferTesttrasferTesttrasferTesttrasferResponse extends $tea.Model {
|
|
742
2527
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
743
2528
|
reqMsgId?: string;
|
|
744
2529
|
// 结果码,一般OK表示调用成功
|
|
@@ -766,17 +2551,14 @@ export class UploadTestFileResponse extends $tea.Model {
|
|
|
766
2551
|
}
|
|
767
2552
|
}
|
|
768
2553
|
|
|
769
|
-
export class
|
|
2554
|
+
export class QueryTestvvvvvTestvvvvvTestvvvvvRequest extends $tea.Model {
|
|
770
2555
|
// OAuth模式下的授权token
|
|
771
2556
|
authToken?: string;
|
|
772
2557
|
productInstanceId?: string;
|
|
773
|
-
// 超时时间
|
|
774
|
-
timeout?: string;
|
|
775
2558
|
static names(): { [key: string]: string } {
|
|
776
2559
|
return {
|
|
777
2560
|
authToken: 'auth_token',
|
|
778
2561
|
productInstanceId: 'product_instance_id',
|
|
779
|
-
timeout: 'timeout',
|
|
780
2562
|
};
|
|
781
2563
|
}
|
|
782
2564
|
|
|
@@ -784,7 +2566,6 @@ export class QueryTimeOneRequest extends $tea.Model {
|
|
|
784
2566
|
return {
|
|
785
2567
|
authToken: 'string',
|
|
786
2568
|
productInstanceId: 'string',
|
|
787
|
-
timeout: 'string',
|
|
788
2569
|
};
|
|
789
2570
|
}
|
|
790
2571
|
|
|
@@ -793,24 +2574,18 @@ export class QueryTimeOneRequest extends $tea.Model {
|
|
|
793
2574
|
}
|
|
794
2575
|
}
|
|
795
2576
|
|
|
796
|
-
export class
|
|
2577
|
+
export class QueryTestvvvvvTestvvvvvTestvvvvvResponse extends $tea.Model {
|
|
797
2578
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
798
2579
|
reqMsgId?: string;
|
|
799
2580
|
// 结果码,一般OK表示调用成功
|
|
800
2581
|
resultCode?: string;
|
|
801
2582
|
// 异常信息的文本描述
|
|
802
2583
|
resultMsg?: string;
|
|
803
|
-
// 状态码
|
|
804
|
-
stauts?: string;
|
|
805
|
-
// OK
|
|
806
|
-
msg?: string;
|
|
807
2584
|
static names(): { [key: string]: string } {
|
|
808
2585
|
return {
|
|
809
2586
|
reqMsgId: 'req_msg_id',
|
|
810
2587
|
resultCode: 'result_code',
|
|
811
2588
|
resultMsg: 'result_msg',
|
|
812
|
-
stauts: 'stauts',
|
|
813
|
-
msg: 'msg',
|
|
814
2589
|
};
|
|
815
2590
|
}
|
|
816
2591
|
|
|
@@ -819,8 +2594,6 @@ export class QueryTimeOneResponse extends $tea.Model {
|
|
|
819
2594
|
reqMsgId: 'string',
|
|
820
2595
|
resultCode: 'string',
|
|
821
2596
|
resultMsg: 'string',
|
|
822
|
-
stauts: 'string',
|
|
823
|
-
msg: 'string',
|
|
824
2597
|
};
|
|
825
2598
|
}
|
|
826
2599
|
|
|
@@ -829,17 +2602,17 @@ export class QueryTimeOneResponse extends $tea.Model {
|
|
|
829
2602
|
}
|
|
830
2603
|
}
|
|
831
2604
|
|
|
832
|
-
export class
|
|
2605
|
+
export class QueryStreamTestRequest extends $tea.Model {
|
|
833
2606
|
// OAuth模式下的授权token
|
|
834
2607
|
authToken?: string;
|
|
835
2608
|
productInstanceId?: string;
|
|
836
|
-
//
|
|
837
|
-
|
|
2609
|
+
// 名称
|
|
2610
|
+
name: string;
|
|
838
2611
|
static names(): { [key: string]: string } {
|
|
839
2612
|
return {
|
|
840
2613
|
authToken: 'auth_token',
|
|
841
2614
|
productInstanceId: 'product_instance_id',
|
|
842
|
-
|
|
2615
|
+
name: 'name',
|
|
843
2616
|
};
|
|
844
2617
|
}
|
|
845
2618
|
|
|
@@ -847,7 +2620,7 @@ export class QueryTimeTwoRequest extends $tea.Model {
|
|
|
847
2620
|
return {
|
|
848
2621
|
authToken: 'string',
|
|
849
2622
|
productInstanceId: 'string',
|
|
850
|
-
|
|
2623
|
+
name: 'string',
|
|
851
2624
|
};
|
|
852
2625
|
}
|
|
853
2626
|
|
|
@@ -856,24 +2629,18 @@ export class QueryTimeTwoRequest extends $tea.Model {
|
|
|
856
2629
|
}
|
|
857
2630
|
}
|
|
858
2631
|
|
|
859
|
-
export class
|
|
2632
|
+
export class QueryStreamTestResponse extends $tea.Model {
|
|
860
2633
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
861
2634
|
reqMsgId?: string;
|
|
862
2635
|
// 结果码,一般OK表示调用成功
|
|
863
2636
|
resultCode?: string;
|
|
864
2637
|
// 异常信息的文本描述
|
|
865
2638
|
resultMsg?: string;
|
|
866
|
-
// 状态码
|
|
867
|
-
stauts?: string;
|
|
868
|
-
// OK
|
|
869
|
-
msg?: string;
|
|
870
2639
|
static names(): { [key: string]: string } {
|
|
871
2640
|
return {
|
|
872
2641
|
reqMsgId: 'req_msg_id',
|
|
873
2642
|
resultCode: 'result_code',
|
|
874
2643
|
resultMsg: 'result_msg',
|
|
875
|
-
stauts: 'stauts',
|
|
876
|
-
msg: 'msg',
|
|
877
2644
|
};
|
|
878
2645
|
}
|
|
879
2646
|
|
|
@@ -882,8 +2649,6 @@ export class QueryTimeTwoResponse extends $tea.Model {
|
|
|
882
2649
|
reqMsgId: 'string',
|
|
883
2650
|
resultCode: 'string',
|
|
884
2651
|
resultMsg: 'string',
|
|
885
|
-
stauts: 'string',
|
|
886
|
-
msg: 'string',
|
|
887
2652
|
};
|
|
888
2653
|
}
|
|
889
2654
|
|
|
@@ -892,17 +2657,17 @@ export class QueryTimeTwoResponse extends $tea.Model {
|
|
|
892
2657
|
}
|
|
893
2658
|
}
|
|
894
2659
|
|
|
895
|
-
export class
|
|
2660
|
+
export class QueryStreamTestmethodRequest extends $tea.Model {
|
|
896
2661
|
// OAuth模式下的授权token
|
|
897
2662
|
authToken?: string;
|
|
898
2663
|
productInstanceId?: string;
|
|
899
|
-
//
|
|
900
|
-
|
|
2664
|
+
// 名称
|
|
2665
|
+
name: string;
|
|
901
2666
|
static names(): { [key: string]: string } {
|
|
902
2667
|
return {
|
|
903
2668
|
authToken: 'auth_token',
|
|
904
2669
|
productInstanceId: 'product_instance_id',
|
|
905
|
-
|
|
2670
|
+
name: 'name',
|
|
906
2671
|
};
|
|
907
2672
|
}
|
|
908
2673
|
|
|
@@ -910,7 +2675,7 @@ export class QueryTimeThreeRequest extends $tea.Model {
|
|
|
910
2675
|
return {
|
|
911
2676
|
authToken: 'string',
|
|
912
2677
|
productInstanceId: 'string',
|
|
913
|
-
|
|
2678
|
+
name: 'string',
|
|
914
2679
|
};
|
|
915
2680
|
}
|
|
916
2681
|
|
|
@@ -919,24 +2684,18 @@ export class QueryTimeThreeRequest extends $tea.Model {
|
|
|
919
2684
|
}
|
|
920
2685
|
}
|
|
921
2686
|
|
|
922
|
-
export class
|
|
2687
|
+
export class QueryStreamTestmethodResponse extends $tea.Model {
|
|
923
2688
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
924
2689
|
reqMsgId?: string;
|
|
925
2690
|
// 结果码,一般OK表示调用成功
|
|
926
2691
|
resultCode?: string;
|
|
927
2692
|
// 异常信息的文本描述
|
|
928
2693
|
resultMsg?: string;
|
|
929
|
-
// 状态码
|
|
930
|
-
stauts?: string;
|
|
931
|
-
// OK
|
|
932
|
-
msg?: string;
|
|
933
2694
|
static names(): { [key: string]: string } {
|
|
934
2695
|
return {
|
|
935
2696
|
reqMsgId: 'req_msg_id',
|
|
936
2697
|
resultCode: 'result_code',
|
|
937
2698
|
resultMsg: 'result_msg',
|
|
938
|
-
stauts: 'stauts',
|
|
939
|
-
msg: 'msg',
|
|
940
2699
|
};
|
|
941
2700
|
}
|
|
942
2701
|
|
|
@@ -945,8 +2704,6 @@ export class QueryTimeThreeResponse extends $tea.Model {
|
|
|
945
2704
|
reqMsgId: 'string',
|
|
946
2705
|
resultCode: 'string',
|
|
947
2706
|
resultMsg: 'string',
|
|
948
|
-
stauts: 'string',
|
|
949
|
-
msg: 'string',
|
|
950
2707
|
};
|
|
951
2708
|
}
|
|
952
2709
|
|
|
@@ -955,17 +2712,17 @@ export class QueryTimeThreeResponse extends $tea.Model {
|
|
|
955
2712
|
}
|
|
956
2713
|
}
|
|
957
2714
|
|
|
958
|
-
export class
|
|
2715
|
+
export class QueryStreamTimeoutRequest extends $tea.Model {
|
|
959
2716
|
// OAuth模式下的授权token
|
|
960
2717
|
authToken?: string;
|
|
961
2718
|
productInstanceId?: string;
|
|
962
|
-
//
|
|
963
|
-
|
|
2719
|
+
// name
|
|
2720
|
+
name: string;
|
|
964
2721
|
static names(): { [key: string]: string } {
|
|
965
2722
|
return {
|
|
966
2723
|
authToken: 'auth_token',
|
|
967
2724
|
productInstanceId: 'product_instance_id',
|
|
968
|
-
|
|
2725
|
+
name: 'name',
|
|
969
2726
|
};
|
|
970
2727
|
}
|
|
971
2728
|
|
|
@@ -973,7 +2730,7 @@ export class QueryTimeFourRequest extends $tea.Model {
|
|
|
973
2730
|
return {
|
|
974
2731
|
authToken: 'string',
|
|
975
2732
|
productInstanceId: 'string',
|
|
976
|
-
|
|
2733
|
+
name: 'string',
|
|
977
2734
|
};
|
|
978
2735
|
}
|
|
979
2736
|
|
|
@@ -982,24 +2739,18 @@ export class QueryTimeFourRequest extends $tea.Model {
|
|
|
982
2739
|
}
|
|
983
2740
|
}
|
|
984
2741
|
|
|
985
|
-
export class
|
|
2742
|
+
export class QueryStreamTimeoutResponse extends $tea.Model {
|
|
986
2743
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
987
2744
|
reqMsgId?: string;
|
|
988
2745
|
// 结果码,一般OK表示调用成功
|
|
989
2746
|
resultCode?: string;
|
|
990
2747
|
// 异常信息的文本描述
|
|
991
2748
|
resultMsg?: string;
|
|
992
|
-
// 状态码
|
|
993
|
-
stauts?: string;
|
|
994
|
-
// OK
|
|
995
|
-
msg?: string;
|
|
996
2749
|
static names(): { [key: string]: string } {
|
|
997
2750
|
return {
|
|
998
2751
|
reqMsgId: 'req_msg_id',
|
|
999
2752
|
resultCode: 'result_code',
|
|
1000
2753
|
resultMsg: 'result_msg',
|
|
1001
|
-
stauts: 'stauts',
|
|
1002
|
-
msg: 'msg',
|
|
1003
2754
|
};
|
|
1004
2755
|
}
|
|
1005
2756
|
|
|
@@ -1008,8 +2759,6 @@ export class QueryTimeFourResponse extends $tea.Model {
|
|
|
1008
2759
|
reqMsgId: 'string',
|
|
1009
2760
|
resultCode: 'string',
|
|
1010
2761
|
resultMsg: 'string',
|
|
1011
|
-
stauts: 'string',
|
|
1012
|
-
msg: 'string',
|
|
1013
2762
|
};
|
|
1014
2763
|
}
|
|
1015
2764
|
|
|
@@ -1018,17 +2767,17 @@ export class QueryTimeFourResponse extends $tea.Model {
|
|
|
1018
2767
|
}
|
|
1019
2768
|
}
|
|
1020
2769
|
|
|
1021
|
-
export class
|
|
2770
|
+
export class QueryStreamNonjsonRequest extends $tea.Model {
|
|
1022
2771
|
// OAuth模式下的授权token
|
|
1023
2772
|
authToken?: string;
|
|
1024
2773
|
productInstanceId?: string;
|
|
1025
|
-
//
|
|
1026
|
-
|
|
2774
|
+
// name
|
|
2775
|
+
name: string;
|
|
1027
2776
|
static names(): { [key: string]: string } {
|
|
1028
2777
|
return {
|
|
1029
2778
|
authToken: 'auth_token',
|
|
1030
2779
|
productInstanceId: 'product_instance_id',
|
|
1031
|
-
|
|
2780
|
+
name: 'name',
|
|
1032
2781
|
};
|
|
1033
2782
|
}
|
|
1034
2783
|
|
|
@@ -1036,7 +2785,7 @@ export class QueryTimeFiveRequest extends $tea.Model {
|
|
|
1036
2785
|
return {
|
|
1037
2786
|
authToken: 'string',
|
|
1038
2787
|
productInstanceId: 'string',
|
|
1039
|
-
|
|
2788
|
+
name: 'string',
|
|
1040
2789
|
};
|
|
1041
2790
|
}
|
|
1042
2791
|
|
|
@@ -1045,24 +2794,18 @@ export class QueryTimeFiveRequest extends $tea.Model {
|
|
|
1045
2794
|
}
|
|
1046
2795
|
}
|
|
1047
2796
|
|
|
1048
|
-
export class
|
|
2797
|
+
export class QueryStreamNonjsonResponse extends $tea.Model {
|
|
1049
2798
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1050
2799
|
reqMsgId?: string;
|
|
1051
2800
|
// 结果码,一般OK表示调用成功
|
|
1052
2801
|
resultCode?: string;
|
|
1053
2802
|
// 异常信息的文本描述
|
|
1054
|
-
resultMsg?: string;
|
|
1055
|
-
// 状态码
|
|
1056
|
-
stauts?: string;
|
|
1057
|
-
// OK
|
|
1058
|
-
msg?: string;
|
|
2803
|
+
resultMsg?: string;
|
|
1059
2804
|
static names(): { [key: string]: string } {
|
|
1060
2805
|
return {
|
|
1061
2806
|
reqMsgId: 'req_msg_id',
|
|
1062
2807
|
resultCode: 'result_code',
|
|
1063
2808
|
resultMsg: 'result_msg',
|
|
1064
|
-
stauts: 'stauts',
|
|
1065
|
-
msg: 'msg',
|
|
1066
2809
|
};
|
|
1067
2810
|
}
|
|
1068
2811
|
|
|
@@ -1071,8 +2814,6 @@ export class QueryTimeFiveResponse extends $tea.Model {
|
|
|
1071
2814
|
reqMsgId: 'string',
|
|
1072
2815
|
resultCode: 'string',
|
|
1073
2816
|
resultMsg: 'string',
|
|
1074
|
-
stauts: 'string',
|
|
1075
|
-
msg: 'string',
|
|
1076
2817
|
};
|
|
1077
2818
|
}
|
|
1078
2819
|
|
|
@@ -1081,17 +2822,17 @@ export class QueryTimeFiveResponse extends $tea.Model {
|
|
|
1081
2822
|
}
|
|
1082
2823
|
}
|
|
1083
2824
|
|
|
1084
|
-
export class
|
|
2825
|
+
export class QueryStreamSpecialCharactersRequest extends $tea.Model {
|
|
1085
2826
|
// OAuth模式下的授权token
|
|
1086
2827
|
authToken?: string;
|
|
1087
2828
|
productInstanceId?: string;
|
|
1088
|
-
//
|
|
1089
|
-
|
|
2829
|
+
// name
|
|
2830
|
+
name: string;
|
|
1090
2831
|
static names(): { [key: string]: string } {
|
|
1091
2832
|
return {
|
|
1092
2833
|
authToken: 'auth_token',
|
|
1093
2834
|
productInstanceId: 'product_instance_id',
|
|
1094
|
-
|
|
2835
|
+
name: 'name',
|
|
1095
2836
|
};
|
|
1096
2837
|
}
|
|
1097
2838
|
|
|
@@ -1099,7 +2840,7 @@ export class CreateapiExistingProductsRequest extends $tea.Model {
|
|
|
1099
2840
|
return {
|
|
1100
2841
|
authToken: 'string',
|
|
1101
2842
|
productInstanceId: 'string',
|
|
1102
|
-
|
|
2843
|
+
name: 'string',
|
|
1103
2844
|
};
|
|
1104
2845
|
}
|
|
1105
2846
|
|
|
@@ -1108,21 +2849,18 @@ export class CreateapiExistingProductsRequest extends $tea.Model {
|
|
|
1108
2849
|
}
|
|
1109
2850
|
}
|
|
1110
2851
|
|
|
1111
|
-
export class
|
|
2852
|
+
export class QueryStreamSpecialCharactersResponse extends $tea.Model {
|
|
1112
2853
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1113
2854
|
reqMsgId?: string;
|
|
1114
2855
|
// 结果码,一般OK表示调用成功
|
|
1115
2856
|
resultCode?: string;
|
|
1116
2857
|
// 异常信息的文本描述
|
|
1117
2858
|
resultMsg?: string;
|
|
1118
|
-
// 计算值返回
|
|
1119
|
-
execNumEcho?: number;
|
|
1120
2859
|
static names(): { [key: string]: string } {
|
|
1121
2860
|
return {
|
|
1122
2861
|
reqMsgId: 'req_msg_id',
|
|
1123
2862
|
resultCode: 'result_code',
|
|
1124
2863
|
resultMsg: 'result_msg',
|
|
1125
|
-
execNumEcho: 'exec_num_echo',
|
|
1126
2864
|
};
|
|
1127
2865
|
}
|
|
1128
2866
|
|
|
@@ -1131,7 +2869,6 @@ export class CreateapiExistingProductsResponse extends $tea.Model {
|
|
|
1131
2869
|
reqMsgId: 'string',
|
|
1132
2870
|
resultCode: 'string',
|
|
1133
2871
|
resultMsg: 'string',
|
|
1134
|
-
execNumEcho: 'number',
|
|
1135
2872
|
};
|
|
1136
2873
|
}
|
|
1137
2874
|
|
|
@@ -1140,26 +2877,17 @@ export class CreateapiExistingProductsResponse extends $tea.Model {
|
|
|
1140
2877
|
}
|
|
1141
2878
|
}
|
|
1142
2879
|
|
|
1143
|
-
export class
|
|
2880
|
+
export class QueryStreamNonstreamRequest extends $tea.Model {
|
|
1144
2881
|
// OAuth模式下的授权token
|
|
1145
2882
|
authToken?: string;
|
|
1146
2883
|
productInstanceId?: string;
|
|
1147
|
-
//
|
|
1148
|
-
|
|
1149
|
-
// 请求发起人
|
|
1150
|
-
operator: string;
|
|
1151
|
-
// 请求编号
|
|
1152
|
-
count: number;
|
|
1153
|
-
// 原始信息
|
|
1154
|
-
originInfo: string;
|
|
2884
|
+
// name
|
|
2885
|
+
name: string;
|
|
1155
2886
|
static names(): { [key: string]: string } {
|
|
1156
2887
|
return {
|
|
1157
2888
|
authToken: 'auth_token',
|
|
1158
2889
|
productInstanceId: 'product_instance_id',
|
|
1159
|
-
|
|
1160
|
-
operator: 'operator',
|
|
1161
|
-
count: 'count',
|
|
1162
|
-
originInfo: 'origin_info',
|
|
2890
|
+
name: 'name',
|
|
1163
2891
|
};
|
|
1164
2892
|
}
|
|
1165
2893
|
|
|
@@ -1167,10 +2895,7 @@ export class APreCreateApiRequest extends $tea.Model {
|
|
|
1167
2895
|
return {
|
|
1168
2896
|
authToken: 'string',
|
|
1169
2897
|
productInstanceId: 'string',
|
|
1170
|
-
|
|
1171
|
-
operator: 'string',
|
|
1172
|
-
count: 'number',
|
|
1173
|
-
originInfo: 'string',
|
|
2898
|
+
name: 'string',
|
|
1174
2899
|
};
|
|
1175
2900
|
}
|
|
1176
2901
|
|
|
@@ -1179,24 +2904,18 @@ export class APreCreateApiRequest extends $tea.Model {
|
|
|
1179
2904
|
}
|
|
1180
2905
|
}
|
|
1181
2906
|
|
|
1182
|
-
export class
|
|
2907
|
+
export class QueryStreamNonstreamResponse extends $tea.Model {
|
|
1183
2908
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1184
2909
|
reqMsgId?: string;
|
|
1185
2910
|
// 结果码,一般OK表示调用成功
|
|
1186
2911
|
resultCode?: string;
|
|
1187
2912
|
// 异常信息的文本描述
|
|
1188
2913
|
resultMsg?: string;
|
|
1189
|
-
// 跟新后的info
|
|
1190
|
-
updInfo?: string;
|
|
1191
|
-
// 组合返回请求结果
|
|
1192
|
-
updPark?: InitParks;
|
|
1193
2914
|
static names(): { [key: string]: string } {
|
|
1194
2915
|
return {
|
|
1195
2916
|
reqMsgId: 'req_msg_id',
|
|
1196
2917
|
resultCode: 'result_code',
|
|
1197
2918
|
resultMsg: 'result_msg',
|
|
1198
|
-
updInfo: 'upd_info',
|
|
1199
|
-
updPark: 'upd_park',
|
|
1200
2919
|
};
|
|
1201
2920
|
}
|
|
1202
2921
|
|
|
@@ -1205,8 +2924,6 @@ export class APreCreateApiResponse extends $tea.Model {
|
|
|
1205
2924
|
reqMsgId: 'string',
|
|
1206
2925
|
resultCode: 'string',
|
|
1207
2926
|
resultMsg: 'string',
|
|
1208
|
-
updInfo: 'string',
|
|
1209
|
-
updPark: InitParks,
|
|
1210
2927
|
};
|
|
1211
2928
|
}
|
|
1212
2929
|
|
|
@@ -1215,12 +2932,12 @@ export class APreCreateApiResponse extends $tea.Model {
|
|
|
1215
2932
|
}
|
|
1216
2933
|
}
|
|
1217
2934
|
|
|
1218
|
-
export class
|
|
2935
|
+
export class QueryLoadtestTimeOneRequest extends $tea.Model {
|
|
1219
2936
|
// OAuth模式下的授权token
|
|
1220
2937
|
authToken?: string;
|
|
1221
2938
|
productInstanceId?: string;
|
|
1222
|
-
//
|
|
1223
|
-
timeout:
|
|
2939
|
+
// 毫秒值
|
|
2940
|
+
timeout: number;
|
|
1224
2941
|
static names(): { [key: string]: string } {
|
|
1225
2942
|
return {
|
|
1226
2943
|
authToken: 'auth_token',
|
|
@@ -1233,7 +2950,7 @@ export class ApiTestCreateRequest extends $tea.Model {
|
|
|
1233
2950
|
return {
|
|
1234
2951
|
authToken: 'string',
|
|
1235
2952
|
productInstanceId: 'string',
|
|
1236
|
-
timeout: '
|
|
2953
|
+
timeout: 'number',
|
|
1237
2954
|
};
|
|
1238
2955
|
}
|
|
1239
2956
|
|
|
@@ -1242,23 +2959,23 @@ export class ApiTestCreateRequest extends $tea.Model {
|
|
|
1242
2959
|
}
|
|
1243
2960
|
}
|
|
1244
2961
|
|
|
1245
|
-
export class
|
|
2962
|
+
export class QueryLoadtestTimeOneResponse extends $tea.Model {
|
|
1246
2963
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1247
2964
|
reqMsgId?: string;
|
|
1248
2965
|
// 结果码,一般OK表示调用成功
|
|
1249
2966
|
resultCode?: string;
|
|
1250
2967
|
// 异常信息的文本描述
|
|
1251
2968
|
resultMsg?: string;
|
|
1252
|
-
//
|
|
1253
|
-
|
|
1254
|
-
//
|
|
2969
|
+
// 200
|
|
2970
|
+
stauts?: string;
|
|
2971
|
+
// ok
|
|
1255
2972
|
msg?: string;
|
|
1256
2973
|
static names(): { [key: string]: string } {
|
|
1257
2974
|
return {
|
|
1258
2975
|
reqMsgId: 'req_msg_id',
|
|
1259
2976
|
resultCode: 'result_code',
|
|
1260
2977
|
resultMsg: 'result_msg',
|
|
1261
|
-
|
|
2978
|
+
stauts: 'stauts',
|
|
1262
2979
|
msg: 'msg',
|
|
1263
2980
|
};
|
|
1264
2981
|
}
|
|
@@ -1268,7 +2985,7 @@ export class ApiTestCreateResponse extends $tea.Model {
|
|
|
1268
2985
|
reqMsgId: 'string',
|
|
1269
2986
|
resultCode: 'string',
|
|
1270
2987
|
resultMsg: 'string',
|
|
1271
|
-
|
|
2988
|
+
stauts: 'string',
|
|
1272
2989
|
msg: 'string',
|
|
1273
2990
|
};
|
|
1274
2991
|
}
|
|
@@ -1278,20 +2995,17 @@ export class ApiTestCreateResponse extends $tea.Model {
|
|
|
1278
2995
|
}
|
|
1279
2996
|
}
|
|
1280
2997
|
|
|
1281
|
-
export class
|
|
2998
|
+
export class QueryLoadtestTimeTwoRequest extends $tea.Model {
|
|
1282
2999
|
// OAuth模式下的授权token
|
|
1283
3000
|
authToken?: string;
|
|
1284
3001
|
productInstanceId?: string;
|
|
1285
|
-
//
|
|
1286
|
-
|
|
1287
|
-
// 新增字段
|
|
1288
|
-
delete: string;
|
|
3002
|
+
// 毫秒
|
|
3003
|
+
timeout: number;
|
|
1289
3004
|
static names(): { [key: string]: string } {
|
|
1290
3005
|
return {
|
|
1291
3006
|
authToken: 'auth_token',
|
|
1292
3007
|
productInstanceId: 'product_instance_id',
|
|
1293
|
-
|
|
1294
|
-
delete: 'delete',
|
|
3008
|
+
timeout: 'timeout',
|
|
1295
3009
|
};
|
|
1296
3010
|
}
|
|
1297
3011
|
|
|
@@ -1299,8 +3013,7 @@ export class QueryApprovalTestRequest extends $tea.Model {
|
|
|
1299
3013
|
return {
|
|
1300
3014
|
authToken: 'string',
|
|
1301
3015
|
productInstanceId: 'string',
|
|
1302
|
-
|
|
1303
|
-
delete: 'string',
|
|
3016
|
+
timeout: 'number',
|
|
1304
3017
|
};
|
|
1305
3018
|
}
|
|
1306
3019
|
|
|
@@ -1309,24 +3022,24 @@ export class QueryApprovalTestRequest extends $tea.Model {
|
|
|
1309
3022
|
}
|
|
1310
3023
|
}
|
|
1311
3024
|
|
|
1312
|
-
export class
|
|
3025
|
+
export class QueryLoadtestTimeTwoResponse extends $tea.Model {
|
|
1313
3026
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1314
3027
|
reqMsgId?: string;
|
|
1315
3028
|
// 结果码,一般OK表示调用成功
|
|
1316
3029
|
resultCode?: string;
|
|
1317
3030
|
// 异常信息的文本描述
|
|
1318
3031
|
resultMsg?: string;
|
|
1319
|
-
//
|
|
3032
|
+
// 200
|
|
3033
|
+
stauts?: string;
|
|
3034
|
+
// ok
|
|
1320
3035
|
msg?: string;
|
|
1321
|
-
// 新增字段
|
|
1322
|
-
code?: number;
|
|
1323
3036
|
static names(): { [key: string]: string } {
|
|
1324
3037
|
return {
|
|
1325
3038
|
reqMsgId: 'req_msg_id',
|
|
1326
3039
|
resultCode: 'result_code',
|
|
1327
3040
|
resultMsg: 'result_msg',
|
|
3041
|
+
stauts: 'stauts',
|
|
1328
3042
|
msg: 'msg',
|
|
1329
|
-
code: 'code',
|
|
1330
3043
|
};
|
|
1331
3044
|
}
|
|
1332
3045
|
|
|
@@ -1335,8 +3048,8 @@ export class QueryApprovalTestResponse extends $tea.Model {
|
|
|
1335
3048
|
reqMsgId: 'string',
|
|
1336
3049
|
resultCode: 'string',
|
|
1337
3050
|
resultMsg: 'string',
|
|
3051
|
+
stauts: 'string',
|
|
1338
3052
|
msg: 'string',
|
|
1339
|
-
code: 'number',
|
|
1340
3053
|
};
|
|
1341
3054
|
}
|
|
1342
3055
|
|
|
@@ -1345,17 +3058,47 @@ export class QueryApprovalTestResponse extends $tea.Model {
|
|
|
1345
3058
|
}
|
|
1346
3059
|
}
|
|
1347
3060
|
|
|
1348
|
-
export class
|
|
3061
|
+
export class CheckAicoguardcoreAicoguardrailsQuestionRequest extends $tea.Model {
|
|
1349
3062
|
// OAuth模式下的授权token
|
|
1350
3063
|
authToken?: string;
|
|
1351
3064
|
productInstanceId?: string;
|
|
1352
|
-
//
|
|
1353
|
-
|
|
3065
|
+
// 当前提问内容
|
|
3066
|
+
question: string;
|
|
3067
|
+
// 当前提问格式
|
|
3068
|
+
questionFormat?: string;
|
|
3069
|
+
// 应用名
|
|
3070
|
+
appCode: string;
|
|
3071
|
+
// 会话ID
|
|
3072
|
+
sessionId: string;
|
|
3073
|
+
// 唯一定位一个问答对
|
|
3074
|
+
requestId: string;
|
|
3075
|
+
// 场景code,走SOP流程申请
|
|
3076
|
+
sceneCode: string;
|
|
3077
|
+
// 当前固定填入:TJ_QUESTION_BASIC
|
|
3078
|
+
serviceCode: string;
|
|
3079
|
+
// Agent标识
|
|
3080
|
+
agentCode: string;
|
|
3081
|
+
// 大模型Code,区分大模型类型和版本,比如bailing_10b_0229、bailing_65b_0315
|
|
3082
|
+
modelCode?: string;
|
|
3083
|
+
// 用户ID,用于主体风险判断
|
|
3084
|
+
userId?: string;
|
|
3085
|
+
// 扩展信息,会透传到业务属性中
|
|
3086
|
+
businessProperties?: Map;
|
|
1354
3087
|
static names(): { [key: string]: string } {
|
|
1355
3088
|
return {
|
|
1356
3089
|
authToken: 'auth_token',
|
|
1357
3090
|
productInstanceId: 'product_instance_id',
|
|
1358
|
-
|
|
3091
|
+
question: 'question',
|
|
3092
|
+
questionFormat: 'question_format',
|
|
3093
|
+
appCode: 'app_code',
|
|
3094
|
+
sessionId: 'session_id',
|
|
3095
|
+
requestId: 'request_id',
|
|
3096
|
+
sceneCode: 'scene_code',
|
|
3097
|
+
serviceCode: 'service_code',
|
|
3098
|
+
agentCode: 'agent_code',
|
|
3099
|
+
modelCode: 'model_code',
|
|
3100
|
+
userId: 'user_id',
|
|
3101
|
+
businessProperties: 'business_properties',
|
|
1359
3102
|
};
|
|
1360
3103
|
}
|
|
1361
3104
|
|
|
@@ -1363,7 +3106,17 @@ export class QueryOneLimitRequest extends $tea.Model {
|
|
|
1363
3106
|
return {
|
|
1364
3107
|
authToken: 'string',
|
|
1365
3108
|
productInstanceId: 'string',
|
|
1366
|
-
|
|
3109
|
+
question: 'string',
|
|
3110
|
+
questionFormat: 'string',
|
|
3111
|
+
appCode: 'string',
|
|
3112
|
+
sessionId: 'string',
|
|
3113
|
+
requestId: 'string',
|
|
3114
|
+
sceneCode: 'string',
|
|
3115
|
+
serviceCode: 'string',
|
|
3116
|
+
agentCode: 'string',
|
|
3117
|
+
modelCode: 'string',
|
|
3118
|
+
userId: 'string',
|
|
3119
|
+
businessProperties: Map,
|
|
1367
3120
|
};
|
|
1368
3121
|
}
|
|
1369
3122
|
|
|
@@ -1372,24 +3125,30 @@ export class QueryOneLimitRequest extends $tea.Model {
|
|
|
1372
3125
|
}
|
|
1373
3126
|
}
|
|
1374
3127
|
|
|
1375
|
-
export class
|
|
3128
|
+
export class CheckAicoguardcoreAicoguardrailsQuestionResponse extends $tea.Model {
|
|
1376
3129
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1377
3130
|
reqMsgId?: string;
|
|
1378
3131
|
// 结果码,一般OK表示调用成功
|
|
1379
3132
|
resultCode?: string;
|
|
1380
3133
|
// 异常信息的文本描述
|
|
1381
3134
|
resultMsg?: string;
|
|
1382
|
-
//
|
|
1383
|
-
|
|
1384
|
-
//
|
|
1385
|
-
|
|
3135
|
+
// 是否安全无风险 true:安全无风险 false:有风险
|
|
3136
|
+
safe?: boolean;
|
|
3137
|
+
// 安全动作 BLOCK:拦截 SECURITY_ANSWER:安全代答 SECURITY_PROMPT:安全提示增强
|
|
3138
|
+
actionCode?: string;
|
|
3139
|
+
// 安全动作相关文案,比如安全提示增强的文案、安全代答的回答、回答里补充的安全提示
|
|
3140
|
+
actionMsg?: string;
|
|
3141
|
+
// 会话动作. END_SESSION:终止会话. RECALL_QUERY:撤回提问
|
|
3142
|
+
sessionAction?: string;
|
|
1386
3143
|
static names(): { [key: string]: string } {
|
|
1387
3144
|
return {
|
|
1388
3145
|
reqMsgId: 'req_msg_id',
|
|
1389
3146
|
resultCode: 'result_code',
|
|
1390
3147
|
resultMsg: 'result_msg',
|
|
1391
|
-
|
|
1392
|
-
|
|
3148
|
+
safe: 'safe',
|
|
3149
|
+
actionCode: 'action_code',
|
|
3150
|
+
actionMsg: 'action_msg',
|
|
3151
|
+
sessionAction: 'session_action',
|
|
1393
3152
|
};
|
|
1394
3153
|
}
|
|
1395
3154
|
|
|
@@ -1398,8 +3157,10 @@ export class QueryOneLimitResponse extends $tea.Model {
|
|
|
1398
3157
|
reqMsgId: 'string',
|
|
1399
3158
|
resultCode: 'string',
|
|
1400
3159
|
resultMsg: 'string',
|
|
1401
|
-
|
|
1402
|
-
|
|
3160
|
+
safe: 'boolean',
|
|
3161
|
+
actionCode: 'string',
|
|
3162
|
+
actionMsg: 'string',
|
|
3163
|
+
sessionAction: 'string',
|
|
1403
3164
|
};
|
|
1404
3165
|
}
|
|
1405
3166
|
|
|
@@ -1408,17 +3169,20 @@ export class QueryOneLimitResponse extends $tea.Model {
|
|
|
1408
3169
|
}
|
|
1409
3170
|
}
|
|
1410
3171
|
|
|
1411
|
-
export class
|
|
3172
|
+
export class BindAaaBbbCccRequest extends $tea.Model {
|
|
1412
3173
|
// OAuth模式下的授权token
|
|
1413
3174
|
authToken?: string;
|
|
1414
3175
|
productInstanceId?: string;
|
|
1415
|
-
//
|
|
1416
|
-
|
|
3176
|
+
// 123
|
|
3177
|
+
date: string;
|
|
3178
|
+
// 123
|
|
3179
|
+
data: string;
|
|
1417
3180
|
static names(): { [key: string]: string } {
|
|
1418
3181
|
return {
|
|
1419
3182
|
authToken: 'auth_token',
|
|
1420
3183
|
productInstanceId: 'product_instance_id',
|
|
1421
|
-
|
|
3184
|
+
date: 'date',
|
|
3185
|
+
data: 'data',
|
|
1422
3186
|
};
|
|
1423
3187
|
}
|
|
1424
3188
|
|
|
@@ -1426,7 +3190,8 @@ export class ImportOneLimitRequest extends $tea.Model {
|
|
|
1426
3190
|
return {
|
|
1427
3191
|
authToken: 'string',
|
|
1428
3192
|
productInstanceId: 'string',
|
|
1429
|
-
|
|
3193
|
+
date: 'string',
|
|
3194
|
+
data: 'string',
|
|
1430
3195
|
};
|
|
1431
3196
|
}
|
|
1432
3197
|
|
|
@@ -1435,24 +3200,18 @@ export class ImportOneLimitRequest extends $tea.Model {
|
|
|
1435
3200
|
}
|
|
1436
3201
|
}
|
|
1437
3202
|
|
|
1438
|
-
export class
|
|
3203
|
+
export class BindAaaBbbCccResponse extends $tea.Model {
|
|
1439
3204
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1440
3205
|
reqMsgId?: string;
|
|
1441
3206
|
// 结果码,一般OK表示调用成功
|
|
1442
3207
|
resultCode?: string;
|
|
1443
3208
|
// 异常信息的文本描述
|
|
1444
3209
|
resultMsg?: string;
|
|
1445
|
-
// 状态码
|
|
1446
|
-
stauts?: string;
|
|
1447
|
-
// 状态描述
|
|
1448
|
-
msg?: string;
|
|
1449
3210
|
static names(): { [key: string]: string } {
|
|
1450
3211
|
return {
|
|
1451
3212
|
reqMsgId: 'req_msg_id',
|
|
1452
3213
|
resultCode: 'result_code',
|
|
1453
3214
|
resultMsg: 'result_msg',
|
|
1454
|
-
stauts: 'stauts',
|
|
1455
|
-
msg: 'msg',
|
|
1456
3215
|
};
|
|
1457
3216
|
}
|
|
1458
3217
|
|
|
@@ -1461,8 +3220,6 @@ export class ImportOneLimitResponse extends $tea.Model {
|
|
|
1461
3220
|
reqMsgId: 'string',
|
|
1462
3221
|
resultCode: 'string',
|
|
1463
3222
|
resultMsg: 'string',
|
|
1464
|
-
stauts: 'string',
|
|
1465
|
-
msg: 'string',
|
|
1466
3223
|
};
|
|
1467
3224
|
}
|
|
1468
3225
|
|
|
@@ -1471,17 +3228,14 @@ export class ImportOneLimitResponse extends $tea.Model {
|
|
|
1471
3228
|
}
|
|
1472
3229
|
}
|
|
1473
3230
|
|
|
1474
|
-
export class
|
|
3231
|
+
export class QueryAaaBbbCccRequest extends $tea.Model {
|
|
1475
3232
|
// OAuth模式下的授权token
|
|
1476
3233
|
authToken?: string;
|
|
1477
3234
|
productInstanceId?: string;
|
|
1478
|
-
// 超时时间
|
|
1479
|
-
timeout: string;
|
|
1480
3235
|
static names(): { [key: string]: string } {
|
|
1481
3236
|
return {
|
|
1482
3237
|
authToken: 'auth_token',
|
|
1483
3238
|
productInstanceId: 'product_instance_id',
|
|
1484
|
-
timeout: 'timeout',
|
|
1485
3239
|
};
|
|
1486
3240
|
}
|
|
1487
3241
|
|
|
@@ -1489,7 +3243,6 @@ export class StabilizeOneLimitRequest extends $tea.Model {
|
|
|
1489
3243
|
return {
|
|
1490
3244
|
authToken: 'string',
|
|
1491
3245
|
productInstanceId: 'string',
|
|
1492
|
-
timeout: 'string',
|
|
1493
3246
|
};
|
|
1494
3247
|
}
|
|
1495
3248
|
|
|
@@ -1498,24 +3251,18 @@ export class StabilizeOneLimitRequest extends $tea.Model {
|
|
|
1498
3251
|
}
|
|
1499
3252
|
}
|
|
1500
3253
|
|
|
1501
|
-
export class
|
|
3254
|
+
export class QueryAaaBbbCccResponse extends $tea.Model {
|
|
1502
3255
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1503
3256
|
reqMsgId?: string;
|
|
1504
3257
|
// 结果码,一般OK表示调用成功
|
|
1505
3258
|
resultCode?: string;
|
|
1506
3259
|
// 异常信息的文本描述
|
|
1507
3260
|
resultMsg?: string;
|
|
1508
|
-
// 状态码
|
|
1509
|
-
stauts?: string;
|
|
1510
|
-
// 状态描述
|
|
1511
|
-
msg?: string;
|
|
1512
3261
|
static names(): { [key: string]: string } {
|
|
1513
3262
|
return {
|
|
1514
3263
|
reqMsgId: 'req_msg_id',
|
|
1515
3264
|
resultCode: 'result_code',
|
|
1516
3265
|
resultMsg: 'result_msg',
|
|
1517
|
-
stauts: 'stauts',
|
|
1518
|
-
msg: 'msg',
|
|
1519
3266
|
};
|
|
1520
3267
|
}
|
|
1521
3268
|
|
|
@@ -1524,8 +3271,6 @@ export class StabilizeOneLimitResponse extends $tea.Model {
|
|
|
1524
3271
|
reqMsgId: 'string',
|
|
1525
3272
|
resultCode: 'string',
|
|
1526
3273
|
resultMsg: 'string',
|
|
1527
|
-
stauts: 'string',
|
|
1528
|
-
msg: 'string',
|
|
1529
3274
|
};
|
|
1530
3275
|
}
|
|
1531
3276
|
|
|
@@ -1534,17 +3279,14 @@ export class StabilizeOneLimitResponse extends $tea.Model {
|
|
|
1534
3279
|
}
|
|
1535
3280
|
}
|
|
1536
3281
|
|
|
1537
|
-
export class
|
|
3282
|
+
export class QueryAbcAbcAbcRequest extends $tea.Model {
|
|
1538
3283
|
// OAuth模式下的授权token
|
|
1539
3284
|
authToken?: string;
|
|
1540
3285
|
productInstanceId?: string;
|
|
1541
|
-
// 超时时间
|
|
1542
|
-
timeout: string;
|
|
1543
3286
|
static names(): { [key: string]: string } {
|
|
1544
3287
|
return {
|
|
1545
3288
|
authToken: 'auth_token',
|
|
1546
3289
|
productInstanceId: 'product_instance_id',
|
|
1547
|
-
timeout: 'timeout',
|
|
1548
3290
|
};
|
|
1549
3291
|
}
|
|
1550
3292
|
|
|
@@ -1552,7 +3294,6 @@ export class UnstabilizeOneLimitRequest extends $tea.Model {
|
|
|
1552
3294
|
return {
|
|
1553
3295
|
authToken: 'string',
|
|
1554
3296
|
productInstanceId: 'string',
|
|
1555
|
-
timeout: 'string',
|
|
1556
3297
|
};
|
|
1557
3298
|
}
|
|
1558
3299
|
|
|
@@ -1561,24 +3302,18 @@ export class UnstabilizeOneLimitRequest extends $tea.Model {
|
|
|
1561
3302
|
}
|
|
1562
3303
|
}
|
|
1563
3304
|
|
|
1564
|
-
export class
|
|
3305
|
+
export class QueryAbcAbcAbcResponse extends $tea.Model {
|
|
1565
3306
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1566
3307
|
reqMsgId?: string;
|
|
1567
3308
|
// 结果码,一般OK表示调用成功
|
|
1568
3309
|
resultCode?: string;
|
|
1569
3310
|
// 异常信息的文本描述
|
|
1570
3311
|
resultMsg?: string;
|
|
1571
|
-
// 结果码描述
|
|
1572
|
-
msg?: string;
|
|
1573
|
-
// 状态码
|
|
1574
|
-
stauts?: string;
|
|
1575
3312
|
static names(): { [key: string]: string } {
|
|
1576
3313
|
return {
|
|
1577
3314
|
reqMsgId: 'req_msg_id',
|
|
1578
3315
|
resultCode: 'result_code',
|
|
1579
3316
|
resultMsg: 'result_msg',
|
|
1580
|
-
msg: 'msg',
|
|
1581
|
-
stauts: 'stauts',
|
|
1582
3317
|
};
|
|
1583
3318
|
}
|
|
1584
3319
|
|
|
@@ -1587,8 +3322,6 @@ export class UnstabilizeOneLimitResponse extends $tea.Model {
|
|
|
1587
3322
|
reqMsgId: 'string',
|
|
1588
3323
|
resultCode: 'string',
|
|
1589
3324
|
resultMsg: 'string',
|
|
1590
|
-
msg: 'string',
|
|
1591
|
-
stauts: 'string',
|
|
1592
3325
|
};
|
|
1593
3326
|
}
|
|
1594
3327
|
|
|
@@ -1597,20 +3330,14 @@ export class UnstabilizeOneLimitResponse extends $tea.Model {
|
|
|
1597
3330
|
}
|
|
1598
3331
|
}
|
|
1599
3332
|
|
|
1600
|
-
export class
|
|
3333
|
+
export class BindAaaBbbCcdRequest extends $tea.Model {
|
|
1601
3334
|
// OAuth模式下的授权token
|
|
1602
3335
|
authToken?: string;
|
|
1603
3336
|
productInstanceId?: string;
|
|
1604
|
-
// 验证
|
|
1605
|
-
character1: string;
|
|
1606
|
-
// 用于验证
|
|
1607
|
-
character2: number;
|
|
1608
3337
|
static names(): { [key: string]: string } {
|
|
1609
3338
|
return {
|
|
1610
3339
|
authToken: 'auth_token',
|
|
1611
3340
|
productInstanceId: 'product_instance_id',
|
|
1612
|
-
character1: 'character1',
|
|
1613
|
-
character2: 'character2',
|
|
1614
3341
|
};
|
|
1615
3342
|
}
|
|
1616
3343
|
|
|
@@ -1618,8 +3345,6 @@ export class QueryGongxiangTesttestRequest extends $tea.Model {
|
|
|
1618
3345
|
return {
|
|
1619
3346
|
authToken: 'string',
|
|
1620
3347
|
productInstanceId: 'string',
|
|
1621
|
-
character1: 'string',
|
|
1622
|
-
character2: 'number',
|
|
1623
3348
|
};
|
|
1624
3349
|
}
|
|
1625
3350
|
|
|
@@ -1628,21 +3353,18 @@ export class QueryGongxiangTesttestRequest extends $tea.Model {
|
|
|
1628
3353
|
}
|
|
1629
3354
|
}
|
|
1630
3355
|
|
|
1631
|
-
export class
|
|
3356
|
+
export class BindAaaBbbCcdResponse extends $tea.Model {
|
|
1632
3357
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1633
3358
|
reqMsgId?: string;
|
|
1634
3359
|
// 结果码,一般OK表示调用成功
|
|
1635
3360
|
resultCode?: string;
|
|
1636
3361
|
// 异常信息的文本描述
|
|
1637
3362
|
resultMsg?: string;
|
|
1638
|
-
// 回参
|
|
1639
|
-
character1?: string;
|
|
1640
3363
|
static names(): { [key: string]: string } {
|
|
1641
3364
|
return {
|
|
1642
3365
|
reqMsgId: 'req_msg_id',
|
|
1643
3366
|
resultCode: 'result_code',
|
|
1644
3367
|
resultMsg: 'result_msg',
|
|
1645
|
-
character1: 'character1',
|
|
1646
3368
|
};
|
|
1647
3369
|
}
|
|
1648
3370
|
|
|
@@ -1651,7 +3373,6 @@ export class QueryGongxiangTesttestResponse extends $tea.Model {
|
|
|
1651
3373
|
reqMsgId: 'string',
|
|
1652
3374
|
resultCode: 'string',
|
|
1653
3375
|
resultMsg: 'string',
|
|
1654
|
-
character1: 'string',
|
|
1655
3376
|
};
|
|
1656
3377
|
}
|
|
1657
3378
|
|
|
@@ -1771,8 +3492,10 @@ export default class Client {
|
|
|
1771
3492
|
_maxRequestsPerHost: number;
|
|
1772
3493
|
|
|
1773
3494
|
/**
|
|
3495
|
+
* @remarks
|
|
1774
3496
|
* Init client with Config
|
|
1775
|
-
*
|
|
3497
|
+
*
|
|
3498
|
+
* @param config - config contains the necessary information to create a client
|
|
1776
3499
|
*/
|
|
1777
3500
|
constructor(config: Config) {
|
|
1778
3501
|
if (Util.isUnset(config)) {
|
|
@@ -1803,14 +3526,16 @@ export default class Client {
|
|
|
1803
3526
|
}
|
|
1804
3527
|
|
|
1805
3528
|
/**
|
|
3529
|
+
* @remarks
|
|
1806
3530
|
* Encapsulate the request and invoke the network
|
|
1807
|
-
*
|
|
1808
|
-
* @param
|
|
1809
|
-
* @param
|
|
1810
|
-
* @param
|
|
1811
|
-
* @param
|
|
1812
|
-
* @param
|
|
1813
|
-
* @
|
|
3531
|
+
*
|
|
3532
|
+
* @param action - api name
|
|
3533
|
+
* @param protocol - http or https
|
|
3534
|
+
* @param method - e.g. GET
|
|
3535
|
+
* @param pathname - pathname of every api
|
|
3536
|
+
* @param request - which contains request params
|
|
3537
|
+
* @param runtime - which controls some details of call api, such as retry times
|
|
3538
|
+
* @returns the response
|
|
1814
3539
|
*/
|
|
1815
3540
|
async doRequest(version: string, action: string, protocol: string, method: string, pathname: string, request: {[key: string]: any}, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<{[key: string]: any}> {
|
|
1816
3541
|
let _runtime: { [key: string]: any } = {
|
|
@@ -1861,8 +3586,8 @@ export default class Client {
|
|
|
1861
3586
|
req_msg_id: AntchainUtil.getNonce(),
|
|
1862
3587
|
access_key: this._accessKeyId,
|
|
1863
3588
|
base_sdk_version: "TeaSDK-2.0",
|
|
1864
|
-
sdk_version: "1.
|
|
1865
|
-
_prod_code: "
|
|
3589
|
+
sdk_version: "1.1.8",
|
|
3590
|
+
_prod_code: "DEMO",
|
|
1866
3591
|
_prod_channel: "undefined",
|
|
1867
3592
|
};
|
|
1868
3593
|
if (!Util.empty(this._securityToken)) {
|
|
@@ -1870,7 +3595,7 @@ export default class Client {
|
|
|
1870
3595
|
}
|
|
1871
3596
|
|
|
1872
3597
|
request_.headers = {
|
|
1873
|
-
host: Util.defaultString(this._endpoint, "openapi.antchain.antgroup.com"),
|
|
3598
|
+
host: Util.defaultString(this._endpoint, "centre-openapi.antchain.antgroup.com"),
|
|
1874
3599
|
'user-agent': Util.getUserAgent(this._userAgent),
|
|
1875
3600
|
...headers,
|
|
1876
3601
|
};
|
|
@@ -1910,34 +3635,78 @@ export default class Client {
|
|
|
1910
3635
|
}
|
|
1911
3636
|
|
|
1912
3637
|
/**
|
|
1913
|
-
*
|
|
1914
|
-
*
|
|
3638
|
+
* @remarks
|
|
3639
|
+
* Description: test
|
|
3640
|
+
* Summary: test
|
|
3641
|
+
*/
|
|
3642
|
+
async transferDatanetworkMeteringAaa(request: TransferDatanetworkMeteringAaaRequest): Promise<TransferDatanetworkMeteringAaaResponse> {
|
|
3643
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3644
|
+
let headers : {[key: string ]: string} = { };
|
|
3645
|
+
return await this.transferDatanetworkMeteringAaaEx(request, headers, runtime);
|
|
3646
|
+
}
|
|
3647
|
+
|
|
3648
|
+
/**
|
|
3649
|
+
* @remarks
|
|
3650
|
+
* Description: test
|
|
3651
|
+
* Summary: test
|
|
3652
|
+
*/
|
|
3653
|
+
async transferDatanetworkMeteringAaaEx(request: TransferDatanetworkMeteringAaaRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<TransferDatanetworkMeteringAaaResponse> {
|
|
3654
|
+
Util.validateModel(request);
|
|
3655
|
+
return $tea.cast<TransferDatanetworkMeteringAaaResponse>(await this.doRequest("1.0", "demo.datanetwork.metering.aaa.transfer", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new TransferDatanetworkMeteringAaaResponse({}));
|
|
3656
|
+
}
|
|
3657
|
+
|
|
3658
|
+
/**
|
|
3659
|
+
* @remarks
|
|
3660
|
+
* Description: Demo接口,返回当前服务器当前状态1
|
|
3661
|
+
* Summary: 检查服务状态
|
|
3662
|
+
*/
|
|
3663
|
+
async statusGatewayCheck(request: StatusGatewayCheckRequest): Promise<StatusGatewayCheckResponse> {
|
|
3664
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3665
|
+
let headers : {[key: string ]: string} = { };
|
|
3666
|
+
return await this.statusGatewayCheckEx(request, headers, runtime);
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3669
|
+
/**
|
|
3670
|
+
* @remarks
|
|
3671
|
+
* Description: Demo接口,返回当前服务器当前状态1
|
|
3672
|
+
* Summary: 检查服务状态
|
|
3673
|
+
*/
|
|
3674
|
+
async statusGatewayCheckEx(request: StatusGatewayCheckRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<StatusGatewayCheckResponse> {
|
|
3675
|
+
Util.validateModel(request);
|
|
3676
|
+
return $tea.cast<StatusGatewayCheckResponse>(await this.doRequest("1.0", "demo.gateway.check.status", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new StatusGatewayCheckResponse({}));
|
|
3677
|
+
}
|
|
3678
|
+
|
|
3679
|
+
/**
|
|
3680
|
+
* @remarks
|
|
3681
|
+
* Description: Demo接口,返回当前输入的值
|
|
3682
|
+
* Summary: 返回输入值1
|
|
1915
3683
|
*/
|
|
1916
|
-
async
|
|
3684
|
+
async echoGatewayCheck(request: EchoGatewayCheckRequest): Promise<EchoGatewayCheckResponse> {
|
|
1917
3685
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1918
3686
|
let headers : {[key: string ]: string} = { };
|
|
1919
|
-
return await this.
|
|
3687
|
+
return await this.echoGatewayCheckEx(request, headers, runtime);
|
|
1920
3688
|
}
|
|
1921
3689
|
|
|
1922
3690
|
/**
|
|
1923
|
-
*
|
|
1924
|
-
*
|
|
3691
|
+
* @remarks
|
|
3692
|
+
* Description: Demo接口,返回当前输入的值
|
|
3693
|
+
* Summary: 返回输入值1
|
|
1925
3694
|
*/
|
|
1926
|
-
async
|
|
3695
|
+
async echoGatewayCheckEx(request: EchoGatewayCheckRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<EchoGatewayCheckResponse> {
|
|
1927
3696
|
if (!Util.isUnset(request.fileObject)) {
|
|
1928
3697
|
let uploadReq = new CreateAntcloudGatewayxFileUploadRequest({
|
|
1929
3698
|
authToken: request.authToken,
|
|
1930
|
-
apiCode: "
|
|
3699
|
+
apiCode: "demo.gateway.check.echo",
|
|
1931
3700
|
fileName: request.fileObjectName,
|
|
1932
3701
|
});
|
|
1933
3702
|
let uploadResp = await this.createAntcloudGatewayxFileUploadEx(uploadReq, headers, runtime);
|
|
1934
|
-
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "
|
|
1935
|
-
let
|
|
3703
|
+
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "OK")) {
|
|
3704
|
+
let echoGatewayCheckResponse = new EchoGatewayCheckResponse({
|
|
1936
3705
|
reqMsgId: uploadResp.reqMsgId,
|
|
1937
3706
|
resultCode: uploadResp.resultCode,
|
|
1938
3707
|
resultMsg: uploadResp.resultMsg,
|
|
1939
3708
|
});
|
|
1940
|
-
return
|
|
3709
|
+
return echoGatewayCheckResponse;
|
|
1941
3710
|
}
|
|
1942
3711
|
|
|
1943
3712
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
@@ -1947,374 +3716,599 @@ export default class Client {
|
|
|
1947
3716
|
}
|
|
1948
3717
|
|
|
1949
3718
|
Util.validateModel(request);
|
|
1950
|
-
return $tea.cast<
|
|
3719
|
+
return $tea.cast<EchoGatewayCheckResponse>(await this.doRequest("1.0", "demo.gateway.check.echo", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new EchoGatewayCheckResponse({}));
|
|
1951
3720
|
}
|
|
1952
3721
|
|
|
1953
3722
|
/**
|
|
1954
|
-
*
|
|
1955
|
-
*
|
|
3723
|
+
* @remarks
|
|
3724
|
+
* Description: aaa
|
|
3725
|
+
* Summary: 测试demo
|
|
1956
3726
|
*/
|
|
1957
|
-
async
|
|
3727
|
+
async queryGatewayMy(request: QueryGatewayMyRequest): Promise<QueryGatewayMyResponse> {
|
|
1958
3728
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1959
3729
|
let headers : {[key: string ]: string} = { };
|
|
1960
|
-
return await this.
|
|
3730
|
+
return await this.queryGatewayMyEx(request, headers, runtime);
|
|
1961
3731
|
}
|
|
1962
3732
|
|
|
1963
3733
|
/**
|
|
1964
|
-
*
|
|
1965
|
-
*
|
|
3734
|
+
* @remarks
|
|
3735
|
+
* Description: aaa
|
|
3736
|
+
* Summary: 测试demo
|
|
1966
3737
|
*/
|
|
1967
|
-
async
|
|
3738
|
+
async queryGatewayMyEx(request: QueryGatewayMyRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayMyResponse> {
|
|
1968
3739
|
Util.validateModel(request);
|
|
1969
|
-
return $tea.cast<
|
|
3740
|
+
return $tea.cast<QueryGatewayMyResponse>(await this.doRequest("1.0", "demo.gateway.my.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryGatewayMyResponse({}));
|
|
1970
3741
|
}
|
|
1971
3742
|
|
|
1972
3743
|
/**
|
|
1973
|
-
*
|
|
1974
|
-
*
|
|
3744
|
+
* @remarks
|
|
3745
|
+
* Description: 超时测试
|
|
3746
|
+
* Summary: 超时
|
|
1975
3747
|
*/
|
|
1976
|
-
async
|
|
3748
|
+
async queryGatewayCheckEchotimeout(request: QueryGatewayCheckEchotimeoutRequest): Promise<QueryGatewayCheckEchotimeoutResponse> {
|
|
1977
3749
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1978
3750
|
let headers : {[key: string ]: string} = { };
|
|
1979
|
-
return await this.
|
|
3751
|
+
return await this.queryGatewayCheckEchotimeoutEx(request, headers, runtime);
|
|
1980
3752
|
}
|
|
1981
3753
|
|
|
1982
3754
|
/**
|
|
1983
|
-
*
|
|
1984
|
-
*
|
|
3755
|
+
* @remarks
|
|
3756
|
+
* Description: 超时测试
|
|
3757
|
+
* Summary: 超时
|
|
1985
3758
|
*/
|
|
1986
|
-
async
|
|
3759
|
+
async queryGatewayCheckEchotimeoutEx(request: QueryGatewayCheckEchotimeoutRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayCheckEchotimeoutResponse> {
|
|
1987
3760
|
Util.validateModel(request);
|
|
1988
|
-
return $tea.cast<
|
|
3761
|
+
return $tea.cast<QueryGatewayCheckEchotimeoutResponse>(await this.doRequest("1.0", "demo.gateway.check.echotimeout.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryGatewayCheckEchotimeoutResponse({}));
|
|
1989
3762
|
}
|
|
1990
3763
|
|
|
1991
3764
|
/**
|
|
1992
|
-
*
|
|
1993
|
-
*
|
|
3765
|
+
* @remarks
|
|
3766
|
+
* Description: 10 测测aa
|
|
3767
|
+
* Summary: 10s
|
|
1994
3768
|
*/
|
|
1995
|
-
async
|
|
3769
|
+
async queryGatewayCheckEchoten(request: QueryGatewayCheckEchotenRequest): Promise<QueryGatewayCheckEchotenResponse> {
|
|
1996
3770
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1997
3771
|
let headers : {[key: string ]: string} = { };
|
|
1998
|
-
return await this.
|
|
3772
|
+
return await this.queryGatewayCheckEchotenEx(request, headers, runtime);
|
|
1999
3773
|
}
|
|
2000
3774
|
|
|
2001
3775
|
/**
|
|
2002
|
-
*
|
|
2003
|
-
*
|
|
3776
|
+
* @remarks
|
|
3777
|
+
* Description: 10 测测aa
|
|
3778
|
+
* Summary: 10s
|
|
2004
3779
|
*/
|
|
2005
|
-
async
|
|
3780
|
+
async queryGatewayCheckEchotenEx(request: QueryGatewayCheckEchotenRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayCheckEchotenResponse> {
|
|
2006
3781
|
Util.validateModel(request);
|
|
2007
|
-
return $tea.cast<
|
|
3782
|
+
return $tea.cast<QueryGatewayCheckEchotenResponse>(await this.doRequest("1.0", "demo.gateway.check.echoten.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryGatewayCheckEchotenResponse({}));
|
|
2008
3783
|
}
|
|
2009
3784
|
|
|
2010
3785
|
/**
|
|
2011
|
-
*
|
|
2012
|
-
*
|
|
3786
|
+
* @remarks
|
|
3787
|
+
* Description: 简介简介简介s
|
|
3788
|
+
* Summary: 简介简介
|
|
2013
3789
|
*/
|
|
2014
|
-
async
|
|
3790
|
+
async queryAdAsdAsd(request: QueryAdAsdAsdRequest): Promise<QueryAdAsdAsdResponse> {
|
|
2015
3791
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2016
3792
|
let headers : {[key: string ]: string} = { };
|
|
2017
|
-
return await this.
|
|
3793
|
+
return await this.queryAdAsdAsdEx(request, headers, runtime);
|
|
2018
3794
|
}
|
|
2019
3795
|
|
|
2020
3796
|
/**
|
|
2021
|
-
*
|
|
2022
|
-
*
|
|
3797
|
+
* @remarks
|
|
3798
|
+
* Description: 简介简介简介s
|
|
3799
|
+
* Summary: 简介简介
|
|
2023
3800
|
*/
|
|
2024
|
-
async
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
apiCode: "antchain.abc.test.file.upload",
|
|
2029
|
-
fileName: request.fileObjectName,
|
|
2030
|
-
});
|
|
2031
|
-
let uploadResp = await this.createAntcloudGatewayxFileUploadEx(uploadReq, headers, runtime);
|
|
2032
|
-
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "ok")) {
|
|
2033
|
-
let uploadTestFileResponse = new UploadTestFileResponse({
|
|
2034
|
-
reqMsgId: uploadResp.reqMsgId,
|
|
2035
|
-
resultCode: uploadResp.resultCode,
|
|
2036
|
-
resultMsg: uploadResp.resultMsg,
|
|
2037
|
-
});
|
|
2038
|
-
return uploadTestFileResponse;
|
|
2039
|
-
}
|
|
3801
|
+
async queryAdAsdAsdEx(request: QueryAdAsdAsdRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryAdAsdAsdResponse> {
|
|
3802
|
+
Util.validateModel(request);
|
|
3803
|
+
return $tea.cast<QueryAdAsdAsdResponse>(await this.doRequest("1.0", "demo.ad.asd.asd.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryAdAsdAsdResponse({}));
|
|
3804
|
+
}
|
|
2040
3805
|
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
3806
|
+
/**
|
|
3807
|
+
* @remarks
|
|
3808
|
+
* Description: 根据入参组合返回结果,Fr 自动化连通性测试。
|
|
3809
|
+
* Summary: road.init(Fr AutoT)
|
|
3810
|
+
*/
|
|
3811
|
+
async initGatewayRoad(request: InitGatewayRoadRequest): Promise<InitGatewayRoadResponse> {
|
|
3812
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3813
|
+
let headers : {[key: string ]: string} = { };
|
|
3814
|
+
return await this.initGatewayRoadEx(request, headers, runtime);
|
|
3815
|
+
}
|
|
2046
3816
|
|
|
3817
|
+
/**
|
|
3818
|
+
* @remarks
|
|
3819
|
+
* Description: 根据入参组合返回结果,Fr 自动化连通性测试。
|
|
3820
|
+
* Summary: road.init(Fr AutoT)
|
|
3821
|
+
*/
|
|
3822
|
+
async initGatewayRoadEx(request: InitGatewayRoadRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<InitGatewayRoadResponse> {
|
|
2047
3823
|
Util.validateModel(request);
|
|
2048
|
-
return $tea.cast<
|
|
3824
|
+
return $tea.cast<InitGatewayRoadResponse>(await this.doRequest("1.0", "demo.gateway.road.init", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new InitGatewayRoadResponse({}));
|
|
2049
3825
|
}
|
|
2050
3826
|
|
|
2051
3827
|
/**
|
|
2052
|
-
*
|
|
2053
|
-
*
|
|
3828
|
+
* @remarks
|
|
3829
|
+
* Description: 近端网关测试接口
|
|
3830
|
+
* Summary: 近端网关测试接口(勿删)
|
|
2054
3831
|
*/
|
|
2055
|
-
async
|
|
3832
|
+
async queryGatewayEmbed(request: QueryGatewayEmbedRequest): Promise<QueryGatewayEmbedResponse> {
|
|
2056
3833
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2057
3834
|
let headers : {[key: string ]: string} = { };
|
|
2058
|
-
return await this.
|
|
3835
|
+
return await this.queryGatewayEmbedEx(request, headers, runtime);
|
|
2059
3836
|
}
|
|
2060
3837
|
|
|
2061
3838
|
/**
|
|
2062
|
-
*
|
|
2063
|
-
*
|
|
3839
|
+
* @remarks
|
|
3840
|
+
* Description: 近端网关测试接口
|
|
3841
|
+
* Summary: 近端网关测试接口(勿删)
|
|
2064
3842
|
*/
|
|
2065
|
-
async
|
|
3843
|
+
async queryGatewayEmbedEx(request: QueryGatewayEmbedRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayEmbedResponse> {
|
|
2066
3844
|
Util.validateModel(request);
|
|
2067
|
-
return $tea.cast<
|
|
3845
|
+
return $tea.cast<QueryGatewayEmbedResponse>(await this.doRequest("1.0", "demo.gateway.embed.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryGatewayEmbedResponse({}));
|
|
2068
3846
|
}
|
|
2069
3847
|
|
|
2070
3848
|
/**
|
|
2071
|
-
*
|
|
2072
|
-
*
|
|
3849
|
+
* @remarks
|
|
3850
|
+
* Description: 更新入参后返回结果,Fr 自动化连通性测试。
|
|
3851
|
+
* Summary: road.upd(Fr AutoT)
|
|
2073
3852
|
*/
|
|
2074
|
-
async
|
|
3853
|
+
async updateGatewayRoad(request: UpdateGatewayRoadRequest): Promise<UpdateGatewayRoadResponse> {
|
|
2075
3854
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2076
3855
|
let headers : {[key: string ]: string} = { };
|
|
2077
|
-
return await this.
|
|
3856
|
+
return await this.updateGatewayRoadEx(request, headers, runtime);
|
|
2078
3857
|
}
|
|
2079
3858
|
|
|
2080
3859
|
/**
|
|
2081
|
-
*
|
|
2082
|
-
*
|
|
3860
|
+
* @remarks
|
|
3861
|
+
* Description: 更新入参后返回结果,Fr 自动化连通性测试。
|
|
3862
|
+
* Summary: road.upd(Fr AutoT)
|
|
3863
|
+
*/
|
|
3864
|
+
async updateGatewayRoadEx(request: UpdateGatewayRoadRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateGatewayRoadResponse> {
|
|
3865
|
+
Util.validateModel(request);
|
|
3866
|
+
return $tea.cast<UpdateGatewayRoadResponse>(await this.doRequest("1.0", "demo.gateway.road.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateGatewayRoadResponse({}));
|
|
3867
|
+
}
|
|
3868
|
+
|
|
3869
|
+
/**
|
|
3870
|
+
* @remarks
|
|
3871
|
+
* Description: 查询并返回结果,Fr 自动化连通性测试。
|
|
3872
|
+
* Summary: road.query(Fr AutoT)
|
|
3873
|
+
*/
|
|
3874
|
+
async queryGatewayRoad(request: QueryGatewayRoadRequest): Promise<QueryGatewayRoadResponse> {
|
|
3875
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3876
|
+
let headers : {[key: string ]: string} = { };
|
|
3877
|
+
return await this.queryGatewayRoadEx(request, headers, runtime);
|
|
3878
|
+
}
|
|
3879
|
+
|
|
3880
|
+
/**
|
|
3881
|
+
* @remarks
|
|
3882
|
+
* Description: 查询并返回结果,Fr 自动化连通性测试。
|
|
3883
|
+
* Summary: road.query(Fr AutoT)
|
|
2083
3884
|
*/
|
|
2084
|
-
async
|
|
3885
|
+
async queryGatewayRoadEx(request: QueryGatewayRoadRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayRoadResponse> {
|
|
2085
3886
|
Util.validateModel(request);
|
|
2086
|
-
return $tea.cast<
|
|
3887
|
+
return $tea.cast<QueryGatewayRoadResponse>(await this.doRequest("1.0", "demo.gateway.road.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryGatewayRoadResponse({}));
|
|
2087
3888
|
}
|
|
2088
3889
|
|
|
2089
3890
|
/**
|
|
3891
|
+
* @remarks
|
|
3892
|
+
* Description: 执行计算后返回,Fr 自动化连通性测试。
|
|
3893
|
+
* Summary: road.exec(Fr AutoT)
|
|
3894
|
+
*/
|
|
3895
|
+
async execGatewayRoad(request: ExecGatewayRoadRequest): Promise<ExecGatewayRoadResponse> {
|
|
3896
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3897
|
+
let headers : {[key: string ]: string} = { };
|
|
3898
|
+
return await this.execGatewayRoadEx(request, headers, runtime);
|
|
3899
|
+
}
|
|
3900
|
+
|
|
3901
|
+
/**
|
|
3902
|
+
* @remarks
|
|
3903
|
+
* Description: 执行计算后返回,Fr 自动化连通性测试。
|
|
3904
|
+
* Summary: road.exec(Fr AutoT)
|
|
3905
|
+
*/
|
|
3906
|
+
async execGatewayRoadEx(request: ExecGatewayRoadRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ExecGatewayRoadResponse> {
|
|
3907
|
+
Util.validateModel(request);
|
|
3908
|
+
return $tea.cast<ExecGatewayRoadResponse>(await this.doRequest("1.0", "demo.gateway.road.exec", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ExecGatewayRoadResponse({}));
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
/**
|
|
3912
|
+
* @remarks
|
|
2090
3913
|
* Description: 压测接口3
|
|
2091
3914
|
* Summary: 压测接口3
|
|
2092
3915
|
*/
|
|
2093
|
-
async
|
|
3916
|
+
async queryLoadtestTimeThree(request: QueryLoadtestTimeThreeRequest): Promise<QueryLoadtestTimeThreeResponse> {
|
|
2094
3917
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2095
3918
|
let headers : {[key: string ]: string} = { };
|
|
2096
|
-
return await this.
|
|
3919
|
+
return await this.queryLoadtestTimeThreeEx(request, headers, runtime);
|
|
2097
3920
|
}
|
|
2098
3921
|
|
|
2099
3922
|
/**
|
|
3923
|
+
* @remarks
|
|
2100
3924
|
* Description: 压测接口3
|
|
2101
3925
|
* Summary: 压测接口3
|
|
2102
3926
|
*/
|
|
2103
|
-
async
|
|
3927
|
+
async queryLoadtestTimeThreeEx(request: QueryLoadtestTimeThreeRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryLoadtestTimeThreeResponse> {
|
|
3928
|
+
Util.validateModel(request);
|
|
3929
|
+
return $tea.cast<QueryLoadtestTimeThreeResponse>(await this.doRequest("1.0", "demo.loadtest.time.three.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryLoadtestTimeThreeResponse({}));
|
|
3930
|
+
}
|
|
3931
|
+
|
|
3932
|
+
/**
|
|
3933
|
+
* @remarks
|
|
3934
|
+
* Description: test
|
|
3935
|
+
* Summary: 自动化测试工程使用,勿删勿改
|
|
3936
|
+
*/
|
|
3937
|
+
async queryInstanceidRule(request: QueryInstanceidRuleRequest): Promise<QueryInstanceidRuleResponse> {
|
|
3938
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3939
|
+
let headers : {[key: string ]: string} = { };
|
|
3940
|
+
return await this.queryInstanceidRuleEx(request, headers, runtime);
|
|
3941
|
+
}
|
|
3942
|
+
|
|
3943
|
+
/**
|
|
3944
|
+
* @remarks
|
|
3945
|
+
* Description: test
|
|
3946
|
+
* Summary: 自动化测试工程使用,勿删勿改
|
|
3947
|
+
*/
|
|
3948
|
+
async queryInstanceidRuleEx(request: QueryInstanceidRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInstanceidRuleResponse> {
|
|
3949
|
+
Util.validateModel(request);
|
|
3950
|
+
return $tea.cast<QueryInstanceidRuleResponse>(await this.doRequest("1.0", "demo.instanceid.rule.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInstanceidRuleResponse({}));
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3953
|
+
/**
|
|
3954
|
+
* @remarks
|
|
3955
|
+
* Description: 设置下游耗时
|
|
3956
|
+
* Summary: 超时(加密)
|
|
3957
|
+
*/
|
|
3958
|
+
async queryGatewayCheckEchotimeoutok(request: QueryGatewayCheckEchotimeoutokRequest): Promise<QueryGatewayCheckEchotimeoutokResponse> {
|
|
3959
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3960
|
+
let headers : {[key: string ]: string} = { };
|
|
3961
|
+
return await this.queryGatewayCheckEchotimeoutokEx(request, headers, runtime);
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3964
|
+
/**
|
|
3965
|
+
* @remarks
|
|
3966
|
+
* Description: 设置下游耗时
|
|
3967
|
+
* Summary: 超时(加密)
|
|
3968
|
+
*/
|
|
3969
|
+
async queryGatewayCheckEchotimeoutokEx(request: QueryGatewayCheckEchotimeoutokRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayCheckEchotimeoutokResponse> {
|
|
3970
|
+
Util.validateModel(request);
|
|
3971
|
+
return $tea.cast<QueryGatewayCheckEchotimeoutokResponse>(await this.doRequest("1.0", "demo.gateway.check.echotimeoutok.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryGatewayCheckEchotimeoutokResponse({}));
|
|
3972
|
+
}
|
|
3973
|
+
|
|
3974
|
+
/**
|
|
3975
|
+
* @remarks
|
|
3976
|
+
* Description: 双百&门户&网关,停服决策测试使用
|
|
3977
|
+
* Summary: 商业化规则测试
|
|
3978
|
+
*/
|
|
3979
|
+
async matchBusinessAndInstance(request: MatchBusinessAndInstanceRequest): Promise<MatchBusinessAndInstanceResponse> {
|
|
3980
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3981
|
+
let headers : {[key: string ]: string} = { };
|
|
3982
|
+
return await this.matchBusinessAndInstanceEx(request, headers, runtime);
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
/**
|
|
3986
|
+
* @remarks
|
|
3987
|
+
* Description: 双百&门户&网关,停服决策测试使用
|
|
3988
|
+
* Summary: 商业化规则测试
|
|
3989
|
+
*/
|
|
3990
|
+
async matchBusinessAndInstanceEx(request: MatchBusinessAndInstanceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<MatchBusinessAndInstanceResponse> {
|
|
3991
|
+
Util.validateModel(request);
|
|
3992
|
+
return $tea.cast<MatchBusinessAndInstanceResponse>(await this.doRequest("1.0", "demo.business.and.instance.match", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new MatchBusinessAndInstanceResponse({}));
|
|
3993
|
+
}
|
|
3994
|
+
|
|
3995
|
+
/**
|
|
3996
|
+
* @remarks
|
|
3997
|
+
* Description: testtrasfer
|
|
3998
|
+
* Summary: testtrasfer
|
|
3999
|
+
*/
|
|
4000
|
+
async transferTesttrasferTesttrasferTesttrasfer(request: TransferTesttrasferTesttrasferTesttrasferRequest): Promise<TransferTesttrasferTesttrasferTesttrasferResponse> {
|
|
4001
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4002
|
+
let headers : {[key: string ]: string} = { };
|
|
4003
|
+
return await this.transferTesttrasferTesttrasferTesttrasferEx(request, headers, runtime);
|
|
4004
|
+
}
|
|
4005
|
+
|
|
4006
|
+
/**
|
|
4007
|
+
* @remarks
|
|
4008
|
+
* Description: testtrasfer
|
|
4009
|
+
* Summary: testtrasfer
|
|
4010
|
+
*/
|
|
4011
|
+
async transferTesttrasferTesttrasferTesttrasferEx(request: TransferTesttrasferTesttrasferTesttrasferRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<TransferTesttrasferTesttrasferTesttrasferResponse> {
|
|
4012
|
+
Util.validateModel(request);
|
|
4013
|
+
return $tea.cast<TransferTesttrasferTesttrasferTesttrasferResponse>(await this.doRequest("1.0", "demo.testtrasfer.testtrasfer.testtrasfer.transfer", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new TransferTesttrasferTesttrasferTesttrasferResponse({}));
|
|
4014
|
+
}
|
|
4015
|
+
|
|
4016
|
+
/**
|
|
4017
|
+
* @remarks
|
|
4018
|
+
* Description: vvv
|
|
4019
|
+
* Summary: test
|
|
4020
|
+
*/
|
|
4021
|
+
async queryTestvvvvvTestvvvvvTestvvvvv(request: QueryTestvvvvvTestvvvvvTestvvvvvRequest): Promise<QueryTestvvvvvTestvvvvvTestvvvvvResponse> {
|
|
4022
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4023
|
+
let headers : {[key: string ]: string} = { };
|
|
4024
|
+
return await this.queryTestvvvvvTestvvvvvTestvvvvvEx(request, headers, runtime);
|
|
4025
|
+
}
|
|
4026
|
+
|
|
4027
|
+
/**
|
|
4028
|
+
* @remarks
|
|
4029
|
+
* Description: vvv
|
|
4030
|
+
* Summary: test
|
|
4031
|
+
*/
|
|
4032
|
+
async queryTestvvvvvTestvvvvvTestvvvvvEx(request: QueryTestvvvvvTestvvvvvTestvvvvvRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryTestvvvvvTestvvvvvTestvvvvvResponse> {
|
|
4033
|
+
Util.validateModel(request);
|
|
4034
|
+
return $tea.cast<QueryTestvvvvvTestvvvvvTestvvvvvResponse>(await this.doRequest("1.0", "demo.testvvvvv.testvvvvv.testvvvvv.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryTestvvvvvTestvvvvvTestvvvvvResponse({}));
|
|
4035
|
+
}
|
|
4036
|
+
|
|
4037
|
+
/**
|
|
4038
|
+
* @remarks
|
|
4039
|
+
* Description: 流失查询测试
|
|
4040
|
+
* Summary: 流失查询测试
|
|
4041
|
+
*/
|
|
4042
|
+
async queryStreamTest(request: QueryStreamTestRequest): Promise<QueryStreamTestResponse> {
|
|
4043
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4044
|
+
let headers : {[key: string ]: string} = { };
|
|
4045
|
+
return await this.queryStreamTestEx(request, headers, runtime);
|
|
4046
|
+
}
|
|
4047
|
+
|
|
4048
|
+
/**
|
|
4049
|
+
* @remarks
|
|
4050
|
+
* Description: 流失查询测试
|
|
4051
|
+
* Summary: 流失查询测试
|
|
4052
|
+
*/
|
|
4053
|
+
async queryStreamTestEx(request: QueryStreamTestRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryStreamTestResponse> {
|
|
4054
|
+
Util.validateModel(request);
|
|
4055
|
+
return $tea.cast<QueryStreamTestResponse>(await this.doRequest("1.0", "demo.stream.test.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryStreamTestResponse({}));
|
|
4056
|
+
}
|
|
4057
|
+
|
|
4058
|
+
/**
|
|
4059
|
+
* @remarks
|
|
4060
|
+
* Description: 流式处理
|
|
4061
|
+
* Summary: 流式处理
|
|
4062
|
+
*/
|
|
4063
|
+
async queryStreamTestmethod(request: QueryStreamTestmethodRequest): Promise<QueryStreamTestmethodResponse> {
|
|
4064
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4065
|
+
let headers : {[key: string ]: string} = { };
|
|
4066
|
+
return await this.queryStreamTestmethodEx(request, headers, runtime);
|
|
4067
|
+
}
|
|
4068
|
+
|
|
4069
|
+
/**
|
|
4070
|
+
* @remarks
|
|
4071
|
+
* Description: 流式处理
|
|
4072
|
+
* Summary: 流式处理
|
|
4073
|
+
*/
|
|
4074
|
+
async queryStreamTestmethodEx(request: QueryStreamTestmethodRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryStreamTestmethodResponse> {
|
|
2104
4075
|
Util.validateModel(request);
|
|
2105
|
-
return $tea.cast<
|
|
4076
|
+
return $tea.cast<QueryStreamTestmethodResponse>(await this.doRequest("1.0", "demo.stream.testmethod.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryStreamTestmethodResponse({}));
|
|
2106
4077
|
}
|
|
2107
4078
|
|
|
2108
4079
|
/**
|
|
2109
|
-
*
|
|
2110
|
-
*
|
|
4080
|
+
* @remarks
|
|
4081
|
+
* Description: 模拟下游超时情况
|
|
4082
|
+
* Summary: 流式超时测试接口
|
|
2111
4083
|
*/
|
|
2112
|
-
async
|
|
4084
|
+
async queryStreamTimeout(request: QueryStreamTimeoutRequest): Promise<QueryStreamTimeoutResponse> {
|
|
2113
4085
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2114
4086
|
let headers : {[key: string ]: string} = { };
|
|
2115
|
-
return await this.
|
|
4087
|
+
return await this.queryStreamTimeoutEx(request, headers, runtime);
|
|
2116
4088
|
}
|
|
2117
4089
|
|
|
2118
4090
|
/**
|
|
2119
|
-
*
|
|
2120
|
-
*
|
|
4091
|
+
* @remarks
|
|
4092
|
+
* Description: 模拟下游超时情况
|
|
4093
|
+
* Summary: 流式超时测试接口
|
|
2121
4094
|
*/
|
|
2122
|
-
async
|
|
4095
|
+
async queryStreamTimeoutEx(request: QueryStreamTimeoutRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryStreamTimeoutResponse> {
|
|
2123
4096
|
Util.validateModel(request);
|
|
2124
|
-
return $tea.cast<
|
|
4097
|
+
return $tea.cast<QueryStreamTimeoutResponse>(await this.doRequest("1.0", "demo.stream.timeout.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryStreamTimeoutResponse({}));
|
|
2125
4098
|
}
|
|
2126
4099
|
|
|
2127
4100
|
/**
|
|
2128
|
-
*
|
|
2129
|
-
*
|
|
4101
|
+
* @remarks
|
|
4102
|
+
* Description: 模拟下游返回非json的情况
|
|
4103
|
+
* Summary: 流式下游返回非json
|
|
2130
4104
|
*/
|
|
2131
|
-
async
|
|
4105
|
+
async queryStreamNonjson(request: QueryStreamNonjsonRequest): Promise<QueryStreamNonjsonResponse> {
|
|
2132
4106
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2133
4107
|
let headers : {[key: string ]: string} = { };
|
|
2134
|
-
return await this.
|
|
4108
|
+
return await this.queryStreamNonjsonEx(request, headers, runtime);
|
|
2135
4109
|
}
|
|
2136
4110
|
|
|
2137
4111
|
/**
|
|
2138
|
-
*
|
|
2139
|
-
*
|
|
4112
|
+
* @remarks
|
|
4113
|
+
* Description: 模拟下游返回非json的情况
|
|
4114
|
+
* Summary: 流式下游返回非json
|
|
2140
4115
|
*/
|
|
2141
|
-
async
|
|
4116
|
+
async queryStreamNonjsonEx(request: QueryStreamNonjsonRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryStreamNonjsonResponse> {
|
|
2142
4117
|
Util.validateModel(request);
|
|
2143
|
-
return $tea.cast<
|
|
4118
|
+
return $tea.cast<QueryStreamNonjsonResponse>(await this.doRequest("1.0", "demo.stream.nonjson.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryStreamNonjsonResponse({}));
|
|
2144
4119
|
}
|
|
2145
4120
|
|
|
2146
4121
|
/**
|
|
2147
|
-
*
|
|
2148
|
-
*
|
|
4122
|
+
* @remarks
|
|
4123
|
+
* Description: 流式出参包含特殊字符
|
|
4124
|
+
* Summary: 流式出参包含特殊字符
|
|
2149
4125
|
*/
|
|
2150
|
-
async
|
|
4126
|
+
async queryStreamSpecialCharacters(request: QueryStreamSpecialCharactersRequest): Promise<QueryStreamSpecialCharactersResponse> {
|
|
2151
4127
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2152
4128
|
let headers : {[key: string ]: string} = { };
|
|
2153
|
-
return await this.
|
|
4129
|
+
return await this.queryStreamSpecialCharactersEx(request, headers, runtime);
|
|
2154
4130
|
}
|
|
2155
4131
|
|
|
2156
4132
|
/**
|
|
2157
|
-
*
|
|
2158
|
-
*
|
|
4133
|
+
* @remarks
|
|
4134
|
+
* Description: 流式出参包含特殊字符
|
|
4135
|
+
* Summary: 流式出参包含特殊字符
|
|
2159
4136
|
*/
|
|
2160
|
-
async
|
|
4137
|
+
async queryStreamSpecialCharactersEx(request: QueryStreamSpecialCharactersRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryStreamSpecialCharactersResponse> {
|
|
2161
4138
|
Util.validateModel(request);
|
|
2162
|
-
return $tea.cast<
|
|
4139
|
+
return $tea.cast<QueryStreamSpecialCharactersResponse>(await this.doRequest("1.0", "demo.stream.special.characters.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryStreamSpecialCharactersResponse({}));
|
|
2163
4140
|
}
|
|
2164
4141
|
|
|
2165
4142
|
/**
|
|
2166
|
-
*
|
|
2167
|
-
*
|
|
4143
|
+
* @remarks
|
|
4144
|
+
* Description: 非流式返回
|
|
4145
|
+
* Summary: 非流式返回
|
|
2168
4146
|
*/
|
|
2169
|
-
async
|
|
4147
|
+
async queryStreamNonstream(request: QueryStreamNonstreamRequest): Promise<QueryStreamNonstreamResponse> {
|
|
2170
4148
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2171
4149
|
let headers : {[key: string ]: string} = { };
|
|
2172
|
-
return await this.
|
|
4150
|
+
return await this.queryStreamNonstreamEx(request, headers, runtime);
|
|
2173
4151
|
}
|
|
2174
4152
|
|
|
2175
4153
|
/**
|
|
2176
|
-
*
|
|
2177
|
-
*
|
|
4154
|
+
* @remarks
|
|
4155
|
+
* Description: 非流式返回
|
|
4156
|
+
* Summary: 非流式返回
|
|
2178
4157
|
*/
|
|
2179
|
-
async
|
|
4158
|
+
async queryStreamNonstreamEx(request: QueryStreamNonstreamRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryStreamNonstreamResponse> {
|
|
2180
4159
|
Util.validateModel(request);
|
|
2181
|
-
return $tea.cast<
|
|
4160
|
+
return $tea.cast<QueryStreamNonstreamResponse>(await this.doRequest("1.0", "demo.stream.nonstream.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryStreamNonstreamResponse({}));
|
|
2182
4161
|
}
|
|
2183
4162
|
|
|
2184
4163
|
/**
|
|
2185
|
-
*
|
|
2186
|
-
*
|
|
4164
|
+
* @remarks
|
|
4165
|
+
* Description: 压测接口1
|
|
4166
|
+
* Summary: 压测接口1
|
|
2187
4167
|
*/
|
|
2188
|
-
async
|
|
4168
|
+
async queryLoadtestTimeOne(request: QueryLoadtestTimeOneRequest): Promise<QueryLoadtestTimeOneResponse> {
|
|
2189
4169
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2190
4170
|
let headers : {[key: string ]: string} = { };
|
|
2191
|
-
return await this.
|
|
4171
|
+
return await this.queryLoadtestTimeOneEx(request, headers, runtime);
|
|
2192
4172
|
}
|
|
2193
4173
|
|
|
2194
4174
|
/**
|
|
2195
|
-
*
|
|
2196
|
-
*
|
|
4175
|
+
* @remarks
|
|
4176
|
+
* Description: 压测接口1
|
|
4177
|
+
* Summary: 压测接口1
|
|
2197
4178
|
*/
|
|
2198
|
-
async
|
|
4179
|
+
async queryLoadtestTimeOneEx(request: QueryLoadtestTimeOneRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryLoadtestTimeOneResponse> {
|
|
2199
4180
|
Util.validateModel(request);
|
|
2200
|
-
return $tea.cast<
|
|
4181
|
+
return $tea.cast<QueryLoadtestTimeOneResponse>(await this.doRequest("1.0", "demo.loadtest.time.one.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryLoadtestTimeOneResponse({}));
|
|
2201
4182
|
}
|
|
2202
4183
|
|
|
2203
4184
|
/**
|
|
2204
|
-
*
|
|
2205
|
-
*
|
|
4185
|
+
* @remarks
|
|
4186
|
+
* Description: 压测接口2
|
|
4187
|
+
* Summary: 压测接口2
|
|
2206
4188
|
*/
|
|
2207
|
-
async
|
|
4189
|
+
async queryLoadtestTimeTwo(request: QueryLoadtestTimeTwoRequest): Promise<QueryLoadtestTimeTwoResponse> {
|
|
2208
4190
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2209
4191
|
let headers : {[key: string ]: string} = { };
|
|
2210
|
-
return await this.
|
|
4192
|
+
return await this.queryLoadtestTimeTwoEx(request, headers, runtime);
|
|
2211
4193
|
}
|
|
2212
4194
|
|
|
2213
4195
|
/**
|
|
2214
|
-
*
|
|
2215
|
-
*
|
|
4196
|
+
* @remarks
|
|
4197
|
+
* Description: 压测接口2
|
|
4198
|
+
* Summary: 压测接口2
|
|
2216
4199
|
*/
|
|
2217
|
-
async
|
|
4200
|
+
async queryLoadtestTimeTwoEx(request: QueryLoadtestTimeTwoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryLoadtestTimeTwoResponse> {
|
|
2218
4201
|
Util.validateModel(request);
|
|
2219
|
-
return $tea.cast<
|
|
4202
|
+
return $tea.cast<QueryLoadtestTimeTwoResponse>(await this.doRequest("1.0", "demo.loadtest.time.two.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryLoadtestTimeTwoResponse({}));
|
|
2220
4203
|
}
|
|
2221
4204
|
|
|
2222
4205
|
/**
|
|
2223
|
-
*
|
|
2224
|
-
*
|
|
4206
|
+
* @remarks
|
|
4207
|
+
* Description: 大模型护栏多轮对话提问检测 测试
|
|
4208
|
+
* Summary: 大模型护栏多轮对话提问检测
|
|
2225
4209
|
*/
|
|
2226
|
-
async
|
|
4210
|
+
async checkAicoguardcoreAicoguardrailsQuestion(request: CheckAicoguardcoreAicoguardrailsQuestionRequest): Promise<CheckAicoguardcoreAicoguardrailsQuestionResponse> {
|
|
2227
4211
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2228
4212
|
let headers : {[key: string ]: string} = { };
|
|
2229
|
-
return await this.
|
|
4213
|
+
return await this.checkAicoguardcoreAicoguardrailsQuestionEx(request, headers, runtime);
|
|
2230
4214
|
}
|
|
2231
4215
|
|
|
2232
4216
|
/**
|
|
2233
|
-
*
|
|
2234
|
-
*
|
|
4217
|
+
* @remarks
|
|
4218
|
+
* Description: 大模型护栏多轮对话提问检测 测试
|
|
4219
|
+
* Summary: 大模型护栏多轮对话提问检测
|
|
2235
4220
|
*/
|
|
2236
|
-
async
|
|
4221
|
+
async checkAicoguardcoreAicoguardrailsQuestionEx(request: CheckAicoguardcoreAicoguardrailsQuestionRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CheckAicoguardcoreAicoguardrailsQuestionResponse> {
|
|
2237
4222
|
Util.validateModel(request);
|
|
2238
|
-
return $tea.cast<
|
|
4223
|
+
return $tea.cast<CheckAicoguardcoreAicoguardrailsQuestionResponse>(await this.doRequest("1.0", "demo.aicoguardcore.aicoguardrails.question.check", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CheckAicoguardcoreAicoguardrailsQuestionResponse({}));
|
|
2239
4224
|
}
|
|
2240
4225
|
|
|
2241
4226
|
/**
|
|
2242
|
-
*
|
|
2243
|
-
*
|
|
4227
|
+
* @remarks
|
|
4228
|
+
* Description: 自动化测试创建test,请勿修改、删除
|
|
4229
|
+
* Summary: 自动化测试创建test1
|
|
2244
4230
|
*/
|
|
2245
|
-
async
|
|
4231
|
+
async bindAaaBbbCcc(request: BindAaaBbbCccRequest): Promise<BindAaaBbbCccResponse> {
|
|
2246
4232
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2247
4233
|
let headers : {[key: string ]: string} = { };
|
|
2248
|
-
return await this.
|
|
4234
|
+
return await this.bindAaaBbbCccEx(request, headers, runtime);
|
|
2249
4235
|
}
|
|
2250
4236
|
|
|
2251
4237
|
/**
|
|
2252
|
-
*
|
|
2253
|
-
*
|
|
4238
|
+
* @remarks
|
|
4239
|
+
* Description: 自动化测试创建test,请勿修改、删除
|
|
4240
|
+
* Summary: 自动化测试创建test1
|
|
2254
4241
|
*/
|
|
2255
|
-
async
|
|
4242
|
+
async bindAaaBbbCccEx(request: BindAaaBbbCccRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BindAaaBbbCccResponse> {
|
|
2256
4243
|
Util.validateModel(request);
|
|
2257
|
-
return $tea.cast<
|
|
4244
|
+
return $tea.cast<BindAaaBbbCccResponse>(await this.doRequest("1.0", "demo.aaa.bbb.ccc.bind", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BindAaaBbbCccResponse({}));
|
|
2258
4245
|
}
|
|
2259
4246
|
|
|
2260
4247
|
/**
|
|
2261
|
-
*
|
|
2262
|
-
*
|
|
4248
|
+
* @remarks
|
|
4249
|
+
* Description: 自动化测试创建111
|
|
4250
|
+
* Summary: 自动化测试创建(勿动)
|
|
2263
4251
|
*/
|
|
2264
|
-
async
|
|
4252
|
+
async queryAaaBbbCcc(request: QueryAaaBbbCccRequest): Promise<QueryAaaBbbCccResponse> {
|
|
2265
4253
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2266
4254
|
let headers : {[key: string ]: string} = { };
|
|
2267
|
-
return await this.
|
|
4255
|
+
return await this.queryAaaBbbCccEx(request, headers, runtime);
|
|
2268
4256
|
}
|
|
2269
4257
|
|
|
2270
4258
|
/**
|
|
2271
|
-
*
|
|
2272
|
-
*
|
|
4259
|
+
* @remarks
|
|
4260
|
+
* Description: 自动化测试创建111
|
|
4261
|
+
* Summary: 自动化测试创建(勿动)
|
|
2273
4262
|
*/
|
|
2274
|
-
async
|
|
4263
|
+
async queryAaaBbbCccEx(request: QueryAaaBbbCccRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryAaaBbbCccResponse> {
|
|
2275
4264
|
Util.validateModel(request);
|
|
2276
|
-
return $tea.cast<
|
|
4265
|
+
return $tea.cast<QueryAaaBbbCccResponse>(await this.doRequest("1.0", "demo.aaa.bbb.ccc.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryAaaBbbCccResponse({}));
|
|
2277
4266
|
}
|
|
2278
4267
|
|
|
2279
4268
|
/**
|
|
2280
|
-
*
|
|
2281
|
-
*
|
|
4269
|
+
* @remarks
|
|
4270
|
+
* Description: 自动化测试创建,用于测试API的修改
|
|
4271
|
+
* Summary: 自动化测试创建,用于测试API的修改勿动
|
|
2282
4272
|
*/
|
|
2283
|
-
async
|
|
4273
|
+
async queryAbcAbcAbc(request: QueryAbcAbcAbcRequest): Promise<QueryAbcAbcAbcResponse> {
|
|
2284
4274
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2285
4275
|
let headers : {[key: string ]: string} = { };
|
|
2286
|
-
return await this.
|
|
4276
|
+
return await this.queryAbcAbcAbcEx(request, headers, runtime);
|
|
2287
4277
|
}
|
|
2288
4278
|
|
|
2289
4279
|
/**
|
|
2290
|
-
*
|
|
2291
|
-
*
|
|
4280
|
+
* @remarks
|
|
4281
|
+
* Description: 自动化测试创建,用于测试API的修改
|
|
4282
|
+
* Summary: 自动化测试创建,用于测试API的修改勿动
|
|
2292
4283
|
*/
|
|
2293
|
-
async
|
|
4284
|
+
async queryAbcAbcAbcEx(request: QueryAbcAbcAbcRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryAbcAbcAbcResponse> {
|
|
2294
4285
|
Util.validateModel(request);
|
|
2295
|
-
return $tea.cast<
|
|
4286
|
+
return $tea.cast<QueryAbcAbcAbcResponse>(await this.doRequest("1.0", "demo.abc.abc.abc.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryAbcAbcAbcResponse({}));
|
|
2296
4287
|
}
|
|
2297
4288
|
|
|
2298
4289
|
/**
|
|
2299
|
-
*
|
|
2300
|
-
*
|
|
4290
|
+
* @remarks
|
|
4291
|
+
* Description: 123
|
|
4292
|
+
* Summary: 测试用api
|
|
2301
4293
|
*/
|
|
2302
|
-
async
|
|
4294
|
+
async bindAaaBbbCcd(request: BindAaaBbbCcdRequest): Promise<BindAaaBbbCcdResponse> {
|
|
2303
4295
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2304
4296
|
let headers : {[key: string ]: string} = { };
|
|
2305
|
-
return await this.
|
|
4297
|
+
return await this.bindAaaBbbCcdEx(request, headers, runtime);
|
|
2306
4298
|
}
|
|
2307
4299
|
|
|
2308
4300
|
/**
|
|
2309
|
-
*
|
|
2310
|
-
*
|
|
4301
|
+
* @remarks
|
|
4302
|
+
* Description: 123
|
|
4303
|
+
* Summary: 测试用api
|
|
2311
4304
|
*/
|
|
2312
|
-
async
|
|
4305
|
+
async bindAaaBbbCcdEx(request: BindAaaBbbCcdRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BindAaaBbbCcdResponse> {
|
|
2313
4306
|
Util.validateModel(request);
|
|
2314
|
-
return $tea.cast<
|
|
4307
|
+
return $tea.cast<BindAaaBbbCcdResponse>(await this.doRequest("1.0", "demo.aaa.bbb.ccd.bind", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BindAaaBbbCcdResponse({}));
|
|
2315
4308
|
}
|
|
2316
4309
|
|
|
2317
4310
|
/**
|
|
4311
|
+
* @remarks
|
|
2318
4312
|
* Description: 创建HTTP PUT提交的文件上传
|
|
2319
4313
|
* Summary: 文件上传创建
|
|
2320
4314
|
*/
|
|
@@ -2325,6 +4319,7 @@ export default class Client {
|
|
|
2325
4319
|
}
|
|
2326
4320
|
|
|
2327
4321
|
/**
|
|
4322
|
+
* @remarks
|
|
2328
4323
|
* Description: 创建HTTP PUT提交的文件上传
|
|
2329
4324
|
* Summary: 文件上传创建
|
|
2330
4325
|
*/
|