Struct google_logging2::api::LogBucket[][src]

pub struct LogBucket {
    pub create_time: Option<String>,
    pub description: Option<String>,
    pub lifecycle_state: Option<String>,
    pub locked: Option<bool>,
    pub name: Option<String>,
    pub retention_days: Option<i32>,
    pub update_time: Option<String>,
}

Describes a repository of logs.

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

create_time: Option<String>

Output only. The creation timestamp of the bucket. This is not set for any of the default buckets.

description: Option<String>

Describes this bucket.

lifecycle_state: Option<String>

Output only. The bucket lifecycle state.

locked: Option<bool>

Whether the bucket has been locked. The retention period on a locked bucket may not be changed. Locked buckets may only be deleted if they are empty.

name: Option<String>

Output only. The resource name of the bucket. For example: “projects/my-project-id/locations/my-location/buckets/my-bucket-id” The supported locations are: global, us-central1, us-east1, us-west1, asia-east1, europe-west1.For the location of global it is unspecified where logs are actually stored. Once a bucket has been created, the location can not be changed.

retention_days: Option<i32>

Logs will be retained by default for this amount of time, after which they will automatically be deleted. The minimum retention period is 1 day. If this value is set to zero at bucket creation time, the default time of 30 days will be used.

update_time: Option<String>

Output only. The last update timestamp of the bucket.

Trait Implementations

impl Clone for LogBucket[src]

impl Debug for LogBucket[src]

impl Default for LogBucket[src]

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

impl RequestValue for LogBucket[src]

impl ResponseResult for LogBucket[src]

impl Serialize for LogBucket[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> Instrument 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.