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

pub struct SearchFeaturesRequest {
    pub location: String,
    pub query: String,
    pub page_size: i32,
    pub page_token: String,
}

Request message for [FeaturestoreService.SearchFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.SearchFeatures].

Fields

location: String

Required. The resource name of the Location to search Features. Format: projects/{project}/locations/{location}

query: String

Query string that is a conjunction of field-restricted queries and/or field-restricted filters. Field-restricted queries and filters can be combined using AND to form a conjunction.

A field query is in the form FIELD:QUERY. This implicitly checks if QUERY exists as a substring within Feature’s FIELD. The QUERY and the FIELD are converted to a sequence of words (i.e. tokens) for comparison. This is done by:

A QUERY must be either a singular token or a phrase. A phrase is one or multiple words enclosed in double quotation marks (“). With phrases, the order of the words is important. Words in the phrase must be matching in order and consecutively.

Supported FIELDs for field-restricted queries:

Examples:

Besides field queries, the following exact-match filters are supported. The exact-match filters do not support wildcards. Unlike field-restricted queries, exact-match filters are case-sensitive.

Examples:

page_size: i32

The maximum number of Features to return. The service may return fewer than this value. If unspecified, at most 100 Features will be returned. The maximum value is 100; any value greater than 100 will be coerced to 100.

page_token: String

A page token, received from a previous [FeaturestoreService.SearchFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.SearchFeatures] call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to [FeaturestoreService.SearchFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.SearchFeatures], except page_size, must match the call that provided the page token.

Trait Implementations

impl Clone for SearchFeaturesRequest[src]

impl Debug for SearchFeaturesRequest[src]

impl Default for SearchFeaturesRequest[src]

impl Message for SearchFeaturesRequest[src]

impl PartialEq<SearchFeaturesRequest> for SearchFeaturesRequest[src]

impl StructuralPartialEq for SearchFeaturesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for SearchFeaturesRequest

impl Send for SearchFeaturesRequest

impl Sync for SearchFeaturesRequest

impl Unpin for SearchFeaturesRequest

impl UnwindSafe for SearchFeaturesRequest

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]