Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListEnginesResponse

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 message for EngineService.ListEngines method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaListEnginesResponse

Returns a new instance of GoogleCloudDiscoveryengineV1alphaListEnginesResponse.



4010
4011
4012
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4010

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

Instance Attribute Details

#enginesArray<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngine>

All the customer's Engines. Corresponds to the JSON property engines



4003
4004
4005
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4003

def engines
  @engines
end

#next_page_tokenString

Not supported. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


4008
4009
4010
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4008

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4015
4016
4017
4018
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4015

def update!(**args)
  @engines = args[:engines] if args.key?(:engines)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end