Show / Hide Table of Contents

Class CreateLdapBindAccountDetails

Account details for the LDAP bind account to be used by mount targets that use this outbound connector.

Inheritance
object
CreateOutboundConnectorDetails
CreateLdapBindAccountDetails
Inherited Members
CreateOutboundConnectorDetails.AvailabilityDomain
CreateOutboundConnectorDetails.CompartmentId
CreateOutboundConnectorDetails.DisplayName
CreateOutboundConnectorDetails.FreeformTags
CreateOutboundConnectorDetails.DefinedTags
CreateOutboundConnectorDetails.Locks
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 CreateLdapBindAccountDetails : CreateOutboundConnectorDetails

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 bind 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