class Google::Apis::SqladminV1beta4::Settings

Database instance settings.

Attributes

activation_policy[RW]

The activation policy for this instance. This specifies when the instance should be activated and is applicable only when the instance state is RUNNABLE. This can be one of the following. ALWAYS: The instance should always be active. NEVER: The instance should never be activated. ON_DEMAND: The instance is activated upon receiving requests; only applicable to First Generation instances. Corresponds to the JSON property `activationPolicy` @return [String]

authorized_gae_applications[RW]

The App Engine app IDs that can access this instance. This property is only applicable to First Generation instances. Corresponds to the JSON property `authorizedGaeApplications` @return [Array<String>]

backup_configuration[RW]

Database instance backup configuration. Corresponds to the JSON property `backupConfiguration` @return [Google::Apis::SqladminV1beta4::BackupConfiguration]

crash_safe_replication_enabled[RW]

Configuration specific to read replica instances. Indicates whether database flags for crash-safe replication are enabled. This property is only applicable to First Generation instances. Corresponds to the JSON property `crashSafeReplicationEnabled` @return [Boolean]

crash_safe_replication_enabled?[RW]

Configuration specific to read replica instances. Indicates whether database flags for crash-safe replication are enabled. This property is only applicable to First Generation instances. Corresponds to the JSON property `crashSafeReplicationEnabled` @return [Boolean]

data_disk_size_gb[RW]

The size of data disk, in GB. The data disk size minimum is 10GB. This property is only applicable to Second Generation instances. Corresponds to the JSON property `dataDiskSizeGb` @return [String]

data_disk_type[RW]

The type of data disk. Only supported for Second Generation instances. The default type is PD_SSD. This property is only applicable to Second Generation instances. Corresponds to the JSON property `dataDiskType` @return [String]

database_flags[RW]

The database flags passed to the instance at startup. Corresponds to the JSON property `databaseFlags` @return [Array<Google::Apis::SqladminV1beta4::DatabaseFlags>]

database_replication_enabled[RW]

Configuration specific to read replica instances. Indicates whether replication is enabled or not. Corresponds to the JSON property `databaseReplicationEnabled` @return [Boolean]

database_replication_enabled?[RW]

Configuration specific to read replica instances. Indicates whether replication is enabled or not. Corresponds to the JSON property `databaseReplicationEnabled` @return [Boolean]

ip_configuration[RW]

IP Management configuration. Corresponds to the JSON property `ipConfiguration` @return [Google::Apis::SqladminV1beta4::IpConfiguration]

kind[RW]

This is always sql#settings. Corresponds to the JSON property `kind` @return [String]

location_preference[RW]

Preferred location. This specifies where a Cloud SQL instance should preferably be located, either in a specific Compute Engine zone, or co-located with an App Engine application. Note that if the preferred location is not available, the instance will be located as close as possible within the region. Only one location may be specified. Corresponds to the JSON property `locationPreference` @return [Google::Apis::SqladminV1beta4::LocationPreference]

maintenance_window[RW]

Maintenance window. This specifies when a v2 Cloud SQL instance should preferably be restarted for system maintenance puruposes. Corresponds to the JSON property `maintenanceWindow` @return [Google::Apis::SqladminV1beta4::MaintenanceWindow]

pricing_plan[RW]

The pricing plan for this instance. This can be either PER_USE or PACKAGE. Only PER_USE is supported for Second Generation instances. Corresponds to the JSON property `pricingPlan` @return [String]

replication_type[RW]

The type of replication this instance uses. This can be either ASYNCHRONOUS or SYNCHRONOUS. This property is only applicable to First Generation instances. Corresponds to the JSON property `replicationType` @return [String]

settings_version[RW]

The version of instance settings. This is a required field for update method to make sure concurrent updates are handled properly. During update, use the most recent settingsVersion value for this instance and do not try to update this value. Corresponds to the JSON property `settingsVersion` @return [String]

tier[RW]

The tier of service for this instance, for example D1, D2. For more information, see pricing. Corresponds to the JSON property `tier` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/sqladmin_v1beta4/classes.rb, line 1650
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/sqladmin_v1beta4/classes.rb, line 1655
def update!(**args)
  @activation_policy = args[:activation_policy] if args.key?(:activation_policy)
  @authorized_gae_applications = args[:authorized_gae_applications] if args.key?(:authorized_gae_applications)
  @backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
  @crash_safe_replication_enabled = args[:crash_safe_replication_enabled] if args.key?(:crash_safe_replication_enabled)
  @data_disk_size_gb = args[:data_disk_size_gb] if args.key?(:data_disk_size_gb)
  @data_disk_type = args[:data_disk_type] if args.key?(:data_disk_type)
  @database_flags = args[:database_flags] if args.key?(:database_flags)
  @database_replication_enabled = args[:database_replication_enabled] if args.key?(:database_replication_enabled)
  @ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
  @kind = args[:kind] if args.key?(:kind)
  @location_preference = args[:location_preference] if args.key?(:location_preference)
  @maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
  @pricing_plan = args[:pricing_plan] if args.key?(:pricing_plan)
  @replication_type = args[:replication_type] if args.key?(:replication_type)
  @settings_version = args[:settings_version] if args.key?(:settings_version)
  @tier = args[:tier] if args.key?(:tier)
end