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.
3545 3546 3547 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3545 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
3538 3539 3540 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3538 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
3543 3544 3545 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3543 def total_storage_size_gb @total_storage_size_gb end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3550 3551 3552 3553 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3550 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 |