Packages

case class EndpointPort(appProtocol: Optional[String] = Optional.Absent, name: Optional[String] = Optional.Absent, port: Optional[Int] = Optional.Absent, protocol: Optional[String] = Optional.Absent) extends Product with Serializable

EndpointPort represents a Port used by an EndpointSlice

appProtocol

The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.

name

The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.

port

The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.

protocol

The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EndpointPort
  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 EndpointPort(appProtocol: Optional[String] = Optional.Absent, name: Optional[String] = Optional.Absent, port: Optional[Int] = Optional.Absent, protocol: Optional[String] = Optional.Absent)

    appProtocol

    The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.

    name

    The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.

    port

    The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.

    protocol

    The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.

Value Members

  1. val appProtocol: Optional[String]
  2. def getAppProtocol: IO[K8sFailure, String]

    The application protocol for this port.

    The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.

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

  3. def getName: IO[K8sFailure, String]

    The name of this port.

    The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.

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

  4. def getPort: IO[K8sFailure, Int]

    The port number of the endpoint.

    The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.

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

  5. def getProtocol: IO[K8sFailure, String]

    The IP protocol for this port.

    The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.

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

  6. val name: Optional[String]
  7. val port: Optional[Int]
  8. val protocol: Optional[String]