pub struct IntegrationTemplateSpecVolumesProjectedSourcesConfigMap {
pub items: Option<Vec<IntegrationTemplateSpecVolumesProjectedSourcesConfigMapItems>>,
pub name: Option<String>,
pub optional: Option<bool>,
}Expand description
configMap information about the configMap data to project
Fields§
§items: Option<Vec<IntegrationTemplateSpecVolumesProjectedSourcesConfigMapItems>>items 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 ‘..’.
name: Option<String>Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
optional: Option<bool>optional specify whether the ConfigMap or its keys must be defined
Trait Implementations§
Source§impl Clone for IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
impl Clone for IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
Source§fn clone(&self) -> IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
fn clone(&self) -> IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
impl Default for IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
Source§fn default() -> IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
fn default() -> IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
Source§impl<'de> Deserialize<'de> for IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
impl<'de> Deserialize<'de> for IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
impl PartialEq for IntegrationTemplateSpecVolumesProjectedSourcesConfigMap
Source§fn eq(
&self,
other: &IntegrationTemplateSpecVolumesProjectedSourcesConfigMap,
) -> bool
fn eq( &self, other: &IntegrationTemplateSpecVolumesProjectedSourcesConfigMap, ) -> bool
self and other values to be equal, and is used by ==.