[][src]Struct isilon::models::CertificateServerCertificate

pub struct CertificateServerCertificate {
    pub default: bool,
    pub description: String,
    pub dnsnames: Vec<String>,
    pub expired: bool,
    pub fingerprints: Vec<CertificateServerCertificateFingerprint>,
    pub id: String,
    pub issuer: String,
    pub name: String,
    pub not_after: i32,
    pub not_before: i32,
    pub subject: String,
    pub valid: bool,
}

Fields

default: bool

Boolean identifying if a certificate is the default certificate.The default certificate is used as the fallback when no other certificates match a TLS enabled service's particular criteria. There must always be a configured default certificate.

description: String

Description field associated with a certificate provided for administrative convenience.

dnsnames: Vec<String>

A list of DNS names/patterns for which this certificate is valid. This list is extracted from the certificates CN (Common Name) and subjectAtlName extension fields.

expired: bool

True if the certificate has expired and is no longer valid.

fingerprints: Vec<CertificateServerCertificateFingerprint>

A list of zero or more certificate fingerprints which can be used for certificate identification.

id: String

Unique server certificate identifier.

issuer: String

Certificate issuer field extracted from the certificate.

name: String

Subject common name extracted from the certificate.

not_after: i32

Certificate notAfter field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid after this timestamp.

not_before: i32

Certificate notBefore field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid before this timestamp.

subject: String

Certificate subject field extracted from the certificate.

valid: bool

True if the certificate is valid (ie: not_before <= now <= not_after).

Trait Implementations

impl Debug for CertificateServerCertificate[src]

impl Serialize for CertificateServerCertificate[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: 'static + ?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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T