Class: Google::Apis::SqladminV1beta4::SqlServerDatabaseDetails
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SqladminV1beta4::SqlServerDatabaseDetails
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/sqladmin_v1beta4/classes.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb,
lib/google/apis/sqladmin_v1beta4/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.
      4273 4274 4275  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4273 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
      4266 4267 4268  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4266 def compatibility_level @compatibility_level end  | 
  
#recovery_model ⇒ String
The recovery model of a SQL Server database
Corresponds to the JSON property recoveryModel
      4271 4272 4273  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4271 def recovery_model @recovery_model end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4278 4279 4280 4281  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4278 def update!(**args) @compatibility_level = args[:compatibility_level] if args.key?(:compatibility_level) @recovery_model = args[:recovery_model] if args.key?(:recovery_model) end  |