pub struct ClusterStatusSummary {
pub desired_ready: Option<i64>,
pub err_applied: Option<i64>,
pub modified: Option<i64>,
pub non_ready_resources: Option<Vec<ClusterStatusSummaryNonReadyResources>>,
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 bundledeployments.
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<ClusterStatusSummaryNonReadyResources>>
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 ClusterStatusSummary
impl Clone for ClusterStatusSummary
Source§fn clone(&self) -> ClusterStatusSummary
fn clone(&self) -> ClusterStatusSummary
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 ClusterStatusSummary
impl Debug for ClusterStatusSummary
Source§impl Default for ClusterStatusSummary
impl Default for ClusterStatusSummary
Source§fn default() -> ClusterStatusSummary
fn default() -> ClusterStatusSummary
Source§impl<'de> Deserialize<'de> for ClusterStatusSummary
impl<'de> Deserialize<'de> for ClusterStatusSummary
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 ClusterStatusSummary
impl JsonSchema for ClusterStatusSummary
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 ClusterStatusSummary
impl PartialEq for ClusterStatusSummary
Source§impl Serialize for ClusterStatusSummary
impl Serialize for ClusterStatusSummary
impl StructuralPartialEq for ClusterStatusSummary
Auto Trait Implementations§
impl Freeze for ClusterStatusSummary
impl RefUnwindSafe for ClusterStatusSummary
impl Send for ClusterStatusSummary
impl Sync for ClusterStatusSummary
impl Unpin for ClusterStatusSummary
impl UnwindSafe for ClusterStatusSummary
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