[][src]Struct keycloak_crd::Client

pub struct Client {
    pub access: BTreeMap<String, bool>,
    pub admin_url: String,
    pub attributes: BTreeMap<String, String>,
    pub base_url: String,
    pub bearer_only: bool,
    pub client_authenticator_type: String,
    pub client_id: String,
    pub consent_required: bool,
    pub default_roles: Vec<String>,
    pub description: String,
    pub direct_access_grants_enabled: bool,
    pub enabled: bool,
    pub frontchannel_logout: bool,
    pub full_scope_allowed: bool,
    pub id: Option<String>,
    pub implicit_flow_enabled: bool,
    pub name: String,
    pub node_registration_timeout: i32,
    pub not_before: i32,
    pub protocol: String,
    pub protocol_mappers: Vec<ProtocolMapper>,
    pub public_client: bool,
    pub redirect_uris: Vec<String>,
    pub root_url: String,
    pub secret: String,
    pub service_accounts_enabled: bool,
    pub standard_flow_enabled: bool,
    pub surrogate_auth_required: bool,
    pub use_template_config: bool,
    pub use_template_mappers: bool,
    pub use_template_scope: bool,
    pub web_origins: Vec<String>,
}

Fields

access: BTreeMap<String, bool>admin_url: Stringattributes: BTreeMap<String, String>base_url: Stringbearer_only: boolclient_authenticator_type: Stringclient_id: Stringconsent_required: booldefault_roles: Vec<String>description: Stringdirect_access_grants_enabled: boolenabled: boolfrontchannel_logout: boolfull_scope_allowed: boolid: Option<String>implicit_flow_enabled: boolname: Stringnode_registration_timeout: i32not_before: i32protocol: Stringprotocol_mappers: Vec<ProtocolMapper>public_client: boolredirect_uris: Vec<String>root_url: Stringsecret: Stringservice_accounts_enabled: boolstandard_flow_enabled: boolsurrogate_auth_required: booluse_template_config: booluse_template_mappers: booluse_template_scope: boolweb_origins: Vec<String>

Trait Implementations

impl Clone for Client[src]

impl Debug for Client[src]

impl Default for Client[src]

impl<'de> Deserialize<'de> for Client where
    Client: Default
[src]

impl PartialEq<Client> for Client[src]

impl Serialize for Client[src]

impl StructuralPartialEq for Client[src]

Auto Trait Implementations

impl RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl UnwindSafe for Client

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.