更新时间:2024-12-04 GMT+08:00
分享

获取配置文件信息

功能介绍

此API用于获取配置文件信息。

URI

GET /v3/{project_id}/cas/configs

表1 路径参数

参数

是否必选

参数类型

描述

project_id

String

租户项目ID。获取方法,请参考获取项目ID

表2 查询参数

参数

是否必选

参数类型

描述

name

String

配置文件名称。

config_group_id

String

配置分组ID。

component_id

String

组件ID。

limit

integer

指定个数,取值[0, 100]。

offset

integer

指定偏移量。

order_by

String

排序字段,默认按创建时间排序。

  • create_time,配置文件创建时间。
  • name,配置文件名称。
  • update_time,配置文件修改时间。

order

String

排序方式。

  • desc,降序排序,默认排序方式。
  • asc,升序排序。

请求消息

表3 请求Header参数

参数

是否必选

参数类型

描述

Content-Type

String

消息体的类型(格式),默认取值为“application/json;charset=utf8”。

X-Auth-Token

String

调用接口的认证方式分为Token和AK/SK两种,如果您使用的Token方式,此参数为必填,请填写Token的值。Token获取方式,请参考ServiceStage错误码

响应消息

表4 响应参数

参数

参数类型

描述

count

Integer

配置文件总数。

configs

Array of objects

配置文件列表,请参考表5

表5 configs

参数

参数类型

描述

config_group_id

String

配置分组ID。

id

String

配置文件ID。

name

String

配置文件名称。

description

String

配置文件描述。

creator

String

创建人。

type

String

配置文件类型:

  • yaml
  • properties

content

String

配置文件内容。

version

String

配置文件版本号。

project_id

String

项目ID。

sensitive

Boolean

配置文件内容是否加密:

  • true,加密。
  • false,不加密。

components

Array of objects

配置文件绑定的组件列表,请参考表6

create_time

Integer

创建时间。

update_time

Integer

修改时间。

表6 components

参数

参数类型

描述

application_id

String

应用ID。

component_id

String

组件ID。

component_name

String

组件名称。

environment_id

String

环境ID。

请求示例

响应示例

{
	"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错误码

相关文档