
io.kubernetes.client.models.AppsV1beta1RollingUpdateDeployment Maven / Gradle / Ivy
/*
* Kubernetes
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: v1.11.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.kubernetes.client.models;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.kubernetes.client.custom.IntOrString;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Spec to control the desired behavior of rolling update.
*/
@ApiModel(description = "Spec to control the desired behavior of rolling update.")
public class AppsV1beta1RollingUpdateDeployment {
@SerializedName("maxSurge")
private IntOrString maxSurge = null;
@SerializedName("maxUnavailable")
private IntOrString maxUnavailable = null;
public AppsV1beta1RollingUpdateDeployment maxSurge(IntOrString maxSurge) {
this.maxSurge = maxSurge;
return this;
}
/**
* The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.
* @return maxSurge
**/
@ApiModelProperty(value = "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.")
public IntOrString getMaxSurge() {
return maxSurge;
}
public void setMaxSurge(IntOrString maxSurge) {
this.maxSurge = maxSurge;
}
public AppsV1beta1RollingUpdateDeployment maxUnavailable(IntOrString maxUnavailable) {
this.maxUnavailable = maxUnavailable;
return this;
}
/**
* The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
* @return maxUnavailable
**/
@ApiModelProperty(value = "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.")
public IntOrString getMaxUnavailable() {
return maxUnavailable;
}
public void setMaxUnavailable(IntOrString maxUnavailable) {
this.maxUnavailable = maxUnavailable;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AppsV1beta1RollingUpdateDeployment appsV1beta1RollingUpdateDeployment = (AppsV1beta1RollingUpdateDeployment) o;
return Objects.equals(this.maxSurge, appsV1beta1RollingUpdateDeployment.maxSurge) &&
Objects.equals(this.maxUnavailable, appsV1beta1RollingUpdateDeployment.maxUnavailable);
}
@Override
public int hashCode() {
return Objects.hash(maxSurge, maxUnavailable);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AppsV1beta1RollingUpdateDeployment {\n");
sb.append(" maxSurge: ").append(toIndentedString(maxSurge)).append("\n");
sb.append(" maxUnavailable: ").append(toIndentedString(maxUnavailable)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy