Peter Ombwa

Results 221 comments of Peter Ombwa

That's right! It looks like we will need a post dependabot script to ensure dependencies are also updated in the PowerShell Assembly Load Context. I can look into this.

@leapyear1969, the certificate needs to be installed in your user's trusted store on the machine you are running the script from. You can use `Get-ChildItem Cert:\CurrentUser\My\$CertThumbprint` to verify if the...

@MarkDordoy, the PowerShell SDK does currently not support this. The MaxRetry is currently locked at 3, and the implementation is based on https://microsoftgraph.github.io/msgraph-sdk-design/middleware/RetryHandler.html. Which command are you using? Ideally, the...

Got it! We will need to allow customers to set `RetriesTimeLimit` global variable that they can use to control the maximum number of retries allowed. The current implementation currently locks...

Thanks for bringing this to our attention. This is due to a serialization bug in the code generator that's also affecting https://github.com/Azure/azure-powershell/issues/12267. As a workaround, you can create the choices...

@Tbohunek, this is valuable feedback for the workload owners. Workload APIs should ideally return an error message with the required permissions/scopes when an API request fails with a 403-status code...

The command should be updated to use `PUT` instead of `PATCH` as described in the [API reference docs](https://docs.microsoft.com/en-us/graph/api/accesspackageassignmentpolicy-update?view=graph-rest-beta&tabs=csharp). Related to microsoftgraph/msgraph-metadata#180 and will be fixed by https://github.com/microsoftgraph/microsoft-graph-devx-api/issues/607.

@Attila-FIN, this works on my end without any issue. From my testing, it looks like the service won't return a field if it has no value: ![image](https://user-images.githubusercontent.com/7061532/156850376-5e0da30e-f379-468f-b84f-519ae1945e3e.png) ![image](https://user-images.githubusercontent.com/7061532/156850468-c82114d5-74c9-401d-ba1c-8d89347180fe.png)

Thanks for following up on this. Unfortunately, the bug was caused by a missing request body in the OpenAPI file used to generate the module. I've opened an issue at...

The issue is due to missing derived types in the OpenAPI document and lack of discriminator support. `accessPackageAnswerString` is a derived type `accessPackageAnswer` abstract type: ``` xml ``` The derived...