[][src]Struct isilon::models::AuthLdapTemplatesLdapConfigurationTemplate

pub struct AuthLdapTemplatesLdapConfigurationTemplate {
    pub cn_attribute: Option<String>,
    pub crypt_password_attribute: Option<String>,
    pub email_attribute: Option<String>,
    pub gecos_attribute: Option<String>,
    pub gid_attribute: Option<String>,
    pub group_filter: Option<String>,
    pub group_members_attribute: Option<String>,
    pub homedir_attribute: Option<String>,
    pub id: Option<String>,
    pub name_attribute: Option<String>,
    pub netgroup_filter: Option<String>,
    pub netgroup_members_attribute: Option<String>,
    pub netgroup_triple_attribute: Option<String>,
    pub nt_password_attribute: Option<String>,
    pub shadow_expire_attribute: Option<String>,
    pub shadow_flag_attribute: Option<String>,
    pub shadow_inactive_attribute: Option<String>,
    pub shadow_last_change_attribute: Option<String>,
    pub shadow_max_attribute: Option<String>,
    pub shadow_min_attribute: Option<String>,
    pub shadow_user_filter: Option<String>,
    pub shadow_warning_attribute: Option<String>,
    pub shell_attribute: Option<String>,
    pub uid_attribute: Option<String>,
    pub unique_group_members_attribute: Option<String>,
    pub user_filter: Option<String>,
}

Fields

cn_attribute: Option<String>

Specifies canonical name.

crypt_password_attribute: Option<String>

Sets hashed password value.

email_attribute: Option<String>

Sets the LDAP Email attribute.

gecos_attribute: Option<String>

Sets the LDAP GECOS attribute.

gid_attribute: Option<String>

Sets the LDAP GID attribute.

group_filter: Option<String>

Sets LDAP filter for group objects.

group_members_attribute: Option<String>

Sets the LDAP Group Members attribute.

homedir_attribute: Option<String>

Sets the LDAP Homedir attribute.

id: Option<String>

Specifies the ID of the LDAP provider field template.

name_attribute: Option<String>

Sets the LDAP UID attribute, which is used as the login name.

netgroup_filter: Option<String>

Sets LDAP filter for netgroup objects.

netgroup_members_attribute: Option<String>

Sets the LDAP Netgroup Members attribute.

netgroup_triple_attribute: Option<String>

Sets the LDAP Netgroup Triple attribute.

nt_password_attribute: Option<String>

Sets the LDAP NT Password attribute.

shadow_expire_attribute: Option<String>

Sets the absolute date to expire the account.

shadow_flag_attribute: Option<String>

Sets the section of the shadow map that is used to store the flag value.

shadow_inactive_attribute: Option<String>

Sets the number of days of inactivity that is allowed for the user.

shadow_last_change_attribute: Option<String>

Sets the last change of the shadow information.

shadow_max_attribute: Option<String>

Sets the maximum number of days a password can be valid.

shadow_min_attribute: Option<String>

Sets the minimum number of days between shadow changes.

shadow_user_filter: Option<String>

Sets LDAP filter for shadow user objects.

shadow_warning_attribute: Option<String>

Sets the number of days before the password expires to warn the user.

shell_attribute: Option<String>

Sets the LDAP Shell attribute.

uid_attribute: Option<String>

Sets the LDAP UID Number attribute.

unique_group_members_attribute: Option<String>

Sets the LDAP Unique Group Members attribute.

user_filter: Option<String>

Sets LDAP filter for user objects.

Trait Implementations

impl Debug for AuthLdapTemplatesLdapConfigurationTemplate[src]

impl Serialize for AuthLdapTemplatesLdapConfigurationTemplate[src]

impl<'de> Deserialize<'de> for AuthLdapTemplatesLdapConfigurationTemplate[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T