Class: Google::Apis::GkehubV1beta::IdentityServiceServerConfig

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

Overview

Server settings for the external LDAP server.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IdentityServiceServerConfig

Returns a new instance of IdentityServiceServerConfig.



3357
3358
3359
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3357

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

Instance Attribute Details

#certificate_authority_dataString

Optional. Contains a Base64 encoded, PEM formatted certificate authority certificate for the LDAP server. This must be provided for the "ldaps" and " startTLS" connections. Corresponds to the JSON property certificateAuthorityData NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


3341
3342
3343
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3341

def certificate_authority_data
  @certificate_authority_data
end

#connection_typeString

Optional. Defines the connection type to communicate with the LDAP server. If starttls or ldaps is specified, the certificate_authority_data should not be empty. Corresponds to the JSON property connectionType

Returns:

  • (String)


3348
3349
3350
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3348

def connection_type
  @connection_type
end

#hostString

Required. Defines the hostname or IP of the LDAP server. Port is optional and will default to 389, if unspecified. For example, "ldap.server.example" or "10. 10.10.10:389". Corresponds to the JSON property host

Returns:

  • (String)


3355
3356
3357
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3355

def host
  @host
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3362
3363
3364
3365
3366
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3362

def update!(**args)
  @certificate_authority_data = args[:certificate_authority_data] if args.key?(:certificate_authority_data)
  @connection_type = args[:connection_type] if args.key?(:connection_type)
  @host = args[:host] if args.key?(:host)
end