Class: Google::Apis::OracledatabaseV1::ConfigureExascaleCloudExadataInfrastructureRequest
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::ConfigureExascaleCloudExadataInfrastructureRequest
- 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 request for CloudExadataInfrastructure.ConfigureExascale.
Instance Attribute Summary collapse
-
#request_id ⇒ String
Optional.
-
#total_storage_size_gb ⇒ Fixnum
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConfigureExascaleCloudExadataInfrastructureRequest
constructor
A new instance of ConfigureExascaleCloudExadataInfrastructureRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConfigureExascaleCloudExadataInfrastructureRequest
Returns a new instance of ConfigureExascaleCloudExadataInfrastructureRequest.
1895 1896 1897 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1895 def initialize(**args) update!(**args) end |
Instance Attribute Details
#request_id ⇒ String
Optional. An optional ID to identify the request.
Corresponds to the JSON property requestId
1888 1889 1890 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1888 def request_id @request_id end |
#total_storage_size_gb ⇒ Fixnum
Required. The total storage to be allocated to Exascale in GBs.
Corresponds to the JSON property totalStorageSizeGb
1893 1894 1895 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1893 def total_storage_size_gb @total_storage_size_gb end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1900 1901 1902 1903 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1900 def update!(**args) @request_id = args[:request_id] if args.key?(:request_id) @total_storage_size_gb = args[:total_storage_size_gb] if args.key?(:total_storage_size_gb) end |