The API allows you to list, view, edit and create mounted file systems.
Returns list of mounted file systems filtered by specified query parameters.
name | type | description |
---|---|---|
mounted-backup | query |
media type | data type | description |
---|---|---|
application/json | array of MountedFileSystemListRecord (JSON) | list of mounted file systems filtered by specified query parameters |
GET /mounted-file-systems
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
[ {
"mountPath" : "...",
"rootPath" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
} ]
Returns detailed list of mounted file systems filtered by specified query parameters.
name | type | description |
---|---|---|
mounted-backup | query |
media type | data type | description |
---|---|---|
application/json | array of MountedFileSystemDetails (JSON) | detailed list of mounted file systems filtered by specified query parameters |
GET /mounted-file-systems/detailed
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
[ {
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"fileSystem" : {
"volume" : "...",
"label" : "...",
"size" : 12345,
"type" : "...",
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
},
"mountPath" : "...",
"rootPath" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
} ]
Get a single mounted file system details.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for mounted file system (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | MountedFileSystemDetails (JSON) | mounted file system details |
GET /mounted-file-systems/{guid}
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"fileSystem" : {
"volume" : "...",
"label" : "...",
"size" : 12345,
"type" : "...",
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
},
"mountPath" : "...",
"rootPath" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}
Download specified files.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for mounted file system (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | FileDownloadRequest (JSON) | specify paths to download files |
POST /mounted-file-systems/{guid}/download
Content-Type: application/json
{
"paths" : [ "...", "..." ]
}
HTTP/1.1 201 Created
Returns list of files specified by path.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for mounted file system (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | FileDetailsRequest (JSON) | specify path from which files will be listed |
media type | data type | description |
---|---|---|
application/json | array of FileDetailsListRecord (JSON) | list of files specified by path |
POST /mounted-file-systems/{guid}/listing
Content-Type: application/json
Accept: application/json
{
"path" : "..."
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"modified" : 12345,
"size" : 12345,
"owner" : "...",
"group" : "...",
"permissions" : "...",
"fileType" : "DIRECTORY",
"name" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]