case class DaemonSet(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[DaemonSetSpec] = Optional.Absent, status: Optional[DaemonSetStatus] = Optional.Absent) extends Product with Serializable
DaemonSet represents the configuration of a daemon set.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- DaemonSet
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new DaemonSet(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[DaemonSetSpec] = Optional.Absent, status: Optional[DaemonSetStatus] = 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, DaemonSetSpec]
Gets spec.
Gets spec.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getStatus: IO[K8sFailure, DaemonSetStatus]
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[DaemonSetSpec]
- val status: Optional[DaemonSetStatus]