Class: Google::Apis::OracledatabaseV1::ListCloudExadataInfrastructuresResponse
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::ListCloudExadataInfrastructuresResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/oracledatabase_v1/classes.rb,
lib/google/apis/oracledatabase_v1/representations.rb,
lib/google/apis/oracledatabase_v1/representations.rb
Overview
The response for CloudExadataInfrastructures.list
.
Instance Attribute Summary collapse
-
#cloud_exadata_infrastructures ⇒ Array<Google::Apis::OracledatabaseV1::CloudExadataInfrastructure>
The list of Exadata Infrastructures.
-
#next_page_token ⇒ String
A token for fetching next page of response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCloudExadataInfrastructuresResponse
constructor
A new instance of ListCloudExadataInfrastructuresResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCloudExadataInfrastructuresResponse
Returns a new instance of ListCloudExadataInfrastructuresResponse.
2251 2252 2253 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2251 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cloud_exadata_infrastructures ⇒ Array<Google::Apis::OracledatabaseV1::CloudExadataInfrastructure>
The list of Exadata Infrastructures.
Corresponds to the JSON property cloudExadataInfrastructures
2244 2245 2246 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2244 def cloud_exadata_infrastructures @cloud_exadata_infrastructures end |
#next_page_token ⇒ String
A token for fetching next page of response.
Corresponds to the JSON property nextPageToken
2249 2250 2251 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2249 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2256 2257 2258 2259 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2256 def update!(**args) @cloud_exadata_infrastructures = args[:cloud_exadata_infrastructures] if args.key?(:cloud_exadata_infrastructures) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |