Skip to content
Advertisement

Tag: azure

Is it possible to use a dynamic array/list as input for parameterizing a kusto query?

I have an application that uses the Python library azure.kusto.data to query data from a Kusto cluster. I’m wondering, is it possible to use a dynamic array as input for paramterizing a kusto query? The existing documentation doesn’t seem to call out such functionality. https://learn.microsoft.com/en-us/azure/data-explorer/kusto/query/queryparametersstatement?pivots=azuredataexplorer Passing in string type values has worked fine in the past: I will then pass

How to iterate over azure.core.paging.ItemPaged?

I have an iterator object <iterator object azure.core.paging.ItemPaged at 0x7fdb309c02b0>. When I iterate over it for a first time (see code below), it prints the results. However, when I execute this code a second time, it prints nothing. What is wrong in my code? Do I need to somehow reset the enumerator? Answer This is the default behavior of the

Azure KeyVault: how to retrieve clientId, clientSecret and the tenantId for an existing Service Principal?

The cloud engineer in my organization has set up an Azure KeyVault and a Service Principal. I know the id of this Service Principal, but I also need clientId, clientSecret, and tenantId. The documentation shows that these variables are exposed to you when you create a Service Principal using Azure CLI, but in my case, there is one already. I

Azure Data Factory HTTP Dataset using Python SDK , unable to find parameters

I am trying to create a HTTP ‘Dataset’ in Data Factory using Python SDK azure.mgmt.datafactory.models. I am unable to find the parameters in Microsoft documentation (https://learn.microsoft.com/en-us/python/api/azure-mgmt-datafactory/azure.mgmt.datafactory.models.httpdataset?view=azure-python) that will provide me the below features that I can see when created manually from portal. Manual creation (from portal): Create HTTP Dataset -> Select Format (Excel) -> I get the below page which

How to deploy deep learning models in cloud? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 2 years ago. Improve this question I have built a deep learning model with python using keras (LSTM classifier for emotion speech recognition) and it’s works perfectly locally, but when i

Advertisement