pub struct IoK8sApiCoreV1SecretVolumeSourceBuilder { /* private fields */ }Expand description
Builder for IoK8sApiCoreV1SecretVolumeSource.
Implementations§
Source§impl IoK8sApiCoreV1SecretVolumeSourceBuilder
impl IoK8sApiCoreV1SecretVolumeSourceBuilder
Sourcepub fn default_mode(&mut self, value: Option<i64>) -> &mut Self
pub fn default_mode(&mut self, value: Option<i64>) -> &mut Self
Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
Sourcepub fn items(&mut self, value: Vec<IoK8sApiCoreV1KeyToPath>) -> &mut Self
pub fn items(&mut self, value: Vec<IoK8sApiCoreV1KeyToPath>) -> &mut Self
If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the ‘..’ path or start with ‘..’.
Sourcepub fn optional(&mut self, value: Option<bool>) -> &mut Self
pub fn optional(&mut self, value: Option<bool>) -> &mut Self
Specify whether the Secret or its keys must be defined
Sourcepub fn secret_name(&mut self, value: Option<String>) -> &mut Self
pub fn secret_name(&mut self, value: Option<String>) -> &mut Self
Name of the secret in the pod’s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
Sourcepub fn build(
&self,
) -> Result<IoK8sApiCoreV1SecretVolumeSource, IoK8sApiCoreV1SecretVolumeSourceBuilderError>
pub fn build( &self, ) -> Result<IoK8sApiCoreV1SecretVolumeSource, IoK8sApiCoreV1SecretVolumeSourceBuilderError>
Builds a new IoK8sApiCoreV1SecretVolumeSource.
§Errors
If a required field has not been initialized.
Trait Implementations§
Source§impl Clone for IoK8sApiCoreV1SecretVolumeSourceBuilder
impl Clone for IoK8sApiCoreV1SecretVolumeSourceBuilder
Source§fn clone(&self) -> IoK8sApiCoreV1SecretVolumeSourceBuilder
fn clone(&self) -> IoK8sApiCoreV1SecretVolumeSourceBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more