radfish 0.2.6 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/radfish/client.rb +1 -0
- data/lib/radfish/version.rb +1 -1
- data/lib/radfish/volume.rb +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b57f1bd62815e2443eadeeb512c54df7c694da3cb11a88317ca0e788748dfdca
|
4
|
+
data.tar.gz: 7481606f6651361c81c13a2dc319670d34891affab6540394d30b2730df88a64
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da233a9a62801ecf8a50018dbc5e8c73cb7e7582bda980337cd934040f8583883cacfac803f266ce379b616b5a9531f67b97dec2c638e41e46f2f2aff858d56f
|
7
|
+
data.tar.gz: 9582794ab67b7e5e60c1bb47b8fd29c6556172e8b89c1309bf3cd1c7ccbc6fe61bb5317bf3077f968cb19102a61282ef49d446ba6afff24bfa1657e5e48c0abc
|
data/lib/radfish/client.rb
CHANGED
@@ -241,6 +241,7 @@ module Radfish
|
|
241
241
|
operation_name: fetch.call(:operation_name),
|
242
242
|
write_cache_policy: fetch.call(:write_cache_policy),
|
243
243
|
read_cache_policy: fetch.call(:read_cache_policy),
|
244
|
+
fastpath: fetch.call(:fastpath),
|
244
245
|
health: fetch.call(:health),
|
245
246
|
adapter_data: raw
|
246
247
|
)
|
data/lib/radfish/version.rb
CHANGED
data/lib/radfish/volume.rb
CHANGED
@@ -4,7 +4,7 @@ module Radfish
|
|
4
4
|
class Volume
|
5
5
|
# Canonical, normalized attributes only.
|
6
6
|
attr_reader :id, :name, :capacity_bytes, :raid_type, :volume_type, :drives,
|
7
|
-
:encrypted, :lock_status, :stripe_size,
|
7
|
+
:encrypted, :lock_status, :stripe_size, :fastpath,
|
8
8
|
:operation_percent_complete, :operation_name,
|
9
9
|
:write_cache_policy, :read_cache_policy, :health,
|
10
10
|
:adapter_data, :controller
|
@@ -14,6 +14,7 @@ module Radfish
|
|
14
14
|
lock_status: nil, stripe_size: nil,
|
15
15
|
operation_percent_complete: nil, operation_name: nil,
|
16
16
|
write_cache_policy: nil, read_cache_policy: nil,
|
17
|
+
fastpath: nil,
|
17
18
|
health: nil, adapter_data: nil)
|
18
19
|
@client = client
|
19
20
|
@controller = controller
|
@@ -30,6 +31,7 @@ module Radfish
|
|
30
31
|
@operation_name = operation_name
|
31
32
|
@write_cache_policy = write_cache_policy
|
32
33
|
@read_cache_policy = read_cache_policy
|
34
|
+
@fastpath = fastpath
|
33
35
|
@health = health
|
34
36
|
@adapter_data = adapter_data
|
35
37
|
end
|
@@ -53,6 +55,7 @@ module Radfish
|
|
53
55
|
operation_name: operation_name,
|
54
56
|
write_cache_policy: write_cache_policy,
|
55
57
|
read_cache_policy: read_cache_policy,
|
58
|
+
fastpath: fastpath,
|
56
59
|
health: health
|
57
60
|
}.compact
|
58
61
|
end
|