skip to Main Content

ERROR: () The provided value for encryptionWithCmk.enforcement were invalid while trying to update azure search service

I am trying to update the network rules of a search service using the following powershell command:az search service update --name "$(azure_search_service)" --resource-group "$(resource_group)" --ip-rules $ipsToBeAdded but getting the error "ERROR: () The provided value for encryptionWithCmk.enforcement were invalid. Parameter…

VIEW QUESTION

Azure data factory – function if does not take 4 arguments

I am trying to split the item name if the item name contains '_' and if those item name starts with a specific schema names item = ['test_tabl','Schema1__mytable1', 'Schema2__mytable2'] @concat('SELECT *FROM ', if(contains(item(), '_'), and(startswith(item(), 'Schema1_'),item()), or(startswith(item(), 'Schema2_'),item()), concat(split(item(), '_')[0],…

VIEW QUESTION
Back To Top
Search