EnvVar

final case class EnvVar(name: String, value: Option[String], valueFrom: Option[EnvVarSource])

EnvVar represents an environment variable present in a Container.

Source:
EnvVar.scala
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

transforms name to result of function

transforms name to result of function

Source:
EnvVar.scala

if value has a value, transforms to the result of function

if value has a value, transforms to the result of function

Source:
EnvVar.scala

if valueFrom has a value, transforms to the result of function

if valueFrom has a value, transforms to the result of function

Source:
EnvVar.scala
def withName(value: String): EnvVar

Returns a new data with name set to new value

Returns a new data with name set to new value

Source:
EnvVar.scala
def withValue(value: String): EnvVar

Returns a new data with value set to new value

Returns a new data with value set to new value

Source:
EnvVar.scala

Returns a new data with valueFrom set to new value

Returns a new data with valueFrom set to new value

Source:
EnvVar.scala

Inherited methods

Inherited from:
Product