case class PersistentVolume(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[PersistentVolumeSpec] = Optional.Absent, status: Optional[PersistentVolumeStatus] = Optional.Absent) extends Product with Serializable
PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PersistentVolume
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new PersistentVolume(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[PersistentVolumeSpec] = Optional.Absent, status: Optional[PersistentVolumeStatus] = Optional.Absent)
Value Members
-
def
getMetadata: IO[K8sFailure, ObjectMeta]
Gets metadata.
Gets metadata.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getSpec: IO[K8sFailure, PersistentVolumeSpec]
Gets spec.
Gets spec.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getStatus: IO[K8sFailure, PersistentVolumeStatus]
Gets status.
Gets status.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val metadata: Optional[ObjectMeta]
- val spec: Optional[PersistentVolumeSpec]
- val status: Optional[PersistentVolumeStatus]