io.kubernetes.client.openapi.models.V1beta1DeviceAllocationResult 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.kubernetes.client.openapi.models.V1beta1DeviceAllocationConfiguration;
import io.kubernetes.client.openapi.models.V1beta1DeviceRequestAllocationResult;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* DeviceAllocationResult is the result of allocating devices.
*/
@ApiModel(description = "DeviceAllocationResult is the result of allocating devices.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-05-22T21:20:49.874193Z[Etc/UTC]")
public class V1beta1DeviceAllocationResult {
public static final String SERIALIZED_NAME_CONFIG = "config";
@SerializedName(SERIALIZED_NAME_CONFIG)
private List config = null;
public static final String SERIALIZED_NAME_RESULTS = "results";
@SerializedName(SERIALIZED_NAME_RESULTS)
private List results = null;
public V1beta1DeviceAllocationResult config(List config) {
this.config = config;
return this;
}
public V1beta1DeviceAllocationResult addConfigItem(V1beta1DeviceAllocationConfiguration configItem) {
if (this.config == null) {
this.config = new ArrayList<>();
}
this.config.add(configItem);
return this;
}
/**
* This field is a combination of all the claim and class configuration parameters. Drivers can distinguish between those based on a flag. This includes configuration parameters for drivers which have no allocated devices in the result because it is up to the drivers which configuration parameters they support. They can silently ignore unknown configuration parameters.
* @return config
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "This field is a combination of all the claim and class configuration parameters. Drivers can distinguish between those based on a flag. This includes configuration parameters for drivers which have no allocated devices in the result because it is up to the drivers which configuration parameters they support. They can silently ignore unknown configuration parameters.")
public List getConfig() {
return config;
}
public void setConfig(List config) {
this.config = config;
}
public V1beta1DeviceAllocationResult results(List results) {
this.results = results;
return this;
}
public V1beta1DeviceAllocationResult addResultsItem(V1beta1DeviceRequestAllocationResult resultsItem) {
if (this.results == null) {
this.results = new ArrayList<>();
}
this.results.add(resultsItem);
return this;
}
/**
* Results lists all allocated devices.
* @return results
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Results lists all allocated devices.")
public List getResults() {
return results;
}
public void setResults(List results) {
this.results = results;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1beta1DeviceAllocationResult v1beta1DeviceAllocationResult = (V1beta1DeviceAllocationResult) o;
return Objects.equals(this.config, v1beta1DeviceAllocationResult.config) &&
Objects.equals(this.results, v1beta1DeviceAllocationResult.results);
}
@Override
public int hashCode() {
return Objects.hash(config, results);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1beta1DeviceAllocationResult {\n");
sb.append(" config: ").append(toIndentedString(config)).append("\n");
sb.append(" results: ").append(toIndentedString(results)).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