Class: Azure::ServiceFabric::V6_3_0_9::Models::RemoteReplicatorAcknowledgementDetail

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

Overview

Provides various statistics of the acknowledgements that are being received from the remote replicator.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#average_apply_durationString

remote replicator to apply an operation. This usually entails writing the operation to disk.

Returns:

  • (String)

    Represents the average duration it takes for the



23
24
25
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/remote_replicator_acknowledgement_detail.rb', line 23

def average_apply_duration
  @average_apply_duration
end

#average_receive_durationString

remote replicator to receive an operation.

Returns:

  • (String)

    Represents the average duration it takes for the



18
19
20
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/remote_replicator_acknowledgement_detail.rb', line 18

def average_receive_duration
  @average_receive_duration
end

#not_received_countString

by a remote replicator.

Returns:

  • (String)

    Represents the number of operations not yet received



27
28
29
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/remote_replicator_acknowledgement_detail.rb', line 27

def not_received_count
  @not_received_count
end

#received_and_not_applied_countString

yet applied by a remote replicator.

Returns:

  • (String)

    Represents the number of operations received and not



31
32
33
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/remote_replicator_acknowledgement_detail.rb', line 31

def received_and_not_applied_count
  @received_and_not_applied_count
end

Class Method Details

.mapperObject

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



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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/remote_replicator_acknowledgement_detail.rb', line 38

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RemoteReplicatorAcknowledgementDetail',
    type: {
      name: 'Composite',
      class_name: 'RemoteReplicatorAcknowledgementDetail',
      model_properties: {
        average_receive_duration: {
          client_side_validation: true,
          required: false,
          serialized_name: 'AverageReceiveDuration',
          type: {
            name: 'String'
          }
        },
        average_apply_duration: {
          client_side_validation: true,
          required: false,
          serialized_name: 'AverageApplyDuration',
          type: {
            name: 'String'
          }
        },
        not_received_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'NotReceivedCount',
          type: {
            name: 'String'
          }
        },
        received_and_not_applied_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ReceivedAndNotAppliedCount',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end