[][src]Struct google_datacatalog1_beta1::GoogleCloudDatacatalogV1beta1SearchCatalogRequest

pub struct GoogleCloudDatacatalogV1beta1SearchCatalogRequest {
    pub order_by: Option<String>,
    pub page_token: Option<String>,
    pub query: Option<String>,
    pub page_size: Option<i32>,
    pub scope: Option<GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope>,
}

Request message for SearchCatalog.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

order_by: Option<String>

Specifies the ordering of results, currently supported case-sensitive choices are:

  • relevance, only supports descending
  • last_modified_timestamp [asc|desc], defaults to descending if not specified

If not specified, defaults to relevance descending.

page_token: Option<String>

Optional. Pagination token returned in an earlier SearchCatalogResponse.next_page_token, which indicates that this is a continuation of a prior SearchCatalogRequest call, and that the system should return the next page of data. If empty, the first page is returned.

query: Option<String>

Required. The query string in search query syntax. The query must be non-empty.

Query strings can be simple as "x" or more qualified as:

  • name:x
  • column:x
  • description:y

Note: Query tokens need to have a minimum of 3 characters for substring matching to work correctly. See Data Catalog Search Syntax for more information.

page_size: Option<i32>

Number of results in the search page. If <=0 then defaults to 10. Max limit for page_size is 1000. Throws an invalid argument for page_size > 1000.

scope: Option<GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope>

Required. The scope of this search request. A scope that has empty include_org_ids, include_project_ids AND false include_gcp_public_datasets is considered invalid. Data Catalog will return an error in such a case.

Trait Implementations

impl Clone for GoogleCloudDatacatalogV1beta1SearchCatalogRequest[src]

impl Debug for GoogleCloudDatacatalogV1beta1SearchCatalogRequest[src]

impl Default for GoogleCloudDatacatalogV1beta1SearchCatalogRequest[src]

impl<'de> Deserialize<'de> for GoogleCloudDatacatalogV1beta1SearchCatalogRequest[src]

impl RequestValue for GoogleCloudDatacatalogV1beta1SearchCatalogRequest[src]

impl Serialize for GoogleCloudDatacatalogV1beta1SearchCatalogRequest[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any