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.
2953 2954 2955 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2953 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backup ⇒ Google::Apis::MigrationcenterV1alpha1::DatabasePreferencesCloudSqlCommonBackup
Preferences for database backups.
Corresponds to the JSON property backup
2918 2919 2920 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2918 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
2924 2925 2926 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2924 def commitment_plan @commitment_plan end |
#edition ⇒ String
Optional. Preferred Cloud SQL edition.
Corresponds to the JSON property edition
2929 2930 2931 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2929 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
2937 2938 2939 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2937 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
2946 2947 2948 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2946 def sizing_optimization_strategy @sizing_optimization_strategy end |
#zone_availability ⇒ String
Optional. Preferred zone availability.
Corresponds to the JSON property zoneAvailability
2951 2952 2953 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2951 def zone_availability @zone_availability end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2958 2959 2960 2961 2962 2963 2964 2965 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2958 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 |