[][src]Struct k8s_openapi::api::core::v1::WindowsSecurityContextOptions

pub struct WindowsSecurityContextOptions {
    pub gmsa_credential_spec: Option<String>,
    pub gmsa_credential_spec_name: Option<String>,
}

WindowsSecurityContextOptions contain Windows-specific options and credentials.

Fields

gmsa_credential_spec: Option<String>

GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.

gmsa_credential_spec_name: Option<String>

GMSACredentialSpecName is the name of the GMSA credential spec to use. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.

Trait Implementations

impl Default for WindowsSecurityContextOptions[src]

impl Clone for WindowsSecurityContextOptions[src]

impl PartialEq<WindowsSecurityContextOptions> for WindowsSecurityContextOptions[src]

impl Debug for WindowsSecurityContextOptions[src]

impl Serialize for WindowsSecurityContextOptions[src]

impl<'de> Deserialize<'de> for WindowsSecurityContextOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]