[][src]Struct isilon::models::ProvidersKrb5Krb5Item

pub struct ProvidersKrb5Krb5Item {
    pub groupnet: Option<String>,
    pub id: Option<String>,
    pub keytab_entries: Option<Vec<ProvidersKrb5IdParamsKeytabEntry>>,
    pub keytab_file: Option<String>,
    pub manual_keying: Option<bool>,
    pub name: Option<String>,
    pub realm: Option<String>,
    pub recommended_spns: Option<Vec<String>>,
    pub status: Option<String>,
    pub system: Option<bool>,
    pub user: Option<String>,
}

Fields

groupnet: Option<String>

Groupnet identifier.

id: Option<String>

Specifies the Kerberos provider ID.

keytab_entries: Option<Vec<ProvidersKrb5IdParamsKeytabEntry>>

Specifies the key information for the Kerberos SPNs.

keytab_file: Option<String>

Specifies the path to a keytab file to import.

manual_keying: Option<bool>

If true, keys are managed manually. If false, keys are managed through kadmin.

name: Option<String>

Specifies the Kerberos provider name.

realm: Option<String>

Specifies the name of realm.

recommended_spns: Option<Vec<String>>

Specifies the recommended SPNs.

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

user: Option<String>

Specifies the name of the user that performs kadmin tasks.

Trait Implementations

impl Debug for ProvidersKrb5Krb5Item[src]

impl Serialize for ProvidersKrb5Krb5Item[src]

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