Struct google_firebasehosting1_beta1::DomainProvisioning[][src]

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

The HTTP challenge for generating a certificate.

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

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

The time at which the last DNS fetch occurred.

The IPs found at the last DNS fetch.

The DNS challenge for generating a certificate.

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

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

Trait Implementations

impl Default for DomainProvisioning
[src]

Returns the "default value" for a type. Read more

impl Clone for DomainProvisioning
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DomainProvisioning
[src]

Formats the value using the given formatter. Read more

impl Part for DomainProvisioning
[src]

Auto Trait Implementations