Class V1NetworkPolicySpec

java.lang.Object
io.kubernetes.client.openapi.models.V1NetworkPolicySpec

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-02-02T21:37:40.170033Z[Etc/UTC]") public class V1NetworkPolicySpec extends Object
NetworkPolicySpec provides the specification of a NetworkPolicy
  • Field Details

  • Constructor Details

    • V1NetworkPolicySpec

      public V1NetworkPolicySpec()
  • Method Details

    • egress

    • addEgressItem

      public V1NetworkPolicySpec addEgressItem(V1NetworkPolicyEgressRule egressItem)
    • getEgress

      egress is a list of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8
      Returns:
      egress
    • setEgress

      public void setEgress(List<V1NetworkPolicyEgressRule> egress)
    • ingress

    • addIngressItem

      public V1NetworkPolicySpec addIngressItem(V1NetworkPolicyIngressRule ingressItem)
    • getIngress

      ingress is a list of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)
      Returns:
      ingress
    • setIngress

      public void setIngress(List<V1NetworkPolicyIngressRule> ingress)
    • podSelector

      public V1NetworkPolicySpec podSelector(V1LabelSelector podSelector)
    • getPodSelector

      public V1LabelSelector getPodSelector()
      Get podSelector
      Returns:
      podSelector
    • setPodSelector

      public void setPodSelector(V1LabelSelector podSelector)
    • policyTypes

      public V1NetworkPolicySpec policyTypes(List<String> policyTypes)
    • addPolicyTypesItem

      public V1NetworkPolicySpec addPolicyTypesItem(String policyTypesItem)
    • getPolicyTypes

      @Nullable public List<String> getPolicyTypes()
      policyTypes is a list of rule types that the NetworkPolicy relates to. Valid options are [\"Ingress\"], [\"Egress\"], or [\"Ingress\", \"Egress\"]. If this field is not specified, it will default based on the existence of ingress or egress rules; policies that contain an egress section are assumed to affect egress, and all policies (whether or not they contain an ingress section) are assumed to affect ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8
      Returns:
      policyTypes
    • setPolicyTypes

      public void setPolicyTypes(List<String> policyTypes)
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object