├── .gitattributes ├── .gitignore ├── README.md ├── Samples ├── 001-helloworld │ ├── assets │ │ └── image.png │ └── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ └── blank.json ├── 002-hellofunctions │ ├── assets │ │ └── image.png │ └── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ └── functions │ │ └── greet │ │ └── run.csx ├── 003-authorization │ ├── assets │ │ └── image.png │ └── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ └── functions │ │ └── performAuthorizedOperation │ │ ├── project.json │ │ └── run.csx ├── 004-cognitiveservices │ ├── assets │ │ ├── image.png │ │ └── template.index.html │ └── core │ │ ├── Manifest.xml │ │ ├── arm │ │ ├── createCognitiveServicesAccount.json │ │ └── setupCors.json │ │ ├── functions │ │ ├── analyzeFaces │ │ │ ├── function.json │ │ │ ├── project.json │ │ │ └── run.csx │ │ └── createWebsite │ │ │ ├── function.json │ │ │ └── run.csx │ │ └── markdown │ │ ├── Instructions.md │ │ └── Summary.md ├── 005-documentdb │ ├── assets │ │ └── image.png │ └── core │ │ ├── Manifest.xml │ │ ├── arm │ │ ├── documentDb.json │ │ └── publishConnectionStrings.json │ │ ├── functions │ │ └── createDatabase │ │ │ ├── project.json │ │ │ └── run.csx │ │ └── markdown │ │ ├── Instructions.md │ │ └── Summary.md ├── 006-webapp │ ├── assets │ │ └── image.png │ ├── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ └── deployWebApp.json │ └── src │ │ ├── Common.Build.settings │ │ ├── Common.Build.targets │ │ ├── WebApp │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── WebApp.csproj │ │ ├── favicon.ico │ │ └── index.cshtml │ │ ├── WebApplication.Build.targets │ │ ├── dirs.proj │ │ ├── nugetRestore.cmd │ │ └── packages.config ├── 007-blobupload │ ├── assets │ │ ├── blobs │ │ │ ├── readme.txt │ │ │ └── saw.png │ │ └── image.png │ └── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ └── functions │ │ └── PopulateStorageContainer │ │ └── run.csx ├── 009-twitterstreaming │ ├── assets │ │ ├── dashboards │ │ │ ├── StreamingTweetsDesktop.pbix │ │ │ └── StreamingTweetsEmbedded.pbix │ │ └── image.png │ ├── core │ │ ├── CreateResourcesArm.json │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ └── functions │ │ │ ├── executeSqlQuery │ │ │ ├── project.json │ │ │ └── run.csx │ │ │ └── startStreamingJob │ │ │ ├── project.json │ │ │ └── run.csx │ └── src │ │ ├── build.proj │ │ └── jobs │ │ └── continuous │ │ └── TwitterClient │ │ ├── requirements.txt │ │ ├── run.ps1 │ │ ├── settings.job │ │ └── twitterClient.py ├── 010-azuresqldatabase │ ├── assets │ │ └── azuresqldatabase.png │ └── core │ │ ├── CreateSQLdatabaseArm.json │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ └── Summary.md ├── 011-chickenandegg │ ├── assets │ │ └── chicken.jpg │ └── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ └── functions │ │ └── hatch │ │ └── run.csx ├── 012-mlwebsvc │ ├── assets │ │ └── MlWebSvcPattern.JPG │ └── core │ │ ├── Manifest.xml │ │ ├── MlWebSvcInstructions.md │ │ └── MlWebSvcSummary.md ├── 013-mlwebsvcs │ ├── assets │ │ └── MlWebSvcPattern.JPG │ └── core │ │ ├── Manifest.xml │ │ ├── MlWebSvcInstructions.md │ │ └── MlWebSvcSummary.md ├── 014-hellojs │ ├── assets │ │ └── node.png │ └── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ └── functions │ │ └── greet │ │ ├── function.json │ │ └── index.js ├── 015-eggincubator │ ├── assets │ │ ├── chicken-plus-plus.png │ │ ├── dashboard.pbix │ │ └── incubator.jpg │ └── core │ │ ├── Incubator.md │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ ├── functions │ │ ├── hatch │ │ │ ├── SolutionDataTable.csx │ │ │ ├── project.json │ │ │ └── run.csx │ │ └── prepsql │ │ │ ├── prepareDatabase.sql │ │ │ ├── project.json │ │ │ └── run.csx │ │ └── sqlserver.json ├── 016-powershell │ ├── assets │ │ └── KeepCalmPowerShell.jpg │ └── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ └── functions │ │ └── createWebsite │ │ ├── index.html │ │ └── run.ps1 ├── 017-kafka │ ├── README.md │ ├── assets │ │ ├── kafka.png │ │ └── kafkaArchitecture.png │ └── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Prereqs.md │ │ ├── README.md │ │ ├── Summary.md │ │ ├── create-linux-based-kafka-spark-cluster-in-vnet-v4.1.json │ │ └── functions │ │ └── CopyScripts │ │ ├── Resources │ │ └── scripts │ │ │ └── notebooks │ │ │ ├── PowerShell │ │ │ └── kafka.ps1 │ │ │ ├── PySpark │ │ │ ├── pySpark+2.0+modeling+MLADS.ipynb │ │ │ └── pySpark_2.0_modeling_MLADS_HDInsight.ipynb │ │ │ └── Streaming │ │ │ ├── Spark-structured-streaming-from-Kafka.ipynb │ │ │ └── Stream-Tweets-To-Kafka.ipynb │ │ ├── project.json │ │ └── run.csx ├── 018-linuxdsvm │ ├── README.md │ ├── assets │ │ ├── DSVMEditionSidebySideComparison.png │ │ ├── DSVMIcon115.png │ │ ├── TakeAFreeTestDrive.png │ │ └── linuxdatasciencevm.png │ └── core │ │ ├── LinuxDataScienceArmTemplate.json │ │ ├── LinuxDataScienceInstructions.md │ │ ├── LinuxDataScienceSummary.md │ │ ├── Manifest.xml │ │ └── PreReqs.md ├── 019-windowsdsvm │ ├── README.md │ ├── assets │ │ ├── DSVMEditionSidebySideComparison.png │ │ ├── DSVMIcon115.png │ │ └── datasciencevm.png │ └── core │ │ ├── DataScienceArmTemplate.json │ │ ├── DataScienceInstructions.md │ │ ├── DataScienceSummary.md │ │ ├── Manifest.xml │ │ └── PreReqs.md ├── 020-pythonflask │ ├── assets │ │ └── image.png │ └── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ └── azuredeploy.json ├── 021-polarbear │ ├── assets │ │ ├── 3DMap.xlsx │ │ ├── dashboards │ │ │ ├── PolarBearDesktop.pbix │ │ │ └── PolarBearEmbedded.pbix │ │ ├── polarbear.csv │ │ └── polarcubs.jpg │ └── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ ├── functions │ │ └── prepsql │ │ │ ├── prepareDatabase.sql │ │ │ ├── project.json │ │ │ └── run.csx │ │ └── sqlserver.json ├── 022-twittertimeseriesinsights │ ├── README.md │ ├── assets │ │ ├── dashboards │ │ │ ├── StreamingTweetsDesktop.pbix │ │ │ └── StreamingTweetsEmbedded.pbix │ │ ├── timeseriesinsight.png │ │ └── twittertimeseriesinsights.jpg │ ├── core │ │ ├── CreateResourcesArm.json │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ └── functions │ │ │ ├── executeSqlQuery │ │ │ ├── project.json │ │ │ └── run.csx │ │ │ └── startStreamingJob │ │ │ ├── project.json │ │ │ └── run.csx │ └── src │ │ ├── build.proj │ │ └── jobs │ │ └── continuous │ │ └── TwitterClient │ │ ├── requirements.txt │ │ ├── run.ps1 │ │ ├── settings.job │ │ └── twitterClient.py ├── 023-mlwebservice │ ├── assets │ │ └── vienna.png │ └── core │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ ├── Summary.md │ │ └── resources.json ├── 024-streamingwithml │ ├── assets │ │ ├── dashboards │ │ │ ├── StreamingTweetsDesktop.pbix │ │ │ └── StreamingTweetsEmbedded.pbix │ │ └── image.png │ └── core │ │ ├── CreateResourcesArm.json │ │ ├── Instructions.md │ │ ├── Manifest.xml │ │ └── functions │ │ ├── eventHubListener │ │ ├── function.json │ │ ├── project.json │ │ └── run.csx │ │ └── executeSqlQuery │ │ ├── project.json │ │ └── run.csx └── README.md └── docs ├── Gemfile ├── README.md ├── _config.yml ├── _includes ├── head.html └── header.html ├── _layouts ├── default.html └── post.html ├── _posts ├── 2017-03-01-release.md ├── 2017-03-23-release.md ├── 2017-03-28-release.md ├── 2017-04-06-release.md ├── 2017-04-14-release.md ├── 2017-05-02-release.md ├── 2017-05-09-release.md ├── 2017-05-16-release.md ├── 2017-05-23-release.md ├── 2017-06-06-release.md ├── 2017-06-13-release.md ├── 2017-06-20-release.md ├── 2017-06-27-release.md ├── 2017-07-05-release.md ├── 2017-07-11-release.md ├── 2017-07-14-release.md ├── 2017-07-31-release.md └── 2017-12-12-release.md ├── _sass └── saw.scss ├── assets └── css │ └── style.scss ├── faq.md ├── getting-started.md ├── images ├── CIG1-e.PNG ├── CIG2-e.PNG ├── CIG3-e.PNG ├── DeployToAzure.PNG ├── bash-jekyll-local.jpg ├── comments.PNG ├── dsvm.PNG ├── error-message.PNG ├── essential-solution-components.jpg ├── faq-1.png ├── faq-2.png ├── faq-3.PNG ├── faq-4.png ├── faq-5.png ├── faq-6.png ├── faq-7.png ├── faq-8.png ├── github-pages-settings.jpg ├── github-pull-request.jpg ├── helloworld-create.jpg ├── helloworld-deployment.jpg ├── helloworld-ready.jpg ├── ingredient-in-ci-gallery.png ├── location.png ├── pbi11-2.png ├── pbi11.png ├── pbi3.png ├── pbi4.png ├── pbi5-2.png ├── pbi5.png ├── pbi6.png ├── pbi7.png ├── pbi8.png ├── pbi9-2.png ├── pbi9.png ├── push-helloworld.gif ├── register.png ├── register2.png ├── register3.png ├── resource-group-empty.jpg ├── samples.jpg ├── saw-legacy.png ├── sawlocal.png ├── sawweb.png ├── sharing.png ├── skus-dynamic.PNG └── switch.png ├── index.md ├── powerbi-configurations.md ├── release-notes.md ├── rest-api.md ├── solution-authoring.md ├── solution-prices.md └── tutorial.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/README.md -------------------------------------------------------------------------------- /Samples/001-helloworld/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/001-helloworld/assets/image.png -------------------------------------------------------------------------------- /Samples/001-helloworld/core/Instructions.md: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /Samples/001-helloworld/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/001-helloworld/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/001-helloworld/core/Summary.md: -------------------------------------------------------------------------------- 1 | Just a blank solution. -------------------------------------------------------------------------------- /Samples/001-helloworld/core/blank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/001-helloworld/core/blank.json -------------------------------------------------------------------------------- /Samples/002-hellofunctions/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/002-hellofunctions/assets/image.png -------------------------------------------------------------------------------- /Samples/002-hellofunctions/core/Instructions.md: -------------------------------------------------------------------------------- 1 | The function said: **{Outputs.message}** -------------------------------------------------------------------------------- /Samples/002-hellofunctions/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/002-hellofunctions/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/002-hellofunctions/core/Summary.md: -------------------------------------------------------------------------------- 1 | A basic solution with a custom function. -------------------------------------------------------------------------------- /Samples/002-hellofunctions/core/functions/greet/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/002-hellofunctions/core/functions/greet/run.csx -------------------------------------------------------------------------------- /Samples/003-authorization/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/003-authorization/assets/image.png -------------------------------------------------------------------------------- /Samples/003-authorization/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/003-authorization/core/Instructions.md -------------------------------------------------------------------------------- /Samples/003-authorization/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/003-authorization/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/003-authorization/core/Summary.md: -------------------------------------------------------------------------------- 1 | A basic solution with a custom function. -------------------------------------------------------------------------------- /Samples/003-authorization/core/functions/performAuthorizedOperation/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/003-authorization/core/functions/performAuthorizedOperation/project.json -------------------------------------------------------------------------------- /Samples/003-authorization/core/functions/performAuthorizedOperation/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/003-authorization/core/functions/performAuthorizedOperation/run.csx -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/004-cognitiveservices/assets/image.png -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/assets/template.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/004-cognitiveservices/assets/template.index.html -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/004-cognitiveservices/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/core/arm/createCognitiveServicesAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/004-cognitiveservices/core/arm/createCognitiveServicesAccount.json -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/core/arm/setupCors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/004-cognitiveservices/core/arm/setupCors.json -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/core/functions/analyzeFaces/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/004-cognitiveservices/core/functions/analyzeFaces/function.json -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/core/functions/analyzeFaces/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/004-cognitiveservices/core/functions/analyzeFaces/project.json -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/core/functions/analyzeFaces/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/004-cognitiveservices/core/functions/analyzeFaces/run.csx -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/core/functions/createWebsite/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/004-cognitiveservices/core/functions/createWebsite/function.json -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/core/functions/createWebsite/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/004-cognitiveservices/core/functions/createWebsite/run.csx -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/core/markdown/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/004-cognitiveservices/core/markdown/Instructions.md -------------------------------------------------------------------------------- /Samples/004-cognitiveservices/core/markdown/Summary.md: -------------------------------------------------------------------------------- 1 | Creating a viral app. -------------------------------------------------------------------------------- /Samples/005-documentdb/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/005-documentdb/assets/image.png -------------------------------------------------------------------------------- /Samples/005-documentdb/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/005-documentdb/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/005-documentdb/core/arm/documentDb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/005-documentdb/core/arm/documentDb.json -------------------------------------------------------------------------------- /Samples/005-documentdb/core/arm/publishConnectionStrings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/005-documentdb/core/arm/publishConnectionStrings.json -------------------------------------------------------------------------------- /Samples/005-documentdb/core/functions/createDatabase/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/005-documentdb/core/functions/createDatabase/project.json -------------------------------------------------------------------------------- /Samples/005-documentdb/core/functions/createDatabase/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/005-documentdb/core/functions/createDatabase/run.csx -------------------------------------------------------------------------------- /Samples/005-documentdb/core/markdown/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/005-documentdb/core/markdown/Instructions.md -------------------------------------------------------------------------------- /Samples/005-documentdb/core/markdown/Summary.md: -------------------------------------------------------------------------------- 1 | Using DocumentDb and Azure Functions. -------------------------------------------------------------------------------- /Samples/006-webapp/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/assets/image.png -------------------------------------------------------------------------------- /Samples/006-webapp/core/Instructions.md: -------------------------------------------------------------------------------- 1 | ## Instructions 2 | 3 | ## Your [Sample Web App]({Outputs.websiteUrl}) is ready! -------------------------------------------------------------------------------- /Samples/006-webapp/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/006-webapp/core/Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/core/Summary.md -------------------------------------------------------------------------------- /Samples/006-webapp/core/deployWebApp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/core/deployWebApp.json -------------------------------------------------------------------------------- /Samples/006-webapp/src/Common.Build.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/Common.Build.settings -------------------------------------------------------------------------------- /Samples/006-webapp/src/Common.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/Common.Build.targets -------------------------------------------------------------------------------- /Samples/006-webapp/src/WebApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/WebApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/006-webapp/src/WebApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/WebApp/Web.Debug.config -------------------------------------------------------------------------------- /Samples/006-webapp/src/WebApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/WebApp/Web.Release.config -------------------------------------------------------------------------------- /Samples/006-webapp/src/WebApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/WebApp/Web.config -------------------------------------------------------------------------------- /Samples/006-webapp/src/WebApp/WebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/WebApp/WebApp.csproj -------------------------------------------------------------------------------- /Samples/006-webapp/src/WebApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/WebApp/favicon.ico -------------------------------------------------------------------------------- /Samples/006-webapp/src/WebApp/index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/WebApp/index.cshtml -------------------------------------------------------------------------------- /Samples/006-webapp/src/WebApplication.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/WebApplication.Build.targets -------------------------------------------------------------------------------- /Samples/006-webapp/src/dirs.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/dirs.proj -------------------------------------------------------------------------------- /Samples/006-webapp/src/nugetRestore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/nugetRestore.cmd -------------------------------------------------------------------------------- /Samples/006-webapp/src/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/006-webapp/src/packages.config -------------------------------------------------------------------------------- /Samples/007-blobupload/assets/blobs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/007-blobupload/assets/blobs/readme.txt -------------------------------------------------------------------------------- /Samples/007-blobupload/assets/blobs/saw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/007-blobupload/assets/blobs/saw.png -------------------------------------------------------------------------------- /Samples/007-blobupload/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/007-blobupload/assets/image.png -------------------------------------------------------------------------------- /Samples/007-blobupload/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/007-blobupload/core/Instructions.md -------------------------------------------------------------------------------- /Samples/007-blobupload/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/007-blobupload/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/007-blobupload/core/Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/007-blobupload/core/Summary.md -------------------------------------------------------------------------------- /Samples/007-blobupload/core/functions/PopulateStorageContainer/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/007-blobupload/core/functions/PopulateStorageContainer/run.csx -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/assets/dashboards/StreamingTweetsDesktop.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/assets/dashboards/StreamingTweetsDesktop.pbix -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/assets/dashboards/StreamingTweetsEmbedded.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/assets/dashboards/StreamingTweetsEmbedded.pbix -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/assets/image.png -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/core/CreateResourcesArm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/core/CreateResourcesArm.json -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/core/Instructions.md -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/core/functions/executeSqlQuery/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/core/functions/executeSqlQuery/project.json -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/core/functions/executeSqlQuery/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/core/functions/executeSqlQuery/run.csx -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/core/functions/startStreamingJob/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/core/functions/startStreamingJob/project.json -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/core/functions/startStreamingJob/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/core/functions/startStreamingJob/run.csx -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/src/build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/src/build.proj -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/src/jobs/continuous/TwitterClient/requirements.txt: -------------------------------------------------------------------------------- 1 | azure==1.0.3 2 | tweepy==3.5.0 3 | -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/src/jobs/continuous/TwitterClient/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/src/jobs/continuous/TwitterClient/run.ps1 -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/src/jobs/continuous/TwitterClient/settings.job: -------------------------------------------------------------------------------- 1 | { 2 | "is_singleton": true 3 | } -------------------------------------------------------------------------------- /Samples/009-twitterstreaming/src/jobs/continuous/TwitterClient/twitterClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/009-twitterstreaming/src/jobs/continuous/TwitterClient/twitterClient.py -------------------------------------------------------------------------------- /Samples/010-azuresqldatabase/assets/azuresqldatabase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/010-azuresqldatabase/assets/azuresqldatabase.png -------------------------------------------------------------------------------- /Samples/010-azuresqldatabase/core/CreateSQLdatabaseArm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/010-azuresqldatabase/core/CreateSQLdatabaseArm.json -------------------------------------------------------------------------------- /Samples/010-azuresqldatabase/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/010-azuresqldatabase/core/Instructions.md -------------------------------------------------------------------------------- /Samples/010-azuresqldatabase/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/010-azuresqldatabase/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/010-azuresqldatabase/core/Summary.md: -------------------------------------------------------------------------------- 1 | A basic sample/tutorial that creates an Azure SQL Database. -------------------------------------------------------------------------------- /Samples/011-chickenandegg/assets/chicken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/011-chickenandegg/assets/chicken.jpg -------------------------------------------------------------------------------- /Samples/011-chickenandegg/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/011-chickenandegg/core/Instructions.md -------------------------------------------------------------------------------- /Samples/011-chickenandegg/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/011-chickenandegg/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/011-chickenandegg/core/Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/011-chickenandegg/core/Summary.md -------------------------------------------------------------------------------- /Samples/011-chickenandegg/core/functions/hatch/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/011-chickenandegg/core/functions/hatch/run.csx -------------------------------------------------------------------------------- /Samples/012-mlwebsvc/assets/MlWebSvcPattern.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/012-mlwebsvc/assets/MlWebSvcPattern.JPG -------------------------------------------------------------------------------- /Samples/012-mlwebsvc/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/012-mlwebsvc/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/012-mlwebsvc/core/MlWebSvcInstructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/012-mlwebsvc/core/MlWebSvcInstructions.md -------------------------------------------------------------------------------- /Samples/012-mlwebsvc/core/MlWebSvcSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/012-mlwebsvc/core/MlWebSvcSummary.md -------------------------------------------------------------------------------- /Samples/013-mlwebsvcs/assets/MlWebSvcPattern.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/013-mlwebsvcs/assets/MlWebSvcPattern.JPG -------------------------------------------------------------------------------- /Samples/013-mlwebsvcs/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/013-mlwebsvcs/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/013-mlwebsvcs/core/MlWebSvcInstructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/013-mlwebsvcs/core/MlWebSvcInstructions.md -------------------------------------------------------------------------------- /Samples/013-mlwebsvcs/core/MlWebSvcSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/013-mlwebsvcs/core/MlWebSvcSummary.md -------------------------------------------------------------------------------- /Samples/014-hellojs/assets/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/014-hellojs/assets/node.png -------------------------------------------------------------------------------- /Samples/014-hellojs/core/Instructions.md: -------------------------------------------------------------------------------- 1 | The NodeJS function said: **{Outputs.message}** -------------------------------------------------------------------------------- /Samples/014-hellojs/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/014-hellojs/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/014-hellojs/core/Summary.md: -------------------------------------------------------------------------------- 1 | A basic solution with a NodeJS custom function. -------------------------------------------------------------------------------- /Samples/014-hellojs/core/functions/greet/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/014-hellojs/core/functions/greet/function.json -------------------------------------------------------------------------------- /Samples/014-hellojs/core/functions/greet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/014-hellojs/core/functions/greet/index.js -------------------------------------------------------------------------------- /Samples/015-eggincubator/assets/chicken-plus-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/assets/chicken-plus-plus.png -------------------------------------------------------------------------------- /Samples/015-eggincubator/assets/dashboard.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/assets/dashboard.pbix -------------------------------------------------------------------------------- /Samples/015-eggincubator/assets/incubator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/assets/incubator.jpg -------------------------------------------------------------------------------- /Samples/015-eggincubator/core/Incubator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/core/Incubator.md -------------------------------------------------------------------------------- /Samples/015-eggincubator/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/core/Instructions.md -------------------------------------------------------------------------------- /Samples/015-eggincubator/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/015-eggincubator/core/Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/core/Summary.md -------------------------------------------------------------------------------- /Samples/015-eggincubator/core/functions/hatch/SolutionDataTable.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/core/functions/hatch/SolutionDataTable.csx -------------------------------------------------------------------------------- /Samples/015-eggincubator/core/functions/hatch/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/core/functions/hatch/project.json -------------------------------------------------------------------------------- /Samples/015-eggincubator/core/functions/hatch/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/core/functions/hatch/run.csx -------------------------------------------------------------------------------- /Samples/015-eggincubator/core/functions/prepsql/prepareDatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/core/functions/prepsql/prepareDatabase.sql -------------------------------------------------------------------------------- /Samples/015-eggincubator/core/functions/prepsql/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/core/functions/prepsql/project.json -------------------------------------------------------------------------------- /Samples/015-eggincubator/core/functions/prepsql/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/core/functions/prepsql/run.csx -------------------------------------------------------------------------------- /Samples/015-eggincubator/core/sqlserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/015-eggincubator/core/sqlserver.json -------------------------------------------------------------------------------- /Samples/016-powershell/assets/KeepCalmPowerShell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/016-powershell/assets/KeepCalmPowerShell.jpg -------------------------------------------------------------------------------- /Samples/016-powershell/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/016-powershell/core/Instructions.md -------------------------------------------------------------------------------- /Samples/016-powershell/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/016-powershell/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/016-powershell/core/Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/016-powershell/core/Summary.md -------------------------------------------------------------------------------- /Samples/016-powershell/core/functions/createWebsite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/016-powershell/core/functions/createWebsite/index.html -------------------------------------------------------------------------------- /Samples/016-powershell/core/functions/createWebsite/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/016-powershell/core/functions/createWebsite/run.ps1 -------------------------------------------------------------------------------- /Samples/017-kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/README.md -------------------------------------------------------------------------------- /Samples/017-kafka/assets/kafka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/assets/kafka.png -------------------------------------------------------------------------------- /Samples/017-kafka/assets/kafkaArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/assets/kafkaArchitecture.png -------------------------------------------------------------------------------- /Samples/017-kafka/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/Instructions.md -------------------------------------------------------------------------------- /Samples/017-kafka/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/017-kafka/core/Prereqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/Prereqs.md -------------------------------------------------------------------------------- /Samples/017-kafka/core/README.md: -------------------------------------------------------------------------------- 1 | # kafka 2 | -------------------------------------------------------------------------------- /Samples/017-kafka/core/Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/Summary.md -------------------------------------------------------------------------------- /Samples/017-kafka/core/create-linux-based-kafka-spark-cluster-in-vnet-v4.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/create-linux-based-kafka-spark-cluster-in-vnet-v4.1.json -------------------------------------------------------------------------------- /Samples/017-kafka/core/functions/CopyScripts/Resources/scripts/notebooks/PowerShell/kafka.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/functions/CopyScripts/Resources/scripts/notebooks/PowerShell/kafka.ps1 -------------------------------------------------------------------------------- /Samples/017-kafka/core/functions/CopyScripts/Resources/scripts/notebooks/PySpark/pySpark+2.0+modeling+MLADS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/functions/CopyScripts/Resources/scripts/notebooks/PySpark/pySpark+2.0+modeling+MLADS.ipynb -------------------------------------------------------------------------------- /Samples/017-kafka/core/functions/CopyScripts/Resources/scripts/notebooks/PySpark/pySpark_2.0_modeling_MLADS_HDInsight.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/functions/CopyScripts/Resources/scripts/notebooks/PySpark/pySpark_2.0_modeling_MLADS_HDInsight.ipynb -------------------------------------------------------------------------------- /Samples/017-kafka/core/functions/CopyScripts/Resources/scripts/notebooks/Streaming/Spark-structured-streaming-from-Kafka.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/functions/CopyScripts/Resources/scripts/notebooks/Streaming/Spark-structured-streaming-from-Kafka.ipynb -------------------------------------------------------------------------------- /Samples/017-kafka/core/functions/CopyScripts/Resources/scripts/notebooks/Streaming/Stream-Tweets-To-Kafka.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/functions/CopyScripts/Resources/scripts/notebooks/Streaming/Stream-Tweets-To-Kafka.ipynb -------------------------------------------------------------------------------- /Samples/017-kafka/core/functions/CopyScripts/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/functions/CopyScripts/project.json -------------------------------------------------------------------------------- /Samples/017-kafka/core/functions/CopyScripts/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/017-kafka/core/functions/CopyScripts/run.csx -------------------------------------------------------------------------------- /Samples/018-linuxdsvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/018-linuxdsvm/README.md -------------------------------------------------------------------------------- /Samples/018-linuxdsvm/assets/DSVMEditionSidebySideComparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/018-linuxdsvm/assets/DSVMEditionSidebySideComparison.png -------------------------------------------------------------------------------- /Samples/018-linuxdsvm/assets/DSVMIcon115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/018-linuxdsvm/assets/DSVMIcon115.png -------------------------------------------------------------------------------- /Samples/018-linuxdsvm/assets/TakeAFreeTestDrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/018-linuxdsvm/assets/TakeAFreeTestDrive.png -------------------------------------------------------------------------------- /Samples/018-linuxdsvm/assets/linuxdatasciencevm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/018-linuxdsvm/assets/linuxdatasciencevm.png -------------------------------------------------------------------------------- /Samples/018-linuxdsvm/core/LinuxDataScienceArmTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/018-linuxdsvm/core/LinuxDataScienceArmTemplate.json -------------------------------------------------------------------------------- /Samples/018-linuxdsvm/core/LinuxDataScienceInstructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/018-linuxdsvm/core/LinuxDataScienceInstructions.md -------------------------------------------------------------------------------- /Samples/018-linuxdsvm/core/LinuxDataScienceSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/018-linuxdsvm/core/LinuxDataScienceSummary.md -------------------------------------------------------------------------------- /Samples/018-linuxdsvm/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/018-linuxdsvm/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/018-linuxdsvm/core/PreReqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/018-linuxdsvm/core/PreReqs.md -------------------------------------------------------------------------------- /Samples/019-windowsdsvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/019-windowsdsvm/README.md -------------------------------------------------------------------------------- /Samples/019-windowsdsvm/assets/DSVMEditionSidebySideComparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/019-windowsdsvm/assets/DSVMEditionSidebySideComparison.png -------------------------------------------------------------------------------- /Samples/019-windowsdsvm/assets/DSVMIcon115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/019-windowsdsvm/assets/DSVMIcon115.png -------------------------------------------------------------------------------- /Samples/019-windowsdsvm/assets/datasciencevm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/019-windowsdsvm/assets/datasciencevm.png -------------------------------------------------------------------------------- /Samples/019-windowsdsvm/core/DataScienceArmTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/019-windowsdsvm/core/DataScienceArmTemplate.json -------------------------------------------------------------------------------- /Samples/019-windowsdsvm/core/DataScienceInstructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/019-windowsdsvm/core/DataScienceInstructions.md -------------------------------------------------------------------------------- /Samples/019-windowsdsvm/core/DataScienceSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/019-windowsdsvm/core/DataScienceSummary.md -------------------------------------------------------------------------------- /Samples/019-windowsdsvm/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/019-windowsdsvm/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/019-windowsdsvm/core/PreReqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/019-windowsdsvm/core/PreReqs.md -------------------------------------------------------------------------------- /Samples/020-pythonflask/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/020-pythonflask/assets/image.png -------------------------------------------------------------------------------- /Samples/020-pythonflask/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/020-pythonflask/core/Instructions.md -------------------------------------------------------------------------------- /Samples/020-pythonflask/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/020-pythonflask/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/020-pythonflask/core/Summary.md: -------------------------------------------------------------------------------- 1 | A Flask web app. -------------------------------------------------------------------------------- /Samples/020-pythonflask/core/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/020-pythonflask/core/azuredeploy.json -------------------------------------------------------------------------------- /Samples/021-polarbear/assets/3DMap.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/assets/3DMap.xlsx -------------------------------------------------------------------------------- /Samples/021-polarbear/assets/dashboards/PolarBearDesktop.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/assets/dashboards/PolarBearDesktop.pbix -------------------------------------------------------------------------------- /Samples/021-polarbear/assets/dashboards/PolarBearEmbedded.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/assets/dashboards/PolarBearEmbedded.pbix -------------------------------------------------------------------------------- /Samples/021-polarbear/assets/polarbear.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/assets/polarbear.csv -------------------------------------------------------------------------------- /Samples/021-polarbear/assets/polarcubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/assets/polarcubs.jpg -------------------------------------------------------------------------------- /Samples/021-polarbear/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/core/Instructions.md -------------------------------------------------------------------------------- /Samples/021-polarbear/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/021-polarbear/core/Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/core/Summary.md -------------------------------------------------------------------------------- /Samples/021-polarbear/core/functions/prepsql/prepareDatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/core/functions/prepsql/prepareDatabase.sql -------------------------------------------------------------------------------- /Samples/021-polarbear/core/functions/prepsql/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/core/functions/prepsql/project.json -------------------------------------------------------------------------------- /Samples/021-polarbear/core/functions/prepsql/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/core/functions/prepsql/run.csx -------------------------------------------------------------------------------- /Samples/021-polarbear/core/sqlserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/021-polarbear/core/sqlserver.json -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/README.md -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/assets/dashboards/StreamingTweetsDesktop.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/assets/dashboards/StreamingTweetsDesktop.pbix -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/assets/dashboards/StreamingTweetsEmbedded.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/assets/dashboards/StreamingTweetsEmbedded.pbix -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/assets/timeseriesinsight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/assets/timeseriesinsight.png -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/assets/twittertimeseriesinsights.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/assets/twittertimeseriesinsights.jpg -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/core/CreateResourcesArm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/core/CreateResourcesArm.json -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/core/Instructions.md -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/core/Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/core/Summary.md -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/core/functions/executeSqlQuery/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/core/functions/executeSqlQuery/project.json -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/core/functions/executeSqlQuery/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/core/functions/executeSqlQuery/run.csx -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/core/functions/startStreamingJob/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/core/functions/startStreamingJob/project.json -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/core/functions/startStreamingJob/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/core/functions/startStreamingJob/run.csx -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/src/build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/src/build.proj -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/src/jobs/continuous/TwitterClient/requirements.txt: -------------------------------------------------------------------------------- 1 | azure==1.0.3 2 | tweepy==3.5.0 3 | -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/src/jobs/continuous/TwitterClient/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/src/jobs/continuous/TwitterClient/run.ps1 -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/src/jobs/continuous/TwitterClient/settings.job: -------------------------------------------------------------------------------- 1 | { 2 | "is_singleton": true 3 | } -------------------------------------------------------------------------------- /Samples/022-twittertimeseriesinsights/src/jobs/continuous/TwitterClient/twitterClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/022-twittertimeseriesinsights/src/jobs/continuous/TwitterClient/twitterClient.py -------------------------------------------------------------------------------- /Samples/023-mlwebservice/assets/vienna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/023-mlwebservice/assets/vienna.png -------------------------------------------------------------------------------- /Samples/023-mlwebservice/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/023-mlwebservice/core/Instructions.md -------------------------------------------------------------------------------- /Samples/023-mlwebservice/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/023-mlwebservice/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/023-mlwebservice/core/Summary.md: -------------------------------------------------------------------------------- 1 | Just a blank solution. -------------------------------------------------------------------------------- /Samples/023-mlwebservice/core/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/023-mlwebservice/core/resources.json -------------------------------------------------------------------------------- /Samples/024-streamingwithml/assets/dashboards/StreamingTweetsDesktop.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/024-streamingwithml/assets/dashboards/StreamingTweetsDesktop.pbix -------------------------------------------------------------------------------- /Samples/024-streamingwithml/assets/dashboards/StreamingTweetsEmbedded.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/024-streamingwithml/assets/dashboards/StreamingTweetsEmbedded.pbix -------------------------------------------------------------------------------- /Samples/024-streamingwithml/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/024-streamingwithml/assets/image.png -------------------------------------------------------------------------------- /Samples/024-streamingwithml/core/CreateResourcesArm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/024-streamingwithml/core/CreateResourcesArm.json -------------------------------------------------------------------------------- /Samples/024-streamingwithml/core/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/024-streamingwithml/core/Instructions.md -------------------------------------------------------------------------------- /Samples/024-streamingwithml/core/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/024-streamingwithml/core/Manifest.xml -------------------------------------------------------------------------------- /Samples/024-streamingwithml/core/functions/eventHubListener/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/024-streamingwithml/core/functions/eventHubListener/function.json -------------------------------------------------------------------------------- /Samples/024-streamingwithml/core/functions/eventHubListener/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/024-streamingwithml/core/functions/eventHubListener/project.json -------------------------------------------------------------------------------- /Samples/024-streamingwithml/core/functions/eventHubListener/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/024-streamingwithml/core/functions/eventHubListener/run.csx -------------------------------------------------------------------------------- /Samples/024-streamingwithml/core/functions/executeSqlQuery/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/024-streamingwithml/core/functions/executeSqlQuery/project.json -------------------------------------------------------------------------------- /Samples/024-streamingwithml/core/functions/executeSqlQuery/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/024-streamingwithml/core/functions/executeSqlQuery/run.csx -------------------------------------------------------------------------------- /Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/Samples/README.md -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_includes/head.html -------------------------------------------------------------------------------- /docs/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_includes/header.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_layouts/post.html -------------------------------------------------------------------------------- /docs/_posts/2017-03-01-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-03-01-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-03-23-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-03-23-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-03-28-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-03-28-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-04-06-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-04-06-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-04-14-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-04-14-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-05-02-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-05-02-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-05-09-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-05-09-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-05-16-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-05-16-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-05-23-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-05-23-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-06-06-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-06-06-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-06-13-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-06-13-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-06-20-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-06-20-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-06-27-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-06-27-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-07-05-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-07-05-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-07-11-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-07-11-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-07-14-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-07-14-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-07-31-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-07-31-release.md -------------------------------------------------------------------------------- /docs/_posts/2017-12-12-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_posts/2017-12-12-release.md -------------------------------------------------------------------------------- /docs/_sass/saw.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/_sass/saw.scss -------------------------------------------------------------------------------- /docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/assets/css/style.scss -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/images/CIG1-e.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/CIG1-e.PNG -------------------------------------------------------------------------------- /docs/images/CIG2-e.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/CIG2-e.PNG -------------------------------------------------------------------------------- /docs/images/CIG3-e.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/CIG3-e.PNG -------------------------------------------------------------------------------- /docs/images/DeployToAzure.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/DeployToAzure.PNG -------------------------------------------------------------------------------- /docs/images/bash-jekyll-local.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/bash-jekyll-local.jpg -------------------------------------------------------------------------------- /docs/images/comments.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/comments.PNG -------------------------------------------------------------------------------- /docs/images/dsvm.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/dsvm.PNG -------------------------------------------------------------------------------- /docs/images/error-message.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/error-message.PNG -------------------------------------------------------------------------------- /docs/images/essential-solution-components.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/essential-solution-components.jpg -------------------------------------------------------------------------------- /docs/images/faq-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/faq-1.png -------------------------------------------------------------------------------- /docs/images/faq-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/faq-2.png -------------------------------------------------------------------------------- /docs/images/faq-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/faq-3.PNG -------------------------------------------------------------------------------- /docs/images/faq-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/faq-4.png -------------------------------------------------------------------------------- /docs/images/faq-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/faq-5.png -------------------------------------------------------------------------------- /docs/images/faq-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/faq-6.png -------------------------------------------------------------------------------- /docs/images/faq-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/faq-7.png -------------------------------------------------------------------------------- /docs/images/faq-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/faq-8.png -------------------------------------------------------------------------------- /docs/images/github-pages-settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/github-pages-settings.jpg -------------------------------------------------------------------------------- /docs/images/github-pull-request.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/github-pull-request.jpg -------------------------------------------------------------------------------- /docs/images/helloworld-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/helloworld-create.jpg -------------------------------------------------------------------------------- /docs/images/helloworld-deployment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/helloworld-deployment.jpg -------------------------------------------------------------------------------- /docs/images/helloworld-ready.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/helloworld-ready.jpg -------------------------------------------------------------------------------- /docs/images/ingredient-in-ci-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/ingredient-in-ci-gallery.png -------------------------------------------------------------------------------- /docs/images/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/location.png -------------------------------------------------------------------------------- /docs/images/pbi11-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/pbi11-2.png -------------------------------------------------------------------------------- /docs/images/pbi11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/pbi11.png -------------------------------------------------------------------------------- /docs/images/pbi3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/pbi3.png -------------------------------------------------------------------------------- /docs/images/pbi4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/pbi4.png -------------------------------------------------------------------------------- /docs/images/pbi5-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/pbi5-2.png -------------------------------------------------------------------------------- /docs/images/pbi5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/pbi5.png -------------------------------------------------------------------------------- /docs/images/pbi6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/pbi6.png -------------------------------------------------------------------------------- /docs/images/pbi7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/pbi7.png -------------------------------------------------------------------------------- /docs/images/pbi8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/pbi8.png -------------------------------------------------------------------------------- /docs/images/pbi9-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/pbi9-2.png -------------------------------------------------------------------------------- /docs/images/pbi9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/pbi9.png -------------------------------------------------------------------------------- /docs/images/push-helloworld.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/push-helloworld.gif -------------------------------------------------------------------------------- /docs/images/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/register.png -------------------------------------------------------------------------------- /docs/images/register2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/register2.png -------------------------------------------------------------------------------- /docs/images/register3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/register3.png -------------------------------------------------------------------------------- /docs/images/resource-group-empty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/resource-group-empty.jpg -------------------------------------------------------------------------------- /docs/images/samples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/samples.jpg -------------------------------------------------------------------------------- /docs/images/saw-legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/saw-legacy.png -------------------------------------------------------------------------------- /docs/images/sawlocal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/sawlocal.png -------------------------------------------------------------------------------- /docs/images/sawweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/sawweb.png -------------------------------------------------------------------------------- /docs/images/sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/sharing.png -------------------------------------------------------------------------------- /docs/images/skus-dynamic.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/skus-dynamic.PNG -------------------------------------------------------------------------------- /docs/images/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/images/switch.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/powerbi-configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/powerbi-configurations.md -------------------------------------------------------------------------------- /docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/release-notes.md -------------------------------------------------------------------------------- /docs/rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/rest-api.md -------------------------------------------------------------------------------- /docs/solution-authoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/solution-authoring.md -------------------------------------------------------------------------------- /docs/solution-prices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/solution-prices.md -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-CloudIntelligence-SolutionAuthoringWorkspace/HEAD/docs/tutorial.md --------------------------------------------------------------------------------