skip to Main Content

Installing azure-data-tables

I’m hoping to use azure-data-tables in my Python code. I'm working in VScode on an Azure HTTP trigger. I’ve run pip3 install azure-data-tables in the terminal on my Mac. However, when I import azure-data-tables in my file on VS code,…

VIEW QUESTION

Are both AzureResourceGroupDeployment and AzureResourceManagerTemplateDeployment same?

Are both AzureResourceGroupDeployment and AzureResourceManagerTemplateDeployment same? - task: AzureResourceManagerTemplateDeployment@3 displayName: 'deploy using AzureResourceManagerTemplateDeployment' inputs: azureResourceManagerConnection: sc subscriptionId: id resourceGroupName: rg location: $(location) csmFile: ${{ parameters.root }}/Infrastructure/data/template.bicep csmParametersFile: env.json overrideParameters: '-environmentAbbreviation "env"' deploymentMode: 'Incremental' deploymentOutputs: dataoutputs - task: AzureResourceGroupDeployment@2 displayName: 'deploy…

VIEW QUESTION
Back To Top
Search