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.
2769 2770 2771 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2769 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
2752 2753 2754 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2752 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
2757 2758 2759 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2757 def shape_type @shape_type end |
#storage_management ⇒ String
Output only. The storage option used in DB system.
Corresponds to the JSON property storageManagement
2762 2763 2764 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2762 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
2767 2768 2769 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2767 def storage_size_details @storage_size_details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2774 2775 2776 2777 2778 2779 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2774 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 |