├── .gitignore ├── .vs ├── VSWorkspaceState.json ├── automating-azure-analysis-services │ └── v15 │ │ └── .suo └── config │ └── applicationhost.config ├── ADFv2 ├── ProcessAzureAS MSI.json ├── ProcessAzureAS.json ├── ResumeAzureAS MSI.json └── ResumeAzureAS.json ├── AutoStartAzureAS ├── .vs │ └── config │ │ └── applicationhost.config ├── App_Start │ ├── BundleConfig.cs │ └── RouteConfig.cs ├── ApplicationInsights.config ├── AutoStart │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Default.aspx.designer.cs │ ├── Model.odc │ ├── ODC.aspx │ ├── ODC.aspx.cs │ └── ODC.aspx.designer.cs ├── AutoStartAzureAS.csproj ├── AutoStartAzureAS.csproj.user ├── AutoStartAzureAS.sln ├── Bundle.config ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Global.asax ├── Global.asax.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scripts │ ├── WebForms │ │ ├── DetailsView.js │ │ ├── Focus.js │ │ ├── GridView.js │ │ ├── MSAjax │ │ │ ├── MicrosoftAjax.js │ │ │ ├── MicrosoftAjaxApplicationServices.js │ │ │ ├── MicrosoftAjaxComponentModel.js │ │ │ ├── MicrosoftAjaxCore.js │ │ │ ├── MicrosoftAjaxGlobalization.js │ │ │ ├── MicrosoftAjaxHistory.js │ │ │ ├── MicrosoftAjaxNetwork.js │ │ │ ├── MicrosoftAjaxSerialization.js │ │ │ ├── MicrosoftAjaxTimer.js │ │ │ ├── MicrosoftAjaxWebForms.js │ │ │ └── MicrosoftAjaxWebServices.js │ │ ├── Menu.js │ │ ├── MenuStandards.js │ │ ├── SmartNav.js │ │ ├── TreeView.js │ │ ├── WebForms.js │ │ ├── WebParts.js │ │ └── WebUIValidation.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── Site.Master ├── Site.Master.cs ├── Site.Master.designer.cs ├── Site.Mobile.Master ├── Site.Mobile.Master.cs ├── Site.Mobile.Master.designer.cs ├── ViewSwitcher.ascx ├── ViewSwitcher.ascx.cs ├── ViewSwitcher.ascx.designer.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config ├── AzureAutomation ├── PauseAzureAS.ps1 ├── ProcessAzureAS.ps1 └── ResumeAzureAS.ps1 ├── BackupRestore ├── BackupSsasRestoreAzureAS.ps1 └── Microsoft.WindowsAzure.Storage.dll ├── LICENSE ├── LinkedServer └── SQL Linked Server to Azure Analysis Services.sql ├── PauseIfNoQueries └── PauseAzureAnalysisServicesIfNoQueries.ps1 ├── README.md ├── SSIS ├── .vs │ └── AutomatingAzureAnalysisServicesSSIS │ │ └── v14 │ │ └── .suo ├── AutomatingAzureAnalysisServicesSSIS.database ├── AutomatingAzureAnalysisServicesSSIS.dtproj ├── AutomatingAzureAnalysisServicesSSIS.dtproj.user ├── AutomatingAzureAnalysisServicesSSIS.sln ├── ProcessAzureAS-App.dtsx ├── ProcessAzureAS-UsernamePassword.dtsx └── Project.params ├── automating-azure-analysis-services.sln └── images └── AdfMsiID.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/automating-azure-analysis-services/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/.vs/automating-azure-analysis-services/v15/.suo -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /ADFv2/ProcessAzureAS MSI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/ADFv2/ProcessAzureAS MSI.json -------------------------------------------------------------------------------- /ADFv2/ProcessAzureAS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/ADFv2/ProcessAzureAS.json -------------------------------------------------------------------------------- /ADFv2/ResumeAzureAS MSI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/ADFv2/ResumeAzureAS MSI.json -------------------------------------------------------------------------------- /ADFv2/ResumeAzureAS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/ADFv2/ResumeAzureAS.json -------------------------------------------------------------------------------- /AutoStartAzureAS/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /AutoStartAzureAS/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/ApplicationInsights.config -------------------------------------------------------------------------------- /AutoStartAzureAS/AutoStart/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/AutoStart/Default.aspx -------------------------------------------------------------------------------- /AutoStartAzureAS/AutoStart/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/AutoStart/Default.aspx.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/AutoStart/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/AutoStart/Default.aspx.designer.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/AutoStart/Model.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/AutoStart/Model.odc -------------------------------------------------------------------------------- /AutoStartAzureAS/AutoStart/ODC.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/AutoStart/ODC.aspx -------------------------------------------------------------------------------- /AutoStartAzureAS/AutoStart/ODC.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/AutoStart/ODC.aspx.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/AutoStart/ODC.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/AutoStart/ODC.aspx.designer.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/AutoStartAzureAS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/AutoStartAzureAS.csproj -------------------------------------------------------------------------------- /AutoStartAzureAS/AutoStartAzureAS.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/AutoStartAzureAS.csproj.user -------------------------------------------------------------------------------- /AutoStartAzureAS/AutoStartAzureAS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/AutoStartAzureAS.sln -------------------------------------------------------------------------------- /AutoStartAzureAS/Bundle.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Bundle.config -------------------------------------------------------------------------------- /AutoStartAzureAS/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Content/Site.css -------------------------------------------------------------------------------- /AutoStartAzureAS/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Content/bootstrap.css -------------------------------------------------------------------------------- /AutoStartAzureAS/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Content/bootstrap.min.css -------------------------------------------------------------------------------- /AutoStartAzureAS/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Default.aspx -------------------------------------------------------------------------------- /AutoStartAzureAS/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Default.aspx.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Default.aspx.designer.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Global.asax -------------------------------------------------------------------------------- /AutoStartAzureAS/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Global.asax.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Properties/Settings.settings -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/DetailsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/DetailsView.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/Focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/Focus.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/GridView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/GridView.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjax.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/Menu.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/MenuStandards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/MenuStandards.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/SmartNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/SmartNav.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/TreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/TreeView.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/WebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/WebForms.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/WebParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/WebParts.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/WebForms/WebUIValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/WebForms/WebUIValidation.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/bootstrap.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/respond.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Scripts/respond.min.js -------------------------------------------------------------------------------- /AutoStartAzureAS/Site.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Site.Master -------------------------------------------------------------------------------- /AutoStartAzureAS/Site.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Site.Master.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/Site.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Site.Master.designer.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/Site.Mobile.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Site.Mobile.Master -------------------------------------------------------------------------------- /AutoStartAzureAS/Site.Mobile.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Site.Mobile.Master.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/Site.Mobile.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Site.Mobile.Master.designer.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/ViewSwitcher.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/ViewSwitcher.ascx -------------------------------------------------------------------------------- /AutoStartAzureAS/ViewSwitcher.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/ViewSwitcher.ascx.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/ViewSwitcher.ascx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/ViewSwitcher.ascx.designer.cs -------------------------------------------------------------------------------- /AutoStartAzureAS/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Web.Debug.config -------------------------------------------------------------------------------- /AutoStartAzureAS/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Web.Release.config -------------------------------------------------------------------------------- /AutoStartAzureAS/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/Web.config -------------------------------------------------------------------------------- /AutoStartAzureAS/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/favicon.ico -------------------------------------------------------------------------------- /AutoStartAzureAS/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /AutoStartAzureAS/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /AutoStartAzureAS/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /AutoStartAzureAS/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /AutoStartAzureAS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AutoStartAzureAS/packages.config -------------------------------------------------------------------------------- /AzureAutomation/PauseAzureAS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AzureAutomation/PauseAzureAS.ps1 -------------------------------------------------------------------------------- /AzureAutomation/ProcessAzureAS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AzureAutomation/ProcessAzureAS.ps1 -------------------------------------------------------------------------------- /AzureAutomation/ResumeAzureAS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/AzureAutomation/ResumeAzureAS.ps1 -------------------------------------------------------------------------------- /BackupRestore/BackupSsasRestoreAzureAS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/BackupRestore/BackupSsasRestoreAzureAS.ps1 -------------------------------------------------------------------------------- /BackupRestore/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/BackupRestore/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/LICENSE -------------------------------------------------------------------------------- /LinkedServer/SQL Linked Server to Azure Analysis Services.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/LinkedServer/SQL Linked Server to Azure Analysis Services.sql -------------------------------------------------------------------------------- /PauseIfNoQueries/PauseAzureAnalysisServicesIfNoQueries.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/PauseIfNoQueries/PauseAzureAnalysisServicesIfNoQueries.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/README.md -------------------------------------------------------------------------------- /SSIS/.vs/AutomatingAzureAnalysisServicesSSIS/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/SSIS/.vs/AutomatingAzureAnalysisServicesSSIS/v14/.suo -------------------------------------------------------------------------------- /SSIS/AutomatingAzureAnalysisServicesSSIS.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/SSIS/AutomatingAzureAnalysisServicesSSIS.database -------------------------------------------------------------------------------- /SSIS/AutomatingAzureAnalysisServicesSSIS.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/SSIS/AutomatingAzureAnalysisServicesSSIS.dtproj -------------------------------------------------------------------------------- /SSIS/AutomatingAzureAnalysisServicesSSIS.dtproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/SSIS/AutomatingAzureAnalysisServicesSSIS.dtproj.user -------------------------------------------------------------------------------- /SSIS/AutomatingAzureAnalysisServicesSSIS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/SSIS/AutomatingAzureAnalysisServicesSSIS.sln -------------------------------------------------------------------------------- /SSIS/ProcessAzureAS-App.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/SSIS/ProcessAzureAS-App.dtsx -------------------------------------------------------------------------------- /SSIS/ProcessAzureAS-UsernamePassword.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/SSIS/ProcessAzureAS-UsernamePassword.dtsx -------------------------------------------------------------------------------- /SSIS/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/SSIS/Project.params -------------------------------------------------------------------------------- /automating-azure-analysis-services.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/automating-azure-analysis-services.sln -------------------------------------------------------------------------------- /images/AdfMsiID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furmangg/automating-azure-analysis-services/HEAD/images/AdfMsiID.png --------------------------------------------------------------------------------