class Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::InboundReplicationNeighbor

The replication summary for the domain controller inbound neighbor.

Attributes

additional_info[RW]

@return [String] The additional details.

consecutive_failure_count[RW]

@return [Integer] The number of consecutive failure counts.

error_description[RW]

@return [String] The error description.

error_title[RW]

@return [String] The error title.

fix_details[RW]

@return [String] The details of the fix.

last_attempted_sync[RW]

@return [DateTime] The last time a sync was attempted on the domain controller.

last_error_code[RW]

@return [Integer] The last error code.

last_error_message[RW]

@return [String] The error message of the last error.

last_successful_sync[RW]

@return [DateTime] The last time when a successful sync happened.

naming_context[RW]

@return [String] The naming context.

source_domain_controller[RW]

@return [String] The name of the source domain controller.

status[RW]

@return [Integer] The health status for the domain controller

Private Class Methods

mapper() click to toggle source

Mapper for InboundReplicationNeighbor class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/inbound_replication_neighbor.rb, line 60
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'InboundReplicationNeighbor',
    type: {
      name: 'Composite',
      class_name: 'InboundReplicationNeighbor',
      model_properties: {
        source_domain_controller: {
          client_side_validation: true,
          required: false,
          serialized_name: 'sourceDomainController',
          type: {
            name: 'String'
          }
        },
        consecutive_failure_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'consecutiveFailureCount',
          type: {
            name: 'Number'
          }
        },
        naming_context: {
          client_side_validation: true,
          required: false,
          serialized_name: 'namingContext',
          type: {
            name: 'String'
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'status',
          type: {
            name: 'Number'
          }
        },
        last_attempted_sync: {
          client_side_validation: true,
          required: false,
          serialized_name: 'lastAttemptedSync',
          type: {
            name: 'DateTime'
          }
        },
        last_successful_sync: {
          client_side_validation: true,
          required: false,
          serialized_name: 'lastSuccessfulSync',
          type: {
            name: 'DateTime'
          }
        },
        last_error_code: {
          client_side_validation: true,
          required: false,
          serialized_name: 'lastErrorCode',
          type: {
            name: 'Number'
          }
        },
        last_error_message: {
          client_side_validation: true,
          required: false,
          serialized_name: 'lastErrorMessage',
          type: {
            name: 'String'
          }
        },
        error_title: {
          client_side_validation: true,
          required: false,
          serialized_name: 'errorTitle',
          type: {
            name: 'String'
          }
        },
        error_description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'errorDescription',
          type: {
            name: 'String'
          }
        },
        fix_link: {
          client_side_validation: true,
          required: false,
          serialized_name: 'fixLink',
          type: {
            name: 'String'
          }
        },
        fix_details: {
          client_side_validation: true,
          required: false,
          serialized_name: 'fixDetails',
          type: {
            name: 'String'
          }
        },
        additional_info: {
          client_side_validation: true,
          required: false,
          serialized_name: 'additionalInfo',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end