Class: Google::Apis::ContainerV1::AuthenticatorGroupsConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::AuthenticatorGroupsConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb
Overview
Configuration for returning group information from authenticators.
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
(also: #enabled?)
Whether this cluster should return group membership lookups during authentication using a group of security groups.
-
#security_group ⇒ String
The name of the security group-of-groups to be used.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AuthenticatorGroupsConfig
constructor
A new instance of AuthenticatorGroupsConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AuthenticatorGroupsConfig
Returns a new instance of AuthenticatorGroupsConfig.
347 348 349 |
# File 'lib/google/apis/container_v1/classes.rb', line 347 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enabled ⇒ Boolean Also known as: enabled?
Whether this cluster should return group membership lookups during
authentication using a group of security groups.
Corresponds to the JSON property enabled
338 339 340 |
# File 'lib/google/apis/container_v1/classes.rb', line 338 def enabled @enabled end |
#security_group ⇒ String
The name of the security group-of-groups to be used. Only relevant if enabled =
true.
Corresponds to the JSON property securityGroup
345 346 347 |
# File 'lib/google/apis/container_v1/classes.rb', line 345 def security_group @security_group end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
352 353 354 355 |
# File 'lib/google/apis/container_v1/classes.rb', line 352 def update!(**args) @enabled = args[:enabled] if args.key?(:enabled) @security_group = args[:security_group] if args.key?(:security_group) end |