ContainerImage

io.k8s.api.core.v1.ContainerImage
See theContainerImage companion object
final case class ContainerImage(names: Option[Seq[String]], sizeBytes: Option[Long])

Describe a container image

Attributes

Companion
object
Source
ContainerImage.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def addNames(newValues: String*): ContainerImage

Appends new values to names

Appends new values to names

Attributes

Source
ContainerImage.scala
def mapNames(f: (Seq[String]) => Seq[String]): ContainerImage

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

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

Attributes

Source
ContainerImage.scala
def mapSizeBytes(f: Long => Long): ContainerImage

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

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

Attributes

Source
ContainerImage.scala
def withNames(value: Seq[String]): ContainerImage

Returns a new data with names set to new value

Returns a new data with names set to new value

Attributes

Source
ContainerImage.scala
def withSizeBytes(value: Long): ContainerImage

Returns a new data with sizeBytes set to new value

Returns a new data with sizeBytes set to new value

Attributes

Source
ContainerImage.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product