We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3689ea7 commit 8226651Copy full SHA for 8226651
google/auth/compute_engine/_mtls.py
@@ -39,7 +39,12 @@ class MdsMtlsConfig:
39
40
41
class MdsMtlsMode(enum.Enum):
42
- """MDS mTLS mode."""
+ """MDS mTLS mode. Used to configure connection behavior when connecting to MDS.
43
+
44
+ STRICT: Always use HTTPS/mTLS. If certificates are not found locally, an error will be returned.
45
+ NONE: Never use mTLS. Requests will use regular HTTP.
46
+ DEFAULT: Use mTLS if certificates are found locally, otherwise use regular HTTP.
47
+ """
48
49
STRICT = "strict"
50
NONE = "none"
0 commit comments