case class PodDNSConfigOption(name: Optional[String] = Optional.Absent, value: Optional[String] = Optional.Absent) extends Product with Serializable
PodDNSConfigOption defines DNS resolver options of a pod.
- name
Required.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PodDNSConfigOption
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
PodDNSConfigOption(name: Optional[String] = Optional.Absent, value: Optional[String] = Optional.Absent)
- name
Required.
Value Members
-
def
getName: IO[K8sFailure, String]
Required.
Required.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getValue: IO[K8sFailure, String]
Gets value.
Gets value.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val name: Optional[String]
- val value: Optional[String]