case class IPBlock(cidr: String, except: Optional[Vector[String]] = Optional.Absent) extends Product with Serializable

IPBlock describes a particular CIDR (Ex. "192.168.1.1/24","2001:db9::/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.

cidr

CIDR is a string representing the IP Block Valid examples are "192.168.1.1/24" or "2001:db9::/64"

except

Except is a slice of CIDRs that should not be included within an IP Block Valid examples are "192.168.1.1/24" or "2001:db9::/64" Except values will be rejected if they are outside the CIDR range

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IPBlock
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IPBlock(cidr: String, except: Optional[Vector[String]] = Optional.Absent)

    cidr

    CIDR is a string representing the IP Block Valid examples are "192.168.1.1/24" or "2001:db9::/64"

    except

    Except is a slice of CIDRs that should not be included within an IP Block Valid examples are "192.168.1.1/24" or "2001:db9::/64" Except values will be rejected if they are outside the CIDR range

Value Members

  1. val cidr: String
  2. val except: Optional[Vector[String]]
  3. def getCidr: IO[K8sFailure, String]

    CIDR is a string representing the IP Block Valid examples are "192.168.1.1/24" or "2001:db9::/64"

    CIDR is a string representing the IP Block Valid examples are "192.168.1.1/24" or "2001:db9::/64"

    This effect always succeeds, it is safe to use the field cidr directly.

  4. def getExcept: IO[K8sFailure, Vector[String]]

    Except is a slice of CIDRs that should not be included within an IP Block Valid examples are "192.168.1.1/24" or "2001:db9::/64" Except values will be rejected if they are outside the CIDR range

    Except is a slice of CIDRs that should not be included within an IP Block Valid examples are "192.168.1.1/24" or "2001:db9::/64" Except values will be rejected if they are outside the CIDR range

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.