[][src]Struct google_firebasehosting1_beta1::DomainProvisioning

pub struct DomainProvisioning {
    pub cert_challenge_http: Option<CertHttpChallenge>,
    pub expected_ips: Option<Vec<String>>,
    pub cert_challenge_discovered_txt: Option<Vec<String>>,
    pub dns_fetch_time: Option<String>,
    pub discovered_ips: Option<Vec<String>>,
    pub cert_challenge_dns: Option<CertDnsChallenge>,
    pub dns_status: Option<String>,
    pub cert_status: Option<String>,
}

The current certificate provisioning status information for a domain.

This type is not used in any activity, and only used as part of another schema.

Fields

cert_challenge_http: Option<CertHttpChallenge>

The HTTP challenge for generating a certificate.

expected_ips: Option<Vec<String>>

The list of IPs to which the domain is expected to resolve.

cert_challenge_discovered_txt: Option<Vec<String>>

The TXT records (for the certificate challenge) that were found at the last DNS fetch.

dns_fetch_time: Option<String>

The time at which the last DNS fetch occurred.

discovered_ips: Option<Vec<String>>

The IPs found at the last DNS fetch.

cert_challenge_dns: Option<CertDnsChallenge>

The DNS challenge for generating a certificate.

dns_status: Option<String>

The DNS record match status as of the last DNS fetch.

cert_status: Option<String>

The certificate provisioning status; updated when Firebase Hosting provisions an SSL certificate for the domain.

Trait Implementations

impl Clone for DomainProvisioning[src]

impl Debug for DomainProvisioning[src]

impl Default for DomainProvisioning[src]

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

impl Part for DomainProvisioning[src]

impl Serialize for DomainProvisioning[src]

Auto Trait Implementations

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