[][src]Struct isilon::models::SubnetsSubnetPoolsPool

pub struct SubnetsSubnetPoolsPool {
    pub access_zone: String,
    pub addr_family: String,
    pub aggregation_mode: String,
    pub alloc_method: String,
    pub description: String,
    pub groupnet: String,
    pub id: String,
    pub ifaces: Vec<SubnetsSubnetPoolIface>,
    pub name: String,
    pub ranges: Vec<SubnetsSubnetPoolRange>,
    pub rebalance_policy: String,
    pub rules: Vec<String>,
    pub sc_auto_unsuspend_delay: i32,
    pub sc_connect_policy: String,
    pub sc_dns_zone: String,
    pub sc_dns_zone_aliases: Vec<String>,
    pub sc_failover_policy: String,
    pub sc_subnet: String,
    pub sc_suspended_nodes: Vec<i32>,
    pub sc_ttl: i32,
    pub static_routes: Vec<SubnetsSubnetPoolStaticRoute>,
    pub subnet: String,
}

Fields

access_zone: String

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

addr_family: String

IP address format.

aggregation_mode: String

OneFS supports the following NIC aggregation modes.

alloc_method: String

Specifies how IP address allocation is done among pool members.

description: String

A description of the pool.

groupnet: String

Name of the groupnet this pool belongs to.

id: String

Unique Pool ID.

ifaces: Vec<SubnetsSubnetPoolIface>

List of interface members in this pool.

name: String

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

ranges: Vec<SubnetsSubnetPoolRange>

List of IP address ranges in this pool.

rebalance_policy: String

Rebalance policy..

rules: Vec<String>

Names of the rules in this pool.

sc_auto_unsuspend_delay: i32

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

sc_connect_policy: String

SmartConnect client connection balancing policy.

sc_dns_zone: String

SmartConnect zone name for the pool.

sc_dns_zone_aliases: Vec<String>

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

sc_failover_policy: String

SmartConnect IP failover policy.

sc_subnet: String

Name of SmartConnect service subnet for this pool.

sc_suspended_nodes: Vec<i32>

List of LNNs showing currently suspended nodes in SmartConnect.

sc_ttl: i32

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

static_routes: Vec<SubnetsSubnetPoolStaticRoute>

List of interface members in this pool.

subnet: String

The name of the subnet.

Trait Implementations

impl Debug for SubnetsSubnetPoolsPool[src]

impl Serialize for SubnetsSubnetPoolsPool[src]

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