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 fe113e9 commit 63a91a7Copy full SHA for 63a91a7
packages/models-library/src/models_library/clusters.py
@@ -96,6 +96,9 @@ class Config(BaseAuthentication.Config):
96
class NoAuthentication(BaseAuthentication):
97
type: Literal["none"] = "none"
98
99
+ class Config(BaseAuthentication.Config):
100
+ schema_extra: ClassVar[dict[str, Any]] = {"examples": [{"type": "none"}]}
101
+
102
103
class TLSAuthentication(BaseAuthentication):
104
type: Literal["tls"] = "tls"
0 commit comments