class Google::Apis::IapV1::OAuthSettings
Configuration for OAuth login&consent flow behavior as well as for OAuth Credentials.
Attributes
login_hint[RW]
Domain hint to send as hd=? parameter in OAuth request flow. Enables redirect to primary IDP by skipping Google's login screen. developers.google. com/identity/protocols/OpenIDConnect#hd-param Note: IAP does not verify that the id token's hd claim matches this value since access behavior is managed by IAM policies. Corresponds to the JSON property `loginHint` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/iap_v1/classes.rb, line 560 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 565 def update!(**args) @login_hint = args[:login_hint] if args.key?(:login_hint) end