tencentcloud-sdk-nodejs 4.1.241 → 4.1.242
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/v20240801/apis_client.js +28 -4
- package/es/services/dbbrain/v20210527/dbbrain_client.js +12 -6
- package/es/services/ocr/v20181119/ocr_client.js +0 -6
- 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/apigateway/v20180808/apigateway_client.d.ts +3 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_client.js +3 -1
- package/tencentcloud/services/apis/v20240801/apis_client.d.ts +37 -5
- package/tencentcloud/services/apis/v20240801/apis_client.js +54 -6
- package/tencentcloud/services/apis/v20240801/apis_models.d.ts +1143 -95
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +40 -20
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +14 -12
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +1 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +122 -110
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.d.ts +17 -9
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.js +24 -12
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +68 -4
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +2 -2
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +2 -2
- package/tencentcloud/services/hai/v20230812/hai_models.d.ts +9 -5
- package/tencentcloud/services/iai/v20180301/iai_models.d.ts +10 -7
- package/tencentcloud/services/iai/v20200303/iai_models.d.ts +10 -9
- package/tencentcloud/services/ioa/v20220601/ioa_client.d.ts +1 -1
- package/tencentcloud/services/ioa/v20220601/ioa_client.js +1 -1
- package/tencentcloud/services/ioa/v20220601/ioa_models.d.ts +5 -5
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +1 -13
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +0 -16
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +60 -174
- package/tencentcloud/services/tdmysql/v20211122/tdmysql_models.d.ts +0 -4
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +4 -4
|
@@ -111,6 +111,19 @@ export interface CreateModelServiceRequest {
|
|
|
111
111
|
*/
|
|
112
112
|
ModelProtocol?: string;
|
|
113
113
|
}
|
|
114
|
+
/**
|
|
115
|
+
* FieldValue结构体
|
|
116
|
+
*/
|
|
117
|
+
export interface FieldValueDTO {
|
|
118
|
+
/**
|
|
119
|
+
* <p>属性</p>
|
|
120
|
+
*/
|
|
121
|
+
Field?: string;
|
|
122
|
+
/**
|
|
123
|
+
* <p>值</p>
|
|
124
|
+
*/
|
|
125
|
+
Value?: string;
|
|
126
|
+
}
|
|
114
127
|
/**
|
|
115
128
|
* secretKey的出参
|
|
116
129
|
*/
|
|
@@ -226,6 +239,58 @@ export interface InvokeLimitConfigDTO {
|
|
|
226
239
|
*/
|
|
227
240
|
Timeout?: number;
|
|
228
241
|
}
|
|
242
|
+
/**
|
|
243
|
+
* WizardConfig 向导模式配置
|
|
244
|
+
*/
|
|
245
|
+
export interface WizardConfig {
|
|
246
|
+
/**
|
|
247
|
+
* <p>表名</p>
|
|
248
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
249
|
+
*/
|
|
250
|
+
DbTable?: string;
|
|
251
|
+
/**
|
|
252
|
+
* <p>是否分页</p>
|
|
253
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
254
|
+
*/
|
|
255
|
+
DbEnablePaging?: boolean;
|
|
256
|
+
/**
|
|
257
|
+
* <p>请求参数</p>
|
|
258
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
259
|
+
*/
|
|
260
|
+
DbReqParams?: Array<ServiceDatabaseReqParam>;
|
|
261
|
+
/**
|
|
262
|
+
* <p>响应参数</p>
|
|
263
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
264
|
+
*/
|
|
265
|
+
DbRespParams?: Array<ServiceDatabaseRespParam>;
|
|
266
|
+
/**
|
|
267
|
+
* <p>排序参数</p>
|
|
268
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
269
|
+
*/
|
|
270
|
+
DbOrdParams?: Array<ServiceDatabaseOrderParam>;
|
|
271
|
+
/**
|
|
272
|
+
* <p>是否开启出参映射</p>
|
|
273
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
274
|
+
*/
|
|
275
|
+
DbEnableMappingResp?: boolean;
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* DeleteAgentAppServices请求参数结构体
|
|
279
|
+
*/
|
|
280
|
+
export interface DeleteAgentAppServicesRequest {
|
|
281
|
+
/**
|
|
282
|
+
* <p>实例ID</p>
|
|
283
|
+
*/
|
|
284
|
+
InstanceID: string;
|
|
285
|
+
/**
|
|
286
|
+
* <p>应用ID</p>
|
|
287
|
+
*/
|
|
288
|
+
ID: string;
|
|
289
|
+
/**
|
|
290
|
+
* <p>服务IDs</p>
|
|
291
|
+
*/
|
|
292
|
+
ServiceIDs: Array<string>;
|
|
293
|
+
}
|
|
229
294
|
/**
|
|
230
295
|
* 工具级别配置
|
|
231
296
|
*/
|
|
@@ -300,6 +365,52 @@ export interface DescribeModelsResponseVO {
|
|
|
300
365
|
*/
|
|
301
366
|
Items?: Array<DescribeModelResponseVO>;
|
|
302
367
|
}
|
|
368
|
+
/**
|
|
369
|
+
* SourceTypeConfigDTO
|
|
370
|
+
*/
|
|
371
|
+
export interface SourceTypeConfigDTO {
|
|
372
|
+
/**
|
|
373
|
+
* json xml urlencoded amf0 amf3 hessian1 hessian2
|
|
374
|
+
|
|
375
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
376
|
+
*/
|
|
377
|
+
ReqSourceType?: string;
|
|
378
|
+
/**
|
|
379
|
+
* json xml urlencoded amf0 amf3 hessian1 hessian2
|
|
380
|
+
|
|
381
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
382
|
+
*/
|
|
383
|
+
ReqTargetType?: string;
|
|
384
|
+
/**
|
|
385
|
+
* json xml urlencoded amf0 amf3 hessian1 hessian2
|
|
386
|
+
|
|
387
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
388
|
+
*/
|
|
389
|
+
ResSourceType?: string;
|
|
390
|
+
/**
|
|
391
|
+
* json xml urlencoded amf0 amf3 hessian1 hessian2
|
|
392
|
+
|
|
393
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
394
|
+
*/
|
|
395
|
+
ResTargetType?: string;
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* CreateAgentAppServices请求参数结构体
|
|
399
|
+
*/
|
|
400
|
+
export interface CreateAgentAppServicesRequest {
|
|
401
|
+
/**
|
|
402
|
+
* <p>实例ID</p>
|
|
403
|
+
*/
|
|
404
|
+
InstanceID: string;
|
|
405
|
+
/**
|
|
406
|
+
* <p>应用ID</p>
|
|
407
|
+
*/
|
|
408
|
+
ID: string;
|
|
409
|
+
/**
|
|
410
|
+
* <p>服务详情</p>
|
|
411
|
+
*/
|
|
412
|
+
Services: Array<AgentAppServiceDTO>;
|
|
413
|
+
}
|
|
303
414
|
/**
|
|
304
415
|
* BindMcpSecurityRuleDTO,替换之前的McpSecurityRule
|
|
305
416
|
*/
|
|
@@ -606,6 +717,19 @@ export interface McpToolAnnotation {
|
|
|
606
717
|
*/
|
|
607
718
|
OpenWorldHint?: boolean;
|
|
608
719
|
}
|
|
720
|
+
/**
|
|
721
|
+
* DeleteService请求参数结构体
|
|
722
|
+
*/
|
|
723
|
+
export interface DeleteServiceRequest {
|
|
724
|
+
/**
|
|
725
|
+
* 实例ID
|
|
726
|
+
*/
|
|
727
|
+
InstanceID?: string;
|
|
728
|
+
/**
|
|
729
|
+
* 业务ID
|
|
730
|
+
*/
|
|
731
|
+
ID?: string;
|
|
732
|
+
}
|
|
609
733
|
/**
|
|
610
734
|
* 开始结束时间结构体
|
|
611
735
|
*/
|
|
@@ -777,6 +901,15 @@ export interface ModifyModelServiceRequest {
|
|
|
777
901
|
*/
|
|
778
902
|
ModelProtocol?: string;
|
|
779
903
|
}
|
|
904
|
+
/**
|
|
905
|
+
* DescribeService返回参数结构体
|
|
906
|
+
*/
|
|
907
|
+
export interface DescribeServiceResponse {
|
|
908
|
+
/**
|
|
909
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
910
|
+
*/
|
|
911
|
+
RequestId?: string;
|
|
912
|
+
}
|
|
780
913
|
/**
|
|
781
914
|
* ModifyModel返回参数结构体
|
|
782
915
|
*/
|
|
@@ -790,6 +923,49 @@ export interface ModifyModelResponse {
|
|
|
790
923
|
*/
|
|
791
924
|
RequestId?: string;
|
|
792
925
|
}
|
|
926
|
+
/**
|
|
927
|
+
* 向导模式请求参数
|
|
928
|
+
*/
|
|
929
|
+
export interface ServiceDatabaseReqParam {
|
|
930
|
+
/**
|
|
931
|
+
* <p>表字段名</p>
|
|
932
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
933
|
+
*/
|
|
934
|
+
FieldName?: string;
|
|
935
|
+
/**
|
|
936
|
+
* <p>操作符</p>
|
|
937
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
938
|
+
*/
|
|
939
|
+
Operator?: string;
|
|
940
|
+
/**
|
|
941
|
+
* <p>参数名/常量</p>
|
|
942
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
943
|
+
*/
|
|
944
|
+
Val?: string;
|
|
945
|
+
/**
|
|
946
|
+
* <p>参数类型</p>
|
|
947
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
948
|
+
*/
|
|
949
|
+
ValType?: string;
|
|
950
|
+
/**
|
|
951
|
+
* <p>内部字段</p>
|
|
952
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
953
|
+
*/
|
|
954
|
+
InternalField?: boolean;
|
|
955
|
+
}
|
|
956
|
+
/**
|
|
957
|
+
* CreateAgentAppServices返回参数结构体
|
|
958
|
+
*/
|
|
959
|
+
export interface CreateAgentAppServicesResponse {
|
|
960
|
+
/**
|
|
961
|
+
* <p>app id</p>
|
|
962
|
+
*/
|
|
963
|
+
Data?: ResultIDVO;
|
|
964
|
+
/**
|
|
965
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
966
|
+
*/
|
|
967
|
+
RequestId?: string;
|
|
968
|
+
}
|
|
793
969
|
/**
|
|
794
970
|
* CreateAgentAppModelServices请求参数结构体
|
|
795
971
|
*/
|
|
@@ -834,14 +1010,13 @@ export interface DeleteMcpServerResponse {
|
|
|
834
1010
|
RequestId?: string;
|
|
835
1011
|
}
|
|
836
1012
|
/**
|
|
837
|
-
*
|
|
1013
|
+
* ModifyService返回参数结构体
|
|
838
1014
|
*/
|
|
839
|
-
export interface
|
|
1015
|
+
export interface ModifyServiceResponse {
|
|
840
1016
|
/**
|
|
841
|
-
*
|
|
842
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1017
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
843
1018
|
*/
|
|
844
|
-
|
|
1019
|
+
RequestId?: string;
|
|
845
1020
|
}
|
|
846
1021
|
/**
|
|
847
1022
|
* DescribeAgentCredentials请求参数结构体
|
|
@@ -881,6 +1056,26 @@ export interface CreateMcpServerResponse {
|
|
|
881
1056
|
*/
|
|
882
1057
|
RequestId?: string;
|
|
883
1058
|
}
|
|
1059
|
+
/**
|
|
1060
|
+
* 匹配条件请求参数
|
|
1061
|
+
*/
|
|
1062
|
+
export interface SimpleCondition {
|
|
1063
|
+
/**
|
|
1064
|
+
* <p>字段名</p>
|
|
1065
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1066
|
+
*/
|
|
1067
|
+
Key?: string;
|
|
1068
|
+
/**
|
|
1069
|
+
* <p>匹配方式: eq 等于;ne 不等于;regex 正则;</p>
|
|
1070
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1071
|
+
*/
|
|
1072
|
+
Condition?: string;
|
|
1073
|
+
/**
|
|
1074
|
+
* <p>字段值 或正则表达式</p>
|
|
1075
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1076
|
+
*/
|
|
1077
|
+
Value?: string;
|
|
1078
|
+
}
|
|
884
1079
|
/**
|
|
885
1080
|
* DescribeAgentApps请求参数结构体
|
|
886
1081
|
*/
|
|
@@ -971,49 +1166,19 @@ export interface ResultIDVO {
|
|
|
971
1166
|
ID?: string;
|
|
972
1167
|
}
|
|
973
1168
|
/**
|
|
974
|
-
*
|
|
1169
|
+
* 限流窗口配置
|
|
975
1170
|
*/
|
|
976
|
-
export interface
|
|
977
|
-
/**
|
|
978
|
-
* <p>实例</p>
|
|
979
|
-
*/
|
|
980
|
-
InstanceID: string;
|
|
981
|
-
/**
|
|
982
|
-
* <p>模型名称</p>
|
|
983
|
-
*/
|
|
984
|
-
Name: string;
|
|
985
|
-
/**
|
|
986
|
-
* <p>协议类型:http/https</p>
|
|
987
|
-
*/
|
|
988
|
-
HttpProtocolType: string;
|
|
989
|
-
/**
|
|
990
|
-
* <p>目标路径</p>
|
|
991
|
-
*/
|
|
992
|
-
TargetPath: string;
|
|
993
|
-
/**
|
|
994
|
-
* <p>目标服务器</p>
|
|
995
|
-
*/
|
|
996
|
-
TargetHosts: Array<TargetHostDTO>;
|
|
997
|
-
/**
|
|
998
|
-
* <p>凭据ID</p>
|
|
999
|
-
*/
|
|
1000
|
-
CredentialID?: string;
|
|
1001
|
-
/**
|
|
1002
|
-
* <p>https时,是否检查证书合法</p>
|
|
1003
|
-
*/
|
|
1004
|
-
CheckTargetCertsError?: boolean;
|
|
1005
|
-
/**
|
|
1006
|
-
* <p>http协议版本:1.1/2.0</p>
|
|
1007
|
-
*/
|
|
1008
|
-
HttpProtocolVersion?: string;
|
|
1171
|
+
export interface LimitWindowsDTO {
|
|
1009
1172
|
/**
|
|
1010
|
-
*
|
|
1173
|
+
* 时间窗口,分钟
|
|
1174
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1011
1175
|
*/
|
|
1012
|
-
|
|
1176
|
+
Interval?: number;
|
|
1013
1177
|
/**
|
|
1014
|
-
*
|
|
1178
|
+
* 累计上限,k
|
|
1179
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1015
1180
|
*/
|
|
1016
|
-
|
|
1181
|
+
Limit?: number;
|
|
1017
1182
|
}
|
|
1018
1183
|
/**
|
|
1019
1184
|
* DescribeModel请求参数结构体
|
|
@@ -1173,6 +1338,15 @@ export interface DeleteAgentAppModelServicesResponse {
|
|
|
1173
1338
|
*/
|
|
1174
1339
|
RequestId?: string;
|
|
1175
1340
|
}
|
|
1341
|
+
/**
|
|
1342
|
+
* CreateService返回参数结构体
|
|
1343
|
+
*/
|
|
1344
|
+
export interface CreateServiceResponse {
|
|
1345
|
+
/**
|
|
1346
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1347
|
+
*/
|
|
1348
|
+
RequestId?: string;
|
|
1349
|
+
}
|
|
1176
1350
|
/**
|
|
1177
1351
|
* CreateModel返回参数结构体
|
|
1178
1352
|
*/
|
|
@@ -1286,6 +1460,10 @@ export interface DescribeAgentAppsResponse {
|
|
|
1286
1460
|
*/
|
|
1287
1461
|
RequestId?: string;
|
|
1288
1462
|
}
|
|
1463
|
+
/**
|
|
1464
|
+
* CreateService请求参数结构体
|
|
1465
|
+
*/
|
|
1466
|
+
export type CreateServiceRequest = null;
|
|
1289
1467
|
/**
|
|
1290
1468
|
* ModifyAgentApp返回参数结构体
|
|
1291
1469
|
*/
|
|
@@ -1299,6 +1477,19 @@ export interface ModifyAgentAppResponse {
|
|
|
1299
1477
|
*/
|
|
1300
1478
|
RequestId?: string;
|
|
1301
1479
|
}
|
|
1480
|
+
/**
|
|
1481
|
+
* DescribeService请求参数结构体
|
|
1482
|
+
*/
|
|
1483
|
+
export interface DescribeServiceRequest {
|
|
1484
|
+
/**
|
|
1485
|
+
* 实例ID
|
|
1486
|
+
*/
|
|
1487
|
+
InstanceID?: string;
|
|
1488
|
+
/**
|
|
1489
|
+
* 业务ID
|
|
1490
|
+
*/
|
|
1491
|
+
ID?: string;
|
|
1492
|
+
}
|
|
1302
1493
|
/**
|
|
1303
1494
|
* DescribeModelService返回参数结构体
|
|
1304
1495
|
*/
|
|
@@ -1329,6 +1520,41 @@ export interface AgentCredentialContentDTO {
|
|
|
1329
1520
|
*/
|
|
1330
1521
|
Headers?: Array<AgentCredentialContentHeaderDTO>;
|
|
1331
1522
|
}
|
|
1523
|
+
/**
|
|
1524
|
+
* 后端服务组DTO
|
|
1525
|
+
*/
|
|
1526
|
+
export interface TargetServerGroupDTO {
|
|
1527
|
+
/**
|
|
1528
|
+
* <p>后端服务组ID</p>
|
|
1529
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1530
|
+
*/
|
|
1531
|
+
ID?: string;
|
|
1532
|
+
/**
|
|
1533
|
+
* <p>名称</p>
|
|
1534
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1535
|
+
*/
|
|
1536
|
+
Name?: string;
|
|
1537
|
+
/**
|
|
1538
|
+
* <p>目标服务器列表</p>
|
|
1539
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1540
|
+
*/
|
|
1541
|
+
TargetHosts?: Array<TargetHostDTO>;
|
|
1542
|
+
/**
|
|
1543
|
+
* <p>目标Host类型 0 默认 1 vpc</p>
|
|
1544
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1545
|
+
*/
|
|
1546
|
+
TargetHostType?: number;
|
|
1547
|
+
/**
|
|
1548
|
+
* <p>关联的服务数量</p>
|
|
1549
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1550
|
+
*/
|
|
1551
|
+
ServiceCount?: number;
|
|
1552
|
+
/**
|
|
1553
|
+
* <p>创建时间</p>
|
|
1554
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1555
|
+
*/
|
|
1556
|
+
CreateTime?: string;
|
|
1557
|
+
}
|
|
1332
1558
|
/**
|
|
1333
1559
|
* DescribeAgentCredential返回参数结构体
|
|
1334
1560
|
*/
|
|
@@ -1587,6 +1813,10 @@ export interface DeleteModelServiceRequest {
|
|
|
1587
1813
|
*/
|
|
1588
1814
|
ID: string;
|
|
1589
1815
|
}
|
|
1816
|
+
/**
|
|
1817
|
+
* DescribeServices请求参数结构体
|
|
1818
|
+
*/
|
|
1819
|
+
export type DescribeServicesRequest = null;
|
|
1590
1820
|
/**
|
|
1591
1821
|
* DeleteAgentApp请求参数结构体
|
|
1592
1822
|
*/
|
|
@@ -1601,24 +1831,174 @@ export interface DeleteAgentAppRequest {
|
|
|
1601
1831
|
ID: string;
|
|
1602
1832
|
}
|
|
1603
1833
|
/**
|
|
1604
|
-
*
|
|
1834
|
+
* ModifyService请求参数结构体
|
|
1605
1835
|
*/
|
|
1606
|
-
export interface
|
|
1836
|
+
export interface ModifyServiceRequest {
|
|
1607
1837
|
/**
|
|
1608
|
-
*
|
|
1838
|
+
* <p>实例</p>
|
|
1609
1839
|
*/
|
|
1610
|
-
InstanceID
|
|
1840
|
+
InstanceID?: string;
|
|
1611
1841
|
/**
|
|
1612
|
-
*
|
|
1842
|
+
* <p>名称</p>
|
|
1613
1843
|
*/
|
|
1614
|
-
|
|
1615
|
-
}
|
|
1616
|
-
/**
|
|
1617
|
-
* ModifyModel请求参数结构体
|
|
1618
|
-
*/
|
|
1619
|
-
export interface ModifyModelRequest {
|
|
1844
|
+
Name?: string;
|
|
1620
1845
|
/**
|
|
1621
|
-
* <p
|
|
1846
|
+
* <p>里约应用ID</p>
|
|
1847
|
+
* @deprecated
|
|
1848
|
+
*/
|
|
1849
|
+
PaasID?: string;
|
|
1850
|
+
/**
|
|
1851
|
+
* <p>描述</p>
|
|
1852
|
+
*/
|
|
1853
|
+
Description?: string;
|
|
1854
|
+
/**
|
|
1855
|
+
* <p>标签</p>
|
|
1856
|
+
*/
|
|
1857
|
+
LabelIDs?: Array<string>;
|
|
1858
|
+
/**
|
|
1859
|
+
* <p>目录</p>
|
|
1860
|
+
*/
|
|
1861
|
+
CategoryIDs?: Array<string>;
|
|
1862
|
+
/**
|
|
1863
|
+
* <p>鉴权方式</p>
|
|
1864
|
+
* @deprecated
|
|
1865
|
+
*/
|
|
1866
|
+
AuthType?: string;
|
|
1867
|
+
/**
|
|
1868
|
+
* <p>签名</p>
|
|
1869
|
+
* @deprecated
|
|
1870
|
+
*/
|
|
1871
|
+
SignType?: string;
|
|
1872
|
+
/**
|
|
1873
|
+
* <p>登录方式</p>
|
|
1874
|
+
* @deprecated
|
|
1875
|
+
*/
|
|
1876
|
+
LoginTypes?: Array<string>;
|
|
1877
|
+
/**
|
|
1878
|
+
* <p>负载方式</p>
|
|
1879
|
+
*/
|
|
1880
|
+
TargetSelect?: string;
|
|
1881
|
+
/**
|
|
1882
|
+
* <p>公开路径</p>
|
|
1883
|
+
*/
|
|
1884
|
+
PubPath?: string;
|
|
1885
|
+
/**
|
|
1886
|
+
* <p>请求方法</p>
|
|
1887
|
+
*/
|
|
1888
|
+
RequestMethod?: string;
|
|
1889
|
+
/**
|
|
1890
|
+
* <p>是否https</p>
|
|
1891
|
+
*/
|
|
1892
|
+
HttpProtocolType?: string;
|
|
1893
|
+
/**
|
|
1894
|
+
* <p>证书检查</p>
|
|
1895
|
+
*/
|
|
1896
|
+
CheckTargetCertsError?: boolean;
|
|
1897
|
+
/**
|
|
1898
|
+
* <p>http协议类型</p>
|
|
1899
|
+
*/
|
|
1900
|
+
HttpProtocolVersion?: string;
|
|
1901
|
+
/**
|
|
1902
|
+
* <p>版本号</p>
|
|
1903
|
+
*/
|
|
1904
|
+
Versions?: Array<VersionDTO>;
|
|
1905
|
+
/**
|
|
1906
|
+
* <p>目标路径</p>
|
|
1907
|
+
*/
|
|
1908
|
+
TargetPath?: string;
|
|
1909
|
+
/**
|
|
1910
|
+
* <p>入参</p>
|
|
1911
|
+
*/
|
|
1912
|
+
RequestParamsValidatorStatus?: boolean;
|
|
1913
|
+
/**
|
|
1914
|
+
* <p>入参</p>
|
|
1915
|
+
*/
|
|
1916
|
+
RequestParamsValidatorJsonInfoT?: string;
|
|
1917
|
+
/**
|
|
1918
|
+
* <p>出参</p>
|
|
1919
|
+
*/
|
|
1920
|
+
ResponseParamsValidatorStatus?: boolean;
|
|
1921
|
+
/**
|
|
1922
|
+
* <p>出参</p>
|
|
1923
|
+
*/
|
|
1924
|
+
ResponseParamsValidatorJsonInfoT?: string;
|
|
1925
|
+
/**
|
|
1926
|
+
* <p>流量控制</p>
|
|
1927
|
+
*/
|
|
1928
|
+
InvokeLimitConfigStatus?: boolean;
|
|
1929
|
+
/**
|
|
1930
|
+
* <p>流量控制</p>
|
|
1931
|
+
*/
|
|
1932
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
1933
|
+
/**
|
|
1934
|
+
* <p>健康检查</p>
|
|
1935
|
+
*/
|
|
1936
|
+
HealthCheckStatus?: boolean;
|
|
1937
|
+
/**
|
|
1938
|
+
* <p>健康检查</p>
|
|
1939
|
+
*/
|
|
1940
|
+
HealthCheckConfig?: HealthCheckConfigDTO;
|
|
1941
|
+
/**
|
|
1942
|
+
* <p>格式转换</p>
|
|
1943
|
+
*/
|
|
1944
|
+
SourceTypeStatus?: boolean;
|
|
1945
|
+
/**
|
|
1946
|
+
* <p>格式转换</p>
|
|
1947
|
+
*/
|
|
1948
|
+
SourceTypeConfig?: SourceTypeConfigDTO;
|
|
1949
|
+
/**
|
|
1950
|
+
* <p>IP白名单</p>
|
|
1951
|
+
*/
|
|
1952
|
+
IpWhiteStatus?: boolean;
|
|
1953
|
+
/**
|
|
1954
|
+
* <p>IP白名单</p>
|
|
1955
|
+
*/
|
|
1956
|
+
IpWhiteList?: Array<string>;
|
|
1957
|
+
/**
|
|
1958
|
+
* <p>IP黑名单</p>
|
|
1959
|
+
*/
|
|
1960
|
+
IpBlackStatus?: boolean;
|
|
1961
|
+
/**
|
|
1962
|
+
* <p>IP黑名单</p>
|
|
1963
|
+
*/
|
|
1964
|
+
IpBlackList?: Array<string>;
|
|
1965
|
+
/**
|
|
1966
|
+
* <p>插件</p>
|
|
1967
|
+
*/
|
|
1968
|
+
PluginConfigs?: Array<PluginConfigDTO>;
|
|
1969
|
+
/**
|
|
1970
|
+
* <p>服务ID</p>
|
|
1971
|
+
*/
|
|
1972
|
+
ID?: string;
|
|
1973
|
+
}
|
|
1974
|
+
/**
|
|
1975
|
+
* DeleteMcpServer请求参数结构体
|
|
1976
|
+
*/
|
|
1977
|
+
export interface DeleteMcpServerRequest {
|
|
1978
|
+
/**
|
|
1979
|
+
* 实例ID
|
|
1980
|
+
*/
|
|
1981
|
+
InstanceID: string;
|
|
1982
|
+
/**
|
|
1983
|
+
* mcp server ID
|
|
1984
|
+
*/
|
|
1985
|
+
ID: string;
|
|
1986
|
+
}
|
|
1987
|
+
/**
|
|
1988
|
+
* DeleteService返回参数结构体
|
|
1989
|
+
*/
|
|
1990
|
+
export interface DeleteServiceResponse {
|
|
1991
|
+
/**
|
|
1992
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1993
|
+
*/
|
|
1994
|
+
RequestId?: string;
|
|
1995
|
+
}
|
|
1996
|
+
/**
|
|
1997
|
+
* ModifyModel请求参数结构体
|
|
1998
|
+
*/
|
|
1999
|
+
export interface ModifyModelRequest {
|
|
2000
|
+
/**
|
|
2001
|
+
* <p>实例</p>
|
|
1622
2002
|
*/
|
|
1623
2003
|
InstanceID: string;
|
|
1624
2004
|
/**
|
|
@@ -1662,6 +2042,26 @@ export interface ModifyModelRequest {
|
|
|
1662
2042
|
*/
|
|
1663
2043
|
Description?: string;
|
|
1664
2044
|
}
|
|
2045
|
+
/**
|
|
2046
|
+
* HealthCheckConfigDTO
|
|
2047
|
+
*/
|
|
2048
|
+
export interface HealthCheckConfigDTO {
|
|
2049
|
+
/**
|
|
2050
|
+
* 健康检查路径
|
|
2051
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2052
|
+
*/
|
|
2053
|
+
HealthCheckPath?: string;
|
|
2054
|
+
/**
|
|
2055
|
+
* 状态码
|
|
2056
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2057
|
+
*/
|
|
2058
|
+
ValidHealthCheckStatusCode?: Array<number | bigint>;
|
|
2059
|
+
/**
|
|
2060
|
+
* 请求的超时时间
|
|
2061
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2062
|
+
*/
|
|
2063
|
+
HealthCheckTimeout?: number;
|
|
2064
|
+
}
|
|
1665
2065
|
/**
|
|
1666
2066
|
* 凭据详情响应
|
|
1667
2067
|
*/
|
|
@@ -1798,17 +2198,17 @@ export interface DescribeModelServicesRequest {
|
|
|
1798
2198
|
ModelProtocol?: string;
|
|
1799
2199
|
}
|
|
1800
2200
|
/**
|
|
1801
|
-
*
|
|
2201
|
+
* ModifyAgentAppModelServices返回参数结构体
|
|
1802
2202
|
*/
|
|
1803
|
-
export interface
|
|
2203
|
+
export interface ModifyAgentAppModelServicesResponse {
|
|
1804
2204
|
/**
|
|
1805
|
-
*
|
|
2205
|
+
* app id
|
|
1806
2206
|
*/
|
|
1807
|
-
|
|
2207
|
+
Data?: ResultIDVO;
|
|
1808
2208
|
/**
|
|
1809
|
-
*
|
|
2209
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1810
2210
|
*/
|
|
1811
|
-
|
|
2211
|
+
RequestId?: string;
|
|
1812
2212
|
}
|
|
1813
2213
|
/**
|
|
1814
2214
|
* 内容安全配置
|
|
@@ -1906,34 +2306,391 @@ export interface McpTool {
|
|
|
1906
2306
|
OutputSchema?: McpInputOutSchema;
|
|
1907
2307
|
}
|
|
1908
2308
|
/**
|
|
1909
|
-
*
|
|
2309
|
+
* DescribeMcpServer请求参数结构体
|
|
1910
2310
|
*/
|
|
1911
|
-
export interface
|
|
2311
|
+
export interface DescribeMcpServerRequest {
|
|
1912
2312
|
/**
|
|
1913
|
-
*
|
|
2313
|
+
* 实例ID
|
|
1914
2314
|
*/
|
|
1915
|
-
|
|
2315
|
+
InstanceID: string;
|
|
1916
2316
|
/**
|
|
1917
|
-
*
|
|
2317
|
+
* mcp server ID
|
|
1918
2318
|
*/
|
|
1919
|
-
|
|
2319
|
+
ID: string;
|
|
1920
2320
|
}
|
|
1921
2321
|
/**
|
|
1922
|
-
*
|
|
2322
|
+
* ip黑白名单配置
|
|
1923
2323
|
*/
|
|
1924
|
-
export interface
|
|
2324
|
+
export interface IpConfig {
|
|
1925
2325
|
/**
|
|
1926
|
-
*
|
|
2326
|
+
* ip数组
|
|
2327
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1927
2328
|
*/
|
|
1928
|
-
|
|
2329
|
+
Ips?: Array<string>;
|
|
1929
2330
|
/**
|
|
1930
|
-
*
|
|
2331
|
+
* 生效类型
|
|
2332
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1931
2333
|
*/
|
|
1932
|
-
|
|
2334
|
+
EffectType?: string;
|
|
1933
2335
|
/**
|
|
1934
|
-
*
|
|
2336
|
+
* 生效时间
|
|
2337
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2338
|
+
*/
|
|
2339
|
+
EffectTimes?: Array<StartEndTime>;
|
|
2340
|
+
/**
|
|
2341
|
+
* 备注
|
|
2342
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2343
|
+
*/
|
|
2344
|
+
Comment?: string;
|
|
2345
|
+
}
|
|
2346
|
+
/**
|
|
2347
|
+
* ServiceVO
|
|
2348
|
+
*/
|
|
2349
|
+
export interface ServiceVO {
|
|
2350
|
+
/**
|
|
2351
|
+
* <p>实例</p>
|
|
2352
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2353
|
+
*/
|
|
2354
|
+
InstanceID?: string;
|
|
2355
|
+
/**
|
|
2356
|
+
* <p>名称</p>
|
|
2357
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2358
|
+
*/
|
|
2359
|
+
Name?: string;
|
|
2360
|
+
/**
|
|
2361
|
+
* <p>里约应用ID</p>
|
|
2362
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2363
|
+
* @deprecated
|
|
2364
|
+
*/
|
|
2365
|
+
PaasID?: string;
|
|
2366
|
+
/**
|
|
2367
|
+
* <p>描述</p>
|
|
2368
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2369
|
+
*/
|
|
2370
|
+
Description?: string;
|
|
2371
|
+
/**
|
|
2372
|
+
* <p>标签</p>
|
|
2373
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2374
|
+
*/
|
|
2375
|
+
LabelIDs?: Array<string>;
|
|
2376
|
+
/**
|
|
2377
|
+
* <p>目录</p>
|
|
2378
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2379
|
+
*/
|
|
2380
|
+
CategoryIDs?: Array<string>;
|
|
2381
|
+
/**
|
|
2382
|
+
* <p>鉴权方式</p>
|
|
2383
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2384
|
+
* @deprecated
|
|
2385
|
+
*/
|
|
2386
|
+
AuthType?: string;
|
|
2387
|
+
/**
|
|
2388
|
+
* <p>签名</p>
|
|
2389
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2390
|
+
* @deprecated
|
|
2391
|
+
*/
|
|
2392
|
+
SignType?: string;
|
|
2393
|
+
/**
|
|
2394
|
+
* <p>登录方式</p>
|
|
2395
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2396
|
+
* @deprecated
|
|
2397
|
+
*/
|
|
2398
|
+
LoginTypes?: Array<string>;
|
|
2399
|
+
/**
|
|
2400
|
+
* <p>负载方式</p>
|
|
2401
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2402
|
+
*/
|
|
2403
|
+
TargetSelect?: string;
|
|
2404
|
+
/**
|
|
2405
|
+
* <p>公开路径</p>
|
|
2406
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2407
|
+
*/
|
|
2408
|
+
PubPath?: string;
|
|
2409
|
+
/**
|
|
2410
|
+
* <p>请求方法</p>
|
|
2411
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2412
|
+
*/
|
|
2413
|
+
RequestMethod?: string;
|
|
2414
|
+
/**
|
|
2415
|
+
* <p>目标服务器</p>
|
|
2416
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2417
|
+
*/
|
|
2418
|
+
TargetHosts?: Array<TargetHostDTO>;
|
|
2419
|
+
/**
|
|
2420
|
+
* <p>是否https</p>
|
|
2421
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2422
|
+
*/
|
|
2423
|
+
HttpProtocolType?: string;
|
|
2424
|
+
/**
|
|
2425
|
+
* <p>证书检查</p>
|
|
2426
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2427
|
+
*/
|
|
2428
|
+
CheckTargetCertsError?: boolean;
|
|
2429
|
+
/**
|
|
2430
|
+
* <p>http协议类型</p>
|
|
2431
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2432
|
+
*/
|
|
2433
|
+
HttpProtocolVersion?: string;
|
|
2434
|
+
/**
|
|
2435
|
+
* <p>版本号</p>
|
|
2436
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2437
|
+
*/
|
|
2438
|
+
Versions?: Array<VersionDTO>;
|
|
2439
|
+
/**
|
|
2440
|
+
* <p>目标路径</p>
|
|
2441
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2442
|
+
*/
|
|
2443
|
+
TargetPath?: string;
|
|
2444
|
+
/**
|
|
2445
|
+
* <p>入参</p>
|
|
2446
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2447
|
+
*/
|
|
2448
|
+
RequestParamsValidatorStatus?: boolean;
|
|
2449
|
+
/**
|
|
2450
|
+
* <p>入参</p>
|
|
2451
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2452
|
+
*/
|
|
2453
|
+
RequestParamsValidatorJsonInfoT?: string;
|
|
2454
|
+
/**
|
|
2455
|
+
* <p>出参</p>
|
|
2456
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2457
|
+
*/
|
|
2458
|
+
ResponseParamsValidatorStatus?: boolean;
|
|
2459
|
+
/**
|
|
2460
|
+
* <p>出参</p>
|
|
2461
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2462
|
+
*/
|
|
2463
|
+
ResponseParamsValidatorJsonInfoT?: string;
|
|
2464
|
+
/**
|
|
2465
|
+
* <p>流量控制</p>
|
|
2466
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2467
|
+
*/
|
|
2468
|
+
InvokeLimitConfigStatus?: boolean;
|
|
2469
|
+
/**
|
|
2470
|
+
* <p>流量控制</p>
|
|
2471
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2472
|
+
*/
|
|
2473
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
2474
|
+
/**
|
|
2475
|
+
* <p>健康检查</p>
|
|
2476
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2477
|
+
*/
|
|
2478
|
+
HealthCheckStatus?: boolean;
|
|
2479
|
+
/**
|
|
2480
|
+
* <p>健康检查</p>
|
|
2481
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2482
|
+
*/
|
|
2483
|
+
HealthCheckConfig?: HealthCheckConfigDTO;
|
|
2484
|
+
/**
|
|
2485
|
+
* <p>格式转换</p>
|
|
2486
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2487
|
+
*/
|
|
2488
|
+
SourceTypeStatus?: boolean;
|
|
2489
|
+
/**
|
|
2490
|
+
* <p>格式转换</p>
|
|
2491
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2492
|
+
*/
|
|
2493
|
+
SourceTypeConfig?: SourceTypeConfigDTO;
|
|
2494
|
+
/**
|
|
2495
|
+
* <p>是否开启Token限流</p>
|
|
2496
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2497
|
+
* @deprecated
|
|
2498
|
+
*/
|
|
2499
|
+
TokenLimitStatus?: boolean;
|
|
2500
|
+
/**
|
|
2501
|
+
* <p>Token限流配置</p>
|
|
2502
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2503
|
+
* @deprecated
|
|
2504
|
+
*/
|
|
2505
|
+
TokenLimitConfig?: TokenLimitConfigDTO;
|
|
2506
|
+
/**
|
|
2507
|
+
* <p>是否开启内容安全</p>
|
|
2508
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2509
|
+
* @deprecated
|
|
2510
|
+
*/
|
|
2511
|
+
TmsStatus?: boolean;
|
|
2512
|
+
/**
|
|
2513
|
+
* <p>内容安全配置</p>
|
|
2514
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2515
|
+
* @deprecated
|
|
2516
|
+
*/
|
|
2517
|
+
TmsConfig?: TmsConfigDTO;
|
|
2518
|
+
/**
|
|
2519
|
+
* <p>IP白名单</p>
|
|
2520
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2521
|
+
*/
|
|
2522
|
+
IpWhiteStatus?: boolean;
|
|
2523
|
+
/**
|
|
2524
|
+
* <p>IP白名单</p>
|
|
2525
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2526
|
+
*/
|
|
2527
|
+
IpWhiteList?: Array<string>;
|
|
2528
|
+
/**
|
|
2529
|
+
* <p>IP黑名单</p>
|
|
2530
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2531
|
+
*/
|
|
2532
|
+
IpBlackStatus?: boolean;
|
|
2533
|
+
/**
|
|
2534
|
+
* <p>IP黑名单</p>
|
|
2535
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2536
|
+
*/
|
|
2537
|
+
IpBlackList?: Array<string>;
|
|
2538
|
+
/**
|
|
2539
|
+
* <p>插件</p>
|
|
2540
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2541
|
+
*/
|
|
2542
|
+
PluginConfigs?: Array<PluginConfigDTO>;
|
|
2543
|
+
/**
|
|
2544
|
+
* <p>服务ID</p>
|
|
2545
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2546
|
+
*/
|
|
2547
|
+
ID?: string;
|
|
2548
|
+
/**
|
|
2549
|
+
* <p>状态</p>
|
|
2550
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2551
|
+
*/
|
|
2552
|
+
Status?: string;
|
|
2553
|
+
/**
|
|
2554
|
+
* <p>预览地址</p>
|
|
2555
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2556
|
+
*/
|
|
2557
|
+
Url?: string;
|
|
2558
|
+
/**
|
|
2559
|
+
* <p>app</p>
|
|
2560
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2561
|
+
*/
|
|
2562
|
+
App?: IDNameVO;
|
|
2563
|
+
/**
|
|
2564
|
+
* <p>目录</p>
|
|
2565
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2566
|
+
*/
|
|
2567
|
+
Catalogs?: Array<IDNameVO>;
|
|
2568
|
+
/**
|
|
2569
|
+
* <p>标签</p>
|
|
2570
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2571
|
+
*/
|
|
2572
|
+
Labels?: Array<IDNameVO>;
|
|
2573
|
+
/**
|
|
2574
|
+
* <p>认证方式</p>
|
|
2575
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2576
|
+
*/
|
|
2577
|
+
Logins?: Array<IDNameVO>;
|
|
2578
|
+
/**
|
|
2579
|
+
* <p>授权数</p>
|
|
2580
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2581
|
+
*/
|
|
2582
|
+
AuthAppNum?: number;
|
|
2583
|
+
/**
|
|
2584
|
+
* <p>创建时间</p>
|
|
2585
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2586
|
+
*/
|
|
2587
|
+
CreateTime?: string;
|
|
2588
|
+
/**
|
|
2589
|
+
* <p>最后修改时间</p>
|
|
2590
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2591
|
+
*/
|
|
2592
|
+
LastUpdateTime?: string;
|
|
2593
|
+
/**
|
|
2594
|
+
* <p>应用ID</p>
|
|
2595
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2596
|
+
*/
|
|
2597
|
+
AppID?: number;
|
|
2598
|
+
/**
|
|
2599
|
+
* <p>用户ID</p>
|
|
2600
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2601
|
+
*/
|
|
2602
|
+
Uin?: string;
|
|
2603
|
+
/**
|
|
2604
|
+
* <p>域名</p>
|
|
2605
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2606
|
+
*/
|
|
2607
|
+
Domain?: string;
|
|
2608
|
+
/**
|
|
2609
|
+
* <p>是否开启报文记录</p>
|
|
2610
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2611
|
+
*/
|
|
2612
|
+
OpenMessageLogStatus?: boolean;
|
|
2613
|
+
/**
|
|
2614
|
+
* <p>订阅页面的当前用户是否订阅了该API</p>
|
|
2615
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2616
|
+
* @deprecated
|
|
2617
|
+
*/
|
|
2618
|
+
CurrPaasIDSubscriptionID?: string;
|
|
2619
|
+
/**
|
|
2620
|
+
* <p>目标服务类型 Restful Database Mock</p>
|
|
2621
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2622
|
+
*/
|
|
2623
|
+
TargetServiceType?: string;
|
|
2624
|
+
/**
|
|
2625
|
+
* <p>SQL模板</p>
|
|
2626
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2627
|
+
*/
|
|
2628
|
+
SqlTemplate?: SqlTemplate;
|
|
2629
|
+
/**
|
|
2630
|
+
* <p>目标Host类型 0 默认 1 vpc</p>
|
|
2631
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2632
|
+
*/
|
|
2633
|
+
TargetHostType?: number;
|
|
2634
|
+
/**
|
|
2635
|
+
* <p>后端服务类型 0 自定义 原始数据:ip/域名或vpc 1 后端服务 服务组</p>
|
|
2636
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2637
|
+
*/
|
|
2638
|
+
TargetServiceHostType?: number;
|
|
2639
|
+
/**
|
|
2640
|
+
* <p>后端服务组ID</p>
|
|
2641
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2642
|
+
*/
|
|
2643
|
+
TargetServerGroupID?: string;
|
|
2644
|
+
/**
|
|
2645
|
+
* <p>后端服务组</p>
|
|
2646
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2647
|
+
*/
|
|
2648
|
+
TargetServerGroup?: TargetServerGroupDTO;
|
|
2649
|
+
/**
|
|
2650
|
+
* <p>自定义host</p>
|
|
2651
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2652
|
+
*/
|
|
2653
|
+
CustomHttpHost?: string;
|
|
2654
|
+
/**
|
|
2655
|
+
* <p>Http 请求host类型 useRequestHost 保持源请求host targetHost 修正为源站host customHost 自定义host</p>
|
|
2656
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2657
|
+
*/
|
|
2658
|
+
HttpHostType?: string;
|
|
2659
|
+
/**
|
|
2660
|
+
* <p>mock响应状态码</p>
|
|
2661
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2662
|
+
*/
|
|
2663
|
+
MockStatusCode?: number;
|
|
2664
|
+
/**
|
|
2665
|
+
* <p>mock响应body</p>
|
|
2666
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2667
|
+
*/
|
|
2668
|
+
MockBody?: string;
|
|
2669
|
+
/**
|
|
2670
|
+
* <p>mock响应头</p>
|
|
2671
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2672
|
+
*/
|
|
2673
|
+
MockHeaders?: Array<FieldValueDTO>;
|
|
2674
|
+
/**
|
|
2675
|
+
* <p>路径匹配类型: prefix 前缀匹配(不送默认); absolute 绝对匹配; regex正则匹配;</p>
|
|
2676
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2677
|
+
*/
|
|
2678
|
+
PathMatchType?: string;
|
|
2679
|
+
/**
|
|
2680
|
+
* <p>自定义匹配条件</p>
|
|
2681
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2682
|
+
*/
|
|
2683
|
+
CustomMatch?: CustomMatch;
|
|
2684
|
+
/**
|
|
2685
|
+
* <p>请求的超时时间</p>
|
|
2686
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2687
|
+
*/
|
|
2688
|
+
Timeout?: number;
|
|
2689
|
+
/**
|
|
2690
|
+
* <p>绑定的mcp server数量</p>
|
|
2691
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1935
2692
|
*/
|
|
1936
|
-
|
|
2693
|
+
McpServerNum?: number;
|
|
1937
2694
|
}
|
|
1938
2695
|
/**
|
|
1939
2696
|
* ModifyAgentCredential返回参数结构体
|
|
@@ -2097,6 +2854,16 @@ export interface CreateAgentAppRequest {
|
|
|
2097
2854
|
*/
|
|
2098
2855
|
ConnectorIDs?: Array<string>;
|
|
2099
2856
|
}
|
|
2857
|
+
/**
|
|
2858
|
+
* 结果ID数组
|
|
2859
|
+
*/
|
|
2860
|
+
export interface ResultIDsVO {
|
|
2861
|
+
/**
|
|
2862
|
+
* 结果ID数组
|
|
2863
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2864
|
+
*/
|
|
2865
|
+
IDs?: Array<string>;
|
|
2866
|
+
}
|
|
2100
2867
|
/**
|
|
2101
2868
|
* 查询App列表响应
|
|
2102
2869
|
*/
|
|
@@ -2165,6 +2932,19 @@ export interface PromptModerateConfigDTO {
|
|
|
2165
2932
|
*/
|
|
2166
2933
|
ContextScope?: string;
|
|
2167
2934
|
}
|
|
2935
|
+
/**
|
|
2936
|
+
* DescribeAgentAppServices返回参数结构体
|
|
2937
|
+
*/
|
|
2938
|
+
export interface DescribeAgentAppServicesResponse {
|
|
2939
|
+
/**
|
|
2940
|
+
* <p>app id</p>
|
|
2941
|
+
*/
|
|
2942
|
+
Data?: DescribeAgentAppServicesVO;
|
|
2943
|
+
/**
|
|
2944
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2945
|
+
*/
|
|
2946
|
+
RequestId?: string;
|
|
2947
|
+
}
|
|
2168
2948
|
/**
|
|
2169
2949
|
* TargetHostDTO
|
|
2170
2950
|
*/
|
|
@@ -2222,48 +3002,153 @@ export interface DescribeModelsRequest {
|
|
|
2222
3002
|
*/
|
|
2223
3003
|
export type DescribeAgentCredentialRequest = null;
|
|
2224
3004
|
/**
|
|
2225
|
-
*
|
|
3005
|
+
* CreateModel请求参数结构体
|
|
2226
3006
|
*/
|
|
2227
|
-
export interface
|
|
3007
|
+
export interface CreateModelRequest {
|
|
2228
3008
|
/**
|
|
2229
|
-
*
|
|
2230
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3009
|
+
* <p>实例</p>
|
|
2231
3010
|
*/
|
|
2232
|
-
|
|
3011
|
+
InstanceID: string;
|
|
2233
3012
|
/**
|
|
2234
|
-
*
|
|
2235
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3013
|
+
* <p>模型名称</p>
|
|
2236
3014
|
*/
|
|
2237
|
-
|
|
3015
|
+
Name: string;
|
|
3016
|
+
/**
|
|
3017
|
+
* <p>协议类型:http/https</p>
|
|
3018
|
+
*/
|
|
3019
|
+
HttpProtocolType: string;
|
|
3020
|
+
/**
|
|
3021
|
+
* <p>目标路径</p>
|
|
3022
|
+
*/
|
|
3023
|
+
TargetPath: string;
|
|
3024
|
+
/**
|
|
3025
|
+
* <p>目标服务器</p>
|
|
3026
|
+
*/
|
|
3027
|
+
TargetHosts: Array<TargetHostDTO>;
|
|
3028
|
+
/**
|
|
3029
|
+
* <p>凭据ID</p>
|
|
3030
|
+
*/
|
|
3031
|
+
CredentialID?: string;
|
|
3032
|
+
/**
|
|
3033
|
+
* <p>https时,是否检查证书合法</p>
|
|
3034
|
+
*/
|
|
3035
|
+
CheckTargetCertsError?: boolean;
|
|
3036
|
+
/**
|
|
3037
|
+
* <p>http协议版本:1.1/2.0</p>
|
|
3038
|
+
*/
|
|
3039
|
+
HttpProtocolVersion?: string;
|
|
3040
|
+
/**
|
|
3041
|
+
* <p>model ID</p>
|
|
3042
|
+
*/
|
|
3043
|
+
ModelID?: string;
|
|
3044
|
+
/**
|
|
3045
|
+
* <p>描述</p>
|
|
3046
|
+
*/
|
|
3047
|
+
Description?: string;
|
|
2238
3048
|
}
|
|
2239
3049
|
/**
|
|
2240
|
-
*
|
|
3050
|
+
* VersionDTO
|
|
2241
3051
|
*/
|
|
2242
|
-
export
|
|
3052
|
+
export interface VersionDTO {
|
|
3053
|
+
/**
|
|
3054
|
+
* Version版本
|
|
3055
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3056
|
+
*/
|
|
3057
|
+
Version?: string;
|
|
3058
|
+
/**
|
|
3059
|
+
* 目标路径
|
|
3060
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3061
|
+
*/
|
|
3062
|
+
TargetPath?: string;
|
|
3063
|
+
}
|
|
2243
3064
|
/**
|
|
2244
|
-
*
|
|
3065
|
+
* 匹配条件
|
|
2245
3066
|
*/
|
|
2246
|
-
export interface
|
|
3067
|
+
export interface CompoundCondition {
|
|
2247
3068
|
/**
|
|
2248
|
-
*
|
|
3069
|
+
* <p>是否启用</p>
|
|
2249
3070
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2250
3071
|
*/
|
|
2251
|
-
|
|
3072
|
+
Enable?: boolean;
|
|
2252
3073
|
/**
|
|
2253
|
-
*
|
|
3074
|
+
* <p>匹配信息</p>
|
|
2254
3075
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2255
3076
|
*/
|
|
2256
|
-
|
|
3077
|
+
Rules?: Array<SimpleCondition>;
|
|
3078
|
+
}
|
|
3079
|
+
/**
|
|
3080
|
+
* ServiceDatabaseOrderParam
|
|
3081
|
+
*/
|
|
3082
|
+
export interface ServiceDatabaseOrderParam {
|
|
2257
3083
|
/**
|
|
2258
|
-
*
|
|
3084
|
+
* <p>字段名称</p>
|
|
2259
3085
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2260
3086
|
*/
|
|
2261
|
-
|
|
3087
|
+
FieldName?: string;
|
|
2262
3088
|
/**
|
|
2263
|
-
*
|
|
3089
|
+
* <p>排序 asc desc</p>
|
|
2264
3090
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2265
3091
|
*/
|
|
2266
|
-
|
|
3092
|
+
Order?: string;
|
|
3093
|
+
}
|
|
3094
|
+
/**
|
|
3095
|
+
* Agent应用关联的服务配置
|
|
3096
|
+
*/
|
|
3097
|
+
export interface AgentAppServiceDTO {
|
|
3098
|
+
/**
|
|
3099
|
+
* <p>ID</p>
|
|
3100
|
+
*/
|
|
3101
|
+
ID?: string;
|
|
3102
|
+
/**
|
|
3103
|
+
* <p>是否限流</p>
|
|
3104
|
+
*/
|
|
3105
|
+
InvokeLimitConfigStatus?: boolean;
|
|
3106
|
+
/**
|
|
3107
|
+
* <p>限流配置</p>
|
|
3108
|
+
*/
|
|
3109
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
3110
|
+
/**
|
|
3111
|
+
* <p>是否要认证</p>
|
|
3112
|
+
*/
|
|
3113
|
+
NeedAuth?: boolean;
|
|
3114
|
+
/**
|
|
3115
|
+
* <p>凭据ID</p>
|
|
3116
|
+
*/
|
|
3117
|
+
AgentCredentialID?: string;
|
|
3118
|
+
}
|
|
3119
|
+
/**
|
|
3120
|
+
* CreateAgentCredential请求参数结构体
|
|
3121
|
+
*/
|
|
3122
|
+
export type CreateAgentCredentialRequest = null;
|
|
3123
|
+
/**
|
|
3124
|
+
* DeleteAgentAppModelServices请求参数结构体
|
|
3125
|
+
*/
|
|
3126
|
+
export interface DeleteAgentAppModelServicesRequest {
|
|
3127
|
+
/**
|
|
3128
|
+
* 实例ID
|
|
3129
|
+
*/
|
|
3130
|
+
InstanceID: string;
|
|
3131
|
+
/**
|
|
3132
|
+
* 应用ID
|
|
3133
|
+
*/
|
|
3134
|
+
ID: string;
|
|
3135
|
+
/**
|
|
3136
|
+
* 关联的model service id
|
|
3137
|
+
*/
|
|
3138
|
+
ModelServiceIDs: Array<string>;
|
|
3139
|
+
}
|
|
3140
|
+
/**
|
|
3141
|
+
* DeleteAgentAppServices返回参数结构体
|
|
3142
|
+
*/
|
|
3143
|
+
export interface DeleteAgentAppServicesResponse {
|
|
3144
|
+
/**
|
|
3145
|
+
* <p>app id</p>
|
|
3146
|
+
*/
|
|
3147
|
+
Data?: ResultIDVO;
|
|
3148
|
+
/**
|
|
3149
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3150
|
+
*/
|
|
3151
|
+
RequestId?: string;
|
|
2267
3152
|
}
|
|
2268
3153
|
/**
|
|
2269
3154
|
* CreateAgentAppMcpServers返回参数结构体
|
|
@@ -2278,6 +3163,15 @@ export interface CreateAgentAppMcpServersResponse {
|
|
|
2278
3163
|
*/
|
|
2279
3164
|
RequestId?: string;
|
|
2280
3165
|
}
|
|
3166
|
+
/**
|
|
3167
|
+
* DescribeServices返回参数结构体
|
|
3168
|
+
*/
|
|
3169
|
+
export interface DescribeServicesResponse {
|
|
3170
|
+
/**
|
|
3171
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3172
|
+
*/
|
|
3173
|
+
RequestId?: string;
|
|
3174
|
+
}
|
|
2281
3175
|
/**
|
|
2282
3176
|
* ModifyMcpServer请求参数结构体
|
|
2283
3177
|
*/
|
|
@@ -2433,6 +3327,19 @@ export interface DescribeAgentAppMcpServersRequest {
|
|
|
2433
3327
|
*/
|
|
2434
3328
|
Keyword?: string;
|
|
2435
3329
|
}
|
|
3330
|
+
/**
|
|
3331
|
+
* 应用服务查询
|
|
3332
|
+
*/
|
|
3333
|
+
export interface DescribeAgentAppServicesVO {
|
|
3334
|
+
/**
|
|
3335
|
+
* <p>总数</p>
|
|
3336
|
+
*/
|
|
3337
|
+
Total?: number;
|
|
3338
|
+
/**
|
|
3339
|
+
* <p>数据列表</p>
|
|
3340
|
+
*/
|
|
3341
|
+
Items?: Array<AgentAppServiceVO>;
|
|
3342
|
+
}
|
|
2436
3343
|
/**
|
|
2437
3344
|
* 关联的mcp服务配置
|
|
2438
3345
|
*/
|
|
@@ -2499,6 +3406,31 @@ export interface TokenLimitConfigDTO {
|
|
|
2499
3406
|
*/
|
|
2500
3407
|
LimitWindows?: Array<LimitWindowsDTO>;
|
|
2501
3408
|
}
|
|
3409
|
+
/**
|
|
3410
|
+
* SqlTemplate SQL模板
|
|
3411
|
+
*/
|
|
3412
|
+
export interface SqlTemplate {
|
|
3413
|
+
/**
|
|
3414
|
+
* <p>配置方式 script 脚本 wizard 向导</p>
|
|
3415
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3416
|
+
*/
|
|
3417
|
+
DbConfigMode?: string;
|
|
3418
|
+
/**
|
|
3419
|
+
* <p>数据源ID</p>
|
|
3420
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3421
|
+
*/
|
|
3422
|
+
DataSourceID?: string;
|
|
3423
|
+
/**
|
|
3424
|
+
* <p>Sql代码</p>
|
|
3425
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3426
|
+
*/
|
|
3427
|
+
Sql?: string;
|
|
3428
|
+
/**
|
|
3429
|
+
* <p>向导模式配置</p>
|
|
3430
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3431
|
+
*/
|
|
3432
|
+
WizardConfig?: WizardConfig;
|
|
3433
|
+
}
|
|
2502
3434
|
/**
|
|
2503
3435
|
* 查询App mcpServer绑定列表响应
|
|
2504
3436
|
*/
|
|
@@ -2512,6 +3444,51 @@ export interface DescribeAgentAppMcpServersResp {
|
|
|
2512
3444
|
*/
|
|
2513
3445
|
Items?: Array<AgentAppMcpServerVO>;
|
|
2514
3446
|
}
|
|
3447
|
+
/**
|
|
3448
|
+
* 应用API详情
|
|
3449
|
+
*/
|
|
3450
|
+
export interface AgentAppServiceVO {
|
|
3451
|
+
/**
|
|
3452
|
+
* <p>ID</p>
|
|
3453
|
+
*/
|
|
3454
|
+
ID?: string;
|
|
3455
|
+
/**
|
|
3456
|
+
* <p>应用ID</p>
|
|
3457
|
+
*/
|
|
3458
|
+
AgentAppID?: string;
|
|
3459
|
+
/**
|
|
3460
|
+
* <p>服务ID</p>
|
|
3461
|
+
*/
|
|
3462
|
+
ServiceID?: string;
|
|
3463
|
+
/**
|
|
3464
|
+
* <p>是否限流</p>
|
|
3465
|
+
*/
|
|
3466
|
+
InvokeLimitConfigStatus?: boolean;
|
|
3467
|
+
/**
|
|
3468
|
+
* <p>限流配置</p>
|
|
3469
|
+
*/
|
|
3470
|
+
InvokeLimitConfig?: InvokeLimitConfigDTO;
|
|
3471
|
+
/**
|
|
3472
|
+
* <p>服务详情</p>
|
|
3473
|
+
*/
|
|
3474
|
+
ServiceVO?: ServiceVO;
|
|
3475
|
+
/**
|
|
3476
|
+
* <p>关联时间</p>
|
|
3477
|
+
*/
|
|
3478
|
+
RelateTime?: string;
|
|
3479
|
+
/**
|
|
3480
|
+
* <p>是否需要认证</p>
|
|
3481
|
+
*/
|
|
3482
|
+
NeedAuth?: boolean;
|
|
3483
|
+
/**
|
|
3484
|
+
* <p>凭据ID</p>
|
|
3485
|
+
*/
|
|
3486
|
+
AgentCredentialID?: string;
|
|
3487
|
+
/**
|
|
3488
|
+
* <p>凭据详情</p>
|
|
3489
|
+
*/
|
|
3490
|
+
AgentCredentialVO?: DescribeAgentCredentialResp;
|
|
3491
|
+
}
|
|
2515
3492
|
/**
|
|
2516
3493
|
* 查询模型服务详情的响应
|
|
2517
3494
|
*/
|
|
@@ -2680,6 +3657,21 @@ export interface DescribeModelServiceResponseVO {
|
|
|
2680
3657
|
*/
|
|
2681
3658
|
ModelProtocol?: string;
|
|
2682
3659
|
}
|
|
3660
|
+
/**
|
|
3661
|
+
* 响应参数
|
|
3662
|
+
*/
|
|
3663
|
+
export interface ServiceDatabaseRespParam {
|
|
3664
|
+
/**
|
|
3665
|
+
* <p>源字段名称</p>
|
|
3666
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3667
|
+
*/
|
|
3668
|
+
FieldName?: string;
|
|
3669
|
+
/**
|
|
3670
|
+
* <p>目标字段名称</p>
|
|
3671
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3672
|
+
*/
|
|
3673
|
+
Name?: string;
|
|
3674
|
+
}
|
|
2683
3675
|
/**
|
|
2684
3676
|
* DescribeModelsSort
|
|
2685
3677
|
*/
|
|
@@ -2830,6 +3822,47 @@ export interface DescribeModelsResponse {
|
|
|
2830
3822
|
*/
|
|
2831
3823
|
RequestId?: string;
|
|
2832
3824
|
}
|
|
3825
|
+
/**
|
|
3826
|
+
* DescribeAgentAppServices请求参数结构体
|
|
3827
|
+
*/
|
|
3828
|
+
export interface DescribeAgentAppServicesRequest {
|
|
3829
|
+
/**
|
|
3830
|
+
* <p>实例ID</p>
|
|
3831
|
+
*/
|
|
3832
|
+
InstanceID: string;
|
|
3833
|
+
/**
|
|
3834
|
+
* <p>数据量</p>
|
|
3835
|
+
*/
|
|
3836
|
+
Limit: number;
|
|
3837
|
+
/**
|
|
3838
|
+
* <p>IDs</p>
|
|
3839
|
+
*/
|
|
3840
|
+
IDs?: Array<string>;
|
|
3841
|
+
/**
|
|
3842
|
+
* <p>应用IDs</p>
|
|
3843
|
+
*/
|
|
3844
|
+
AgentAppIDs?: Array<string>;
|
|
3845
|
+
/**
|
|
3846
|
+
* <p>服务IDs</p>
|
|
3847
|
+
*/
|
|
3848
|
+
ServiceIDs?: Array<string>;
|
|
3849
|
+
/**
|
|
3850
|
+
* <p>关键字</p>
|
|
3851
|
+
*/
|
|
3852
|
+
Keyword?: string;
|
|
3853
|
+
/**
|
|
3854
|
+
* <p>偏移量</p>
|
|
3855
|
+
*/
|
|
3856
|
+
Offset?: number;
|
|
3857
|
+
/**
|
|
3858
|
+
* <p>是否有凭据</p>
|
|
3859
|
+
*/
|
|
3860
|
+
AgentCredentialExist?: boolean;
|
|
3861
|
+
/**
|
|
3862
|
+
* <p>凭据ID</p>
|
|
3863
|
+
*/
|
|
3864
|
+
AgentCredentialIDs?: Array<string>;
|
|
3865
|
+
}
|
|
2833
3866
|
/**
|
|
2834
3867
|
* DescribeModelServices返回参数结构体
|
|
2835
3868
|
*/
|
|
@@ -2868,3 +3901,18 @@ export interface McpInputOutSchema {
|
|
|
2868
3901
|
*/
|
|
2869
3902
|
Description?: string;
|
|
2870
3903
|
}
|
|
3904
|
+
/**
|
|
3905
|
+
* 自定义匹配条件
|
|
3906
|
+
*/
|
|
3907
|
+
export interface CustomMatch {
|
|
3908
|
+
/**
|
|
3909
|
+
* <p>请求头 匹配条件</p>
|
|
3910
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3911
|
+
*/
|
|
3912
|
+
HeadersMatch?: CompoundCondition;
|
|
3913
|
+
/**
|
|
3914
|
+
* <p>请求参数 匹配条件</p>
|
|
3915
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3916
|
+
*/
|
|
3917
|
+
QueryMatch?: CompoundCondition;
|
|
3918
|
+
}
|