consulkit 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 585c5f5619ed8f3702a309400d8f1930f8a528909810438d418ba08b14e2594d
4
- data.tar.gz: 92100501f781ac1539c7fdd73abd3d182f4324eeb794ff19fddb8c5046593ef2
3
+ metadata.gz: c80bfdf51247c4c1f191f47baf5d09fdaa3cc02ae6c4af32017865de5e3121eb
4
+ data.tar.gz: b0b97535969aef815011c79cb95497611694fd90936408868b02a25325c6793e
5
5
  SHA512:
6
- metadata.gz: 037cf6988db74336f088da5d353d546081dc1bcb2914fd2cf19057efca69bedb498880a4487a5df02d821e3b266bf31b63c7273b635036c9f2d4681bce1f60d7
7
- data.tar.gz: 994de327e357ac763ebb999247cfd7333a05592bddf9119c319ec23d783ffc88281198b730098174368c18796d465b12dcd251793ae4be4d7f88732c32298e92
6
+ metadata.gz: f40b315746f28bcc42831ae09fc871ee0ea200acf8dd687bcc452acf207bfcf387ea92907c7c1057a54453f2462155c76ae437af4651e4b3bc07230bb838f611
7
+ data.tar.gz: 379e1a1fcfb0a3c2d17f581c1b13e8ceb3665e1038f4089e102104690614735de0b302315f9f5fc785d75b670d3d628869df40288bc025f7cf242dfa5531975e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.0](https://github.com/etsy/consulkit/compare/v0.1.2...v0.2.0) (2024-06-06)
4
+
5
+
6
+ ### Features
7
+
8
+ * add "List Service Instances for Service" call ([#8](https://github.com/etsy/consulkit/issues/8)) ([d115001](https://github.com/etsy/consulkit/commit/d1150019c98de693e9815c68b1ea0426c850ffad))
9
+
10
+ ## [0.1.2](https://github.com/etsy/consulkit/compare/v0.1.1...v0.1.2) (2023-07-07)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * `/v1/session/destroy` takes a `PUT`, not `DELETE` ([8802e43](https://github.com/etsy/consulkit/commit/8802e43bc8e610bfc7cfbf2944c93f69e116f31f))
16
+
3
17
  ## [0.1.1](https://github.com/etsy/consulkit/compare/v0.1.0...v0.1.1) (2023-07-06)
4
18
 
5
19
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- consulkit (0.1.1)
4
+ consulkit (0.2.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
 
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Consulkit
4
+ class Client
5
+ # Methods for querying health checks registered with Consul.
6
+ module Health
7
+
8
+ # Returns the list of service instances providing the given service, including health check
9
+ # information.
10
+ #
11
+ # @see https://developer.hashicorp.com/consul/api-docs/health#list-service-instances-for-service
12
+ #
13
+ # @param key [String] the key to read.
14
+ # @option query_params [Hash] optional query parameters.
15
+ # @option query_params [Boolean] :passing
16
+ # @option query_params [String] :filter
17
+ #
18
+ # @yield [Faraday::Response] The response from the underlying Faraday library.
19
+ #
20
+ # @return [Array<Hash>]
21
+ def health_list_service_instances(service, query_params = {})
22
+ response = get("/v1/health/service/#{service}", query_params)
23
+
24
+ if block_given?
25
+ yield response
26
+ else
27
+ response.body
28
+ end
29
+ end
30
+
31
+ end
32
+ end
33
+ end
@@ -32,16 +32,16 @@ module Consulkit
32
32
  #
33
33
  # @return [Boolean]
34
34
  def session_delete(session_id)
35
- delete("/v1/session/destroy/#{session_id}").body == true
35
+ put("/v1/session/destroy/#{session_id}").body == true
36
36
  end
37
37
 
38
38
  # Reads a session.
39
39
  #
40
40
  # @param session_id [String] the ID of the session to read.
41
41
  #
42
- # @return [Boolean]
42
+ # @return [Hash]
43
43
  def session_read(session_id)
44
- get("/v1/session/info/#{session_id}").body
44
+ get("/v1/session/info/#{session_id}").body.first
45
45
  end
46
46
 
47
47
  # Renews a session.
@@ -50,7 +50,7 @@ module Consulkit
50
50
  #
51
51
  # @return [Hash]
52
52
  def session_renew(session_id)
53
- put("/v1/session/renew/#{session_id}").body
53
+ put("/v1/session/renew/#{session_id}").body.first
54
54
  end
55
55
 
56
56
  end
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'consulkit/configurable'
4
+ require 'consulkit/client/health'
4
5
  require 'consulkit/client/kv'
5
6
  require 'consulkit/client/session'
6
7
 
@@ -9,6 +10,7 @@ module Consulkit
9
10
  class Client
10
11
 
11
12
  include Consulkit::Configurable
13
+ include Consulkit::Client::Health
12
14
  include Consulkit::Client::KV
13
15
  include Consulkit::Client::Session
14
16
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Consulkit
4
4
 
5
- VERSION = '0.1.1'
5
+ VERSION = '0.2.0'
6
6
 
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: consulkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Norris
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-06 00:00:00.000000000 Z
11
+ date: 2024-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -55,6 +55,7 @@ files:
55
55
  - Rakefile
56
56
  - lib/consulkit.rb
57
57
  - lib/consulkit/client.rb
58
+ - lib/consulkit/client/health.rb
58
59
  - lib/consulkit/client/kv.rb
59
60
  - lib/consulkit/client/session.rb
60
61
  - lib/consulkit/configurable.rb
@@ -85,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
86
  - !ruby/object:Gem::Version
86
87
  version: '0'
87
88
  requirements: []
88
- rubygems_version: 3.4.10
89
+ rubygems_version: 3.4.19
89
90
  signing_key:
90
91
  specification_version: 4
91
92
  summary: Ruby toolkit for the Consul API