@antchain/abc 1.0.14 → 1.1.23
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 +1656 -264
- package/dist/client.js +1741 -459
- package/dist/client.js.map +1 -1
- package/package.json +30 -29
- package/src/client.ts +2761 -602
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,1551 @@ 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;
|
|
657
|
+
static names(): { [key: string]: string } {
|
|
658
|
+
return {
|
|
659
|
+
key: 'key',
|
|
660
|
+
value: 'value',
|
|
661
|
+
};
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
static types(): { [key: string]: any } {
|
|
665
|
+
return {
|
|
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',
|
|
2026
|
+
};
|
|
2027
|
+
}
|
|
2028
|
+
|
|
2029
|
+
constructor(map?: { [key: string]: any }) {
|
|
2030
|
+
super(map);
|
|
2031
|
+
}
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
export class QueryGatewayEmbedResponse extends $tea.Model {
|
|
2035
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
2036
|
+
reqMsgId?: string;
|
|
2037
|
+
// 结果码,一般OK表示调用成功
|
|
2038
|
+
resultCode?: string;
|
|
2039
|
+
// 异常信息的文本描述
|
|
2040
|
+
resultMsg?: string;
|
|
2041
|
+
static names(): { [key: string]: string } {
|
|
2042
|
+
return {
|
|
2043
|
+
reqMsgId: 'req_msg_id',
|
|
2044
|
+
resultCode: 'result_code',
|
|
2045
|
+
resultMsg: 'result_msg',
|
|
2046
|
+
};
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
static types(): { [key: string]: any } {
|
|
2050
|
+
return {
|
|
2051
|
+
reqMsgId: 'string',
|
|
2052
|
+
resultCode: 'string',
|
|
2053
|
+
resultMsg: 'string',
|
|
2054
|
+
};
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
constructor(map?: { [key: string]: any }) {
|
|
2058
|
+
super(map);
|
|
2059
|
+
}
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
export class UpdateGatewayRoadRequest extends $tea.Model {
|
|
2063
|
+
// OAuth模式下的授权token
|
|
2064
|
+
authToken?: string;
|
|
2065
|
+
productInstanceId?: string;
|
|
2066
|
+
// 请求时间
|
|
2067
|
+
time: string;
|
|
2068
|
+
// 操作人
|
|
2069
|
+
operator: string;
|
|
2070
|
+
// 请求编号
|
|
2071
|
+
count: number;
|
|
2072
|
+
// 原信息
|
|
2073
|
+
originInfo: string;
|
|
2074
|
+
static names(): { [key: string]: string } {
|
|
2075
|
+
return {
|
|
2076
|
+
authToken: 'auth_token',
|
|
2077
|
+
productInstanceId: 'product_instance_id',
|
|
2078
|
+
time: 'time',
|
|
2079
|
+
operator: 'operator',
|
|
2080
|
+
count: 'count',
|
|
2081
|
+
originInfo: 'origin_info',
|
|
2082
|
+
};
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
static types(): { [key: string]: any } {
|
|
2086
|
+
return {
|
|
2087
|
+
authToken: 'string',
|
|
2088
|
+
productInstanceId: 'string',
|
|
2089
|
+
time: 'string',
|
|
2090
|
+
operator: 'string',
|
|
2091
|
+
count: 'number',
|
|
2092
|
+
originInfo: 'string',
|
|
2093
|
+
};
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
constructor(map?: { [key: string]: any }) {
|
|
2097
|
+
super(map);
|
|
2098
|
+
}
|
|
2099
|
+
}
|
|
2100
|
+
|
|
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;
|
|
2112
|
+
static names(): { [key: string]: string } {
|
|
2113
|
+
return {
|
|
2114
|
+
reqMsgId: 'req_msg_id',
|
|
2115
|
+
resultCode: 'result_code',
|
|
2116
|
+
resultMsg: 'result_msg',
|
|
2117
|
+
updInfo: 'upd_info',
|
|
2118
|
+
updPack: 'upd_pack',
|
|
2119
|
+
};
|
|
2120
|
+
}
|
|
2121
|
+
|
|
2122
|
+
static types(): { [key: string]: any } {
|
|
2123
|
+
return {
|
|
2124
|
+
reqMsgId: 'string',
|
|
2125
|
+
resultCode: 'string',
|
|
2126
|
+
resultMsg: 'string',
|
|
2127
|
+
updInfo: 'string',
|
|
2128
|
+
updPack: InitPack,
|
|
2129
|
+
};
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
constructor(map?: { [key: string]: any }) {
|
|
2133
|
+
super(map);
|
|
2134
|
+
}
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2137
|
+
export class QueryGatewayRoadRequest extends $tea.Model {
|
|
2138
|
+
// OAuth模式下的授权token
|
|
2139
|
+
authToken?: string;
|
|
2140
|
+
productInstanceId?: string;
|
|
2141
|
+
// 查询输入
|
|
2142
|
+
data: string;
|
|
2143
|
+
static names(): { [key: string]: string } {
|
|
2144
|
+
return {
|
|
2145
|
+
authToken: 'auth_token',
|
|
2146
|
+
productInstanceId: 'product_instance_id',
|
|
2147
|
+
data: 'data',
|
|
2148
|
+
};
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
static types(): { [key: string]: any } {
|
|
2152
|
+
return {
|
|
2153
|
+
authToken: 'string',
|
|
2154
|
+
productInstanceId: 'string',
|
|
2155
|
+
data: 'string',
|
|
2156
|
+
};
|
|
2157
|
+
}
|
|
2158
|
+
|
|
2159
|
+
constructor(map?: { [key: string]: any }) {
|
|
2160
|
+
super(map);
|
|
2161
|
+
}
|
|
2162
|
+
}
|
|
2163
|
+
|
|
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;
|
|
232
2173
|
static names(): { [key: string]: string } {
|
|
233
2174
|
return {
|
|
234
|
-
|
|
235
|
-
|
|
2175
|
+
reqMsgId: 'req_msg_id',
|
|
2176
|
+
resultCode: 'result_code',
|
|
2177
|
+
resultMsg: 'result_msg',
|
|
2178
|
+
queryResult: 'query_result',
|
|
236
2179
|
};
|
|
237
2180
|
}
|
|
238
2181
|
|
|
239
2182
|
static types(): { [key: string]: any } {
|
|
240
2183
|
return {
|
|
241
|
-
|
|
242
|
-
|
|
2184
|
+
reqMsgId: 'string',
|
|
2185
|
+
resultCode: 'string',
|
|
2186
|
+
resultMsg: 'string',
|
|
2187
|
+
queryResult: 'string',
|
|
243
2188
|
};
|
|
244
2189
|
}
|
|
245
2190
|
|
|
@@ -248,15 +2193,25 @@ export class NameAndAge extends $tea.Model {
|
|
|
248
2193
|
}
|
|
249
2194
|
}
|
|
250
2195
|
|
|
251
|
-
|
|
252
|
-
|
|
2196
|
+
export class ExecGatewayRoadRequest extends $tea.Model {
|
|
2197
|
+
// OAuth模式下的授权token
|
|
2198
|
+
authToken?: string;
|
|
2199
|
+
productInstanceId?: string;
|
|
2200
|
+
// 计算值输入
|
|
2201
|
+
execNum: number;
|
|
253
2202
|
static names(): { [key: string]: string } {
|
|
254
2203
|
return {
|
|
2204
|
+
authToken: 'auth_token',
|
|
2205
|
+
productInstanceId: 'product_instance_id',
|
|
2206
|
+
execNum: 'exec_num',
|
|
255
2207
|
};
|
|
256
2208
|
}
|
|
257
2209
|
|
|
258
2210
|
static types(): { [key: string]: any } {
|
|
259
2211
|
return {
|
|
2212
|
+
authToken: 'string',
|
|
2213
|
+
productInstanceId: 'string',
|
|
2214
|
+
execNum: 'number',
|
|
260
2215
|
};
|
|
261
2216
|
}
|
|
262
2217
|
|
|
@@ -265,27 +2220,30 @@ export class GongXiangnengli extends $tea.Model {
|
|
|
265
2220
|
}
|
|
266
2221
|
}
|
|
267
2222
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
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;
|
|
276
2232
|
static names(): { [key: string]: string } {
|
|
277
2233
|
return {
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
2234
|
+
reqMsgId: 'req_msg_id',
|
|
2235
|
+
resultCode: 'result_code',
|
|
2236
|
+
resultMsg: 'result_msg',
|
|
2237
|
+
execNumEcho: 'exec_num_echo',
|
|
281
2238
|
};
|
|
282
2239
|
}
|
|
283
2240
|
|
|
284
2241
|
static types(): { [key: string]: any } {
|
|
285
2242
|
return {
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
2243
|
+
reqMsgId: 'string',
|
|
2244
|
+
resultCode: 'string',
|
|
2245
|
+
resultMsg: 'string',
|
|
2246
|
+
execNumEcho: 'number',
|
|
289
2247
|
};
|
|
290
2248
|
}
|
|
291
2249
|
|
|
@@ -294,19 +2252,25 @@ export class InitParks extends $tea.Model {
|
|
|
294
2252
|
}
|
|
295
2253
|
}
|
|
296
2254
|
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
2255
|
+
export class QueryLoadtestTimeThreeRequest extends $tea.Model {
|
|
2256
|
+
// OAuth模式下的授权token
|
|
2257
|
+
authToken?: string;
|
|
2258
|
+
productInstanceId?: string;
|
|
2259
|
+
// ms
|
|
2260
|
+
timeout: number;
|
|
301
2261
|
static names(): { [key: string]: string } {
|
|
302
2262
|
return {
|
|
303
|
-
|
|
2263
|
+
authToken: 'auth_token',
|
|
2264
|
+
productInstanceId: 'product_instance_id',
|
|
2265
|
+
timeout: 'timeout',
|
|
304
2266
|
};
|
|
305
2267
|
}
|
|
306
2268
|
|
|
307
2269
|
static types(): { [key: string]: any } {
|
|
308
2270
|
return {
|
|
309
|
-
|
|
2271
|
+
authToken: 'string',
|
|
2272
|
+
productInstanceId: 'string',
|
|
2273
|
+
timeout: 'number',
|
|
310
2274
|
};
|
|
311
2275
|
}
|
|
312
2276
|
|
|
@@ -315,27 +2279,34 @@ export class InitPark extends $tea.Model {
|
|
|
315
2279
|
}
|
|
316
2280
|
}
|
|
317
2281
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
2282
|
+
export class QueryLoadtestTimeThreeResponse extends $tea.Model {
|
|
2283
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
2284
|
+
reqMsgId?: string;
|
|
2285
|
+
// 结果码,一般OK表示调用成功
|
|
2286
|
+
resultCode?: string;
|
|
2287
|
+
// 异常信息的文本描述
|
|
2288
|
+
resultMsg?: string;
|
|
2289
|
+
// 200
|
|
2290
|
+
stauts?: string;
|
|
2291
|
+
// ok
|
|
2292
|
+
msg?: string;
|
|
326
2293
|
static names(): { [key: string]: string } {
|
|
327
2294
|
return {
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
2295
|
+
reqMsgId: 'req_msg_id',
|
|
2296
|
+
resultCode: 'result_code',
|
|
2297
|
+
resultMsg: 'result_msg',
|
|
2298
|
+
stauts: 'stauts',
|
|
2299
|
+
msg: 'msg',
|
|
331
2300
|
};
|
|
332
2301
|
}
|
|
333
2302
|
|
|
334
2303
|
static types(): { [key: string]: any } {
|
|
335
2304
|
return {
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
2305
|
+
reqMsgId: 'string',
|
|
2306
|
+
resultCode: 'string',
|
|
2307
|
+
resultMsg: 'string',
|
|
2308
|
+
stauts: 'string',
|
|
2309
|
+
msg: 'string',
|
|
339
2310
|
};
|
|
340
2311
|
}
|
|
341
2312
|
|
|
@@ -344,27 +2315,33 @@ export class InitPack extends $tea.Model {
|
|
|
344
2315
|
}
|
|
345
2316
|
}
|
|
346
2317
|
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
//
|
|
352
|
-
|
|
353
|
-
//
|
|
354
|
-
|
|
2318
|
+
export class QueryInstanceidRuleRequest extends $tea.Model {
|
|
2319
|
+
// OAuth模式下的授权token
|
|
2320
|
+
authToken?: string;
|
|
2321
|
+
productInstanceId?: string;
|
|
2322
|
+
// 数字
|
|
2323
|
+
count: string;
|
|
2324
|
+
// 姓名
|
|
2325
|
+
oprator: string;
|
|
2326
|
+
// 结构体
|
|
2327
|
+
struct: TestA;
|
|
355
2328
|
static names(): { [key: string]: string } {
|
|
356
2329
|
return {
|
|
357
|
-
|
|
358
|
-
|
|
2330
|
+
authToken: 'auth_token',
|
|
2331
|
+
productInstanceId: 'product_instance_id',
|
|
359
2332
|
count: 'count',
|
|
2333
|
+
oprator: 'oprator',
|
|
2334
|
+
struct: 'struct',
|
|
360
2335
|
};
|
|
361
2336
|
}
|
|
362
2337
|
|
|
363
2338
|
static types(): { [key: string]: any } {
|
|
364
2339
|
return {
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
count: '
|
|
2340
|
+
authToken: 'string',
|
|
2341
|
+
productInstanceId: 'string',
|
|
2342
|
+
count: 'string',
|
|
2343
|
+
oprator: 'string',
|
|
2344
|
+
struct: TestA,
|
|
368
2345
|
};
|
|
369
2346
|
}
|
|
370
2347
|
|
|
@@ -373,23 +2350,26 @@ export class TestPark extends $tea.Model {
|
|
|
373
2350
|
}
|
|
374
2351
|
}
|
|
375
2352
|
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
2353
|
+
export class QueryInstanceidRuleResponse extends $tea.Model {
|
|
2354
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
2355
|
+
reqMsgId?: string;
|
|
2356
|
+
// 结果码,一般OK表示调用成功
|
|
2357
|
+
resultCode?: string;
|
|
2358
|
+
// 异常信息的文本描述
|
|
2359
|
+
resultMsg?: string;
|
|
382
2360
|
static names(): { [key: string]: string } {
|
|
383
2361
|
return {
|
|
384
|
-
|
|
385
|
-
|
|
2362
|
+
reqMsgId: 'req_msg_id',
|
|
2363
|
+
resultCode: 'result_code',
|
|
2364
|
+
resultMsg: 'result_msg',
|
|
386
2365
|
};
|
|
387
2366
|
}
|
|
388
2367
|
|
|
389
2368
|
static types(): { [key: string]: any } {
|
|
390
2369
|
return {
|
|
391
|
-
|
|
392
|
-
|
|
2370
|
+
reqMsgId: 'string',
|
|
2371
|
+
resultCode: 'string',
|
|
2372
|
+
resultMsg: 'string',
|
|
393
2373
|
};
|
|
394
2374
|
}
|
|
395
2375
|
|
|
@@ -398,42 +2378,17 @@ export class XNameValuePair extends $tea.Model {
|
|
|
398
2378
|
}
|
|
399
2379
|
}
|
|
400
2380
|
|
|
401
|
-
export class
|
|
2381
|
+
export class QueryGatewayCheckEchotimeoutokRequest extends $tea.Model {
|
|
402
2382
|
// OAuth模式下的授权token
|
|
403
2383
|
authToken?: string;
|
|
404
2384
|
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;
|
|
2385
|
+
// 耗时时间
|
|
2386
|
+
timeout: string;
|
|
423
2387
|
static names(): { [key: string]: string } {
|
|
424
2388
|
return {
|
|
425
2389
|
authToken: 'auth_token',
|
|
426
2390
|
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',
|
|
2391
|
+
timeout: 'timeout',
|
|
437
2392
|
};
|
|
438
2393
|
}
|
|
439
2394
|
|
|
@@ -441,16 +2396,7 @@ export class PreviewDemoRequest extends $tea.Model {
|
|
|
441
2396
|
return {
|
|
442
2397
|
authToken: 'string',
|
|
443
2398
|
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',
|
|
2399
|
+
timeout: 'string',
|
|
454
2400
|
};
|
|
455
2401
|
}
|
|
456
2402
|
|
|
@@ -459,39 +2405,24 @@ export class PreviewDemoRequest extends $tea.Model {
|
|
|
459
2405
|
}
|
|
460
2406
|
}
|
|
461
2407
|
|
|
462
|
-
export class
|
|
2408
|
+
export class QueryGatewayCheckEchotimeoutokResponse extends $tea.Model {
|
|
463
2409
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
464
2410
|
reqMsgId?: string;
|
|
465
2411
|
// 结果码,一般OK表示调用成功
|
|
466
2412
|
resultCode?: string;
|
|
467
2413
|
// 异常信息的文本描述
|
|
468
2414
|
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[];
|
|
2415
|
+
// 返回OK
|
|
2416
|
+
stauts?: string;
|
|
2417
|
+
// 结果描述
|
|
2418
|
+
msg?: string;
|
|
483
2419
|
static names(): { [key: string]: string } {
|
|
484
2420
|
return {
|
|
485
2421
|
reqMsgId: 'req_msg_id',
|
|
486
2422
|
resultCode: 'result_code',
|
|
487
2423
|
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',
|
|
2424
|
+
stauts: 'stauts',
|
|
2425
|
+
msg: 'msg',
|
|
495
2426
|
};
|
|
496
2427
|
}
|
|
497
2428
|
|
|
@@ -500,13 +2431,8 @@ export class PreviewDemoResponse extends $tea.Model {
|
|
|
500
2431
|
reqMsgId: 'string',
|
|
501
2432
|
resultCode: 'string',
|
|
502
2433
|
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 },
|
|
2434
|
+
stauts: 'string',
|
|
2435
|
+
msg: 'string',
|
|
510
2436
|
};
|
|
511
2437
|
}
|
|
512
2438
|
|
|
@@ -515,21 +2441,20 @@ export class PreviewDemoResponse extends $tea.Model {
|
|
|
515
2441
|
}
|
|
516
2442
|
}
|
|
517
2443
|
|
|
518
|
-
export class
|
|
2444
|
+
export class MatchBusinessAndInstanceRequest extends $tea.Model {
|
|
519
2445
|
// OAuth模式下的授权token
|
|
520
2446
|
authToken?: string;
|
|
521
2447
|
productInstanceId?: string;
|
|
522
|
-
//
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
param: AbcDemoStruct;
|
|
2448
|
+
// L5
|
|
2449
|
+
businessCode: string;
|
|
2450
|
+
// 实例
|
|
2451
|
+
instanceCode: string;
|
|
527
2452
|
static names(): { [key: string]: string } {
|
|
528
2453
|
return {
|
|
529
2454
|
authToken: 'auth_token',
|
|
530
2455
|
productInstanceId: 'product_instance_id',
|
|
531
|
-
|
|
532
|
-
|
|
2456
|
+
businessCode: 'business_code',
|
|
2457
|
+
instanceCode: 'instance_code',
|
|
533
2458
|
};
|
|
534
2459
|
}
|
|
535
2460
|
|
|
@@ -537,8 +2462,8 @@ export class QueryGatewayRequest extends $tea.Model {
|
|
|
537
2462
|
return {
|
|
538
2463
|
authToken: 'string',
|
|
539
2464
|
productInstanceId: 'string',
|
|
540
|
-
|
|
541
|
-
|
|
2465
|
+
businessCode: 'string',
|
|
2466
|
+
instanceCode: 'string',
|
|
542
2467
|
};
|
|
543
2468
|
}
|
|
544
2469
|
|
|
@@ -547,21 +2472,18 @@ export class QueryGatewayRequest extends $tea.Model {
|
|
|
547
2472
|
}
|
|
548
2473
|
}
|
|
549
2474
|
|
|
550
|
-
export class
|
|
2475
|
+
export class MatchBusinessAndInstanceResponse extends $tea.Model {
|
|
551
2476
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
552
2477
|
reqMsgId?: string;
|
|
553
2478
|
// 结果码,一般OK表示调用成功
|
|
554
2479
|
resultCode?: string;
|
|
555
2480
|
// 异常信息的文本描述
|
|
556
2481
|
resultMsg?: string;
|
|
557
|
-
// 返回查询
|
|
558
|
-
queryResult?: string;
|
|
559
2482
|
static names(): { [key: string]: string } {
|
|
560
2483
|
return {
|
|
561
2484
|
reqMsgId: 'req_msg_id',
|
|
562
2485
|
resultCode: 'result_code',
|
|
563
2486
|
resultMsg: 'result_msg',
|
|
564
|
-
queryResult: 'query_result',
|
|
565
2487
|
};
|
|
566
2488
|
}
|
|
567
2489
|
|
|
@@ -570,7 +2492,6 @@ export class QueryGatewayResponse extends $tea.Model {
|
|
|
570
2492
|
reqMsgId: 'string',
|
|
571
2493
|
resultCode: 'string',
|
|
572
2494
|
resultMsg: 'string',
|
|
573
|
-
queryResult: 'string',
|
|
574
2495
|
};
|
|
575
2496
|
}
|
|
576
2497
|
|
|
@@ -579,7 +2500,7 @@ export class QueryGatewayResponse extends $tea.Model {
|
|
|
579
2500
|
}
|
|
580
2501
|
}
|
|
581
2502
|
|
|
582
|
-
export class
|
|
2503
|
+
export class TransferTesttrasferTesttrasferTesttrasferRequest extends $tea.Model {
|
|
583
2504
|
// OAuth模式下的授权token
|
|
584
2505
|
authToken?: string;
|
|
585
2506
|
productInstanceId?: string;
|
|
@@ -602,7 +2523,7 @@ export class QueryAbcdaAbcddaaRequest extends $tea.Model {
|
|
|
602
2523
|
}
|
|
603
2524
|
}
|
|
604
2525
|
|
|
605
|
-
export class
|
|
2526
|
+
export class TransferTesttrasferTesttrasferTesttrasferResponse extends $tea.Model {
|
|
606
2527
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
607
2528
|
reqMsgId?: string;
|
|
608
2529
|
// 结果码,一般OK表示调用成功
|
|
@@ -630,23 +2551,14 @@ export class QueryAbcdaAbcddaaResponse extends $tea.Model {
|
|
|
630
2551
|
}
|
|
631
2552
|
}
|
|
632
2553
|
|
|
633
|
-
export class
|
|
2554
|
+
export class QueryTestvvvvvTestvvvvvTestvvvvvRequest extends $tea.Model {
|
|
634
2555
|
// OAuth模式下的授权token
|
|
635
2556
|
authToken?: string;
|
|
636
2557
|
productInstanceId?: string;
|
|
637
|
-
// 123
|
|
638
|
-
bizId: string;
|
|
639
|
-
// 123
|
|
640
|
-
face1?: FaceImage;
|
|
641
|
-
// 123
|
|
642
|
-
face2?: FaceImage;
|
|
643
2558
|
static names(): { [key: string]: string } {
|
|
644
2559
|
return {
|
|
645
2560
|
authToken: 'auth_token',
|
|
646
2561
|
productInstanceId: 'product_instance_id',
|
|
647
|
-
bizId: 'biz_id',
|
|
648
|
-
face1: 'face1',
|
|
649
|
-
face2: 'face2',
|
|
650
2562
|
};
|
|
651
2563
|
}
|
|
652
2564
|
|
|
@@ -654,9 +2566,6 @@ export class MatchSecurityFaceRequest extends $tea.Model {
|
|
|
654
2566
|
return {
|
|
655
2567
|
authToken: 'string',
|
|
656
2568
|
productInstanceId: 'string',
|
|
657
|
-
bizId: 'string',
|
|
658
|
-
face1: FaceImage,
|
|
659
|
-
face2: FaceImage,
|
|
660
2569
|
};
|
|
661
2570
|
}
|
|
662
2571
|
|
|
@@ -665,27 +2574,18 @@ export class MatchSecurityFaceRequest extends $tea.Model {
|
|
|
665
2574
|
}
|
|
666
2575
|
}
|
|
667
2576
|
|
|
668
|
-
export class
|
|
2577
|
+
export class QueryTestvvvvvTestvvvvvTestvvvvvResponse extends $tea.Model {
|
|
669
2578
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
670
2579
|
reqMsgId?: string;
|
|
671
2580
|
// 结果码,一般OK表示调用成功
|
|
672
2581
|
resultCode?: string;
|
|
673
2582
|
// 异常信息的文本描述
|
|
674
2583
|
resultMsg?: string;
|
|
675
|
-
// 123
|
|
676
|
-
transactionId?: string;
|
|
677
|
-
// 123
|
|
678
|
-
samePerson?: string;
|
|
679
|
-
// 123
|
|
680
|
-
score?: string;
|
|
681
2584
|
static names(): { [key: string]: string } {
|
|
682
2585
|
return {
|
|
683
2586
|
reqMsgId: 'req_msg_id',
|
|
684
2587
|
resultCode: 'result_code',
|
|
685
2588
|
resultMsg: 'result_msg',
|
|
686
|
-
transactionId: 'transaction_id',
|
|
687
|
-
samePerson: 'same_person',
|
|
688
|
-
score: 'score',
|
|
689
2589
|
};
|
|
690
2590
|
}
|
|
691
2591
|
|
|
@@ -694,9 +2594,6 @@ export class MatchSecurityFaceResponse extends $tea.Model {
|
|
|
694
2594
|
reqMsgId: 'string',
|
|
695
2595
|
resultCode: 'string',
|
|
696
2596
|
resultMsg: 'string',
|
|
697
|
-
transactionId: 'string',
|
|
698
|
-
samePerson: 'string',
|
|
699
|
-
score: 'string',
|
|
700
2597
|
};
|
|
701
2598
|
}
|
|
702
2599
|
|
|
@@ -705,21 +2602,17 @@ export class MatchSecurityFaceResponse extends $tea.Model {
|
|
|
705
2602
|
}
|
|
706
2603
|
}
|
|
707
2604
|
|
|
708
|
-
export class
|
|
2605
|
+
export class QueryStreamTestRequest extends $tea.Model {
|
|
709
2606
|
// OAuth模式下的授权token
|
|
710
2607
|
authToken?: string;
|
|
711
2608
|
productInstanceId?: string;
|
|
712
|
-
//
|
|
713
|
-
|
|
714
|
-
fileObjectName?: string;
|
|
715
|
-
fileId: string;
|
|
2609
|
+
// 名称
|
|
2610
|
+
name: string;
|
|
716
2611
|
static names(): { [key: string]: string } {
|
|
717
2612
|
return {
|
|
718
2613
|
authToken: 'auth_token',
|
|
719
2614
|
productInstanceId: 'product_instance_id',
|
|
720
|
-
|
|
721
|
-
fileObjectName: 'fileObjectName',
|
|
722
|
-
fileId: 'file_id',
|
|
2615
|
+
name: 'name',
|
|
723
2616
|
};
|
|
724
2617
|
}
|
|
725
2618
|
|
|
@@ -727,9 +2620,7 @@ export class UploadTestFileRequest extends $tea.Model {
|
|
|
727
2620
|
return {
|
|
728
2621
|
authToken: 'string',
|
|
729
2622
|
productInstanceId: 'string',
|
|
730
|
-
|
|
731
|
-
fileObjectName: 'string',
|
|
732
|
-
fileId: 'string',
|
|
2623
|
+
name: 'string',
|
|
733
2624
|
};
|
|
734
2625
|
}
|
|
735
2626
|
|
|
@@ -738,7 +2629,7 @@ export class UploadTestFileRequest extends $tea.Model {
|
|
|
738
2629
|
}
|
|
739
2630
|
}
|
|
740
2631
|
|
|
741
|
-
export class
|
|
2632
|
+
export class QueryStreamTestResponse extends $tea.Model {
|
|
742
2633
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
743
2634
|
reqMsgId?: string;
|
|
744
2635
|
// 结果码,一般OK表示调用成功
|
|
@@ -766,17 +2657,17 @@ export class UploadTestFileResponse extends $tea.Model {
|
|
|
766
2657
|
}
|
|
767
2658
|
}
|
|
768
2659
|
|
|
769
|
-
export class
|
|
2660
|
+
export class QueryStreamTestmethodRequest extends $tea.Model {
|
|
770
2661
|
// OAuth模式下的授权token
|
|
771
2662
|
authToken?: string;
|
|
772
2663
|
productInstanceId?: string;
|
|
773
|
-
//
|
|
774
|
-
|
|
2664
|
+
// 名称
|
|
2665
|
+
name: string;
|
|
775
2666
|
static names(): { [key: string]: string } {
|
|
776
2667
|
return {
|
|
777
2668
|
authToken: 'auth_token',
|
|
778
2669
|
productInstanceId: 'product_instance_id',
|
|
779
|
-
|
|
2670
|
+
name: 'name',
|
|
780
2671
|
};
|
|
781
2672
|
}
|
|
782
2673
|
|
|
@@ -784,7 +2675,7 @@ export class QueryTimeOneRequest extends $tea.Model {
|
|
|
784
2675
|
return {
|
|
785
2676
|
authToken: 'string',
|
|
786
2677
|
productInstanceId: 'string',
|
|
787
|
-
|
|
2678
|
+
name: 'string',
|
|
788
2679
|
};
|
|
789
2680
|
}
|
|
790
2681
|
|
|
@@ -793,24 +2684,18 @@ export class QueryTimeOneRequest extends $tea.Model {
|
|
|
793
2684
|
}
|
|
794
2685
|
}
|
|
795
2686
|
|
|
796
|
-
export class
|
|
2687
|
+
export class QueryStreamTestmethodResponse extends $tea.Model {
|
|
797
2688
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
798
2689
|
reqMsgId?: string;
|
|
799
2690
|
// 结果码,一般OK表示调用成功
|
|
800
2691
|
resultCode?: string;
|
|
801
2692
|
// 异常信息的文本描述
|
|
802
2693
|
resultMsg?: string;
|
|
803
|
-
// 状态码
|
|
804
|
-
stauts?: string;
|
|
805
|
-
// OK
|
|
806
|
-
msg?: string;
|
|
807
2694
|
static names(): { [key: string]: string } {
|
|
808
2695
|
return {
|
|
809
2696
|
reqMsgId: 'req_msg_id',
|
|
810
2697
|
resultCode: 'result_code',
|
|
811
2698
|
resultMsg: 'result_msg',
|
|
812
|
-
stauts: 'stauts',
|
|
813
|
-
msg: 'msg',
|
|
814
2699
|
};
|
|
815
2700
|
}
|
|
816
2701
|
|
|
@@ -819,8 +2704,6 @@ export class QueryTimeOneResponse extends $tea.Model {
|
|
|
819
2704
|
reqMsgId: 'string',
|
|
820
2705
|
resultCode: 'string',
|
|
821
2706
|
resultMsg: 'string',
|
|
822
|
-
stauts: 'string',
|
|
823
|
-
msg: 'string',
|
|
824
2707
|
};
|
|
825
2708
|
}
|
|
826
2709
|
|
|
@@ -829,17 +2712,17 @@ export class QueryTimeOneResponse extends $tea.Model {
|
|
|
829
2712
|
}
|
|
830
2713
|
}
|
|
831
2714
|
|
|
832
|
-
export class
|
|
2715
|
+
export class QueryStreamTimeoutRequest extends $tea.Model {
|
|
833
2716
|
// OAuth模式下的授权token
|
|
834
2717
|
authToken?: string;
|
|
835
2718
|
productInstanceId?: string;
|
|
836
|
-
//
|
|
837
|
-
|
|
2719
|
+
// name
|
|
2720
|
+
name: string;
|
|
838
2721
|
static names(): { [key: string]: string } {
|
|
839
2722
|
return {
|
|
840
2723
|
authToken: 'auth_token',
|
|
841
2724
|
productInstanceId: 'product_instance_id',
|
|
842
|
-
|
|
2725
|
+
name: 'name',
|
|
843
2726
|
};
|
|
844
2727
|
}
|
|
845
2728
|
|
|
@@ -847,7 +2730,7 @@ export class QueryTimeTwoRequest extends $tea.Model {
|
|
|
847
2730
|
return {
|
|
848
2731
|
authToken: 'string',
|
|
849
2732
|
productInstanceId: 'string',
|
|
850
|
-
|
|
2733
|
+
name: 'string',
|
|
851
2734
|
};
|
|
852
2735
|
}
|
|
853
2736
|
|
|
@@ -856,24 +2739,18 @@ export class QueryTimeTwoRequest extends $tea.Model {
|
|
|
856
2739
|
}
|
|
857
2740
|
}
|
|
858
2741
|
|
|
859
|
-
export class
|
|
2742
|
+
export class QueryStreamTimeoutResponse extends $tea.Model {
|
|
860
2743
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
861
2744
|
reqMsgId?: string;
|
|
862
2745
|
// 结果码,一般OK表示调用成功
|
|
863
2746
|
resultCode?: string;
|
|
864
2747
|
// 异常信息的文本描述
|
|
865
2748
|
resultMsg?: string;
|
|
866
|
-
// 状态码
|
|
867
|
-
stauts?: string;
|
|
868
|
-
// OK
|
|
869
|
-
msg?: string;
|
|
870
2749
|
static names(): { [key: string]: string } {
|
|
871
2750
|
return {
|
|
872
2751
|
reqMsgId: 'req_msg_id',
|
|
873
2752
|
resultCode: 'result_code',
|
|
874
2753
|
resultMsg: 'result_msg',
|
|
875
|
-
stauts: 'stauts',
|
|
876
|
-
msg: 'msg',
|
|
877
2754
|
};
|
|
878
2755
|
}
|
|
879
2756
|
|
|
@@ -882,8 +2759,6 @@ export class QueryTimeTwoResponse extends $tea.Model {
|
|
|
882
2759
|
reqMsgId: 'string',
|
|
883
2760
|
resultCode: 'string',
|
|
884
2761
|
resultMsg: 'string',
|
|
885
|
-
stauts: 'string',
|
|
886
|
-
msg: 'string',
|
|
887
2762
|
};
|
|
888
2763
|
}
|
|
889
2764
|
|
|
@@ -892,17 +2767,17 @@ export class QueryTimeTwoResponse extends $tea.Model {
|
|
|
892
2767
|
}
|
|
893
2768
|
}
|
|
894
2769
|
|
|
895
|
-
export class
|
|
2770
|
+
export class QueryStreamNonjsonRequest extends $tea.Model {
|
|
896
2771
|
// OAuth模式下的授权token
|
|
897
2772
|
authToken?: string;
|
|
898
2773
|
productInstanceId?: string;
|
|
899
|
-
//
|
|
900
|
-
|
|
2774
|
+
// name
|
|
2775
|
+
name: string;
|
|
901
2776
|
static names(): { [key: string]: string } {
|
|
902
2777
|
return {
|
|
903
2778
|
authToken: 'auth_token',
|
|
904
2779
|
productInstanceId: 'product_instance_id',
|
|
905
|
-
|
|
2780
|
+
name: 'name',
|
|
906
2781
|
};
|
|
907
2782
|
}
|
|
908
2783
|
|
|
@@ -910,7 +2785,7 @@ export class QueryTimeThreeRequest extends $tea.Model {
|
|
|
910
2785
|
return {
|
|
911
2786
|
authToken: 'string',
|
|
912
2787
|
productInstanceId: 'string',
|
|
913
|
-
|
|
2788
|
+
name: 'string',
|
|
914
2789
|
};
|
|
915
2790
|
}
|
|
916
2791
|
|
|
@@ -919,24 +2794,18 @@ export class QueryTimeThreeRequest extends $tea.Model {
|
|
|
919
2794
|
}
|
|
920
2795
|
}
|
|
921
2796
|
|
|
922
|
-
export class
|
|
2797
|
+
export class QueryStreamNonjsonResponse extends $tea.Model {
|
|
923
2798
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
924
2799
|
reqMsgId?: string;
|
|
925
2800
|
// 结果码,一般OK表示调用成功
|
|
926
2801
|
resultCode?: string;
|
|
927
2802
|
// 异常信息的文本描述
|
|
928
2803
|
resultMsg?: string;
|
|
929
|
-
// 状态码
|
|
930
|
-
stauts?: string;
|
|
931
|
-
// OK
|
|
932
|
-
msg?: string;
|
|
933
2804
|
static names(): { [key: string]: string } {
|
|
934
2805
|
return {
|
|
935
2806
|
reqMsgId: 'req_msg_id',
|
|
936
2807
|
resultCode: 'result_code',
|
|
937
2808
|
resultMsg: 'result_msg',
|
|
938
|
-
stauts: 'stauts',
|
|
939
|
-
msg: 'msg',
|
|
940
2809
|
};
|
|
941
2810
|
}
|
|
942
2811
|
|
|
@@ -945,8 +2814,6 @@ export class QueryTimeThreeResponse extends $tea.Model {
|
|
|
945
2814
|
reqMsgId: 'string',
|
|
946
2815
|
resultCode: 'string',
|
|
947
2816
|
resultMsg: 'string',
|
|
948
|
-
stauts: 'string',
|
|
949
|
-
msg: 'string',
|
|
950
2817
|
};
|
|
951
2818
|
}
|
|
952
2819
|
|
|
@@ -955,17 +2822,17 @@ export class QueryTimeThreeResponse extends $tea.Model {
|
|
|
955
2822
|
}
|
|
956
2823
|
}
|
|
957
2824
|
|
|
958
|
-
export class
|
|
2825
|
+
export class QueryStreamSpecialCharactersRequest extends $tea.Model {
|
|
959
2826
|
// OAuth模式下的授权token
|
|
960
2827
|
authToken?: string;
|
|
961
2828
|
productInstanceId?: string;
|
|
962
|
-
//
|
|
963
|
-
|
|
2829
|
+
// name
|
|
2830
|
+
name: string;
|
|
964
2831
|
static names(): { [key: string]: string } {
|
|
965
2832
|
return {
|
|
966
2833
|
authToken: 'auth_token',
|
|
967
2834
|
productInstanceId: 'product_instance_id',
|
|
968
|
-
|
|
2835
|
+
name: 'name',
|
|
969
2836
|
};
|
|
970
2837
|
}
|
|
971
2838
|
|
|
@@ -973,7 +2840,7 @@ export class QueryTimeFourRequest extends $tea.Model {
|
|
|
973
2840
|
return {
|
|
974
2841
|
authToken: 'string',
|
|
975
2842
|
productInstanceId: 'string',
|
|
976
|
-
|
|
2843
|
+
name: 'string',
|
|
977
2844
|
};
|
|
978
2845
|
}
|
|
979
2846
|
|
|
@@ -982,24 +2849,18 @@ export class QueryTimeFourRequest extends $tea.Model {
|
|
|
982
2849
|
}
|
|
983
2850
|
}
|
|
984
2851
|
|
|
985
|
-
export class
|
|
2852
|
+
export class QueryStreamSpecialCharactersResponse extends $tea.Model {
|
|
986
2853
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
987
2854
|
reqMsgId?: string;
|
|
988
2855
|
// 结果码,一般OK表示调用成功
|
|
989
2856
|
resultCode?: string;
|
|
990
2857
|
// 异常信息的文本描述
|
|
991
2858
|
resultMsg?: string;
|
|
992
|
-
// 状态码
|
|
993
|
-
stauts?: string;
|
|
994
|
-
// OK
|
|
995
|
-
msg?: string;
|
|
996
2859
|
static names(): { [key: string]: string } {
|
|
997
2860
|
return {
|
|
998
2861
|
reqMsgId: 'req_msg_id',
|
|
999
2862
|
resultCode: 'result_code',
|
|
1000
2863
|
resultMsg: 'result_msg',
|
|
1001
|
-
stauts: 'stauts',
|
|
1002
|
-
msg: 'msg',
|
|
1003
2864
|
};
|
|
1004
2865
|
}
|
|
1005
2866
|
|
|
@@ -1008,8 +2869,6 @@ export class QueryTimeFourResponse extends $tea.Model {
|
|
|
1008
2869
|
reqMsgId: 'string',
|
|
1009
2870
|
resultCode: 'string',
|
|
1010
2871
|
resultMsg: 'string',
|
|
1011
|
-
stauts: 'string',
|
|
1012
|
-
msg: 'string',
|
|
1013
2872
|
};
|
|
1014
2873
|
}
|
|
1015
2874
|
|
|
@@ -1018,17 +2877,17 @@ export class QueryTimeFourResponse extends $tea.Model {
|
|
|
1018
2877
|
}
|
|
1019
2878
|
}
|
|
1020
2879
|
|
|
1021
|
-
export class
|
|
2880
|
+
export class QueryStreamNonstreamRequest extends $tea.Model {
|
|
1022
2881
|
// OAuth模式下的授权token
|
|
1023
2882
|
authToken?: string;
|
|
1024
2883
|
productInstanceId?: string;
|
|
1025
|
-
//
|
|
1026
|
-
|
|
2884
|
+
// name
|
|
2885
|
+
name: string;
|
|
1027
2886
|
static names(): { [key: string]: string } {
|
|
1028
2887
|
return {
|
|
1029
2888
|
authToken: 'auth_token',
|
|
1030
2889
|
productInstanceId: 'product_instance_id',
|
|
1031
|
-
|
|
2890
|
+
name: 'name',
|
|
1032
2891
|
};
|
|
1033
2892
|
}
|
|
1034
2893
|
|
|
@@ -1036,7 +2895,7 @@ export class QueryTimeFiveRequest extends $tea.Model {
|
|
|
1036
2895
|
return {
|
|
1037
2896
|
authToken: 'string',
|
|
1038
2897
|
productInstanceId: 'string',
|
|
1039
|
-
|
|
2898
|
+
name: 'string',
|
|
1040
2899
|
};
|
|
1041
2900
|
}
|
|
1042
2901
|
|
|
@@ -1045,24 +2904,18 @@ export class QueryTimeFiveRequest extends $tea.Model {
|
|
|
1045
2904
|
}
|
|
1046
2905
|
}
|
|
1047
2906
|
|
|
1048
|
-
export class
|
|
2907
|
+
export class QueryStreamNonstreamResponse extends $tea.Model {
|
|
1049
2908
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1050
2909
|
reqMsgId?: string;
|
|
1051
2910
|
// 结果码,一般OK表示调用成功
|
|
1052
2911
|
resultCode?: string;
|
|
1053
2912
|
// 异常信息的文本描述
|
|
1054
2913
|
resultMsg?: string;
|
|
1055
|
-
// 状态码
|
|
1056
|
-
stauts?: string;
|
|
1057
|
-
// OK
|
|
1058
|
-
msg?: string;
|
|
1059
2914
|
static names(): { [key: string]: string } {
|
|
1060
2915
|
return {
|
|
1061
2916
|
reqMsgId: 'req_msg_id',
|
|
1062
2917
|
resultCode: 'result_code',
|
|
1063
2918
|
resultMsg: 'result_msg',
|
|
1064
|
-
stauts: 'stauts',
|
|
1065
|
-
msg: 'msg',
|
|
1066
2919
|
};
|
|
1067
2920
|
}
|
|
1068
2921
|
|
|
@@ -1071,8 +2924,6 @@ export class QueryTimeFiveResponse extends $tea.Model {
|
|
|
1071
2924
|
reqMsgId: 'string',
|
|
1072
2925
|
resultCode: 'string',
|
|
1073
2926
|
resultMsg: 'string',
|
|
1074
|
-
stauts: 'string',
|
|
1075
|
-
msg: 'string',
|
|
1076
2927
|
};
|
|
1077
2928
|
}
|
|
1078
2929
|
|
|
@@ -1081,17 +2932,17 @@ export class QueryTimeFiveResponse extends $tea.Model {
|
|
|
1081
2932
|
}
|
|
1082
2933
|
}
|
|
1083
2934
|
|
|
1084
|
-
export class
|
|
2935
|
+
export class QueryLoadtestTimeOneRequest extends $tea.Model {
|
|
1085
2936
|
// OAuth模式下的授权token
|
|
1086
2937
|
authToken?: string;
|
|
1087
2938
|
productInstanceId?: string;
|
|
1088
|
-
//
|
|
1089
|
-
|
|
2939
|
+
// 毫秒值
|
|
2940
|
+
timeout: number;
|
|
1090
2941
|
static names(): { [key: string]: string } {
|
|
1091
2942
|
return {
|
|
1092
2943
|
authToken: 'auth_token',
|
|
1093
2944
|
productInstanceId: 'product_instance_id',
|
|
1094
|
-
|
|
2945
|
+
timeout: 'timeout',
|
|
1095
2946
|
};
|
|
1096
2947
|
}
|
|
1097
2948
|
|
|
@@ -1099,7 +2950,7 @@ export class CreateapiExistingProductsRequest extends $tea.Model {
|
|
|
1099
2950
|
return {
|
|
1100
2951
|
authToken: 'string',
|
|
1101
2952
|
productInstanceId: 'string',
|
|
1102
|
-
|
|
2953
|
+
timeout: 'number',
|
|
1103
2954
|
};
|
|
1104
2955
|
}
|
|
1105
2956
|
|
|
@@ -1108,21 +2959,24 @@ export class CreateapiExistingProductsRequest extends $tea.Model {
|
|
|
1108
2959
|
}
|
|
1109
2960
|
}
|
|
1110
2961
|
|
|
1111
|
-
export class
|
|
2962
|
+
export class QueryLoadtestTimeOneResponse extends $tea.Model {
|
|
1112
2963
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1113
2964
|
reqMsgId?: string;
|
|
1114
2965
|
// 结果码,一般OK表示调用成功
|
|
1115
2966
|
resultCode?: string;
|
|
1116
2967
|
// 异常信息的文本描述
|
|
1117
2968
|
resultMsg?: string;
|
|
1118
|
-
//
|
|
1119
|
-
|
|
2969
|
+
// 200
|
|
2970
|
+
stauts?: string;
|
|
2971
|
+
// ok
|
|
2972
|
+
msg?: string;
|
|
1120
2973
|
static names(): { [key: string]: string } {
|
|
1121
2974
|
return {
|
|
1122
2975
|
reqMsgId: 'req_msg_id',
|
|
1123
2976
|
resultCode: 'result_code',
|
|
1124
2977
|
resultMsg: 'result_msg',
|
|
1125
|
-
|
|
2978
|
+
stauts: 'stauts',
|
|
2979
|
+
msg: 'msg',
|
|
1126
2980
|
};
|
|
1127
2981
|
}
|
|
1128
2982
|
|
|
@@ -1131,7 +2985,8 @@ export class CreateapiExistingProductsResponse extends $tea.Model {
|
|
|
1131
2985
|
reqMsgId: 'string',
|
|
1132
2986
|
resultCode: 'string',
|
|
1133
2987
|
resultMsg: 'string',
|
|
1134
|
-
|
|
2988
|
+
stauts: 'string',
|
|
2989
|
+
msg: 'string',
|
|
1135
2990
|
};
|
|
1136
2991
|
}
|
|
1137
2992
|
|
|
@@ -1140,26 +2995,17 @@ export class CreateapiExistingProductsResponse extends $tea.Model {
|
|
|
1140
2995
|
}
|
|
1141
2996
|
}
|
|
1142
2997
|
|
|
1143
|
-
export class
|
|
2998
|
+
export class QueryLoadtestTimeTwoRequest extends $tea.Model {
|
|
1144
2999
|
// OAuth模式下的授权token
|
|
1145
3000
|
authToken?: string;
|
|
1146
3001
|
productInstanceId?: string;
|
|
1147
|
-
//
|
|
1148
|
-
|
|
1149
|
-
// 请求发起人
|
|
1150
|
-
operator: string;
|
|
1151
|
-
// 请求编号
|
|
1152
|
-
count: number;
|
|
1153
|
-
// 原始信息
|
|
1154
|
-
originInfo: string;
|
|
3002
|
+
// 毫秒
|
|
3003
|
+
timeout: number;
|
|
1155
3004
|
static names(): { [key: string]: string } {
|
|
1156
3005
|
return {
|
|
1157
3006
|
authToken: 'auth_token',
|
|
1158
3007
|
productInstanceId: 'product_instance_id',
|
|
1159
|
-
|
|
1160
|
-
operator: 'operator',
|
|
1161
|
-
count: 'count',
|
|
1162
|
-
originInfo: 'origin_info',
|
|
3008
|
+
timeout: 'timeout',
|
|
1163
3009
|
};
|
|
1164
3010
|
}
|
|
1165
3011
|
|
|
@@ -1167,10 +3013,7 @@ export class APreCreateApiRequest extends $tea.Model {
|
|
|
1167
3013
|
return {
|
|
1168
3014
|
authToken: 'string',
|
|
1169
3015
|
productInstanceId: 'string',
|
|
1170
|
-
|
|
1171
|
-
operator: 'string',
|
|
1172
|
-
count: 'number',
|
|
1173
|
-
originInfo: 'string',
|
|
3016
|
+
timeout: 'number',
|
|
1174
3017
|
};
|
|
1175
3018
|
}
|
|
1176
3019
|
|
|
@@ -1179,24 +3022,24 @@ export class APreCreateApiRequest extends $tea.Model {
|
|
|
1179
3022
|
}
|
|
1180
3023
|
}
|
|
1181
3024
|
|
|
1182
|
-
export class
|
|
3025
|
+
export class QueryLoadtestTimeTwoResponse extends $tea.Model {
|
|
1183
3026
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1184
3027
|
reqMsgId?: string;
|
|
1185
3028
|
// 结果码,一般OK表示调用成功
|
|
1186
3029
|
resultCode?: string;
|
|
1187
3030
|
// 异常信息的文本描述
|
|
1188
3031
|
resultMsg?: string;
|
|
1189
|
-
//
|
|
1190
|
-
|
|
1191
|
-
//
|
|
1192
|
-
|
|
3032
|
+
// 200
|
|
3033
|
+
stauts?: string;
|
|
3034
|
+
// ok
|
|
3035
|
+
msg?: string;
|
|
1193
3036
|
static names(): { [key: string]: string } {
|
|
1194
3037
|
return {
|
|
1195
3038
|
reqMsgId: 'req_msg_id',
|
|
1196
3039
|
resultCode: 'result_code',
|
|
1197
3040
|
resultMsg: 'result_msg',
|
|
1198
|
-
|
|
1199
|
-
|
|
3041
|
+
stauts: 'stauts',
|
|
3042
|
+
msg: 'msg',
|
|
1200
3043
|
};
|
|
1201
3044
|
}
|
|
1202
3045
|
|
|
@@ -1205,8 +3048,8 @@ export class APreCreateApiResponse extends $tea.Model {
|
|
|
1205
3048
|
reqMsgId: 'string',
|
|
1206
3049
|
resultCode: 'string',
|
|
1207
3050
|
resultMsg: 'string',
|
|
1208
|
-
|
|
1209
|
-
|
|
3051
|
+
stauts: 'string',
|
|
3052
|
+
msg: 'string',
|
|
1210
3053
|
};
|
|
1211
3054
|
}
|
|
1212
3055
|
|
|
@@ -1215,17 +3058,47 @@ export class APreCreateApiResponse extends $tea.Model {
|
|
|
1215
3058
|
}
|
|
1216
3059
|
}
|
|
1217
3060
|
|
|
1218
|
-
export class
|
|
3061
|
+
export class CheckAicoguardcoreAicoguardrailsQuestionRequest extends $tea.Model {
|
|
1219
3062
|
// OAuth模式下的授权token
|
|
1220
3063
|
authToken?: string;
|
|
1221
3064
|
productInstanceId?: string;
|
|
1222
|
-
//
|
|
1223
|
-
|
|
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;
|
|
1224
3087
|
static names(): { [key: string]: string } {
|
|
1225
3088
|
return {
|
|
1226
3089
|
authToken: 'auth_token',
|
|
1227
3090
|
productInstanceId: 'product_instance_id',
|
|
1228
|
-
|
|
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',
|
|
1229
3102
|
};
|
|
1230
3103
|
}
|
|
1231
3104
|
|
|
@@ -1233,7 +3106,17 @@ export class ApiTestCreateRequest extends $tea.Model {
|
|
|
1233
3106
|
return {
|
|
1234
3107
|
authToken: 'string',
|
|
1235
3108
|
productInstanceId: 'string',
|
|
1236
|
-
|
|
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,
|
|
1237
3120
|
};
|
|
1238
3121
|
}
|
|
1239
3122
|
|
|
@@ -1242,24 +3125,30 @@ export class ApiTestCreateRequest extends $tea.Model {
|
|
|
1242
3125
|
}
|
|
1243
3126
|
}
|
|
1244
3127
|
|
|
1245
|
-
export class
|
|
3128
|
+
export class CheckAicoguardcoreAicoguardrailsQuestionResponse extends $tea.Model {
|
|
1246
3129
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1247
3130
|
reqMsgId?: string;
|
|
1248
3131
|
// 结果码,一般OK表示调用成功
|
|
1249
3132
|
resultCode?: string;
|
|
1250
3133
|
// 异常信息的文本描述
|
|
1251
3134
|
resultMsg?: string;
|
|
1252
|
-
//
|
|
1253
|
-
|
|
1254
|
-
//
|
|
1255
|
-
|
|
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;
|
|
1256
3143
|
static names(): { [key: string]: string } {
|
|
1257
3144
|
return {
|
|
1258
3145
|
reqMsgId: 'req_msg_id',
|
|
1259
3146
|
resultCode: 'result_code',
|
|
1260
3147
|
resultMsg: 'result_msg',
|
|
1261
|
-
|
|
1262
|
-
|
|
3148
|
+
safe: 'safe',
|
|
3149
|
+
actionCode: 'action_code',
|
|
3150
|
+
actionMsg: 'action_msg',
|
|
3151
|
+
sessionAction: 'session_action',
|
|
1263
3152
|
};
|
|
1264
3153
|
}
|
|
1265
3154
|
|
|
@@ -1268,8 +3157,10 @@ export class ApiTestCreateResponse extends $tea.Model {
|
|
|
1268
3157
|
reqMsgId: 'string',
|
|
1269
3158
|
resultCode: 'string',
|
|
1270
3159
|
resultMsg: 'string',
|
|
1271
|
-
|
|
1272
|
-
|
|
3160
|
+
safe: 'boolean',
|
|
3161
|
+
actionCode: 'string',
|
|
3162
|
+
actionMsg: 'string',
|
|
3163
|
+
sessionAction: 'string',
|
|
1273
3164
|
};
|
|
1274
3165
|
}
|
|
1275
3166
|
|
|
@@ -1278,20 +3169,20 @@ export class ApiTestCreateResponse extends $tea.Model {
|
|
|
1278
3169
|
}
|
|
1279
3170
|
}
|
|
1280
3171
|
|
|
1281
|
-
export class
|
|
3172
|
+
export class BindAaaBbbCccRequest extends $tea.Model {
|
|
1282
3173
|
// OAuth模式下的授权token
|
|
1283
3174
|
authToken?: string;
|
|
1284
3175
|
productInstanceId?: string;
|
|
1285
|
-
//
|
|
1286
|
-
|
|
1287
|
-
//
|
|
1288
|
-
|
|
3176
|
+
// 123
|
|
3177
|
+
date: string;
|
|
3178
|
+
// 123
|
|
3179
|
+
data: string;
|
|
1289
3180
|
static names(): { [key: string]: string } {
|
|
1290
3181
|
return {
|
|
1291
3182
|
authToken: 'auth_token',
|
|
1292
3183
|
productInstanceId: 'product_instance_id',
|
|
1293
|
-
|
|
1294
|
-
|
|
3184
|
+
date: 'date',
|
|
3185
|
+
data: 'data',
|
|
1295
3186
|
};
|
|
1296
3187
|
}
|
|
1297
3188
|
|
|
@@ -1299,8 +3190,8 @@ export class QueryApprovalTestRequest extends $tea.Model {
|
|
|
1299
3190
|
return {
|
|
1300
3191
|
authToken: 'string',
|
|
1301
3192
|
productInstanceId: 'string',
|
|
1302
|
-
|
|
1303
|
-
|
|
3193
|
+
date: 'string',
|
|
3194
|
+
data: 'string',
|
|
1304
3195
|
};
|
|
1305
3196
|
}
|
|
1306
3197
|
|
|
@@ -1309,24 +3200,18 @@ export class QueryApprovalTestRequest extends $tea.Model {
|
|
|
1309
3200
|
}
|
|
1310
3201
|
}
|
|
1311
3202
|
|
|
1312
|
-
export class
|
|
3203
|
+
export class BindAaaBbbCccResponse extends $tea.Model {
|
|
1313
3204
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1314
3205
|
reqMsgId?: string;
|
|
1315
3206
|
// 结果码,一般OK表示调用成功
|
|
1316
3207
|
resultCode?: string;
|
|
1317
3208
|
// 异常信息的文本描述
|
|
1318
3209
|
resultMsg?: string;
|
|
1319
|
-
// 回参
|
|
1320
|
-
msg?: string;
|
|
1321
|
-
// 新增字段
|
|
1322
|
-
code?: number;
|
|
1323
3210
|
static names(): { [key: string]: string } {
|
|
1324
3211
|
return {
|
|
1325
3212
|
reqMsgId: 'req_msg_id',
|
|
1326
3213
|
resultCode: 'result_code',
|
|
1327
3214
|
resultMsg: 'result_msg',
|
|
1328
|
-
msg: 'msg',
|
|
1329
|
-
code: 'code',
|
|
1330
3215
|
};
|
|
1331
3216
|
}
|
|
1332
3217
|
|
|
@@ -1335,8 +3220,6 @@ export class QueryApprovalTestResponse extends $tea.Model {
|
|
|
1335
3220
|
reqMsgId: 'string',
|
|
1336
3221
|
resultCode: 'string',
|
|
1337
3222
|
resultMsg: 'string',
|
|
1338
|
-
msg: 'string',
|
|
1339
|
-
code: 'number',
|
|
1340
3223
|
};
|
|
1341
3224
|
}
|
|
1342
3225
|
|
|
@@ -1345,17 +3228,14 @@ export class QueryApprovalTestResponse extends $tea.Model {
|
|
|
1345
3228
|
}
|
|
1346
3229
|
}
|
|
1347
3230
|
|
|
1348
|
-
export class
|
|
3231
|
+
export class QueryAaaBbbCccRequest extends $tea.Model {
|
|
1349
3232
|
// OAuth模式下的授权token
|
|
1350
3233
|
authToken?: string;
|
|
1351
3234
|
productInstanceId?: string;
|
|
1352
|
-
// 超时时间
|
|
1353
|
-
timeout: string;
|
|
1354
3235
|
static names(): { [key: string]: string } {
|
|
1355
3236
|
return {
|
|
1356
3237
|
authToken: 'auth_token',
|
|
1357
3238
|
productInstanceId: 'product_instance_id',
|
|
1358
|
-
timeout: 'timeout',
|
|
1359
3239
|
};
|
|
1360
3240
|
}
|
|
1361
3241
|
|
|
@@ -1363,7 +3243,6 @@ export class QueryOneLimitRequest extends $tea.Model {
|
|
|
1363
3243
|
return {
|
|
1364
3244
|
authToken: 'string',
|
|
1365
3245
|
productInstanceId: 'string',
|
|
1366
|
-
timeout: 'string',
|
|
1367
3246
|
};
|
|
1368
3247
|
}
|
|
1369
3248
|
|
|
@@ -1372,24 +3251,18 @@ export class QueryOneLimitRequest extends $tea.Model {
|
|
|
1372
3251
|
}
|
|
1373
3252
|
}
|
|
1374
3253
|
|
|
1375
|
-
export class
|
|
3254
|
+
export class QueryAaaBbbCccResponse extends $tea.Model {
|
|
1376
3255
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1377
3256
|
reqMsgId?: string;
|
|
1378
3257
|
// 结果码,一般OK表示调用成功
|
|
1379
3258
|
resultCode?: string;
|
|
1380
3259
|
// 异常信息的文本描述
|
|
1381
3260
|
resultMsg?: string;
|
|
1382
|
-
// 状态码
|
|
1383
|
-
stauts?: string;
|
|
1384
|
-
// 状态码描述
|
|
1385
|
-
msg?: string;
|
|
1386
3261
|
static names(): { [key: string]: string } {
|
|
1387
3262
|
return {
|
|
1388
3263
|
reqMsgId: 'req_msg_id',
|
|
1389
3264
|
resultCode: 'result_code',
|
|
1390
3265
|
resultMsg: 'result_msg',
|
|
1391
|
-
stauts: 'stauts',
|
|
1392
|
-
msg: 'msg',
|
|
1393
3266
|
};
|
|
1394
3267
|
}
|
|
1395
3268
|
|
|
@@ -1398,8 +3271,6 @@ export class QueryOneLimitResponse extends $tea.Model {
|
|
|
1398
3271
|
reqMsgId: 'string',
|
|
1399
3272
|
resultCode: 'string',
|
|
1400
3273
|
resultMsg: 'string',
|
|
1401
|
-
stauts: 'string',
|
|
1402
|
-
msg: 'string',
|
|
1403
3274
|
};
|
|
1404
3275
|
}
|
|
1405
3276
|
|
|
@@ -1408,17 +3279,14 @@ export class QueryOneLimitResponse extends $tea.Model {
|
|
|
1408
3279
|
}
|
|
1409
3280
|
}
|
|
1410
3281
|
|
|
1411
|
-
export class
|
|
3282
|
+
export class QueryAbcAbcAbcRequest extends $tea.Model {
|
|
1412
3283
|
// OAuth模式下的授权token
|
|
1413
3284
|
authToken?: string;
|
|
1414
3285
|
productInstanceId?: string;
|
|
1415
|
-
// 超时时间
|
|
1416
|
-
timeout: string;
|
|
1417
3286
|
static names(): { [key: string]: string } {
|
|
1418
3287
|
return {
|
|
1419
3288
|
authToken: 'auth_token',
|
|
1420
3289
|
productInstanceId: 'product_instance_id',
|
|
1421
|
-
timeout: 'timeout',
|
|
1422
3290
|
};
|
|
1423
3291
|
}
|
|
1424
3292
|
|
|
@@ -1426,7 +3294,6 @@ export class ImportOneLimitRequest extends $tea.Model {
|
|
|
1426
3294
|
return {
|
|
1427
3295
|
authToken: 'string',
|
|
1428
3296
|
productInstanceId: 'string',
|
|
1429
|
-
timeout: 'string',
|
|
1430
3297
|
};
|
|
1431
3298
|
}
|
|
1432
3299
|
|
|
@@ -1435,24 +3302,18 @@ export class ImportOneLimitRequest extends $tea.Model {
|
|
|
1435
3302
|
}
|
|
1436
3303
|
}
|
|
1437
3304
|
|
|
1438
|
-
export class
|
|
3305
|
+
export class QueryAbcAbcAbcResponse extends $tea.Model {
|
|
1439
3306
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1440
3307
|
reqMsgId?: string;
|
|
1441
3308
|
// 结果码,一般OK表示调用成功
|
|
1442
3309
|
resultCode?: string;
|
|
1443
3310
|
// 异常信息的文本描述
|
|
1444
3311
|
resultMsg?: string;
|
|
1445
|
-
// 状态码
|
|
1446
|
-
stauts?: string;
|
|
1447
|
-
// 状态描述
|
|
1448
|
-
msg?: string;
|
|
1449
3312
|
static names(): { [key: string]: string } {
|
|
1450
3313
|
return {
|
|
1451
3314
|
reqMsgId: 'req_msg_id',
|
|
1452
3315
|
resultCode: 'result_code',
|
|
1453
3316
|
resultMsg: 'result_msg',
|
|
1454
|
-
stauts: 'stauts',
|
|
1455
|
-
msg: 'msg',
|
|
1456
3317
|
};
|
|
1457
3318
|
}
|
|
1458
3319
|
|
|
@@ -1461,8 +3322,6 @@ export class ImportOneLimitResponse extends $tea.Model {
|
|
|
1461
3322
|
reqMsgId: 'string',
|
|
1462
3323
|
resultCode: 'string',
|
|
1463
3324
|
resultMsg: 'string',
|
|
1464
|
-
stauts: 'string',
|
|
1465
|
-
msg: 'string',
|
|
1466
3325
|
};
|
|
1467
3326
|
}
|
|
1468
3327
|
|
|
@@ -1471,20 +3330,14 @@ export class ImportOneLimitResponse extends $tea.Model {
|
|
|
1471
3330
|
}
|
|
1472
3331
|
}
|
|
1473
3332
|
|
|
1474
|
-
export class
|
|
3333
|
+
export class BindAaaBbbCcdRequest extends $tea.Model {
|
|
1475
3334
|
// OAuth模式下的授权token
|
|
1476
3335
|
authToken?: string;
|
|
1477
3336
|
productInstanceId?: string;
|
|
1478
|
-
// 验证
|
|
1479
|
-
character1: string;
|
|
1480
|
-
// 用于验证
|
|
1481
|
-
character2: number;
|
|
1482
3337
|
static names(): { [key: string]: string } {
|
|
1483
3338
|
return {
|
|
1484
3339
|
authToken: 'auth_token',
|
|
1485
3340
|
productInstanceId: 'product_instance_id',
|
|
1486
|
-
character1: 'character1',
|
|
1487
|
-
character2: 'character2',
|
|
1488
3341
|
};
|
|
1489
3342
|
}
|
|
1490
3343
|
|
|
@@ -1492,8 +3345,6 @@ export class QueryGongxiangTesttestRequest extends $tea.Model {
|
|
|
1492
3345
|
return {
|
|
1493
3346
|
authToken: 'string',
|
|
1494
3347
|
productInstanceId: 'string',
|
|
1495
|
-
character1: 'string',
|
|
1496
|
-
character2: 'number',
|
|
1497
3348
|
};
|
|
1498
3349
|
}
|
|
1499
3350
|
|
|
@@ -1502,21 +3353,18 @@ export class QueryGongxiangTesttestRequest extends $tea.Model {
|
|
|
1502
3353
|
}
|
|
1503
3354
|
}
|
|
1504
3355
|
|
|
1505
|
-
export class
|
|
3356
|
+
export class BindAaaBbbCcdResponse extends $tea.Model {
|
|
1506
3357
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
1507
3358
|
reqMsgId?: string;
|
|
1508
3359
|
// 结果码,一般OK表示调用成功
|
|
1509
3360
|
resultCode?: string;
|
|
1510
3361
|
// 异常信息的文本描述
|
|
1511
3362
|
resultMsg?: string;
|
|
1512
|
-
// 回参
|
|
1513
|
-
character1?: string;
|
|
1514
3363
|
static names(): { [key: string]: string } {
|
|
1515
3364
|
return {
|
|
1516
3365
|
reqMsgId: 'req_msg_id',
|
|
1517
3366
|
resultCode: 'result_code',
|
|
1518
3367
|
resultMsg: 'result_msg',
|
|
1519
|
-
character1: 'character1',
|
|
1520
3368
|
};
|
|
1521
3369
|
}
|
|
1522
3370
|
|
|
@@ -1525,7 +3373,6 @@ export class QueryGongxiangTesttestResponse extends $tea.Model {
|
|
|
1525
3373
|
reqMsgId: 'string',
|
|
1526
3374
|
resultCode: 'string',
|
|
1527
3375
|
resultMsg: 'string',
|
|
1528
|
-
character1: 'string',
|
|
1529
3376
|
};
|
|
1530
3377
|
}
|
|
1531
3378
|
|
|
@@ -1645,8 +3492,10 @@ export default class Client {
|
|
|
1645
3492
|
_maxRequestsPerHost: number;
|
|
1646
3493
|
|
|
1647
3494
|
/**
|
|
3495
|
+
* @remarks
|
|
1648
3496
|
* Init client with Config
|
|
1649
|
-
*
|
|
3497
|
+
*
|
|
3498
|
+
* @param config - config contains the necessary information to create a client
|
|
1650
3499
|
*/
|
|
1651
3500
|
constructor(config: Config) {
|
|
1652
3501
|
if (Util.isUnset(config)) {
|
|
@@ -1677,14 +3526,16 @@ export default class Client {
|
|
|
1677
3526
|
}
|
|
1678
3527
|
|
|
1679
3528
|
/**
|
|
3529
|
+
* @remarks
|
|
1680
3530
|
* Encapsulate the request and invoke the network
|
|
1681
|
-
*
|
|
1682
|
-
* @param
|
|
1683
|
-
* @param
|
|
1684
|
-
* @param
|
|
1685
|
-
* @param
|
|
1686
|
-
* @param
|
|
1687
|
-
* @
|
|
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
|
|
1688
3539
|
*/
|
|
1689
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}> {
|
|
1690
3541
|
let _runtime: { [key: string]: any } = {
|
|
@@ -1735,8 +3586,8 @@ export default class Client {
|
|
|
1735
3586
|
req_msg_id: AntchainUtil.getNonce(),
|
|
1736
3587
|
access_key: this._accessKeyId,
|
|
1737
3588
|
base_sdk_version: "TeaSDK-2.0",
|
|
1738
|
-
sdk_version: "1.
|
|
1739
|
-
_prod_code: "
|
|
3589
|
+
sdk_version: "1.1.8",
|
|
3590
|
+
_prod_code: "DEMO",
|
|
1740
3591
|
_prod_channel: "undefined",
|
|
1741
3592
|
};
|
|
1742
3593
|
if (!Util.empty(this._securityToken)) {
|
|
@@ -1744,7 +3595,7 @@ export default class Client {
|
|
|
1744
3595
|
}
|
|
1745
3596
|
|
|
1746
3597
|
request_.headers = {
|
|
1747
|
-
host: Util.defaultString(this._endpoint, "openapi.antchain.antgroup.com"),
|
|
3598
|
+
host: Util.defaultString(this._endpoint, "centre-openapi.antchain.antgroup.com"),
|
|
1748
3599
|
'user-agent': Util.getUserAgent(this._userAgent),
|
|
1749
3600
|
...headers,
|
|
1750
3601
|
};
|
|
@@ -1784,34 +3635,78 @@ export default class Client {
|
|
|
1784
3635
|
}
|
|
1785
3636
|
|
|
1786
3637
|
/**
|
|
1787
|
-
*
|
|
1788
|
-
*
|
|
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
|
|
1789
3683
|
*/
|
|
1790
|
-
async
|
|
3684
|
+
async echoGatewayCheck(request: EchoGatewayCheckRequest): Promise<EchoGatewayCheckResponse> {
|
|
1791
3685
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1792
3686
|
let headers : {[key: string ]: string} = { };
|
|
1793
|
-
return await this.
|
|
3687
|
+
return await this.echoGatewayCheckEx(request, headers, runtime);
|
|
1794
3688
|
}
|
|
1795
3689
|
|
|
1796
3690
|
/**
|
|
1797
|
-
*
|
|
1798
|
-
*
|
|
3691
|
+
* @remarks
|
|
3692
|
+
* Description: Demo接口,返回当前输入的值
|
|
3693
|
+
* Summary: 返回输入值1
|
|
1799
3694
|
*/
|
|
1800
|
-
async
|
|
3695
|
+
async echoGatewayCheckEx(request: EchoGatewayCheckRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<EchoGatewayCheckResponse> {
|
|
1801
3696
|
if (!Util.isUnset(request.fileObject)) {
|
|
1802
3697
|
let uploadReq = new CreateAntcloudGatewayxFileUploadRequest({
|
|
1803
3698
|
authToken: request.authToken,
|
|
1804
|
-
apiCode: "
|
|
3699
|
+
apiCode: "demo.gateway.check.echo",
|
|
1805
3700
|
fileName: request.fileObjectName,
|
|
1806
3701
|
});
|
|
1807
3702
|
let uploadResp = await this.createAntcloudGatewayxFileUploadEx(uploadReq, headers, runtime);
|
|
1808
|
-
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "
|
|
1809
|
-
let
|
|
3703
|
+
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "OK")) {
|
|
3704
|
+
let echoGatewayCheckResponse = new EchoGatewayCheckResponse({
|
|
1810
3705
|
reqMsgId: uploadResp.reqMsgId,
|
|
1811
3706
|
resultCode: uploadResp.resultCode,
|
|
1812
3707
|
resultMsg: uploadResp.resultMsg,
|
|
1813
3708
|
});
|
|
1814
|
-
return
|
|
3709
|
+
return echoGatewayCheckResponse;
|
|
1815
3710
|
}
|
|
1816
3711
|
|
|
1817
3712
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
@@ -1821,336 +3716,599 @@ export default class Client {
|
|
|
1821
3716
|
}
|
|
1822
3717
|
|
|
1823
3718
|
Util.validateModel(request);
|
|
1824
|
-
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({}));
|
|
1825
3720
|
}
|
|
1826
3721
|
|
|
1827
3722
|
/**
|
|
1828
|
-
*
|
|
1829
|
-
*
|
|
3723
|
+
* @remarks
|
|
3724
|
+
* Description: aaa
|
|
3725
|
+
* Summary: 测试demo
|
|
1830
3726
|
*/
|
|
1831
|
-
async
|
|
3727
|
+
async queryGatewayMy(request: QueryGatewayMyRequest): Promise<QueryGatewayMyResponse> {
|
|
1832
3728
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1833
3729
|
let headers : {[key: string ]: string} = { };
|
|
1834
|
-
return await this.
|
|
3730
|
+
return await this.queryGatewayMyEx(request, headers, runtime);
|
|
1835
3731
|
}
|
|
1836
3732
|
|
|
1837
3733
|
/**
|
|
1838
|
-
*
|
|
1839
|
-
*
|
|
3734
|
+
* @remarks
|
|
3735
|
+
* Description: aaa
|
|
3736
|
+
* Summary: 测试demo
|
|
1840
3737
|
*/
|
|
1841
|
-
async
|
|
3738
|
+
async queryGatewayMyEx(request: QueryGatewayMyRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayMyResponse> {
|
|
1842
3739
|
Util.validateModel(request);
|
|
1843
|
-
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({}));
|
|
1844
3741
|
}
|
|
1845
3742
|
|
|
1846
3743
|
/**
|
|
1847
|
-
*
|
|
1848
|
-
*
|
|
3744
|
+
* @remarks
|
|
3745
|
+
* Description: 超时测试
|
|
3746
|
+
* Summary: 超时
|
|
1849
3747
|
*/
|
|
1850
|
-
async
|
|
3748
|
+
async queryGatewayCheckEchotimeout(request: QueryGatewayCheckEchotimeoutRequest): Promise<QueryGatewayCheckEchotimeoutResponse> {
|
|
1851
3749
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1852
3750
|
let headers : {[key: string ]: string} = { };
|
|
1853
|
-
return await this.
|
|
3751
|
+
return await this.queryGatewayCheckEchotimeoutEx(request, headers, runtime);
|
|
1854
3752
|
}
|
|
1855
3753
|
|
|
1856
3754
|
/**
|
|
1857
|
-
*
|
|
1858
|
-
*
|
|
3755
|
+
* @remarks
|
|
3756
|
+
* Description: 超时测试
|
|
3757
|
+
* Summary: 超时
|
|
1859
3758
|
*/
|
|
1860
|
-
async
|
|
3759
|
+
async queryGatewayCheckEchotimeoutEx(request: QueryGatewayCheckEchotimeoutRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayCheckEchotimeoutResponse> {
|
|
1861
3760
|
Util.validateModel(request);
|
|
1862
|
-
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({}));
|
|
1863
3762
|
}
|
|
1864
3763
|
|
|
1865
3764
|
/**
|
|
1866
|
-
*
|
|
1867
|
-
*
|
|
3765
|
+
* @remarks
|
|
3766
|
+
* Description: 10 测测aa
|
|
3767
|
+
* Summary: 10s
|
|
1868
3768
|
*/
|
|
1869
|
-
async
|
|
3769
|
+
async queryGatewayCheckEchoten(request: QueryGatewayCheckEchotenRequest): Promise<QueryGatewayCheckEchotenResponse> {
|
|
1870
3770
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1871
3771
|
let headers : {[key: string ]: string} = { };
|
|
1872
|
-
return await this.
|
|
3772
|
+
return await this.queryGatewayCheckEchotenEx(request, headers, runtime);
|
|
1873
3773
|
}
|
|
1874
3774
|
|
|
1875
3775
|
/**
|
|
1876
|
-
*
|
|
1877
|
-
*
|
|
3776
|
+
* @remarks
|
|
3777
|
+
* Description: 10 测测aa
|
|
3778
|
+
* Summary: 10s
|
|
1878
3779
|
*/
|
|
1879
|
-
async
|
|
3780
|
+
async queryGatewayCheckEchotenEx(request: QueryGatewayCheckEchotenRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayCheckEchotenResponse> {
|
|
1880
3781
|
Util.validateModel(request);
|
|
1881
|
-
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({}));
|
|
1882
3783
|
}
|
|
1883
3784
|
|
|
1884
3785
|
/**
|
|
1885
|
-
*
|
|
1886
|
-
*
|
|
3786
|
+
* @remarks
|
|
3787
|
+
* Description: 简介简介简介s
|
|
3788
|
+
* Summary: 简介简介
|
|
1887
3789
|
*/
|
|
1888
|
-
async
|
|
3790
|
+
async queryAdAsdAsd(request: QueryAdAsdAsdRequest): Promise<QueryAdAsdAsdResponse> {
|
|
1889
3791
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1890
3792
|
let headers : {[key: string ]: string} = { };
|
|
1891
|
-
return await this.
|
|
3793
|
+
return await this.queryAdAsdAsdEx(request, headers, runtime);
|
|
1892
3794
|
}
|
|
1893
3795
|
|
|
1894
3796
|
/**
|
|
1895
|
-
*
|
|
1896
|
-
*
|
|
3797
|
+
* @remarks
|
|
3798
|
+
* Description: 简介简介简介s
|
|
3799
|
+
* Summary: 简介简介
|
|
1897
3800
|
*/
|
|
1898
|
-
async
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
apiCode: "antchain.abc.test.file.upload",
|
|
1903
|
-
fileName: request.fileObjectName,
|
|
1904
|
-
});
|
|
1905
|
-
let uploadResp = await this.createAntcloudGatewayxFileUploadEx(uploadReq, headers, runtime);
|
|
1906
|
-
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "ok")) {
|
|
1907
|
-
let uploadTestFileResponse = new UploadTestFileResponse({
|
|
1908
|
-
reqMsgId: uploadResp.reqMsgId,
|
|
1909
|
-
resultCode: uploadResp.resultCode,
|
|
1910
|
-
resultMsg: uploadResp.resultMsg,
|
|
1911
|
-
});
|
|
1912
|
-
return uploadTestFileResponse;
|
|
1913
|
-
}
|
|
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
|
+
}
|
|
1914
3805
|
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
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
|
+
}
|
|
1920
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> {
|
|
1921
3823
|
Util.validateModel(request);
|
|
1922
|
-
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({}));
|
|
1923
3825
|
}
|
|
1924
3826
|
|
|
1925
3827
|
/**
|
|
1926
|
-
*
|
|
1927
|
-
*
|
|
3828
|
+
* @remarks
|
|
3829
|
+
* Description: 近端网关测试接口
|
|
3830
|
+
* Summary: 近端网关测试接口(勿删)
|
|
1928
3831
|
*/
|
|
1929
|
-
async
|
|
3832
|
+
async queryGatewayEmbed(request: QueryGatewayEmbedRequest): Promise<QueryGatewayEmbedResponse> {
|
|
1930
3833
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1931
3834
|
let headers : {[key: string ]: string} = { };
|
|
1932
|
-
return await this.
|
|
3835
|
+
return await this.queryGatewayEmbedEx(request, headers, runtime);
|
|
1933
3836
|
}
|
|
1934
3837
|
|
|
1935
3838
|
/**
|
|
1936
|
-
*
|
|
1937
|
-
*
|
|
3839
|
+
* @remarks
|
|
3840
|
+
* Description: 近端网关测试接口
|
|
3841
|
+
* Summary: 近端网关测试接口(勿删)
|
|
1938
3842
|
*/
|
|
1939
|
-
async
|
|
3843
|
+
async queryGatewayEmbedEx(request: QueryGatewayEmbedRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayEmbedResponse> {
|
|
1940
3844
|
Util.validateModel(request);
|
|
1941
|
-
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({}));
|
|
1942
3846
|
}
|
|
1943
3847
|
|
|
1944
3848
|
/**
|
|
1945
|
-
*
|
|
1946
|
-
*
|
|
3849
|
+
* @remarks
|
|
3850
|
+
* Description: 更新入参后返回结果,Fr 自动化连通性测试。
|
|
3851
|
+
* Summary: road.upd(Fr AutoT)
|
|
1947
3852
|
*/
|
|
1948
|
-
async
|
|
3853
|
+
async updateGatewayRoad(request: UpdateGatewayRoadRequest): Promise<UpdateGatewayRoadResponse> {
|
|
1949
3854
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1950
3855
|
let headers : {[key: string ]: string} = { };
|
|
1951
|
-
return await this.
|
|
3856
|
+
return await this.updateGatewayRoadEx(request, headers, runtime);
|
|
1952
3857
|
}
|
|
1953
3858
|
|
|
1954
3859
|
/**
|
|
1955
|
-
*
|
|
1956
|
-
*
|
|
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)
|
|
3884
|
+
*/
|
|
3885
|
+
async queryGatewayRoadEx(request: QueryGatewayRoadRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryGatewayRoadResponse> {
|
|
3886
|
+
Util.validateModel(request);
|
|
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({}));
|
|
3888
|
+
}
|
|
3889
|
+
|
|
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)
|
|
1957
3905
|
*/
|
|
1958
|
-
async
|
|
3906
|
+
async execGatewayRoadEx(request: ExecGatewayRoadRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ExecGatewayRoadResponse> {
|
|
1959
3907
|
Util.validateModel(request);
|
|
1960
|
-
return $tea.cast<
|
|
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({}));
|
|
1961
3909
|
}
|
|
1962
3910
|
|
|
1963
3911
|
/**
|
|
3912
|
+
* @remarks
|
|
1964
3913
|
* Description: 压测接口3
|
|
1965
3914
|
* Summary: 压测接口3
|
|
1966
3915
|
*/
|
|
1967
|
-
async
|
|
3916
|
+
async queryLoadtestTimeThree(request: QueryLoadtestTimeThreeRequest): Promise<QueryLoadtestTimeThreeResponse> {
|
|
1968
3917
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1969
3918
|
let headers : {[key: string ]: string} = { };
|
|
1970
|
-
return await this.
|
|
3919
|
+
return await this.queryLoadtestTimeThreeEx(request, headers, runtime);
|
|
1971
3920
|
}
|
|
1972
3921
|
|
|
1973
3922
|
/**
|
|
3923
|
+
* @remarks
|
|
1974
3924
|
* Description: 压测接口3
|
|
1975
3925
|
* Summary: 压测接口3
|
|
1976
3926
|
*/
|
|
1977
|
-
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> {
|
|
4075
|
+
Util.validateModel(request);
|
|
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({}));
|
|
4077
|
+
}
|
|
4078
|
+
|
|
4079
|
+
/**
|
|
4080
|
+
* @remarks
|
|
4081
|
+
* Description: 模拟下游超时情况
|
|
4082
|
+
* Summary: 流式超时测试接口
|
|
4083
|
+
*/
|
|
4084
|
+
async queryStreamTimeout(request: QueryStreamTimeoutRequest): Promise<QueryStreamTimeoutResponse> {
|
|
4085
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4086
|
+
let headers : {[key: string ]: string} = { };
|
|
4087
|
+
return await this.queryStreamTimeoutEx(request, headers, runtime);
|
|
4088
|
+
}
|
|
4089
|
+
|
|
4090
|
+
/**
|
|
4091
|
+
* @remarks
|
|
4092
|
+
* Description: 模拟下游超时情况
|
|
4093
|
+
* Summary: 流式超时测试接口
|
|
4094
|
+
*/
|
|
4095
|
+
async queryStreamTimeoutEx(request: QueryStreamTimeoutRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryStreamTimeoutResponse> {
|
|
4096
|
+
Util.validateModel(request);
|
|
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({}));
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
/**
|
|
4101
|
+
* @remarks
|
|
4102
|
+
* Description: 模拟下游返回非json的情况
|
|
4103
|
+
* Summary: 流式下游返回非json
|
|
4104
|
+
*/
|
|
4105
|
+
async queryStreamNonjson(request: QueryStreamNonjsonRequest): Promise<QueryStreamNonjsonResponse> {
|
|
4106
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4107
|
+
let headers : {[key: string ]: string} = { };
|
|
4108
|
+
return await this.queryStreamNonjsonEx(request, headers, runtime);
|
|
4109
|
+
}
|
|
4110
|
+
|
|
4111
|
+
/**
|
|
4112
|
+
* @remarks
|
|
4113
|
+
* Description: 模拟下游返回非json的情况
|
|
4114
|
+
* Summary: 流式下游返回非json
|
|
4115
|
+
*/
|
|
4116
|
+
async queryStreamNonjsonEx(request: QueryStreamNonjsonRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryStreamNonjsonResponse> {
|
|
1978
4117
|
Util.validateModel(request);
|
|
1979
|
-
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({}));
|
|
1980
4119
|
}
|
|
1981
4120
|
|
|
1982
4121
|
/**
|
|
1983
|
-
*
|
|
1984
|
-
*
|
|
4122
|
+
* @remarks
|
|
4123
|
+
* Description: 流式出参包含特殊字符
|
|
4124
|
+
* Summary: 流式出参包含特殊字符
|
|
1985
4125
|
*/
|
|
1986
|
-
async
|
|
4126
|
+
async queryStreamSpecialCharacters(request: QueryStreamSpecialCharactersRequest): Promise<QueryStreamSpecialCharactersResponse> {
|
|
1987
4127
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1988
4128
|
let headers : {[key: string ]: string} = { };
|
|
1989
|
-
return await this.
|
|
4129
|
+
return await this.queryStreamSpecialCharactersEx(request, headers, runtime);
|
|
1990
4130
|
}
|
|
1991
4131
|
|
|
1992
4132
|
/**
|
|
1993
|
-
*
|
|
1994
|
-
*
|
|
4133
|
+
* @remarks
|
|
4134
|
+
* Description: 流式出参包含特殊字符
|
|
4135
|
+
* Summary: 流式出参包含特殊字符
|
|
1995
4136
|
*/
|
|
1996
|
-
async
|
|
4137
|
+
async queryStreamSpecialCharactersEx(request: QueryStreamSpecialCharactersRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryStreamSpecialCharactersResponse> {
|
|
1997
4138
|
Util.validateModel(request);
|
|
1998
|
-
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({}));
|
|
1999
4140
|
}
|
|
2000
4141
|
|
|
2001
4142
|
/**
|
|
2002
|
-
*
|
|
2003
|
-
*
|
|
4143
|
+
* @remarks
|
|
4144
|
+
* Description: 非流式返回
|
|
4145
|
+
* Summary: 非流式返回
|
|
2004
4146
|
*/
|
|
2005
|
-
async
|
|
4147
|
+
async queryStreamNonstream(request: QueryStreamNonstreamRequest): Promise<QueryStreamNonstreamResponse> {
|
|
2006
4148
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2007
4149
|
let headers : {[key: string ]: string} = { };
|
|
2008
|
-
return await this.
|
|
4150
|
+
return await this.queryStreamNonstreamEx(request, headers, runtime);
|
|
2009
4151
|
}
|
|
2010
4152
|
|
|
2011
4153
|
/**
|
|
2012
|
-
*
|
|
2013
|
-
*
|
|
4154
|
+
* @remarks
|
|
4155
|
+
* Description: 非流式返回
|
|
4156
|
+
* Summary: 非流式返回
|
|
2014
4157
|
*/
|
|
2015
|
-
async
|
|
4158
|
+
async queryStreamNonstreamEx(request: QueryStreamNonstreamRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryStreamNonstreamResponse> {
|
|
2016
4159
|
Util.validateModel(request);
|
|
2017
|
-
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({}));
|
|
2018
4161
|
}
|
|
2019
4162
|
|
|
2020
4163
|
/**
|
|
2021
|
-
*
|
|
2022
|
-
*
|
|
4164
|
+
* @remarks
|
|
4165
|
+
* Description: 压测接口1
|
|
4166
|
+
* Summary: 压测接口1
|
|
2023
4167
|
*/
|
|
2024
|
-
async
|
|
4168
|
+
async queryLoadtestTimeOne(request: QueryLoadtestTimeOneRequest): Promise<QueryLoadtestTimeOneResponse> {
|
|
2025
4169
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2026
4170
|
let headers : {[key: string ]: string} = { };
|
|
2027
|
-
return await this.
|
|
4171
|
+
return await this.queryLoadtestTimeOneEx(request, headers, runtime);
|
|
2028
4172
|
}
|
|
2029
4173
|
|
|
2030
4174
|
/**
|
|
2031
|
-
*
|
|
2032
|
-
*
|
|
4175
|
+
* @remarks
|
|
4176
|
+
* Description: 压测接口1
|
|
4177
|
+
* Summary: 压测接口1
|
|
2033
4178
|
*/
|
|
2034
|
-
async
|
|
4179
|
+
async queryLoadtestTimeOneEx(request: QueryLoadtestTimeOneRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryLoadtestTimeOneResponse> {
|
|
2035
4180
|
Util.validateModel(request);
|
|
2036
|
-
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({}));
|
|
2037
4182
|
}
|
|
2038
4183
|
|
|
2039
4184
|
/**
|
|
2040
|
-
*
|
|
2041
|
-
*
|
|
4185
|
+
* @remarks
|
|
4186
|
+
* Description: 压测接口2
|
|
4187
|
+
* Summary: 压测接口2
|
|
2042
4188
|
*/
|
|
2043
|
-
async
|
|
4189
|
+
async queryLoadtestTimeTwo(request: QueryLoadtestTimeTwoRequest): Promise<QueryLoadtestTimeTwoResponse> {
|
|
2044
4190
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2045
4191
|
let headers : {[key: string ]: string} = { };
|
|
2046
|
-
return await this.
|
|
4192
|
+
return await this.queryLoadtestTimeTwoEx(request, headers, runtime);
|
|
2047
4193
|
}
|
|
2048
4194
|
|
|
2049
4195
|
/**
|
|
2050
|
-
*
|
|
2051
|
-
*
|
|
4196
|
+
* @remarks
|
|
4197
|
+
* Description: 压测接口2
|
|
4198
|
+
* Summary: 压测接口2
|
|
2052
4199
|
*/
|
|
2053
|
-
async
|
|
4200
|
+
async queryLoadtestTimeTwoEx(request: QueryLoadtestTimeTwoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryLoadtestTimeTwoResponse> {
|
|
2054
4201
|
Util.validateModel(request);
|
|
2055
|
-
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({}));
|
|
2056
4203
|
}
|
|
2057
4204
|
|
|
2058
4205
|
/**
|
|
2059
|
-
*
|
|
2060
|
-
*
|
|
4206
|
+
* @remarks
|
|
4207
|
+
* Description: 大模型护栏多轮对话提问检测 测试
|
|
4208
|
+
* Summary: 大模型护栏多轮对话提问检测
|
|
2061
4209
|
*/
|
|
2062
|
-
async
|
|
4210
|
+
async checkAicoguardcoreAicoguardrailsQuestion(request: CheckAicoguardcoreAicoguardrailsQuestionRequest): Promise<CheckAicoguardcoreAicoguardrailsQuestionResponse> {
|
|
2063
4211
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2064
4212
|
let headers : {[key: string ]: string} = { };
|
|
2065
|
-
return await this.
|
|
4213
|
+
return await this.checkAicoguardcoreAicoguardrailsQuestionEx(request, headers, runtime);
|
|
2066
4214
|
}
|
|
2067
4215
|
|
|
2068
4216
|
/**
|
|
2069
|
-
*
|
|
2070
|
-
*
|
|
4217
|
+
* @remarks
|
|
4218
|
+
* Description: 大模型护栏多轮对话提问检测 测试
|
|
4219
|
+
* Summary: 大模型护栏多轮对话提问检测
|
|
2071
4220
|
*/
|
|
2072
|
-
async
|
|
4221
|
+
async checkAicoguardcoreAicoguardrailsQuestionEx(request: CheckAicoguardcoreAicoguardrailsQuestionRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CheckAicoguardcoreAicoguardrailsQuestionResponse> {
|
|
2073
4222
|
Util.validateModel(request);
|
|
2074
|
-
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({}));
|
|
2075
4224
|
}
|
|
2076
4225
|
|
|
2077
4226
|
/**
|
|
2078
|
-
*
|
|
2079
|
-
*
|
|
4227
|
+
* @remarks
|
|
4228
|
+
* Description: 自动化测试创建test,请勿修改、删除
|
|
4229
|
+
* Summary: 自动化测试创建test1
|
|
2080
4230
|
*/
|
|
2081
|
-
async
|
|
4231
|
+
async bindAaaBbbCcc(request: BindAaaBbbCccRequest): Promise<BindAaaBbbCccResponse> {
|
|
2082
4232
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2083
4233
|
let headers : {[key: string ]: string} = { };
|
|
2084
|
-
return await this.
|
|
4234
|
+
return await this.bindAaaBbbCccEx(request, headers, runtime);
|
|
2085
4235
|
}
|
|
2086
4236
|
|
|
2087
4237
|
/**
|
|
2088
|
-
*
|
|
2089
|
-
*
|
|
4238
|
+
* @remarks
|
|
4239
|
+
* Description: 自动化测试创建test,请勿修改、删除
|
|
4240
|
+
* Summary: 自动化测试创建test1
|
|
2090
4241
|
*/
|
|
2091
|
-
async
|
|
4242
|
+
async bindAaaBbbCccEx(request: BindAaaBbbCccRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BindAaaBbbCccResponse> {
|
|
2092
4243
|
Util.validateModel(request);
|
|
2093
|
-
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({}));
|
|
2094
4245
|
}
|
|
2095
4246
|
|
|
2096
4247
|
/**
|
|
2097
|
-
*
|
|
2098
|
-
*
|
|
4248
|
+
* @remarks
|
|
4249
|
+
* Description: 自动化测试创建111
|
|
4250
|
+
* Summary: 自动化测试创建(勿动)
|
|
2099
4251
|
*/
|
|
2100
|
-
async
|
|
4252
|
+
async queryAaaBbbCcc(request: QueryAaaBbbCccRequest): Promise<QueryAaaBbbCccResponse> {
|
|
2101
4253
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2102
4254
|
let headers : {[key: string ]: string} = { };
|
|
2103
|
-
return await this.
|
|
4255
|
+
return await this.queryAaaBbbCccEx(request, headers, runtime);
|
|
2104
4256
|
}
|
|
2105
4257
|
|
|
2106
4258
|
/**
|
|
2107
|
-
*
|
|
2108
|
-
*
|
|
4259
|
+
* @remarks
|
|
4260
|
+
* Description: 自动化测试创建111
|
|
4261
|
+
* Summary: 自动化测试创建(勿动)
|
|
2109
4262
|
*/
|
|
2110
|
-
async
|
|
4263
|
+
async queryAaaBbbCccEx(request: QueryAaaBbbCccRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryAaaBbbCccResponse> {
|
|
2111
4264
|
Util.validateModel(request);
|
|
2112
|
-
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({}));
|
|
2113
4266
|
}
|
|
2114
4267
|
|
|
2115
4268
|
/**
|
|
2116
|
-
*
|
|
2117
|
-
*
|
|
4269
|
+
* @remarks
|
|
4270
|
+
* Description: 自动化测试创建,用于测试API的修改
|
|
4271
|
+
* Summary: 自动化测试创建,用于测试API的修改勿动
|
|
2118
4272
|
*/
|
|
2119
|
-
async
|
|
4273
|
+
async queryAbcAbcAbc(request: QueryAbcAbcAbcRequest): Promise<QueryAbcAbcAbcResponse> {
|
|
2120
4274
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2121
4275
|
let headers : {[key: string ]: string} = { };
|
|
2122
|
-
return await this.
|
|
4276
|
+
return await this.queryAbcAbcAbcEx(request, headers, runtime);
|
|
2123
4277
|
}
|
|
2124
4278
|
|
|
2125
4279
|
/**
|
|
2126
|
-
*
|
|
2127
|
-
*
|
|
4280
|
+
* @remarks
|
|
4281
|
+
* Description: 自动化测试创建,用于测试API的修改
|
|
4282
|
+
* Summary: 自动化测试创建,用于测试API的修改勿动
|
|
2128
4283
|
*/
|
|
2129
|
-
async
|
|
4284
|
+
async queryAbcAbcAbcEx(request: QueryAbcAbcAbcRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryAbcAbcAbcResponse> {
|
|
2130
4285
|
Util.validateModel(request);
|
|
2131
|
-
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({}));
|
|
2132
4287
|
}
|
|
2133
4288
|
|
|
2134
4289
|
/**
|
|
2135
|
-
*
|
|
2136
|
-
*
|
|
4290
|
+
* @remarks
|
|
4291
|
+
* Description: 123
|
|
4292
|
+
* Summary: 测试用api
|
|
2137
4293
|
*/
|
|
2138
|
-
async
|
|
4294
|
+
async bindAaaBbbCcd(request: BindAaaBbbCcdRequest): Promise<BindAaaBbbCcdResponse> {
|
|
2139
4295
|
let runtime = new $Util.RuntimeOptions({ });
|
|
2140
4296
|
let headers : {[key: string ]: string} = { };
|
|
2141
|
-
return await this.
|
|
4297
|
+
return await this.bindAaaBbbCcdEx(request, headers, runtime);
|
|
2142
4298
|
}
|
|
2143
4299
|
|
|
2144
4300
|
/**
|
|
2145
|
-
*
|
|
2146
|
-
*
|
|
4301
|
+
* @remarks
|
|
4302
|
+
* Description: 123
|
|
4303
|
+
* Summary: 测试用api
|
|
2147
4304
|
*/
|
|
2148
|
-
async
|
|
4305
|
+
async bindAaaBbbCcdEx(request: BindAaaBbbCcdRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BindAaaBbbCcdResponse> {
|
|
2149
4306
|
Util.validateModel(request);
|
|
2150
|
-
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({}));
|
|
2151
4308
|
}
|
|
2152
4309
|
|
|
2153
4310
|
/**
|
|
4311
|
+
* @remarks
|
|
2154
4312
|
* Description: 创建HTTP PUT提交的文件上传
|
|
2155
4313
|
* Summary: 文件上传创建
|
|
2156
4314
|
*/
|
|
@@ -2161,6 +4319,7 @@ export default class Client {
|
|
|
2161
4319
|
}
|
|
2162
4320
|
|
|
2163
4321
|
/**
|
|
4322
|
+
* @remarks
|
|
2164
4323
|
* Description: 创建HTTP PUT提交的文件上传
|
|
2165
4324
|
* Summary: 文件上传创建
|
|
2166
4325
|
*/
|