菜单

浏览目录下备份的文件

下载

接口地址:/webapi/job/browse

请求方式:POST

请求数据类型:application/x-www-form-urlencoded,application/json

响应数据类型:*/*

接口描述:

浏览目录

请求示例:

javascript 复制代码
{
  "clientId": 0,
  "backupObjectSetId": 0,
  "recoveryPoint": 0,
  "filePath": "",
  "agentType": "",
  "browseType": "",
  "requestId": ""
}

请求参数:

参数名称 参数说明 请求类型 是否必须 数据类型 schema
jobBrowseForm 浏览目录表单 body true JobBrowseForm JobBrowseForm
  clientId 客户端id false integer(int64)
  backupObjectSetId 备份集id false integer(int64)
  recoveryPoint 恢复点,jobid false integer(int64)
  filePath 文件路径 false string
  agentType 代理类型 false string
  browseType 浏览类型 false string
  requestId 请求id false string

响应状态:

状态码 说明 schema
200 OK ResponseResultListJobBrowseVo

响应参数:

参数名称 参数说明 类型 schema
message 返回状态标记 string
statFlag 返回状态 integer(int32) integer(int32)
dataInfo 返回的数据 array JobBrowseVo
  modifyTime 修改时间 integer(int64)
  fileSize 文件大小 integer(int64)
  filePath 文件路径 string
  backupTime 备份时间 integer(int64)
  fileType 文件类型 integer(int32)
dataCount 返回数据条数 integer(int32) integer(int32)

响应示例:

javascript 复制代码
{
	"message": "操作成功",
	"statFlag": 0,
	"dataInfo": [
		{
			"modifyTime": 0,
			"fileSize": 0,
			"filePath": "",
			"backupTime": 0,
			"fileType": 0
		}
	],
	"dataCount": 10
}
分享文章
上一个
查看备份集作业历史
下一个
查询文件历史备份版本信息
最近修改: 2024-12-17