case class DockerAlias(registryHost: Option[String], username: Option[String], name: String, tag: Option[String]) extends Product with Serializable
This class represents a Docker alias. It generates a string in the form of
[REGISTRY_HOST/][USERNAME/]NAME[:TAG]
, e.g. my-registry.com:1234/my-user/my-service:1.0.0 or just my-service:1.0.0. [REGISTRY_HOST/][USERNAME/]NAME[:TAG] }}} e.g. my-registry.com:1234/my-user/my-service:1.0.0 or just my-service:1.0.0.
- registryHost
Optional hostname of the registry (including port if applicable)
- username
Optional username or other qualifier
- name
Name of the image, e.g. the artifact name
- tag
Optional tag for the image, e.g. the version
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- DockerAlias
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
DockerAlias(registryHost: Option[String], username: Option[String], name: String, tag: Option[String])
- registryHost
Optional hostname of the registry (including port if applicable)
- username
Optional username or other qualifier
- name
Name of the image, e.g. the artifact name
- tag
Optional tag for the image, e.g. the version
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val name: String
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val registryHost: Option[String]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val tag: Option[String]
-
def
toString(): String
- Definition Classes
- DockerAlias → AnyRef → Any
- val username: Option[String]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def withName(name: String): DockerAlias
- def withRegistryHost(registryHost: Option[String]): DockerAlias
- def withTag(tag: Option[String]): DockerAlias
- def withUsername(username: Option[String]): DockerAlias