case class Namespace(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[NamespaceSpec] = Optional.Absent, status: Optional[NamespaceStatus] = Optional.Absent) extends Product with Serializable
Namespace provides a scope for Names. Use of multiple namespaces is optional.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Namespace
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new Namespace(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[NamespaceSpec] = Optional.Absent, status: Optional[NamespaceStatus] = 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, NamespaceSpec]
Gets spec.
Gets spec.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getStatus: IO[K8sFailure, NamespaceStatus]
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[NamespaceSpec]
- val status: Optional[NamespaceStatus]