Class NetworkPolicyEgressRule
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.networking.v1.NetworkPolicyEgressRule
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<NetworkPolicyEgressRuleBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class NetworkPolicyEgressRule extends Object implements io.fabric8.kubernetes.api.builder.Editable<NetworkPolicyEgressRuleBuilder>, io.fabric8.kubernetes.api.model.KubernetesResourceNetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NetworkPolicyEgressRule()No args constructor for use in serializationNetworkPolicyEgressRule(List<NetworkPolicyPort> ports, List<NetworkPolicyPeer> to)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NetworkPolicyEgressRuleBuilderedit()Map<String,Object>getAdditionalProperties()List<NetworkPolicyPort>getPorts()ports is a list of destination ports for outgoing traffic.List<NetworkPolicyPeer>getTo()to is a list of destinations for outgoing traffic of pods selected for this rule.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetPorts(List<NetworkPolicyPort> ports)ports is a list of destination ports for outgoing traffic.voidsetTo(List<NetworkPolicyPeer> to)to is a list of destinations for outgoing traffic of pods selected for this rule.NetworkPolicyEgressRuleBuildertoBuilder()
-
-
-
Constructor Detail
-
NetworkPolicyEgressRule
public NetworkPolicyEgressRule()
No args constructor for use in serialization
-
NetworkPolicyEgressRule
public NetworkPolicyEgressRule(List<NetworkPolicyPort> ports, List<NetworkPolicyPeer> to)
-
-
Method Detail
-
getPorts
public List<NetworkPolicyPort> getPorts()
ports is a list of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.
-
setPorts
public void setPorts(List<NetworkPolicyPort> ports)
ports is a list of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.
-
getTo
public List<NetworkPolicyPeer> getTo()
to is a list of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.
-
setTo
public void setTo(List<NetworkPolicyPeer> to)
to is a list of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.
-
edit
public NetworkPolicyEgressRuleBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<NetworkPolicyEgressRuleBuilder>
-
toBuilder
public NetworkPolicyEgressRuleBuilder toBuilder()
-
-