Class: Google::Apis::IapV1::IapSettings
- Inherits:
-
Object
- Object
- Google::Apis::IapV1::IapSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/iap_v1/classes.rb,
generated/google/apis/iap_v1/representations.rb,
generated/google/apis/iap_v1/representations.rb
Overview
The IAP configurable settings.
Instance Attribute Summary collapse
-
#access_settings ⇒ Google::Apis::IapV1::AccessSettings
Access related settings for IAP protected apps.
-
#application_settings ⇒ Google::Apis::IapV1::ApplicationSettings
Wrapper over application specific settings for IAP.
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IapSettings
constructor
A new instance of IapSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IapSettings
Returns a new instance of IapSettings.
450 451 452 |
# File 'generated/google/apis/iap_v1/classes.rb', line 450 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_settings ⇒ Google::Apis::IapV1::AccessSettings
Access related settings for IAP protected apps.
Corresponds to the JSON property accessSettings
438 439 440 |
# File 'generated/google/apis/iap_v1/classes.rb', line 438 def access_settings @access_settings end |
#application_settings ⇒ Google::Apis::IapV1::ApplicationSettings
Wrapper over application specific settings for IAP.
Corresponds to the JSON property applicationSettings
443 444 445 |
# File 'generated/google/apis/iap_v1/classes.rb', line 443 def application_settings @application_settings end |
#name ⇒ String
Required. The resource name of the IAP protected resource.
Corresponds to the JSON property name
448 449 450 |
# File 'generated/google/apis/iap_v1/classes.rb', line 448 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
455 456 457 458 459 |
# File 'generated/google/apis/iap_v1/classes.rb', line 455 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 |