IPBlock class

IPBlock describes a particular CIDR (Ex. "192.168.1.0/24","2001:db8::/64") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.

Constructors

IPBlock({required String cidr, List<String>? except})
Default constructor.
const
IPBlock.fromJson(Map<String, dynamic> json)
Creates a IPBlock from JSON data.
factory

Properties

cidr String
cidr is a string representing the IPBlock Valid examples are "192.168.1.0/24" or "2001:db8::/64".
final
except List<String>?
except is a slice of CIDRs that should not be included within an IPBlock Valid examples are "192.168.1.0/24" or "2001:db8::/64" Except values will be rejected if they are outside the cidr range.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object>
Converts a IPBlock instance to JSON data.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited