class Google::Apis::IapV1::IapSettings

The IAP configurable settings.

Attributes

access_settings[RW]

Access related settings for IAP protected apps. Corresponds to the JSON property `accessSettings` @return [Google::Apis::IapV1::AccessSettings]

application_settings[RW]

Wrapper over application specific settings for IAP. Corresponds to the JSON property `applicationSettings` @return [Google::Apis::IapV1::ApplicationSettings]

name[RW]

Required. The resource name of the IAP protected resource. Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/iap_v1/classes.rb, line 458
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 463
def update!(**args)
  @access_settings = args[:access_settings] if args.key?(:access_settings)
  @application_settings = args[:application_settings] if args.key?(:application_settings)
  @name = args[:name] if args.key?(:name)
end