pub struct ApplicationSettings {
pub access_denied_page_settings: Option<AccessDeniedPageSettings>,
pub attribute_propagation_settings: Option<AttributePropagationSettings>,
pub cookie_domain: Option<String>,
pub csm_settings: Option<CsmSettings>,
}Expand description
Wrapper over application specific settings for IAP.
This type is not used in any activity, and only used as part of another schema.
Fields§
§access_denied_page_settings: Option<AccessDeniedPageSettings>Optional. Customization for Access Denied page.
attribute_propagation_settings: Option<AttributePropagationSettings>Optional. Settings to configure attribute propagation.
The Domain value to set for cookies generated by IAP. This value is not validated by the API, but will be ignored at runtime if invalid.
csm_settings: Option<CsmSettings>Optional. Settings to configure IAP’s behavior for a service mesh.
Trait Implementations§
Source§impl Clone for ApplicationSettings
impl Clone for ApplicationSettings
Source§fn clone(&self) -> ApplicationSettings
fn clone(&self) -> ApplicationSettings
Returns a duplicate 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 ApplicationSettings
impl Debug for ApplicationSettings
Source§impl Default for ApplicationSettings
impl Default for ApplicationSettings
Source§fn default() -> ApplicationSettings
fn default() -> ApplicationSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationSettings
impl<'de> Deserialize<'de> for ApplicationSettings
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
Source§impl Serialize for ApplicationSettings
impl Serialize for ApplicationSettings
impl Part for ApplicationSettings
Auto Trait Implementations§
impl Freeze for ApplicationSettings
impl RefUnwindSafe for ApplicationSettings
impl Send for ApplicationSettings
impl Sync for ApplicationSettings
impl Unpin for ApplicationSettings
impl UnwindSafe for ApplicationSettings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more