GoogleApi.DataCatalog.V1beta1.Model.GoogleCloudDatacatalogV1beta1SearchCatalogRequest (google_api_data_catalog v0.32.2)
View SourceRequest message for SearchCatalog.
Attributes
-
orderBy
(type:String.t
, default:nil
) - Specifies the ordering of results, currently supported case-sensitive choices are:relevance
, only supports descendinglast_modified_timestamp [asc|desc]
, defaults to descending if not specified *default
that can only be descending If not specified, defaults torelevance
descending. -
pageSize
(type:integer()
, default:nil
) - 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. -
pageToken
(type:String.t
, default:nil
) - 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
(type:String.t
, default:nil
) - Optional. The query string in search query syntax. An empty query string will result in all data assets (in the specified scope) that the user has access to. 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. -
scope
(type:GoogleApi.DataCatalog.V1beta1.Model.GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope.t
, default:nil
) - Required. The scope of this search request. Ascope
that has emptyinclude_org_ids
,include_project_ids
AND falseinclude_gcp_public_datasets
is considered invalid. Data Catalog will return an error in such a case.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.DataCatalog.V1beta1.Model.GoogleCloudDatacatalogV1beta1SearchCatalogRequest{ orderBy: String.t() | nil, pageSize: integer() | nil, pageToken: String.t() | nil, query: String.t() | nil, scope: GoogleApi.DataCatalog.V1beta1.Model.GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope.t() | nil }