influxdb-client 2.4.0.pre.4872 → 2.5.0.pre.4984

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: 2553f436c08dabc8f49de0e471bff92f6a6b386c3aeb2e6202167723b9b84208
4
- data.tar.gz: 1eac8af37ba692ffe776e10dc26c61969901b03ace3e0107f01988323c404948
3
+ metadata.gz: 912d1e7b00170e4f7040253e667bcf724d4f8c9d46107fab9965ca4147d4ad2c
4
+ data.tar.gz: b58537cc872d3756a75f82a6b0f433d47a0e845621823a3cf0fc7e588045e4ef
5
5
  SHA512:
6
- metadata.gz: 4c84ce04bc42d630573c66f3bc03b609af3a9d29448079a861ec0127d7a847681986dcbd55b3d012cb77408bd5d440e16e8ee9d0c381207e855b50a4c0d0d2ea
7
- data.tar.gz: 39889e2b82c27e1721761f2f68e8efea0e7299cb647729ae848830d12e80dbe8bd1e7f41ae390cedf118168ad8ed73ef2b76fdd5c5963a4c9d178664ed687381
6
+ metadata.gz: 6fc85921d6d44160c62ed6460cbdafbd76c1e30b99fa1896bb2336f93543e8ba0a3315e39efe2810d28feddd3844ad8335378083bf7f513dff45b060978ef80b
7
+ data.tar.gz: c44908490452fdd53da53de70a3a07db25bae513a4e03685a9962200ec70f275f654bb894acdd9abebb15052462e52b09c7e604bcc96ba51af74ef2058f2b46a
data/CHANGELOG.md CHANGED
@@ -1,7 +1,12 @@
1
- ## 2.4.0 [unreleased]
1
+ ## 2.5.0 [unreleased]
2
+
3
+ ### Breaking Changes
4
+ 1. [#103](https://github.com/influxdata/influxdb-client-ruby/pull/103): Rename `InvocableScripts` to `InvokableScripts`
5
+
6
+ ## 2.4.0 [2022-04-19]
2
7
 
3
8
  ### Features
4
- 1. [#101](https://github.com/influxdata/influxdb-client-ruby/pull/101): Add `InvocableScriptsApi` to create, update, list, delete and invoke scripts by seamless way
9
+ 1. [#101](https://github.com/influxdata/influxdb-client-ruby/pull/101): Add `InvokableScriptsApi` to create, update, list, delete and invoke scripts by seamless way
5
10
 
6
11
  ## 2.3.0 [2022-03-18]
7
12
 
data/README.md CHANGED
@@ -64,13 +64,13 @@ The client can be installed manually or with bundler.
64
64
  To install the client gem manually:
65
65
 
66
66
  ```
67
- gem install influxdb-client -v 2.3.0
67
+ gem install influxdb-client -v 2.4.0
68
68
  ```
69
69
 
70
70
  For management API:
71
71
 
72
72
  ```
73
- gem install influxdb-client-apis -v 2.3.0
73
+ gem install influxdb-client-apis -v 2.4.0
74
74
  ```
75
75
 
76
76
  ## Usage
@@ -27,7 +27,7 @@ require 'influxdb2/client/query_api'
27
27
  require 'influxdb2/client/delete_api'
28
28
  require 'influxdb2/client/health_api'
29
29
  require 'influxdb2/client/ping_api'
30
- require 'influxdb2/client/invocable_scripts_api'
30
+ require 'influxdb2/client/invokable_scripts_api'
31
31
  require 'influxdb2/client/point'
32
32
  require 'influxdb2/client/flux_table'
33
33
  require 'influxdb2/client/write_retry'
@@ -85,11 +85,11 @@ module InfluxDB2
85
85
  DeleteApi.new(options: @options)
86
86
  end
87
87
 
88
- # Create an InvocableScripts API instance.
88
+ # Create an InvokableScripts API instance.
89
89
  #
90
- # @return [InvocableScriptsApi] New instance of InvocableScriptsApi.
91
- def create_invocable_scripts_api
92
- InvocableScriptsApi.new(options: @options)
90
+ # @return [InvokableScriptsApi] New instance of InvokableScriptsApi.
91
+ def create_invokable_scripts_api
92
+ InvokableScriptsApi.new(options: @options)
93
93
  end
94
94
 
95
95
  # Get the health of an instance.
@@ -46,7 +46,7 @@ module InfluxDB2
46
46
  class FluxResponseMode
47
47
  # full information about types, default values and groups
48
48
  FULL = 'full'.freeze
49
- # useful for Invocable scripts
49
+ # useful for Invokable scripts
50
50
  ONLY_NAMES = 'only_names'.freeze
51
51
  end
52
52
 
@@ -25,7 +25,7 @@ module InfluxDB2
25
25
  #
26
26
  # API invokable scripts let you assign scripts to API endpoints and then execute them as standard REST operations
27
27
  # in InfluxDB Cloud.
28
- class InvocableScriptsApi < DefaultApi
28
+ class InvokableScriptsApi < DefaultApi
29
29
  # @param [Hash] options The options to be used by the client.
30
30
  def initialize(options:)
31
31
  super(options: options)
@@ -53,7 +53,9 @@ module InfluxDB2
53
53
  }
54
54
 
55
55
  if attributes.key?(:'params')
56
- self.params = attributes[:'params']
56
+ if (value = attributes[:'params']).is_a?(Hash)
57
+ self.params = value
58
+ end
57
59
  end
58
60
  end
59
61
 
@@ -19,5 +19,5 @@
19
19
  # THE SOFTWARE.
20
20
 
21
21
  module InfluxDB2
22
- VERSION = '2.4.0'.freeze
22
+ VERSION = '2.5.0'.freeze
23
23
  end
@@ -20,7 +20,7 @@
20
20
 
21
21
  require 'test_helper'
22
22
 
23
- class InvocableScriptsApiTest < MiniTest::Test
23
+ class InvokableScriptsApiTest < MiniTest::Test
24
24
  def setup
25
25
  WebMock.disable_net_connect!
26
26
  @client = InfluxDB2::Client.new('http://localhost:8086', 'my-token',
@@ -35,7 +35,7 @@ class InvocableScriptsApiTest < MiniTest::Test
35
35
  end
36
36
 
37
37
  def test_create_instance
38
- invocable_scripts_api = @client.create_invocable_scripts_api
39
- refute_nil invocable_scripts_api
38
+ invokable_scripts_api = @client.create_invokable_scripts_api
39
+ refute_nil invokable_scripts_api
40
40
  end
41
41
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: influxdb-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0.pre.4872
4
+ version: 2.5.0.pre.4984
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jakub Bednar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-08 00:00:00.000000000 Z
11
+ date: 2022-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -128,7 +128,7 @@ files:
128
128
  - lib/influxdb2/client/flux_table.rb
129
129
  - lib/influxdb2/client/health_api.rb
130
130
  - lib/influxdb2/client/influx_error.rb
131
- - lib/influxdb2/client/invocable_scripts_api.rb
131
+ - lib/influxdb2/client/invokable_scripts_api.rb
132
132
  - lib/influxdb2/client/models/delete_predicate_request.rb
133
133
  - lib/influxdb2/client/models/dialect.rb
134
134
  - lib/influxdb2/client/models/health_check.rb
@@ -151,7 +151,7 @@ files:
151
151
  - test/influxdb/delete_api_integration_test.rb
152
152
  - test/influxdb/delete_api_test.rb
153
153
  - test/influxdb/flux_csv_parser_test.rb
154
- - test/influxdb/invocable_scripts_api_test.rb
154
+ - test/influxdb/invokable_scripts_api_test.rb
155
155
  - test/influxdb/point_test.rb
156
156
  - test/influxdb/query_api_integration_test.rb
157
157
  - test/influxdb/query_api_stream_test.rb
@@ -183,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
183
183
  - !ruby/object:Gem::Version
184
184
  version: 1.3.1
185
185
  requirements: []
186
- rubygems_version: 3.2.32
186
+ rubygems_version: 3.3.11
187
187
  signing_key:
188
188
  specification_version: 4
189
189
  summary: Ruby library for InfluxDB 2.
@@ -193,7 +193,7 @@ test_files:
193
193
  - test/influxdb/delete_api_integration_test.rb
194
194
  - test/influxdb/delete_api_test.rb
195
195
  - test/influxdb/flux_csv_parser_test.rb
196
- - test/influxdb/invocable_scripts_api_test.rb
196
+ - test/influxdb/invokable_scripts_api_test.rb
197
197
  - test/influxdb/point_test.rb
198
198
  - test/influxdb/query_api_integration_test.rb
199
199
  - test/influxdb/query_api_stream_test.rb