influxdb-client 2.5.0.pre.4923 → 2.5.0.pre.4984

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: 36b3c4a3becc91e6b1722299b9860a62678d9f395ee3e4362612cc86c629b579
4
- data.tar.gz: a772948c6b7e6f0d6547c250c5492bd11de882d2a62c8abe11413fbea84208f0
3
+ metadata.gz: 912d1e7b00170e4f7040253e667bcf724d4f8c9d46107fab9965ca4147d4ad2c
4
+ data.tar.gz: b58537cc872d3756a75f82a6b0f433d47a0e845621823a3cf0fc7e588045e4ef
5
5
  SHA512:
6
- metadata.gz: 825e1a682f596454b706bf8e3eda83b6d035948297e09bd14710bc16171329e1070e49ef919f610db3ad58dc2bdb066d19ea333789bc163d6cd8177e44917948
7
- data.tar.gz: 7a661b1a489fa36df71b760842b4166e4f0ac7f3a83f6b9122e8005b480c2a67015cbfd84233dd2fbd244d24d001ccb542107d8e865d09d222dcb2d0107e1947
6
+ metadata.gz: 6fc85921d6d44160c62ed6460cbdafbd76c1e30b99fa1896bb2336f93543e8ba0a3315e39efe2810d28feddd3844ad8335378083bf7f513dff45b060978ef80b
7
+ data.tar.gz: c44908490452fdd53da53de70a3a07db25bae513a4e03685a9962200ec70f275f654bb894acdd9abebb15052462e52b09c7e604bcc96ba51af74ef2058f2b46a
data/CHANGELOG.md CHANGED
@@ -1,9 +1,12 @@
1
1
  ## 2.5.0 [unreleased]
2
2
 
3
+ ### Breaking Changes
4
+ 1. [#103](https://github.com/influxdata/influxdb-client-ruby/pull/103): Rename `InvocableScripts` to `InvokableScripts`
5
+
3
6
  ## 2.4.0 [2022-04-19]
4
7
 
5
8
  ### Features
6
- 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
7
10
 
8
11
  ## 2.3.0 [2022-03-18]
9
12
 
@@ -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
 
@@ -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.5.0.pre.4923
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-19 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
@@ -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