Struct google_appengine1_beta4::api::IdentityAwareProxy
source · 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>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§
source§impl Clone for IdentityAwareProxy
impl Clone for IdentityAwareProxy
source§fn clone(&self) -> IdentityAwareProxy
fn clone(&self) -> IdentityAwareProxy
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for IdentityAwareProxy
impl Debug for IdentityAwareProxy
source§impl Default for IdentityAwareProxy
impl Default for IdentityAwareProxy
source§fn default() -> IdentityAwareProxy
fn default() -> IdentityAwareProxy
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IdentityAwareProxy
impl<'de> Deserialize<'de> for IdentityAwareProxy
source§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