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.



3367
3368
3369
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3367

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)


3359
3360
3361
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3359

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)


3365
3366
3367
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3365

def total_size_gbs
  @total_size_gbs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3372
3373
3374
3375
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3372

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