We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e358a5a commit 697195bCopy full SHA for 697195b
1 file changed
src/msgraph_core/_enums.py
@@ -12,6 +12,9 @@ class APIVersion(str, Enum):
12
beta = 'beta'
13
v1 = 'v1.0'
14
15
+ def __str__(self):
16
+ return self.value
17
+
18
19
class FeatureUsageFlag(int, Enum):
20
"""Enumerated list of values used to flag usage of specific middleware"""
@@ -23,6 +26,9 @@ class FeatureUsageFlag(int, Enum):
23
26
DEFAULT_HTTP_PROVIDER_ENABLED = 8
24
27
LOGGING_HANDLER_ENABLED = 16
25
28
29
30
31
32
33
class NationalClouds(str, Enum):
34
"""Enumerated list of supported sovereign clouds"""
@@ -32,3 +38,6 @@ class NationalClouds(str, Enum):
38
Global = 'https://graph.microsoft.com'
39
US_DoD = 'https://dod-graph.microsoft.us'
40
US_GOV = 'https://graph.microsoft.us'
41
42
43
0 commit comments