Skip to main content

Restore the source directory from the volume Snapshot copy on the destination directory

Contributors

POST /storage/directory-restore

Introduced In: 9.15

Restores the source directory from the volume Snapshot copy on the destination directory.

Required Properties

  • vserver

  • volume.name

  • snapshot.name

  • source_path

  • restore_path

  • volume snapshot directory-restore start

# The API:
/api/storage/directory-restore

# The call:
curl -X POST "https://<mgmt_ip>/api/storage/directory-restore" -H "accept: application/hal+json" -d '{"svm":"vs1", "volume": "vol1", "snapshot": "sp1", "path": "/aaaa", "restore_path": "/bbbb"}'

# The response:
{
"job": {
  "uuid": "23b5ff3a-4743-11ee-a08d-005056bb9d00",
  "_links": {
    "self": {
      "href": "/api/cluster/jobs/23b5ff3a-4743-11ee-a08d-005056bb9d00"
    }
  }
}
}

Parameters

Name Type In Required Description

return_timeout

integer

query

False

The number of seconds to allow the call to execute before returning. When doing a POST, PATCH, or DELETE operation on a single record, the default is 0 seconds. This means that if an asynchronous operation is started, the server immediately returns HTTP code 202 (Accepted) along with a link to the job. If a non-zero value is specified for POST, PATCH, or DELETE operations, ONTAP waits that length of time to see if the job completes so it can return something other than 202.

  • Default value: 1

  • Max value: 120

  • Min value: 0

return_records

boolean

query

False

The default is false. If set to true, the records are returned.

  • Default value:

Request Body

Name Type Description

path

string

Source from where the directory is restored.

restore_path

string

Destination directory where the new directory tree is created.

snapshot

string

Name of the volume Snapshot copy from which the directory is restored.

volume

string

Name of the volume from which the Snapshot copy is used for directory restore.

vserver

string

Name of the SVM.

Example request
{
  "path": "src_file1, dir1/src_file2, ./.snapshot/snap1/src_file3",
  "restore_path": "dest_file1, dir1/dest_file2",
  "snapshot": "string",
  "volume": "string",
  "vserver": "string"
}

Response

Status: 202, Accepted
Name Type Description

path

string

Source from where the directory is restored.

restore_path

string

Destination directory where the new directory tree is created.

snapshot

string

Name of the volume Snapshot copy from which the directory is restored.

volume

string

Name of the volume from which the Snapshot copy is used for directory restore.

vserver

string

Name of the SVM.

Example response
{
  "path": "src_file1, dir1/src_file2, ./.snapshot/snap1/src_file3",
  "restore_path": "dest_file1, dir1/dest_file2",
  "snapshot": "string",
  "volume": "string",
  "vserver": "string"
}

Headers

Name Description Type

Location

Useful for tracking the resource location

string

Response

Status: 201, Created

Error

Status: Default

ONTAP Error Response Codes

Error Code Description

6488112

Directory restore can only be started on a directory.

6488113

Directory restore requires an effective cluster version of 9.15.1 or later.

6488114

Directory restore is not supported on FlexGroup constituent volumes.

6488115

Internal error. Failed to get node information for the volume with DSID "volume.dsid".

6488116

Directory restore is not supported on root directory. Use the "volume snapshot restore" command instead.

Also see the table of common errors in the Response body overview section of this documentation.

Name Type Description

error

returned_error

Example error
{
  "error": {
    "arguments": [
      {
        "code": "string",
        "message": "string"
      }
    ],
    "code": "4",
    "message": "entry doesn't exist",
    "target": "uuid"
  }
}

Definitions

See Definitions

directory_restore

Restores a directory from a volume Snapshot copy.

Name Type Description

path

string

Source from where the directory is restored.

restore_path

string

Destination directory where the new directory tree is created.

snapshot

string

Name of the volume Snapshot copy from which the directory is restored.

volume

string

Name of the volume from which the Snapshot copy is used for directory restore.

vserver

string

Name of the SVM.

error_arguments

Name Type Description

code

string

Argument code

message

string

Message argument

returned_error

Name Type Description

arguments

array[error_arguments]

Message arguments

code

string

Error code

message

string

Error message

target

string

The target parameter that caused the error.