skip to Main Content

Sql bind in Azure Function

I'm trying to use Sql output binding functionalities for Azure function. Below is my current configuration. I'm using Visual Studio Code as IDE Found Python version 3.9.0 (py). Core Tools Version: 4.0.4736 Commit hash: N/A (64-bit) Function Runtime Version: 4.8.1.18957…

VIEW QUESTION

How to set the ComputeModel property to Serverless on an Azure SQL Database using PowerShell?

I'm restoring an Azure SQL Database (Serverless) from a deleted database backup using Get-AzSqlDeletedDatabaseBackup and Restore-AzSqlDatabase PowerShell commandlets. The restore works, but the tags and ComputeModel are not restored with the database. I've tried using Set-AzSqlDatabase: Set-AzSqlDatabase -ResourceGroupName $resourcegroupname -DatabaseName…

VIEW QUESTION

Error: az cli script failed. UnhandledPromiseRejectionWarning: Error: az cli script failed. Github Ci pipeline that I seteup keeps failing – Ubuntu

env: AZURE_WEBAPP_PACKAGE_PATH: '.' DOTNET_VERSION: '6.0.x' on: push: branches: master jobs: build: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Set up .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: ${{ env.DOTNET_VERSION }} - name: Set up dependency caching for…

VIEW QUESTION

Azure Functions: Is there optimal way to upload file without storing it in process memory?

I'm trying to upload file to blob container via HTTP. On request receiving file through: public class UploadFileFunction { //Own created wrapper on BlobContainerClient private readonly IBlobFileStorageClient _blobFileStorageClient; public UploadFileFunction(IBlobFileStorageClient blobFileStorageClient) { _blobFileStorageClient = blobFileStorageClient; } [FunctionName("UploadFile")] public async Task<IActionResult>…

VIEW QUESTION

AzureML remote data path

I have a MLTable data asset in Azure ML studio that I am trying to access in python and I can't figure out the structure of the path. My datastore name is fooddb and my MLTable name is food. The…

VIEW QUESTION

disable kubelogin for azure kubernetes services

By following this document https://github.com/Azure/kubelogin/blob/master/README.md#user-principal-login-flow-non-interactive, i had enabled kubelogin auth to azure kubernetes services. It didnt work as expected and now i want to disable kubelogin auth. But even for the new AKS clusters that I create with the option…

VIEW QUESTION
Back To Top
Search