Class: Google::Apis::GkehubV2::IdentityServiceUserConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gkehub_v2/classes.rb,
lib/google/apis/gkehub_v2/representations.rb,
lib/google/apis/gkehub_v2/representations.rb

Overview

Defines where users exist in the LDAP directory.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IdentityServiceUserConfig

Returns a new instance of IdentityServiceUserConfig.



2201
2202
2203
# File 'lib/google/apis/gkehub_v2/classes.rb', line 2201

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

Instance Attribute Details

#base_dnString

Required. The location of the subtree in the LDAP directory to search for user entries. Corresponds to the JSON property baseDn

Returns:

  • (String)


2172
2173
2174
# File 'lib/google/apis/gkehub_v2/classes.rb', line 2172

def base_dn
  @base_dn
end

#filterString

Optional. Filter to apply when searching for the user. This can be used to further restrict the user accounts which are allowed to login. This defaults to "(objectClass=User)". Corresponds to the JSON property filter

Returns:

  • (String)


2179
2180
2181
# File 'lib/google/apis/gkehub_v2/classes.rb', line 2179

def filter
  @filter
end

#id_attributeString

Optional. Determines which attribute to use as the user's identity after they are authenticated. This is distinct from the loginAttribute field to allow users to login with a username, but then have their actual identifier be an email address or full Distinguished Name (DN). For example, setting loginAttribute to "sAMAccountName" and identifierAttribute to " userPrincipalName" would allow a user to login as "bsmith", but actual RBAC policies for the user would be written as "bsmith@example.com". Using " userPrincipalName" is recommended since this will be unique for each user. This defaults to "userPrincipalName". Corresponds to the JSON property idAttribute

Returns:

  • (String)


2192
2193
2194
# File 'lib/google/apis/gkehub_v2/classes.rb', line 2192

def id_attribute
  @id_attribute
end

#login_attributeString

Optional. The name of the attribute which matches against the input username. This is used to find the user in the LDAP database e.g. "(=)" and is combined with the optional filter field. This defaults to "userPrincipalName". Corresponds to the JSON property loginAttribute

Returns:

  • (String)


2199
2200
2201
# File 'lib/google/apis/gkehub_v2/classes.rb', line 2199

def 
  @login_attribute
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2206
2207
2208
2209
2210
2211
# File 'lib/google/apis/gkehub_v2/classes.rb', line 2206

def update!(**args)
  @base_dn = args[:base_dn] if args.key?(:base_dn)
  @filter = args[:filter] if args.key?(:filter)
  @id_attribute = args[:id_attribute] if args.key?(:id_attribute)
  @login_attribute = args[:login_attribute] if args.key?(:login_attribute)
end