[][src]Struct isilon::models::ProvidersLocalLocalItem

pub struct ProvidersLocalLocalItem {
    pub authentication: Option<bool>,
    pub create_home_directory: Option<bool>,
    pub home_directory_template: Option<String>,
    pub id: Option<String>,
    pub lockout_duration: Option<i32>,
    pub lockout_threshold: Option<i32>,
    pub lockout_window: Option<i32>,
    pub login_shell: Option<String>,
    pub machine_name: Option<String>,
    pub max_password_age: Option<i32>,
    pub min_password_age: Option<i32>,
    pub min_password_length: Option<i32>,
    pub name: Option<String>,
    pub password_complexity: Option<Vec<String>>,
    pub password_history_length: Option<i32>,
    pub password_prompt_time: Option<i32>,
    pub status: Option<String>,
    pub system: Option<bool>,
}

Fields

authentication: Option<bool>

If true, enables authentication and identity management through the authentication provider.

create_home_directory: Option<bool>

Automatically creates the home directory on the first login.

home_directory_template: Option<String>

Specifies the path to the home directory template.

id: Option<String>

Specifies the local provider ID.

lockout_duration: Option<i32>

Specifies the length of time in seconds that an account will be inaccessible after multiple failed login attempts.

lockout_threshold: Option<i32>

Specifies the number of failed login attempts necessary before an account is locked.

lockout_window: Option<i32>

Specifies the duration of time in seconds in which the number of failed attempts set in the 'lockout_threshold' parameter must be made before an account is locked.

login_shell: Option<String>

Specifies the login shell path.

machine_name: Option<String>

Specifies the domain for this provider through which users and groups are qualified.

max_password_age: Option<i32>

Specifies the maximum password age in seconds.

min_password_age: Option<i32>

Specifies the minimum password age in seconds.

min_password_length: Option<i32>

Specifies the minimum password length.

name: Option<String>

Specifies the local provider name.

password_complexity: Option<Vec<String>>

Specifies the conditions required for a password.

password_history_length: Option<i32>

Specifies the number of previous passwords to store.

password_prompt_time: Option<i32>

Specifies the time in seconds remaining before a user will be prompted for a password change.

status: Option<String>

Specifies the status of the provider.

system: Option<bool>

If true, indicates that this provider instance was created by OneFS and cannot be removed.

Trait Implementations

impl Debug for ProvidersLocalLocalItem[src]

impl Serialize for ProvidersLocalLocalItem[src]

impl<'de> Deserialize<'de> for ProvidersLocalLocalItem[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