├── .gitignore ├── CSPARMPricingCal ├── CSPARMPricingCalOps │ ├── CSPARMPricingCalculator.cs │ ├── CSPARMPricingCalculatorOps.csproj │ ├── DataModel │ │ ├── AADTokenDetails.cs │ │ ├── ARMParamValue.cs │ │ ├── ARMTemplate.cs │ │ ├── CSPARMPricingInfo.cs │ │ ├── CSPAccountCreds.cs │ │ ├── ComponentModel │ │ │ ├── PublicIPProperties.cs │ │ │ ├── StorageProperties.cs │ │ │ └── VMProperties.cs │ │ ├── Meter.cs │ │ ├── RateCard.cs │ │ ├── Resource.cs │ │ ├── ResourceComponent.cs │ │ ├── VMSKUVersion.cs │ │ ├── VMSKUVersionListItem.cs │ │ └── VMSizeList.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Util │ │ ├── AuthManager.cs │ │ ├── Constants.cs │ │ ├── Helper │ │ │ ├── ExceptionLogger.cs │ │ │ ├── Online │ │ │ │ ├── ARMAPIHelper.cs │ │ │ │ └── VMOnlineHelper.cs │ │ │ ├── PropertyHelper.cs │ │ │ ├── ResourceTypeHelper.cs │ │ │ ├── VMHelper.cs │ │ │ └── VMImageHelper.cs │ │ ├── RateCardUtil.cs │ │ ├── ResourceComponents │ │ │ ├── ComponentFetcher.cs │ │ │ ├── IComponentFetcher.cs │ │ │ ├── PublicIPComponentFetcher.cs │ │ │ └── VMComponentFetcher.cs │ │ └── ResourceRateCalc.cs │ └── packages.config ├── CSPARMPricingCalUI │ ├── App.config │ ├── CSPARMPricingCalculatorForm.Designer.cs │ ├── CSPARMPricingCalculatorForm.cs │ ├── CSPARMPricingCalculatorForm.resx │ ├── CSPARMPricingCalculatorUI.csproj │ ├── Constants.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Util │ │ └── FileUtil.cs │ └── packages.config ├── CSPARMPricingCalculator.sln └── TestData │ ├── azuredep.json │ └── azuredeploy.parameters.json ├── Documentation ├── app_setup.md ├── contributing.md ├── deployment.md └── images │ ├── app_setup │ ├── image1.png │ ├── image10.png │ ├── image11.jpg │ ├── image12.png │ ├── image13.png │ ├── image14.png │ ├── image15.png │ ├── image2.png │ ├── image3.png │ ├── image4.png │ ├── image5.png │ ├── image6.png │ ├── image7.png │ ├── image8.png │ └── image9.png │ └── deployment │ ├── image1.png │ ├── image10.png │ ├── image11.png │ ├── image12.png │ ├── image13.png │ ├── image14.png │ ├── image15.png │ ├── image2.png │ ├── image3.png │ ├── image4.png │ ├── image5.png │ ├── image6.png │ ├── image7.png │ ├── image8.png │ └── image9.png ├── LICENSE ├── README.md └── SECURITY.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/.gitignore -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/CSPARMPricingCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/CSPARMPricingCalculator.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/CSPARMPricingCalculatorOps.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/CSPARMPricingCalculatorOps.csproj -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/AADTokenDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/AADTokenDetails.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ARMParamValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ARMParamValue.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ARMTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ARMTemplate.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/CSPARMPricingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/CSPARMPricingInfo.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/CSPAccountCreds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/CSPAccountCreds.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ComponentModel/PublicIPProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ComponentModel/PublicIPProperties.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ComponentModel/StorageProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ComponentModel/StorageProperties.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ComponentModel/VMProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ComponentModel/VMProperties.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/Meter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/Meter.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/RateCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/RateCard.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/Resource.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ResourceComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/ResourceComponent.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/VMSKUVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/VMSKUVersion.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/VMSKUVersionListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/VMSKUVersionListItem.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/DataModel/VMSizeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/DataModel/VMSizeList.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/AuthManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/AuthManager.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/Constants.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/ExceptionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/ExceptionLogger.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/Online/ARMAPIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/Online/ARMAPIHelper.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/Online/VMOnlineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/Online/VMOnlineHelper.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/PropertyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/PropertyHelper.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/ResourceTypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/ResourceTypeHelper.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/VMHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/VMHelper.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/VMImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/Helper/VMImageHelper.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/RateCardUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/RateCardUtil.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/ResourceComponents/ComponentFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/ResourceComponents/ComponentFetcher.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/ResourceComponents/IComponentFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/ResourceComponents/IComponentFetcher.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/ResourceComponents/PublicIPComponentFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/ResourceComponents/PublicIPComponentFetcher.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/ResourceComponents/VMComponentFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/ResourceComponents/VMComponentFetcher.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/Util/ResourceRateCalc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/Util/ResourceRateCalc.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalOps/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalOps/packages.config -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/App.config -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/CSPARMPricingCalculatorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/CSPARMPricingCalculatorForm.Designer.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/CSPARMPricingCalculatorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/CSPARMPricingCalculatorForm.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/CSPARMPricingCalculatorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/CSPARMPricingCalculatorForm.resx -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/CSPARMPricingCalculatorUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/CSPARMPricingCalculatorUI.csproj -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/Constants.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/Program.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/Properties/Resources.resx -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/Properties/Settings.settings -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/Util/FileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/Util/FileUtil.cs -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalUI/packages.config -------------------------------------------------------------------------------- /CSPARMPricingCal/CSPARMPricingCalculator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/CSPARMPricingCalculator.sln -------------------------------------------------------------------------------- /CSPARMPricingCal/TestData/azuredep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/TestData/azuredep.json -------------------------------------------------------------------------------- /CSPARMPricingCal/TestData/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/CSPARMPricingCal/TestData/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Documentation/app_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/app_setup.md -------------------------------------------------------------------------------- /Documentation/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/contributing.md -------------------------------------------------------------------------------- /Documentation/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/deployment.md -------------------------------------------------------------------------------- /Documentation/images/app_setup/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image1.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image10.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image11.jpg -------------------------------------------------------------------------------- /Documentation/images/app_setup/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image12.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image13.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image14.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image15.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image2.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image3.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image4.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image5.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image6.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image7.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image8.png -------------------------------------------------------------------------------- /Documentation/images/app_setup/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/app_setup/image9.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image1.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image10.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image11.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image12.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image13.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image14.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image15.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image2.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image3.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image4.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image5.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image6.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image7.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image8.png -------------------------------------------------------------------------------- /Documentation/images/deployment/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/Documentation/images/deployment/image9.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CSPARMPricingCalculator/HEAD/SECURITY.md --------------------------------------------------------------------------------