Class: Google::Apis::MigrationcenterV1alpha1::DatabasePreferencesCloudSqlCommon
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::DatabasePreferencesCloudSqlCommon
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
Preferences common to Cloud SQL databases.
Instance Attribute Summary collapse
-
#backup ⇒ Google::Apis::MigrationcenterV1alpha1::DatabasePreferencesCloudSqlCommonBackup
Preferences for database backups.
-
#commitment_plan ⇒ String
Optional.
-
#edition ⇒ String
Optional.
-
#persistent_disk_type ⇒ String
Optional.
-
#sizing_optimization_strategy ⇒ String
Optional.
-
#zone_availability ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatabasePreferencesCloudSqlCommon
constructor
A new instance of DatabasePreferencesCloudSqlCommon.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DatabasePreferencesCloudSqlCommon
Returns a new instance of DatabasePreferencesCloudSqlCommon.
2828 2829 2830 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2828 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backup ⇒ Google::Apis::MigrationcenterV1alpha1::DatabasePreferencesCloudSqlCommonBackup
Preferences for database backups.
Corresponds to the JSON property backup
2793 2794 2795 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2793 def backup @backup end |
#commitment_plan ⇒ String
Optional. Commitment plan to consider when calculating costs. Only regular
CUDs (not flexible) are currently available.
Corresponds to the JSON property commitmentPlan
2799 2800 2801 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2799 def commitment_plan @commitment_plan end |
#edition ⇒ String
Optional. Preferred Cloud SQL edition.
Corresponds to the JSON property edition
2804 2805 2806 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2804 def edition @edition end |
#persistent_disk_type ⇒ String
Optional. Persistent disk type to use. If unspecified, a disk type is
recommended based on available usage data. For SQL Server, only SSD is
available. For MySQL and PostgreSQL, only STANDARD (HDD) and SSD types are
available.
Corresponds to the JSON property persistentDiskType
2812 2813 2814 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2812 def persistent_disk_type @persistent_disk_type end |
#sizing_optimization_strategy ⇒ String
Optional. Sizing optimization strategy of the database. Currently supported
for Cloud SQL are just two values: SIZING_OPTIMIZATION_STRATEGY_MODERATE and
SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE.
SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED will behave like
SIZING_OPTIMIZATION_STRATEGY_MODERATE.
Corresponds to the JSON property sizingOptimizationStrategy
2821 2822 2823 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2821 def sizing_optimization_strategy @sizing_optimization_strategy end |
#zone_availability ⇒ String
Optional. Preferred zone availability.
Corresponds to the JSON property zoneAvailability
2826 2827 2828 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2826 def zone_availability @zone_availability end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2833 2834 2835 2836 2837 2838 2839 2840 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2833 def update!(**args) @backup = args[:backup] if args.key?(:backup) @commitment_plan = args[:commitment_plan] if args.key?(:commitment_plan) @edition = args[:edition] if args.key?(:edition) @persistent_disk_type = args[:persistent_disk_type] if args.key?(:persistent_disk_type) @sizing_optimization_strategy = args[:sizing_optimization_strategy] if args.key?(:sizing_optimization_strategy) @zone_availability = args[:zone_availability] if args.key?(:zone_availability) end |