SecureRestore
Trigger this action to restore a secure backup to an appliance.
Use the HTTP POST method with the resource
/mgmt/actionqueue/default
, specifying
a request payload with the following format:{
"SecureRestore": {
"cred": {
"value": "credential"
},
"source": "source",
"validate": "on|off"
}
}
- credential
- String
- source
- String
- validate
- Boolean
Example
To restore a secure backup in the temporary:///myBackupDir/ folder using the
myCert
certificate, , overwriting and replacing the system configuration, post the
following payload to
https://yourhost:5554/mgmt/actionqueue/default
:{
"SecureRestore": {
"cred": {
"value": "myCred"
},
"source": "temporary:///myBackupDir/",
"validate": "off"
}
}