Class: Azure::ServiceFabric::V6_5_0_36::Models::RemoteReplicatorAcknowledgementStatus

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.5.0.36/generated/azure_service_fabric/models/remote_replicator_acknowledgement_status.rb

Overview

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#copy_stream_acknowledgement_detailRemoteReplicatorAcknowledgementDetail

acknowledgements for operations that are part of the copy stream data.

Returns:



23
24
25
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/remote_replicator_acknowledgement_status.rb', line 23

def copy_stream_acknowledgement_detail
  @copy_stream_acknowledgement_detail
end

#replication_stream_acknowledgement_detailRemoteReplicatorAcknowledgementDetail

acknowledgements for operations that are part of the replication stream data.

Returns:



19
20
21
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/remote_replicator_acknowledgement_status.rb', line 19

def replication_stream_acknowledgement_detail
  @replication_stream_acknowledgement_detail
end

Class Method Details

.mapperObject

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



30
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
# File 'lib/6.5.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