211 questions
0 votes
1 answer
111 views
Why does it take several minutes to start a job in Azure Machine Learning using the python SDK v2?
In the last months I have been using Azure Machine Learning using the Python SDK v2 to launch jobs on remote Compute Instances, sometimes exploiting the GPU-enabled computes. However, I noticed that ...
0 votes
1 answer
55 views
Azure - Python client for listing key vaults
I found 4 python libraries for working with key vaults: admin keys certs secrets but I am missing an API in python to list all vaults. Samples and tests for the aforementioned libs always provide an ...
0 votes
1 answer
70 views
How to get existing OS disk & multiple data disk id for multiple vms with for loop from Azure Python SDK
How to get existing OS disk & multiple data disk id for multiple vms with for loop from Azure Python SDK I tried different ways to get. But no luck
0 votes
1 answer
333 views
How to use both Service Principal and System Assigned Identity in Django on Azure Container Apps?
Before using Azure Container Apps (ACA), I deployed my applications on Kubernetes (AKS). In AKS, I only had to set environment variables for authentication, and the Python SDK for Azure would connect ...
0 votes
0 answers
72 views
Working with labeled dataset on azure ml studio and how to pass it to train yolo model
I am working on training yolov8 model using azure ml studio and I use data labeling tool to label my dataset but after this I have difficulty in understanding how this labeled dataset when exported (...
0 votes
1 answer
80 views
On Azure ML python 3.10-SDK V2 jupyter note, installation of XGBoost & sentence_transformers gets successful but import fails
pip install sentence_transformers, XGBoost & BS4, etc., are successful in the Azure ML Python 3.10-SDK V2 kernel Jupyter notebook, but importing the packages is failing. pip install ...
0 votes
1 answer
64 views
How to enable replication for multiple VMs with existing OS disk & data disk using Azure SDK
How to enable replication for multiple VMs with existing OS disk & data disk using Azure SDK. I tried to get details from multiple blogs. but its not helped out.
0 votes
0 answers
138 views
Is Microsoft Bot Framework Python SDK being retired?
Languages on Bot Framework SDK Documentation Bot Framework SDK documentation I'm reading the Microsoft Bot Framework SDK documentation and found this title confusing that communicates about the ...
0 votes
1 answer
325 views
Graph Api error : "Content type text/html does not have a factory registered to be parsed"
"I'm receiving this response. Could you please assist me in resolving the issue? I have already enabled Advanced settings and allowed public client flows. Exception: Content type text/html does ...
0 votes
2 answers
101 views
Deployed Azure Python via github-actions does not find any package
When deployed via github-actions deploy.yaml steps: - name: Checkout uses: actions/checkout@v4 - name: 'Azure Login' uses: azure/login@v2 with: client-...
0 votes
1 answer
274 views
How to use Azure App Service Auth in web app to control blob access
Hoping someone can help me with some gaps in my understanding of how to use the azure app service authentication component. I'm trying to write a simple web app (in this case python/flask) that allows ...
1 vote
1 answer
69 views
Get all users and applications with Reader role under subscription in Azure Python SDK
I need to fetch users and applications assigned the "Reader" role under a specific Azure subscription using the Azure Python SDK. The AuthorizationManagementClient is being used along with ...
0 votes
3 answers
175 views
How to assign Reader role to user in Azure Subscription using Python SDK?
I’m trying to assign "Reader" role to user under Azure subscription using Azure Python SDK. I’ve found a way to do it using Azure REST API following MS documentation https://learn.microsoft....
0 votes
1 answer
965 views
How read excel file format in pyspark databricks notebook
How to read the xlsx file format in azure databricks notebook with pyspark programming. we are tried as below code but getting error. import pandas as pd spark.createDataFrame(pd.read_excel("/...
0 votes
1 answer
114 views
What API should I use to manage Alerts and Alert Rules in Azure?
Looking in Azure portal I see this: Further I have run with great success the following cli commands: az monitor metrics alert list --subscription "$sub" az monitor activity-log alert list ...