Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogResponse

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

Response message for SearchCatalog.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1SearchCatalogResponse

Returns a new instance of GoogleCloudDatacatalogV1beta1SearchCatalogResponse.



1089
1090
1091
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1089

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

Instance Attribute Details

#next_page_tokenString

The token that can be used to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1074
1075
1076
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1074

def next_page_token
  @next_page_token
end

#resultsArray<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogResult>

Search results. Corresponds to the JSON property results



1079
1080
1081
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1079

def results
  @results
end

#unreachableArray<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

Returns:

  • (Array<String>)


1087
1088
1089
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1087

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1094
1095
1096
1097
1098
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1094

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