pub struct IoK8sApiCoreV1ConfigMapVolumeSourceBuilder { /* private fields */ }
Expand description
Builder for IoK8sApiCoreV1ConfigMapVolumeSource
.
Implementations§
Source§impl IoK8sApiCoreV1ConfigMapVolumeSourceBuilder
impl IoK8sApiCoreV1ConfigMapVolumeSourceBuilder
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 ConfigMap 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 ConfigMap, 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 name(&mut self, value: Option<String>) -> &mut Self
pub fn name(&mut self, value: Option<String>) -> &mut Self
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
Sourcepub fn optional(&mut self, value: Option<bool>) -> &mut Self
pub fn optional(&mut self, value: Option<bool>) -> &mut Self
Specify whether the ConfigMap or its keys must be defined
Sourcepub fn build(
&self,
) -> Result<IoK8sApiCoreV1ConfigMapVolumeSource, IoK8sApiCoreV1ConfigMapVolumeSourceBuilderError>
pub fn build( &self, ) -> Result<IoK8sApiCoreV1ConfigMapVolumeSource, IoK8sApiCoreV1ConfigMapVolumeSourceBuilderError>
Builds a new IoK8sApiCoreV1ConfigMapVolumeSource
.
§Errors
If a required field has not been initialized.
Trait Implementations§
Source§impl Clone for IoK8sApiCoreV1ConfigMapVolumeSourceBuilder
impl Clone for IoK8sApiCoreV1ConfigMapVolumeSourceBuilder
Source§fn clone(&self) -> IoK8sApiCoreV1ConfigMapVolumeSourceBuilder
fn clone(&self) -> IoK8sApiCoreV1ConfigMapVolumeSourceBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more