class Google::Apis::IapV1::ApplicationSettings
Wrapper over application specific settings for IAP.
Attributes
Custom content configuration for access denied page. IAP allows customers to define a custom URI to use as the error page when access is denied to users. If IAP prevents access to this page, the default IAP error page will be displayed instead. Corresponds to the JSON property `accessDeniedPageSettings` @return [Google::Apis::IapV1::AccessDeniedPageSettings]
Configuration for RCTokens generated for CSM workloads protected by IAP. RCTokens are IAP generated JWTs that can be verified at the application. The RCToken is primarily used for ISTIO deployments, and can be scoped to a single mesh by configuring the audience field accordingly Corresponds to the JSON property `csmSettings` @return [Google::Apis::IapV1::CsmSettings]
Public Class Methods
# File lib/google/apis/iap_v1/classes.rb, line 124 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/iap_v1/classes.rb, line 129 def update!(**args) @access_denied_page_settings = args[:access_denied_page_settings] if args.key?(:access_denied_page_settings) @cookie_domain = args[:cookie_domain] if args.key?(:cookie_domain) @csm_settings = args[:csm_settings] if args.key?(:csm_settings) end