211 questions
2
votes
1
answer
830
views
Azure Machine Learning Python Module failing to Execute Calls to Cognitive Services
I have created a Pipeline in Azure ML which makes calls to Azure Cognitive Services Text Analytics using its Python API. When I run the code I have written locally, it executes without error, but when ...
0
votes
1
answer
7k
views
How to use AZ Cli or Bash inside Azure Function App?
Is it possible to call AZ Cli / Bash inside an Azure Function App?
My goal is to automatically shut down an ADX Cluster after office times as you can save costs by this.
Would be nice to call ...
0
votes
2
answers
1k
views
How to get Azure FunctionApp list using python SDK
I am trying to get details of function apps using python SDK and finding suitable client and methods. I can use ResourceManagementClient and get basic info on them but does not get runtime and other ...
0
votes
1
answer
656
views
How to determine which exceptions to handle for Azure Python SDK classes?
I'm fairly new to Python, mostly focused on building Azure Functions. I'm having trouble determining which exceptions to handle for the various Class/Method calls.
If I was using say, a Microsoft REST ...
0
votes
1
answer
305
views
Azure Pyhton Sdk :: 1. Create Azure VNET 2. enable Flow log on NET 3. Attach VNET to Azure Virtual WAN
I want to create Azure VNET programmatically with Azure python SDK then enable the NSG flow logs on NET and finally attach the VNET to the Azure virtual WAN.
2
votes
3
answers
7k
views
Azure Python SDK: BlobServiceClient vs. BlobClient?
Most (all?) of the Azure Storage Python SDK examples I've seen demonstrate creating a BlobServiceClient in order to then create a BlobClient for uploading / downloading blobs (ref1, ref2, etc.).
Why ...