[][src]Struct google_replicapoolupdater1_beta1::InstanceUpdate

pub struct InstanceUpdate {
    pub status: Option<String>,
    pub instance: Option<String>,
    pub error: Option<InstanceUpdateError>,
}

Update of a single instance.

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

Fields

status: Option<String>

Status of the instance update. Possible values are:

  • "PENDING": The instance update is pending execution.
  • "ROLLING_FORWARD": The instance update is going forward.
  • "ROLLING_BACK": The instance update is being rolled back.
  • "PAUSED": The instance update is temporarily paused (inactive).
  • "ROLLED_OUT": The instance update is finished, the instance is running the new template.
  • "ROLLED_BACK": The instance update is finished, the instance has been reverted to the previous template.
  • "CANCELLED": The instance update is paused and no longer can be resumed, undefined in which template the instance is running.
instance: Option<String>

Fully-qualified URL of the instance being updated.

error: Option<InstanceUpdateError>

Errors that occurred during the instance update.

Trait Implementations

impl Clone for InstanceUpdate[src]

impl Debug for InstanceUpdate[src]

impl Default for InstanceUpdate[src]

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

impl Part for InstanceUpdate[src]

impl Serialize for InstanceUpdate[src]

Auto Trait Implementations

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

impl<T> Typeable for T where
    T: Any