Class: Azure::ServiceFabric::V6_3_0_9::Models::KeyValueStoreReplicaStatus
- Inherits:
-
ReplicaStatusBase
- Object
- ReplicaStatusBase
- Azure::ServiceFabric::V6_3_0_9::Models::KeyValueStoreReplicaStatus
- Includes:
- MsRestAzure
- Defined in:
- lib/6.3.0.9/generated/azure_service_fabric/models/key_value_store_replica_status.rb
Overview
Key value store related information for the replica.
Instance Attribute Summary collapse
-
#copy_notification_current_key_filter ⇒ String
to enumeration during the callback.
-
#copy_notification_current_progress ⇒ String
during the callback.
-
#database_logical_size_estimate ⇒ String
database.
-
#database_row_count_estimate ⇒ String
underlying database.
-
#Kind ⇒ Object
Returns the value of attribute Kind.
-
#status_details ⇒ String
replica.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for KeyValueStoreReplicaStatus class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ KeyValueStoreReplicaStatus
constructor
A new instance of KeyValueStoreReplicaStatus.
Constructor Details
#initialize ⇒ KeyValueStoreReplicaStatus
Returns a new instance of KeyValueStoreReplicaStatus.
16 17 18 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/key_value_store_replica_status.rb', line 16 def initialize @Kind = "KeyValueStore" end |
Instance Attribute Details
#copy_notification_current_key_filter ⇒ String
to enumeration during the callback. Null if there is no pending callback.
33 34 35 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/key_value_store_replica_status.rb', line 33 def copy_notification_current_key_filter @copy_notification_current_key_filter end |
#copy_notification_current_progress ⇒ String
during the callback. 0 if there is no pending callback.
37 38 39 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/key_value_store_replica_status.rb', line 37 def copy_notification_current_progress @copy_notification_current_progress end |
#database_logical_size_estimate ⇒ String
database.
28 29 30 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/key_value_store_replica_status.rb', line 28 def database_logical_size_estimate @database_logical_size_estimate end |
#database_row_count_estimate ⇒ String
underlying database.
24 25 26 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/key_value_store_replica_status.rb', line 24 def database_row_count_estimate @database_row_count_estimate end |
#Kind ⇒ Object
Returns the value of attribute Kind.
20 21 22 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/key_value_store_replica_status.rb', line 20 def Kind @Kind end |
#status_details ⇒ String
replica.
41 42 43 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/key_value_store_replica_status.rb', line 41 def status_details @status_details end |
Class Method Details
.mapper ⇒ Object
Mapper for KeyValueStoreReplicaStatus class as Ruby Hash. This will be used for serialization/deserialization.
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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/6.3.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 |