class Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SearchCatalogResponse
Response message for SearchCatalog.
Attributes
next_page_token[RW]
Pagination token that can be used in subsequent calls to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
results[RW]
Search results. Corresponds to the JSON property `results` @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SearchCatalogResult>]
unreachable[RW]
Unreachable locations. Search results don't include data from those locations. To get additional information on an error, repeat the search request and restrict it to specific locations by setting the `SearchCatalogRequest.scope. restricted_locations` parameter. Corresponds to the JSON property `unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datacatalog_v1/classes.rb, line 1441 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datacatalog_v1/classes.rb, line 1446 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @results = args[:results] if args.key?(:results) @unreachable = args[:unreachable] if args.key?(:unreachable) end