Class: Google::Apis::OracledatabaseV1::ExascaleConfig

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

Details of the Exascale configuration for the Exadata Infrastructure.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExascaleConfig

Returns a new instance of ExascaleConfig.



3598
3599
3600
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3598

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

Instance Attribute Details

#available_storage_size_gbFixnum

Output only. Available storage size for Exascale in GBs. Corresponds to the JSON property availableStorageSizeGb

Returns:

  • (Fixnum)


3591
3592
3593
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3591

def available_storage_size_gb
  @available_storage_size_gb
end

#total_storage_size_gbFixnum

Output only. Total storage size needed for Exascale in GBs. Corresponds to the JSON property totalStorageSizeGb

Returns:

  • (Fixnum)


3596
3597
3598
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3596

def total_storage_size_gb
  @total_storage_size_gb
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3603
3604
3605
3606
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3603

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