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 @@ -130,7 +130,6 @@
<Compile Include="ScenarioTests\AzureBackupItemTestCases.cs" />
<Compile Include="ScenarioTests\AzureBackupJobTests.cs" />
<Compile Include="ScenarioTests\AzureBackupPolicyTests.cs" />
<Compile Include="ScenarioTests\AzureBackupScenarioTests.cs" />
<Compile Include="ScenarioTests\AzureBackupTestBase.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ScenarioTests\AzureBackupVaultTests.cs">
Expand Down Expand Up @@ -172,9 +171,6 @@
<None Include="ScenarioTests\AzureBackupPolicyTests.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="ScenarioTests\AzureBackupScenarioTests.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="ScenarioTests\AzureBackupVaultTests.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
Expand Down Expand Up @@ -259,7 +255,7 @@
<Error Condition="!Exists('..\..\..\packages\xunit.runner.visualstudio.2.1.0-beta4-build1109\build\net20\xunit.runner.visualstudio.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\xunit.runner.visualstudio.2.1.0-beta4-build1109\build\net20\xunit.runner.visualstudio.props'))" />
</Target>
<Import Project="..\..\..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\..\..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
# ----------------------------------------------------------------------------------

$ResourceGroupName = "backuprg"
$ResourceName = "backuprn"
$ContainerName = "iaasvmcontainer;hydrarecordvm;hydrarecordvm"
$ResourceName = "backuprn2"
$ContainerName = "iaasvmcontainer;powershellbvt1;powershellbvt1"
$ContainerType = "IaasVMContainer"
$DataSourceType = "IaasVM"
$DataSourceId = "17593283453810"
$Location = "SouthEast Asia"
$Location = "westus"
$PolicyName = "ProtPolicy01";
$PolicyId = "/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/protectionPolicies/DefaultPolicy";
$POName = "hydrarecordvm"
$itemName = "iaasvmcontainer;hydrarecordvm;hydrarecordvm"
$PolicyId = "/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn2/protectionPolicies/DefaultPolicy";
$POName = "powershellbvt1"
$itemName = "iaasvmcontainer;powershellbvt1;powershellbvt1"


function Test-GetAzureBackupItemTests
Expand Down Expand Up @@ -81,4 +81,4 @@ function Test-DisableAzureBackupProtection
$azureBackUpItem.ItemName = $itemName
$azureBackUpItem.Name = $POName
$jobId1 = Disable-AzureRmBackupProtection -Item $azureBackUpItem -Force
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# ----------------------------------------------------------------------------------

$ResourceGroupName = "backuprg"
$ResourceName = "backuprn"
$ResourceName = "backuprn2"
$DataSourceType = "VM"
$Location = "SouthEast Asia"
$Location = "westus"
$PolicyName = "Policy10";
$PolicyId = "c87bbada-6e1b-4db2-b76c-9062d28959a4";
$POName = "iaasvmcontainer;hydrarecordvm;hydrarecordvm"
Expand Down Expand Up @@ -97,4 +97,4 @@ function Test-RemoveAzureBackupProtectionPolicyTests
$protectionPolicy = Get-AzureRmBackupProtectionPolicy -vault $vault -Name $PolicyName

Remove-AzureRmBackupProtectionPolicy -ProtectionPolicy $protectionPolicy -Force
}
}

This file was deleted.

Loading