Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListDataStoresResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListDataStoresResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Response message for DataStoreService.ListDataStores method.
Instance Attribute Summary collapse
-
#data_stores ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaDataStore>
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) ⇒ GoogleCloudDiscoveryengineV1betaListDataStoresResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1betaListDataStoresResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListDataStoresResponse
Returns a new instance of GoogleCloudDiscoveryengineV1betaListDataStoresResponse.
16989 16990 16991 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 16989 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_stores ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaDataStore>
All the customer's DataStores.
Corresponds to the JSON property dataStores
16981 16982 16983 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 16981 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
16987 16988 16989 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 16987 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16994 16995 16996 16997 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 16994 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 |