查询 RecordingRule 规则文件详情。
说明
Id
和 WorkspaceId + Name
不能同时配置,但至少需要选择一种:
Id
直接指定需要查询的规则文件。WorkspaceId + Name
在工作区内,通过名称指定需要查询的规则文件。参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | GetRuleFile | 接口名称。当前 API 的名称为 GetRuleFile 。 |
Version | String | 是 | 2021-03-03 | 接口版本。当前 API 的版本为 2021-03-03 。 |
Id | String | 否 | 1c3f6e48-b5e1-4832-8564-10eaac12a22c | 规则文件 ID。 |
WorkspaceId | String | 否 | e28ae750-bbb8-4ff4-abf4-1e0e0f88808c | 工作区 ID,必须和Name 同时配置。 |
Name | String | 否 | test | 规则文件名称,必须和WorkspaceId 同时配置。 |
POST https://open.volcengineapi.com/?Action=GetRuleFile&Version=2021-03-03 Content-Type: application/json { "Id": "1c3f6e48-b5e1-4832-8564-10eaac12a22c", "WorkspaceId": "e28ae750-bbb8-4ff4-abf4-1e0e0f88808c", "Name": "test" }
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Id | String | e28ae750-bbb8-4ff4-abf4-1e0e0f88808c | 规则文件 ID。 |
CreateTime | String | 2022-01-01T00:00:00Z | 规则文件创建时间,RFC3339 格式。 |
LastUpdateTime | String | 2022-01-01T00:00:00Z | 规则文件最近更新时间,RFC3339 格式。 |
Name | String | test | 规则文件名称。 |
Description | String | 这是一段描述 | 规则文件描述信息。 |
Content | String |
| 规则文件内容。 |
Status | String | Running | 规则文件状态:
|
RuleCount | Long | 2 | 规则文件中的规则数。 |
HTTP/1.1: 200 OK Content-Type: application/json { "ResponseMetadata": { "RequestId": "202211302208xxxx", "Action": "GetRuleFile", "Version": "2021-03-03", "Service": "vmp", "Region": "cn-beijing" }, "Result": { "Id": " 1c3f6e48-b5e1-4832-8564-10eaac12a22c", "CreateTime": "2022-01-01T00:00:00Z", "LastUpdateTime": "2022-01-01T00:00:00Z", "Name": "test", "Description": "这是一段描述", "content": "groups:\n- name: example\n rules:\n - expr: up\n record: test\n", "Status": "Running", "RuleCount": 2 } }
本接口无专有错误码,公共错误码请参见 公共错误码。