pub struct GcipSettings {
pub login_page_uri: Option<String>,
pub tenant_ids: Option<Vec<String>>,
}Expand description
Allows customers to configure tenant IDs for a Cloud Identity Platform (GCIP) instance for each application.
This type is not used in any activity, and only used as part of another schema.
Fields§
§login_page_uri: Option<String>Login page URI associated with the GCIP tenants. Typically, all resources within the same project share the same login page, though it could be overridden at the sub resource level.
tenant_ids: Option<Vec<String>>Optional. GCIP tenant IDs that are linked to the IAP resource. tenant_ids could be a string beginning with a number character to indicate authenticating with GCIP tenant flow, or in the format of _ to indicate authenticating with GCIP agent flow. If agent flow is used, tenant_ids should only contain one single element, while for tenant flow, tenant_ids can contain multiple elements.
Trait Implementations§
Source§impl Clone for GcipSettings
impl Clone for GcipSettings
Source§fn clone(&self) -> GcipSettings
fn clone(&self) -> GcipSettings
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more