Struct google_compute1::api::PreservedStatePreservedDisk[][src]

pub struct PreservedStatePreservedDisk {
    pub auto_delete: Option<String>,
    pub mode: Option<String>,
    pub source: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

auto_delete: Option<String>

These stateful disks will never be deleted during autohealing, update, instance recreate operations. This flag is used to configure if the disk should be deleted after it is no longer used by the group, e.g. when the given instance or the whole MIG is deleted. Note: disks attached in READ_ONLY mode cannot be auto-deleted.

mode: Option<String>

The mode in which to attach this disk, either READ_WRITE or READ_ONLY. If not specified, the default is to attach the disk in READ_WRITE mode.

source: Option<String>

The URL of the disk resource that is stateful and should be attached to the VM instance.

Trait Implementations

impl Clone for PreservedStatePreservedDisk[src]

impl Debug for PreservedStatePreservedDisk[src]

impl Default for PreservedStatePreservedDisk[src]

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

impl Part for PreservedStatePreservedDisk[src]

impl Serialize for PreservedStatePreservedDisk[src]

Auto Trait Implementations

impl RefUnwindSafe for PreservedStatePreservedDisk[src]

impl Send for PreservedStatePreservedDisk[src]

impl Sync for PreservedStatePreservedDisk[src]

impl Unpin for PreservedStatePreservedDisk[src]

impl UnwindSafe for PreservedStatePreservedDisk[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.