[][src]Struct google_sql1_beta4::SslCert

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

SslCerts Resource

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

cert_serial_number: Option<String>

Serial number, as extracted from the certificate.

kind: Option<String>

This is always sql#sslCert.

sha1_fingerprint: Option<String>

Sha1 Fingerprint.

common_name: Option<String>

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

instance: Option<String>

Name of the database instance.

cert: Option<String>

PEM representation.

expiration_time: Option<String>

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

create_time: Option<String>

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

self_link: Option<String>

The URI of this resource.

Trait Implementations

impl Clone for SslCert[src]

impl Debug for SslCert[src]

impl Default for SslCert[src]

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

impl Resource for SslCert[src]

impl ResponseResult for SslCert[src]

impl Serialize 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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any