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 +4 -4
- data/CHANGELOG.md +7 -2
- data/README.md +2 -2
- data/lib/influxdb-client.rb +1 -1
- data/lib/influxdb2/client/client.rb +4 -4
- data/lib/influxdb2/client/flux_csv_parser.rb +1 -1
- data/lib/influxdb2/client/{invocable_scripts_api.rb → invokable_scripts_api.rb} +1 -1
- data/lib/influxdb2/client/models/script_invocation_params.rb +3 -1
- data/lib/influxdb2/client/version.rb +1 -1
- data/test/influxdb/{invocable_scripts_api_test.rb → invokable_scripts_api_test.rb} +3 -3
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 912d1e7b00170e4f7040253e667bcf724d4f8c9d46107fab9965ca4147d4ad2c
|
4
|
+
data.tar.gz: b58537cc872d3756a75f82a6b0f433d47a0e845621823a3cf0fc7e588045e4ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fc85921d6d44160c62ed6460cbdafbd76c1e30b99fa1896bb2336f93543e8ba0a3315e39efe2810d28feddd3844ad8335378083bf7f513dff45b060978ef80b
|
7
|
+
data.tar.gz: c44908490452fdd53da53de70a3a07db25bae513a4e03685a9962200ec70f275f654bb894acdd9abebb15052462e52b09c7e604bcc96ba51af74ef2058f2b46a
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,12 @@
|
|
1
|
-
## 2.
|
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 `
|
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.
|
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.
|
73
|
+
gem install influxdb-client-apis -v 2.4.0
|
74
74
|
```
|
75
75
|
|
76
76
|
## Usage
|
data/lib/influxdb-client.rb
CHANGED
@@ -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/
|
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
|
88
|
+
# Create an InvokableScripts API instance.
|
89
89
|
#
|
90
|
-
# @return [
|
91
|
-
def
|
92
|
-
|
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.
|
@@ -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
|
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)
|
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
require 'test_helper'
|
22
22
|
|
23
|
-
class
|
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
|
-
|
39
|
-
refute_nil
|
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
|
+
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-
|
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/
|
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/
|
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.
|
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/
|
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
|