Class: Google::Apis::DatamigrationV1::SqlServerDatabaseBackup
- Inherits:
-
Object
- Object
- Google::Apis::DatamigrationV1::SqlServerDatabaseBackup
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datamigration_v1/classes.rb,
lib/google/apis/datamigration_v1/representations.rb,
lib/google/apis/datamigration_v1/representations.rb
Overview
Specifies the backup details for a single database in Cloud Storage for homogeneous migration to Cloud SQL for SQL Server.
Instance Attribute Summary collapse
-
#database ⇒ String
Required.
-
#encryption_options ⇒ Google::Apis::DatamigrationV1::SqlServerEncryptionOptions
Encryption settings for the SQL Server database.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlServerDatabaseBackup
constructor
A new instance of SqlServerDatabaseBackup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlServerDatabaseBackup
Returns a new instance of SqlServerDatabaseBackup.
5015 5016 5017 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 5015 def initialize(**args) update!(**args) end |
Instance Attribute Details
#database ⇒ String
Required. Name of a SQL Server database for which to define backup
configuration.
Corresponds to the JSON property database
5008 5009 5010 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 5008 def database @database end |
#encryption_options ⇒ Google::Apis::DatamigrationV1::SqlServerEncryptionOptions
Encryption settings for the SQL Server database.
Corresponds to the JSON property encryptionOptions
5013 5014 5015 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 5013 def @encryption_options end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5020 5021 5022 5023 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 5020 def update!(**args) @database = args[:database] if args.key?(:database) @encryption_options = args[:encryption_options] if args.key?(:encryption_options) end |