[][src]Struct pachyderm::auth::AuthenticateRequest

pub struct AuthenticateRequest {
    pub github_token: String,
    pub oidc_state: String,
    pub one_time_password: String,
}

Exactly one of 'github_token', 'oidc_state', or 'one_time_password' must be set:

Fields

github_token: String

This is the token returned by GitHub and used to authenticate the caller. When Pachyderm is deployed locally, setting this value to a given string will automatically authenticate the caller as a GitHub user whose username is that string (unless this "looks like" a GitHub access code, in which case Pachyderm does retrieve the corresponding GitHub username)

oidc_state: String

This is the session state that Pachyderm creates in order to keep track of information related to the current OIDC session.

one_time_password: String

This is a short-lived, one-time-use password generated by Pachyderm, for the purpose of propagating authentication to new clients (e.g. from the dash to pachd)

Trait Implementations

impl Clone for AuthenticateRequest[src]

impl Debug for AuthenticateRequest[src]

impl Default for AuthenticateRequest[src]

impl Message for AuthenticateRequest[src]

impl PartialEq<AuthenticateRequest> for AuthenticateRequest[src]

impl StructuralPartialEq for AuthenticateRequest[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]