[][src]Struct k8s_openapi::api::certificates::v1beta1::CertificateSigningRequestSpec

pub struct CertificateSigningRequestSpec {
    pub extra: Option<BTreeMap<String, Vec<String>>>,
    pub groups: Option<Vec<String>>,
    pub request: ByteString,
    pub uid: Option<String>,
    pub usages: Option<Vec<String>>,
    pub username: Option<String>,
}

This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.

Fields

extra: Option<BTreeMap<String, Vec<String>>>

Extra information about the requesting user. See user.Info interface for details.

groups: Option<Vec<String>>

Group information about the requesting user. See user.Info interface for details.

request: ByteString

Base64-encoded PKCS#10 CSR data

uid: Option<String>

UID information about the requesting user. See user.Info interface for details.

usages: Option<Vec<String>>

allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12

username: Option<String>

Information about the requesting user. See user.Info interface for details.

Trait Implementations

impl PartialEq<CertificateSigningRequestSpec> for CertificateSigningRequestSpec[src]

impl Default for CertificateSigningRequestSpec[src]

impl Clone for CertificateSigningRequestSpec[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CertificateSigningRequestSpec[src]

impl Serialize for CertificateSigningRequestSpec[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

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