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.



4452
4453
4454
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4452

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)


4445
4446
4447
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4445

def compatibility_level
  @compatibility_level
end

#recovery_modelString

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

Returns:

  • (String)


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