Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListServingConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListServingConfigsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
Response for ListServingConfigs method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Pagination token, if not returned indicates the last page.
-
#serving_configs ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaServingConfig>
All the ServingConfigs for a given dataStore.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaListServingConfigsResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaListServingConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaListServingConfigsResponse
Returns a new instance of GoogleCloudDiscoveryengineV1alphaListServingConfigsResponse.
12344 12345 12346 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 12344 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Pagination token, if not returned indicates the last page.
Corresponds to the JSON property nextPageToken
12337 12338 12339 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 12337 def next_page_token @next_page_token end |
#serving_configs ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaServingConfig>
All the ServingConfigs for a given dataStore.
Corresponds to the JSON property servingConfigs
12342 12343 12344 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 12342 def serving_configs @serving_configs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12349 12350 12351 12352 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 12349 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @serving_configs = args[:serving_configs] if args.key?(:serving_configs) end |