Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datacatalog_v1beta1/classes.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb

Overview

Request message for SearchCatalog.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1SearchCatalogRequest

Returns a new instance of GoogleCloudDatacatalogV1beta1SearchCatalogRequest.



3066
3067
3068
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3066

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#order_byString

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 * default that can only be descending If not specified, defaults to relevance descending. Corresponds to the JSON property orderBy

Returns:

  • (String)


3034
3035
3036
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3034

def order_by
  @order_by
end

#page_sizeFixnum

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. Corresponds to the JSON property pageSize

Returns:

  • (Fixnum)


3040
3041
3042
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3040

def page_size
  @page_size
end

#page_tokenString

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. Corresponds to the JSON property pageToken

Returns:

  • (String)


3048
3049
3050
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3048

def page_token
  @page_token
end

#queryString

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. Corresponds to the JSON property query

Returns:

  • (String)


3059
3060
3061
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3059

def query
  @query
end

#scopeGoogle::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope

The criteria that select the subspace used for query matching. Corresponds to the JSON property scope



3064
3065
3066
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3064

def scope
  @scope
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3071
3072
3073
3074
3075
3076
3077
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3071

def update!(**args)
  @order_by = args[:order_by] if args.key?(:order_by)
  @page_size = args[:page_size] if args.key?(:page_size)
  @page_token = args[:page_token] if args.key?(:page_token)
  @query = args[:query] if args.key?(:query)
  @scope = args[:scope] if args.key?(:scope)
end