Class: Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::MongoDbFinishCommandInput
- Inherits:
-
MongoDbCommandInput
- Object
- MongoDbCommandInput
- Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::MongoDbFinishCommandInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/mongo_db_finish_command_input.rb
Overview
Describes the input to the ‘finish’ MongoDB migration command
Instance Attribute Summary collapse
-
#immediate ⇒ Boolean
stopped immediately.
Attributes inherited from MongoDbCommandInput
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MongoDbFinishCommandInput class as Ruby Hash.
Instance Attribute Details
#immediate ⇒ Boolean
stopped immediately. If false, the migrator will finish replaying queued events before finishing the replication.
18 19 20 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/mongo_db_finish_command_input.rb', line 18 def immediate @immediate end |
Class Method Details
.mapper ⇒ Object
Mapper for MongoDbFinishCommandInput class as Ruby Hash. This will be used for serialization/deserialization.
25 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 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/mongo_db_finish_command_input.rb', line 25 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MongoDbFinishCommandInput', type: { name: 'Composite', class_name: 'MongoDbFinishCommandInput', model_properties: { object_name: { client_side_validation: true, required: false, serialized_name: 'objectName', type: { name: 'String' } }, immediate: { client_side_validation: true, required: true, serialized_name: 'immediate', type: { name: 'Boolean' } } } } } end |