The Azure Quickstart templates are currently available in English
This template configures protection for an existing File Share present in an existing Storage Account. It creates a new or uses an existing Recovery Services Vault and Backup Policy based on the set parameter values.
Denne Azure Resource Manager (ARM)-malen ble opprettet av et medlem av fellesskapet og ikke av Microsoft. Hver ARM-mal er lisensiert til deg i henhold til en lisensavtale med eieren, ikke med Microsoft. Microsoft er ikke ansvarlig for ARM-maler som leveres og lisensieres av medlemmer og siler dem ikke ut med tanke på sikkerhet, kompatibilitet eller ytelse. Fellesskapets ARM-maler støttes ikke av noe Microsoft-støtteprogram eller -tjeneste, og er gjort tilgjengelig SOM DE ER, uten noen form for garanti.
Parametere
Parameternavn | Beskrivelse |
---|---|
existingResourceGroupName | Name of the existing Resource Group in which the existing Storage Account is present. |
existingStorageAccountName | Name of the existing Storage Account in which the existing File Share to be protected is present. |
existingFileShareName | Name of the existing File Share to be protected. |
location | Location of the existing Storage Account containing the existing File Share to be protected. New Recovery Services Vault will be created in this location. (Ignore if using existing Recovery Services Vault). |
isNewVault | Set to true if a new Recovery Services Vault is to be created; set to false otherwise. |
isNewPolicy | Set to true if a new Backup Policy is to be created for the Recovery Services Vault; set to false otherwise. |
registerStorageAccount | Set to true if the existing Storage Account has to be registered to the Recovery Services Vault; set to false otherwise. |
vaultName | Name of the Recovery Services Vault. (Should have the same location as the Storage Account containing the File Share to be protected in case of an existing Recovery Services Vault). |
policyName | Name of the Backup Policy. |
scheduleRunTime | Time of day when backup should be triggered in 24 hour HH:MM format, where MM must be 00 or 30. (Ignore if using existing Backup Policy). |
timeZone | Any valid timezone, for example: UTC, Pacific Standard Time. Refer: https://msdn.microsoft.com/en-us/library/gg154758.aspx (Ignore if using existing Backup Policy). |
dailyRetentionDurationCount | Number of days for which the daily backup is to be retained. (Ignore if using existing Backup Policy). |
daysOfTheWeek | Array of days on which backup is to be performed for Weekly Retention. (Ignore if using existing Backup Policy). |
weeklyRetentionDurationCount | Number of weeks for which the weekly backup is to be retained. (Ignore if using existing Backup Policy). |
monthlyRetentionDurationCount | Number of months for which the monthly backup is to be retained. Backup will be performed on the 1st day of every month. (Ignore if using existing Backup Policy). |
monthsOfYear | Array of months on which backup is to be performed for Yearly Retention. Backup will be performed on the 1st day of each month of year provided. (Ignore if using existing Backup Policy). |
yearlyRetentionDurationCount | Number of years for which the yearly backup is to be retained. (Ignore if using existing Backup Policy). |
Bruke malen
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstallere og konfigurere Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-recovery-services-backup-file-share/azuredeploy.json
Kommandolinje
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstaller og konfigurer Azures kommandolinjegrensesnitt for alle plattformer
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-recovery-services-backup-file-share/azuredeploy.json