Struct gapi_grpc::google::logging::v2::UpdateExclusionRequest[][src]

pub struct UpdateExclusionRequest {
    pub name: String,
    pub exclusion: Option<LogExclusion>,
    pub update_mask: Option<FieldMask>,
}

The parameters to UpdateExclusion.

Fields

name: String

Required. The resource name of the exclusion to update:

"projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]"
"organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]"
"billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]"
"folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]"

Example: "projects/my-project-id/exclusions/my-exclusion-id".

exclusion: Option<LogExclusion>

Required. New values for the existing exclusion. Only the fields specified in update_mask are relevant.

update_mask: Option<FieldMask>

Required. A non-empty list of fields to change in the existing exclusion. New values for the fields are taken from the corresponding fields in the [LogExclusion][google.logging.v2.LogExclusion] included in this request. Fields not mentioned in update_mask are not changed and are ignored in the request.

For example, to change the filter and description of an exclusion, specify an update_mask of "filter,description".

Trait Implementations

impl Clone for UpdateExclusionRequest[src]

impl Debug for UpdateExclusionRequest[src]

impl Default for UpdateExclusionRequest[src]

impl Message for UpdateExclusionRequest[src]

impl PartialEq<UpdateExclusionRequest> for UpdateExclusionRequest[src]

impl StructuralPartialEq for UpdateExclusionRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for UpdateExclusionRequest

impl Send for UpdateExclusionRequest

impl Sync for UpdateExclusionRequest

impl Unpin for UpdateExclusionRequest

impl UnwindSafe for UpdateExclusionRequest

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]