[][src]Struct isilon::models::NetworkPool

pub struct NetworkPool {
    pub access_zone: Option<String>,
    pub addr_family: Option<String>,
    pub aggregation_mode: Option<String>,
    pub alloc_method: Option<String>,
    pub description: Option<String>,
    pub groupnet: Option<String>,
    pub id: Option<String>,
    pub ifaces: Option<Vec<SubnetsSubnetPoolIface>>,
    pub name: Option<String>,
    pub ranges: Option<Vec<SubnetsSubnetPoolRange>>,
    pub rebalance_policy: Option<String>,
    pub rules: Option<Vec<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_suspended_nodes: Option<Vec<i32>>,
    pub sc_ttl: Option<i32>,
    pub static_routes: Option<Vec<SubnetsSubnetPoolStaticRoute>>,
    pub subnet: Option<String>,
}

Fields

access_zone: Option<String>

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

addr_family: Option<String>

IP address format.

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.

groupnet: Option<String>

Name of the groupnet this pool belongs to.

id: Option<String>

Unique Pool ID.

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..

rules: Option<Vec<String>>

Names of the rules in this pool.

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_suspended_nodes: Option<Vec<i32>>

List of LNNs showing currently suspended nodes in SmartConnect.

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.

subnet: Option<String>

The name of the subnet.

Trait Implementations

impl Debug for NetworkPool[src]

impl Serialize for NetworkPool[src]

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

Auto Trait Implementations

impl Send for NetworkPool

impl Sync for NetworkPool

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