获取配置文件信息
功能介绍
此API用于获取配置文件信息。
URI
GET /v3/{project_id}/cas/configs
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
project_id |
是 |
String |
租户项目ID。获取方法,请参考获取项目ID。 |
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
name |
否 |
String |
配置文件名称。 |
config_group_id |
否 |
String |
配置分组ID。 |
component_id |
否 |
String |
组件ID。 |
limit |
否 |
integer |
指定个数,取值[0, 100]。 |
offset |
否 |
integer |
指定偏移量。 |
order_by |
否 |
String |
排序字段,默认按创建时间排序。
|
order |
否 |
String |
排序方式。
|
请求消息
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
Content-Type |
是 |
String |
消息体的类型(格式),默认取值为“application/json;charset=utf8”。 |
X-Auth-Token |
是 |
String |
调用接口的认证方式分为Token和AK/SK两种,如果您使用的Token方式,此参数为必填,请填写Token的值。Token获取方式,请参考ServiceStage错误码。 |
响应消息
参数 |
参数类型 |
描述 |
---|---|---|
count |
Integer |
配置文件总数。 |
configs |
Array of objects |
配置文件列表,请参考表5。 |
参数 |
参数类型 |
描述 |
---|---|---|
config_group_id |
String |
配置分组ID。 |
id |
String |
配置文件ID。 |
name |
String |
配置文件名称。 |
description |
String |
配置文件描述。 |
creator |
String |
创建人。 |
type |
String |
配置文件类型:
|
content |
String |
配置文件内容。 |
version |
String |
配置文件版本号。 |
project_id |
String |
项目ID。 |
sensitive |
Boolean |
配置文件内容是否加密:
|
components |
Array of objects |
配置文件绑定的组件列表,请参考表6。 |
create_time |
Integer |
创建时间。 |
update_time |
Integer |
修改时间。 |
请求示例
无
响应示例
{ "configs": [{ "id": "f5a52d93-1587-45cf-b8fe-5c7f204b98d1", "config_group_id": "4808b50d-d7f3-401b-9175-968cb4f9892b", "name": "test-config1", "description": null, "type": "properties", "content": "testKey = testValue", "version": "v1", "project_id": "2cfeefc3e4c54a5aa7548b8350e638d7", "sensitive": false, "create_time": 1717486892611, "update_time": 1717486892611, "components": [{ "application_id": "8a3be48a-6401-4e8c-bbce-033745252227", "component_id": "4b611997-4acd-4538-a06b-32fd2475e057", "component_name": "component-test1", "environment_id": "d2d7180c-7739-4cbb-bd8e-0911ba31cf51" }], "creator": "ss-test" }, { "id": "2cb1897e-c23b-48a5-993c-dc7ad3c552a0", "config_group_id": "f3e6d5b4-4d7d-4009-b806-22cfed2ac6ea", "name": "test-config2", "description": null, "type": "properties", "content": "testKey = testValue", "version": "v1", "project_id": "2cfeefc3e4c54a5aa7548b8350e638d7", "sensitive": false, "create_time": 1717486590467, "update_time": 1717486590467, "components": [], "creator": "ss-test" }], "count": 2 }
状态码
状态码 |
描述 |
---|---|
200 |
操作成功。 |
400 |
错误的请求。 |
404 |
请求对象不存在。 |
500 |
内部错误。 |
错误码
错误码格式为:SVCSTG.00100.[Error_ID],例如:SVCSTG.00100400。错误码说明请参考ServiceStage错误码。