Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::MigrateSyncCompleteCommandInput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::MigrateSyncCompleteCommandInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/migrate_sync_complete_command_input.rb
Overview
Input for command that completes sync migration for a database.
Instance Attribute Summary collapse
-
#commit_time_stamp ⇒ DateTime
Time stamp to complete.
-
#database_name ⇒ String
Name of database.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MigrateSyncCompleteCommandInput class as Ruby Hash.
Instance Attribute Details
#commit_time_stamp ⇒ DateTime
Returns Time stamp to complete.
19 20 21 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/migrate_sync_complete_command_input.rb', line 19 def commit_time_stamp @commit_time_stamp end |
#database_name ⇒ String
Returns Name of database.
16 17 18 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/migrate_sync_complete_command_input.rb', line 16 def database_name @database_name end |
Class Method Details
.mapper ⇒ Object
Mapper for MigrateSyncCompleteCommandInput class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/migrate_sync_complete_command_input.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MigrateSyncCompleteCommandInput', type: { name: 'Composite', class_name: 'MigrateSyncCompleteCommandInput', model_properties: { database_name: { client_side_validation: true, required: true, serialized_name: 'databaseName', type: { name: 'String' } }, commit_time_stamp: { client_side_validation: true, required: false, serialized_name: 'commitTimeStamp', type: { name: 'DateTime' } } } } } end |