pub struct DeploymentOverview {
pub failed: Option<i64>,
pub in_progress: Option<i64>,
pub pending: Option<i64>,
pub ready: Option<i64>,
pub skipped: Option<i64>,
pub succeeded: Option<i64>,
}
Expand description
Information about the deployment status of the instances in the deployment.
Fields§
§failed: Option<i64>
The number of instances in the deployment in a failed state.
in_progress: Option<i64>
The number of instances in which the deployment is in progress.
pending: Option<i64>
The number of instances in the deployment in a pending state.
ready: Option<i64>
The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.
skipped: Option<i64>
The number of instances in the deployment in a skipped state.
succeeded: Option<i64>
The number of instances in the deployment to which revisions have been successfully deployed.
Trait Implementations§
Source§impl Clone for DeploymentOverview
impl Clone for DeploymentOverview
Source§fn clone(&self) -> DeploymentOverview
fn clone(&self) -> DeploymentOverview
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeploymentOverview
impl Debug for DeploymentOverview
Source§impl Default for DeploymentOverview
impl Default for DeploymentOverview
Source§fn default() -> DeploymentOverview
fn default() -> DeploymentOverview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentOverview
impl<'de> Deserialize<'de> for DeploymentOverview
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DeploymentOverview
impl PartialEq for DeploymentOverview
impl StructuralPartialEq for DeploymentOverview
Auto Trait Implementations§
impl Freeze for DeploymentOverview
impl RefUnwindSafe for DeploymentOverview
impl Send for DeploymentOverview
impl Sync for DeploymentOverview
impl Unpin for DeploymentOverview
impl UnwindSafe for DeploymentOverview
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
Mutably borrows from an owned value. Read more