Struct gapi_grpc::google::cloud::recommendationengine::v1beta1::PurgeUserEventsRequest[][src]

pub struct PurgeUserEventsRequest {
    pub parent: String,
    pub filter: String,
    pub force: bool,
}

Request message for PurgeUserEvents method.

Fields

parent: String

Required. The resource name of the event_store under which the events are created. The format is projects/${projectId}/locations/global/catalogs/${catalogId}/eventStores/${eventStoreId}

filter: String

Required. The filter string to specify the events to be deleted. Empty string filter is not allowed. This filter can also be used with ListUserEvents API to list events that will be deleted. The eligible fields for filtering are:

force: bool

Optional. The default value is false. Override this flag to true to actually perform the purge. If the field is not set to true, a sampling of events to be deleted will be returned.

Trait Implementations

impl Clone for PurgeUserEventsRequest[src]

impl Debug for PurgeUserEventsRequest[src]

impl Default for PurgeUserEventsRequest[src]

impl Message for PurgeUserEventsRequest[src]

impl PartialEq<PurgeUserEventsRequest> for PurgeUserEventsRequest[src]

impl StructuralPartialEq for PurgeUserEventsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for PurgeUserEventsRequest

impl Send for PurgeUserEventsRequest

impl Sync for PurgeUserEventsRequest

impl Unpin for PurgeUserEventsRequest

impl UnwindSafe for PurgeUserEventsRequest

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]