This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "dependencies": { | |
| "Microsoft.Azure.Management.Fluent": "1.4.1" | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| subscription=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX | |
| client=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX | |
| key=XXXXXXXXXXXXXXXX | |
| tenant=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX | |
| managementURI=https\://management.core.windows.net/ | |
| baseURL=https\://management.azure.com/ | |
| authURL=https\://login.windows.net/ | |
| graphURL=https\://graph.windows.net/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var object = new APIObject().DoSomething(withThisParameter).DoSomethingElseWithANumber(42).DoSomething(withAnotherParameter).ApplyChanges(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var object = new APIObject(); | |
| APIObject.DoSomething(withThisParameter); | |
| APIObject.DoSomethingElseWithANumber(42); | |
| APIObject.DoSomething(withAnotherParameter); | |
| APIObject.ApplyChanges(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| az sql db list-usages \ | |
| --name SQLTestDB \ | |
| --resource-group SQLRG \ | |
| --server sqltestlogicalserver |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UPDATE [SalesLT].[Product] | |
| SET [ListPrice] = 5 | |
| WHERE Name = 'AzureSocks'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INSERT INTO [SalesLT].[Product] | |
| ( [Name] | |
| , [ProductNumber] | |
| , [Color] | |
| , [ProductCategoryID] | |
| , [StandardCost] | |
| , [ListPrice] | |
| , [SellStartDate] | |
| ) | |
| VALUES |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT TOP 10 pc.Name as CategoryName, p.name as ProductName | |
| FROM SalesLT.ProductCategory pc | |
| JOIN SalesLT.Product p | |
| ON pc.productcategoryid = p.productcategoryid; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| configuration IISInstall | |
| { | |
| node "localhost" | |
| { | |
| WindowsFeature IIS | |
| { | |
| Ensure = "Present" | |
| Name = "Web-Server" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
| "contentVersion": "1.0.0.0", | |
| "parameters": { | |
| "location": { |