Struct google_appengine1::api::IdentityAwareProxy [−][src]
pub struct IdentityAwareProxy {
pub enabled: Option<bool>,
pub oauth2_client_id: Option<String>,
pub oauth2_client_secret: Option<String>,
pub oauth2_client_secret_sha256: Option<String>,
}Expand description
Identity-Aware Proxy
This type is not used in any activity, and only used as part of another schema.
Fields
enabled: Option<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: Option<String>OAuth2 client ID to use for the authentication flow.
oauth2_client_secret: Option<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: Option<String>Hex-encoded SHA-256 hash of the client secret.@OutputOnly
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more