
io.kubernetes.client.models.V1NetworkPolicyPeer 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.V1IPBlock;
import io.kubernetes.client.models.V1LabelSelector;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* NetworkPolicyPeer describes a peer to allow traffic from. Only certain combinations of fields are allowed
*/
@ApiModel(description = "NetworkPolicyPeer describes a peer to allow traffic from. Only certain combinations of fields are allowed")
public class V1NetworkPolicyPeer {
@SerializedName("ipBlock")
private V1IPBlock ipBlock = null;
@SerializedName("namespaceSelector")
private V1LabelSelector namespaceSelector = null;
@SerializedName("podSelector")
private V1LabelSelector podSelector = null;
public V1NetworkPolicyPeer ipBlock(V1IPBlock ipBlock) {
this.ipBlock = ipBlock;
return this;
}
/**
* IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.
* @return ipBlock
**/
@ApiModelProperty(value = "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.")
public V1IPBlock getIpBlock() {
return ipBlock;
}
public void setIpBlock(V1IPBlock ipBlock) {
this.ipBlock = ipBlock;
}
public V1NetworkPolicyPeer namespaceSelector(V1LabelSelector namespaceSelector) {
this.namespaceSelector = namespaceSelector;
return this;
}
/**
* Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces. If PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector.
* @return namespaceSelector
**/
@ApiModelProperty(value = "Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces. If PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector.")
public V1LabelSelector getNamespaceSelector() {
return namespaceSelector;
}
public void setNamespaceSelector(V1LabelSelector namespaceSelector) {
this.namespaceSelector = namespaceSelector;
}
public V1NetworkPolicyPeer podSelector(V1LabelSelector podSelector) {
this.podSelector = podSelector;
return this;
}
/**
* This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods. If NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace.
* @return podSelector
**/
@ApiModelProperty(value = "This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods. If NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace.")
public V1LabelSelector getPodSelector() {
return podSelector;
}
public void setPodSelector(V1LabelSelector podSelector) {
this.podSelector = podSelector;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1NetworkPolicyPeer v1NetworkPolicyPeer = (V1NetworkPolicyPeer) o;
return Objects.equals(this.ipBlock, v1NetworkPolicyPeer.ipBlock) &&
Objects.equals(this.namespaceSelector, v1NetworkPolicyPeer.namespaceSelector) &&
Objects.equals(this.podSelector, v1NetworkPolicyPeer.podSelector);
}
@Override
public int hashCode() {
return Objects.hash(ipBlock, namespaceSelector, podSelector);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1NetworkPolicyPeer {\n");
sb.append(" ipBlock: ").append(toIndentedString(ipBlock)).append("\n");
sb.append(" namespaceSelector: ").append(toIndentedString(namespaceSelector)).append("\n");
sb.append(" podSelector: ").append(toIndentedString(podSelector)).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