authentik-api 2026.2.2 → 2026.2.3.rc1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0427e8263b9f9fc5b14eea2bbdd6e8aec29885ac517fe3ca8783281704cf104
|
|
4
|
+
data.tar.gz: 51173ecc5cceac3785a737aebf98db42be2bfcd40f3beb5b9f33f3b8263e41f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fed67e08e830e9f59ca204292ff6eb23f55467190e0fbc7880579ee92ea15dc75e809f60294bb2fa736e90bd5bc7f572909027291c4dc2b31664bf52ffde70e
|
|
7
|
+
data.tar.gz: 581d4addcfb74aa1db3baebbfd26f064cf370b92a15a7b12e7a5aa9a4e565c12f189f3748b09ea7f5b0e8f5213ccac7970859be630d6a992532b3ba8a1f3bda3
|
data/README_API.md
CHANGED
|
@@ -6,8 +6,8 @@ Making authentication simple.
|
|
|
6
6
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
|
-
- API version: 2026.2.
|
|
10
|
-
- Package version: 2026.2.
|
|
9
|
+
- API version: 2026.2.3-rc1
|
|
10
|
+
- Package version: 2026.2.3.rc1
|
|
11
11
|
- Generator version: 7.22.0-SNAPSHOT
|
|
12
12
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
13
13
|
|
|
@@ -24,16 +24,16 @@ gem build authentik-api.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./authentik-api-2026.2.
|
|
27
|
+
gem install ./authentik-api-2026.2.3.rc1.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./authentik-api-2026.2.
|
|
30
|
+
(for development, run `gem install --dev ./authentik-api-2026.2.3.rc1.gem` to install the development dependencies)
|
|
31
31
|
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
33
33
|
|
|
34
34
|
Finally add this to the Gemfile:
|
|
35
35
|
|
|
36
|
-
gem 'authentik-api', '~> 2026.2.
|
|
36
|
+
gem 'authentik-api', '~> 2026.2.3.rc1'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -105,6 +105,9 @@ module Authentik::Api
|
|
|
105
105
|
:'policy',
|
|
106
106
|
:'group',
|
|
107
107
|
:'user',
|
|
108
|
+
:'policy_obj',
|
|
109
|
+
:'group_obj',
|
|
110
|
+
:'user_obj',
|
|
108
111
|
:'connector',
|
|
109
112
|
])
|
|
110
113
|
end
|
|
@@ -215,18 +218,6 @@ module Authentik::Api
|
|
|
215
218
|
invalid_properties.push('invalid value for "pk", pk cannot be nil.')
|
|
216
219
|
end
|
|
217
220
|
|
|
218
|
-
if @policy_obj.nil?
|
|
219
|
-
invalid_properties.push('invalid value for "policy_obj", policy_obj cannot be nil.')
|
|
220
|
-
end
|
|
221
|
-
|
|
222
|
-
if @group_obj.nil?
|
|
223
|
-
invalid_properties.push('invalid value for "group_obj", group_obj cannot be nil.')
|
|
224
|
-
end
|
|
225
|
-
|
|
226
|
-
if @user_obj.nil?
|
|
227
|
-
invalid_properties.push('invalid value for "user_obj", user_obj cannot be nil.')
|
|
228
|
-
end
|
|
229
|
-
|
|
230
221
|
if @target.nil?
|
|
231
222
|
invalid_properties.push('invalid value for "target", target cannot be nil.')
|
|
232
223
|
end
|
|
@@ -263,9 +254,6 @@ module Authentik::Api
|
|
|
263
254
|
def valid?
|
|
264
255
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
265
256
|
return false if @pk.nil?
|
|
266
|
-
return false if @policy_obj.nil?
|
|
267
|
-
return false if @group_obj.nil?
|
|
268
|
-
return false if @user_obj.nil?
|
|
269
257
|
return false if @target.nil?
|
|
270
258
|
return false if @order.nil?
|
|
271
259
|
return false if @order > 2147483647
|
|
@@ -286,36 +274,6 @@ module Authentik::Api
|
|
|
286
274
|
@pk = pk
|
|
287
275
|
end
|
|
288
276
|
|
|
289
|
-
# Custom attribute writer method with validation
|
|
290
|
-
# @param [Object] policy_obj Value to be assigned
|
|
291
|
-
def policy_obj=(policy_obj)
|
|
292
|
-
if policy_obj.nil?
|
|
293
|
-
fail ArgumentError, 'policy_obj cannot be nil'
|
|
294
|
-
end
|
|
295
|
-
|
|
296
|
-
@policy_obj = policy_obj
|
|
297
|
-
end
|
|
298
|
-
|
|
299
|
-
# Custom attribute writer method with validation
|
|
300
|
-
# @param [Object] group_obj Value to be assigned
|
|
301
|
-
def group_obj=(group_obj)
|
|
302
|
-
if group_obj.nil?
|
|
303
|
-
fail ArgumentError, 'group_obj cannot be nil'
|
|
304
|
-
end
|
|
305
|
-
|
|
306
|
-
@group_obj = group_obj
|
|
307
|
-
end
|
|
308
|
-
|
|
309
|
-
# Custom attribute writer method with validation
|
|
310
|
-
# @param [Object] user_obj Value to be assigned
|
|
311
|
-
def user_obj=(user_obj)
|
|
312
|
-
if user_obj.nil?
|
|
313
|
-
fail ArgumentError, 'user_obj cannot be nil'
|
|
314
|
-
end
|
|
315
|
-
|
|
316
|
-
@user_obj = user_obj
|
|
317
|
-
end
|
|
318
|
-
|
|
319
277
|
# Custom attribute writer method with validation
|
|
320
278
|
# @param [Object] target Value to be assigned
|
|
321
279
|
def target=(target)
|
|
@@ -93,6 +93,9 @@ module Authentik::Api
|
|
|
93
93
|
:'policy',
|
|
94
94
|
:'group',
|
|
95
95
|
:'user',
|
|
96
|
+
:'policy_obj',
|
|
97
|
+
:'group_obj',
|
|
98
|
+
:'user_obj',
|
|
96
99
|
])
|
|
97
100
|
end
|
|
98
101
|
|
|
@@ -186,18 +189,6 @@ module Authentik::Api
|
|
|
186
189
|
invalid_properties.push('invalid value for "pk", pk cannot be nil.')
|
|
187
190
|
end
|
|
188
191
|
|
|
189
|
-
if @policy_obj.nil?
|
|
190
|
-
invalid_properties.push('invalid value for "policy_obj", policy_obj cannot be nil.')
|
|
191
|
-
end
|
|
192
|
-
|
|
193
|
-
if @group_obj.nil?
|
|
194
|
-
invalid_properties.push('invalid value for "group_obj", group_obj cannot be nil.')
|
|
195
|
-
end
|
|
196
|
-
|
|
197
|
-
if @user_obj.nil?
|
|
198
|
-
invalid_properties.push('invalid value for "user_obj", user_obj cannot be nil.')
|
|
199
|
-
end
|
|
200
|
-
|
|
201
192
|
if @target.nil?
|
|
202
193
|
invalid_properties.push('invalid value for "target", target cannot be nil.')
|
|
203
194
|
end
|
|
@@ -230,9 +221,6 @@ module Authentik::Api
|
|
|
230
221
|
def valid?
|
|
231
222
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
232
223
|
return false if @pk.nil?
|
|
233
|
-
return false if @policy_obj.nil?
|
|
234
|
-
return false if @group_obj.nil?
|
|
235
|
-
return false if @user_obj.nil?
|
|
236
224
|
return false if @target.nil?
|
|
237
225
|
return false if @order.nil?
|
|
238
226
|
return false if @order > 2147483647
|
|
@@ -252,36 +240,6 @@ module Authentik::Api
|
|
|
252
240
|
@pk = pk
|
|
253
241
|
end
|
|
254
242
|
|
|
255
|
-
# Custom attribute writer method with validation
|
|
256
|
-
# @param [Object] policy_obj Value to be assigned
|
|
257
|
-
def policy_obj=(policy_obj)
|
|
258
|
-
if policy_obj.nil?
|
|
259
|
-
fail ArgumentError, 'policy_obj cannot be nil'
|
|
260
|
-
end
|
|
261
|
-
|
|
262
|
-
@policy_obj = policy_obj
|
|
263
|
-
end
|
|
264
|
-
|
|
265
|
-
# Custom attribute writer method with validation
|
|
266
|
-
# @param [Object] group_obj Value to be assigned
|
|
267
|
-
def group_obj=(group_obj)
|
|
268
|
-
if group_obj.nil?
|
|
269
|
-
fail ArgumentError, 'group_obj cannot be nil'
|
|
270
|
-
end
|
|
271
|
-
|
|
272
|
-
@group_obj = group_obj
|
|
273
|
-
end
|
|
274
|
-
|
|
275
|
-
# Custom attribute writer method with validation
|
|
276
|
-
# @param [Object] user_obj Value to be assigned
|
|
277
|
-
def user_obj=(user_obj)
|
|
278
|
-
if user_obj.nil?
|
|
279
|
-
fail ArgumentError, 'user_obj cannot be nil'
|
|
280
|
-
end
|
|
281
|
-
|
|
282
|
-
@user_obj = user_obj
|
|
283
|
-
end
|
|
284
|
-
|
|
285
243
|
# Custom attribute writer method with validation
|
|
286
244
|
# @param [Object] target Value to be assigned
|
|
287
245
|
def target=(target)
|