[][src]Struct isilon::models::WormDomain

pub struct WormDomain {
    pub autocommit_offset: Option<i32>,
    pub default_retention: Option<String>,
    pub max_retention: Option<String>,
    pub min_retention: Option<String>,
    pub override_date: Option<i32>,
    pub privileged_delete: Option<String>,
    pub _type: Option<String>,
}

Fields

autocommit_offset: Option<i32>

Specifies the autocommit time period for the domain in seconds. After a file is in the domain without being modified for the specified time period, the file is automatically committed. If this parameter is set to null, there is no autocommit time, and files must be committed manually.

default_retention: Option<String>max_retention: Option<String>min_retention: Option<String>override_date: Option<i32>

Specifies the override retention date for the domain. If this date is later than the retention date for any committed file, the file will remain protected until the override retention date.

privileged_delete: Option<String>

When this value is set to 'on', files in this domain can be deleted through the privileged delete feature. If this value is set to 'disabled', privileged file deletes are permanently disabled and cannot be turned on again.

_type: Option<String>

Specifies whether the domain is an enterprise domain or a compliance domain. Compliance domains can not be created on enterprise clusters. Enterprise and compliance domains can be created on compliance clusters.

Trait Implementations

impl Debug for WormDomain[src]

impl Serialize for WormDomain[src]

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

Auto Trait Implementations

impl Send for WormDomain

impl Sync for WormDomain

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