Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListServingConfigsResponse

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaListServingConfigsResponse

Returns a new instance of GoogleCloudDiscoveryengineV1alphaListServingConfigsResponse.



7827
7828
7829
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7827

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

Instance Attribute Details

#next_page_tokenString

Pagination token, if not returned indicates the last page. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


7820
7821
7822
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7820

def next_page_token
  @next_page_token
end

#serving_configsArray<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaServingConfig>

All the ServingConfigs for a given dataStore. Corresponds to the JSON property servingConfigs



7825
7826
7827
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7825

def serving_configs
  @serving_configs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7832
7833
7834
7835
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7832

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