Class: Google::Apis::IapV1::GcipSettings
- Inherits:
-
Object
- Object
- Google::Apis::IapV1::GcipSettings
- 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
Allows customers to configure tenant_id for GCIP instance per-app.
Instance Attribute Summary collapse
-
#login_page_uri ⇒ String
Login page URI associated with the GCIP tenants.
-
#tenant_ids ⇒ Array<String>
GCIP tenant ids that are linked to the IAP resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GcipSettings
constructor
A new instance of GcipSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GcipSettings
Returns a new instance of GcipSettings
240 241 242 |
# File 'generated/google/apis/iap_v1/classes.rb', line 240 def initialize(**args) update!(**args) end |
Instance Attribute Details
#login_page_uri ⇒ String
Login page URI associated with the GCIP tenants.
Typically, all resources within the same project share the same login page,
though it could be overridden at the sub resource level.
Corresponds to the JSON property loginPageUri
228 229 230 |
# File 'generated/google/apis/iap_v1/classes.rb', line 228 def login_page_uri @login_page_uri end |
#tenant_ids ⇒ Array<String>
GCIP tenant ids that are linked to the IAP resource.
tenant_ids could be a string beginning with a number character to indicate
authenticating with GCIP tenant flow, or in the format of _tenantIds
238 239 240 |
# File 'generated/google/apis/iap_v1/classes.rb', line 238 def tenant_ids @tenant_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
245 246 247 248 |
# File 'generated/google/apis/iap_v1/classes.rb', line 245 def update!(**args) @login_page_uri = args[:login_page_uri] if args.key?(:login_page_uri) @tenant_ids = args[:tenant_ids] if args.key?(:tenant_ids) end |