class Azure::ServiceFabric::V7_0_0_42::Models::RemoteReplicatorStatus

Represents the state of the secondary replicator from the primary replicator’s point of view.

Attributes

is_in_build[RW]

@return [Boolean] A value that indicates whether the secondary replica is in the process of being built.

last_acknowledgement_processed_time_utc[RW]

@return [DateTime] The last timestamp (in UTC) when an acknowledgement from the secondary replicator was processed on the primary. UTC 0 represents an invalid value, indicating that no acknowledgement messages were ever processed.

last_applied_copy_sequence_number[RW]

@return [String] The highest copy operation sequence number that the secondary has applied to its state. A value of -1 implies that the secondary has applied all copy operations and the copy process is complete.

last_applied_replication_sequence_number[RW]

@return [String] The highest replication operation sequence number that the secondary has applied to its state.

last_received_copy_sequence_number[RW]

@return [String] The highest copy operation sequence number that the secondary has received from the primary. A value of -1 implies that the secondary has received all copy operations.

last_received_replication_sequence_number[RW]

@return [String] The highest replication operation sequence number that the secondary has received from the primary.

remote_replicator_acknowledgement_status[RW]

@return [RemoteReplicatorAcknowledgementStatus] Represents the acknowledgment status for the remote secondary replicator.

replica_id[RW]

@return [String] Represents the replica ID of the remote secondary replicator.

Private Class Methods

mapper() click to toggle source

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

# File lib/7.0.0.42/generated/azure_service_fabric/models/remote_replicator_status.rb, line 59
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RemoteReplicatorStatus',
    type: {
      name: 'Composite',
      class_name: 'RemoteReplicatorStatus',
      model_properties: {
        replica_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ReplicaId',
          type: {
            name: 'String'
          }
        },
        last_acknowledgement_processed_time_utc: {
          client_side_validation: true,
          required: false,
          serialized_name: 'LastAcknowledgementProcessedTimeUtc',
          type: {
            name: 'DateTime'
          }
        },
        last_received_replication_sequence_number: {
          client_side_validation: true,
          required: false,
          serialized_name: 'LastReceivedReplicationSequenceNumber',
          type: {
            name: 'String'
          }
        },
        last_applied_replication_sequence_number: {
          client_side_validation: true,
          required: false,
          serialized_name: 'LastAppliedReplicationSequenceNumber',
          type: {
            name: 'String'
          }
        },
        is_in_build: {
          client_side_validation: true,
          required: false,
          serialized_name: 'IsInBuild',
          type: {
            name: 'Boolean'
          }
        },
        last_received_copy_sequence_number: {
          client_side_validation: true,
          required: false,
          serialized_name: 'LastReceivedCopySequenceNumber',
          type: {
            name: 'String'
          }
        },
        last_applied_copy_sequence_number: {
          client_side_validation: true,
          required: false,
          serialized_name: 'LastAppliedCopySequenceNumber',
          type: {
            name: 'String'
          }
        },
        remote_replicator_acknowledgement_status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'RemoteReplicatorAcknowledgementStatus',
          type: {
            name: 'Composite',
            class_name: 'RemoteReplicatorAcknowledgementStatus'
          }
        }
      }
    }
  }
end