Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListEnginesResponse

Inherits:
Object
  • Object
show all
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 EngineService.ListEngines method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListEnginesResponse

Returns a new instance of GoogleCloudDiscoveryengineV1betaListEnginesResponse.



5892
5893
5894
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5892

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

Instance Attribute Details

#enginesArray<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngine>

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



5885
5886
5887
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5885

def engines
  @engines
end

#next_page_tokenString

Not supported. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


5890
5891
5892
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5890

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5897
5898
5899
5900
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5897

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