Os modelos de Início Rápido do Azure estão atualmente disponíveis em inglês
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.
Este modelo de Gestor de Recursos do Azure (Azure Resource Manager, ARM) foi criado por um membro da comunidade e não pela Microsoft. Cada modelo de ARM está licenciado para si ao abrigo de um contrato de licença pelo respetivo proprietário e não pela Microsoft. A Microsoft não é responsável por modelos de ARM fornecidos e licenciados por membros da comunidade e não os analisa quanto a a segurança, compatibilidade ou desempenho. Os modelos de ARM da comunidade não são suportados ao abrigo de nenhum programa de suporte ou serviço da Microsoft e são disponibilizados TAL COMO ESTÃO sem qualquer tipo de garantia.
Parâmetros
Nome do Parâmetro | Descrição |
---|---|
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). |
Utilizar o modelo
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 deploymentInstalar e configurar o PowerShell para Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.recoveryservices/recovery-services-backup-file-share/azuredeploy.json
Linha de comandos
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 deploymentInstalar e Configurar a Interface de Linha de Comandos para Várias Plataformas do Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.recoveryservices/recovery-services-backup-file-share/azuredeploy.json