Struct gapi_grpc::google::appengine::v1::application::IdentityAwareProxy[][src]

pub struct IdentityAwareProxy {
    pub enabled: bool,
    pub oauth2_client_id: String,
    pub oauth2_client_secret: String,
    pub oauth2_client_secret_sha256: String,
}

Identity-Aware Proxy

Fields

enabled: bool

Whether the serving infrastructure will authenticate and authorize all incoming requests.

If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.

oauth2_client_id: String

OAuth2 client ID to use for the authentication flow.

oauth2_client_secret: String

OAuth2 client secret to use for the authentication flow.

For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.

@InputOnly

oauth2_client_secret_sha256: String

Hex-encoded SHA-256 hash of the client secret.

@OutputOnly

Trait Implementations

impl Clone for IdentityAwareProxy[src]

impl Debug for IdentityAwareProxy[src]

impl Default for IdentityAwareProxy[src]

impl Message for IdentityAwareProxy[src]

impl PartialEq<IdentityAwareProxy> for IdentityAwareProxy[src]

impl StructuralPartialEq for IdentityAwareProxy[src]

Auto Trait Implementations

impl RefUnwindSafe for IdentityAwareProxy

impl Send for IdentityAwareProxy

impl Sync for IdentityAwareProxy

impl Unpin for IdentityAwareProxy

impl UnwindSafe for IdentityAwareProxy

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]