Struct gapi_grpc::google::cloud::sql::v1beta4::SslCert[][src]

pub struct SslCert {
    pub kind: String,
    pub cert_serial_number: String,
    pub cert: String,
    pub create_time: Option<Timestamp>,
    pub common_name: String,
    pub expiration_time: Option<Timestamp>,
    pub sha1_fingerprint: String,
    pub instance: String,
    pub self_link: String,
}

SslCerts Resource

Fields

kind: String

This is always sql#sslCert.

cert_serial_number: String

Serial number, as extracted from the certificate.

cert: String

PEM representation.

create_time: Option<Timestamp>

The time when the certificate was created in RFC 3339 format, for example 2012-11-15T16:19:00.094Z

common_name: String

User supplied name. Constrained to [a-zA-Z.-_ ]+.

expiration_time: Option<Timestamp>

The time when the certificate expires in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.

sha1_fingerprint: String

Sha1 Fingerprint.

instance: String

Name of the database instance.

self_link: String

The URI of this resource.

Trait Implementations

impl Clone for SslCert[src]

impl Debug for SslCert[src]

impl Default for SslCert[src]

impl Message for SslCert[src]

impl PartialEq<SslCert> for SslCert[src]

impl StructuralPartialEq for SslCert[src]

Auto Trait Implementations

impl RefUnwindSafe for SslCert

impl Send for SslCert

impl Sync for SslCert

impl Unpin for SslCert

impl UnwindSafe for SslCert

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]