Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListDataStoresResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListDataStoresResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Response message for DataStoreService.ListDataStores method.
Instance Attribute Summary collapse
-
#data_stores ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DataStore>
All the customer's DataStores.
-
#next_page_token ⇒ String
A token that can be sent as ListDataStoresRequest.page_token to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ListDataStoresResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1ListDataStoresResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ListDataStoresResponse
Returns a new instance of GoogleCloudDiscoveryengineV1ListDataStoresResponse.
5327 5328 5329 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5327 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_stores ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DataStore>
All the customer's DataStores.
Corresponds to the JSON property dataStores
5319 5320 5321 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5319 def data_stores @data_stores end |
#next_page_token ⇒ String
A token that can be sent as ListDataStoresRequest.page_token to retrieve the
next page. If this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
5325 5326 5327 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5325 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5332 5333 5334 5335 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5332 def update!(**args) @data_stores = args[:data_stores] if args.key?(:data_stores) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |