Class: Azure::ServiceBus::Mgmt::V2017_04_01::Models::MigrationConfigProperties
- Inherits:
-
Resource
- Object
- Resource
- Azure::ServiceBus::Mgmt::V2017_04_01::Models::MigrationConfigProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-04-01/generated/azure_mgmt_service_bus/models/migration_config_properties.rb
Overview
Single item in List or Get Migration Config operation
Instance Attribute Summary collapse
-
#migration_state ⇒ String
possible values : Unknown, Reverting, Completing, Initiating, Syncing, Active.
-
#pending_replication_operations_count ⇒ Integer
Number of entities pending to be replicated.
-
#post_migration_name ⇒ String
Name to access Standard Namespace after migration.
-
#provisioning_state ⇒ String
Provisioning state of Migration Configuration.
-
#target_namespace ⇒ String
entities, will be used for migration.
Attributes inherited from Resource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MigrationConfigProperties class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#migration_state ⇒ String
possible values : Unknown, Reverting, Completing, Initiating, Syncing, Active
31 32 33 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/migration_config_properties.rb', line 31 def migration_state @migration_state end |
#pending_replication_operations_count ⇒ Integer
Returns Number of entities pending to be replicated.
19 20 21 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/migration_config_properties.rb', line 19 def pending_replication_operations_count @pending_replication_operations_count end |
#post_migration_name ⇒ String
Returns Name to access Standard Namespace after migration.
26 27 28 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/migration_config_properties.rb', line 26 def post_migration_name @post_migration_name end |
#provisioning_state ⇒ String
Returns Provisioning state of Migration Configuration.
16 17 18 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/migration_config_properties.rb', line 16 def provisioning_state @provisioning_state end |
#target_namespace ⇒ String
entities, will be used for migration
23 24 25 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/migration_config_properties.rb', line 23 def target_namespace @target_namespace end |
Class Method Details
.mapper ⇒ Object
Mapper for MigrationConfigProperties class as Ruby Hash. This will be used for serialization/deserialization.
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/migration_config_properties.rb', line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MigrationConfigProperties', type: { name: 'Composite', class_name: 'MigrationConfigProperties', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, pending_replication_operations_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.pendingReplicationOperationsCount', type: { name: 'Number' } }, target_namespace: { client_side_validation: true, required: false, serialized_name: 'properties.targetNamespace', type: { name: 'String' } }, post_migration_name: { client_side_validation: true, required: false, serialized_name: 'properties.postMigrationName', type: { name: 'String' } }, migration_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.migrationState', type: { name: 'String' } } } } } end |