Class: Google::Apis::GkehubV1::IdentityServiceUserConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gkehub_v1/classes.rb,
lib/google/apis/gkehub_v1/representations.rb,
lib/google/apis/gkehub_v1/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.



3147
3148
3149
# File 'lib/google/apis/gkehub_v1/classes.rb', line 3147

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)


3118
3119
3120
# File 'lib/google/apis/gkehub_v1/classes.rb', line 3118

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)


3125
3126
3127
# File 'lib/google/apis/gkehub_v1/classes.rb', line 3125

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)


3138
3139
3140
# File 'lib/google/apis/gkehub_v1/classes.rb', line 3138

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)


3145
3146
3147
# File 'lib/google/apis/gkehub_v1/classes.rb', line 3145

def 
  @login_attribute
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3152
3153
3154
3155
3156
3157
# File 'lib/google/apis/gkehub_v1/classes.rb', line 3152

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