class Google::Apis::IapV1::CorsSettings
Allows customers to configure HTTP request paths that'll allow HTTP OPTIONS call to bypass authentication and authorization.
Attributes
allow_http_options[RW]
Configuration to allow HTTP OPTIONS calls to skip authorization. If undefined, IAP will not apply any special logic to OPTIONS requests. Corresponds to the JSON property `allowHttpOptions` @return [Boolean]
allow_http_options?[RW]
Configuration to allow HTTP OPTIONS calls to skip authorization. If undefined, IAP will not apply any special logic to OPTIONS requests. Corresponds to the JSON property `allowHttpOptions` @return [Boolean]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/iap_v1/classes.rb, line 260 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 265 def update!(**args) @allow_http_options = args[:allow_http_options] if args.key?(:allow_http_options) end