[][src]Struct google_compute1::ManagedInstance

pub struct ManagedInstance {
    pub instance_status: Option<String>,
    pub version: Option<ManagedInstanceVersion>,
    pub instance: Option<String>,
    pub last_attempt: Option<ManagedInstanceLastAttempt>,
    pub current_action: Option<String>,
    pub id: Option<String>,
}

A Managed Instance resource.

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

Fields

instance_status: Option<String>

[Output Only] The status of the instance. This field is empty when the instance does not exist.

version: Option<ManagedInstanceVersion>

[Output Only] Intended version of this instance.

instance: Option<String>

[Output Only] The URL of the instance. The URL can exist even if the instance has not yet been created.

last_attempt: Option<ManagedInstanceLastAttempt>

[Output Only] Information about the last attempt to create or delete the instance.

current_action: Option<String>

[Output Only] The current action that the managed instance group has scheduled for the instance. Possible values:

  • NONE The instance is running, and the managed instance group does not have any scheduled actions for this instance.
  • CREATING The managed instance group is creating this instance. If the group fails to create this instance, it will try again until it is successful.
  • CREATING_WITHOUT_RETRIES The managed instance group is attempting to create this instance only once. If the group fails to create this instance, it does not try again and the group's targetSize value is decreased instead.
  • RECREATING The managed instance group is recreating this instance.
  • DELETING The managed instance group is permanently deleting this instance.
  • ABANDONING The managed instance group is abandoning this instance. The instance will be removed from the instance group and from any target pools that are associated with this group.
  • RESTARTING The managed instance group is restarting the instance.
  • REFRESHING The managed instance group is applying configuration changes to the instance without stopping it. For example, the group can update the target pool list for an instance without stopping that instance.
  • VERIFYING The managed instance group has created the instance and it is in the process of being verified.
id: Option<String>

[Output only] The unique identifier for this resource. This field is empty when instance does not exist.

Trait Implementations

impl Part for ManagedInstance[src]

impl Default for ManagedInstance[src]

impl Clone for ManagedInstance[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ManagedInstance[src]

impl Serialize for ManagedInstance[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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