Class: Google::Apis::SqladminV1::SqlServerDatabaseDetails
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1::SqlServerDatabaseDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sqladmin_v1/classes.rb,
lib/google/apis/sqladmin_v1/representations.rb,
lib/google/apis/sqladmin_v1/representations.rb
Overview
Represents a Sql Server database on the Cloud SQL instance.
Instance Attribute Summary collapse
-
#compatibility_level ⇒ Fixnum
The version of SQL Server with which the database is to be made compatible Corresponds to the JSON property
compatibilityLevel
. -
#recovery_model ⇒ String
The recovery model of a SQL Server database Corresponds to the JSON property
recoveryModel
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlServerDatabaseDetails
constructor
A new instance of SqlServerDatabaseDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlServerDatabaseDetails
Returns a new instance of SqlServerDatabaseDetails.
4452 4453 4454 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4452 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compatibility_level ⇒ Fixnum
The version of SQL Server with which the database is to be made compatible
Corresponds to the JSON property compatibilityLevel
4445 4446 4447 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4445 def compatibility_level @compatibility_level end |
#recovery_model ⇒ String
The recovery model of a SQL Server database
Corresponds to the JSON property recoveryModel
4450 4451 4452 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4450 def recovery_model @recovery_model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4457 4458 4459 4460 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4457 def update!(**args) @compatibility_level = args[:compatibility_level] if args.key?(:compatibility_level) @recovery_model = args[:recovery_model] if args.key?(:recovery_model) end |