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 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Token to retrieve the next page of results, or empty if there are no more results in the list.
 - 
  
    
      #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> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Locations that the service couldn't reach.
 
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.
      6459 6460 6461  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6459 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
      6440 6441 6442  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6440 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
      6445 6446 6447  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6445 def results @results end  | 
  
#total_size ⇒ Fixnum
The estimated total number of matching entries. This number isn't guaranteed
to be accurate.
Corresponds to the JSON property totalSize
      6451 6452 6453  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6451 def total_size @total_size end  | 
  
#unreachable ⇒ Array<String>
Locations that the service couldn't reach. Search results don't include data
from these locations.
Corresponds to the JSON property unreachable
      6457 6458 6459  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6457 def unreachable @unreachable end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6464 6465 6466 6467 6468 6469  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6464 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  |