[][src]Struct gcp_client::google::cloud::osconfig::v1beta::patch_job::InstanceDetailsSummary

pub struct InstanceDetailsSummary {
    pub pending_instance_count: i64,
    pub inactive_instance_count: i64,
    pub notified_instance_count: i64,
    pub started_instance_count: i64,
    pub downloading_patches_instance_count: i64,
    pub applying_patches_instance_count: i64,
    pub rebooting_instance_count: i64,
    pub succeeded_instance_count: i64,
    pub succeeded_reboot_required_instance_count: i64,
    pub failed_instance_count: i64,
    pub acked_instance_count: i64,
    pub timed_out_instance_count: i64,
    pub pre_patch_step_instance_count: i64,
    pub post_patch_step_instance_count: i64,
    pub no_agent_detected_instance_count: i64,
}

A summary of the current patch state across all instances that this patch job affects. Contains counts of instances in different states. These states map to InstancePatchState. List patch job instance details to see the specific states of each instance.

Fields

pending_instance_count: i64

Number of instances pending patch job.

inactive_instance_count: i64

Number of instances that are inactive.

notified_instance_count: i64

Number of instances notified about patch job.

started_instance_count: i64

Number of instances that have started.

downloading_patches_instance_count: i64

Number of instances that are downloading patches.

applying_patches_instance_count: i64

Number of instances that are applying patches.

rebooting_instance_count: i64

Number of instances rebooting.

succeeded_instance_count: i64

Number of instances that have completed successfully.

succeeded_reboot_required_instance_count: i64

Number of instances that require reboot.

failed_instance_count: i64

Number of instances that failed.

acked_instance_count: i64

Number of instances that have acked and will start shortly.

timed_out_instance_count: i64

Number of instances that exceeded the time out while applying the patch.

pre_patch_step_instance_count: i64

Number of instances that are running the pre-patch step.

post_patch_step_instance_count: i64

Number of instances that are running the post-patch step.

no_agent_detected_instance_count: i64

Number of instances that do not appear to be running the agent. Check to ensure that the agent is installed, running, and able to communicate with the service.

Trait Implementations

impl Clone for InstanceDetailsSummary[src]

impl Debug for InstanceDetailsSummary[src]

impl Default for InstanceDetailsSummary[src]

impl Message for InstanceDetailsSummary[src]

impl PartialEq<InstanceDetailsSummary> for InstanceDetailsSummary[src]

impl StructuralPartialEq for InstanceDetailsSummary[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]