Mounted File Systems Downloader Controller Resource

GET /mounted-file-systems/downloader

Request Parameters
name type description constraints multivalued
direction query   no
filter query   no
nameLike query   no
orderBy query   no
page query   no
protected-entity-type query "APP" or "CLOUD" or "CLOUD_GROUP" or "CLOUD_SITE" or "CLOUD_TEAMS" or "CLOUD_USER" or "OS" or "OS_AGENT" or "STORAGE" or "VM" no
size query   no
status-in query "CANCELLED" or "EXPIRED" or "FAILED" or "FAILED_REMOVED" or "IN_PROGRESS" or "PENDING_REMOVE" or "QUEUED" or "READY" or "REMOVED" yes
Response Body
media type data type description
application/json array of PreparedDownloadDto (JSON)

Example

Request
GET /mounted-file-systems/downloader
Content-Type: */*
Accept: application/json

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
[ {
  "removable" : true
} ]
                
              

POST /mounted-file-systems/downloader/prepare

Request Body
media type data type
application/json PrepareDownloadRequestDto (JSON)

Example

Request
POST /mounted-file-systems/downloader/prepare
Content-Type: application/json

                
{ }
                
              
Response
HTTP/1.1 201 Created

              

DELETE /mounted-file-systems/downloader/{guid}

Request Parameters
name type description
guid path

Example

Request
DELETE /mounted-file-systems/downloader/{guid}
Content-Type: application/json

                
...
                
              
Response
HTTP/1.1 204 No Content

              

GET /mounted-file-systems/downloader/{guid}/content-download

Request Parameters
name type description
guid path
Response Body
media type data type description
application/zip object

Example

Request
GET /mounted-file-systems/downloader/{guid}/content-download
Content-Type: */*
Accept: application/zip

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/zip

                
...