Class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SearchCatalogResponse

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

Overview

Response message for SearchCatalog.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1SearchCatalogResponse

Returns a new instance of GoogleCloudDatacatalogV1SearchCatalogResponse.



2197
2198
2199
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2197

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

Instance Attribute Details

#next_page_tokenString

Pagination token that can be used in subsequent calls to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2182
2183
2184
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2182

def next_page_token
  @next_page_token
end

#resultsArray<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SearchCatalogResult>

Search results. Corresponds to the JSON property results



2187
2188
2189
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2187

def results
  @results
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)


2195
2196
2197
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2195

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2202
2203
2204
2205
2206
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2202

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