Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListEnginesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListEnginesResponse
- 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
-
#engines ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Engine>
All the customer's Engines.
-
#next_page_token ⇒ String
Not supported.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ListEnginesResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1ListEnginesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ListEnginesResponse
Returns a new instance of GoogleCloudDiscoveryengineV1ListEnginesResponse.
5930 5931 5932 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5930 def initialize(**args) update!(**args) end |
Instance Attribute Details
#engines ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Engine>
All the customer's Engines.
Corresponds to the JSON property engines
5923 5924 5925 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5923 def engines @engines end |
#next_page_token ⇒ String
Not supported.
Corresponds to the JSON property nextPageToken
5928 5929 5930 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5928 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5935 5936 5937 5938 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5935 def update!(**args) @engines = args[:engines] if args.key?(:engines) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |