Struct gapi_grpc::google::cloud::security::privateca::v1beta1::CertificateDescription[][src]

pub struct CertificateDescription {
    pub subject_description: Option<SubjectDescription>,
    pub config_values: Option<ReusableConfigValues>,
    pub public_key: Option<PublicKey>,
    pub subject_key_id: Option<KeyId>,
    pub authority_key_id: Option<KeyId>,
    pub crl_distribution_points: Vec<String>,
    pub aia_issuing_certificate_urls: Vec<String>,
    pub cert_fingerprint: Option<CertificateFingerprint>,
}

A [CertificateDescription][google.cloud.security.privateca.v1beta1.CertificateDescription] describes an X.509 certificate or CSR that has been issued, as an alternative to using ASN.1 / X.509.

Fields

subject_description: Option<SubjectDescription>

Describes some of the values in a certificate that are related to the subject and lifetime.

config_values: Option<ReusableConfigValues>

Describes some of the technical fields in a certificate.

public_key: Option<PublicKey>

The public key that corresponds to an issued certificate.

subject_key_id: Option<KeyId>

Provides a means of identifiying certificates that contain a particular public key, per https://tools.ietf.org/html/rfc5280#section-4.2.1.2.

authority_key_id: Option<KeyId>

Identifies the subject_key_id of the parent certificate, per https://tools.ietf.org/html/rfc5280#section-4.2.1.1

crl_distribution_points: Vec<String>

Describes a list of locations to obtain CRL information, i.e. the DistributionPoint.fullName described by https://tools.ietf.org/html/rfc5280#section-4.2.1.13

aia_issuing_certificate_urls: Vec<String>

Describes lists of issuer CA certificate URLs that appear in the “Authority Information Access” extension in the certificate.

cert_fingerprint: Option<CertificateFingerprint>

The hash of the x.509 certificate.

Trait Implementations

impl Clone for CertificateDescription[src]

impl Debug for CertificateDescription[src]

impl Default for CertificateDescription[src]

impl Message for CertificateDescription[src]

impl PartialEq<CertificateDescription> for CertificateDescription[src]

impl StructuralPartialEq for CertificateDescription[src]

Auto Trait Implementations

impl RefUnwindSafe for CertificateDescription

impl Send for CertificateDescription

impl Sync for CertificateDescription

impl Unpin for CertificateDescription

impl UnwindSafe for CertificateDescription

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]