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.
2638 2639 2640 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2638 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
2621 2622 2623 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2621 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
2626 2627 2628 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2626 def shape_type @shape_type end |
#storage_management ⇒ String
Output only. The storage option used in DB system.
Corresponds to the JSON property storageManagement
2631 2632 2633 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2631 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
2636 2637 2638 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2636 def storage_size_details @storage_size_details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2643 2644 2645 2646 2647 2648 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2643 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 |