NetworkPolicyEgressRule class
NetworkPolicyEgressRule 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.
Constructors
-
NetworkPolicyEgressRule({List<
NetworkPolicyPort> ? ports, List<NetworkPolicyPeer> ? to}) -
Default constructor.
const
-
NetworkPolicyEgressRule.fromJson(Map<
String, dynamic> json) -
Creates a NetworkPolicyEgressRule from JSON data.
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
-
ports
→ List<
NetworkPolicyPort> ? -
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.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
to
→ List<
NetworkPolicyPeer> ? -
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.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, Object> - Converts a NetworkPolicyEgressRule instance to JSON data.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited