Struct gapi_grpc::google::container::v1beta1::GetOpenIdConfigResponse[][src]

pub struct GetOpenIdConfigResponse {
    pub issuer: String,
    pub jwks_uri: String,
    pub response_types_supported: Vec<String>,
    pub subject_types_supported: Vec<String>,
    pub id_token_signing_alg_values_supported: Vec<String>,
    pub claims_supported: Vec<String>,
    pub grant_types: Vec<String>,
}

GetOpenIDConfigResponse is an OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details.

Fields

issuer: String

OIDC Issuer.

jwks_uri: String

JSON Web Key uri.

response_types_supported: Vec<String>

Supported response types.

subject_types_supported: Vec<String>

Supported subject types.

id_token_signing_alg_values_supported: Vec<String>

supported ID Token signing Algorithms.

claims_supported: Vec<String>

Supported claims.

grant_types: Vec<String>

Supported grant types.

Trait Implementations

impl Clone for GetOpenIdConfigResponse[src]

impl Debug for GetOpenIdConfigResponse[src]

impl Default for GetOpenIdConfigResponse[src]

impl Message for GetOpenIdConfigResponse[src]

impl PartialEq<GetOpenIdConfigResponse> for GetOpenIdConfigResponse[src]

impl StructuralPartialEq for GetOpenIdConfigResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for GetOpenIdConfigResponse

impl Send for GetOpenIdConfigResponse

impl Sync for GetOpenIdConfigResponse

impl Unpin for GetOpenIdConfigResponse

impl UnwindSafe for GetOpenIdConfigResponse

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]