openshift_openapi/v4_5/api/oauth/v1/
mod.rs

1
2mod cluster_role_scope_restriction;
3pub use self::cluster_role_scope_restriction::ClusterRoleScopeRestriction;
4
5mod o_auth_access_token;
6pub use self::o_auth_access_token::OAuthAccessToken;
7#[cfg(feature = "api")] pub use self::o_auth_access_token::{ReadOAuthAccessTokenOptional, ReadOAuthAccessTokenResponse};
8
9mod o_auth_authorize_token;
10pub use self::o_auth_authorize_token::OAuthAuthorizeToken;
11#[cfg(feature = "api")] pub use self::o_auth_authorize_token::{ReadOAuthAuthorizeTokenOptional, ReadOAuthAuthorizeTokenResponse};
12
13mod o_auth_client;
14pub use self::o_auth_client::OAuthClient;
15#[cfg(feature = "api")] pub use self::o_auth_client::{ReadOAuthClientOptional, ReadOAuthClientResponse};
16
17mod o_auth_client_authorization;
18pub use self::o_auth_client_authorization::OAuthClientAuthorization;
19#[cfg(feature = "api")] pub use self::o_auth_client_authorization::{ReadOAuthClientAuthorizationOptional, ReadOAuthClientAuthorizationResponse};
20
21mod scope_restriction;
22pub use self::scope_restriction::ScopeRestriction;