Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListEnginesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb

Overview

Response message for EngineService.ListEngines method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ListEnginesResponse

Returns a new instance of GoogleCloudDiscoveryengineV1ListEnginesResponse.



2904
2905
2906
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2904

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

Instance Attribute Details

#enginesArray<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Engine>

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



2897
2898
2899
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2897

def engines
  @engines
end

#next_page_tokenString

Not supported. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2902
2903
2904
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2902

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2909
2910
2911
2912
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2909

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