Class V1NetworkPolicySpec

java.lang.Object
io.micronaut.kubernetes.client.openapi.model.V1NetworkPolicySpec

@Generated("io.micronaut.openapi.generator.JavaMicronautClientCodegen") public class V1NetworkPolicySpec extends Object
NetworkPolicySpec provides the specification of a NetworkPolicy
  • Field Details

  • Constructor Details

    • V1NetworkPolicySpec

      public V1NetworkPolicySpec(V1LabelSelector podSelector)
  • Method Details

    • getEgress

      public List<@Valid V1NetworkPolicyEgressRule> 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:
      the egress property value
    • setEgress

      public void setEgress(List<@Valid V1NetworkPolicyEgressRule> egress)
      Set the egress property value
    • egress

      public V1NetworkPolicySpec egress(List<@Valid V1NetworkPolicyEgressRule> egress)
      Set egress in a chainable fashion.
      Returns:
      The same instance of V1NetworkPolicySpec for chaining.
    • addegressItem

      public V1NetworkPolicySpec addegressItem(V1NetworkPolicyEgressRule egressItem)
      Add an item to the egress property in a chainable fashion.
      Returns:
      The same instance of V1NetworkPolicySpec for chaining.
    • getIngress

      public List<@Valid V1NetworkPolicyIngressRule> 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:
      the ingress property value
    • setIngress

      public void setIngress(List<@Valid V1NetworkPolicyIngressRule> ingress)
      Set the ingress property value
    • ingress

      public V1NetworkPolicySpec ingress(List<@Valid V1NetworkPolicyIngressRule> ingress)
      Set ingress in a chainable fashion.
      Returns:
      The same instance of V1NetworkPolicySpec for chaining.
    • addingressItem

      public V1NetworkPolicySpec addingressItem(V1NetworkPolicyIngressRule ingressItem)
      Add an item to the ingress property in a chainable fashion.
      Returns:
      The same instance of V1NetworkPolicySpec for chaining.
    • getPodSelector

      public V1LabelSelector getPodSelector()
      Returns:
      the podSelector property value
    • setPodSelector

      public void setPodSelector(V1LabelSelector podSelector)
      Set the podSelector property value
    • podSelector

      public V1NetworkPolicySpec podSelector(V1LabelSelector podSelector)
      Set podSelector in a chainable fashion.
      Returns:
      The same instance of V1NetworkPolicySpec for chaining.
    • getPolicyTypes

      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:
      the policyTypes property value
    • setPolicyTypes

      public void setPolicyTypes(List<String> policyTypes)
      Set the policyTypes property value
    • policyTypes

      public V1NetworkPolicySpec policyTypes(List<String> policyTypes)
      Set policyTypes in a chainable fashion.
      Returns:
      The same instance of V1NetworkPolicySpec for chaining.
    • addpolicyTypesItem

      public V1NetworkPolicySpec addpolicyTypesItem(String policyTypesItem)
      Add an item to the policyTypes property in a chainable fashion.
      Returns:
      The same instance of V1NetworkPolicySpec for chaining.
    • 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