Class: Google::Apis::OracledatabaseV1::ListCloudVmClustersResponse
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::ListCloudVmClustersResponse
- 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 CloudVmCluster.List
.
Instance Attribute Summary collapse
-
#cloud_vm_clusters ⇒ Array<Google::Apis::OracledatabaseV1::CloudVmCluster>
The list of VM Clusters.
-
#next_page_token ⇒ String
A token to fetch the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCloudVmClustersResponse
constructor
A new instance of ListCloudVmClustersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCloudVmClustersResponse
Returns a new instance of ListCloudVmClustersResponse.
2276 2277 2278 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2276 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cloud_vm_clusters ⇒ Array<Google::Apis::OracledatabaseV1::CloudVmCluster>
The list of VM Clusters.
Corresponds to the JSON property cloudVmClusters
2269 2270 2271 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2269 def cloud_vm_clusters @cloud_vm_clusters end |
#next_page_token ⇒ String
A token to fetch the next page of results.
Corresponds to the JSON property nextPageToken
2274 2275 2276 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2274 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2281 2282 2283 2284 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2281 def update!(**args) @cloud_vm_clusters = args[:cloud_vm_clusters] if args.key?(:cloud_vm_clusters) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |