批量创建路由
下表仅列出该接口特有的请求参数和部分公共参数。更多信息请见公共参数。
参数 | 类型 | 是否必填 | 示例值 | 描述 |
|---|---|---|---|---|
Action | String | 是 | BatchCreateRoutes | 要执行的操作,取值:BatchCreateRoutes。 |
Version | String | 是 | 2025-10-30 | API的版本,取值:2025-10-30。 |
ServiceName | String | 是 | my-vikingdb-service | 服务名称 @example:my-vikingdb-service |
Routes | Array of Object | 是 | example | 路由列表,最多50条 |
Mode | Integer | 否 | SKIP | 批量创建模式,默认 SKIP @example:SKIP |
下表仅列出本接口特有的返回参数。更多信息请参见返回结构。
参数 | 类型 | 示例值 | 描述 |
|---|---|---|---|
Failed | Array of Object | example | 失败的路由列表及原因 |
Created | Array of Object | example | 成功创建的路由列表 |
Deleted | Array of String | example | 删除的路由名称列表(Sync 模式) |
Skipped | Array of String | example | 跳过的路由名称列表(Skip 模式,已存在) |
Updated | Array of Object | example | 成功更新的路由列表(Upsert/Sync 模式) |
POST { "ServiceName": "my-vikingdb-service", "Routes": [ { "Path": "/api/v1/collection/:collection_name/search", "Method": "POST", "ApiSpec": { "ActionType": "READ", "Extractors": [ { "Path": "/collection_name", "IsAuth": false, "Source": null, "ResourceType": "Collection" } ], "ActionValue": "search", "IdentifierType": null, "IdentifierValue": "/collection_name", "ResponseFilters": [ { "Mode": null, "IsAuth": false, "IdField": "id", "Attributes": [ { "Field": "/id", "Target": "ResourceId" } ], "FilterPath": "/data/items", "ResourcePath": "/data", "ResourceType": "Collection" } ] }, "Priority": 100, "RouteName": "SearchVectors", "Description": "\"向量搜索接口\"", "ResourceType": "Collection", "PathMatchType": "Exact", "PermissionPool": "VikingDB", "AuthResourceType": "Collection" } ], "Mode": null }
{ "ResponseMetadata": { "Action": "BatchCreateRoutes", "Region": "cn-north-1", "Service": "***", "Version": "2025-10-30", "RequestId": "20230604110420****100232280022D31" }, "Result": { "Failed": [ { "Code": "", "Message": "", "RouteName": "" } ], "Created": [ { "Path": "/api/v1/collection/:collection_name/search", "Method": "POST", "Status": null, "ApiSpec": { "ActionType": "READ", "Extractors": [ { "Path": "/collection_name", "IsAuth": true, "Source": null, "ResourceType": "Collection" } ], "ActionValue": "search", "IdentifierType": null, "IdentifierValue": "/collection_name", "ResponseFilters": [ { "Mode": null, "IsAuth": false, "IdField": "id", "Attributes": [ { "Field": "/id", "Target": "ResourceId" } ], "FilterPath": "/data/items", "ResourcePath": "/data", "ResourceType": "Collection" } ] }, "Priority": 100, "CreatedAt": 1701504000000, "RouteName": "SearchVectors", "UpdatedAt": 1701504000000, "Description": "\"向量搜索接口\"", "ResourceType": "Collection", "PathMatchType": "EXACT", "PermissionPool": "VikingDB", "AuthResourceType": "Collection", "SourceTemplateId": "rt_vikingdb_search_001" } ], "Deleted": [ "" ], "Skipped": [ "" ], "Updated": [] } }
下表为您列举了该接口与业务逻辑相关的错误码。公共错误码请参见公共错误码文档。
状态码 | 错误码 | 说明 |
|---|---|---|
400 | InvalidParameter | 参数 %s 无效 |
404 | NotFound | 资源 %s 不存在 |
409 | Duplicated | 资源 %s 已存在 |
409 | StatusConflict | 状态冲突: %s |
422 | ParseFailed | 文档解析失败: %s |
429 | QuotaExceeded | 配额 %s 已达上限 |
500 | InternalError | 内部服务错误: %s |
501 | NotImplemented | 功能未实现: %s |
502 | UpstreamUnreachable | 后端服务 %s 不可达 |