Struct gapi_grpc::google::privacy::dlp::v2::ListDlpJobsRequest[][src]

pub struct ListDlpJobsRequest {
    pub parent: String,
    pub filter: String,
    pub page_size: i32,
    pub page_token: String,
    pub type: i32,
    pub order_by: String,
    pub location_id: String,
}

The request message for listing DLP jobs.

Fields

parent: String

Required. Parent resource name.

The format of this value varies depending on whether you have specified a processing location:

The following example parent string specifies a parent project with the identifier example-project, and specifies the europe-west3 location for processing data:

parent=projects/example-project/locations/europe-west3
filter: String

Allows filtering.

Supported syntax:

Examples:

The length of this field should be no more than 500 characters.

page_size: i32

The standard list page size.

page_token: String

The standard list page token.

type: i32

The type of job. Defaults to DlpJobType.INSPECT

order_by: String

Comma separated list of fields to order by, followed by asc or desc postfix. This list is case-insensitive, default sorting order is ascending, redundant space characters are insignificant.

Example: name asc, end_time asc, create_time desc

Supported fields are:

location_id: String

Deprecated. This field has no effect.

Implementations

impl ListDlpJobsRequest[src]

pub fn type(&self) -> DlpJobType[src]

Returns the enum value of type, or the default if the field is set to an invalid enum value.

pub fn set_type(&mut self, value: DlpJobType)[src]

Sets type to the provided enum value.

Trait Implementations

impl Clone for ListDlpJobsRequest[src]

impl Debug for ListDlpJobsRequest[src]

impl Default for ListDlpJobsRequest[src]

impl Message for ListDlpJobsRequest[src]

impl PartialEq<ListDlpJobsRequest> for ListDlpJobsRequest[src]

impl StructuralPartialEq for ListDlpJobsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListDlpJobsRequest

impl Send for ListDlpJobsRequest

impl Sync for ListDlpJobsRequest

impl Unpin for ListDlpJobsRequest

impl UnwindSafe for ListDlpJobsRequest

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]