[][src]Struct google_logging2::LogBucket

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

Describes a repository of logs (Beta).

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

update_time: Option<String>

Output only. The last update timestamp of the bucket.

name: Option<String>

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"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.

description: Option<String>

Describes this bucket.

create_time: Option<String>

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

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.

lifecycle_state: Option<String>

Output only. The bucket lifecycle state.

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, 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