Azure – Data factory expression builder with variables
I'm using a third party REST API, to which I pass a serial number of a device, and it returns a series of values. This API returns a JSON with a node that is named after the serial, so I…
I'm using a third party REST API, to which I pass a serial number of a device, and it returns a series of values. This API returns a JSON with a node that is named after the serial, so I…
I am getting a summary of our log analytics workspaces in the company, this includes the tables that are being used in each workspace, as well as other data such as the ingestion volume. The closest thing to "get" this…
Creating a workbook tile using KQL which utilises parameters - in this case VirtualMachines. If I run the following with only 1 VM selected in the paramater, the results are displayed. If I select 2 or more VMs there is…
I have an Azure Postgres flexible server running and need to take a backup of the database in it Following the directions in 9.1.4 of The Postgres documentation here I crafted the below pg-dump command. pg_dump -b -Z0 -F t…
When I try to share the project in the form recognizer studio I get an error: "Cannot share project. Please make sure you have the permission to access Storage Account." I have permissions on the storage container. What additional permissions…
I'm trying to use functions when calling Azure OpenAI GPT, as documented in https://platform.openai.com/docs/api-reference/chat/create#chat/create-functions I use: import openai openai.api_type = "azure" openai.api_base = "https://XXXXXXXX.openai.azure.com/" openai.api_version = "2023-06-01-preview" openai.api_key = os.getenv("OPENAI_API_KEY") response = openai.ChatCompletion.create( engine="gpt-35-turbo-XXX", model="gpt-35-turbo-0613-XXXX" messages=messages, functions=functions, function_call="auto", ) but…
I'm trying to create on Azure Cosmos DB with MongoDB driver, a new collection. I've reached the limit of 100 collection for account cause it's a serverless account. Now I've deleted some old databases and collection a couple of days…
Is it possible to configure a data-factory pipeline that performs data-transfer between an endpoint available on-premises ( such as a SFTP server ) and Azure blob storage, where the IR process runs exclusively in the Azure compute fabric ? So…
I am trying to follow this link https://www.codeguru.com/azure/mvc-web-apps-azure/ for integration of Azure AD authentication. I am confused. Which method is this using internally? Is it using Open ID, SAML 2.0 and LDAP authentication or just Open ID authentication? I followed…
I am trying to retrieve the app settings from Azure configurations menu option of app service for an ASP.NET Core 3.x Web API. Azure portal configurations option In the configurations menu under appsettings, I have a environment_stage variable which I…