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 Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddegressItem
(V1NetworkPolicyEgressRule egressItem) Add an item to the egress property in a chainable fashion.addingressItem
(V1NetworkPolicyIngressRule ingressItem) Add an item to the ingress property in a chainable fashion.addpolicyTypesItem
(String policyTypesItem) Add an item to the policyTypes property in a chainable fashion.egress
(List<@Valid V1NetworkPolicyEgressRule> egress) Set egress in a chainable fashion.boolean
List<@Valid V1NetworkPolicyEgressRule>
egress is a list of egress rules to be applied to the selected pods.List<@Valid V1NetworkPolicyIngressRule>
ingress is a list of ingress rules to be applied to the selected pods.policyTypes is a list of rule types that the NetworkPolicy relates to.int
hashCode()
ingress
(List<@Valid V1NetworkPolicyIngressRule> ingress) Set ingress in a chainable fashion.podSelector
(V1LabelSelector podSelector) Set podSelector in a chainable fashion.policyTypes
(List<String> policyTypes) Set policyTypes in a chainable fashion.void
setEgress
(List<@Valid V1NetworkPolicyEgressRule> egress) Set the egress property valuevoid
setIngress
(List<@Valid V1NetworkPolicyIngressRule> ingress) Set the ingress property valuevoid
setPodSelector
(V1LabelSelector podSelector) Set the podSelector property valuevoid
setPolicyTypes
(List<String> policyTypes) Set the policyTypes property valuetoString()
-
Field Details
-
JSON_PROPERTY_EGRESS
- See Also:
-
JSON_PROPERTY_INGRESS
- See Also:
-
JSON_PROPERTY_POD_SELECTOR
- See Also:
-
JSON_PROPERTY_POLICY_TYPES
- See Also:
-
-
Constructor Details
-
V1NetworkPolicySpec
-
-
Method Details
-
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
Set the egress property value -
egress
Set egress in a chainable fashion.- Returns:
- The same instance of V1NetworkPolicySpec for chaining.
-
addegressItem
Add an item to the egress property in a chainable fashion.- Returns:
- The same instance of V1NetworkPolicySpec for chaining.
-
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
Set the ingress property value -
ingress
Set ingress in a chainable fashion.- Returns:
- The same instance of V1NetworkPolicySpec for chaining.
-
addingressItem
Add an item to the ingress property in a chainable fashion.- Returns:
- The same instance of V1NetworkPolicySpec for chaining.
-
getPodSelector
- Returns:
- the podSelector property value
-
setPodSelector
Set the podSelector property value -
podSelector
Set podSelector in a chainable fashion.- Returns:
- The same instance of V1NetworkPolicySpec for chaining.
-
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
Set the policyTypes property value -
policyTypes
Set policyTypes in a chainable fashion.- Returns:
- The same instance of V1NetworkPolicySpec for chaining.
-
addpolicyTypesItem
Add an item to the policyTypes property in a chainable fashion.- Returns:
- The same instance of V1NetworkPolicySpec for chaining.
-
equals
-
hashCode
public int hashCode() -
toString
-