influxdb-client-apis 2.2.0 → 2.3.0.pre.4516
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/influxdb-client-apis.gemspec +1 -2
- data/lib/influxdb2/apis/generated/api/authorizations_api.rb +2 -2
- data/lib/influxdb2/apis/generated/api/buckets_api.rb +8 -8
- data/lib/influxdb2/apis/generated/api/labels_api.rb +6 -6
- data/lib/influxdb2/apis/generated/api/organizations_api.rb +2 -210
- data/lib/influxdb2/apis/generated/api/users_api.rb +12 -6
- data/lib/influxdb2/apis/generated/api_client.rb +2 -2
- data/lib/influxdb2/apis/generated/api_error.rb +2 -2
- data/lib/influxdb2/apis/generated/configuration.rb +2 -2
- data/lib/influxdb2/apis/generated/models/add_resource_member_request_body.rb +224 -0
- data/lib/influxdb2/apis/generated/models/authorization.rb +9 -9
- data/lib/influxdb2/apis/generated/models/authorization_all_of.rb +8 -8
- data/lib/influxdb2/apis/generated/models/authorization_all_of_links.rb +2 -2
- data/lib/influxdb2/apis/generated/models/authorization_post_request.rb +3 -3
- data/lib/influxdb2/apis/generated/models/authorization_update_request.rb +3 -3
- data/lib/influxdb2/apis/generated/models/authorizations.rb +2 -2
- data/lib/influxdb2/apis/generated/models/bucket.rb +2 -2
- data/lib/influxdb2/apis/generated/models/bucket_links.rb +2 -2
- data/lib/influxdb2/apis/generated/models/buckets.rb +2 -2
- data/lib/influxdb2/apis/generated/models/label.rb +2 -2
- data/lib/influxdb2/apis/generated/models/label_create_request.rb +2 -2
- data/lib/influxdb2/apis/generated/models/label_mapping.rb +2 -2
- data/lib/influxdb2/apis/generated/models/label_response.rb +2 -2
- data/lib/influxdb2/apis/generated/models/label_update.rb +2 -2
- data/lib/influxdb2/apis/generated/models/labels_response.rb +2 -2
- data/lib/influxdb2/apis/generated/models/links.rb +2 -2
- data/lib/influxdb2/apis/generated/models/organization.rb +2 -2
- data/lib/influxdb2/apis/generated/models/organization_links.rb +2 -2
- data/lib/influxdb2/apis/generated/models/organizations.rb +2 -2
- data/lib/influxdb2/apis/generated/models/password_reset_body.rb +2 -2
- data/lib/influxdb2/apis/generated/models/patch_bucket_request.rb +232 -0
- data/lib/influxdb2/apis/generated/models/patch_organization_request.rb +2 -2
- data/lib/influxdb2/apis/generated/models/permission.rb +2 -2
- data/lib/influxdb2/apis/generated/models/post_bucket_request.rb +2 -2
- data/lib/influxdb2/apis/generated/models/post_organization_request.rb +2 -2
- data/lib/influxdb2/apis/generated/models/resource_member.rb +2 -2
- data/lib/influxdb2/apis/generated/models/resource_member_all_of.rb +2 -2
- data/lib/influxdb2/apis/generated/models/resource_members.rb +2 -2
- data/lib/influxdb2/apis/generated/models/resource_members_links.rb +2 -2
- data/lib/influxdb2/apis/generated/models/resource_owner.rb +2 -2
- data/lib/influxdb2/apis/generated/models/resource_owner_all_of.rb +2 -2
- data/lib/influxdb2/apis/generated/models/resource_owners.rb +2 -2
- data/lib/influxdb2/apis/generated/models/retention_rule.rb +2 -2
- data/lib/influxdb2/apis/generated/models/user.rb +2 -2
- data/lib/influxdb2/apis/generated/models/user_response.rb +2 -2
- data/lib/influxdb2/apis/generated/models/user_response_links.rb +2 -2
- data/lib/influxdb2/apis/generated/models/users.rb +2 -2
- data/test/test_helper.rb +2 -2
- metadata +12 -24
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
|
+
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
|
|
10
|
+
=end
|
|
11
|
+
|
|
12
|
+
require 'date'
|
|
13
|
+
require 'set'
|
|
14
|
+
require 'time'
|
|
15
|
+
|
|
16
|
+
module InfluxDB2::API
|
|
17
|
+
# Updates to an existing bucket resource.
|
|
18
|
+
class PatchBucketRequest
|
|
19
|
+
attr_accessor :name
|
|
20
|
+
|
|
21
|
+
attr_accessor :description
|
|
22
|
+
|
|
23
|
+
# Updates to rules to expire or retain data. No rules means no updates.
|
|
24
|
+
attr_accessor :retention_rules
|
|
25
|
+
|
|
26
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
27
|
+
def self.attribute_map
|
|
28
|
+
{
|
|
29
|
+
:'name' => :'name',
|
|
30
|
+
:'description' => :'description',
|
|
31
|
+
:'retention_rules' => :'retentionRules',
|
|
32
|
+
}
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# Attribute type mapping.
|
|
36
|
+
def self.openapi_types
|
|
37
|
+
{
|
|
38
|
+
:'name' => :'String',
|
|
39
|
+
:'description' => :'String',
|
|
40
|
+
:'retention_rules' => :'Array<PatchRetentionRule>'
|
|
41
|
+
}
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
# List of attributes with nullable: true
|
|
45
|
+
def self.openapi_nullable
|
|
46
|
+
Set.new([
|
|
47
|
+
])
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
# Initializes the object
|
|
51
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
52
|
+
def initialize(attributes = {})
|
|
53
|
+
if (!attributes.is_a?(Hash))
|
|
54
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `InfluxDB2::PatchBucketRequest` initialize method"
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
58
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
59
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
60
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `InfluxDB2::PatchBucketRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
61
|
+
end
|
|
62
|
+
h[k.to_sym] = v
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
if attributes.key?(:'name')
|
|
66
|
+
self.name = attributes[:'name']
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
if attributes.key?(:'description')
|
|
70
|
+
self.description = attributes[:'description']
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
if attributes.key?(:'retention_rules')
|
|
74
|
+
if (value = attributes[:'retention_rules']).is_a?(Array)
|
|
75
|
+
self.retention_rules = value
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
81
|
+
# @return Array for valid properties with the reasons
|
|
82
|
+
def list_invalid_properties
|
|
83
|
+
invalid_properties = Array.new
|
|
84
|
+
invalid_properties
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
# Check to see if the all the properties in the model are valid
|
|
88
|
+
# @return true if the model is valid
|
|
89
|
+
def valid?
|
|
90
|
+
true
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
# Checks equality by comparing each attribute.
|
|
94
|
+
# @param [Object] Object to be compared
|
|
95
|
+
def ==(o)
|
|
96
|
+
return true if self.equal?(o)
|
|
97
|
+
self.class == o.class &&
|
|
98
|
+
name == o.name &&
|
|
99
|
+
description == o.description &&
|
|
100
|
+
retention_rules == o.retention_rules
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
# @see the `==` method
|
|
104
|
+
# @param [Object] Object to be compared
|
|
105
|
+
def eql?(o)
|
|
106
|
+
self == o
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
# Calculates hash code according to all attributes.
|
|
110
|
+
# @return [Integer] Hash code
|
|
111
|
+
def hash
|
|
112
|
+
[name, description, retention_rules].hash
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Builds the object from hash
|
|
116
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
117
|
+
# @return [Object] Returns the model itself
|
|
118
|
+
def self.build_from_hash(attributes)
|
|
119
|
+
new.build_from_hash(attributes)
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
# Builds the object from hash
|
|
123
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
124
|
+
# @return [Object] Returns the model itself
|
|
125
|
+
def build_from_hash(attributes)
|
|
126
|
+
return nil unless attributes.is_a?(Hash)
|
|
127
|
+
self.class.openapi_types.each_pair do |key, type|
|
|
128
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
|
129
|
+
self.send("#{key}=", nil)
|
|
130
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
131
|
+
# check to ensure the input is an array given that the attribute
|
|
132
|
+
# is documented as an array but the input is not
|
|
133
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
134
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
135
|
+
end
|
|
136
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
137
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
138
|
+
end
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
self
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
# Deserializes the data based on type
|
|
145
|
+
# @param string type Data type
|
|
146
|
+
# @param string value Value to be deserialized
|
|
147
|
+
# @return [Object] Deserialized data
|
|
148
|
+
def _deserialize(type, value)
|
|
149
|
+
case type.to_sym
|
|
150
|
+
when :Time
|
|
151
|
+
Time.parse(value)
|
|
152
|
+
when :Date
|
|
153
|
+
Date.parse(value)
|
|
154
|
+
when :String
|
|
155
|
+
value.to_s
|
|
156
|
+
when :Integer
|
|
157
|
+
value.to_i
|
|
158
|
+
when :Float
|
|
159
|
+
value.to_f
|
|
160
|
+
when :Boolean
|
|
161
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
162
|
+
true
|
|
163
|
+
else
|
|
164
|
+
false
|
|
165
|
+
end
|
|
166
|
+
when :Object
|
|
167
|
+
# generic object (usually a Hash), return directly
|
|
168
|
+
value
|
|
169
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
170
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
171
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
172
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
173
|
+
k_type = Regexp.last_match[:k_type]
|
|
174
|
+
v_type = Regexp.last_match[:v_type]
|
|
175
|
+
{}.tap do |hash|
|
|
176
|
+
value.each do |k, v|
|
|
177
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
178
|
+
end
|
|
179
|
+
end
|
|
180
|
+
else # model
|
|
181
|
+
InfluxDB2::API.const_get(type).build_from_hash(value)
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
# Returns the string representation of the object
|
|
186
|
+
# @return [String] String presentation of the object
|
|
187
|
+
def to_s
|
|
188
|
+
to_hash.to_s
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
192
|
+
# @return [Hash] Returns the object in the form of hash
|
|
193
|
+
def to_body
|
|
194
|
+
to_hash
|
|
195
|
+
end
|
|
196
|
+
|
|
197
|
+
# Returns the object in the form of hash
|
|
198
|
+
# @return [Hash] Returns the object in the form of hash
|
|
199
|
+
def to_hash
|
|
200
|
+
hash = {}
|
|
201
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
202
|
+
value = self.send(attr)
|
|
203
|
+
if value.nil?
|
|
204
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
205
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
hash[param] = _to_hash(value)
|
|
209
|
+
end
|
|
210
|
+
hash
|
|
211
|
+
end
|
|
212
|
+
|
|
213
|
+
# Outputs non-array value in the form of hash
|
|
214
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
215
|
+
# @param [Object] value Any valid value
|
|
216
|
+
# @return [Hash] Returns the value in the form of hash
|
|
217
|
+
def _to_hash(value)
|
|
218
|
+
if value.is_a?(Array)
|
|
219
|
+
value.compact.map { |v| _to_hash(v) }
|
|
220
|
+
elsif value.is_a?(Hash)
|
|
221
|
+
{}.tap do |hash|
|
|
222
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
223
|
+
end
|
|
224
|
+
elsif value.respond_to? :to_hash
|
|
225
|
+
value.to_hash
|
|
226
|
+
else
|
|
227
|
+
value
|
|
228
|
+
end
|
|
229
|
+
end
|
|
230
|
+
|
|
231
|
+
end
|
|
232
|
+
end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#InfluxDB OSS API Service
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: 2.0.0
|
|
7
7
|
|
data/test/test_helper.rb
CHANGED
|
@@ -24,8 +24,8 @@ SimpleCov.start do
|
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
if ENV['CI'] == 'true'
|
|
27
|
-
require '
|
|
28
|
-
SimpleCov.formatter = SimpleCov::Formatter::
|
|
27
|
+
require 'simplecov-cobertura'
|
|
28
|
+
SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: influxdb-client-apis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.3.0.pre.4516
|
|
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-02-
|
|
11
|
+
date: 2022-02-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: influxdb-client
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 2.
|
|
19
|
+
version: 2.3.0.pre.4516
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 2.
|
|
26
|
+
version: 2.3.0.pre.4516
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: typhoeus
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -58,20 +58,6 @@ dependencies:
|
|
|
58
58
|
- - "~>"
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
60
|
version: '2.0'
|
|
61
|
-
- !ruby/object:Gem::Dependency
|
|
62
|
-
name: codecov
|
|
63
|
-
requirement: !ruby/object:Gem::Requirement
|
|
64
|
-
requirements:
|
|
65
|
-
- - "~>"
|
|
66
|
-
- !ruby/object:Gem::Version
|
|
67
|
-
version: 0.1.16
|
|
68
|
-
type: :development
|
|
69
|
-
prerelease: false
|
|
70
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
71
|
-
requirements:
|
|
72
|
-
- - "~>"
|
|
73
|
-
- !ruby/object:Gem::Version
|
|
74
|
-
version: 0.1.16
|
|
75
61
|
- !ruby/object:Gem::Dependency
|
|
76
62
|
name: minitest
|
|
77
63
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -129,19 +115,19 @@ dependencies:
|
|
|
129
115
|
- !ruby/object:Gem::Version
|
|
130
116
|
version: 0.66.0
|
|
131
117
|
- !ruby/object:Gem::Dependency
|
|
132
|
-
name: simplecov
|
|
118
|
+
name: simplecov-cobertura
|
|
133
119
|
requirement: !ruby/object:Gem::Requirement
|
|
134
120
|
requirements:
|
|
135
121
|
- - "~>"
|
|
136
122
|
- !ruby/object:Gem::Version
|
|
137
|
-
version:
|
|
123
|
+
version: 1.4.2
|
|
138
124
|
type: :development
|
|
139
125
|
prerelease: false
|
|
140
126
|
version_requirements: !ruby/object:Gem::Requirement
|
|
141
127
|
requirements:
|
|
142
128
|
- - "~>"
|
|
143
129
|
- !ruby/object:Gem::Version
|
|
144
|
-
version:
|
|
130
|
+
version: 1.4.2
|
|
145
131
|
- !ruby/object:Gem::Dependency
|
|
146
132
|
name: webmock
|
|
147
133
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -176,6 +162,7 @@ files:
|
|
|
176
162
|
- lib/influxdb2/apis/generated/api_client.rb
|
|
177
163
|
- lib/influxdb2/apis/generated/api_error.rb
|
|
178
164
|
- lib/influxdb2/apis/generated/configuration.rb
|
|
165
|
+
- lib/influxdb2/apis/generated/models/add_resource_member_request_body.rb
|
|
179
166
|
- lib/influxdb2/apis/generated/models/authorization.rb
|
|
180
167
|
- lib/influxdb2/apis/generated/models/authorization_all_of.rb
|
|
181
168
|
- lib/influxdb2/apis/generated/models/authorization_all_of_links.rb
|
|
@@ -196,6 +183,7 @@ files:
|
|
|
196
183
|
- lib/influxdb2/apis/generated/models/organization_links.rb
|
|
197
184
|
- lib/influxdb2/apis/generated/models/organizations.rb
|
|
198
185
|
- lib/influxdb2/apis/generated/models/password_reset_body.rb
|
|
186
|
+
- lib/influxdb2/apis/generated/models/patch_bucket_request.rb
|
|
199
187
|
- lib/influxdb2/apis/generated/models/patch_organization_request.rb
|
|
200
188
|
- lib/influxdb2/apis/generated/models/permission.rb
|
|
201
189
|
- lib/influxdb2/apis/generated/models/post_bucket_request.rb
|
|
@@ -240,11 +228,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
240
228
|
version: 2.2.0
|
|
241
229
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
242
230
|
requirements:
|
|
243
|
-
- - "
|
|
231
|
+
- - ">"
|
|
244
232
|
- !ruby/object:Gem::Version
|
|
245
|
-
version:
|
|
233
|
+
version: 1.3.1
|
|
246
234
|
requirements: []
|
|
247
|
-
rubygems_version: 3.
|
|
235
|
+
rubygems_version: 3.2.32
|
|
248
236
|
signing_key:
|
|
249
237
|
specification_version: 4
|
|
250
238
|
summary: Contains client APIs for InfluxDB v2.0.
|