class Google::Apis::SqladminV1::SqlServerDatabaseDetails
Represents a Sql Server database on the Cloud SQL instance.
Attributes
compatibility_level[RW]
The version of SQL Server with which the database is to be made compatible Corresponds to the JSON property `compatibilityLevel` @return [Fixnum]
recovery_model[RW]
The recovery model of a SQL Server database Corresponds to the JSON property `recoveryModel` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sqladmin_v1/classes.rb, line 3098 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/sqladmin_v1/classes.rb, line 3103 def update!(**args) @compatibility_level = args[:compatibility_level] if args.key?(:compatibility_level) @recovery_model = args[:recovery_model] if args.key?(:recovery_model) end