Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@
"x-ms-examples": {
"Restore a backup.": {
"$ref": "./examples/Backups/Restore.json"
},
"Restore a single role from backup.": {
"$ref": "./examples/Backups/SingleRepoRestore.json"
}
},
"description": "Restore a backup.",
Expand Down Expand Up @@ -275,6 +278,10 @@
"RestoreOptions": {
"description": "Properties for restore options.",
"properties": {
"roleName": {
"description": "The Azure Stack role name for restore, set it to empty for all infrastructure role",
"type": "string"
},
"decryptionCertBase64": {
"description": "The certificate file raw data in Base64 string. This should be the .pfx file with the private key.",
"type": "string"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"parameters": {
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "System.local",
"location": "local",
"backup": "64e8625a-8dc0-49df-a195-932901b4be81",
"restoreOptions": {
"roleName": "fakerp",
"decryptionCertBase64": "decryptionCert",
"decryptionCertPassword": "decryptionCertPassword"
},
"api-version": "2018-09-01"
},
"responses": {
"200": {},
"202": {}
}
}