io.kubernetes.client.openapi.models.V1beta1ResourcePool Maven / Gradle / Ivy
/*
Copyright 2025 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 java.util.Objects;
import java.util.Arrays;
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.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* ResourcePool describes the pool that ResourceSlices belong to.
*/
@ApiModel(description = "ResourcePool describes the pool that ResourceSlices belong to.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-05-22T21:20:49.874193Z[Etc/UTC]")
public class V1beta1ResourcePool {
public static final String SERIALIZED_NAME_GENERATION = "generation";
@SerializedName(SERIALIZED_NAME_GENERATION)
private Long generation;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_RESOURCE_SLICE_COUNT = "resourceSliceCount";
@SerializedName(SERIALIZED_NAME_RESOURCE_SLICE_COUNT)
private Long resourceSliceCount;
public V1beta1ResourcePool generation(Long generation) {
this.generation = generation;
return this;
}
/**
* Generation tracks the change in a pool over time. Whenever a driver changes something about one or more of the resources in a pool, it must change the generation in all ResourceSlices which are part of that pool. Consumers of ResourceSlices should only consider resources from the pool with the highest generation number. The generation may be reset by drivers, which should be fine for consumers, assuming that all ResourceSlices in a pool are updated to match or deleted. Combined with ResourceSliceCount, this mechanism enables consumers to detect pools which are comprised of multiple ResourceSlices and are in an incomplete state.
* @return generation
**/
@ApiModelProperty(required = true, value = "Generation tracks the change in a pool over time. Whenever a driver changes something about one or more of the resources in a pool, it must change the generation in all ResourceSlices which are part of that pool. Consumers of ResourceSlices should only consider resources from the pool with the highest generation number. The generation may be reset by drivers, which should be fine for consumers, assuming that all ResourceSlices in a pool are updated to match or deleted. Combined with ResourceSliceCount, this mechanism enables consumers to detect pools which are comprised of multiple ResourceSlices and are in an incomplete state.")
public Long getGeneration() {
return generation;
}
public void setGeneration(Long generation) {
this.generation = generation;
}
public V1beta1ResourcePool name(String name) {
this.name = name;
return this;
}
/**
* Name is used to identify the pool. For node-local devices, this is often the node name, but this is not required. It must not be longer than 253 characters and must consist of one or more DNS sub-domains separated by slashes. This field is immutable.
* @return name
**/
@ApiModelProperty(required = true, value = "Name is used to identify the pool. For node-local devices, this is often the node name, but this is not required. It must not be longer than 253 characters and must consist of one or more DNS sub-domains separated by slashes. This field is immutable.")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public V1beta1ResourcePool resourceSliceCount(Long resourceSliceCount) {
this.resourceSliceCount = resourceSliceCount;
return this;
}
/**
* ResourceSliceCount is the total number of ResourceSlices in the pool at this generation number. Must be greater than zero. Consumers can use this to check whether they have seen all ResourceSlices belonging to the same pool.
* @return resourceSliceCount
**/
@ApiModelProperty(required = true, value = "ResourceSliceCount is the total number of ResourceSlices in the pool at this generation number. Must be greater than zero. Consumers can use this to check whether they have seen all ResourceSlices belonging to the same pool.")
public Long getResourceSliceCount() {
return resourceSliceCount;
}
public void setResourceSliceCount(Long resourceSliceCount) {
this.resourceSliceCount = resourceSliceCount;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1beta1ResourcePool v1beta1ResourcePool = (V1beta1ResourcePool) o;
return Objects.equals(this.generation, v1beta1ResourcePool.generation) &&
Objects.equals(this.name, v1beta1ResourcePool.name) &&
Objects.equals(this.resourceSliceCount, v1beta1ResourcePool.resourceSliceCount);
}
@Override
public int hashCode() {
return Objects.hash(generation, name, resourceSliceCount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1beta1ResourcePool {\n");
sb.append(" generation: ").append(toIndentedString(generation)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" resourceSliceCount: ").append(toIndentedString(resourceSliceCount)).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