Class: Google::Cloud::OracleDatabase::V1::DbSystemOptions

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/oracledatabase/v1/db_system.rb

Overview

Details of the DbSystem Options.

Defined Under Namespace

Modules: StorageManagement

Instance Attribute Summary collapse

Instance Attribute Details

#storage_management::Google::Cloud::OracleDatabase::V1::DbSystemOptions::StorageManagement

Returns Optional. The storage option used in DB system.

Returns:



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# File 'proto_docs/google/cloud/oracledatabase/v1/db_system.rb', line 242

class DbSystemOptions
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The storage option used in DB system.
  module StorageManagement
    # The storage management is unspecified.
    STORAGE_MANAGEMENT_UNSPECIFIED = 0

    # Automatic storage management. This option is not supported. Only LVM is
    # supported.
    ASM = 1

    # Logical Volume management.
    LVM = 2
  end
end