Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1SearchEntriesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1SearchEntriesResponse

Returns a new instance of GoogleCloudDataplexV1SearchEntriesResponse.



6019
6020
6021
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6019

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

Instance Attribute Details

#next_page_tokenString

Pagination token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


6002
6003
6004
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6002

def next_page_token
  @next_page_token
end

#resultsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1SearchEntriesResult>

The results matching the search query. Corresponds to the JSON property results



6007
6008
6009
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6007

def results
  @results
end

#total_sizeFixnum

The estimated total number of matching entries. Not guaranteed to be accurate. Corresponds to the JSON property totalSize

Returns:

  • (Fixnum)


6012
6013
6014
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6012

def total_size
  @total_size
end

#unreachableArray<String>

Unreachable locations. Search results don't include data from those locations. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


6017
6018
6019
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6017

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6024
6025
6026
6027
6028
6029
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6024

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