skip to Main Content

Azure policy with "Modify" effect not working

I have an Azure policy with a "Modify" effect: { "mode": "All", "policyRule": { "if": { "allOf": [ { "field": "type", "equals": "Microsoft.Web/sites" }, { "field": "Microsoft.Web/sites/publicNetworkAccess", "exists": "false" } ] }, "then": { "effect": "[parameters('effect')]", "details": { "roleDefinitionIds": […

VIEW QUESTION

azure document intelligence API PRebuilt-layout with KeyValuePairs feature (C# SDK)

The following code is throwing an Invalid argument error on KeyValuePairs while keyValuePairs feature exists and is valid. Can you help explain? AnalyzeDocumentOperation operation = await client.AnalyzeDocumentFromUriAsync(WaitUntil.Completed, "prebuilt-layout", fileUri, new AnalyzeDocumentOptions() { Features = { DocumentAnalysisFeature.KeyValuePairs } }); Error message:…

VIEW QUESTION

Azure Search only returns an element

We have an azure search index that returns only one element despite having 3 matches. However Azure Search only returns the first one. We would need the three matches returned as they belong to different parent entities This is the…

VIEW QUESTION

How can I convert string output of Set Variable activity to .csv or .txt file in Azure Data Factory

I want to take the output of the Set Variable activity which is in String format and convert it into a .csv or .txt format. [Set Variable output: { "name": "Data_String", "value": "[{"Name":"Balaji","EnabledFlag":"Y","CategoryId":"300000290956003","LastUpdateDate":"19-09-2023","CreationDate":"19-09-2023","Entity":"027"},{"Name":"Ahmed","EnabledFlag":"Y","CategoryId":"300000290956073","LastUpdateDate":"19-09-2023","CreationDate":"19-09-2023","Entity":"027"}, } ] Here the output of the…

VIEW QUESTION
Back To Top
Search