Erwin
Erwin
### Description I've hit `Object reference not set to an instance of an object.` on a script. But I have a hard time reproducing it. All runs are doing fine...
### Description If i understand correctly, the following **advanced query** should work because i set `consistencyLevel eventual`: ``` Get-AzADUser -select 'Department' -AppendSelected -consistencyLevel eventual -Filter "Department ne null" ``` Documentation:...
Scenario Need to use Azure Policy to set diagnostics settings on an app service, the log categories differ from plan, for example Anti virus logs are only supported on premium...
When will user-assigned identities be supported for the HTTP connector, i'm currently getting a false error where it's assuming i have a system assigned identity (which i don't have): `...
When in Visual Studio code, and using Managed Identity somewhere in your workflow, for instance, on a HTTP action, the following error will display while debugging: ``` Workflow Error: operationName='WorkflowDefinitionProvider.ProcessWorkflow',...
### Description groupTypes is a string collection: https://docs.microsoft.com/en-us/graph/api/resources/group?view=graph-rest-1.0 It should be able to filter on this as documented `Returned by default. Supports $filter (eq, not).`. Trying this out with checking...
## Bug description Generating a SAS token like here https://docs.microsoft.com/en-us/rest/api/apimanagement/apimanagementrest/azure-api-management-rest-api-authentication#ProgrammaticallyCreateToken, with this format will not pass: `SharedAccessSignature uid=53dd860e1b72ff0467030003&ex=2014-08-04T22:03:00.0000000Z&sn=ItH6scUyCazNKHULKA0Yv6T+Skk4bdVmLqcPPPdWoxl2n1+rVbhKlplFrqjkoUFRr0og4wjeDz4yfThC82OjfQ==` It doesn't validate over: https://github.com/Azure/api-management-developer-portal/blob/51ec561561a7acbb43d6595e16c40f8118162618/src/authentication/accessToken.ts#L40 SAS token does work for other API...
When using a generated client for an API where the input type is a stream, this generates a ` FileParameter body` input parameter in NSwag. This looks good. When you...
## Describe the bug Using a pattern like `"pattern": "(?i)(SecurityGroup)",` wil break all validation in the same scheme, ## Expected Behavior Should work, same scheme works just fine for json...
There are some simple date functions available in Bicep: https://learn.microsoft.com/en-us/azure/azure-resource-manager/bicep/bicep-functions-date With https://learn.microsoft.com/en-us/dotnet/api/system.globalization.isoweek?view=net-8.0, we can get the standardized week day formats in c#, without having to bother with localization. Useful in...