pub struct InstanceGroupManagerActionsSummary {Show 13 fields
pub abandoning: Option<i32>,
pub creating: Option<i32>,
pub creating_without_retries: Option<i32>,
pub deleting: Option<i32>,
pub none: Option<i32>,
pub recreating: Option<i32>,
pub refreshing: Option<i32>,
pub restarting: Option<i32>,
pub resuming: Option<i32>,
pub starting: Option<i32>,
pub stopping: Option<i32>,
pub suspending: Option<i32>,
pub verifying: Option<i32>,
}
Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§abandoning: Option<i32>
[Output Only] The total number of instances in the managed instance group that are scheduled to be abandoned. Abandoning an instance removes it from the managed instance group without deleting it.
creating: Option<i32>
[Output Only] The number of instances in the managed instance group that are scheduled to be created or are currently being created. If the group fails to create any of these instances, it tries again until it creates the instance successfully. If you have disabled creation retries, this field will not be populated; instead, the creatingWithoutRetries field will be populated.
creating_without_retries: Option<i32>
[Output Only] The number of instances that the managed instance group will attempt to create. The group attempts to create each instance only once. If the group fails to create any of these instances, it decreases the group’s targetSize value accordingly.
deleting: Option<i32>
[Output Only] The number of instances in the managed instance group that are scheduled to be deleted or are currently being deleted.
none: Option<i32>
[Output Only] The number of instances in the managed instance group that are running and have no scheduled actions.
recreating: Option<i32>
[Output Only] The number of instances in the managed instance group that are scheduled to be recreated or are currently being being recreated. Recreating an instance deletes the existing root persistent disk and creates a new disk from the image that is defined in the instance template.
refreshing: Option<i32>
[Output Only] The number of instances in the managed instance group that are being reconfigured with properties that do not require a restart or a recreate action. For example, setting or removing target pools for the instance.
restarting: Option<i32>
[Output Only] The number of instances in the managed instance group that are scheduled to be restarted or are currently being restarted.
resuming: Option<i32>
[Output Only] The number of instances in the managed instance group that are scheduled to be resumed or are currently being resumed.
starting: Option<i32>
[Output Only] The number of instances in the managed instance group that are scheduled to be started or are currently being started.
stopping: Option<i32>
[Output Only] The number of instances in the managed instance group that are scheduled to be stopped or are currently being stopped.
suspending: Option<i32>
[Output Only] The number of instances in the managed instance group that are scheduled to be suspended or are currently being suspended.
verifying: Option<i32>
[Output Only] The number of instances in the managed instance group that are being verified. See the managedInstances[].currentAction property in the listManagedInstances method documentation.
Trait Implementations§
Source§impl Clone for InstanceGroupManagerActionsSummary
impl Clone for InstanceGroupManagerActionsSummary
Source§fn clone(&self) -> InstanceGroupManagerActionsSummary
fn clone(&self) -> InstanceGroupManagerActionsSummary
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for InstanceGroupManagerActionsSummary
impl Default for InstanceGroupManagerActionsSummary
Source§fn default() -> InstanceGroupManagerActionsSummary
fn default() -> InstanceGroupManagerActionsSummary
Source§impl<'de> Deserialize<'de> for InstanceGroupManagerActionsSummary
impl<'de> Deserialize<'de> for InstanceGroupManagerActionsSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for InstanceGroupManagerActionsSummary
Auto Trait Implementations§
impl Freeze for InstanceGroupManagerActionsSummary
impl RefUnwindSafe for InstanceGroupManagerActionsSummary
impl Send for InstanceGroupManagerActionsSummary
impl Sync for InstanceGroupManagerActionsSummary
impl Unpin for InstanceGroupManagerActionsSummary
impl UnwindSafe for InstanceGroupManagerActionsSummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more