Class: Azure::ServiceFabric::V6_4_0_36::Models::KeyValueStoreReplicaStatus

Inherits:
ReplicaStatusBase
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.4.0.36/generated/azure_service_fabric/models/key_value_store_replica_status.rb

Overview

Key value store related information for the replica.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeKeyValueStoreReplicaStatus

Returns a new instance of KeyValueStoreReplicaStatus.



16
17
18
# File 'lib/6.4.0.36/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_filterString

to enumeration during the callback. Null if there is no pending callback.

Returns:

  • (String)

    Value indicating the latest key-prefix filter applied



33
34
35
# File 'lib/6.4.0.36/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_progressString

during the callback. 0 if there is no pending callback.

Returns:

  • (String)

    Value indicating the latest number of keys enumerated



37
38
39
# File 'lib/6.4.0.36/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_estimateString

database.

Returns:

  • (String)

    Value indicating the estimated size of the underlying



28
29
30
# File 'lib/6.4.0.36/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_estimateString

underlying database.

Returns:

  • (String)

    Value indicating the estimated number of rows in the



24
25
26
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/key_value_store_replica_status.rb', line 24

def database_row_count_estimate
  @database_row_count_estimate
end

#KindObject

Returns the value of attribute Kind.



20
21
22
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/key_value_store_replica_status.rb', line 20

def Kind
  @Kind
end

#status_detailsString

replica.

Returns:

  • (String)

    Value indicating the current status details of the



41
42
43
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/key_value_store_replica_status.rb', line 41

def status_details
  @status_details
end

Class Method Details

.mapperObject

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.4.0.36/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