Class: Google::Apis::OracledatabaseV1::ExascaleDbStorageDetails

Inherits:
Object
  • Object
show all
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 storage details of the ExascaleDbStorageVault.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExascaleDbStorageDetails

Returns a new instance of ExascaleDbStorageDetails.



3688
3689
3690
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3688

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#available_size_gbsFixnum

Output only. The available storage capacity for the ExascaleDbStorageVault, in gigabytes (GB). Corresponds to the JSON property availableSizeGbs

Returns:

  • (Fixnum)


3680
3681
3682
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3680

def available_size_gbs
  @available_size_gbs
end

#total_size_gbsFixnum

Required. The total storage allocation for the ExascaleDbStorageVault, in gigabytes (GB). Corresponds to the JSON property totalSizeGbs

Returns:

  • (Fixnum)


3686
3687
3688
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3686

def total_size_gbs
  @total_size_gbs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3693
3694
3695
3696
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3693

def update!(**args)
  @available_size_gbs = args[:available_size_gbs] if args.key?(:available_size_gbs)
  @total_size_gbs = args[:total_size_gbs] if args.key?(:total_size_gbs)
end