tencentcloud-sdk-nodejs 4.1.200 → 4.1.201
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/es/common/sdk_version.js +1 -1
- package/es/services/apis/index.js +4 -0
- package/es/services/apis/v20240801/apis_client.js +102 -0
- package/es/services/apis/v20240801/apis_models.js +1 -0
- package/es/services/apis/v20240801/index.js +6 -0
- package/es/services/csip/v20221121/csip_client.js +3 -0
- package/es/services/cwp/v20180228/cwp_client.js +3 -0
- package/es/services/index.js +1 -0
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apis/index.d.ts +6 -0
- package/tencentcloud/services/apis/index.js +7 -0
- package/tencentcloud/services/apis/v20240801/apis_client.d.ts +138 -0
- package/tencentcloud/services/apis/v20240801/apis_client.js +223 -0
- package/tencentcloud/services/apis/v20240801/apis_models.d.ts +2635 -0
- package/tencentcloud/services/apis/v20240801/apis_models.js +18 -0
- package/tencentcloud/services/apis/v20240801/index.d.ts +6 -0
- package/tencentcloud/services/apis/v20240801/index.js +10 -0
- package/tencentcloud/services/csip/v20221121/csip_client.d.ts +5 -1
- package/tencentcloud/services/csip/v20221121/csip_client.js +6 -0
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +258 -182
- package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +5 -5
- package/tencentcloud/services/cvm/v20170312/cvm_client.js +5 -5
- package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +5 -1
- package/tencentcloud/services/cwp/v20180228/cwp_client.js +6 -0
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +67 -12
- package/tencentcloud/services/index.d.ts +1 -0
- package/tencentcloud/services/index.js +8 -5
- package/tencentcloud/services/ioa/v20220601/ioa_models.d.ts +7 -7
- package/tencentcloud/services/iss/v20230517/iss_models.d.ts +35 -32
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +2 -1
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +26 -35
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +11 -7
- package/tencentcloud/services/postgres/v20170312/postgres_client.d.ts +1 -1
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +26 -1
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +19 -32
|
@@ -0,0 +1,2635 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CreateModelService请求参数结构体
|
|
3
|
+
*/
|
|
4
|
+
export interface CreateModelServiceRequest {
|
|
5
|
+
/**
|
|
6
|
+
* 实例
|
|
7
|
+
*/
|
|
8
|
+
InstanceID: string;
|
|
9
|
+
/**
|
|
10
|
+
* 模型服务名称
|
|
11
|
+
*/
|
|
12
|
+
Name: string;
|
|
13
|
+
/**
|
|
14
|
+
* 描述
|
|
15
|
+
*/
|
|
16
|
+
Description: string;
|
|
17
|
+
/**
|
|
18
|
+
* 访问路径
|
|
19
|
+
*/
|
|
20
|
+
PubPath: string;
|
|
21
|
+
/**
|
|
22
|
+
* 模型ID列表
|
|
23
|
+
*/
|
|
24
|
+
TargetModels: Array<TargetModelDTO>;
|
|
25
|
+
/**
|
|
26
|
+
* 路径匹配类型: prefix 前缀匹配(不送默认); absolute 绝对匹配; regex正则匹配;
|
|
27
|
+
*/
|
|
28
|
+
PathMatchType?: string;
|
|
29
|
+
/**
|
|
30
|
+
* 是否开启限流
|
|
31
|
+
*/
|
|
32
|
+
InvokeLimitConfigStatus?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* 限流配置
|
|
35
|
+
*/
|
|
36
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
37
|
+
/**
|
|
38
|
+
* 是否开启token控制
|
|
39
|
+
*/
|
|
40
|
+
TokenLimitStatus?: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* token控制
|
|
43
|
+
*/
|
|
44
|
+
TokenLimitConfig?: TokenLimitConfigDTO;
|
|
45
|
+
/**
|
|
46
|
+
* 是否开启内容安全
|
|
47
|
+
*/
|
|
48
|
+
TmsStatus?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* 内容安全配置
|
|
51
|
+
*/
|
|
52
|
+
TmsConfig?: TmsConfigDTO;
|
|
53
|
+
/**
|
|
54
|
+
* 是否开启IP白名单
|
|
55
|
+
*/
|
|
56
|
+
IpWhiteStatus?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* IP白名单
|
|
59
|
+
*/
|
|
60
|
+
IpWhiteList?: Array<string>;
|
|
61
|
+
/**
|
|
62
|
+
* IP黑名单
|
|
63
|
+
*/
|
|
64
|
+
IpBlackList?: Array<string>;
|
|
65
|
+
/**
|
|
66
|
+
* 插件配置
|
|
67
|
+
*/
|
|
68
|
+
PluginConfigs?: Array<PluginConfigDTO>;
|
|
69
|
+
/**
|
|
70
|
+
* 超时配置,秒
|
|
71
|
+
*/
|
|
72
|
+
Timeout?: number;
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* secretKey的出参
|
|
76
|
+
*/
|
|
77
|
+
export interface AgentAppSecretKeyVO {
|
|
78
|
+
/**
|
|
79
|
+
* secret id
|
|
80
|
+
*/
|
|
81
|
+
SecretID?: string;
|
|
82
|
+
/**
|
|
83
|
+
* secret key
|
|
84
|
+
*/
|
|
85
|
+
SecretKey?: string;
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* mcp安全规则
|
|
89
|
+
*/
|
|
90
|
+
export interface McpSecurityRule {
|
|
91
|
+
/**
|
|
92
|
+
* 规则ID
|
|
93
|
+
*/
|
|
94
|
+
ID?: string;
|
|
95
|
+
/**
|
|
96
|
+
* 状态
|
|
97
|
+
*/
|
|
98
|
+
Status?: string;
|
|
99
|
+
/**
|
|
100
|
+
* 处置动作
|
|
101
|
+
*/
|
|
102
|
+
Act?: string;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* ModifyAgentApp请求参数结构体
|
|
106
|
+
*/
|
|
107
|
+
export interface ModifyAgentAppRequest {
|
|
108
|
+
/**
|
|
109
|
+
* 实例ID
|
|
110
|
+
*/
|
|
111
|
+
InstanceID: string;
|
|
112
|
+
/**
|
|
113
|
+
* 应用ID
|
|
114
|
+
*/
|
|
115
|
+
ID: string;
|
|
116
|
+
/**
|
|
117
|
+
* 名称
|
|
118
|
+
*/
|
|
119
|
+
Name?: string;
|
|
120
|
+
/**
|
|
121
|
+
* OAuth2资源服务器ID
|
|
122
|
+
*/
|
|
123
|
+
OAuth2ResourceServerID?: string;
|
|
124
|
+
/**
|
|
125
|
+
* 描述
|
|
126
|
+
*/
|
|
127
|
+
Description?: string;
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* InvokeLimitConfigDTO
|
|
131
|
+
*/
|
|
132
|
+
export interface InvokeLimitConfigDTO {
|
|
133
|
+
/**
|
|
134
|
+
* Type类型
|
|
135
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
136
|
+
*/
|
|
137
|
+
Type?: string;
|
|
138
|
+
/**
|
|
139
|
+
* 令牌桶最大容量
|
|
140
|
+
|
|
141
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
142
|
+
*/
|
|
143
|
+
TokenBucketMaxNum?: number;
|
|
144
|
+
/**
|
|
145
|
+
* 令牌生成速率
|
|
146
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
147
|
+
*/
|
|
148
|
+
TokenBucketRate?: number;
|
|
149
|
+
/**
|
|
150
|
+
* 漏斗容量
|
|
151
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
152
|
+
*/
|
|
153
|
+
FunnelMaxNum?: number;
|
|
154
|
+
/**
|
|
155
|
+
* 漏嘴流速
|
|
156
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
157
|
+
*/
|
|
158
|
+
FunnelRate?: number;
|
|
159
|
+
/**
|
|
160
|
+
* 滑动窗口最大请求数
|
|
161
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
162
|
+
*/
|
|
163
|
+
SlidingWindowMaxNum?: number;
|
|
164
|
+
/**
|
|
165
|
+
* 滑动窗口长度
|
|
166
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
167
|
+
*/
|
|
168
|
+
SlidingWindowSize?: number;
|
|
169
|
+
/**
|
|
170
|
+
* 时间窗口最大请求数
|
|
171
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
172
|
+
*/
|
|
173
|
+
TimeWindow?: number;
|
|
174
|
+
/**
|
|
175
|
+
* 时间窗口长度
|
|
176
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
177
|
+
*/
|
|
178
|
+
TimeWindowInterval?: number;
|
|
179
|
+
/**
|
|
180
|
+
* 请求的超时时间
|
|
181
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
182
|
+
*/
|
|
183
|
+
Timeout?: number;
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* 工具级别配置
|
|
187
|
+
*/
|
|
188
|
+
export interface ToolConfigDTO {
|
|
189
|
+
/**
|
|
190
|
+
* 工具名称
|
|
191
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
192
|
+
*/
|
|
193
|
+
ToolName?: string;
|
|
194
|
+
/**
|
|
195
|
+
* 是否开启限流配置
|
|
196
|
+
*/
|
|
197
|
+
InvokeLimitConfigStatus?: boolean;
|
|
198
|
+
/**
|
|
199
|
+
* 限流配置
|
|
200
|
+
*/
|
|
201
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
202
|
+
/**
|
|
203
|
+
* 绑定安全规则
|
|
204
|
+
*/
|
|
205
|
+
McpSecurityRules?: Array<BindMcpSecurityRuleDTO>;
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* CreateAgentApp返回参数结构体
|
|
209
|
+
*/
|
|
210
|
+
export interface CreateAgentAppResponse {
|
|
211
|
+
/**
|
|
212
|
+
* app id
|
|
213
|
+
*/
|
|
214
|
+
Data?: CreateAgentAppResp;
|
|
215
|
+
/**
|
|
216
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
217
|
+
*/
|
|
218
|
+
RequestId?: string;
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* DescribeAgentAppModelServices请求参数结构体
|
|
222
|
+
*/
|
|
223
|
+
export type DescribeAgentAppModelServicesRequest = null;
|
|
224
|
+
/**
|
|
225
|
+
* DeleteAgentCredential返回参数结构体
|
|
226
|
+
*/
|
|
227
|
+
export interface DeleteAgentCredentialResponse {
|
|
228
|
+
/**
|
|
229
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
230
|
+
*/
|
|
231
|
+
RequestId?: string;
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* DescribeMcpServer返回参数结构体
|
|
235
|
+
*/
|
|
236
|
+
export interface DescribeMcpServerResponse {
|
|
237
|
+
/**
|
|
238
|
+
* mcp server详情
|
|
239
|
+
*/
|
|
240
|
+
Data?: DescribeMcpServerResponseVO;
|
|
241
|
+
/**
|
|
242
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
243
|
+
*/
|
|
244
|
+
RequestId?: string;
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* 查询模型列表的响应
|
|
248
|
+
*/
|
|
249
|
+
export interface DescribeModelsResponseVO {
|
|
250
|
+
/**
|
|
251
|
+
* 条目
|
|
252
|
+
*/
|
|
253
|
+
Total?: number;
|
|
254
|
+
/**
|
|
255
|
+
* 列表
|
|
256
|
+
*/
|
|
257
|
+
Items?: Array<DescribeModelResponseVO>;
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
* BindMcpSecurityRuleDTO,替换之前的McpSecurityRule
|
|
261
|
+
*/
|
|
262
|
+
export interface BindMcpSecurityRuleDTO {
|
|
263
|
+
/**
|
|
264
|
+
* 规则ID
|
|
265
|
+
*/
|
|
266
|
+
ID?: string;
|
|
267
|
+
/**
|
|
268
|
+
* 处置动作
|
|
269
|
+
*/
|
|
270
|
+
Act?: string;
|
|
271
|
+
}
|
|
272
|
+
/**
|
|
273
|
+
* 应用关联的mcp响应
|
|
274
|
+
*/
|
|
275
|
+
export interface AgentAppMcpServerVO {
|
|
276
|
+
/**
|
|
277
|
+
* 绑定ID
|
|
278
|
+
*/
|
|
279
|
+
ID?: string;
|
|
280
|
+
/**
|
|
281
|
+
* 需要认证
|
|
282
|
+
*/
|
|
283
|
+
NeedAuth?: boolean;
|
|
284
|
+
/**
|
|
285
|
+
* 凭据ID
|
|
286
|
+
*/
|
|
287
|
+
AgentCredentialID?: string;
|
|
288
|
+
/**
|
|
289
|
+
* 凭据详情
|
|
290
|
+
*/
|
|
291
|
+
AgentCredentialVO?: DescribeAgentCredentialResp;
|
|
292
|
+
/**
|
|
293
|
+
* mcp详情
|
|
294
|
+
*/
|
|
295
|
+
McpServerVO?: DescribeMcpServerResponseVO;
|
|
296
|
+
/**
|
|
297
|
+
* 关联时间
|
|
298
|
+
*/
|
|
299
|
+
RelateTime?: string;
|
|
300
|
+
/**
|
|
301
|
+
* 应用为OAuth2认证时,sse模式请求mcp时的资源标识
|
|
302
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
303
|
+
*/
|
|
304
|
+
SSEResourceIdentifier?: string;
|
|
305
|
+
/**
|
|
306
|
+
* 应用为OAuth2认证时,streamable模式请求mcp时的资源标识
|
|
307
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
308
|
+
*/
|
|
309
|
+
StreamableResourceIdentifier?: string;
|
|
310
|
+
/**
|
|
311
|
+
* 应用ID
|
|
312
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
313
|
+
*/
|
|
314
|
+
AgentAppID?: string;
|
|
315
|
+
/**
|
|
316
|
+
* mcp ID
|
|
317
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
318
|
+
*/
|
|
319
|
+
McpServerID?: string;
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* DeleteModelService返回参数结构体
|
|
323
|
+
*/
|
|
324
|
+
export interface DeleteModelServiceResponse {
|
|
325
|
+
/**
|
|
326
|
+
* 结果集
|
|
327
|
+
*/
|
|
328
|
+
Data?: ResultIDVO;
|
|
329
|
+
/**
|
|
330
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
331
|
+
*/
|
|
332
|
+
RequestId?: string;
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* DescribeMcpServerResponseVO
|
|
336
|
+
*/
|
|
337
|
+
export interface DescribeMcpServerResponseVO {
|
|
338
|
+
/**
|
|
339
|
+
* 实例ID
|
|
340
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
341
|
+
*/
|
|
342
|
+
InstanceID?: string;
|
|
343
|
+
/**
|
|
344
|
+
* 名称
|
|
345
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
346
|
+
*/
|
|
347
|
+
Name?: string;
|
|
348
|
+
/**
|
|
349
|
+
* 描述
|
|
350
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
351
|
+
*/
|
|
352
|
+
Description?: string;
|
|
353
|
+
/**
|
|
354
|
+
* 标签ID数组
|
|
355
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
356
|
+
*/
|
|
357
|
+
LabelIDs?: Array<string>;
|
|
358
|
+
/**
|
|
359
|
+
* 目录ID数组
|
|
360
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
361
|
+
*/
|
|
362
|
+
CategoryIDs?: Array<string>;
|
|
363
|
+
/**
|
|
364
|
+
* 负载方式,robin random consistentHash
|
|
365
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
366
|
+
*/
|
|
367
|
+
TargetSelect?: string;
|
|
368
|
+
/**
|
|
369
|
+
* 目标服务器
|
|
370
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
371
|
+
*/
|
|
372
|
+
TargetHosts?: Array<TargetHostDTO>;
|
|
373
|
+
/**
|
|
374
|
+
* 后端协议:http https
|
|
375
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
376
|
+
*/
|
|
377
|
+
HttpProtocolType?: string;
|
|
378
|
+
/**
|
|
379
|
+
* 证书检查
|
|
380
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
381
|
+
*/
|
|
382
|
+
CheckTargetCertsError?: boolean;
|
|
383
|
+
/**
|
|
384
|
+
* 目标路径
|
|
385
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
386
|
+
*/
|
|
387
|
+
TargetPath?: string;
|
|
388
|
+
/**
|
|
389
|
+
* 流量控制状态
|
|
390
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
391
|
+
*/
|
|
392
|
+
InvokeLimitConfigStatus?: boolean;
|
|
393
|
+
/**
|
|
394
|
+
* 流量控制配置
|
|
395
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
396
|
+
*/
|
|
397
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
398
|
+
/**
|
|
399
|
+
* IP白名单开启状态
|
|
400
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
401
|
+
*/
|
|
402
|
+
IpWhiteStatus?: boolean;
|
|
403
|
+
/**
|
|
404
|
+
* IP白名单配置
|
|
405
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
406
|
+
*/
|
|
407
|
+
IpWhiteConfig?: IpConfig;
|
|
408
|
+
/**
|
|
409
|
+
* IP黑名单开启状态
|
|
410
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
411
|
+
*/
|
|
412
|
+
IpBlackStatus?: boolean;
|
|
413
|
+
/**
|
|
414
|
+
* IP黑名单配置
|
|
415
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
416
|
+
*/
|
|
417
|
+
IpBlackConfig?: IpConfig;
|
|
418
|
+
/**
|
|
419
|
+
* mcp server ID
|
|
420
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
421
|
+
*/
|
|
422
|
+
ID?: string;
|
|
423
|
+
/**
|
|
424
|
+
* 状态
|
|
425
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
426
|
+
*/
|
|
427
|
+
Status?: string;
|
|
428
|
+
/**
|
|
429
|
+
* 预览地址
|
|
430
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
431
|
+
*/
|
|
432
|
+
Url?: string;
|
|
433
|
+
/**
|
|
434
|
+
* 应用
|
|
435
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
436
|
+
*/
|
|
437
|
+
App?: IDNameVO;
|
|
438
|
+
/**
|
|
439
|
+
* 目录
|
|
440
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
441
|
+
*/
|
|
442
|
+
Catalogs?: Array<IDNameVO>;
|
|
443
|
+
/**
|
|
444
|
+
* 标签
|
|
445
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
446
|
+
*/
|
|
447
|
+
Labels?: Array<IDNameVO>;
|
|
448
|
+
/**
|
|
449
|
+
* 创建时间
|
|
450
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
451
|
+
*/
|
|
452
|
+
CreateTime?: string;
|
|
453
|
+
/**
|
|
454
|
+
* 最后修改时间
|
|
455
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
456
|
+
*/
|
|
457
|
+
LastUpdateTime?: string;
|
|
458
|
+
/**
|
|
459
|
+
* 用户appID
|
|
460
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
461
|
+
*/
|
|
462
|
+
AppID?: number;
|
|
463
|
+
/**
|
|
464
|
+
* 用户ID
|
|
465
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
466
|
+
*/
|
|
467
|
+
Uin?: string;
|
|
468
|
+
/**
|
|
469
|
+
* 自定义host
|
|
470
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
471
|
+
*/
|
|
472
|
+
CustomHttpHost?: string;
|
|
473
|
+
/**
|
|
474
|
+
* Http 请求host类型 useRequestHost 保持源请求host targetHost 修正为源站host customHost 自定义host
|
|
475
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
476
|
+
*/
|
|
477
|
+
HttpHostType?: string;
|
|
478
|
+
/**
|
|
479
|
+
* 请求的超时时间
|
|
480
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
481
|
+
*/
|
|
482
|
+
Timeout?: number;
|
|
483
|
+
/**
|
|
484
|
+
* mcp server模式
|
|
485
|
+
*/
|
|
486
|
+
Mode?: string;
|
|
487
|
+
/**
|
|
488
|
+
* mcp version
|
|
489
|
+
*/
|
|
490
|
+
McpVersion?: string;
|
|
491
|
+
/**
|
|
492
|
+
* 封装模式下绑定的服务ID列表
|
|
493
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
494
|
+
*/
|
|
495
|
+
WrapServices?: Array<string>;
|
|
496
|
+
/**
|
|
497
|
+
* 工具数量
|
|
498
|
+
*/
|
|
499
|
+
ToolNum?: number;
|
|
500
|
+
/**
|
|
501
|
+
* 安全规则集响应
|
|
502
|
+
*/
|
|
503
|
+
McpSecurityRulesVO?: Array<McpSecurityRulesVO>;
|
|
504
|
+
/**
|
|
505
|
+
* 真实工具级别配置,实时拉取了tool/list做渲染的,如果tool/list不通,就拉不到。
|
|
506
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
507
|
+
*/
|
|
508
|
+
ToolConfigs?: Array<ToolConfigVO>;
|
|
509
|
+
/**
|
|
510
|
+
* 访问URL
|
|
511
|
+
*/
|
|
512
|
+
UrlObj?: McpUrlObj;
|
|
513
|
+
/**
|
|
514
|
+
* 后端mcp服务是否正常
|
|
515
|
+
*/
|
|
516
|
+
ToolMessage?: string;
|
|
517
|
+
/**
|
|
518
|
+
* 后端mcp服务的工具列表
|
|
519
|
+
*/
|
|
520
|
+
Tools?: Array<McpTool>;
|
|
521
|
+
/**
|
|
522
|
+
* 封装的API分组ID
|
|
523
|
+
*/
|
|
524
|
+
WrapPaasID?: string;
|
|
525
|
+
/**
|
|
526
|
+
* 关联的agentApp数量
|
|
527
|
+
*/
|
|
528
|
+
RelateAgentAppNum?: number;
|
|
529
|
+
/**
|
|
530
|
+
* 插件配置
|
|
531
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
532
|
+
*/
|
|
533
|
+
PluginConfigs?: Array<PluginConfigDTO>;
|
|
534
|
+
}
|
|
535
|
+
/**
|
|
536
|
+
* mcp工具注解
|
|
537
|
+
*/
|
|
538
|
+
export interface McpToolAnnotation {
|
|
539
|
+
/**
|
|
540
|
+
* title for the tool
|
|
541
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
542
|
+
*/
|
|
543
|
+
Title?: string;
|
|
544
|
+
/**
|
|
545
|
+
* If true, the tool does not modify its environment
|
|
546
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
547
|
+
*/
|
|
548
|
+
ReadOnlyHint?: boolean;
|
|
549
|
+
/**
|
|
550
|
+
* If true, the tool may perform destructive updates
|
|
551
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
552
|
+
*/
|
|
553
|
+
DestructiveHint?: boolean;
|
|
554
|
+
/**
|
|
555
|
+
* If true, repeated calls with same args have no additional effect
|
|
556
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
557
|
+
*/
|
|
558
|
+
IdempotentHint?: boolean;
|
|
559
|
+
/**
|
|
560
|
+
* If true, tool interacts with external entities
|
|
561
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
562
|
+
*/
|
|
563
|
+
OpenWorldHint?: boolean;
|
|
564
|
+
}
|
|
565
|
+
/**
|
|
566
|
+
* 开始结束时间结构体
|
|
567
|
+
*/
|
|
568
|
+
export interface StartEndTime {
|
|
569
|
+
/**
|
|
570
|
+
* 开始时间
|
|
571
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
572
|
+
*/
|
|
573
|
+
StartTime?: string;
|
|
574
|
+
/**
|
|
575
|
+
* 结束时间
|
|
576
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
577
|
+
*/
|
|
578
|
+
EndTime?: string;
|
|
579
|
+
}
|
|
580
|
+
/**
|
|
581
|
+
* DeleteModel返回参数结构体
|
|
582
|
+
*/
|
|
583
|
+
export interface DeleteModelResponse {
|
|
584
|
+
/**
|
|
585
|
+
* 结果集
|
|
586
|
+
*/
|
|
587
|
+
Data?: ResultIDsVO;
|
|
588
|
+
/**
|
|
589
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
590
|
+
*/
|
|
591
|
+
RequestId?: string;
|
|
592
|
+
}
|
|
593
|
+
/**
|
|
594
|
+
* IDNameVO
|
|
595
|
+
*/
|
|
596
|
+
export interface IDNameVO {
|
|
597
|
+
/**
|
|
598
|
+
* 业务ID
|
|
599
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
600
|
+
*/
|
|
601
|
+
ID?: string;
|
|
602
|
+
/**
|
|
603
|
+
* 名称
|
|
604
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
605
|
+
*/
|
|
606
|
+
Name?: string;
|
|
607
|
+
}
|
|
608
|
+
/**
|
|
609
|
+
* ServicesVO
|
|
610
|
+
*/
|
|
611
|
+
export interface DescribeMcpServersResponseVO {
|
|
612
|
+
/**
|
|
613
|
+
* 条目
|
|
614
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
615
|
+
*/
|
|
616
|
+
Total?: number;
|
|
617
|
+
/**
|
|
618
|
+
* 数组
|
|
619
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
620
|
+
*/
|
|
621
|
+
Items?: Array<DescribeMcpServerResponseVO>;
|
|
622
|
+
}
|
|
623
|
+
/**
|
|
624
|
+
* ModifyModelService请求参数结构体
|
|
625
|
+
*/
|
|
626
|
+
export interface ModifyModelServiceRequest {
|
|
627
|
+
/**
|
|
628
|
+
* 实例
|
|
629
|
+
*/
|
|
630
|
+
InstanceID: string;
|
|
631
|
+
/**
|
|
632
|
+
* 模型服务ID
|
|
633
|
+
*/
|
|
634
|
+
ID: string;
|
|
635
|
+
/**
|
|
636
|
+
* 模型服务名称
|
|
637
|
+
*/
|
|
638
|
+
Name?: string;
|
|
639
|
+
/**
|
|
640
|
+
* 描述
|
|
641
|
+
*/
|
|
642
|
+
Description?: string;
|
|
643
|
+
/**
|
|
644
|
+
* 模板模型列表
|
|
645
|
+
*/
|
|
646
|
+
TargetModels?: Array<TargetModelDTO>;
|
|
647
|
+
/**
|
|
648
|
+
* 是否开启限流
|
|
649
|
+
*/
|
|
650
|
+
InvokeLimitConfigStatus?: boolean;
|
|
651
|
+
/**
|
|
652
|
+
* 限流配置
|
|
653
|
+
*/
|
|
654
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
655
|
+
/**
|
|
656
|
+
* 是否开启token控制
|
|
657
|
+
*/
|
|
658
|
+
TokenLimitStatus?: boolean;
|
|
659
|
+
/**
|
|
660
|
+
* token控制
|
|
661
|
+
*/
|
|
662
|
+
TokenLimitConfig?: TokenLimitConfigDTO;
|
|
663
|
+
/**
|
|
664
|
+
* 是否开启内容安全
|
|
665
|
+
*/
|
|
666
|
+
TmsStatus?: boolean;
|
|
667
|
+
/**
|
|
668
|
+
* 内容安全配置
|
|
669
|
+
*/
|
|
670
|
+
TmsConfig?: TmsConfigDTO;
|
|
671
|
+
/**
|
|
672
|
+
* 是否开启IP白名单
|
|
673
|
+
*/
|
|
674
|
+
IpWhiteStatus?: boolean;
|
|
675
|
+
/**
|
|
676
|
+
* IP白名单
|
|
677
|
+
*/
|
|
678
|
+
IpWhiteList?: Array<string>;
|
|
679
|
+
/**
|
|
680
|
+
* 是否开启IP黑名单
|
|
681
|
+
*/
|
|
682
|
+
IpBlackStatus?: boolean;
|
|
683
|
+
/**
|
|
684
|
+
* IP黑名单
|
|
685
|
+
*/
|
|
686
|
+
IpBlackList?: Array<string>;
|
|
687
|
+
/**
|
|
688
|
+
* 插件配置
|
|
689
|
+
*/
|
|
690
|
+
PluginConfigs?: Array<PluginConfigDTO>;
|
|
691
|
+
/**
|
|
692
|
+
* 超时配置,秒
|
|
693
|
+
*/
|
|
694
|
+
Timeout?: number;
|
|
695
|
+
}
|
|
696
|
+
/**
|
|
697
|
+
* ModifyModel返回参数结构体
|
|
698
|
+
*/
|
|
699
|
+
export interface ModifyModelResponse {
|
|
700
|
+
/**
|
|
701
|
+
* 结果集
|
|
702
|
+
*/
|
|
703
|
+
Data?: ResultIDVO;
|
|
704
|
+
/**
|
|
705
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
706
|
+
*/
|
|
707
|
+
RequestId?: string;
|
|
708
|
+
}
|
|
709
|
+
/**
|
|
710
|
+
* CreateAgentAppModelServices请求参数结构体
|
|
711
|
+
*/
|
|
712
|
+
export interface CreateAgentAppModelServicesRequest {
|
|
713
|
+
/**
|
|
714
|
+
* 实例ID
|
|
715
|
+
*/
|
|
716
|
+
InstanceID: string;
|
|
717
|
+
/**
|
|
718
|
+
* 应用ID
|
|
719
|
+
*/
|
|
720
|
+
ID: string;
|
|
721
|
+
/**
|
|
722
|
+
* 关联的model service
|
|
723
|
+
*/
|
|
724
|
+
ModelServices: Array<AgentAppModelServiceDTO>;
|
|
725
|
+
}
|
|
726
|
+
/**
|
|
727
|
+
* 查询模型列表的响应
|
|
728
|
+
*/
|
|
729
|
+
export interface DescribeModelServicesResponseVO {
|
|
730
|
+
/**
|
|
731
|
+
* 条目
|
|
732
|
+
*/
|
|
733
|
+
Total?: number;
|
|
734
|
+
/**
|
|
735
|
+
* 列表
|
|
736
|
+
*/
|
|
737
|
+
Items?: Array<DescribeModelServiceResponseVO>;
|
|
738
|
+
}
|
|
739
|
+
/**
|
|
740
|
+
* DeleteMcpServer返回参数结构体
|
|
741
|
+
*/
|
|
742
|
+
export interface DeleteMcpServerResponse {
|
|
743
|
+
/**
|
|
744
|
+
* mcp server ID
|
|
745
|
+
*/
|
|
746
|
+
Data?: ResultIDVO;
|
|
747
|
+
/**
|
|
748
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
749
|
+
*/
|
|
750
|
+
RequestId?: string;
|
|
751
|
+
}
|
|
752
|
+
/**
|
|
753
|
+
* 结果ID数组
|
|
754
|
+
*/
|
|
755
|
+
export interface ResultIDsVO {
|
|
756
|
+
/**
|
|
757
|
+
* 结果ID数组
|
|
758
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
759
|
+
*/
|
|
760
|
+
IDs?: Array<string>;
|
|
761
|
+
}
|
|
762
|
+
/**
|
|
763
|
+
* DescribeAgentCredentials请求参数结构体
|
|
764
|
+
*/
|
|
765
|
+
export type DescribeAgentCredentialsRequest = null;
|
|
766
|
+
/**
|
|
767
|
+
* 创建Agent应用的返回值,根据创建的AuthType,返回ApiKey或者SecretKey
|
|
768
|
+
*/
|
|
769
|
+
export interface CreateAgentAppResp {
|
|
770
|
+
/**
|
|
771
|
+
* app id
|
|
772
|
+
*/
|
|
773
|
+
ID?: string;
|
|
774
|
+
/**
|
|
775
|
+
* 如果authType为apiKey时,返回该字段
|
|
776
|
+
*/
|
|
777
|
+
ApiKey?: string;
|
|
778
|
+
/**
|
|
779
|
+
* 如果authType为secretKey时,返回该字段
|
|
780
|
+
*/
|
|
781
|
+
SecretKey?: string;
|
|
782
|
+
/**
|
|
783
|
+
* 如果authType为secretKey时,返回该字段
|
|
784
|
+
*/
|
|
785
|
+
SecretID?: string;
|
|
786
|
+
}
|
|
787
|
+
/**
|
|
788
|
+
* CreateMcpServer返回参数结构体
|
|
789
|
+
*/
|
|
790
|
+
export interface CreateMcpServerResponse {
|
|
791
|
+
/**
|
|
792
|
+
* mcp server ID
|
|
793
|
+
*/
|
|
794
|
+
Data?: ResultIDVO;
|
|
795
|
+
/**
|
|
796
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
797
|
+
*/
|
|
798
|
+
RequestId?: string;
|
|
799
|
+
}
|
|
800
|
+
/**
|
|
801
|
+
* DescribeAgentApps请求参数结构体
|
|
802
|
+
*/
|
|
803
|
+
export interface DescribeAgentAppsRequest {
|
|
804
|
+
/**
|
|
805
|
+
* 分页大小
|
|
806
|
+
*/
|
|
807
|
+
Limit: number;
|
|
808
|
+
/**
|
|
809
|
+
* 分页偏移量
|
|
810
|
+
*/
|
|
811
|
+
Offset?: number;
|
|
812
|
+
/**
|
|
813
|
+
* 服务ID数组
|
|
814
|
+
*/
|
|
815
|
+
IDs?: Array<string>;
|
|
816
|
+
/**
|
|
817
|
+
* 实例ID
|
|
818
|
+
*/
|
|
819
|
+
InstanceID?: string;
|
|
820
|
+
/**
|
|
821
|
+
* notID列表
|
|
822
|
+
*/
|
|
823
|
+
NotIDs?: Array<string>;
|
|
824
|
+
/**
|
|
825
|
+
* 状态:normal正常状态,disabled下线状态
|
|
826
|
+
*/
|
|
827
|
+
Status?: string;
|
|
828
|
+
/**
|
|
829
|
+
* 关键词
|
|
830
|
+
*/
|
|
831
|
+
Keyword?: string;
|
|
832
|
+
/**
|
|
833
|
+
* 认证类型:apiKey,secretKey
|
|
834
|
+
*/
|
|
835
|
+
AuthType?: string;
|
|
836
|
+
/**
|
|
837
|
+
* 排序
|
|
838
|
+
*/
|
|
839
|
+
Sort?: DescribeAgentAppsSortDTO;
|
|
840
|
+
/**
|
|
841
|
+
* 凭据ID
|
|
842
|
+
*/
|
|
843
|
+
AgentCredentialID?: string;
|
|
844
|
+
}
|
|
845
|
+
/**
|
|
846
|
+
* 工具配置响应
|
|
847
|
+
*/
|
|
848
|
+
export interface ToolConfigVO {
|
|
849
|
+
/**
|
|
850
|
+
* 工具名称
|
|
851
|
+
*/
|
|
852
|
+
ToolName?: string;
|
|
853
|
+
/**
|
|
854
|
+
* 是否开启限流配置
|
|
855
|
+
*/
|
|
856
|
+
InvokeLimitConfigStatus?: boolean;
|
|
857
|
+
/**
|
|
858
|
+
* 限流配置
|
|
859
|
+
*/
|
|
860
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
861
|
+
/**
|
|
862
|
+
* 绑定安全规则(响应)
|
|
863
|
+
*/
|
|
864
|
+
McpSecurityRules?: Array<BindMcpSecurityRuleVO>;
|
|
865
|
+
}
|
|
866
|
+
/**
|
|
867
|
+
* DescribeAgentApp返回参数结构体
|
|
868
|
+
*/
|
|
869
|
+
export interface DescribeAgentAppResponse {
|
|
870
|
+
/**
|
|
871
|
+
* app详情
|
|
872
|
+
*/
|
|
873
|
+
Data?: DescribeAgentAppResp;
|
|
874
|
+
/**
|
|
875
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
876
|
+
*/
|
|
877
|
+
RequestId?: string;
|
|
878
|
+
}
|
|
879
|
+
/**
|
|
880
|
+
* ResultIDVO
|
|
881
|
+
*/
|
|
882
|
+
export interface ResultIDVO {
|
|
883
|
+
/**
|
|
884
|
+
* 对象ID
|
|
885
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
886
|
+
*/
|
|
887
|
+
ID?: string;
|
|
888
|
+
}
|
|
889
|
+
/**
|
|
890
|
+
* CreateModel请求参数结构体
|
|
891
|
+
*/
|
|
892
|
+
export interface CreateModelRequest {
|
|
893
|
+
/**
|
|
894
|
+
* 实例
|
|
895
|
+
*/
|
|
896
|
+
InstanceID: string;
|
|
897
|
+
/**
|
|
898
|
+
* 模型名称
|
|
899
|
+
*/
|
|
900
|
+
Name: string;
|
|
901
|
+
/**
|
|
902
|
+
* 协议类型:http/https
|
|
903
|
+
*/
|
|
904
|
+
HttpProtocolType: string;
|
|
905
|
+
/**
|
|
906
|
+
* 目标路径
|
|
907
|
+
*/
|
|
908
|
+
TargetPath: string;
|
|
909
|
+
/**
|
|
910
|
+
* 目标服务器
|
|
911
|
+
*/
|
|
912
|
+
TargetHosts: Array<TargetHostDTO>;
|
|
913
|
+
/**
|
|
914
|
+
* 凭据ID
|
|
915
|
+
*/
|
|
916
|
+
CredentialID?: string;
|
|
917
|
+
/**
|
|
918
|
+
* https时,是否检查证书合法
|
|
919
|
+
*/
|
|
920
|
+
CheckTargetCertsError?: boolean;
|
|
921
|
+
/**
|
|
922
|
+
* http协议版本:1.1/2.0
|
|
923
|
+
*/
|
|
924
|
+
HttpProtocolVersion?: string;
|
|
925
|
+
}
|
|
926
|
+
/**
|
|
927
|
+
* DescribeModel请求参数结构体
|
|
928
|
+
*/
|
|
929
|
+
export interface DescribeModelRequest {
|
|
930
|
+
/**
|
|
931
|
+
* 实例
|
|
932
|
+
*/
|
|
933
|
+
InstanceID: string;
|
|
934
|
+
/**
|
|
935
|
+
* 模型ID
|
|
936
|
+
*/
|
|
937
|
+
ID: string;
|
|
938
|
+
}
|
|
939
|
+
/**
|
|
940
|
+
* 凭证内容头
|
|
941
|
+
*/
|
|
942
|
+
export interface AgentCredentialContentHeaderDTO {
|
|
943
|
+
/**
|
|
944
|
+
* 凭据header key
|
|
945
|
+
*/
|
|
946
|
+
Key?: string;
|
|
947
|
+
/**
|
|
948
|
+
* 凭据header value
|
|
949
|
+
*/
|
|
950
|
+
Value?: string;
|
|
951
|
+
}
|
|
952
|
+
/**
|
|
953
|
+
* BindMcpSecurityRuleVO,重新定义了之前的McpSecurityRulesVO
|
|
954
|
+
*/
|
|
955
|
+
export interface BindMcpSecurityRuleVO {
|
|
956
|
+
/**
|
|
957
|
+
* 规则ID
|
|
958
|
+
*/
|
|
959
|
+
ID?: string;
|
|
960
|
+
/**
|
|
961
|
+
* 规则类型
|
|
962
|
+
*/
|
|
963
|
+
Type?: string;
|
|
964
|
+
/**
|
|
965
|
+
* 规则名称
|
|
966
|
+
*/
|
|
967
|
+
Name?: string;
|
|
968
|
+
/**
|
|
969
|
+
* 规则描述
|
|
970
|
+
*/
|
|
971
|
+
Description?: string;
|
|
972
|
+
/**
|
|
973
|
+
* 风险等级
|
|
974
|
+
*/
|
|
975
|
+
RiskLevel?: string;
|
|
976
|
+
/**
|
|
977
|
+
* 版本号
|
|
978
|
+
*/
|
|
979
|
+
VersionNumber?: string;
|
|
980
|
+
/**
|
|
981
|
+
* 当前选择的处置动作
|
|
982
|
+
*/
|
|
983
|
+
Act?: string;
|
|
984
|
+
/**
|
|
985
|
+
* 支持的处置动作
|
|
986
|
+
*/
|
|
987
|
+
SupportActs?: Array<string>;
|
|
988
|
+
/**
|
|
989
|
+
* 内容类型
|
|
990
|
+
*/
|
|
991
|
+
BodyType?: string;
|
|
992
|
+
/**
|
|
993
|
+
* icon类型
|
|
994
|
+
*/
|
|
995
|
+
IconType?: string;
|
|
996
|
+
}
|
|
997
|
+
/**
|
|
998
|
+
* 绑定的安全规则列表
|
|
999
|
+
*/
|
|
1000
|
+
export interface McpSecurityRulesVO {
|
|
1001
|
+
/**
|
|
1002
|
+
* 规则ID
|
|
1003
|
+
*/
|
|
1004
|
+
ID?: string;
|
|
1005
|
+
/**
|
|
1006
|
+
* 规则类型
|
|
1007
|
+
*/
|
|
1008
|
+
Type?: string;
|
|
1009
|
+
/**
|
|
1010
|
+
* 规则名称
|
|
1011
|
+
*/
|
|
1012
|
+
Name?: string;
|
|
1013
|
+
/**
|
|
1014
|
+
* 规则描述
|
|
1015
|
+
*/
|
|
1016
|
+
Description?: string;
|
|
1017
|
+
/**
|
|
1018
|
+
* 风险等级
|
|
1019
|
+
*/
|
|
1020
|
+
RiskLevel?: string;
|
|
1021
|
+
/**
|
|
1022
|
+
* 版本号
|
|
1023
|
+
*/
|
|
1024
|
+
VersionNumber?: string;
|
|
1025
|
+
/**
|
|
1026
|
+
* 状态开关
|
|
1027
|
+
*/
|
|
1028
|
+
Status?: string;
|
|
1029
|
+
/**
|
|
1030
|
+
* 当前选择的处置动作
|
|
1031
|
+
*/
|
|
1032
|
+
Act?: string;
|
|
1033
|
+
/**
|
|
1034
|
+
* 支持的处置动作
|
|
1035
|
+
*/
|
|
1036
|
+
SupportActs?: Array<string>;
|
|
1037
|
+
/**
|
|
1038
|
+
* 内容类型
|
|
1039
|
+
*/
|
|
1040
|
+
BodyType?: string;
|
|
1041
|
+
/**
|
|
1042
|
+
* icon类型
|
|
1043
|
+
*/
|
|
1044
|
+
IconType?: string;
|
|
1045
|
+
}
|
|
1046
|
+
/**
|
|
1047
|
+
* DeleteAgentAppModelServices返回参数结构体
|
|
1048
|
+
*/
|
|
1049
|
+
export interface DeleteAgentAppModelServicesResponse {
|
|
1050
|
+
/**
|
|
1051
|
+
* app id
|
|
1052
|
+
*/
|
|
1053
|
+
Data?: ResultIDVO;
|
|
1054
|
+
/**
|
|
1055
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1056
|
+
*/
|
|
1057
|
+
RequestId?: string;
|
|
1058
|
+
}
|
|
1059
|
+
/**
|
|
1060
|
+
* CreateModel返回参数结构体
|
|
1061
|
+
*/
|
|
1062
|
+
export interface CreateModelResponse {
|
|
1063
|
+
/**
|
|
1064
|
+
* 结果集
|
|
1065
|
+
*/
|
|
1066
|
+
Data?: ResultIDVO;
|
|
1067
|
+
/**
|
|
1068
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1069
|
+
*/
|
|
1070
|
+
RequestId?: string;
|
|
1071
|
+
}
|
|
1072
|
+
/**
|
|
1073
|
+
* 查询模型服务列表的排序
|
|
1074
|
+
*/
|
|
1075
|
+
export interface DescribeModelServicesSort {
|
|
1076
|
+
/**
|
|
1077
|
+
* 创建时间
|
|
1078
|
+
*/
|
|
1079
|
+
CreateTime?: number;
|
|
1080
|
+
/**
|
|
1081
|
+
* 最后修改时间
|
|
1082
|
+
*/
|
|
1083
|
+
LastUpdateTime?: number;
|
|
1084
|
+
/**
|
|
1085
|
+
* 模型名称
|
|
1086
|
+
*/
|
|
1087
|
+
Name?: number;
|
|
1088
|
+
/**
|
|
1089
|
+
* 状态
|
|
1090
|
+
*/
|
|
1091
|
+
Status?: number;
|
|
1092
|
+
}
|
|
1093
|
+
/**
|
|
1094
|
+
* agentApp查询排序
|
|
1095
|
+
*/
|
|
1096
|
+
export interface DescribeAgentAppsSortDTO {
|
|
1097
|
+
/**
|
|
1098
|
+
* 创建时间
|
|
1099
|
+
*/
|
|
1100
|
+
CreateTime?: number;
|
|
1101
|
+
/**
|
|
1102
|
+
* 修改时间
|
|
1103
|
+
*/
|
|
1104
|
+
UpdateTime?: number;
|
|
1105
|
+
/**
|
|
1106
|
+
* 名称
|
|
1107
|
+
*/
|
|
1108
|
+
Name?: number;
|
|
1109
|
+
/**
|
|
1110
|
+
* 状态
|
|
1111
|
+
*/
|
|
1112
|
+
Status?: number;
|
|
1113
|
+
}
|
|
1114
|
+
/**
|
|
1115
|
+
* DescribeMcpServers请求参数结构体
|
|
1116
|
+
*/
|
|
1117
|
+
export interface DescribeMcpServersRequest {
|
|
1118
|
+
/**
|
|
1119
|
+
* 分页大小
|
|
1120
|
+
*/
|
|
1121
|
+
Limit: number;
|
|
1122
|
+
/**
|
|
1123
|
+
* 分页偏移量
|
|
1124
|
+
*/
|
|
1125
|
+
Offset?: number;
|
|
1126
|
+
/**
|
|
1127
|
+
* 实例ID
|
|
1128
|
+
*/
|
|
1129
|
+
InstanceID?: string;
|
|
1130
|
+
/**
|
|
1131
|
+
* 状态数组:normal正常状态,disabled下线状态
|
|
1132
|
+
*/
|
|
1133
|
+
Statuses?: Array<string>;
|
|
1134
|
+
/**
|
|
1135
|
+
* 关键词
|
|
1136
|
+
*/
|
|
1137
|
+
Keyword?: string;
|
|
1138
|
+
/**
|
|
1139
|
+
* 服务ID数组
|
|
1140
|
+
*/
|
|
1141
|
+
IDs?: Array<string>;
|
|
1142
|
+
/**
|
|
1143
|
+
* 模式:proxy代理模式; wrap封装模式;
|
|
1144
|
+
*/
|
|
1145
|
+
Modes?: Array<string>;
|
|
1146
|
+
/**
|
|
1147
|
+
* 绑定的安全规则ID
|
|
1148
|
+
*/
|
|
1149
|
+
McpSecurityRuleID?: string;
|
|
1150
|
+
/**
|
|
1151
|
+
* 绑定安全规则的处置动作(填写时McpSecurityRuleID得必填)
|
|
1152
|
+
*/
|
|
1153
|
+
McpSecurityRuleAct?: string;
|
|
1154
|
+
/**
|
|
1155
|
+
* 已绑定插件id
|
|
1156
|
+
*/
|
|
1157
|
+
PluginID?: string;
|
|
1158
|
+
}
|
|
1159
|
+
/**
|
|
1160
|
+
* DescribeAgentApps返回参数结构体
|
|
1161
|
+
*/
|
|
1162
|
+
export interface DescribeAgentAppsResponse {
|
|
1163
|
+
/**
|
|
1164
|
+
* app列表
|
|
1165
|
+
*/
|
|
1166
|
+
Data?: DescribeAgentAppsResp;
|
|
1167
|
+
/**
|
|
1168
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1169
|
+
*/
|
|
1170
|
+
RequestId?: string;
|
|
1171
|
+
}
|
|
1172
|
+
/**
|
|
1173
|
+
* ModifyAgentApp返回参数结构体
|
|
1174
|
+
*/
|
|
1175
|
+
export interface ModifyAgentAppResponse {
|
|
1176
|
+
/**
|
|
1177
|
+
* app id
|
|
1178
|
+
*/
|
|
1179
|
+
Data?: ResultIDVO;
|
|
1180
|
+
/**
|
|
1181
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1182
|
+
*/
|
|
1183
|
+
RequestId?: string;
|
|
1184
|
+
}
|
|
1185
|
+
/**
|
|
1186
|
+
* DescribeModelService返回参数结构体
|
|
1187
|
+
*/
|
|
1188
|
+
export interface DescribeModelServiceResponse {
|
|
1189
|
+
/**
|
|
1190
|
+
* 结果集
|
|
1191
|
+
*/
|
|
1192
|
+
Data?: DescribeModelServiceResponseVO;
|
|
1193
|
+
/**
|
|
1194
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1195
|
+
*/
|
|
1196
|
+
RequestId?: string;
|
|
1197
|
+
}
|
|
1198
|
+
/**
|
|
1199
|
+
* 凭证内容
|
|
1200
|
+
*/
|
|
1201
|
+
export interface AgentCredentialContentDTO {
|
|
1202
|
+
/**
|
|
1203
|
+
* 如果认证类型为sts时,该项必填
|
|
1204
|
+
*/
|
|
1205
|
+
STSSystem?: string;
|
|
1206
|
+
/**
|
|
1207
|
+
* 如果认证类型为sts时,该项必填
|
|
1208
|
+
*/
|
|
1209
|
+
STSService?: string;
|
|
1210
|
+
/**
|
|
1211
|
+
* 如果认证类型为reqKey时,该项必填
|
|
1212
|
+
*/
|
|
1213
|
+
Headers?: Array<AgentCredentialContentHeaderDTO>;
|
|
1214
|
+
}
|
|
1215
|
+
/**
|
|
1216
|
+
* DescribeAgentCredential返回参数结构体
|
|
1217
|
+
*/
|
|
1218
|
+
export interface DescribeAgentCredentialResponse {
|
|
1219
|
+
/**
|
|
1220
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1221
|
+
*/
|
|
1222
|
+
RequestId?: string;
|
|
1223
|
+
}
|
|
1224
|
+
/**
|
|
1225
|
+
* Mcp的访问URL
|
|
1226
|
+
*/
|
|
1227
|
+
export interface McpUrlObj {
|
|
1228
|
+
/**
|
|
1229
|
+
* sse访问URL
|
|
1230
|
+
*/
|
|
1231
|
+
SSEUrl?: string;
|
|
1232
|
+
/**
|
|
1233
|
+
* streamable访问URL
|
|
1234
|
+
*/
|
|
1235
|
+
StreamAbleUrl?: string;
|
|
1236
|
+
}
|
|
1237
|
+
/**
|
|
1238
|
+
* ModifyAgentAppModelServices请求参数结构体
|
|
1239
|
+
*/
|
|
1240
|
+
export interface ModifyAgentAppModelServicesRequest {
|
|
1241
|
+
/**
|
|
1242
|
+
* 实例ID
|
|
1243
|
+
*/
|
|
1244
|
+
InstanceID: string;
|
|
1245
|
+
/**
|
|
1246
|
+
* 应用ID
|
|
1247
|
+
*/
|
|
1248
|
+
ID: string;
|
|
1249
|
+
/**
|
|
1250
|
+
* 关联的model service
|
|
1251
|
+
*/
|
|
1252
|
+
ModelServices: Array<AgentAppModelServiceDTO>;
|
|
1253
|
+
}
|
|
1254
|
+
/**
|
|
1255
|
+
* DescribeModelService请求参数结构体
|
|
1256
|
+
*/
|
|
1257
|
+
export interface DescribeModelServiceRequest {
|
|
1258
|
+
/**
|
|
1259
|
+
* 实例
|
|
1260
|
+
*/
|
|
1261
|
+
InstanceID: string;
|
|
1262
|
+
/**
|
|
1263
|
+
* 模型服务ID
|
|
1264
|
+
*/
|
|
1265
|
+
ID: string;
|
|
1266
|
+
}
|
|
1267
|
+
/**
|
|
1268
|
+
* DeleteAgentAppMcpServers请求参数结构体
|
|
1269
|
+
*/
|
|
1270
|
+
export interface DeleteAgentAppMcpServersRequest {
|
|
1271
|
+
/**
|
|
1272
|
+
* 实例ID
|
|
1273
|
+
*/
|
|
1274
|
+
InstanceID: string;
|
|
1275
|
+
/**
|
|
1276
|
+
* 应用ID
|
|
1277
|
+
*/
|
|
1278
|
+
ID: string;
|
|
1279
|
+
/**
|
|
1280
|
+
* mcp server id数组
|
|
1281
|
+
*/
|
|
1282
|
+
McpServerIDs: Array<string>;
|
|
1283
|
+
}
|
|
1284
|
+
/**
|
|
1285
|
+
* 查询app详情响应
|
|
1286
|
+
*/
|
|
1287
|
+
export interface DescribeAgentAppResp {
|
|
1288
|
+
/**
|
|
1289
|
+
* 租户appID
|
|
1290
|
+
*/
|
|
1291
|
+
AppID?: number;
|
|
1292
|
+
/**
|
|
1293
|
+
* 租户ID
|
|
1294
|
+
*/
|
|
1295
|
+
Uin?: string;
|
|
1296
|
+
/**
|
|
1297
|
+
* 实例ID
|
|
1298
|
+
*/
|
|
1299
|
+
InstanceID?: string;
|
|
1300
|
+
/**
|
|
1301
|
+
* 应用ID
|
|
1302
|
+
*/
|
|
1303
|
+
ID?: string;
|
|
1304
|
+
/**
|
|
1305
|
+
* 名称
|
|
1306
|
+
*/
|
|
1307
|
+
Name?: string;
|
|
1308
|
+
/**
|
|
1309
|
+
* 描述
|
|
1310
|
+
*/
|
|
1311
|
+
Description?: string;
|
|
1312
|
+
/**
|
|
1313
|
+
* 状态
|
|
1314
|
+
*/
|
|
1315
|
+
Status?: string;
|
|
1316
|
+
/**
|
|
1317
|
+
* 创建时间
|
|
1318
|
+
*/
|
|
1319
|
+
CreateTime?: string;
|
|
1320
|
+
/**
|
|
1321
|
+
* 修改时间
|
|
1322
|
+
*/
|
|
1323
|
+
UpdateTime?: string;
|
|
1324
|
+
/**
|
|
1325
|
+
* 认证类型
|
|
1326
|
+
*/
|
|
1327
|
+
AuthType?: string;
|
|
1328
|
+
/**
|
|
1329
|
+
* apiKeys列表,脱敏
|
|
1330
|
+
*/
|
|
1331
|
+
ApiKeys?: Array<string>;
|
|
1332
|
+
/**
|
|
1333
|
+
* secretKey列表,脱敏
|
|
1334
|
+
*/
|
|
1335
|
+
SecretKeys?: Array<AgentAppSecretKeyVO>;
|
|
1336
|
+
/**
|
|
1337
|
+
* OAuth2 Resource Server ID
|
|
1338
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1339
|
+
*/
|
|
1340
|
+
OAuth2ResourceServerID?: string;
|
|
1341
|
+
/**
|
|
1342
|
+
* 绑定mcpServer数量
|
|
1343
|
+
*/
|
|
1344
|
+
McpServersNum?: number;
|
|
1345
|
+
/**
|
|
1346
|
+
* 绑定的模型服务数量
|
|
1347
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1348
|
+
*/
|
|
1349
|
+
ModelServicesNum?: number;
|
|
1350
|
+
}
|
|
1351
|
+
/**
|
|
1352
|
+
* CreateMcpServer请求参数结构体
|
|
1353
|
+
*/
|
|
1354
|
+
export interface CreateMcpServerRequest {
|
|
1355
|
+
/**
|
|
1356
|
+
* 模式:proxy代理模式; wrap封装模式;
|
|
1357
|
+
*/
|
|
1358
|
+
Mode: string;
|
|
1359
|
+
/**
|
|
1360
|
+
* 版本号:2024-11-05 2025-03-26
|
|
1361
|
+
*/
|
|
1362
|
+
McpVersion: string;
|
|
1363
|
+
/**
|
|
1364
|
+
* 实例ID
|
|
1365
|
+
*/
|
|
1366
|
+
InstanceID: string;
|
|
1367
|
+
/**
|
|
1368
|
+
* 名称
|
|
1369
|
+
*/
|
|
1370
|
+
Name: string;
|
|
1371
|
+
/**
|
|
1372
|
+
* 描述
|
|
1373
|
+
*/
|
|
1374
|
+
Description: string;
|
|
1375
|
+
/**
|
|
1376
|
+
* 封装服务列表
|
|
1377
|
+
*/
|
|
1378
|
+
WrapServices?: Array<string>;
|
|
1379
|
+
/**
|
|
1380
|
+
* 负载方式,robin random consistentHash
|
|
1381
|
+
*/
|
|
1382
|
+
TargetSelect?: string;
|
|
1383
|
+
/**
|
|
1384
|
+
* 目标服务器
|
|
1385
|
+
*/
|
|
1386
|
+
TargetHosts?: Array<TargetHostDTO>;
|
|
1387
|
+
/**
|
|
1388
|
+
* 后端协议:http https
|
|
1389
|
+
*/
|
|
1390
|
+
HttpProtocolType?: string;
|
|
1391
|
+
/**
|
|
1392
|
+
* 证书检查
|
|
1393
|
+
*/
|
|
1394
|
+
CheckTargetCertsError?: boolean;
|
|
1395
|
+
/**
|
|
1396
|
+
* 目标路径
|
|
1397
|
+
*/
|
|
1398
|
+
TargetPath?: string;
|
|
1399
|
+
/**
|
|
1400
|
+
* 流量控制开启状态
|
|
1401
|
+
*/
|
|
1402
|
+
InvokeLimitConfigStatus?: boolean;
|
|
1403
|
+
/**
|
|
1404
|
+
* 流量控制配置
|
|
1405
|
+
*/
|
|
1406
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
1407
|
+
/**
|
|
1408
|
+
* IP白名单开启状态
|
|
1409
|
+
*/
|
|
1410
|
+
IpWhiteStatus?: boolean;
|
|
1411
|
+
/**
|
|
1412
|
+
* IP白名单配置
|
|
1413
|
+
*/
|
|
1414
|
+
IpWhiteConfig?: IpConfig;
|
|
1415
|
+
/**
|
|
1416
|
+
* IP黑名单开启状态
|
|
1417
|
+
*/
|
|
1418
|
+
IpBlackStatus?: boolean;
|
|
1419
|
+
/**
|
|
1420
|
+
* IP黑名单配置
|
|
1421
|
+
*/
|
|
1422
|
+
IpBlackConfig?: IpConfig;
|
|
1423
|
+
/**
|
|
1424
|
+
* 自定义host
|
|
1425
|
+
*/
|
|
1426
|
+
CustomHttpHost?: string;
|
|
1427
|
+
/**
|
|
1428
|
+
* Http 请求host类型:useRequestHost 保持源请求;host targetHost 修正为源站host; customHost 自定义host
|
|
1429
|
+
*/
|
|
1430
|
+
HttpHostType?: string;
|
|
1431
|
+
/**
|
|
1432
|
+
* 请求的超时时间
|
|
1433
|
+
*/
|
|
1434
|
+
Timeout?: number;
|
|
1435
|
+
/**
|
|
1436
|
+
* 安全规则集
|
|
1437
|
+
*/
|
|
1438
|
+
McpSecurityRules?: Array<McpSecurityRule>;
|
|
1439
|
+
/**
|
|
1440
|
+
* 工具集配置(openapi时或许用的是)
|
|
1441
|
+
*/
|
|
1442
|
+
ToolConfigs?: Array<ToolConfigDTO>;
|
|
1443
|
+
/**
|
|
1444
|
+
* 封装的API分组ID
|
|
1445
|
+
*/
|
|
1446
|
+
WrapPaasID?: string;
|
|
1447
|
+
/**
|
|
1448
|
+
* 插件配置
|
|
1449
|
+
*/
|
|
1450
|
+
PluginConfigs?: Array<PluginConfigDTO>;
|
|
1451
|
+
}
|
|
1452
|
+
/**
|
|
1453
|
+
* DeleteModelService请求参数结构体
|
|
1454
|
+
*/
|
|
1455
|
+
export interface DeleteModelServiceRequest {
|
|
1456
|
+
/**
|
|
1457
|
+
* 实例
|
|
1458
|
+
*/
|
|
1459
|
+
InstanceID: string;
|
|
1460
|
+
/**
|
|
1461
|
+
* 模型服务ID
|
|
1462
|
+
*/
|
|
1463
|
+
ID: string;
|
|
1464
|
+
}
|
|
1465
|
+
/**
|
|
1466
|
+
* DeleteAgentApp请求参数结构体
|
|
1467
|
+
*/
|
|
1468
|
+
export interface DeleteAgentAppRequest {
|
|
1469
|
+
/**
|
|
1470
|
+
* 实例ID
|
|
1471
|
+
*/
|
|
1472
|
+
InstanceID: string;
|
|
1473
|
+
/**
|
|
1474
|
+
* 应用ID
|
|
1475
|
+
*/
|
|
1476
|
+
ID: string;
|
|
1477
|
+
}
|
|
1478
|
+
/**
|
|
1479
|
+
* DeleteMcpServer请求参数结构体
|
|
1480
|
+
*/
|
|
1481
|
+
export interface DeleteMcpServerRequest {
|
|
1482
|
+
/**
|
|
1483
|
+
* 实例ID
|
|
1484
|
+
*/
|
|
1485
|
+
InstanceID: string;
|
|
1486
|
+
/**
|
|
1487
|
+
* mcp server ID
|
|
1488
|
+
*/
|
|
1489
|
+
ID: string;
|
|
1490
|
+
}
|
|
1491
|
+
/**
|
|
1492
|
+
* ModifyModel请求参数结构体
|
|
1493
|
+
*/
|
|
1494
|
+
export interface ModifyModelRequest {
|
|
1495
|
+
/**
|
|
1496
|
+
* 实例
|
|
1497
|
+
*/
|
|
1498
|
+
InstanceID: string;
|
|
1499
|
+
/**
|
|
1500
|
+
* 模型ID
|
|
1501
|
+
*/
|
|
1502
|
+
ID: string;
|
|
1503
|
+
/**
|
|
1504
|
+
* 模型名称
|
|
1505
|
+
*/
|
|
1506
|
+
Name?: string;
|
|
1507
|
+
/**
|
|
1508
|
+
* 协议类型:http/https
|
|
1509
|
+
*/
|
|
1510
|
+
HttpProtocolType?: string;
|
|
1511
|
+
/**
|
|
1512
|
+
* 目标路径
|
|
1513
|
+
*/
|
|
1514
|
+
TargetPath?: string;
|
|
1515
|
+
/**
|
|
1516
|
+
* 目标服务器
|
|
1517
|
+
*/
|
|
1518
|
+
TargetHosts?: Array<TargetHostDTO>;
|
|
1519
|
+
/**
|
|
1520
|
+
* 凭据ID
|
|
1521
|
+
*/
|
|
1522
|
+
CredentialID?: string;
|
|
1523
|
+
/**
|
|
1524
|
+
* https时,是否检查证书合法
|
|
1525
|
+
*/
|
|
1526
|
+
CheckTargetCertsError?: boolean;
|
|
1527
|
+
/**
|
|
1528
|
+
* http协议版本:1.1/2.0
|
|
1529
|
+
*/
|
|
1530
|
+
HttpProtocolVersion?: string;
|
|
1531
|
+
}
|
|
1532
|
+
/**
|
|
1533
|
+
* 凭据详情响应
|
|
1534
|
+
*/
|
|
1535
|
+
export interface DescribeAgentCredentialResp {
|
|
1536
|
+
/**
|
|
1537
|
+
* 租户应用ID
|
|
1538
|
+
*/
|
|
1539
|
+
AppID?: number;
|
|
1540
|
+
/**
|
|
1541
|
+
* 租户ID
|
|
1542
|
+
*/
|
|
1543
|
+
Uin?: string;
|
|
1544
|
+
/**
|
|
1545
|
+
* 实例ID
|
|
1546
|
+
*/
|
|
1547
|
+
InstanceID?: string;
|
|
1548
|
+
/**
|
|
1549
|
+
* 凭据ID
|
|
1550
|
+
*/
|
|
1551
|
+
ID?: string;
|
|
1552
|
+
/**
|
|
1553
|
+
* 凭据名称
|
|
1554
|
+
*/
|
|
1555
|
+
Name?: string;
|
|
1556
|
+
/**
|
|
1557
|
+
* 状态
|
|
1558
|
+
*/
|
|
1559
|
+
Status?: string;
|
|
1560
|
+
/**
|
|
1561
|
+
* 关联应用数
|
|
1562
|
+
*/
|
|
1563
|
+
RelateAgentAppNum?: number;
|
|
1564
|
+
/**
|
|
1565
|
+
* 关联mcp数
|
|
1566
|
+
*/
|
|
1567
|
+
RelateMcpServerNum?: number;
|
|
1568
|
+
/**
|
|
1569
|
+
* 关联模型数
|
|
1570
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1571
|
+
*/
|
|
1572
|
+
RelateModelNum?: number;
|
|
1573
|
+
/**
|
|
1574
|
+
* 凭据内容
|
|
1575
|
+
*/
|
|
1576
|
+
Content?: AgentCredentialContentDTO;
|
|
1577
|
+
/**
|
|
1578
|
+
* 创建时间
|
|
1579
|
+
*/
|
|
1580
|
+
CreateTime?: string;
|
|
1581
|
+
/**
|
|
1582
|
+
* 修改时间
|
|
1583
|
+
*/
|
|
1584
|
+
LastUpdateTime?: string;
|
|
1585
|
+
/**
|
|
1586
|
+
* 类型
|
|
1587
|
+
*/
|
|
1588
|
+
Type?: string;
|
|
1589
|
+
}
|
|
1590
|
+
/**
|
|
1591
|
+
* CreateAgentAppModelServices返回参数结构体
|
|
1592
|
+
*/
|
|
1593
|
+
export interface CreateAgentAppModelServicesResponse {
|
|
1594
|
+
/**
|
|
1595
|
+
* app id
|
|
1596
|
+
*/
|
|
1597
|
+
Data?: ResultIDVO;
|
|
1598
|
+
/**
|
|
1599
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1600
|
+
*/
|
|
1601
|
+
RequestId?: string;
|
|
1602
|
+
}
|
|
1603
|
+
/**
|
|
1604
|
+
* DescribeAgentAppMcpServers返回参数结构体
|
|
1605
|
+
*/
|
|
1606
|
+
export interface DescribeAgentAppMcpServersResponse {
|
|
1607
|
+
/**
|
|
1608
|
+
* 列表
|
|
1609
|
+
*/
|
|
1610
|
+
Data?: DescribeAgentAppMcpServersResp;
|
|
1611
|
+
/**
|
|
1612
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1613
|
+
*/
|
|
1614
|
+
RequestId?: string;
|
|
1615
|
+
}
|
|
1616
|
+
/**
|
|
1617
|
+
* DescribeModelServices请求参数结构体
|
|
1618
|
+
*/
|
|
1619
|
+
export interface DescribeModelServicesRequest {
|
|
1620
|
+
/**
|
|
1621
|
+
* 实例
|
|
1622
|
+
*/
|
|
1623
|
+
InstanceID: string;
|
|
1624
|
+
/**
|
|
1625
|
+
* 分页参数
|
|
1626
|
+
*/
|
|
1627
|
+
Offset?: number;
|
|
1628
|
+
/**
|
|
1629
|
+
* 分页限制
|
|
1630
|
+
*/
|
|
1631
|
+
Limit?: number;
|
|
1632
|
+
/**
|
|
1633
|
+
* ID列表
|
|
1634
|
+
*/
|
|
1635
|
+
IDs?: Array<string>;
|
|
1636
|
+
/**
|
|
1637
|
+
* 排除的ID列表
|
|
1638
|
+
*/
|
|
1639
|
+
NotIDs?: Array<string>;
|
|
1640
|
+
/**
|
|
1641
|
+
* 状态:normal,disabled
|
|
1642
|
+
*/
|
|
1643
|
+
Status?: string;
|
|
1644
|
+
/**
|
|
1645
|
+
* 关键词
|
|
1646
|
+
*/
|
|
1647
|
+
Keyword?: string;
|
|
1648
|
+
/**
|
|
1649
|
+
* 模型ID
|
|
1650
|
+
*/
|
|
1651
|
+
ModelID?: string;
|
|
1652
|
+
/**
|
|
1653
|
+
* 排序
|
|
1654
|
+
*/
|
|
1655
|
+
Sort?: DescribeModelServicesSort;
|
|
1656
|
+
}
|
|
1657
|
+
/**
|
|
1658
|
+
* DescribeMcpServer请求参数结构体
|
|
1659
|
+
*/
|
|
1660
|
+
export interface DescribeMcpServerRequest {
|
|
1661
|
+
/**
|
|
1662
|
+
* 实例ID
|
|
1663
|
+
*/
|
|
1664
|
+
InstanceID: string;
|
|
1665
|
+
/**
|
|
1666
|
+
* mcp server ID
|
|
1667
|
+
*/
|
|
1668
|
+
ID: string;
|
|
1669
|
+
}
|
|
1670
|
+
/**
|
|
1671
|
+
* 内容安全配置
|
|
1672
|
+
*/
|
|
1673
|
+
export interface TmsConfigDTO {
|
|
1674
|
+
/**
|
|
1675
|
+
* 检测范围,请求/响应
|
|
1676
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1677
|
+
*/
|
|
1678
|
+
Scope?: Array<string>;
|
|
1679
|
+
/**
|
|
1680
|
+
* 检测形式
|
|
1681
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1682
|
+
*/
|
|
1683
|
+
Mode?: string;
|
|
1684
|
+
/**
|
|
1685
|
+
* 执行动作
|
|
1686
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1687
|
+
*/
|
|
1688
|
+
Action?: string;
|
|
1689
|
+
/**
|
|
1690
|
+
* 合并请求检测event数,联动Mode字段sync
|
|
1691
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1692
|
+
*/
|
|
1693
|
+
MergeCount?: number;
|
|
1694
|
+
/**
|
|
1695
|
+
* 风控策略
|
|
1696
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1697
|
+
*/
|
|
1698
|
+
BizType?: string;
|
|
1699
|
+
/**
|
|
1700
|
+
* 响应拦截内容
|
|
1701
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1702
|
+
*/
|
|
1703
|
+
InterceptMessage?: string;
|
|
1704
|
+
}
|
|
1705
|
+
/**
|
|
1706
|
+
* 应用绑定模型服务入参
|
|
1707
|
+
*/
|
|
1708
|
+
export interface AgentAppModelServiceDTO {
|
|
1709
|
+
/**
|
|
1710
|
+
* 模型服务ID
|
|
1711
|
+
*/
|
|
1712
|
+
ID?: string;
|
|
1713
|
+
/**
|
|
1714
|
+
* 是否开启流量控制
|
|
1715
|
+
*/
|
|
1716
|
+
InvokeLimitConfigStatus?: boolean;
|
|
1717
|
+
/**
|
|
1718
|
+
* 流量控制
|
|
1719
|
+
*/
|
|
1720
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
1721
|
+
/**
|
|
1722
|
+
* 是否开启token控制
|
|
1723
|
+
*/
|
|
1724
|
+
TokenLimitStatus?: boolean;
|
|
1725
|
+
/**
|
|
1726
|
+
* token控制
|
|
1727
|
+
*/
|
|
1728
|
+
TokenLimitConfig?: TokenLimitConfigDTO;
|
|
1729
|
+
}
|
|
1730
|
+
/**
|
|
1731
|
+
* mcp工具
|
|
1732
|
+
*/
|
|
1733
|
+
export interface McpTool {
|
|
1734
|
+
/**
|
|
1735
|
+
* 名称
|
|
1736
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1737
|
+
*/
|
|
1738
|
+
Name?: string;
|
|
1739
|
+
/**
|
|
1740
|
+
* 描述
|
|
1741
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1742
|
+
*/
|
|
1743
|
+
Description?: string;
|
|
1744
|
+
/**
|
|
1745
|
+
* 入参参数
|
|
1746
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1747
|
+
*/
|
|
1748
|
+
InputSchema?: McpInputOutSchema;
|
|
1749
|
+
/**
|
|
1750
|
+
* 注释
|
|
1751
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1752
|
+
*/
|
|
1753
|
+
Annotations?: McpToolAnnotation;
|
|
1754
|
+
/**
|
|
1755
|
+
* 出参参数
|
|
1756
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1757
|
+
*/
|
|
1758
|
+
OutputSchema?: McpInputOutSchema;
|
|
1759
|
+
}
|
|
1760
|
+
/**
|
|
1761
|
+
* ModifyAgentAppModelServices返回参数结构体
|
|
1762
|
+
*/
|
|
1763
|
+
export interface ModifyAgentAppModelServicesResponse {
|
|
1764
|
+
/**
|
|
1765
|
+
* app id
|
|
1766
|
+
*/
|
|
1767
|
+
Data?: ResultIDVO;
|
|
1768
|
+
/**
|
|
1769
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1770
|
+
*/
|
|
1771
|
+
RequestId?: string;
|
|
1772
|
+
}
|
|
1773
|
+
/**
|
|
1774
|
+
* DeleteAgentAppModelServices请求参数结构体
|
|
1775
|
+
*/
|
|
1776
|
+
export interface DeleteAgentAppModelServicesRequest {
|
|
1777
|
+
/**
|
|
1778
|
+
* 实例ID
|
|
1779
|
+
*/
|
|
1780
|
+
InstanceID: string;
|
|
1781
|
+
/**
|
|
1782
|
+
* 应用ID
|
|
1783
|
+
*/
|
|
1784
|
+
ID: string;
|
|
1785
|
+
/**
|
|
1786
|
+
* 关联的model service id
|
|
1787
|
+
*/
|
|
1788
|
+
ModelServiceIDs: Array<string>;
|
|
1789
|
+
}
|
|
1790
|
+
/**
|
|
1791
|
+
* ModifyAgentCredential返回参数结构体
|
|
1792
|
+
*/
|
|
1793
|
+
export interface ModifyAgentCredentialResponse {
|
|
1794
|
+
/**
|
|
1795
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1796
|
+
*/
|
|
1797
|
+
RequestId?: string;
|
|
1798
|
+
}
|
|
1799
|
+
/**
|
|
1800
|
+
* 查询模型详情的响应
|
|
1801
|
+
*/
|
|
1802
|
+
export interface DescribeModelResponseVO {
|
|
1803
|
+
/**
|
|
1804
|
+
* 腾讯云AppID
|
|
1805
|
+
*/
|
|
1806
|
+
AppID?: number;
|
|
1807
|
+
/**
|
|
1808
|
+
* 腾讯云Uin
|
|
1809
|
+
*/
|
|
1810
|
+
Uin?: string;
|
|
1811
|
+
/**
|
|
1812
|
+
* 实例ID
|
|
1813
|
+
*/
|
|
1814
|
+
InstanceID?: string;
|
|
1815
|
+
/**
|
|
1816
|
+
* 模型ID
|
|
1817
|
+
*/
|
|
1818
|
+
ID?: string;
|
|
1819
|
+
/**
|
|
1820
|
+
* 模型名称
|
|
1821
|
+
*/
|
|
1822
|
+
Name?: string;
|
|
1823
|
+
/**
|
|
1824
|
+
* 凭据ID
|
|
1825
|
+
*/
|
|
1826
|
+
CredentialID?: string;
|
|
1827
|
+
/**
|
|
1828
|
+
* 凭据名称
|
|
1829
|
+
*/
|
|
1830
|
+
CredentialName?: string;
|
|
1831
|
+
/**
|
|
1832
|
+
* http协议类型
|
|
1833
|
+
*/
|
|
1834
|
+
HttpProtocolType?: string;
|
|
1835
|
+
/**
|
|
1836
|
+
* https时,是否校验目标证书
|
|
1837
|
+
*/
|
|
1838
|
+
CheckTargetCertsError?: boolean;
|
|
1839
|
+
/**
|
|
1840
|
+
* http协议版本:1.1/2.0
|
|
1841
|
+
*/
|
|
1842
|
+
HttpProtocolVersion?: string;
|
|
1843
|
+
/**
|
|
1844
|
+
* 目标路径
|
|
1845
|
+
*/
|
|
1846
|
+
TargetPath?: string;
|
|
1847
|
+
/**
|
|
1848
|
+
* 目标器列表
|
|
1849
|
+
*/
|
|
1850
|
+
TargetHosts?: Array<TargetHostDTO>;
|
|
1851
|
+
/**
|
|
1852
|
+
* 被模型服务使用的个数
|
|
1853
|
+
*/
|
|
1854
|
+
ModelServiceCount?: number;
|
|
1855
|
+
/**
|
|
1856
|
+
* 创建时间
|
|
1857
|
+
*/
|
|
1858
|
+
CreateTime?: string;
|
|
1859
|
+
/**
|
|
1860
|
+
* 最后修改时间
|
|
1861
|
+
*/
|
|
1862
|
+
LastUpdateTime?: string;
|
|
1863
|
+
}
|
|
1864
|
+
/**
|
|
1865
|
+
* DeleteAgentCredential请求参数结构体
|
|
1866
|
+
*/
|
|
1867
|
+
export type DeleteAgentCredentialRequest = null;
|
|
1868
|
+
/**
|
|
1869
|
+
* ModifyModelService返回参数结构体
|
|
1870
|
+
*/
|
|
1871
|
+
export interface ModifyModelServiceResponse {
|
|
1872
|
+
/**
|
|
1873
|
+
* 结果集
|
|
1874
|
+
*/
|
|
1875
|
+
Data?: ResultIDVO;
|
|
1876
|
+
/**
|
|
1877
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1878
|
+
*/
|
|
1879
|
+
RequestId?: string;
|
|
1880
|
+
}
|
|
1881
|
+
/**
|
|
1882
|
+
* CreateAgentAppMcpServers请求参数结构体
|
|
1883
|
+
*/
|
|
1884
|
+
export interface CreateAgentAppMcpServersRequest {
|
|
1885
|
+
/**
|
|
1886
|
+
* 实例ID
|
|
1887
|
+
*/
|
|
1888
|
+
InstanceID: string;
|
|
1889
|
+
/**
|
|
1890
|
+
* 应用ID
|
|
1891
|
+
*/
|
|
1892
|
+
ID: string;
|
|
1893
|
+
/**
|
|
1894
|
+
* 关联的mcp server
|
|
1895
|
+
*/
|
|
1896
|
+
McpServers: Array<AgentAppMcpServerDTO>;
|
|
1897
|
+
}
|
|
1898
|
+
/**
|
|
1899
|
+
* DescribeMcpServers返回参数结构体
|
|
1900
|
+
*/
|
|
1901
|
+
export interface DescribeMcpServersResponse {
|
|
1902
|
+
/**
|
|
1903
|
+
* mcp server列表
|
|
1904
|
+
*/
|
|
1905
|
+
Data?: DescribeMcpServersResponseVO;
|
|
1906
|
+
/**
|
|
1907
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1908
|
+
*/
|
|
1909
|
+
RequestId?: string;
|
|
1910
|
+
}
|
|
1911
|
+
/**
|
|
1912
|
+
* ModifyAgentCredential请求参数结构体
|
|
1913
|
+
*/
|
|
1914
|
+
export type ModifyAgentCredentialRequest = null;
|
|
1915
|
+
/**
|
|
1916
|
+
* CreateAgentApp请求参数结构体
|
|
1917
|
+
*/
|
|
1918
|
+
export interface CreateAgentAppRequest {
|
|
1919
|
+
/**
|
|
1920
|
+
* 实例ID
|
|
1921
|
+
*/
|
|
1922
|
+
InstanceID: string;
|
|
1923
|
+
/**
|
|
1924
|
+
* 名称
|
|
1925
|
+
*/
|
|
1926
|
+
Name: string;
|
|
1927
|
+
/**
|
|
1928
|
+
* 认证类型
|
|
1929
|
+
*/
|
|
1930
|
+
AuthType: string;
|
|
1931
|
+
/**
|
|
1932
|
+
* OAuth2资源服务器ID
|
|
1933
|
+
*/
|
|
1934
|
+
OAuth2ResourceServerID?: string;
|
|
1935
|
+
/**
|
|
1936
|
+
* 描述
|
|
1937
|
+
*/
|
|
1938
|
+
Description?: string;
|
|
1939
|
+
}
|
|
1940
|
+
/**
|
|
1941
|
+
* 查询App列表响应
|
|
1942
|
+
*/
|
|
1943
|
+
export interface DescribeAgentAppsResp {
|
|
1944
|
+
/**
|
|
1945
|
+
* 条目总数
|
|
1946
|
+
*/
|
|
1947
|
+
Total?: number;
|
|
1948
|
+
/**
|
|
1949
|
+
* 具体条目
|
|
1950
|
+
*/
|
|
1951
|
+
Items?: Array<DescribeAgentAppResp>;
|
|
1952
|
+
}
|
|
1953
|
+
/**
|
|
1954
|
+
* CreateModelService返回参数结构体
|
|
1955
|
+
*/
|
|
1956
|
+
export interface CreateModelServiceResponse {
|
|
1957
|
+
/**
|
|
1958
|
+
* 结果集
|
|
1959
|
+
*/
|
|
1960
|
+
Data?: ResultIDVO;
|
|
1961
|
+
/**
|
|
1962
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1963
|
+
*/
|
|
1964
|
+
RequestId?: string;
|
|
1965
|
+
}
|
|
1966
|
+
/**
|
|
1967
|
+
* DescribeAgentCredentials返回参数结构体
|
|
1968
|
+
*/
|
|
1969
|
+
export interface DescribeAgentCredentialsResponse {
|
|
1970
|
+
/**
|
|
1971
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1972
|
+
*/
|
|
1973
|
+
RequestId?: string;
|
|
1974
|
+
}
|
|
1975
|
+
/**
|
|
1976
|
+
* DeleteAgentAppMcpServers返回参数结构体
|
|
1977
|
+
*/
|
|
1978
|
+
export interface DeleteAgentAppMcpServersResponse {
|
|
1979
|
+
/**
|
|
1980
|
+
* app id
|
|
1981
|
+
*/
|
|
1982
|
+
Data?: ResultIDVO;
|
|
1983
|
+
/**
|
|
1984
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1985
|
+
*/
|
|
1986
|
+
RequestId?: string;
|
|
1987
|
+
}
|
|
1988
|
+
/**
|
|
1989
|
+
* TargetHostDTO
|
|
1990
|
+
*/
|
|
1991
|
+
export interface TargetHostDTO {
|
|
1992
|
+
/**
|
|
1993
|
+
* 服务器
|
|
1994
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1995
|
+
*/
|
|
1996
|
+
Host?: string;
|
|
1997
|
+
/**
|
|
1998
|
+
* 权重
|
|
1999
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2000
|
+
*/
|
|
2001
|
+
Rank?: number;
|
|
2002
|
+
}
|
|
2003
|
+
/**
|
|
2004
|
+
* DescribeModels请求参数结构体
|
|
2005
|
+
*/
|
|
2006
|
+
export interface DescribeModelsRequest {
|
|
2007
|
+
/**
|
|
2008
|
+
* 实例
|
|
2009
|
+
*/
|
|
2010
|
+
InstanceID: string;
|
|
2011
|
+
/**
|
|
2012
|
+
* 分页参数
|
|
2013
|
+
*/
|
|
2014
|
+
Offset?: number;
|
|
2015
|
+
/**
|
|
2016
|
+
* 分页限制
|
|
2017
|
+
*/
|
|
2018
|
+
Limit?: number;
|
|
2019
|
+
/**
|
|
2020
|
+
* ID列表
|
|
2021
|
+
*/
|
|
2022
|
+
IDs?: Array<string>;
|
|
2023
|
+
/**
|
|
2024
|
+
* 排除的ID列表
|
|
2025
|
+
*/
|
|
2026
|
+
NotIDs?: Array<string>;
|
|
2027
|
+
/**
|
|
2028
|
+
* 凭据ID
|
|
2029
|
+
*/
|
|
2030
|
+
CredentialID?: string;
|
|
2031
|
+
/**
|
|
2032
|
+
* 关键词
|
|
2033
|
+
*/
|
|
2034
|
+
Keyword?: string;
|
|
2035
|
+
/**
|
|
2036
|
+
* 排序
|
|
2037
|
+
*/
|
|
2038
|
+
Sort?: DescribeModelsSort;
|
|
2039
|
+
}
|
|
2040
|
+
/**
|
|
2041
|
+
* DescribeAgentCredential请求参数结构体
|
|
2042
|
+
*/
|
|
2043
|
+
export type DescribeAgentCredentialRequest = null;
|
|
2044
|
+
/**
|
|
2045
|
+
* 限流窗口配置
|
|
2046
|
+
*/
|
|
2047
|
+
export interface LimitWindowsDTO {
|
|
2048
|
+
/**
|
|
2049
|
+
* 时间窗口,分钟
|
|
2050
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2051
|
+
*/
|
|
2052
|
+
Interval?: number;
|
|
2053
|
+
/**
|
|
2054
|
+
* 累计上限,k
|
|
2055
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2056
|
+
*/
|
|
2057
|
+
Limit?: number;
|
|
2058
|
+
}
|
|
2059
|
+
/**
|
|
2060
|
+
* CreateAgentCredential请求参数结构体
|
|
2061
|
+
*/
|
|
2062
|
+
export type CreateAgentCredentialRequest = null;
|
|
2063
|
+
/**
|
|
2064
|
+
* ip黑白名单配置
|
|
2065
|
+
*/
|
|
2066
|
+
export interface IpConfig {
|
|
2067
|
+
/**
|
|
2068
|
+
* ip数组
|
|
2069
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2070
|
+
*/
|
|
2071
|
+
Ips?: Array<string>;
|
|
2072
|
+
/**
|
|
2073
|
+
* 生效类型
|
|
2074
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2075
|
+
*/
|
|
2076
|
+
EffectType?: string;
|
|
2077
|
+
/**
|
|
2078
|
+
* 生效时间
|
|
2079
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2080
|
+
*/
|
|
2081
|
+
EffectTimes?: Array<StartEndTime>;
|
|
2082
|
+
/**
|
|
2083
|
+
* 备注
|
|
2084
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2085
|
+
*/
|
|
2086
|
+
Comment?: string;
|
|
2087
|
+
}
|
|
2088
|
+
/**
|
|
2089
|
+
* CreateAgentAppMcpServers返回参数结构体
|
|
2090
|
+
*/
|
|
2091
|
+
export interface CreateAgentAppMcpServersResponse {
|
|
2092
|
+
/**
|
|
2093
|
+
* app id
|
|
2094
|
+
*/
|
|
2095
|
+
Data?: ResultIDVO;
|
|
2096
|
+
/**
|
|
2097
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2098
|
+
*/
|
|
2099
|
+
RequestId?: string;
|
|
2100
|
+
}
|
|
2101
|
+
/**
|
|
2102
|
+
* ModifyMcpServer请求参数结构体
|
|
2103
|
+
*/
|
|
2104
|
+
export interface ModifyMcpServerRequest {
|
|
2105
|
+
/**
|
|
2106
|
+
* mcp server ID
|
|
2107
|
+
*/
|
|
2108
|
+
ID: string;
|
|
2109
|
+
/**
|
|
2110
|
+
* 模式:proxy代理模式; wrap封装模式;
|
|
2111
|
+
*/
|
|
2112
|
+
Mode: string;
|
|
2113
|
+
/**
|
|
2114
|
+
* 版本号:2024-11-05 2025-03-26
|
|
2115
|
+
*/
|
|
2116
|
+
McpVersion: string;
|
|
2117
|
+
/**
|
|
2118
|
+
* 实例ID
|
|
2119
|
+
*/
|
|
2120
|
+
InstanceID: string;
|
|
2121
|
+
/**
|
|
2122
|
+
* 名称
|
|
2123
|
+
*/
|
|
2124
|
+
Name: string;
|
|
2125
|
+
/**
|
|
2126
|
+
* 描述
|
|
2127
|
+
*/
|
|
2128
|
+
Description?: string;
|
|
2129
|
+
/**
|
|
2130
|
+
* 封装服务列表
|
|
2131
|
+
*/
|
|
2132
|
+
WrapServices?: Array<string>;
|
|
2133
|
+
/**
|
|
2134
|
+
* 负载方式,robin random consistentHash
|
|
2135
|
+
*/
|
|
2136
|
+
TargetSelect?: string;
|
|
2137
|
+
/**
|
|
2138
|
+
* 目标服务器
|
|
2139
|
+
*/
|
|
2140
|
+
TargetHosts?: Array<TargetHostDTO>;
|
|
2141
|
+
/**
|
|
2142
|
+
* 后端协议:http https
|
|
2143
|
+
*/
|
|
2144
|
+
HttpProtocolType?: string;
|
|
2145
|
+
/**
|
|
2146
|
+
* 证书检查
|
|
2147
|
+
*/
|
|
2148
|
+
CheckTargetCertsError?: boolean;
|
|
2149
|
+
/**
|
|
2150
|
+
* 目标路径
|
|
2151
|
+
*/
|
|
2152
|
+
TargetPath?: string;
|
|
2153
|
+
/**
|
|
2154
|
+
* 流量控制开启状态
|
|
2155
|
+
*/
|
|
2156
|
+
InvokeLimitConfigStatus?: boolean;
|
|
2157
|
+
/**
|
|
2158
|
+
* 流量控制配置
|
|
2159
|
+
*/
|
|
2160
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
2161
|
+
/**
|
|
2162
|
+
* IP白名单开启状态
|
|
2163
|
+
*/
|
|
2164
|
+
IpWhiteStatus?: boolean;
|
|
2165
|
+
/**
|
|
2166
|
+
* IP白名单配置
|
|
2167
|
+
*/
|
|
2168
|
+
IpWhiteConfig?: IpConfig;
|
|
2169
|
+
/**
|
|
2170
|
+
* IP黑名单开启状态
|
|
2171
|
+
*/
|
|
2172
|
+
IpBlackStatus?: boolean;
|
|
2173
|
+
/**
|
|
2174
|
+
* IP黑名单配置
|
|
2175
|
+
*/
|
|
2176
|
+
IpBlackConfig?: IpConfig;
|
|
2177
|
+
/**
|
|
2178
|
+
* 目标Host类型 0 默认 1 vpc
|
|
2179
|
+
*/
|
|
2180
|
+
TargetHostType?: number;
|
|
2181
|
+
/**
|
|
2182
|
+
* 自定义host
|
|
2183
|
+
*/
|
|
2184
|
+
CustomHttpHost?: string;
|
|
2185
|
+
/**
|
|
2186
|
+
* Http 请求host类型:useRequestHost 保持源请求;host targetHost 修正为源站host; customHost 自定义host
|
|
2187
|
+
*/
|
|
2188
|
+
HttpHostType?: string;
|
|
2189
|
+
/**
|
|
2190
|
+
* 请求的超时时间
|
|
2191
|
+
*/
|
|
2192
|
+
Timeout?: number;
|
|
2193
|
+
/**
|
|
2194
|
+
* 安全规则集
|
|
2195
|
+
*/
|
|
2196
|
+
McpSecurityRules?: Array<McpSecurityRule>;
|
|
2197
|
+
/**
|
|
2198
|
+
* 工具集配置(openapi可能会用到)
|
|
2199
|
+
*/
|
|
2200
|
+
ToolConfigs?: Array<ToolConfigDTO>;
|
|
2201
|
+
/**
|
|
2202
|
+
* 封装的API分组ID
|
|
2203
|
+
*/
|
|
2204
|
+
WrapPaasID?: string;
|
|
2205
|
+
/**
|
|
2206
|
+
* 插件配置
|
|
2207
|
+
*/
|
|
2208
|
+
PluginConfigs?: Array<PluginConfigDTO>;
|
|
2209
|
+
}
|
|
2210
|
+
/**
|
|
2211
|
+
* DescribeModel返回参数结构体
|
|
2212
|
+
*/
|
|
2213
|
+
export interface DescribeModelResponse {
|
|
2214
|
+
/**
|
|
2215
|
+
* 结果集
|
|
2216
|
+
*/
|
|
2217
|
+
Data?: DescribeModelResponseVO;
|
|
2218
|
+
/**
|
|
2219
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2220
|
+
*/
|
|
2221
|
+
RequestId?: string;
|
|
2222
|
+
}
|
|
2223
|
+
/**
|
|
2224
|
+
* DescribeAgentAppMcpServers请求参数结构体
|
|
2225
|
+
*/
|
|
2226
|
+
export interface DescribeAgentAppMcpServersRequest {
|
|
2227
|
+
/**
|
|
2228
|
+
* 分页大小
|
|
2229
|
+
*/
|
|
2230
|
+
Limit: number;
|
|
2231
|
+
/**
|
|
2232
|
+
* 分页偏移量
|
|
2233
|
+
*/
|
|
2234
|
+
Offset?: number;
|
|
2235
|
+
/**
|
|
2236
|
+
* 实例ID
|
|
2237
|
+
*/
|
|
2238
|
+
InstanceID?: string;
|
|
2239
|
+
/**
|
|
2240
|
+
* 应用ID
|
|
2241
|
+
*/
|
|
2242
|
+
AgentAppIDs?: Array<string>;
|
|
2243
|
+
/**
|
|
2244
|
+
* 关联的mcp
|
|
2245
|
+
*/
|
|
2246
|
+
McpServerIDs?: Array<string>;
|
|
2247
|
+
/**
|
|
2248
|
+
* 凭据ID
|
|
2249
|
+
*/
|
|
2250
|
+
AgentCredentialIDs?: Array<string>;
|
|
2251
|
+
/**
|
|
2252
|
+
* 关键词
|
|
2253
|
+
*/
|
|
2254
|
+
Keyword?: string;
|
|
2255
|
+
}
|
|
2256
|
+
/**
|
|
2257
|
+
* 关联的mcp服务配置
|
|
2258
|
+
*/
|
|
2259
|
+
export interface AgentAppMcpServerDTO {
|
|
2260
|
+
/**
|
|
2261
|
+
* mcp server id
|
|
2262
|
+
*/
|
|
2263
|
+
ID: string;
|
|
2264
|
+
/**
|
|
2265
|
+
* 是否需要鉴权
|
|
2266
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2267
|
+
*/
|
|
2268
|
+
NeedAuth?: boolean;
|
|
2269
|
+
/**
|
|
2270
|
+
* 凭据代填的ID
|
|
2271
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2272
|
+
*/
|
|
2273
|
+
AgentCredentialID?: string;
|
|
2274
|
+
/**
|
|
2275
|
+
* 应用为OAuth2认证时,sse模式请求mcp时的资源标识
|
|
2276
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2277
|
+
*/
|
|
2278
|
+
SSEResourceIdentifier?: string;
|
|
2279
|
+
/**
|
|
2280
|
+
* 应用为OAuth2认证时,streamable模式请求mcp时的资源标识
|
|
2281
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2282
|
+
*/
|
|
2283
|
+
StreamableResourceIdentifier?: string;
|
|
2284
|
+
}
|
|
2285
|
+
/**
|
|
2286
|
+
* 模板模型
|
|
2287
|
+
*/
|
|
2288
|
+
export interface TargetModelDTO {
|
|
2289
|
+
/**
|
|
2290
|
+
* 模型ID
|
|
2291
|
+
*/
|
|
2292
|
+
ID?: string;
|
|
2293
|
+
/**
|
|
2294
|
+
* 匹配名称
|
|
2295
|
+
*/
|
|
2296
|
+
Name?: string;
|
|
2297
|
+
/**
|
|
2298
|
+
* 权重
|
|
2299
|
+
*/
|
|
2300
|
+
Rank?: number;
|
|
2301
|
+
}
|
|
2302
|
+
/**
|
|
2303
|
+
* Token限流配置
|
|
2304
|
+
*/
|
|
2305
|
+
export interface TokenLimitConfigDTO {
|
|
2306
|
+
/**
|
|
2307
|
+
* 单次请求上限,k
|
|
2308
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2309
|
+
*/
|
|
2310
|
+
LimitRequestBody?: number;
|
|
2311
|
+
/**
|
|
2312
|
+
* 累次token总量消耗上限
|
|
2313
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2314
|
+
*/
|
|
2315
|
+
LimitWindows?: Array<LimitWindowsDTO>;
|
|
2316
|
+
}
|
|
2317
|
+
/**
|
|
2318
|
+
* 查询App mcpServer绑定列表响应
|
|
2319
|
+
*/
|
|
2320
|
+
export interface DescribeAgentAppMcpServersResp {
|
|
2321
|
+
/**
|
|
2322
|
+
* 条目总数
|
|
2323
|
+
*/
|
|
2324
|
+
Total?: number;
|
|
2325
|
+
/**
|
|
2326
|
+
* 具体条目
|
|
2327
|
+
*/
|
|
2328
|
+
Items?: Array<AgentAppMcpServerVO>;
|
|
2329
|
+
}
|
|
2330
|
+
/**
|
|
2331
|
+
* 查询模型服务详情的响应
|
|
2332
|
+
*/
|
|
2333
|
+
export interface DescribeModelServiceResponseVO {
|
|
2334
|
+
/**
|
|
2335
|
+
* 腾讯云AppID
|
|
2336
|
+
*/
|
|
2337
|
+
AppID?: number;
|
|
2338
|
+
/**
|
|
2339
|
+
* 腾讯云Uin
|
|
2340
|
+
*/
|
|
2341
|
+
Uin?: string;
|
|
2342
|
+
/**
|
|
2343
|
+
* 实例ID
|
|
2344
|
+
*/
|
|
2345
|
+
InstanceID?: string;
|
|
2346
|
+
/**
|
|
2347
|
+
* 模型ID
|
|
2348
|
+
*/
|
|
2349
|
+
ID?: string;
|
|
2350
|
+
/**
|
|
2351
|
+
* 模型名称
|
|
2352
|
+
*/
|
|
2353
|
+
Name?: string;
|
|
2354
|
+
/**
|
|
2355
|
+
* 描述
|
|
2356
|
+
*/
|
|
2357
|
+
Description?: string;
|
|
2358
|
+
/**
|
|
2359
|
+
* 访问路径
|
|
2360
|
+
*/
|
|
2361
|
+
PubPath?: string;
|
|
2362
|
+
/**
|
|
2363
|
+
* 路径匹配方式:absolute,prefix,regex
|
|
2364
|
+
*/
|
|
2365
|
+
PathMatchType?: string;
|
|
2366
|
+
/**
|
|
2367
|
+
* 目标模型列表
|
|
2368
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2369
|
+
*/
|
|
2370
|
+
TargetModels?: Array<TargetModelDTO>;
|
|
2371
|
+
/**
|
|
2372
|
+
* 模板模型的名称列表
|
|
2373
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2374
|
+
*/
|
|
2375
|
+
ModelNames?: Array<string>;
|
|
2376
|
+
/**
|
|
2377
|
+
* 是否开启限流
|
|
2378
|
+
*/
|
|
2379
|
+
InvokeLimitConfigStatus?: boolean;
|
|
2380
|
+
/**
|
|
2381
|
+
* 限流配置
|
|
2382
|
+
*/
|
|
2383
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
2384
|
+
/**
|
|
2385
|
+
* 创建时间
|
|
2386
|
+
*/
|
|
2387
|
+
CreateTime?: string;
|
|
2388
|
+
/**
|
|
2389
|
+
* 最后修改时间
|
|
2390
|
+
*/
|
|
2391
|
+
LastUpdateTime?: string;
|
|
2392
|
+
/**
|
|
2393
|
+
* 是否开启token控制
|
|
2394
|
+
*/
|
|
2395
|
+
TokenLimitStatus?: boolean;
|
|
2396
|
+
/**
|
|
2397
|
+
* token控制
|
|
2398
|
+
*/
|
|
2399
|
+
TokenLimitConfig?: TokenLimitConfigDTO;
|
|
2400
|
+
/**
|
|
2401
|
+
* 是否开启tms配置
|
|
2402
|
+
*/
|
|
2403
|
+
TmsStatus?: boolean;
|
|
2404
|
+
/**
|
|
2405
|
+
* tms配置
|
|
2406
|
+
*/
|
|
2407
|
+
TmsConfig?: TmsConfigDTO;
|
|
2408
|
+
/**
|
|
2409
|
+
* 是否开启IP白名单
|
|
2410
|
+
*/
|
|
2411
|
+
IpWhiteStatus?: boolean;
|
|
2412
|
+
/**
|
|
2413
|
+
* IP白名单列表
|
|
2414
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2415
|
+
*/
|
|
2416
|
+
IpWhiteList?: Array<string>;
|
|
2417
|
+
/**
|
|
2418
|
+
* 是否开启IP黑名单
|
|
2419
|
+
*/
|
|
2420
|
+
IpBlackStatus?: boolean;
|
|
2421
|
+
/**
|
|
2422
|
+
* IP黑名单列表
|
|
2423
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2424
|
+
*/
|
|
2425
|
+
IpBlackList?: Array<string>;
|
|
2426
|
+
/**
|
|
2427
|
+
* 插件配置
|
|
2428
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2429
|
+
*/
|
|
2430
|
+
PluginConfigs?: Array<PluginConfigDTO>;
|
|
2431
|
+
/**
|
|
2432
|
+
* 超时配置,单位秒
|
|
2433
|
+
*/
|
|
2434
|
+
Timeout?: number;
|
|
2435
|
+
/**
|
|
2436
|
+
* 状态:normal,disabled
|
|
2437
|
+
*/
|
|
2438
|
+
Status?: string;
|
|
2439
|
+
/**
|
|
2440
|
+
* 关联应用数
|
|
2441
|
+
*/
|
|
2442
|
+
RelateAgentAppNum?: number;
|
|
2443
|
+
/**
|
|
2444
|
+
* 请求路径
|
|
2445
|
+
*/
|
|
2446
|
+
Url?: string;
|
|
2447
|
+
}
|
|
2448
|
+
/**
|
|
2449
|
+
* DescribeModelsSort
|
|
2450
|
+
*/
|
|
2451
|
+
export interface DescribeModelsSort {
|
|
2452
|
+
/**
|
|
2453
|
+
* 创建时间
|
|
2454
|
+
*/
|
|
2455
|
+
CreateTime?: number;
|
|
2456
|
+
/**
|
|
2457
|
+
* 最后修改时间
|
|
2458
|
+
*/
|
|
2459
|
+
LastUpdateTime?: number;
|
|
2460
|
+
/**
|
|
2461
|
+
* 模型名称
|
|
2462
|
+
*/
|
|
2463
|
+
Name?: number;
|
|
2464
|
+
}
|
|
2465
|
+
/**
|
|
2466
|
+
* PluginConfigDTO
|
|
2467
|
+
*/
|
|
2468
|
+
export interface PluginConfigDTO {
|
|
2469
|
+
/**
|
|
2470
|
+
* 状态
|
|
2471
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2472
|
+
*/
|
|
2473
|
+
Status?: boolean;
|
|
2474
|
+
/**
|
|
2475
|
+
* 名称
|
|
2476
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2477
|
+
*/
|
|
2478
|
+
PluginName?: string;
|
|
2479
|
+
/**
|
|
2480
|
+
* 描述
|
|
2481
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2482
|
+
*/
|
|
2483
|
+
Description?: string;
|
|
2484
|
+
/**
|
|
2485
|
+
* ID
|
|
2486
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2487
|
+
*/
|
|
2488
|
+
PluginID?: string;
|
|
2489
|
+
/**
|
|
2490
|
+
* 优先级
|
|
2491
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2492
|
+
*/
|
|
2493
|
+
Level?: number;
|
|
2494
|
+
/**
|
|
2495
|
+
* 表单配置
|
|
2496
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2497
|
+
*/
|
|
2498
|
+
PluginFormValues?: Array<PluginFormValueDTO>;
|
|
2499
|
+
}
|
|
2500
|
+
/**
|
|
2501
|
+
* PluginFormValueDTO
|
|
2502
|
+
*/
|
|
2503
|
+
export interface PluginFormValueDTO {
|
|
2504
|
+
/**
|
|
2505
|
+
* 字段
|
|
2506
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2507
|
+
*/
|
|
2508
|
+
Field?: string;
|
|
2509
|
+
/**
|
|
2510
|
+
* 值
|
|
2511
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2512
|
+
*/
|
|
2513
|
+
Value?: string;
|
|
2514
|
+
}
|
|
2515
|
+
/**
|
|
2516
|
+
* DescribeAgentApp请求参数结构体
|
|
2517
|
+
*/
|
|
2518
|
+
export interface DescribeAgentAppRequest {
|
|
2519
|
+
/**
|
|
2520
|
+
* 实例ID
|
|
2521
|
+
*/
|
|
2522
|
+
InstanceID: string;
|
|
2523
|
+
/**
|
|
2524
|
+
* app id
|
|
2525
|
+
*/
|
|
2526
|
+
ID: string;
|
|
2527
|
+
}
|
|
2528
|
+
/**
|
|
2529
|
+
* DeleteAgentApp返回参数结构体
|
|
2530
|
+
*/
|
|
2531
|
+
export interface DeleteAgentAppResponse {
|
|
2532
|
+
/**
|
|
2533
|
+
* app id
|
|
2534
|
+
*/
|
|
2535
|
+
Data?: ResultIDVO;
|
|
2536
|
+
/**
|
|
2537
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2538
|
+
*/
|
|
2539
|
+
RequestId?: string;
|
|
2540
|
+
}
|
|
2541
|
+
/**
|
|
2542
|
+
* CreateAgentCredential返回参数结构体
|
|
2543
|
+
*/
|
|
2544
|
+
export interface CreateAgentCredentialResponse {
|
|
2545
|
+
/**
|
|
2546
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2547
|
+
*/
|
|
2548
|
+
RequestId?: string;
|
|
2549
|
+
}
|
|
2550
|
+
/**
|
|
2551
|
+
* DescribeAgentAppModelServices返回参数结构体
|
|
2552
|
+
*/
|
|
2553
|
+
export interface DescribeAgentAppModelServicesResponse {
|
|
2554
|
+
/**
|
|
2555
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2556
|
+
*/
|
|
2557
|
+
RequestId?: string;
|
|
2558
|
+
}
|
|
2559
|
+
/**
|
|
2560
|
+
* ModifyMcpServer返回参数结构体
|
|
2561
|
+
*/
|
|
2562
|
+
export interface ModifyMcpServerResponse {
|
|
2563
|
+
/**
|
|
2564
|
+
* mcp server ID
|
|
2565
|
+
*/
|
|
2566
|
+
Data?: ResultIDVO;
|
|
2567
|
+
/**
|
|
2568
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2569
|
+
*/
|
|
2570
|
+
RequestId?: string;
|
|
2571
|
+
}
|
|
2572
|
+
/**
|
|
2573
|
+
* DeleteModel请求参数结构体
|
|
2574
|
+
*/
|
|
2575
|
+
export interface DeleteModelRequest {
|
|
2576
|
+
/**
|
|
2577
|
+
* 实例
|
|
2578
|
+
*/
|
|
2579
|
+
InstanceID: string;
|
|
2580
|
+
/**
|
|
2581
|
+
* 模型ID数组
|
|
2582
|
+
*/
|
|
2583
|
+
IDs: Array<string>;
|
|
2584
|
+
}
|
|
2585
|
+
/**
|
|
2586
|
+
* DescribeModels返回参数结构体
|
|
2587
|
+
*/
|
|
2588
|
+
export interface DescribeModelsResponse {
|
|
2589
|
+
/**
|
|
2590
|
+
* 结果集
|
|
2591
|
+
*/
|
|
2592
|
+
Data?: DescribeModelsResponseVO;
|
|
2593
|
+
/**
|
|
2594
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2595
|
+
*/
|
|
2596
|
+
RequestId?: string;
|
|
2597
|
+
}
|
|
2598
|
+
/**
|
|
2599
|
+
* DescribeModelServices返回参数结构体
|
|
2600
|
+
*/
|
|
2601
|
+
export interface DescribeModelServicesResponse {
|
|
2602
|
+
/**
|
|
2603
|
+
* 结果集
|
|
2604
|
+
*/
|
|
2605
|
+
Data?: DescribeModelServicesResponseVO;
|
|
2606
|
+
/**
|
|
2607
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2608
|
+
*/
|
|
2609
|
+
RequestId?: string;
|
|
2610
|
+
}
|
|
2611
|
+
/**
|
|
2612
|
+
* 出入参说明
|
|
2613
|
+
*/
|
|
2614
|
+
export interface McpInputOutSchema {
|
|
2615
|
+
/**
|
|
2616
|
+
* 类型
|
|
2617
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2618
|
+
*/
|
|
2619
|
+
Type?: string;
|
|
2620
|
+
/**
|
|
2621
|
+
* 属性
|
|
2622
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2623
|
+
*/
|
|
2624
|
+
Properties?: string;
|
|
2625
|
+
/**
|
|
2626
|
+
* 必填字段
|
|
2627
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2628
|
+
*/
|
|
2629
|
+
Required?: Array<string>;
|
|
2630
|
+
/**
|
|
2631
|
+
* 描述
|
|
2632
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2633
|
+
*/
|
|
2634
|
+
Description?: string;
|
|
2635
|
+
}
|