Network Policy Port Patch
data class NetworkPolicyPortPatch(val endPort: Int? = null, val port: Either<Int, String>? = null, val protocol: String? = null)
NetworkPolicyPort describes a port to allow traffic on
Properties
Link copied to clipboard
endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port.
Link copied to clipboard