@@ -10,11 +10,7 @@ pub mod versioned {
10
10
// This makes v1alpha1 versions of all authentication providers available to the
11
11
// AuthenticationClassProvider enum below.
12
12
mod v1alpha1 {
13
- use crate :: crd:: authentication:: {
14
- kerberos:: v1alpha1 as kerberos_v1alpha1, ldap:: v1alpha1 as ldap_v1alpha1,
15
- oidc:: v1alpha1 as oidc_v1alpha1, r#static:: v1alpha1 as static_v1alpha1,
16
- tls:: v1alpha1 as tls_v1alpha1,
17
- } ;
13
+ use crate :: crd:: authentication:: { kerberos, ldap, oidc, r#static, tls} ;
18
14
}
19
15
/// The Stackable Platform uses the AuthenticationClass as a central mechanism to handle user
20
16
/// authentication across supported products.
@@ -72,23 +68,23 @@ pub mod versioned {
72
68
pub enum AuthenticationClassProvider {
73
69
/// The [static provider](https://DOCS_BASE_URL_PLACEHOLDER/concepts/authentication#_static)
74
70
/// is used to configure a static set of users, identified by username and password.
75
- Static ( static_v1alpha1 :: AuthenticationProvider ) ,
71
+ Static ( r#static :: v1alpha1 :: AuthenticationProvider ) ,
76
72
77
73
/// The [LDAP provider](DOCS_BASE_URL_PLACEHOLDER/concepts/authentication#_ldap).
78
74
/// There is also the ["Authentication with LDAP" tutorial](DOCS_BASE_URL_PLACEHOLDER/tutorials/authentication_with_openldap)
79
75
/// where you can learn to configure Superset and Trino with OpenLDAP.
80
- Ldap ( ldap_v1alpha1 :: AuthenticationProvider ) ,
76
+ Ldap ( ldap :: v1alpha1 :: AuthenticationProvider ) ,
81
77
82
78
/// The OIDC provider can be used to configure OpenID Connect.
83
- Oidc ( oidc_v1alpha1 :: AuthenticationProvider ) ,
79
+ Oidc ( oidc :: v1alpha1 :: AuthenticationProvider ) ,
84
80
85
81
/// The [TLS provider](DOCS_BASE_URL_PLACEHOLDER/concepts/authentication#_tls).
86
82
/// The TLS AuthenticationClass is used when users should authenticate themselves with a TLS certificate.
87
- Tls ( tls_v1alpha1 :: AuthenticationProvider ) ,
83
+ Tls ( tls :: v1alpha1 :: AuthenticationProvider ) ,
88
84
89
85
/// The [Kerberos provider](DOCS_BASE_URL_PLACEHOLDER/concepts/authentication#_kerberos).
90
86
/// The Kerberos AuthenticationClass is used when users should authenticate themselves via Kerberos.
91
- Kerberos ( kerberos_v1alpha1 :: AuthenticationProvider ) ,
87
+ Kerberos ( kerberos :: v1alpha1 :: AuthenticationProvider ) ,
92
88
}
93
89
94
90
/// Common [`v1alpha1::ClientAuthenticationDetails`] which is specified at the client/ product
@@ -140,6 +136,6 @@ pub mod versioned {
140
136
// that user can not configure multiple options at the same time (yes we are aware that this makes a
141
137
// changing the type of an AuthenticationClass harder).
142
138
// This is a non-breaking change though :)
143
- oidc : Option < oidc_v1alpha1 :: ClientAuthenticationOptions < O > > ,
139
+ oidc : Option < oidc :: v1alpha1 :: ClientAuthenticationOptions < O > > ,
144
140
}
145
141
}
0 commit comments