pub struct ClusterGroupStatusSummary {
pub desired_ready: Option<i64>,
pub err_applied: Option<i64>,
pub modified: Option<i64>,
pub non_ready_resources: Option<Vec<ClusterGroupStatusSummaryNonReadyResources>>,
pub not_ready: Option<i64>,
pub out_of_sync: Option<i64>,
pub pending: Option<i64>,
pub ready: Option<i64>,
pub wait_applied: Option<i64>,
}
Expand description
Summary is a summary of the bundle deployments and their resources in the cluster group.
Fields§
§desired_ready: Option<i64>
DesiredReady is the number of bundle deployments that should be ready.
err_applied: Option<i64>
ErrApplied is the number of bundle deployments that have been synced from the Fleet controller and the downstream cluster, but with some errors when deploying the bundle.
modified: Option<i64>
Modified is the number of bundle deployments that have been deployed and for which all resources are ready, but where some changes from the Git repository have not yet been synced.
non_ready_resources: Option<Vec<ClusterGroupStatusSummaryNonReadyResources>>
NonReadyClusters is a list of states, which is filled for a bundle that is not ready.
not_ready: Option<i64>
NotReady is the number of bundle deployments that have been deployed where some resources are not ready.
out_of_sync: Option<i64>
OutOfSync is the number of bundle deployments that have been synced from Fleet controller, but not yet by the downstream agent.
pending: Option<i64>
Pending is the number of bundle deployments that are being processed by Fleet controller.
ready: Option<i64>
Ready is the number of bundle deployments that have been deployed where all resources are ready.
wait_applied: Option<i64>
WaitApplied is the number of bundle deployments that have been synced from Fleet controller and downstream cluster, but are waiting to be deployed.
Trait Implementations§
Source§impl Clone for ClusterGroupStatusSummary
impl Clone for ClusterGroupStatusSummary
Source§fn clone(&self) -> ClusterGroupStatusSummary
fn clone(&self) -> ClusterGroupStatusSummary
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ClusterGroupStatusSummary
impl Debug for ClusterGroupStatusSummary
Source§impl Default for ClusterGroupStatusSummary
impl Default for ClusterGroupStatusSummary
Source§fn default() -> ClusterGroupStatusSummary
fn default() -> ClusterGroupStatusSummary
Source§impl<'de> Deserialize<'de> for ClusterGroupStatusSummary
impl<'de> Deserialize<'de> for ClusterGroupStatusSummary
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>,
Source§impl JsonSchema for ClusterGroupStatusSummary
impl JsonSchema for ClusterGroupStatusSummary
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read moreSource§impl PartialEq for ClusterGroupStatusSummary
impl PartialEq for ClusterGroupStatusSummary
Source§fn eq(&self, other: &ClusterGroupStatusSummary) -> bool
fn eq(&self, other: &ClusterGroupStatusSummary) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ClusterGroupStatusSummary
Auto Trait Implementations§
impl Freeze for ClusterGroupStatusSummary
impl RefUnwindSafe for ClusterGroupStatusSummary
impl Send for ClusterGroupStatusSummary
impl Sync for ClusterGroupStatusSummary
impl Unpin for ClusterGroupStatusSummary
impl UnwindSafe for ClusterGroupStatusSummary
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