Class: Google::Apis::OracledatabaseV1::DbSystemInitialStorageSizeProperties

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

The properties of a DbSystem initial storage size summary.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DbSystemInitialStorageSizeProperties

Returns a new instance of DbSystemInitialStorageSizeProperties.



2842
2843
2844
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2842

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

Instance Attribute Details

#launch_from_backup_storage_size_detailsArray<Google::Apis::OracledatabaseV1::StorageSizeDetails>

Output only. List of storage disk details available for launches from backup. Corresponds to the JSON property launchFromBackupStorageSizeDetails



2825
2826
2827
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2825

def launch_from_backup_storage_size_details
  @launch_from_backup_storage_size_details
end

#shape_typeString

Output only. VM shape platform type Corresponds to the JSON property shapeType

Returns:

  • (String)


2830
2831
2832
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2830

def shape_type
  @shape_type
end

#storage_managementString

Output only. The storage option used in DB system. Corresponds to the JSON property storageManagement

Returns:

  • (String)


2835
2836
2837
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2835

def storage_management
  @storage_management
end

#storage_size_detailsArray<Google::Apis::OracledatabaseV1::StorageSizeDetails>

Output only. List of storage disk details. Corresponds to the JSON property storageSizeDetails



2840
2841
2842
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2840

def storage_size_details
  @storage_size_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2847
2848
2849
2850
2851
2852
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2847

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