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
| logicAppResourceId=$(az logic workflow show \ | |
| -g <resource_group_name> \ | |
| -n <logic_app_name> \ | |
| --query "id" -o tsv) |
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
| # This simple PowerShell script will copy one or more Azure storage table from one location into another azure storage table | |
| # | |
| # Dependencies : | |
| # https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy | |
| # https://docs.microsoft.com/en-us/powershell/azure/overview?view=azps-1.6.0 | |
| # | |
| # Usage : | |
| # Copy-AzureStorageTable -SrcStorageName "" -SrcAccessKey "" -DstStorageName "" -DstAccessKey "" -IncludeTable All | |
| # Copy-AzureStorageTable -SrcStorageName "" -SrcAccessKey "" -DstStorageName "" -DstAccessKey "" -IncludeTable Table1,Table2,Table3 |
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
| { | |
| "variables": { | |
| "logicApp": { | |
| "name": "my-logic-app", | |
| "trigger": "manual" | |
| }, | |
| "resourceId": "[resourceId('Microsoft.Logic/workflows/triggers', variables('logicApp').name, variables('logicApp').trigger)]", | |
| "apiVersion": "[providers('Microsoft.Logic', 'workflows').apiVersions[0]]" | |
| }, | |
| "resources": [], |
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
| using System; | |
| using System.IO; | |
| using System.Threading.Tasks; | |
| using Microsoft.AspNetCore.Http; | |
| using Microsoft.AspNetCore.Mvc; | |
| using Microsoft.AspNetCore.Mvc.Abstractions; | |
| using Microsoft.AspNetCore.Mvc.ModelBinding; | |
| using Microsoft.AspNetCore.Mvc.Razor; | |
| using Microsoft.AspNetCore.Mvc.Rendering; | |
| using Microsoft.AspNetCore.Mvc.ViewFeatures; |
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
| # To log in to Azure Resource Manager | |
| Login-AzureRmAccount | |
| # You can also use a specific Tenant if you would like a faster log in experience | |
| # Login-AzureRmAccount -TenantId xxxx | |
| # To view all subscriptions for your account | |
| Get-AzureRmSubscription | |
| # To select a default subscription for your current session. |
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
| ################### | |
| # compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.pdb | |
| *.dll.config | |
| *.cache |