pub struct LogExclusion {
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub disabled: Option<bool>,
pub filter: Option<String>,
pub name: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
Specifies a set of log entries that are filtered out by a sink. If your Google Cloud resource receives a large volume of log entries, you can use exclusions to reduce your chargeable logs. Note that exclusions on organization-level and folder-level sinks don’t apply to child resources. Note also that you cannot modify the _Required sink or exclude logs from it.
§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).
- exclusions create billing accounts (request|response)
- exclusions get billing accounts (response)
- exclusions patch billing accounts (request|response)
- create exclusions (request|response)
- get exclusions (response)
- patch exclusions (request|response)
- exclusions create folders (request|response)
- exclusions get folders (response)
- exclusions patch folders (request|response)
- exclusions create organizations (request|response)
- exclusions get organizations (response)
- exclusions patch organizations (request|response)
- exclusions create projects (request|response)
- exclusions get projects (response)
- exclusions patch projects (request|response)
Fields§
§create_time: Option<DateTime<Utc>>
Output only. The creation timestamp of the exclusion.This field may not be present for older exclusions.
description: Option<String>
Optional. A description of this exclusion.
disabled: Option<bool>
Optional. If set to True, then this exclusion is disabled and it does not exclude any log entries. You can update an exclusion to change the value of this field.
filter: Option<String>
Required. An advanced logs filter (https://cloud.google.com/logging/docs/view/advanced-queries) that matches the log entries to be excluded. By using the sample function (https://cloud.google.com/logging/docs/view/advanced-queries#sample), you can exclude less than 100% of the matching log entries.For example, the following query matches 99% of low-severity log entries from Google Cloud Storage buckets:resource.type=gcs_bucket severity<ERROR sample(insertId, 0.99)
name: Option<String>
Output only. A client-assigned identifier, such as “load-balancer-exclusion”. Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
update_time: Option<DateTime<Utc>>
Output only. The last update timestamp of the exclusion.This field may not be present for older exclusions.
Trait Implementations§
Source§impl Clone for LogExclusion
impl Clone for LogExclusion
Source§fn clone(&self) -> LogExclusion
fn clone(&self) -> LogExclusion
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for LogExclusion
impl Debug for LogExclusion
Source§impl Default for LogExclusion
impl Default for LogExclusion
Source§fn default() -> LogExclusion
fn default() -> LogExclusion
Source§impl<'de> Deserialize<'de> for LogExclusion
impl<'de> Deserialize<'de> for LogExclusion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for LogExclusion
impl Serialize for LogExclusion
impl RequestValue for LogExclusion
impl ResponseResult for LogExclusion
Auto Trait Implementations§
impl Freeze for LogExclusion
impl RefUnwindSafe for LogExclusion
impl Send for LogExclusion
impl Sync for LogExclusion
impl Unpin for LogExclusion
impl UnwindSafe for LogExclusion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more