class Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig

Configuration for returning group information from authenticators.

Attributes

enabled[RW]

Whether this cluster should return group membership lookups during authentication using a group of security groups. Corresponds to the JSON property `enabled` @return [Boolean]

enabled?[RW]

Whether this cluster should return group membership lookups during authentication using a group of security groups. Corresponds to the JSON property `enabled` @return [Boolean]

security_group[RW]

The name of the security group-of-groups to be used. Only relevant if enabled = true. Corresponds to the JSON property `securityGroup` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/container_v1beta1/classes.rb, line 161
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/container_v1beta1/classes.rb, line 166
def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
  @security_group = args[:security_group] if args.key?(:security_group)
end