public class DeploymentOverview
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Information about the deployment status of the instances in the deployment.
Modifier and Type | Field and Description |
---|---|
private java.lang.Long |
failed
The number of instances in the deployment in a failed state.
|
private java.lang.Long |
inProgress
The number of instances in which the deployment is in progress.
|
private java.lang.Long |
pending
The number of instances in the deployment in a pending state.
|
private java.lang.Long |
skipped
The number of instances in the deployment in a skipped state.
|
private java.lang.Long |
succeeded
The number of instances in the deployment to which revisions have been
successfully deployed.
|
Constructor and Description |
---|
DeploymentOverview() |
Modifier and Type | Method and Description |
---|---|
DeploymentOverview |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.Long |
getFailed()
The number of instances in the deployment in a failed state.
|
java.lang.Long |
getInProgress()
The number of instances in which the deployment is in progress.
|
java.lang.Long |
getPending()
The number of instances in the deployment in a pending state.
|
java.lang.Long |
getSkipped()
The number of instances in the deployment in a skipped state.
|
java.lang.Long |
getSucceeded()
The number of instances in the deployment to which revisions have been
successfully deployed.
|
int |
hashCode() |
void |
setFailed(java.lang.Long failed)
The number of instances in the deployment in a failed state.
|
void |
setInProgress(java.lang.Long inProgress)
The number of instances in which the deployment is in progress.
|
void |
setPending(java.lang.Long pending)
The number of instances in the deployment in a pending state.
|
void |
setSkipped(java.lang.Long skipped)
The number of instances in the deployment in a skipped state.
|
void |
setSucceeded(java.lang.Long succeeded)
The number of instances in the deployment to which revisions have been
successfully deployed.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DeploymentOverview |
withFailed(java.lang.Long failed)
The number of instances in the deployment in a failed state.
|
DeploymentOverview |
withInProgress(java.lang.Long inProgress)
The number of instances in which the deployment is in progress.
|
DeploymentOverview |
withPending(java.lang.Long pending)
The number of instances in the deployment in a pending state.
|
DeploymentOverview |
withSkipped(java.lang.Long skipped)
The number of instances in the deployment in a skipped state.
|
DeploymentOverview |
withSucceeded(java.lang.Long succeeded)
The number of instances in the deployment to which revisions have been
successfully deployed.
|
private java.lang.Long pending
The number of instances in the deployment in a pending state.
private java.lang.Long inProgress
The number of instances in which the deployment is in progress.
private java.lang.Long succeeded
The number of instances in the deployment to which revisions have been successfully deployed.
private java.lang.Long failed
The number of instances in the deployment in a failed state.
private java.lang.Long skipped
The number of instances in the deployment in a skipped state.
public void setPending(java.lang.Long pending)
The number of instances in the deployment in a pending state.
pending
- The number of instances in the deployment in a pending state.public java.lang.Long getPending()
The number of instances in the deployment in a pending state.
public DeploymentOverview withPending(java.lang.Long pending)
The number of instances in the deployment in a pending state.
pending
- The number of instances in the deployment in a pending state.public void setInProgress(java.lang.Long inProgress)
The number of instances in which the deployment is in progress.
inProgress
- The number of instances in which the deployment is in progress.public java.lang.Long getInProgress()
The number of instances in which the deployment is in progress.
public DeploymentOverview withInProgress(java.lang.Long inProgress)
The number of instances in which the deployment is in progress.
inProgress
- The number of instances in which the deployment is in progress.public void setSucceeded(java.lang.Long succeeded)
The number of instances in the deployment to which revisions have been successfully deployed.
succeeded
- The number of instances in the deployment to which revisions have
been successfully deployed.public java.lang.Long getSucceeded()
The number of instances in the deployment to which revisions have been successfully deployed.
public DeploymentOverview withSucceeded(java.lang.Long succeeded)
The number of instances in the deployment to which revisions have been successfully deployed.
succeeded
- The number of instances in the deployment to which revisions have
been successfully deployed.public void setFailed(java.lang.Long failed)
The number of instances in the deployment in a failed state.
failed
- The number of instances in the deployment in a failed state.public java.lang.Long getFailed()
The number of instances in the deployment in a failed state.
public DeploymentOverview withFailed(java.lang.Long failed)
The number of instances in the deployment in a failed state.
failed
- The number of instances in the deployment in a failed state.public void setSkipped(java.lang.Long skipped)
The number of instances in the deployment in a skipped state.
skipped
- The number of instances in the deployment in a skipped state.public java.lang.Long getSkipped()
The number of instances in the deployment in a skipped state.
public DeploymentOverview withSkipped(java.lang.Long skipped)
The number of instances in the deployment in a skipped state.
skipped
- The number of instances in the deployment in a skipped state.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public DeploymentOverview clone()
clone
in class java.lang.Object