[][src]Struct isilon::models::TargetPolicy

pub struct TargetPolicy {
    pub failover_failback_state: String,
    pub id: String,
    pub last_job_state: String,
    pub last_source_coordinator_ip: String,
    pub last_update_from_source: Option<i32>,
    pub legacy_policy: bool,
    pub name: String,
    pub source_cluster_guid: String,
    pub source_host: String,
    pub target_path: String,
}

Fields

failover_failback_state: String

The condition of this policy with respect to sync failover/failback.

id: String

The system ID given to this sync policy.

last_job_state: String

The state of the last job run for this policy.

last_source_coordinator_ip: String

The IP address from which a SyncIQ coordinator daemon most recently connected to this cluster to update it about the progress of a job for this policy.

last_update_from_source: Option<i32>

The last time this cluster was updated with sync information from the source cluster for this policy, in unix epoch seconds. Null if no such update has occurred yet.

legacy_policy: bool

Was this policy defined by a OneFS version earlier than 6.0? (Pre-6.0 policies did not have the target policy concept and canceling from the target side will not be available.)

name: String

User-assigned name of this sync policy.

source_cluster_guid: String

Unique identifier for the source cluster.

source_host: String

Hostname or IP address of sync source cluster.

target_path: String

Absolute filesystem path on the target cluster for the sync destination.

Trait Implementations

impl Debug for TargetPolicy[src]

impl Serialize for TargetPolicy[src]

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