Class: Google::Apis::MigrationcenterV1alpha1::DatabasePreferencesCloudSqlSqlServer

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb

Overview

Preferences for SQL Server on Cloud SQL.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DatabasePreferencesCloudSqlSqlServer

Returns a new instance of DatabasePreferencesCloudSqlSqlServer.



1953
1954
1955
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1953

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

Instance Attribute Details

#commonGoogle::Apis::MigrationcenterV1alpha1::DatabasePreferencesCloudSqlCommon

Preferences common to Cloud SQL databases. Corresponds to the JSON property common



1940
1941
1942
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1940

def common
  @common
end

#multithreadingString

Optional. Preferences for multithreading support. Corresponds to the JSON property multithreading

Returns:

  • (String)


1945
1946
1947
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1945

def multithreading
  @multithreading
end

#version_typeString

Optional. Edition of Microsoft SQL version that is used on a Cloud SQL for SQL server instance. Corresponds to the JSON property versionType

Returns:

  • (String)


1951
1952
1953
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1951

def version_type
  @version_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1958
1959
1960
1961
1962
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1958

def update!(**args)
  @common = args[:common] if args.key?(:common)
  @multithreading = args[:multithreading] if args.key?(:multithreading)
  @version_type = args[:version_type] if args.key?(:version_type)
end