
io.kubernetes.client.models.V1beta1HTTPIngressRuleValue 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.models.V1beta1HTTPIngressPath;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.
*/
@ApiModel(description = "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.")
public class V1beta1HTTPIngressRuleValue {
@SerializedName("paths")
private List paths = new ArrayList();
public V1beta1HTTPIngressRuleValue paths(List paths) {
this.paths = paths;
return this;
}
public V1beta1HTTPIngressRuleValue addPathsItem(V1beta1HTTPIngressPath pathsItem) {
this.paths.add(pathsItem);
return this;
}
/**
* A collection of paths that map requests to backends.
* @return paths
**/
@ApiModelProperty(required = true, value = "A collection of paths that map requests to backends.")
public List getPaths() {
return paths;
}
public void setPaths(List paths) {
this.paths = paths;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1beta1HTTPIngressRuleValue v1beta1HTTPIngressRuleValue = (V1beta1HTTPIngressRuleValue) o;
return Objects.equals(this.paths, v1beta1HTTPIngressRuleValue.paths);
}
@Override
public int hashCode() {
return Objects.hash(paths);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1beta1HTTPIngressRuleValue {\n");
sb.append(" paths: ").append(toIndentedString(paths)).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