Class: Google::Apis::OracledatabaseV1::DbSystemInitialStorageSizeProperties
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::DbSystemInitialStorageSizeProperties
- 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 properties of a DbSystem initial storage size summary.
Instance Attribute Summary collapse
-
#launch_from_backup_storage_size_details ⇒ Array<Google::Apis::OracledatabaseV1::StorageSizeDetails>
Output only.
-
#shape_type ⇒ String
Output only.
-
#storage_management ⇒ String
Output only.
-
#storage_size_details ⇒ Array<Google::Apis::OracledatabaseV1::StorageSizeDetails>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DbSystemInitialStorageSizeProperties
constructor
A new instance of DbSystemInitialStorageSizeProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DbSystemInitialStorageSizeProperties
Returns a new instance of DbSystemInitialStorageSizeProperties.
2724 2725 2726 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2724 def initialize(**args) update!(**args) end |
Instance Attribute Details
#launch_from_backup_storage_size_details ⇒ Array<Google::Apis::OracledatabaseV1::StorageSizeDetails>
Output only. List of storage disk details available for launches from backup.
Corresponds to the JSON property launchFromBackupStorageSizeDetails
2707 2708 2709 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2707 def launch_from_backup_storage_size_details @launch_from_backup_storage_size_details end |
#shape_type ⇒ String
Output only. VM shape platform type
Corresponds to the JSON property shapeType
2712 2713 2714 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2712 def shape_type @shape_type end |
#storage_management ⇒ String
Output only. The storage option used in DB system.
Corresponds to the JSON property storageManagement
2717 2718 2719 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2717 def storage_management @storage_management end |
#storage_size_details ⇒ Array<Google::Apis::OracledatabaseV1::StorageSizeDetails>
Output only. List of storage disk details.
Corresponds to the JSON property storageSizeDetails
2722 2723 2724 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2722 def storage_size_details @storage_size_details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2729 2730 2731 2732 2733 2734 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2729 def update!(**args) @launch_from_backup_storage_size_details = args[:launch_from_backup_storage_size_details] if args.key?(:launch_from_backup_storage_size_details) @shape_type = args[:shape_type] if args.key?(:shape_type) @storage_management = args[:storage_management] if args.key?(:storage_management) @storage_size_details = args[:storage_size_details] if args.key?(:storage_size_details) end |