We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b8c774 commit ecc3950Copy full SHA for ecc3950
msgraphcore/enums.py
@@ -0,0 +1,17 @@
1
+from enum import Enum
2
+
3
4
+class APIVersion(str, Enum):
5
+ """Enumerated list of supported API Versions"""
6
+ beta = 'beta'
7
+ v1 = 'v1.0'
8
9
10
+class NationalClouds(str, Enum):
11
+ """Enumerated list of supported sovereign clouds"""
12
13
+ China = 'https://microsoftgraph.chinacloudapi.cn'
14
+ Germany = 'https://graph.microsoft.de'
15
+ Global = 'https://graph.microsoft.com'
16
+ US_DoD = 'https://dod-graph.microsoft.us'
17
+ US_GOV = 'https://graph.microsoft.us'
0 commit comments