object GitlabTokenLookup
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- GitlabTokenLookup
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class CIJob(source: TokenSource) extends GitlabToken with Product with Serializable
- case class Custom(f: () => Either[String, String]) extends TokenSource with Product with Serializable
- case class CustomHeader(header: String, source: TokenSource) extends GitlabToken with Product with Serializable
- case class Deploy(source: TokenSource) extends GitlabToken with Product with Serializable
- case class Env(name: String) extends TokenSource with Product with Serializable
- case class File(path: Path) extends TokenSource with Product with Serializable
- trait GitlabToken extends AnyRef
Possible types of a Gitlab authentication header.
Possible types of a Gitlab authentication header.
- Personal = "Private-Token" ->
- Deploy = "Deploy-Token"->
- CIJob = "Job-Token" ->
- CustomHeader = Use with TokenSource/Custom to produce anything you like
Currently only one custom header is supported. If you need multiple override gitlabToken from GitlabPublishModule directly
- case class Personal(source: TokenSource) extends GitlabToken with Product with Serializable
- case class Property(property: String) extends TokenSource with Product with Serializable
- sealed trait TokenSource extends AnyRef
Possible source of token value.
Possible source of token value. Either an
- Env = Environment variable
- Property = Javas system property
- File =Contents of a file on local disk.
- Custom = Own function
Possible additions, that can now be supported with Custom: KeyVault, Yaml, etc..
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(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()