Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1SearchEntriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1SearchEntriesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Pagination token.
-
#results ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1SearchEntriesResult>
The results matching the search query.
-
#total_size ⇒ Fixnum
The estimated total number of matching entries.
-
#unreachable ⇒ Array<String>
Unreachable locations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1SearchEntriesResponse
constructor
A new instance of GoogleCloudDataplexV1SearchEntriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1SearchEntriesResponse
Returns a new instance of GoogleCloudDataplexV1SearchEntriesResponse.
5997 5998 5999 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5997 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Pagination token.
Corresponds to the JSON property nextPageToken
5980 5981 5982 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5980 def next_page_token @next_page_token end |
#results ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1SearchEntriesResult>
The results matching the search query.
Corresponds to the JSON property results
5985 5986 5987 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5985 def results @results end |
#total_size ⇒ Fixnum
The estimated total number of matching entries. Not guaranteed to be accurate.
Corresponds to the JSON property totalSize
5990 5991 5992 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5990 def total_size @total_size end |
#unreachable ⇒ Array<String>
Unreachable locations. Search results don't include data from those locations.
Corresponds to the JSON property unreachable
5995 5996 5997 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5995 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6002 6003 6004 6005 6006 6007 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6002 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 |