Class: Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::ReplicationStatus

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#error_dc_countInteger

a given forest.

Returns:

  • (Integer)

    The total number of domain controllers with error in



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_nameString

Returns The forest name.

Returns:

  • (String)

    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_countInteger

forest.

Returns:

  • (Integer)

    The total number of domain controllers for a given



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

.mapperObject

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