[][src]Struct pachyderm::auth::AuthConfig

pub struct AuthConfig {
    pub live_config_version: i64,
    pub id_providers: Vec<IdProvider>,
    pub saml_svc_options: Option<SamlServiceOptions>,
}

Configure Pachyderm's auth system (particularly authentication backends

Fields

live_config_version: i64

live_config_version identifies the version of a given pachyderm cluster's current auth configuration; if a user tries to write an auth configuration where live_config_version doesn't match the version of the cluster's current config, the write will fail. This allows for safe read+modify+write config changes.

id_providers: Vec<IdProvider>

id_providers describes external ID providers that can authenticate Pachyderm users (e.g. GitHub, Okta, etc)

saml_svc_options: Option<SamlServiceOptions>

Trait Implementations

impl Clone for AuthConfig[src]

impl Debug for AuthConfig[src]

impl Default for AuthConfig[src]

impl Message for AuthConfig[src]

impl PartialEq<AuthConfig> for AuthConfig[src]

impl StructuralPartialEq for AuthConfig[src]

Auto Trait Implementations

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> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]