Class: Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::ReplicationStatus
- Inherits:
-
Object
- Object
- Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::ReplicationStatus
- Includes:
- MsRestAzure
- Defined in:
- lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/replication_status.rb
Overview
Replication summary for a domain controller.
Instance Attribute Summary collapse
-
#error_dc_count ⇒ Integer
a given forest.
-
#forest_name ⇒ String
The forest name.
-
#total_dc_count ⇒ Integer
forest.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ReplicationStatus class as Ruby Hash.
Instance Attribute Details
#error_dc_count ⇒ Integer
a given forest.
24 25 26 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/replication_status.rb', line 24 def error_dc_count @error_dc_count end |
#forest_name ⇒ String
Returns The forest name.
16 17 18 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/replication_status.rb', line 16 def forest_name @forest_name end |
#total_dc_count ⇒ Integer
forest.
20 21 22 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/replication_status.rb', line 20 def total_dc_count @total_dc_count end |
Class Method Details
.mapper ⇒ Object
Mapper for ReplicationStatus class as Ruby Hash. This will be used for serialization/deserialization.
31 32 33 34 35 36 37 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 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/replication_status.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ReplicationStatus', type: { name: 'Composite', class_name: 'ReplicationStatus', model_properties: { forest_name: { client_side_validation: true, required: false, serialized_name: 'forestName', type: { name: 'String' } }, total_dc_count: { client_side_validation: true, required: false, serialized_name: 'totalDcCount', type: { name: 'Number' } }, error_dc_count: { client_side_validation: true, required: false, serialized_name: 'errorDcCount', type: { name: 'Number' } } } } } end |