Packages

case class VolumeProjection(configMap: Optional[ConfigMapProjection] = Optional.Absent, downwardAPI: Optional[DownwardAPIProjection] = Optional.Absent, secret: Optional[SecretProjection] = Optional.Absent, serviceAccountToken: Optional[ServiceAccountTokenProjection] = Optional.Absent) extends Product with Serializable

Projection that may be projected along with other supported volume types

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VolumeProjection
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new VolumeProjection(configMap: Optional[ConfigMapProjection] = Optional.Absent, downwardAPI: Optional[DownwardAPIProjection] = Optional.Absent, secret: Optional[SecretProjection] = Optional.Absent, serviceAccountToken: Optional[ServiceAccountTokenProjection] = Optional.Absent)

Value Members

  1. val configMap: Optional[ConfigMapProjection]
  2. val downwardAPI: Optional[DownwardAPIProjection]
  3. def getConfigMap: IO[K8sFailure, ConfigMapProjection]

    Gets configMap.

    Gets configMap.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  4. def getDownwardAPI: IO[K8sFailure, DownwardAPIProjection]

    Gets downwardAPI.

    Gets downwardAPI.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  5. def getSecret: IO[K8sFailure, SecretProjection]

    Gets secret.

    Gets secret.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  6. def getServiceAccountToken: IO[K8sFailure, ServiceAccountTokenProjection]

    Gets serviceAccountToken.

    Gets serviceAccountToken.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  7. val secret: Optional[SecretProjection]
  8. val serviceAccountToken: Optional[ServiceAccountTokenProjection]