Class LdapConfig
LdapConfig contains all the parameters for connecting to LDAP servers.
Implements
Inherited Members
Namespace: Google.Apis.CloudFilestore.v1beta1.Data
Assembly: Google.Apis.CloudFilestore.v1beta1.dll
Syntax
public class LdapConfig : IDirectResponseSchema
Properties
Domain
Required. The LDAP domain name in the format of my-domain.com
.
Declaration
[JsonProperty("domain")]
public virtual string Domain { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
GroupsOu
Optional. The groups Organizational Unit (OU) is optional. This parameter is a hint to allow faster lookup in the LDAP namespace. In case that this parameter is not provided, Filestore instance will query the whole LDAP namespace.
Declaration
[JsonProperty("groupsOu")]
public virtual string GroupsOu { get; set; }
Property Value
Type | Description |
---|---|
string |
Servers
Required. The servers names are used for specifying the LDAP servers names. The LDAP servers names can come
with two formats: 1. DNS name, for example: ldap.example1.com
, ldap.example2.com
. 2. IP address, for
example: 10.0.0.1
, 10.0.0.2
, 10.0.0.3
. All servers names must be in the same format: either all DNS
names or all IP addresses.
Declaration
[JsonProperty("servers")]
public virtual IList<string> Servers { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
UsersOu
Optional. The users Organizational Unit (OU) is optional. This parameter is a hint to allow faster lookup in the LDAP namespace. In case that this parameter is not provided, Filestore instance will query the whole LDAP namespace.
Declaration
[JsonProperty("usersOu")]
public virtual string UsersOu { get; set; }
Property Value
Type | Description |
---|---|
string |