Show / Hide Table of Contents

Class LdapBindAccount

Account details for the LDAP bind account used by the outbound connector.

Inheritance
object
OutboundConnector
LdapBindAccount
Inherited Members
OutboundConnector.AvailabilityDomain
OutboundConnector.CompartmentId
OutboundConnector.Id
OutboundConnector.LifecycleState
OutboundConnector.DisplayName
OutboundConnector.TimeCreated
OutboundConnector.Locks
OutboundConnector.FreeformTags
OutboundConnector.DefinedTags
OutboundConnector.SystemTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FilestorageService.Models
Assembly: OCI.DotNetSDK.Filestorage.dll
Syntax
public class LdapBindAccount : OutboundConnector

Properties

BindDistinguishedName

Declaration
[Required(ErrorMessage = "BindDistinguishedName is required.")]
[JsonProperty(PropertyName = "bindDistinguishedName")]
public string BindDistinguishedName { get; set; }
Property Value
Type Description
string

The LDAP Distinguished Name of the account.

Remarks

Required

Endpoints

Declaration
[Required(ErrorMessage = "Endpoints is required.")]
[JsonProperty(PropertyName = "endpoints")]
public List<Endpoint> Endpoints { get; set; }
Property Value
Type Description
List<Endpoint>

Array of server endpoints to use when connecting with the LDAP bind account.

Remarks

Required

PasswordSecretId

Declaration
[JsonProperty(PropertyName = "passwordSecretId")]
public string PasswordSecretId { get; set; }
Property Value
Type Description
string

The OCID of the password for the LDAP bind account in the Vault.

PasswordSecretVersion

Declaration
[JsonProperty(PropertyName = "passwordSecretVersion")]
public int? PasswordSecretVersion { get; set; }
Property Value
Type Description
int?

Version of the password secret in the Vault to use.

In this article
Back to top