class Azure::ServiceFabric::V6_2_0_9::Models::KeyValueStoreReplicaStatus
Key value store related information for the replica.
Attributes
Kind[RW]
copy_notification_current_key_filter[RW]
@return [String] Value indicating the latest key-prefix filter applied to enumeration during the callback. Null if there is no pending callback.
copy_notification_current_progress[RW]
@return [String] Value indicating the latest number of keys enumerated during the callback. 0 if there is no pending callback.
database_logical_size_estimate[RW]
@return [String] Value indicating the estimated size of the underlying database.
database_row_count_estimate[RW]
@return [String] Value indicating the estimated number of rows in the underlying database.
status_details[RW]
@return [String] Value indicating the current status details of the replica.
Public Class Methods
mapper()
click to toggle source
Mapper for KeyValueStoreReplicaStatus
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.2.0.9/generated/azure_service_fabric/models/key_value_store_replica_status.rb, line 48 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'KeyValueStore', type: { name: 'Composite', class_name: 'KeyValueStoreReplicaStatus', model_properties: { Kind: { client_side_validation: true, required: true, serialized_name: 'Kind', type: { name: 'String' } }, database_row_count_estimate: { client_side_validation: true, required: false, serialized_name: 'DatabaseRowCountEstimate', type: { name: 'String' } }, database_logical_size_estimate: { client_side_validation: true, required: false, serialized_name: 'DatabaseLogicalSizeEstimate', type: { name: 'String' } }, copy_notification_current_key_filter: { client_side_validation: true, required: false, serialized_name: 'CopyNotificationCurrentKeyFilter', type: { name: 'String' } }, copy_notification_current_progress: { client_side_validation: true, required: false, serialized_name: 'CopyNotificationCurrentProgress', type: { name: 'String' } }, status_details: { client_side_validation: true, required: false, serialized_name: 'StatusDetails', type: { name: 'String' } } } } } end
new()
click to toggle source
# File lib/6.2.0.9/generated/azure_service_fabric/models/key_value_store_replica_status.rb, line 16 def initialize @Kind = "KeyValueStore" end