pub struct InstanceGroupManagerResizeRequestStatus {
pub error: Option<InstanceGroupManagerResizeRequestStatusError>,
pub last_attempt: Option<InstanceGroupManagerResizeRequestStatusLastAttempt>,
}
Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§error: Option<InstanceGroupManagerResizeRequestStatusError>
[Output only] Fatal errors encountered during the queueing or provisioning phases of the ResizeRequest that caused the transition to the FAILED state. Contrary to the last_attempt errors, this field is final and errors are never removed from here, as the ResizeRequest is not going to retry.
last_attempt: Option<InstanceGroupManagerResizeRequestStatusLastAttempt>
[Output only] Information about the last attempt to fulfill the request. The value is temporary since the ResizeRequest can retry, as long as it’s still active and the last attempt value can either be cleared or replaced with a different error. Since ResizeRequest retries infrequently, the value may be stale and no longer show an active problem. The value is cleared when ResizeRequest transitions to the final state (becomes inactive). If the final state is FAILED the error describing it will be storred in the “error” field only.
Trait Implementations§
Source§impl Clone for InstanceGroupManagerResizeRequestStatus
impl Clone for InstanceGroupManagerResizeRequestStatus
Source§fn clone(&self) -> InstanceGroupManagerResizeRequestStatus
fn clone(&self) -> InstanceGroupManagerResizeRequestStatus
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for InstanceGroupManagerResizeRequestStatus
impl Default for InstanceGroupManagerResizeRequestStatus
Source§fn default() -> InstanceGroupManagerResizeRequestStatus
fn default() -> InstanceGroupManagerResizeRequestStatus
Source§impl<'de> Deserialize<'de> for InstanceGroupManagerResizeRequestStatus
impl<'de> Deserialize<'de> for InstanceGroupManagerResizeRequestStatus
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 InstanceGroupManagerResizeRequestStatus
Auto Trait Implementations§
impl Freeze for InstanceGroupManagerResizeRequestStatus
impl RefUnwindSafe for InstanceGroupManagerResizeRequestStatus
impl Send for InstanceGroupManagerResizeRequestStatus
impl Sync for InstanceGroupManagerResizeRequestStatus
impl Unpin for InstanceGroupManagerResizeRequestStatus
impl UnwindSafe for InstanceGroupManagerResizeRequestStatus
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