Struct gapi_grpc::google::cloud::aiplatform::v1beta1::ListDataItemsRequest[][src]

pub struct ListDataItemsRequest {
    pub parent: String,
    pub filter: String,
    pub page_size: i32,
    pub page_token: String,
    pub read_mask: Option<FieldMask>,
    pub order_by: String,
}

Request message for [DatasetService.ListDataItems][google.cloud.aiplatform.v1beta1.DatasetService.ListDataItems].

Fields

parent: String

Required. The resource name of the Dataset to list DataItems from. Format: projects/{project}/locations/{location}/datasets/{dataset}

filter: String

The standard list filter.

page_size: i32

The standard list page size.

page_token: String

The standard list page token.

read_mask: Option<FieldMask>

Mask specifying which fields to read.

order_by: String

A comma-separated list of fields to order by, sorted in ascending order. Use “desc” after a field name for descending.

Trait Implementations

impl Clone for ListDataItemsRequest[src]

impl Debug for ListDataItemsRequest[src]

impl Default for ListDataItemsRequest[src]

impl Message for ListDataItemsRequest[src]

impl PartialEq<ListDataItemsRequest> for ListDataItemsRequest[src]

impl StructuralPartialEq for ListDataItemsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListDataItemsRequest

impl Send for ListDataItemsRequest

impl Sync for ListDataItemsRequest

impl Unpin for ListDataItemsRequest

impl UnwindSafe for ListDataItemsRequest

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]