[][src]Struct isilon::models::ProvidersNisNisItem

pub struct ProvidersNisNisItem {
    pub authentication: Option<bool>,
    pub balance_servers: Option<bool>,
    pub check_online_interval: Option<i32>,
    pub create_home_directory: Option<bool>,
    pub enabled: Option<bool>,
    pub enumerate_groups: Option<bool>,
    pub enumerate_users: Option<bool>,
    pub findable_groups: Option<Vec<String>>,
    pub findable_users: Option<Vec<String>>,
    pub group_domain: Option<String>,
    pub home_directory_template: Option<String>,
    pub hostname_lookup: Option<bool>,
    pub id: Option<String>,
    pub listable_groups: Option<Vec<String>>,
    pub listable_users: Option<Vec<String>>,
    pub login_shell: Option<String>,
    pub name: Option<String>,
    pub nis_domain: Option<String>,
    pub normalize_groups: Option<bool>,
    pub normalize_users: Option<bool>,
    pub ntlm_support: Option<String>,
    pub provider_domain: Option<String>,
    pub request_timeout: Option<i32>,
    pub restrict_findable: Option<bool>,
    pub restrict_listable: Option<bool>,
    pub retry_time: Option<i32>,
    pub servers: Option<Vec<String>>,
    pub status: Option<String>,
    pub system: Option<bool>,
    pub unfindable_groups: Option<Vec<String>>,
    pub unfindable_users: Option<Vec<String>>,
    pub unlistable_groups: Option<Vec<String>>,
    pub unlistable_users: Option<Vec<String>>,
    pub user_domain: Option<String>,
    pub ypmatch_using_tcp: Option<bool>,
}

Fields

authentication: Option<bool>

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

balance_servers: Option<bool>

If true, connects the provider to a random server.

check_online_interval: Option<i32>

Specifies the time in seconds between provider online checks.

create_home_directory: Option<bool>

Automatically creates the home directory on the first login.

enabled: Option<bool>

If true, enables the NIS provider.

enumerate_groups: Option<bool>

If true, allows the provider to enumerate groups.

enumerate_users: Option<bool>

If true, allows the provider to enumerate users.

findable_groups: Option<Vec<String>>

Specifies the list of groups that can be resolved.

findable_users: Option<Vec<String>>

Specifies the list of users that can be resolved.

group_domain: Option<String>

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

home_directory_template: Option<String>

Specifies the path to the home directory template.

hostname_lookup: Option<bool>

If true, enables host name look ups.

id: Option<String>

Specifies the NIS provider ID.

listable_groups: Option<Vec<String>>

Specifies the groups that can be viewed in the provider.

listable_users: Option<Vec<String>>

Specifies the users that can be viewed in the provider.

login_shell: Option<String>

Specifies the login shell path.

name: Option<String>

Specifies the NIS provider name.

nis_domain: Option<String>

Specifies the NIS domain name.

normalize_groups: Option<bool>

Normalizes group names to lowercase before look up.

normalize_users: Option<bool>

Normalizes user names to lowercase before look up.

ntlm_support: Option<String>

Specifies which NTLM versions to support for users with NTLM-compatible credentials.

provider_domain: Option<String>

Specifies the domain for the provider.

request_timeout: Option<i32>

Specifies the request timeout interval in seconds.

restrict_findable: Option<bool>

If true, checks the provider for filtered lists of findable and unfindable users and groups.

restrict_listable: Option<bool>

If true, checks the provider for filtered lists of listable and unlistable users and groups.

retry_time: Option<i32>

Specifies the timeout period in seconds after which a request will be retried.

servers: Option<Vec<String>>

Adds an NIS server for this provider.

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.

unfindable_groups: Option<Vec<String>>

Specifies groups that cannot be resolved by the provider.

unfindable_users: Option<Vec<String>>

Specifies users that cannot be resolved by the provider.

unlistable_groups: Option<Vec<String>>

Specifies a group that cannot be listed by the provider.

unlistable_users: Option<Vec<String>>

Specifies a user that cannot be listed by the provider.

user_domain: Option<String>

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

ypmatch_using_tcp: Option<bool>

If true, specifies TCP for YP Match operations.

Trait Implementations

impl Debug for ProvidersNisNisItem[src]

impl Serialize for ProvidersNisNisItem[src]

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