Tim
Tim
According to API reference [here](https://learn.microsoft.com/en-us/graph/api/resources/accesspackageassignment?view=graph-rest-beta), only GET method is supported. Therefore ``DELETE`` operation should be removed.
As per the API documentation here https://learn.microsoft.com/en-us/graph/api/authentication-get?view=graph-rest-beta&tabs=powershell the path ``/users/{id | userPrincipalName}/authentication/requirements`` for both GET and PATCH operation is missing in the metadata file for PowerShell. https://[raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/beta/powershell_v2.yaml](https://raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/v1.0/powershell_v2.yaml).
Fixes #3001 ### Changes proposed in this pull request - Updated all beta example files containing ``Connect-MgBetaGraph`` to text ``Connect-MgGraph``
### Describe the bug Some beta cmdlets contain examples that have inexistent ``Connect-MgBetaGraph`` cmdlet. This is mostly in examples that were handwritten. See example [here](https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.beta.groups/get-mgbetagroup?view=graph-powershell-beta) and in the image below....
This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR.
Fixes #2973 ### Changes proposed in this pull request - This change handles scenarios where equality operator types like ``in`` and ``has`` contain ``+`` character enclosed within brackets in...
As reported here https://github.com/microsoftgraph/msgraph-sdk-powershell/issues/2843, some duplicate operation ids were detected. This violates a rule on operation ids as per the description in the Open Api spec. https://spec.openapis.org/oas/v3.0.3
For example, this path ``/servicePrincipals/{servicePrincipal-id}/appRoleAssignments`` contains consistency level header parameter as shown in the image below while this one ``/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}`` is missing. Annotations have also been added to include the...