microsoftgraph / microsoftgraph/msgraph-beta-sdk-dotnet

[Bug] CloudPcRegionGroup enum missing uae and southAfrica values

Open
#1,085 1 comment 1 reaction 1 assignee View on GitHub

@MIchaelMainer is already working on this.

Since Apr 13, 2026.

Bug: metadata Service issue type:bug
Dominant language
C#
Stars
112
Forks
37
Avg merge
14h 57m
Merged PRs (30d)
3

Description

Describe the bug

The CloudPcRegionGroup enum is missing enum members that are returned by the API endpoint (/deviceManagement/virtualEndpoint/supportedRegions).

Missing Enum Values

  • uae
  • southAfrica

API Response Example

{
    "id": "0ed2ae27-9608-8c47-5112-a12bc27760e6",
    "displayName": "uaenorth",
    "regionStatus": "available",
    "supportedSolution": "windows365",
    "regionGroup": "uae",
    "geographicLocationType": null
},
{
    "id": "ce512864-ff3b-a34f-dfde-dfcad741cfb5",
    "displayName": "southafricanorth",
    "regionStatus": "available",
    "supportedSolution": "windows365",
    "regionGroup": "southAfrica",
    "geographicLocationType": null
}
Expected behavior

The CloudPcRegionGroup enum should include all possible values returned by the Graph API:

[EnumMember(Value = "uae")]
Uae,

[EnumMember(Value = "southAfrica")]
SouthAfrica,
How to reproduce
  1. Call GET https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/supportedRegions
  2. Observe that some regions have regionGroup values of "uae" or "southAfrica"
  3. Attempt to deserialize the response using the SDK's CloudPcRegionGroup enum
  4. These values are not recognized and result in null
SDK Version

5.129.0-preview

Latest version known to work for scenario above?

No response

Known Workarounds

No response

Debug output
Configuration

No response

Other information

No response

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.