[][src]Struct isilon::models::ClusterFirmwareUpgradeItem

pub struct ClusterFirmwareUpgradeItem {
    pub exclude_device: Option<String>,
    pub exclude_type: Option<String>,
    pub include_device: Option<String>,
    pub include_type: Option<String>,
    pub no_burn: Option<bool>,
    pub no_reboot: Option<bool>,
    pub no_verify: Option<bool>,
    pub nodes_to_upgrade: Option<Vec<i32>>,
}

Fields

exclude_device: Option<String>

Exclude the specified devices in the firmware upgrade.

exclude_type: Option<String>

Exclude the specified device type in the firmware upgrade.

include_device: Option<String>

Include the specified devices in the firmware upgrade.

include_type: Option<String>

Include the specified device type in the firmware upgrade.

no_burn: Option<bool>

Do not burn the firmware.

no_reboot: Option<bool>

Do not reboot the node after an upgrade

no_verify: Option<bool>

Do not verify the firmware upgrade after an upgrade.

nodes_to_upgrade: Option<Vec<i32>>

The nodes scheduled for upgrade. Order in array determines queue position number. 'All' and null option will upgrade all nodes in order.

Trait Implementations

impl Debug for ClusterFirmwareUpgradeItem[src]

impl Serialize for ClusterFirmwareUpgradeItem[src]

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