case class ControllerRevision(data: Optional[RawExtension] = Optional.Absent, metadata: Optional[ObjectMeta] = Optional.Absent, revision: Long) extends Product with Serializable

ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.

revision

Revision indicates the revision of the state represented by Data.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ControllerRevision
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ControllerRevision(data: Optional[RawExtension] = Optional.Absent, metadata: Optional[ObjectMeta] = Optional.Absent, revision: Long)

    revision

    Revision indicates the revision of the state represented by Data.

Value Members

  1. val data: Optional[RawExtension]
  2. def getData: IO[K8sFailure, RawExtension]

    Gets data.

    Gets data.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  3. def getMetadata: IO[K8sFailure, ObjectMeta]

    Gets metadata.

    Gets metadata.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  4. def getRevision: IO[K8sFailure, Long]

    Revision indicates the revision of the state represented by Data.

    Revision indicates the revision of the state represented by Data.

    This effect always succeeds, it is safe to use the field revision directly.

  5. val metadata: Optional[ObjectMeta]
  6. val revision: Long