Class: Google::Apis::OracledatabaseV1::ExascaleConfig
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::ExascaleConfig
- 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
Details of the Exascale configuration for the Exadata Infrastructure.
Instance Attribute Summary collapse
-
#available_storage_size_gb ⇒ Fixnum
Output only.
-
#total_storage_size_gb ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExascaleConfig
constructor
A new instance of ExascaleConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExascaleConfig
Returns a new instance of ExascaleConfig.
3629 3630 3631 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3629 def initialize(**args) update!(**args) end |
Instance Attribute Details
#available_storage_size_gb ⇒ Fixnum
Output only. Available storage size for Exascale in GBs.
Corresponds to the JSON property availableStorageSizeGb
3622 3623 3624 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3622 def available_storage_size_gb @available_storage_size_gb end |
#total_storage_size_gb ⇒ Fixnum
Output only. Total storage size needed for Exascale in GBs.
Corresponds to the JSON property totalStorageSizeGb
3627 3628 3629 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3627 def total_storage_size_gb @total_storage_size_gb end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3634 3635 3636 3637 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3634 def update!(**args) @available_storage_size_gb = args[:available_storage_size_gb] if args.key?(:available_storage_size_gb) @total_storage_size_gb = args[:total_storage_size_gb] if args.key?(:total_storage_size_gb) end |