[][src]Struct isilon::models::SubnetsSubnetPool

pub struct SubnetsSubnetPool {
    pub access_zone: Option<String>,
    pub aggregation_mode: Option<String>,
    pub alloc_method: Option<String>,
    pub description: Option<String>,
    pub ifaces: Option<Vec<SubnetsSubnetPoolIface>>,
    pub name: Option<String>,
    pub ranges: Option<Vec<SubnetsSubnetPoolRange>>,
    pub rebalance_policy: Option<String>,
    pub sc_auto_unsuspend_delay: Option<i32>,
    pub sc_connect_policy: Option<String>,
    pub sc_dns_zone: Option<String>,
    pub sc_dns_zone_aliases: Option<Vec<String>>,
    pub sc_failover_policy: Option<String>,
    pub sc_subnet: Option<String>,
    pub sc_ttl: Option<i32>,
    pub static_routes: Option<Vec<SubnetsSubnetPoolStaticRoute>>,
}

Fields

access_zone: Option<String>

Name of a valid access zone to map IP address pool to the zone.

aggregation_mode: Option<String>

OneFS supports the following NIC aggregation modes.

alloc_method: Option<String>

Specifies how IP address allocation is done among pool members.

description: Option<String>

A description of the pool.

ifaces: Option<Vec<SubnetsSubnetPoolIface>>

List of interface members in this pool.

name: Option<String>

The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method.

ranges: Option<Vec<SubnetsSubnetPoolRange>>

List of IP address ranges in this pool.

rebalance_policy: Option<String>

Rebalance policy..

sc_auto_unsuspend_delay: Option<i32>

Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones.

sc_connect_policy: Option<String>

SmartConnect client connection balancing policy.

sc_dns_zone: Option<String>

SmartConnect zone name for the pool.

sc_dns_zone_aliases: Option<Vec<String>>

List of SmartConnect zone aliases (DNS names) to the pool.

sc_failover_policy: Option<String>

SmartConnect IP failover policy.

sc_subnet: Option<String>

Name of SmartConnect service subnet for this pool.

sc_ttl: Option<i32>

Time to live value for SmartConnect DNS query responses in seconds.

static_routes: Option<Vec<SubnetsSubnetPoolStaticRoute>>

List of interface members in this pool.

Trait Implementations

impl Debug for SubnetsSubnetPool[src]

impl Serialize for SubnetsSubnetPool[src]

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