根据录像计划 ID,查询录像计划的详细信息。
使用 GET 方式发起请求。
下表仅列出了接口特有的请求参数和部分公共参数。完整的公共参数列表,参考「公共参数」。
字段 | 位置 | 类型 | 必填 | 说明 | 值 |
---|---|---|---|---|---|
Action | Query | String | 是 | 公共参数,OpenAPI 接口名称 | GetRecordPlan |
Version | Query | String | 是 | 公共参数,OpenAPI 接口版本 | 2021-01-01 |
PlanID | Query | String | 是 | 需要查询的录像计划 ID |
通用返回参数,请参考 ResponseMetadata 结构体说明。
Result 字段包含以下参数:
字段 | 类型 | 说明 |
---|---|---|
PlanID | String | 录像计划唯一 ID |
PlanName | String | 录像计划名称 |
BindTemplate | String | 绑定的录像模板 ID |
TemplateInfo | Object | 录像模板信息,参考以下 TemplateInfo 结构说明 |
Description | String | 录像计划描述 |
Status | String | 录像计划状态:
|
CreatedAt | Integer | 录像计划创建时间,Unix 秒级时间戳 |
UpdatedAt | Integer | 录像计划更新时间,Unix 秒级时间戳 |
BindStreamNum | Integer | 录像计划绑定的视频流数量 |
TemplateInfo 结构说明
字段 | 类型 | 说明 |
---|---|---|
TTL | Object | 录像文件存储周期,参考以下 TTL 结构说明 |
Format | String | 模板转封装格式,默认:hls |
TTL 结构说明
字段 | 类型 | 说明 |
---|---|---|
Days | Integer | 录像文件标准存储时长(天) |
TransConfig | Array of Objects | 录像文件在对象存储中的生命周期配置,参考以下 TransConfig 结构说明 |
TransConfig 结构说明
字段 | 类型 | 说明 |
---|---|---|
StorageClass | 在对象存储中保存录像文件的类型,可选项:
详细说明,参考 生命周期规则 | |
Days | Integer | 与指定的存储类型对应的存储时长(天) |
GET https://open.volcengineapi.com?Action=GetRecordPlan &Version=2021-01-01 &PlanID=plan0xxxx &<公共请求参数>
{ "ResponseMetadata": { "RequestId": "202209141449260102020891370D037571", "Action": "GetStreamRecord", "Version": "2021-01-01", "Service": "aiotvideo", "Region": "cn-north-1" }, "Result": { { "PlanID": "plan0xxxx", "PlanName": "全天计划", "BindTemplate": "plan01", "TemplateInfo": { "TTL": { "Days": 7, "TransConfig": [ { "StorageClass": "COLD_ARCHIVE", "Days": 10 } ] } "Format": "hls" } "Description": "全天录制", "Status": "enabled", "CreatedAt": 1687663000, "UpdatedAt": 1687693000, "BindStreamNum": 2 } } }