class Google::Apis::IapV1::AccessDeniedPageSettings
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.
Attributes
access_denied_page_uri[RW]
The URI to be redirected to when access is denied. Corresponds to the JSON property `accessDeniedPageUri` @return [String]
generate_troubleshooting_uri[RW]
Whether to generate a troubleshooting URL on access denied events to this application. Corresponds to the JSON property `generateTroubleshootingUri` @return [Boolean]
generate_troubleshooting_uri?[RW]
Whether to generate a troubleshooting URL on access denied events to this application. Corresponds to the JSON property `generateTroubleshootingUri` @return [Boolean]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/iap_v1/classes.rb, line 44 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/iap_v1/classes.rb, line 49 def update!(**args) @access_denied_page_uri = args[:access_denied_page_uri] if args.key?(:access_denied_page_uri) @generate_troubleshooting_uri = args[:generate_troubleshooting_uri] if args.key?(:generate_troubleshooting_uri) end