case class EnvVarSource(configMapKeyRef: Optional[ConfigMapKeySelector] = Optional.Absent, fieldRef: Optional[ObjectFieldSelector] = Optional.Absent, resourceFieldRef: Optional[ResourceFieldSelector] = Optional.Absent, secretKeyRef: Optional[SecretKeySelector] = Optional.Absent) extends Product with Serializable
EnvVarSource represents a source for the value of an EnvVar.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EnvVarSource
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new EnvVarSource(configMapKeyRef: Optional[ConfigMapKeySelector] = Optional.Absent, fieldRef: Optional[ObjectFieldSelector] = Optional.Absent, resourceFieldRef: Optional[ResourceFieldSelector] = Optional.Absent, secretKeyRef: Optional[SecretKeySelector] = Optional.Absent)
Value Members
- val configMapKeyRef: Optional[ConfigMapKeySelector]
- val fieldRef: Optional[ObjectFieldSelector]
-
def
getConfigMapKeyRef: IO[K8sFailure, ConfigMapKeySelector]
Gets configMapKeyRef.
Gets configMapKeyRef.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getFieldRef: IO[K8sFailure, ObjectFieldSelector]
Gets fieldRef.
Gets fieldRef.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getResourceFieldRef: IO[K8sFailure, ResourceFieldSelector]
Gets resourceFieldRef.
Gets resourceFieldRef.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getSecretKeyRef: IO[K8sFailure, SecretKeySelector]
Gets secretKeyRef.
Gets secretKeyRef.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val resourceFieldRef: Optional[ResourceFieldSelector]
- val secretKeyRef: Optional[SecretKeySelector]