├── .gitignore ├── AzurePSDrive.Format.ps1xml ├── AzurePSDrive.psd1 ├── AzurePSDrive.psm1 ├── AzurePSDriveResource.psm1 ├── AzurePSDriveStorageAccount.psm1 ├── AzurePSDriveVM.psm1 ├── AzurePSDriveWebApp.psm1 ├── LICENSE.txt ├── Readme.md ├── Tests ├── AzurePSDrive.Tests.ps1 ├── AzureRMAcceptanceTest.ps1 └── Test.psm1 └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | /Tests/AzurePSDrive.TestResults.xml 3 | -------------------------------------------------------------------------------- /AzurePSDrive.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/AzurePSDrive.Format.ps1xml -------------------------------------------------------------------------------- /AzurePSDrive.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/AzurePSDrive.psd1 -------------------------------------------------------------------------------- /AzurePSDrive.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/AzurePSDrive.psm1 -------------------------------------------------------------------------------- /AzurePSDriveResource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/AzurePSDriveResource.psm1 -------------------------------------------------------------------------------- /AzurePSDriveStorageAccount.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/AzurePSDriveStorageAccount.psm1 -------------------------------------------------------------------------------- /AzurePSDriveVM.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/AzurePSDriveVM.psm1 -------------------------------------------------------------------------------- /AzurePSDriveWebApp.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/AzurePSDriveWebApp.psm1 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/Readme.md -------------------------------------------------------------------------------- /Tests/AzurePSDrive.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/Tests/AzurePSDrive.Tests.ps1 -------------------------------------------------------------------------------- /Tests/AzureRMAcceptanceTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/Tests/AzureRMAcceptanceTest.ps1 -------------------------------------------------------------------------------- /Tests/Test.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/Tests/Test.psm1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/AzurePSDrive/HEAD/appveyor.yml --------------------------------------------------------------------------------