pub struct IntegrationTemplateSpecVolumesProjectedSourcesSecret {
pub items: Option<Vec<IntegrationTemplateSpecVolumesProjectedSourcesSecretItems>>,
pub name: Option<String>,
pub optional: Option<bool>,
}Expand description
secret information about the secret data to project
Fields§
§items: Option<Vec<IntegrationTemplateSpecVolumesProjectedSourcesSecretItems>>items 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 ‘..’.
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 field specify whether the Secret or its key must be defined
Trait Implementations§
Source§impl Clone for IntegrationTemplateSpecVolumesProjectedSourcesSecret
impl Clone for IntegrationTemplateSpecVolumesProjectedSourcesSecret
Source§fn clone(&self) -> IntegrationTemplateSpecVolumesProjectedSourcesSecret
fn clone(&self) -> IntegrationTemplateSpecVolumesProjectedSourcesSecret
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for IntegrationTemplateSpecVolumesProjectedSourcesSecret
impl Default for IntegrationTemplateSpecVolumesProjectedSourcesSecret
Source§fn default() -> IntegrationTemplateSpecVolumesProjectedSourcesSecret
fn default() -> IntegrationTemplateSpecVolumesProjectedSourcesSecret
Source§impl<'de> Deserialize<'de> for IntegrationTemplateSpecVolumesProjectedSourcesSecret
impl<'de> Deserialize<'de> for IntegrationTemplateSpecVolumesProjectedSourcesSecret
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 IntegrationTemplateSpecVolumesProjectedSourcesSecret
impl PartialEq for IntegrationTemplateSpecVolumesProjectedSourcesSecret
Source§fn eq(
&self,
other: &IntegrationTemplateSpecVolumesProjectedSourcesSecret,
) -> bool
fn eq( &self, other: &IntegrationTemplateSpecVolumesProjectedSourcesSecret, ) -> bool
self and other values to be equal, and is used by ==.