class Azure::ServiceFabric::V6_4_0_36::Models::RemoteReplicatorAcknowledgementStatus

Provides details about the remote replicators from the primary replicator's point of view.

Attributes

copy_stream_acknowledgement_detail[RW]

@return [RemoteReplicatorAcknowledgementDetail] Details about the acknowledgements for operations that are part of the copy stream data.

replication_stream_acknowledgement_detail[RW]

@return [RemoteReplicatorAcknowledgementDetail] Details about the acknowledgements for operations that are part of the replication stream data.

Public Class Methods

mapper() click to toggle source

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

# File lib/6.4.0.36/generated/azure_service_fabric/models/remote_replicator_acknowledgement_status.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RemoteReplicatorAcknowledgementStatus',
    type: {
      name: 'Composite',
      class_name: 'RemoteReplicatorAcknowledgementStatus',
      model_properties: {
        replication_stream_acknowledgement_detail: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ReplicationStreamAcknowledgementDetail',
          type: {
            name: 'Composite',
            class_name: 'RemoteReplicatorAcknowledgementDetail'
          }
        },
        copy_stream_acknowledgement_detail: {
          client_side_validation: true,
          required: false,
          serialized_name: 'CopyStreamAcknowledgementDetail',
          type: {
            name: 'Composite',
            class_name: 'RemoteReplicatorAcknowledgementDetail'
          }
        }
      }
    }
  }
end