Class: Google::Apis::SqladminV1::SqlServerDatabaseDetails

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SqlServerDatabaseDetails

Returns a new instance of SqlServerDatabaseDetails.



3226
3227
3228
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3226

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#compatibility_levelFixnum

The version of SQL Server with which the database is to be made compatible Corresponds to the JSON property compatibilityLevel

Returns:

  • (Fixnum)


3219
3220
3221
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3219

def compatibility_level
  @compatibility_level
end

#recovery_modelString

The recovery model of a SQL Server database Corresponds to the JSON property recoveryModel

Returns:

  • (String)


3224
3225
3226
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3224

def recovery_model
  @recovery_model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3231
3232
3233
3234
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3231

def update!(**args)
  @compatibility_level = args[:compatibility_level] if args.key?(:compatibility_level)
  @recovery_model = args[:recovery_model] if args.key?(:recovery_model)
end