Packages

final case class Endpoint(id: String, region: String, createdAt: OffsetDateTime, updatedAt: OffsetDateTime, publicUrl: URI, proto: String, hostport: String, type: String, metadata: String, domain: Option[Ref] = None, tcpAddr: Option[Ref] = None, tunnel: Option[Ref] = None, edge: Option[Ref] = None) extends Product with Serializable

A class encapsulating the Endpoint resource.

id

unique endpoint resource identifier

region

identifier of the region this endpoint belongs to

createdAt

timestamp when the endpoint was created in RFC 3339 format

updatedAt

timestamp when the endpoint was updated in RFC 3339 format

publicUrl

URL of the hostport served by this endpoint

proto

protocol served by this endpoint. one of http, https, tcp, or tls

hostport

hostport served by this endpoint (hostname:port)

metadata

user-supplied metadata of the associated tunnel or edge object

domain

the domain reserved for this endpoint

tcpAddr

the address reserved for this endpoint

tunnel

the tunnel serving requests to this endpoint, if this is an ephemeral endpoint

edge

the edge serving requests to this endpoint, if this is an edge endpoint

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Endpoint
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Endpoint(id: String, region: String, createdAt: OffsetDateTime, updatedAt: OffsetDateTime, publicUrl: URI, proto: String, hostport: String, type: String, metadata: String, domain: Option[Ref] = None, tcpAddr: Option[Ref] = None, tunnel: Option[Ref] = None, edge: Option[Ref] = None)

    create a new Endpoint.

    create a new Endpoint.

    id

    unique endpoint resource identifier

    region

    identifier of the region this endpoint belongs to

    createdAt

    timestamp when the endpoint was created in RFC 3339 format

    updatedAt

    timestamp when the endpoint was updated in RFC 3339 format

    publicUrl

    URL of the hostport served by this endpoint

    proto

    protocol served by this endpoint. one of http, https, tcp, or tls

    hostport

    hostport served by this endpoint (hostname:port)

    metadata

    user-supplied metadata of the associated tunnel or edge object

    domain

    the domain reserved for this endpoint

    tcpAddr

    the address reserved for this endpoint

    tunnel

    the tunnel serving requests to this endpoint, if this is an ephemeral endpoint

    edge

    the edge serving requests to this endpoint, if this is an edge endpoint

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Endpoint toany2stringadd[Endpoint] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Endpoint, B)
    Implicit
    This member is added by an implicit conversion from Endpoint toArrowAssoc[Endpoint] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. val createdAt: OffsetDateTime
  9. val domain: Option[Ref]
  10. val edge: Option[Ref]
  11. def ensuring(cond: (Endpoint) => Boolean, msg: => Any): Endpoint
    Implicit
    This member is added by an implicit conversion from Endpoint toEnsuring[Endpoint] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (Endpoint) => Boolean): Endpoint
    Implicit
    This member is added by an implicit conversion from Endpoint toEnsuring[Endpoint] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: => Any): Endpoint
    Implicit
    This member is added by an implicit conversion from Endpoint toEnsuring[Endpoint] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): Endpoint
    Implicit
    This member is added by an implicit conversion from Endpoint toEnsuring[Endpoint] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. val hostport: String
  19. val id: String
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. val metadata: String
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def productElementNames: Iterator[String]
    Definition Classes
    Product
  26. val proto: String
  27. val publicUrl: URI
  28. val region: String
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. val tcpAddr: Option[Ref]
  31. val tunnel: Option[Ref]
  32. val type: String
  33. val updatedAt: OffsetDateTime
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Endpoint toStringFormat[Endpoint] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  2. def [B](y: B): (Endpoint, B)
    Implicit
    This member is added by an implicit conversion from Endpoint toArrowAssoc[Endpoint] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromEndpoint to any2stringadd[Endpoint]

Inherited by implicit conversion StringFormat fromEndpoint to StringFormat[Endpoint]

Inherited by implicit conversion Ensuring fromEndpoint to Ensuring[Endpoint]

Inherited by implicit conversion ArrowAssoc fromEndpoint to ArrowAssoc[Endpoint]

Ungrouped