io.kubernetes.client.openapi.models.V1LeaseSpec Maven / Gradle / Ivy
/*
Copyright 2021 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package io.kubernetes.client.openapi.models;
import com.google.gson.annotations.SerializedName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.time.OffsetDateTime;
import java.util.Objects;
/** LeaseSpec is a specification of a Lease. */
@ApiModel(description = "LeaseSpec is a specification of a Lease.")
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2021-01-04T09:55:14.976Z[Etc/UTC]")
public class V1LeaseSpec {
public static final String SERIALIZED_NAME_ACQUIRE_TIME = "acquireTime";
@SerializedName(SERIALIZED_NAME_ACQUIRE_TIME)
private OffsetDateTime acquireTime;
public static final String SERIALIZED_NAME_HOLDER_IDENTITY = "holderIdentity";
@SerializedName(SERIALIZED_NAME_HOLDER_IDENTITY)
private String holderIdentity;
public static final String SERIALIZED_NAME_LEASE_DURATION_SECONDS = "leaseDurationSeconds";
@SerializedName(SERIALIZED_NAME_LEASE_DURATION_SECONDS)
private Integer leaseDurationSeconds;
public static final String SERIALIZED_NAME_LEASE_TRANSITIONS = "leaseTransitions";
@SerializedName(SERIALIZED_NAME_LEASE_TRANSITIONS)
private Integer leaseTransitions;
public static final String SERIALIZED_NAME_RENEW_TIME = "renewTime";
@SerializedName(SERIALIZED_NAME_RENEW_TIME)
private OffsetDateTime renewTime;
public V1LeaseSpec acquireTime(OffsetDateTime acquireTime) {
this.acquireTime = acquireTime;
return this;
}
/**
* acquireTime is a time when the current lease was acquired.
*
* @return acquireTime
*/
@javax.annotation.Nullable
@ApiModelProperty(value = "acquireTime is a time when the current lease was acquired.")
public OffsetDateTime getAcquireTime() {
return acquireTime;
}
public void setAcquireTime(OffsetDateTime acquireTime) {
this.acquireTime = acquireTime;
}
public V1LeaseSpec holderIdentity(String holderIdentity) {
this.holderIdentity = holderIdentity;
return this;
}
/**
* holderIdentity contains the identity of the holder of a current lease.
*
* @return holderIdentity
*/
@javax.annotation.Nullable
@ApiModelProperty(
value = "holderIdentity contains the identity of the holder of a current lease.")
public String getHolderIdentity() {
return holderIdentity;
}
public void setHolderIdentity(String holderIdentity) {
this.holderIdentity = holderIdentity;
}
public V1LeaseSpec leaseDurationSeconds(Integer leaseDurationSeconds) {
this.leaseDurationSeconds = leaseDurationSeconds;
return this;
}
/**
* leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire
* it. This is measure against time of last observed RenewTime.
*
* @return leaseDurationSeconds
*/
@javax.annotation.Nullable
@ApiModelProperty(
value =
"leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.")
public Integer getLeaseDurationSeconds() {
return leaseDurationSeconds;
}
public void setLeaseDurationSeconds(Integer leaseDurationSeconds) {
this.leaseDurationSeconds = leaseDurationSeconds;
}
public V1LeaseSpec leaseTransitions(Integer leaseTransitions) {
this.leaseTransitions = leaseTransitions;
return this;
}
/**
* leaseTransitions is the number of transitions of a lease between holders.
*
* @return leaseTransitions
*/
@javax.annotation.Nullable
@ApiModelProperty(
value = "leaseTransitions is the number of transitions of a lease between holders.")
public Integer getLeaseTransitions() {
return leaseTransitions;
}
public void setLeaseTransitions(Integer leaseTransitions) {
this.leaseTransitions = leaseTransitions;
}
public V1LeaseSpec renewTime(OffsetDateTime renewTime) {
this.renewTime = renewTime;
return this;
}
/**
* renewTime is a time when the current holder of a lease has last updated the lease.
*
* @return renewTime
*/
@javax.annotation.Nullable
@ApiModelProperty(
value = "renewTime is a time when the current holder of a lease has last updated the lease.")
public OffsetDateTime getRenewTime() {
return renewTime;
}
public void setRenewTime(OffsetDateTime renewTime) {
this.renewTime = renewTime;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1LeaseSpec v1LeaseSpec = (V1LeaseSpec) o;
return Objects.equals(this.acquireTime, v1LeaseSpec.acquireTime)
&& Objects.equals(this.holderIdentity, v1LeaseSpec.holderIdentity)
&& Objects.equals(this.leaseDurationSeconds, v1LeaseSpec.leaseDurationSeconds)
&& Objects.equals(this.leaseTransitions, v1LeaseSpec.leaseTransitions)
&& Objects.equals(this.renewTime, v1LeaseSpec.renewTime);
}
@Override
public int hashCode() {
return Objects.hash(
acquireTime, holderIdentity, leaseDurationSeconds, leaseTransitions, renewTime);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1LeaseSpec {\n");
sb.append(" acquireTime: ").append(toIndentedString(acquireTime)).append("\n");
sb.append(" holderIdentity: ").append(toIndentedString(holderIdentity)).append("\n");
sb.append(" leaseDurationSeconds: ")
.append(toIndentedString(leaseDurationSeconds))
.append("\n");
sb.append(" leaseTransitions: ").append(toIndentedString(leaseTransitions)).append("\n");
sb.append(" renewTime: ").append(toIndentedString(renewTime)).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 ");
}
}