Class: Google::Apis::ContainerV1::AuthenticatorGroupsConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb

Overview

Configuration for returning group information from authenticators.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AuthenticatorGroupsConfig

Returns a new instance of AuthenticatorGroupsConfig.



135
136
137
# File 'generated/google/apis/container_v1/classes.rb', line 135

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enabledBoolean 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

Returns:

  • (Boolean)


126
127
128
# File 'generated/google/apis/container_v1/classes.rb', line 126

def enabled
  @enabled
end

#security_groupString

The name of the security group-of-groups to be used. Only relevant if enabled = true. Corresponds to the JSON property securityGroup

Returns:

  • (String)


133
134
135
# File 'generated/google/apis/container_v1/classes.rb', line 133

def security_group
  @security_group
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



140
141
142
143
# File 'generated/google/apis/container_v1/classes.rb', line 140

def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
  @security_group = args[:security_group] if args.key?(:security_group)
end