Class: Azure::ServiceFabric::V6_5_0_36::Models::RemoteReplicatorAcknowledgementDetail
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::V6_5_0_36::Models::RemoteReplicatorAcknowledgementDetail
- Includes:
- MsRestAzure
- Defined in:
- lib/6.5.0.36/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
-
#average_apply_duration ⇒ String
remote replicator to apply an operation.
-
#average_receive_duration ⇒ String
remote replicator to receive an operation.
-
#not_received_count ⇒ String
by a remote replicator.
-
#received_and_not_applied_count ⇒ String
yet applied by a remote replicator.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RemoteReplicatorAcknowledgementDetail class as Ruby Hash.
Instance Attribute Details
#average_apply_duration ⇒ String
remote replicator to apply an operation. This usually entails writing the operation to disk.
23 24 25 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/remote_replicator_acknowledgement_detail.rb', line 23 def average_apply_duration @average_apply_duration end |
#average_receive_duration ⇒ String
remote replicator to receive an operation.
18 19 20 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/remote_replicator_acknowledgement_detail.rb', line 18 def average_receive_duration @average_receive_duration end |
#not_received_count ⇒ String
by a remote replicator.
27 28 29 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/remote_replicator_acknowledgement_detail.rb', line 27 def not_received_count @not_received_count end |
#received_and_not_applied_count ⇒ String
yet applied by a remote replicator.
31 32 33 |
# File 'lib/6.5.0.36/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
.mapper ⇒ Object
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.5.0.36/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 |