Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogResponse
- 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
Response message for SearchCatalog.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The token that can be used to retrieve the next page of results.
-
#results ⇒ Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogResult>
Search results.
-
#total_size ⇒ Fixnum
The approximate total number of entries matched by the query.
-
#unreachable ⇒ Array<String>
Unreachable locations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1SearchCatalogResponse
constructor
A new instance of GoogleCloudDatacatalogV1beta1SearchCatalogResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1SearchCatalogResponse
Returns a new instance of GoogleCloudDatacatalogV1beta1SearchCatalogResponse.
3237 3238 3239 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3237 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The token that can be used to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
3217 3218 3219 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3217 def next_page_token @next_page_token end |
#results ⇒ Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogResult>
Search results.
Corresponds to the JSON property results
3222 3223 3224 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3222 def results @results end |
#total_size ⇒ Fixnum
The approximate total number of entries matched by the query.
Corresponds to the JSON property totalSize
3227 3228 3229 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3227 def total_size @total_size end |
#unreachable ⇒ Array<String>
Unreachable locations. Search result does not include data from those
locations. Users can get additional information on the error by repeating the
search request with a more restrictive parameter -- setting the value for
SearchDataCatalogRequest.scope.restricted_locations
.
Corresponds to the JSON property unreachable
3235 3236 3237 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3235 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3242 3243 3244 3245 3246 3247 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 3242 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @results = args[:results] if args.key?(:results) @total_size = args[:total_size] if args.key?(:total_size) @unreachable = args[:unreachable] if args.key?(:unreachable) end |