ListMeta

io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta
See theListMeta companion object
final case class ListMeta(continue: Option[String], remainingItemCount: Option[Long], resourceVersion: Option[String], selfLink: Option[String])

ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

Attributes

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

Members list

Value members

Concrete methods

def mapContinue(f: String => String): ListMeta

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

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

Attributes

Source
ListMeta.scala
def mapRemainingItemCount(f: Long => Long): ListMeta

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

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

Attributes

Source
ListMeta.scala
def mapResourceVersion(f: String => String): ListMeta

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

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

Attributes

Source
ListMeta.scala
def withContinue(value: String): ListMeta

Returns a new data with continue set to new value

Returns a new data with continue set to new value

Attributes

Source
ListMeta.scala
def withRemainingItemCount(value: Long): ListMeta

Returns a new data with remainingItemCount set to new value

Returns a new data with remainingItemCount set to new value

Attributes

Source
ListMeta.scala
def withResourceVersion(value: String): ListMeta

Returns a new data with resourceVersion set to new value

Returns a new data with resourceVersion set to new value

Attributes

Source
ListMeta.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product