[][src]Struct google_firebasehosting1_beta1::SiteConfig

pub struct SiteConfig {
    pub max_versions: Option<String>,
    pub cloud_logging_enabled: Option<bool>,
}

A SiteConfig contains metadata associated with a specific site that controls Firebase Hosting serving behavior

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

max_versions: Option<String>

The number of FINALIZED versions that will be held for a site before automatic deletion. When a new version is deployed, content for versions in storage in excess of this number will be deleted, and will no longer be billed for storage usage. Oldest versions will be deleted first; sites are created with an unlimited number of max_versions by default.

cloud_logging_enabled: Option<bool>

Whether or not web requests made by site visitors are logged via Cloud Logging.

Trait Implementations

impl Clone for SiteConfig[src]

impl Debug for SiteConfig[src]

impl Default for SiteConfig[src]

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

impl RequestValue for SiteConfig[src]

impl ResponseResult for SiteConfig[src]

impl Serialize for SiteConfig[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