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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 93a5fb3d6426c95928fb99dea4bf9fe1ec89d9e248bdee0998ca7905130a2c0a
4
- data.tar.gz: 83d58cea483fd3b9f4a2ccf2bc9bea4671e6d905b66aea0c543a2a33f7722492
3
+ metadata.gz: b57f1bd62815e2443eadeeb512c54df7c694da3cb11a88317ca0e788748dfdca
4
+ data.tar.gz: 7481606f6651361c81c13a2dc319670d34891affab6540394d30b2730df88a64
5
5
  SHA512:
6
- metadata.gz: 1613faa69f988928629451af00a4ee1631945eaf869a86b823079503d87123bbde630af14fa8cb04aa4cee178794432f0267ef202c05da57946b08ec0b94fe56
7
- data.tar.gz: 3edb39da507013792b8bdb65fe8dd38d0a1bb8a65007891dec52278b95c9f99be3ca86eed7ae0048e86d4123a8fb2544b51153fee56ffdbce2f9abebe9e6edc0
6
+ metadata.gz: da233a9a62801ecf8a50018dbc5e8c73cb7e7582bda980337cd934040f8583883cacfac803f266ce379b616b5a9531f67b97dec2c638e41e46f2f2aff858d56f
7
+ data.tar.gz: 9582794ab67b7e5e60c1bb47b8fd29c6556172e8b89c1309bf3cd1c7ccbc6fe61bb5317bf3077f968cb19102a61282ef49d446ba6afff24bfa1657e5e48c0abc
@@ -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
  )
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Radfish
4
- VERSION = "0.2.6"
4
+ VERSION = "0.2.8"
5
5
  end
@@ -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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radfish
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Siegel