authentik-api 2026.8.0.rc1 → 2026.8.0.rc3

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.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/README_API.md +5 -5
  3. data/lib/authentik/api/models/brand.rb +11 -1
  4. data/lib/authentik/api/models/brand_request.rb +11 -1
  5. data/lib/authentik/api/models/current_brand.rb +27 -1
  6. data/lib/authentik/api/models/google_workspace_provider.rb +14 -4
  7. data/lib/authentik/api/models/google_workspace_provider_request.rb +14 -4
  8. data/lib/authentik/api/models/microsoft_entra_provider.rb +11 -1
  9. data/lib/authentik/api/models/microsoft_entra_provider_request.rb +11 -1
  10. data/lib/authentik/api/models/o_auth2_provider_setup_urls.rb +16 -4
  11. data/lib/authentik/api/models/patched_brand_request.rb +11 -1
  12. data/lib/authentik/api/models/patched_google_workspace_provider_request.rb +14 -4
  13. data/lib/authentik/api/models/patched_microsoft_entra_provider_request.rb +11 -1
  14. data/lib/authentik/api/models/patched_scim_provider_request.rb +11 -1
  15. data/lib/authentik/api/models/scim_provider.rb +11 -1
  16. data/lib/authentik/api/models/scim_provider_request.rb +11 -1
  17. data/lib/authentik/api/version.rb +1 -1
  18. data/spec/models/brand_request_spec.rb +6 -0
  19. data/spec/models/brand_spec.rb +6 -0
  20. data/spec/models/current_brand_spec.rb +6 -0
  21. data/spec/models/google_workspace_provider_request_spec.rb +6 -0
  22. data/spec/models/google_workspace_provider_spec.rb +6 -0
  23. data/spec/models/microsoft_entra_provider_request_spec.rb +6 -0
  24. data/spec/models/microsoft_entra_provider_spec.rb +6 -0
  25. data/spec/models/o_auth2_provider_setup_urls_spec.rb +6 -0
  26. data/spec/models/patched_brand_request_spec.rb +6 -0
  27. data/spec/models/patched_google_workspace_provider_request_spec.rb +6 -0
  28. data/spec/models/patched_microsoft_entra_provider_request_spec.rb +6 -0
  29. data/spec/models/patched_scim_provider_request_spec.rb +6 -0
  30. data/spec/models/scim_provider_request_spec.rb +6 -0
  31. data/spec/models/scim_provider_spec.rb +6 -0
  32. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6f17ebb484dbc8fb9f706b33fadb7d0e12cb8b7ce5487a59412b12bb811c2d36
4
- data.tar.gz: 4de9ef5b0e2e650ec9e13a7321530a3d8bbbe55c7abe7eace17cb65f9af1b2ad
3
+ metadata.gz: ed42d69d6b3dbe3cc3fed01847ecac66222020edccae9f1a6c4565e337ec3467
4
+ data.tar.gz: adbd845dd0b5f578dace882d0d1a27b3298a8439266183f581ea395b2dcd01b5
5
5
  SHA512:
6
- metadata.gz: 40f703d8b1a69478c592bad8c7f00ecbd7989788d3270575a69a0a02e85117b108835419076a907bc7da722dbc081b16421d4c3efafc90826a6c2a6b0aeadfd9
7
- data.tar.gz: 7e72e70a2c9c04e5af24218d72d6526357e9ba1ac2e5eec0c0d1747a779606f29f213ef60cfb26f49ac750c3f2253a6f6fa33a32d3d8796b4bd5caea44c6bbf9
6
+ metadata.gz: 695c59d64bb1b35d0d1bc4dec2e1f1f84928b99e5414632aff43c4b7270a83ac348f208fa71eb8b0339ddc93b5b55e8e4f81a0f11d610298749157c43e1b3327
7
+ data.tar.gz: 9ae713183976d8df21df2009529763725bab597349a475e04142bfe4550cd79028a53600897fd18c5daef8bb754c17f7ebb73c2f8bbfbb1274441f7ec6cc5b31
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.8.0-rc1
10
- - Package version: 2026.8.0.rc1
9
+ - API version: 2026.8.0-rc3
10
+ - Package version: 2026.8.0.rc3
11
11
  - Generator version: 7.25.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.8.0.rc1.gem
27
+ gem install ./authentik-api-2026.8.0.rc3.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./authentik-api-2026.8.0.rc1.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./authentik-api-2026.8.0.rc3.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.8.0.rc1'
36
+ gem 'authentik-api', '~> 2026.8.0.rc3'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -27,6 +27,9 @@ module Authentik::Api
27
27
 
28
28
  attr_accessor :branding_default_flow_background
29
29
 
30
+ # URL template for the vector tile source used by the events map. Supports XYZ templates with {z}, {x} and {y} placeholders, or pmtiles:// archive URLs. When empty, the frontend uses the bundled hexworld basemap. This value is part of the brand information served to unauthenticated clients; do not embed API keys or other credentials in it.
31
+ attr_accessor :branding_map_tiles
32
+
30
33
  attr_accessor :flow_authentication
31
34
 
32
35
  attr_accessor :flow_user_switch
@@ -67,6 +70,7 @@ module Authentik::Api
67
70
  :'branding_favicon' => :'branding_favicon',
68
71
  :'branding_custom_css' => :'branding_custom_css',
69
72
  :'branding_default_flow_background' => :'branding_default_flow_background',
73
+ :'branding_map_tiles' => :'branding_map_tiles',
70
74
  :'flow_authentication' => :'flow_authentication',
71
75
  :'flow_user_switch' => :'flow_user_switch',
72
76
  :'flow_invalidation' => :'flow_invalidation',
@@ -104,6 +108,7 @@ module Authentik::Api
104
108
  :'branding_favicon' => :'String',
105
109
  :'branding_custom_css' => :'String',
106
110
  :'branding_default_flow_background' => :'String',
111
+ :'branding_map_tiles' => :'String',
107
112
  :'flow_authentication' => :'String',
108
113
  :'flow_user_switch' => :'String',
109
114
  :'flow_invalidation' => :'String',
@@ -189,6 +194,10 @@ module Authentik::Api
189
194
  self.branding_default_flow_background = attributes[:'branding_default_flow_background']
190
195
  end
191
196
 
197
+ if attributes.key?(:'branding_map_tiles')
198
+ self.branding_map_tiles = attributes[:'branding_map_tiles']
199
+ end
200
+
192
201
  if attributes.key?(:'flow_authentication')
193
202
  self.flow_authentication = attributes[:'flow_authentication']
194
203
  end
@@ -304,6 +313,7 @@ module Authentik::Api
304
313
  branding_favicon == o.branding_favicon &&
305
314
  branding_custom_css == o.branding_custom_css &&
306
315
  branding_default_flow_background == o.branding_default_flow_background &&
316
+ branding_map_tiles == o.branding_map_tiles &&
307
317
  flow_authentication == o.flow_authentication &&
308
318
  flow_user_switch == o.flow_user_switch &&
309
319
  flow_invalidation == o.flow_invalidation &&
@@ -328,7 +338,7 @@ module Authentik::Api
328
338
  # Calculates hash code according to all attributes.
329
339
  # @return [Integer] Hash code
330
340
  def hash
331
- [brand_uuid, domain, default, branding_title, branding_logo, branding_favicon, branding_custom_css, branding_default_flow_background, flow_authentication, flow_user_switch, flow_invalidation, flow_recovery, flow_unenrollment, flow_user_settings, flow_device_code, flow_lockdown, flow_request, default_application, web_certificate, client_certificates, attributes].hash
341
+ [brand_uuid, domain, default, branding_title, branding_logo, branding_favicon, branding_custom_css, branding_default_flow_background, branding_map_tiles, flow_authentication, flow_user_switch, flow_invalidation, flow_recovery, flow_unenrollment, flow_user_settings, flow_device_code, flow_lockdown, flow_request, default_application, web_certificate, client_certificates, attributes].hash
332
342
  end
333
343
 
334
344
  # Builds the object from hash
@@ -25,6 +25,9 @@ module Authentik::Api
25
25
 
26
26
  attr_accessor :branding_default_flow_background
27
27
 
28
+ # URL template for the vector tile source used by the events map. Supports XYZ templates with {z}, {x} and {y} placeholders, or pmtiles:// archive URLs. When empty, the frontend uses the bundled hexworld basemap. This value is part of the brand information served to unauthenticated clients; do not embed API keys or other credentials in it.
29
+ attr_accessor :branding_map_tiles
30
+
28
31
  attr_accessor :flow_authentication
29
32
 
30
33
  attr_accessor :flow_user_switch
@@ -64,6 +67,7 @@ module Authentik::Api
64
67
  :'branding_favicon' => :'branding_favicon',
65
68
  :'branding_custom_css' => :'branding_custom_css',
66
69
  :'branding_default_flow_background' => :'branding_default_flow_background',
70
+ :'branding_map_tiles' => :'branding_map_tiles',
67
71
  :'flow_authentication' => :'flow_authentication',
68
72
  :'flow_user_switch' => :'flow_user_switch',
69
73
  :'flow_invalidation' => :'flow_invalidation',
@@ -100,6 +104,7 @@ module Authentik::Api
100
104
  :'branding_favicon' => :'String',
101
105
  :'branding_custom_css' => :'String',
102
106
  :'branding_default_flow_background' => :'String',
107
+ :'branding_map_tiles' => :'String',
103
108
  :'flow_authentication' => :'String',
104
109
  :'flow_user_switch' => :'String',
105
110
  :'flow_invalidation' => :'String',
@@ -179,6 +184,10 @@ module Authentik::Api
179
184
  self.branding_default_flow_background = attributes[:'branding_default_flow_background']
180
185
  end
181
186
 
187
+ if attributes.key?(:'branding_map_tiles')
188
+ self.branding_map_tiles = attributes[:'branding_map_tiles']
189
+ end
190
+
182
191
  if attributes.key?(:'flow_authentication')
183
192
  self.flow_authentication = attributes[:'flow_authentication']
184
193
  end
@@ -363,6 +372,7 @@ module Authentik::Api
363
372
  branding_favicon == o.branding_favicon &&
364
373
  branding_custom_css == o.branding_custom_css &&
365
374
  branding_default_flow_background == o.branding_default_flow_background &&
375
+ branding_map_tiles == o.branding_map_tiles &&
366
376
  flow_authentication == o.flow_authentication &&
367
377
  flow_user_switch == o.flow_user_switch &&
368
378
  flow_invalidation == o.flow_invalidation &&
@@ -387,7 +397,7 @@ module Authentik::Api
387
397
  # Calculates hash code according to all attributes.
388
398
  # @return [Integer] Hash code
389
399
  def hash
390
- [domain, default, branding_title, branding_logo, branding_favicon, branding_custom_css, branding_default_flow_background, flow_authentication, flow_user_switch, flow_invalidation, flow_recovery, flow_unenrollment, flow_user_settings, flow_device_code, flow_lockdown, flow_request, default_application, web_certificate, client_certificates, attributes].hash
400
+ [domain, default, branding_title, branding_logo, branding_favicon, branding_custom_css, branding_default_flow_background, branding_map_tiles, flow_authentication, flow_user_switch, flow_invalidation, flow_recovery, flow_unenrollment, flow_user_settings, flow_device_code, flow_lockdown, flow_request, default_application, web_certificate, client_certificates, attributes].hash
391
401
  end
392
402
 
393
403
  # Builds the object from hash
@@ -24,6 +24,8 @@ module Authentik::Api
24
24
 
25
25
  attr_accessor :branding_custom_css
26
26
 
27
+ attr_accessor :branding_map_tiles
28
+
27
29
  attr_accessor :ui_footer_links
28
30
 
29
31
  attr_accessor :ui_theme
@@ -82,6 +84,7 @@ module Authentik::Api
82
84
  :'branding_favicon' => :'branding_favicon',
83
85
  :'branding_favicon_themed_urls' => :'branding_favicon_themed_urls',
84
86
  :'branding_custom_css' => :'branding_custom_css',
87
+ :'branding_map_tiles' => :'branding_map_tiles',
85
88
  :'ui_footer_links' => :'ui_footer_links',
86
89
  :'ui_theme' => :'ui_theme',
87
90
  :'flow_authentication' => :'flow_authentication',
@@ -118,6 +121,7 @@ module Authentik::Api
118
121
  :'branding_favicon' => :'String',
119
122
  :'branding_favicon_themed_urls' => :'ThemedUrls',
120
123
  :'branding_custom_css' => :'String',
124
+ :'branding_map_tiles' => :'String',
121
125
  :'ui_footer_links' => :'Array<FooterLink>',
122
126
  :'ui_theme' => :'UiThemeEnum',
123
127
  :'flow_authentication' => :'String',
@@ -200,6 +204,12 @@ module Authentik::Api
200
204
  self.branding_custom_css = nil
201
205
  end
202
206
 
207
+ if attributes.key?(:'branding_map_tiles')
208
+ self.branding_map_tiles = attributes[:'branding_map_tiles']
209
+ else
210
+ self.branding_map_tiles = nil
211
+ end
212
+
203
213
  if attributes.key?(:'ui_footer_links')
204
214
  if (value = attributes[:'ui_footer_links']).is_a?(Array)
205
215
  self.ui_footer_links = value
@@ -288,6 +298,10 @@ module Authentik::Api
288
298
  invalid_properties.push('invalid value for "branding_custom_css", branding_custom_css cannot be nil.')
289
299
  end
290
300
 
301
+ if @branding_map_tiles.nil?
302
+ invalid_properties.push('invalid value for "branding_map_tiles", branding_map_tiles cannot be nil.')
303
+ end
304
+
291
305
  if @ui_footer_links.nil?
292
306
  invalid_properties.push('invalid value for "ui_footer_links", ui_footer_links cannot be nil.')
293
307
  end
@@ -316,6 +330,7 @@ module Authentik::Api
316
330
  return false if @branding_logo.nil?
317
331
  return false if @branding_favicon.nil?
318
332
  return false if @branding_custom_css.nil?
333
+ return false if @branding_map_tiles.nil?
319
334
  return false if @ui_footer_links.nil?
320
335
  return false if @ui_theme.nil?
321
336
  return false if @default_locale.nil?
@@ -373,6 +388,16 @@ module Authentik::Api
373
388
  @branding_custom_css = branding_custom_css
374
389
  end
375
390
 
391
+ # Custom attribute writer method with validation
392
+ # @param [Object] branding_map_tiles Value to be assigned
393
+ def branding_map_tiles=(branding_map_tiles)
394
+ if branding_map_tiles.nil?
395
+ fail ArgumentError, 'branding_map_tiles cannot be nil'
396
+ end
397
+
398
+ @branding_map_tiles = branding_map_tiles
399
+ end
400
+
376
401
  # Custom attribute writer method with validation
377
402
  # @param [Object] ui_footer_links Value to be assigned
378
403
  def ui_footer_links=(ui_footer_links)
@@ -425,6 +450,7 @@ module Authentik::Api
425
450
  branding_favicon == o.branding_favicon &&
426
451
  branding_favicon_themed_urls == o.branding_favicon_themed_urls &&
427
452
  branding_custom_css == o.branding_custom_css &&
453
+ branding_map_tiles == o.branding_map_tiles &&
428
454
  ui_footer_links == o.ui_footer_links &&
429
455
  ui_theme == o.ui_theme &&
430
456
  flow_authentication == o.flow_authentication &&
@@ -449,7 +475,7 @@ module Authentik::Api
449
475
  # Calculates hash code according to all attributes.
450
476
  # @return [Integer] Hash code
451
477
  def hash
452
- [matched_domain, branding_title, branding_logo, branding_logo_themed_urls, branding_favicon, branding_favicon_themed_urls, branding_custom_css, ui_footer_links, ui_theme, flow_authentication, flow_user_switch, flow_invalidation, flow_recovery, flow_unenrollment, flow_user_settings, flow_device_code, flow_lockdown, flow_request, default_locale, flags].hash
478
+ [matched_domain, branding_title, branding_logo, branding_logo_themed_urls, branding_favicon, branding_favicon_themed_urls, branding_custom_css, branding_map_tiles, ui_footer_links, ui_theme, flow_authentication, flow_user_switch, flow_invalidation, flow_recovery, flow_unenrollment, flow_user_settings, flow_device_code, flow_lockdown, flow_request, default_locale, flags].hash
453
479
  end
454
480
 
455
481
  # Builds the object from hash
@@ -62,6 +62,9 @@ module Authentik::Api
62
62
  # When enabled, provider will not modify or create objects in the remote system.
63
63
  attr_accessor :dry_run
64
64
 
65
+ # When enabled, authentik will attempt to discover existing resources in the remote system.
66
+ attr_accessor :discovery_enabled
67
+
65
68
  class EnumAttributeValidator
66
69
  attr_reader :datatype
67
70
  attr_reader :allowable_values
@@ -107,7 +110,8 @@ module Authentik::Api
107
110
  :'default_group_email_domain' => :'default_group_email_domain',
108
111
  :'sync_page_size' => :'sync_page_size',
109
112
  :'sync_page_timeout' => :'sync_page_timeout',
110
- :'dry_run' => :'dry_run'
113
+ :'dry_run' => :'dry_run',
114
+ :'discovery_enabled' => :'discovery_enabled'
111
115
  }
112
116
  end
113
117
 
@@ -144,7 +148,8 @@ module Authentik::Api
144
148
  :'default_group_email_domain' => :'String',
145
149
  :'sync_page_size' => :'Integer',
146
150
  :'sync_page_timeout' => :'String',
147
- :'dry_run' => :'Boolean'
151
+ :'dry_run' => :'Boolean',
152
+ :'discovery_enabled' => :'Boolean'
148
153
  }
149
154
  end
150
155
 
@@ -284,6 +289,10 @@ module Authentik::Api
284
289
  if attributes.key?(:'dry_run')
285
290
  self.dry_run = attributes[:'dry_run']
286
291
  end
292
+
293
+ if attributes.key?(:'discovery_enabled')
294
+ self.discovery_enabled = attributes[:'discovery_enabled']
295
+ end
287
296
  end
288
297
 
289
298
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -498,7 +507,8 @@ module Authentik::Api
498
507
  default_group_email_domain == o.default_group_email_domain &&
499
508
  sync_page_size == o.sync_page_size &&
500
509
  sync_page_timeout == o.sync_page_timeout &&
501
- dry_run == o.dry_run
510
+ dry_run == o.dry_run &&
511
+ discovery_enabled == o.discovery_enabled
502
512
  end
503
513
 
504
514
  # @see the `==` method
@@ -510,7 +520,7 @@ module Authentik::Api
510
520
  # Calculates hash code according to all attributes.
511
521
  # @return [Integer] Hash code
512
522
  def hash
513
- [pk, name, property_mappings, property_mappings_group, component, assigned_backchannel_application_slug, assigned_backchannel_application_name, verbose_name, verbose_name_plural, meta_model_name, delegated_subject, credentials, scopes, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, default_group_email_domain, sync_page_size, sync_page_timeout, dry_run].hash
523
+ [pk, name, property_mappings, property_mappings_group, component, assigned_backchannel_application_slug, assigned_backchannel_application_name, verbose_name, verbose_name_plural, meta_model_name, delegated_subject, credentials, scopes, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, default_group_email_domain, sync_page_size, sync_page_timeout, dry_run, discovery_enabled].hash
514
524
  end
515
525
 
516
526
  # Builds the object from hash
@@ -42,6 +42,9 @@ module Authentik::Api
42
42
  # When enabled, provider will not modify or create objects in the remote system.
43
43
  attr_accessor :dry_run
44
44
 
45
+ # When enabled, authentik will attempt to discover existing resources in the remote system.
46
+ attr_accessor :discovery_enabled
47
+
45
48
  class EnumAttributeValidator
46
49
  attr_reader :datatype
47
50
  attr_reader :allowable_values
@@ -80,7 +83,8 @@ module Authentik::Api
80
83
  :'default_group_email_domain' => :'default_group_email_domain',
81
84
  :'sync_page_size' => :'sync_page_size',
82
85
  :'sync_page_timeout' => :'sync_page_timeout',
83
- :'dry_run' => :'dry_run'
86
+ :'dry_run' => :'dry_run',
87
+ :'discovery_enabled' => :'discovery_enabled'
84
88
  }
85
89
  end
86
90
 
@@ -110,7 +114,8 @@ module Authentik::Api
110
114
  :'default_group_email_domain' => :'String',
111
115
  :'sync_page_size' => :'Integer',
112
116
  :'sync_page_timeout' => :'String',
113
- :'dry_run' => :'Boolean'
117
+ :'dry_run' => :'Boolean',
118
+ :'discovery_enabled' => :'Boolean'
114
119
  }
115
120
  end
116
121
 
@@ -206,6 +211,10 @@ module Authentik::Api
206
211
  if attributes.key?(:'dry_run')
207
212
  self.dry_run = attributes[:'dry_run']
208
213
  end
214
+
215
+ if attributes.key?(:'discovery_enabled')
216
+ self.discovery_enabled = attributes[:'discovery_enabled']
217
+ end
209
218
  end
210
219
 
211
220
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -403,7 +412,8 @@ module Authentik::Api
403
412
  default_group_email_domain == o.default_group_email_domain &&
404
413
  sync_page_size == o.sync_page_size &&
405
414
  sync_page_timeout == o.sync_page_timeout &&
406
- dry_run == o.dry_run
415
+ dry_run == o.dry_run &&
416
+ discovery_enabled == o.discovery_enabled
407
417
  end
408
418
 
409
419
  # @see the `==` method
@@ -415,7 +425,7 @@ module Authentik::Api
415
425
  # Calculates hash code according to all attributes.
416
426
  # @return [Integer] Hash code
417
427
  def hash
418
- [name, property_mappings, property_mappings_group, delegated_subject, credentials, scopes, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, default_group_email_domain, sync_page_size, sync_page_timeout, dry_run].hash
428
+ [name, property_mappings, property_mappings_group, delegated_subject, credentials, scopes, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, default_group_email_domain, sync_page_size, sync_page_timeout, dry_run, discovery_enabled].hash
419
429
  end
420
430
 
421
431
  # Builds the object from hash
@@ -54,6 +54,9 @@ module Authentik::Api
54
54
  # Controls the number of objects synced in a single task
55
55
  attr_accessor :sync_page_size
56
56
 
57
+ # When enabled, authentik will attempt to discover existing resources in the remote system.
58
+ attr_accessor :discovery_enabled
59
+
57
60
  # Timeout for synchronization of a single page
58
61
  attr_accessor :sync_page_timeout
59
62
 
@@ -103,6 +106,7 @@ module Authentik::Api
103
106
  :'user_delete_action' => :'user_delete_action',
104
107
  :'group_delete_action' => :'group_delete_action',
105
108
  :'sync_page_size' => :'sync_page_size',
109
+ :'discovery_enabled' => :'discovery_enabled',
106
110
  :'sync_page_timeout' => :'sync_page_timeout',
107
111
  :'dry_run' => :'dry_run'
108
112
  }
@@ -139,6 +143,7 @@ module Authentik::Api
139
143
  :'user_delete_action' => :'OutgoingSyncDeleteAction',
140
144
  :'group_delete_action' => :'OutgoingSyncDeleteAction',
141
145
  :'sync_page_size' => :'Integer',
146
+ :'discovery_enabled' => :'Boolean',
142
147
  :'sync_page_timeout' => :'String',
143
148
  :'dry_run' => :'Boolean'
144
149
  }
@@ -267,6 +272,10 @@ module Authentik::Api
267
272
  self.sync_page_size = attributes[:'sync_page_size']
268
273
  end
269
274
 
275
+ if attributes.key?(:'discovery_enabled')
276
+ self.discovery_enabled = attributes[:'discovery_enabled']
277
+ end
278
+
270
279
  if attributes.key?(:'sync_page_timeout')
271
280
  self.sync_page_timeout = attributes[:'sync_page_timeout']
272
281
  end
@@ -477,6 +486,7 @@ module Authentik::Api
477
486
  user_delete_action == o.user_delete_action &&
478
487
  group_delete_action == o.group_delete_action &&
479
488
  sync_page_size == o.sync_page_size &&
489
+ discovery_enabled == o.discovery_enabled &&
480
490
  sync_page_timeout == o.sync_page_timeout &&
481
491
  dry_run == o.dry_run
482
492
  end
@@ -490,7 +500,7 @@ module Authentik::Api
490
500
  # Calculates hash code according to all attributes.
491
501
  # @return [Integer] Hash code
492
502
  def hash
493
- [pk, name, property_mappings, property_mappings_group, component, assigned_backchannel_application_slug, assigned_backchannel_application_name, verbose_name, verbose_name_plural, meta_model_name, client_id, client_secret, tenant_id, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, sync_page_size, sync_page_timeout, dry_run].hash
503
+ [pk, name, property_mappings, property_mappings_group, component, assigned_backchannel_application_slug, assigned_backchannel_application_name, verbose_name, verbose_name_plural, meta_model_name, client_id, client_secret, tenant_id, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, sync_page_size, discovery_enabled, sync_page_timeout, dry_run].hash
494
504
  end
495
505
 
496
506
  # Builds the object from hash
@@ -34,6 +34,9 @@ module Authentik::Api
34
34
  # Controls the number of objects synced in a single task
35
35
  attr_accessor :sync_page_size
36
36
 
37
+ # When enabled, authentik will attempt to discover existing resources in the remote system.
38
+ attr_accessor :discovery_enabled
39
+
37
40
  # Timeout for synchronization of a single page
38
41
  attr_accessor :sync_page_timeout
39
42
 
@@ -76,6 +79,7 @@ module Authentik::Api
76
79
  :'user_delete_action' => :'user_delete_action',
77
80
  :'group_delete_action' => :'group_delete_action',
78
81
  :'sync_page_size' => :'sync_page_size',
82
+ :'discovery_enabled' => :'discovery_enabled',
79
83
  :'sync_page_timeout' => :'sync_page_timeout',
80
84
  :'dry_run' => :'dry_run'
81
85
  }
@@ -105,6 +109,7 @@ module Authentik::Api
105
109
  :'user_delete_action' => :'OutgoingSyncDeleteAction',
106
110
  :'group_delete_action' => :'OutgoingSyncDeleteAction',
107
111
  :'sync_page_size' => :'Integer',
112
+ :'discovery_enabled' => :'Boolean',
108
113
  :'sync_page_timeout' => :'String',
109
114
  :'dry_run' => :'Boolean'
110
115
  }
@@ -189,6 +194,10 @@ module Authentik::Api
189
194
  self.sync_page_size = attributes[:'sync_page_size']
190
195
  end
191
196
 
197
+ if attributes.key?(:'discovery_enabled')
198
+ self.discovery_enabled = attributes[:'discovery_enabled']
199
+ end
200
+
192
201
  if attributes.key?(:'sync_page_timeout')
193
202
  self.sync_page_timeout = attributes[:'sync_page_timeout']
194
203
  end
@@ -372,6 +381,7 @@ module Authentik::Api
372
381
  user_delete_action == o.user_delete_action &&
373
382
  group_delete_action == o.group_delete_action &&
374
383
  sync_page_size == o.sync_page_size &&
384
+ discovery_enabled == o.discovery_enabled &&
375
385
  sync_page_timeout == o.sync_page_timeout &&
376
386
  dry_run == o.dry_run
377
387
  end
@@ -385,7 +395,7 @@ module Authentik::Api
385
395
  # Calculates hash code according to all attributes.
386
396
  # @return [Integer] Hash code
387
397
  def hash
388
- [name, property_mappings, property_mappings_group, client_id, client_secret, tenant_id, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, sync_page_size, sync_page_timeout, dry_run].hash
398
+ [name, property_mappings, property_mappings_group, client_id, client_secret, tenant_id, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, sync_page_size, discovery_enabled, sync_page_timeout, dry_run].hash
389
399
  end
390
400
 
391
401
  # Builds the object from hash
@@ -24,6 +24,8 @@ module Authentik::Api
24
24
 
25
25
  attr_accessor :jwks
26
26
 
27
+ attr_accessor :dcr_registration
28
+
27
29
  # Attribute mapping from ruby-style variable name to JSON key.
28
30
  def self.attribute_map
29
31
  {
@@ -33,7 +35,8 @@ module Authentik::Api
33
35
  :'user_info' => :'user_info',
34
36
  :'provider_info' => :'provider_info',
35
37
  :'logout' => :'logout',
36
- :'jwks' => :'jwks'
38
+ :'jwks' => :'jwks',
39
+ :'dcr_registration' => :'dcr_registration'
37
40
  }
38
41
  end
39
42
 
@@ -56,13 +59,15 @@ module Authentik::Api
56
59
  :'user_info' => :'String',
57
60
  :'provider_info' => :'String',
58
61
  :'logout' => :'String',
59
- :'jwks' => :'String'
62
+ :'jwks' => :'String',
63
+ :'dcr_registration' => :'String'
60
64
  }
61
65
  end
62
66
 
63
67
  # List of attributes with nullable: true
64
68
  def self.openapi_nullable
65
69
  Set.new([
70
+ :'dcr_registration'
66
71
  ])
67
72
  end
68
73
 
@@ -123,6 +128,12 @@ module Authentik::Api
123
128
  else
124
129
  self.jwks = nil
125
130
  end
131
+
132
+ if attributes.key?(:'dcr_registration')
133
+ self.dcr_registration = attributes[:'dcr_registration']
134
+ else
135
+ self.dcr_registration = nil
136
+ end
126
137
  end
127
138
 
128
139
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -256,7 +267,8 @@ module Authentik::Api
256
267
  user_info == o.user_info &&
257
268
  provider_info == o.provider_info &&
258
269
  logout == o.logout &&
259
- jwks == o.jwks
270
+ jwks == o.jwks &&
271
+ dcr_registration == o.dcr_registration
260
272
  end
261
273
 
262
274
  # @see the `==` method
@@ -268,7 +280,7 @@ module Authentik::Api
268
280
  # Calculates hash code according to all attributes.
269
281
  # @return [Integer] Hash code
270
282
  def hash
271
- [issuer, authorize, token, user_info, provider_info, logout, jwks].hash
283
+ [issuer, authorize, token, user_info, provider_info, logout, jwks, dcr_registration].hash
272
284
  end
273
285
 
274
286
  # Builds the object from hash
@@ -25,6 +25,9 @@ module Authentik::Api
25
25
 
26
26
  attr_accessor :branding_default_flow_background
27
27
 
28
+ # URL template for the vector tile source used by the events map. Supports XYZ templates with {z}, {x} and {y} placeholders, or pmtiles:// archive URLs. When empty, the frontend uses the bundled hexworld basemap. This value is part of the brand information served to unauthenticated clients; do not embed API keys or other credentials in it.
29
+ attr_accessor :branding_map_tiles
30
+
28
31
  attr_accessor :flow_authentication
29
32
 
30
33
  attr_accessor :flow_user_switch
@@ -64,6 +67,7 @@ module Authentik::Api
64
67
  :'branding_favicon' => :'branding_favicon',
65
68
  :'branding_custom_css' => :'branding_custom_css',
66
69
  :'branding_default_flow_background' => :'branding_default_flow_background',
70
+ :'branding_map_tiles' => :'branding_map_tiles',
67
71
  :'flow_authentication' => :'flow_authentication',
68
72
  :'flow_user_switch' => :'flow_user_switch',
69
73
  :'flow_invalidation' => :'flow_invalidation',
@@ -100,6 +104,7 @@ module Authentik::Api
100
104
  :'branding_favicon' => :'String',
101
105
  :'branding_custom_css' => :'String',
102
106
  :'branding_default_flow_background' => :'String',
107
+ :'branding_map_tiles' => :'String',
103
108
  :'flow_authentication' => :'String',
104
109
  :'flow_user_switch' => :'String',
105
110
  :'flow_invalidation' => :'String',
@@ -177,6 +182,10 @@ module Authentik::Api
177
182
  self.branding_default_flow_background = attributes[:'branding_default_flow_background']
178
183
  end
179
184
 
185
+ if attributes.key?(:'branding_map_tiles')
186
+ self.branding_map_tiles = attributes[:'branding_map_tiles']
187
+ end
188
+
180
189
  if attributes.key?(:'flow_authentication')
181
190
  self.flow_authentication = attributes[:'flow_authentication']
182
191
  end
@@ -356,6 +365,7 @@ module Authentik::Api
356
365
  branding_favicon == o.branding_favicon &&
357
366
  branding_custom_css == o.branding_custom_css &&
358
367
  branding_default_flow_background == o.branding_default_flow_background &&
368
+ branding_map_tiles == o.branding_map_tiles &&
359
369
  flow_authentication == o.flow_authentication &&
360
370
  flow_user_switch == o.flow_user_switch &&
361
371
  flow_invalidation == o.flow_invalidation &&
@@ -380,7 +390,7 @@ module Authentik::Api
380
390
  # Calculates hash code according to all attributes.
381
391
  # @return [Integer] Hash code
382
392
  def hash
383
- [domain, default, branding_title, branding_logo, branding_favicon, branding_custom_css, branding_default_flow_background, flow_authentication, flow_user_switch, flow_invalidation, flow_recovery, flow_unenrollment, flow_user_settings, flow_device_code, flow_lockdown, flow_request, default_application, web_certificate, client_certificates, attributes].hash
393
+ [domain, default, branding_title, branding_logo, branding_favicon, branding_custom_css, branding_default_flow_background, branding_map_tiles, flow_authentication, flow_user_switch, flow_invalidation, flow_recovery, flow_unenrollment, flow_user_settings, flow_device_code, flow_lockdown, flow_request, default_application, web_certificate, client_certificates, attributes].hash
384
394
  end
385
395
 
386
396
  # Builds the object from hash
@@ -42,6 +42,9 @@ module Authentik::Api
42
42
  # When enabled, provider will not modify or create objects in the remote system.
43
43
  attr_accessor :dry_run
44
44
 
45
+ # When enabled, authentik will attempt to discover existing resources in the remote system.
46
+ attr_accessor :discovery_enabled
47
+
45
48
  class EnumAttributeValidator
46
49
  attr_reader :datatype
47
50
  attr_reader :allowable_values
@@ -80,7 +83,8 @@ module Authentik::Api
80
83
  :'default_group_email_domain' => :'default_group_email_domain',
81
84
  :'sync_page_size' => :'sync_page_size',
82
85
  :'sync_page_timeout' => :'sync_page_timeout',
83
- :'dry_run' => :'dry_run'
86
+ :'dry_run' => :'dry_run',
87
+ :'discovery_enabled' => :'discovery_enabled'
84
88
  }
85
89
  end
86
90
 
@@ -110,7 +114,8 @@ module Authentik::Api
110
114
  :'default_group_email_domain' => :'String',
111
115
  :'sync_page_size' => :'Integer',
112
116
  :'sync_page_timeout' => :'String',
113
- :'dry_run' => :'Boolean'
117
+ :'dry_run' => :'Boolean',
118
+ :'discovery_enabled' => :'Boolean'
114
119
  }
115
120
  end
116
121
 
@@ -198,6 +203,10 @@ module Authentik::Api
198
203
  if attributes.key?(:'dry_run')
199
204
  self.dry_run = attributes[:'dry_run']
200
205
  end
206
+
207
+ if attributes.key?(:'discovery_enabled')
208
+ self.discovery_enabled = attributes[:'discovery_enabled']
209
+ end
201
210
  end
202
211
 
203
212
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -365,7 +374,8 @@ module Authentik::Api
365
374
  default_group_email_domain == o.default_group_email_domain &&
366
375
  sync_page_size == o.sync_page_size &&
367
376
  sync_page_timeout == o.sync_page_timeout &&
368
- dry_run == o.dry_run
377
+ dry_run == o.dry_run &&
378
+ discovery_enabled == o.discovery_enabled
369
379
  end
370
380
 
371
381
  # @see the `==` method
@@ -377,7 +387,7 @@ module Authentik::Api
377
387
  # Calculates hash code according to all attributes.
378
388
  # @return [Integer] Hash code
379
389
  def hash
380
- [name, property_mappings, property_mappings_group, delegated_subject, credentials, scopes, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, default_group_email_domain, sync_page_size, sync_page_timeout, dry_run].hash
390
+ [name, property_mappings, property_mappings_group, delegated_subject, credentials, scopes, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, default_group_email_domain, sync_page_size, sync_page_timeout, dry_run, discovery_enabled].hash
381
391
  end
382
392
 
383
393
  # Builds the object from hash
@@ -34,6 +34,9 @@ module Authentik::Api
34
34
  # Controls the number of objects synced in a single task
35
35
  attr_accessor :sync_page_size
36
36
 
37
+ # When enabled, authentik will attempt to discover existing resources in the remote system.
38
+ attr_accessor :discovery_enabled
39
+
37
40
  # Timeout for synchronization of a single page
38
41
  attr_accessor :sync_page_timeout
39
42
 
@@ -76,6 +79,7 @@ module Authentik::Api
76
79
  :'user_delete_action' => :'user_delete_action',
77
80
  :'group_delete_action' => :'group_delete_action',
78
81
  :'sync_page_size' => :'sync_page_size',
82
+ :'discovery_enabled' => :'discovery_enabled',
79
83
  :'sync_page_timeout' => :'sync_page_timeout',
80
84
  :'dry_run' => :'dry_run'
81
85
  }
@@ -105,6 +109,7 @@ module Authentik::Api
105
109
  :'user_delete_action' => :'OutgoingSyncDeleteAction',
106
110
  :'group_delete_action' => :'OutgoingSyncDeleteAction',
107
111
  :'sync_page_size' => :'Integer',
112
+ :'discovery_enabled' => :'Boolean',
108
113
  :'sync_page_timeout' => :'String',
109
114
  :'dry_run' => :'Boolean'
110
115
  }
@@ -181,6 +186,10 @@ module Authentik::Api
181
186
  self.sync_page_size = attributes[:'sync_page_size']
182
187
  end
183
188
 
189
+ if attributes.key?(:'discovery_enabled')
190
+ self.discovery_enabled = attributes[:'discovery_enabled']
191
+ end
192
+
184
193
  if attributes.key?(:'sync_page_timeout')
185
194
  self.sync_page_timeout = attributes[:'sync_page_timeout']
186
195
  end
@@ -344,6 +353,7 @@ module Authentik::Api
344
353
  user_delete_action == o.user_delete_action &&
345
354
  group_delete_action == o.group_delete_action &&
346
355
  sync_page_size == o.sync_page_size &&
356
+ discovery_enabled == o.discovery_enabled &&
347
357
  sync_page_timeout == o.sync_page_timeout &&
348
358
  dry_run == o.dry_run
349
359
  end
@@ -357,7 +367,7 @@ module Authentik::Api
357
367
  # Calculates hash code according to all attributes.
358
368
  # @return [Integer] Hash code
359
369
  def hash
360
- [name, property_mappings, property_mappings_group, client_id, client_secret, tenant_id, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, sync_page_size, sync_page_timeout, dry_run].hash
370
+ [name, property_mappings, property_mappings_group, client_id, client_secret, tenant_id, exclude_users_service_account, filter_group, user_delete_action, group_delete_action, sync_page_size, discovery_enabled, sync_page_timeout, dry_run].hash
361
371
  end
362
372
 
363
373
  # Builds the object from hash
@@ -47,6 +47,9 @@ module Authentik::Api
47
47
  # Timeout for synchronization of a single page
48
48
  attr_accessor :sync_page_timeout
49
49
 
50
+ # When enabled, authentik will attempt to discover existing resources in the remote system.
51
+ attr_accessor :discovery_enabled
52
+
50
53
  # Group filters used to define sync-scope for groups.
51
54
  attr_accessor :group_filters
52
55
 
@@ -92,6 +95,7 @@ module Authentik::Api
92
95
  :'exclude_users_service_account' => :'exclude_users_service_account',
93
96
  :'sync_page_size' => :'sync_page_size',
94
97
  :'sync_page_timeout' => :'sync_page_timeout',
98
+ :'discovery_enabled' => :'discovery_enabled',
95
99
  :'group_filters' => :'group_filters',
96
100
  :'dry_run' => :'dry_run'
97
101
  }
@@ -124,6 +128,7 @@ module Authentik::Api
124
128
  :'exclude_users_service_account' => :'Boolean',
125
129
  :'sync_page_size' => :'Integer',
126
130
  :'sync_page_timeout' => :'String',
131
+ :'discovery_enabled' => :'Boolean',
127
132
  :'group_filters' => :'Array<String>',
128
133
  :'dry_run' => :'Boolean'
129
134
  }
@@ -214,6 +219,10 @@ module Authentik::Api
214
219
  self.sync_page_timeout = attributes[:'sync_page_timeout']
215
220
  end
216
221
 
222
+ if attributes.key?(:'discovery_enabled')
223
+ self.discovery_enabled = attributes[:'discovery_enabled']
224
+ end
225
+
217
226
  if attributes.key?(:'group_filters')
218
227
  if (value = attributes[:'group_filters']).is_a?(Array)
219
228
  self.group_filters = value
@@ -363,6 +372,7 @@ module Authentik::Api
363
372
  exclude_users_service_account == o.exclude_users_service_account &&
364
373
  sync_page_size == o.sync_page_size &&
365
374
  sync_page_timeout == o.sync_page_timeout &&
375
+ discovery_enabled == o.discovery_enabled &&
366
376
  group_filters == o.group_filters &&
367
377
  dry_run == o.dry_run
368
378
  end
@@ -376,7 +386,7 @@ module Authentik::Api
376
386
  # Calculates hash code according to all attributes.
377
387
  # @return [Integer] Hash code
378
388
  def hash
379
- [name, property_mappings, property_mappings_group, url, verify_certificates, token, auth_mode, auth_oauth, auth_oauth_params, compatibility_mode, service_provider_config_cache_timeout, exclude_users_service_account, sync_page_size, sync_page_timeout, group_filters, dry_run].hash
389
+ [name, property_mappings, property_mappings_group, url, verify_certificates, token, auth_mode, auth_oauth, auth_oauth_params, compatibility_mode, service_provider_config_cache_timeout, exclude_users_service_account, sync_page_size, sync_page_timeout, discovery_enabled, group_filters, dry_run].hash
380
390
  end
381
391
 
382
392
  # Builds the object from hash
@@ -75,6 +75,9 @@ module Authentik::Api
75
75
  # Timeout for synchronization of a single page
76
76
  attr_accessor :sync_page_timeout
77
77
 
78
+ # When enabled, authentik will attempt to discover existing resources in the remote system.
79
+ attr_accessor :discovery_enabled
80
+
78
81
  # Group filters used to define sync-scope for groups.
79
82
  attr_accessor :group_filters
80
83
 
@@ -131,6 +134,7 @@ module Authentik::Api
131
134
  :'exclude_users_service_account' => :'exclude_users_service_account',
132
135
  :'sync_page_size' => :'sync_page_size',
133
136
  :'sync_page_timeout' => :'sync_page_timeout',
137
+ :'discovery_enabled' => :'discovery_enabled',
134
138
  :'group_filters' => :'group_filters',
135
139
  :'dry_run' => :'dry_run'
136
140
  }
@@ -174,6 +178,7 @@ module Authentik::Api
174
178
  :'exclude_users_service_account' => :'Boolean',
175
179
  :'sync_page_size' => :'Integer',
176
180
  :'sync_page_timeout' => :'String',
181
+ :'discovery_enabled' => :'Boolean',
177
182
  :'group_filters' => :'Array<String>',
178
183
  :'dry_run' => :'Boolean'
179
184
  }
@@ -340,6 +345,10 @@ module Authentik::Api
340
345
  self.sync_page_timeout = attributes[:'sync_page_timeout']
341
346
  end
342
347
 
348
+ if attributes.key?(:'discovery_enabled')
349
+ self.discovery_enabled = attributes[:'discovery_enabled']
350
+ end
351
+
343
352
  if attributes.key?(:'group_filters')
344
353
  if (value = attributes[:'group_filters']).is_a?(Array)
345
354
  self.group_filters = value
@@ -529,6 +538,7 @@ module Authentik::Api
529
538
  exclude_users_service_account == o.exclude_users_service_account &&
530
539
  sync_page_size == o.sync_page_size &&
531
540
  sync_page_timeout == o.sync_page_timeout &&
541
+ discovery_enabled == o.discovery_enabled &&
532
542
  group_filters == o.group_filters &&
533
543
  dry_run == o.dry_run
534
544
  end
@@ -542,7 +552,7 @@ module Authentik::Api
542
552
  # Calculates hash code according to all attributes.
543
553
  # @return [Integer] Hash code
544
554
  def hash
545
- [pk, name, property_mappings, property_mappings_group, component, assigned_backchannel_application_slug, assigned_backchannel_application_name, verbose_name, verbose_name_plural, meta_model_name, url, verify_certificates, token, auth_mode, auth_oauth, auth_oauth_params, auth_oauth_token_last_updated, auth_oauth_token_expires, auth_oauth_url_callback, auth_oauth_url_start, compatibility_mode, service_provider_config_cache_timeout, exclude_users_service_account, sync_page_size, sync_page_timeout, group_filters, dry_run].hash
555
+ [pk, name, property_mappings, property_mappings_group, component, assigned_backchannel_application_slug, assigned_backchannel_application_name, verbose_name, verbose_name_plural, meta_model_name, url, verify_certificates, token, auth_mode, auth_oauth, auth_oauth_params, auth_oauth_token_last_updated, auth_oauth_token_expires, auth_oauth_url_callback, auth_oauth_url_start, compatibility_mode, service_provider_config_cache_timeout, exclude_users_service_account, sync_page_size, sync_page_timeout, discovery_enabled, group_filters, dry_run].hash
546
556
  end
547
557
 
548
558
  # Builds the object from hash
@@ -47,6 +47,9 @@ module Authentik::Api
47
47
  # Timeout for synchronization of a single page
48
48
  attr_accessor :sync_page_timeout
49
49
 
50
+ # When enabled, authentik will attempt to discover existing resources in the remote system.
51
+ attr_accessor :discovery_enabled
52
+
50
53
  # Group filters used to define sync-scope for groups.
51
54
  attr_accessor :group_filters
52
55
 
@@ -92,6 +95,7 @@ module Authentik::Api
92
95
  :'exclude_users_service_account' => :'exclude_users_service_account',
93
96
  :'sync_page_size' => :'sync_page_size',
94
97
  :'sync_page_timeout' => :'sync_page_timeout',
98
+ :'discovery_enabled' => :'discovery_enabled',
95
99
  :'group_filters' => :'group_filters',
96
100
  :'dry_run' => :'dry_run'
97
101
  }
@@ -124,6 +128,7 @@ module Authentik::Api
124
128
  :'exclude_users_service_account' => :'Boolean',
125
129
  :'sync_page_size' => :'Integer',
126
130
  :'sync_page_timeout' => :'String',
131
+ :'discovery_enabled' => :'Boolean',
127
132
  :'group_filters' => :'Array<String>',
128
133
  :'dry_run' => :'Boolean'
129
134
  }
@@ -218,6 +223,10 @@ module Authentik::Api
218
223
  self.sync_page_timeout = attributes[:'sync_page_timeout']
219
224
  end
220
225
 
226
+ if attributes.key?(:'discovery_enabled')
227
+ self.discovery_enabled = attributes[:'discovery_enabled']
228
+ end
229
+
221
230
  if attributes.key?(:'group_filters')
222
231
  if (value = attributes[:'group_filters']).is_a?(Array)
223
232
  self.group_filters = value
@@ -377,6 +386,7 @@ module Authentik::Api
377
386
  exclude_users_service_account == o.exclude_users_service_account &&
378
387
  sync_page_size == o.sync_page_size &&
379
388
  sync_page_timeout == o.sync_page_timeout &&
389
+ discovery_enabled == o.discovery_enabled &&
380
390
  group_filters == o.group_filters &&
381
391
  dry_run == o.dry_run
382
392
  end
@@ -390,7 +400,7 @@ module Authentik::Api
390
400
  # Calculates hash code according to all attributes.
391
401
  # @return [Integer] Hash code
392
402
  def hash
393
- [name, property_mappings, property_mappings_group, url, verify_certificates, token, auth_mode, auth_oauth, auth_oauth_params, compatibility_mode, service_provider_config_cache_timeout, exclude_users_service_account, sync_page_size, sync_page_timeout, group_filters, dry_run].hash
403
+ [name, property_mappings, property_mappings_group, url, verify_certificates, token, auth_mode, auth_oauth, auth_oauth_params, compatibility_mode, service_provider_config_cache_timeout, exclude_users_service_account, sync_page_size, sync_page_timeout, discovery_enabled, group_filters, dry_run].hash
394
404
  end
395
405
 
396
406
  # Builds the object from hash
@@ -6,6 +6,6 @@ Any manual changes will be lost when the OpenAPI scheme changes.
6
6
 
7
7
  module Authentik
8
8
  module Api
9
- VERSION = '2026.8.0.rc1'
9
+ VERSION = '2026.8.0.rc3'
10
10
  end
11
11
  end
@@ -63,6 +63,12 @@ describe Authentik::Api::BrandRequest do
63
63
  end
64
64
  end
65
65
 
66
+ describe 'test attribute "branding_map_tiles"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
66
72
  describe 'test attribute "flow_authentication"' do
67
73
  it 'should work' do
68
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -69,6 +69,12 @@ describe Authentik::Api::Brand do
69
69
  end
70
70
  end
71
71
 
72
+ describe 'test attribute "branding_map_tiles"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ end
76
+ end
77
+
72
78
  describe 'test attribute "flow_authentication"' do
73
79
  it 'should work' do
74
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -63,6 +63,12 @@ describe Authentik::Api::CurrentBrand do
63
63
  end
64
64
  end
65
65
 
66
+ describe 'test attribute "branding_map_tiles"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
66
72
  describe 'test attribute "ui_footer_links"' do
67
73
  it 'should work' do
68
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -105,4 +105,10 @@ describe Authentik::Api::GoogleWorkspaceProviderRequest do
105
105
  end
106
106
  end
107
107
 
108
+ describe 'test attribute "discovery_enabled"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
108
114
  end
@@ -147,4 +147,10 @@ describe Authentik::Api::GoogleWorkspaceProvider do
147
147
  end
148
148
  end
149
149
 
150
+ describe 'test attribute "discovery_enabled"' do
151
+ it 'should work' do
152
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
153
+ end
154
+ end
155
+
150
156
  end
@@ -87,6 +87,12 @@ describe Authentik::Api::MicrosoftEntraProviderRequest do
87
87
  end
88
88
  end
89
89
 
90
+ describe 'test attribute "discovery_enabled"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
90
96
  describe 'test attribute "sync_page_timeout"' do
91
97
  it 'should work' do
92
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -129,6 +129,12 @@ describe Authentik::Api::MicrosoftEntraProvider do
129
129
  end
130
130
  end
131
131
 
132
+ describe 'test attribute "discovery_enabled"' do
133
+ it 'should work' do
134
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
135
+ end
136
+ end
137
+
132
138
  describe 'test attribute "sync_page_timeout"' do
133
139
  it 'should work' do
134
140
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -63,4 +63,10 @@ describe Authentik::Api::OAuth2ProviderSetupURLs do
63
63
  end
64
64
  end
65
65
 
66
+ describe 'test attribute "dcr_registration"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
66
72
  end
@@ -63,6 +63,12 @@ describe Authentik::Api::PatchedBrandRequest do
63
63
  end
64
64
  end
65
65
 
66
+ describe 'test attribute "branding_map_tiles"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
66
72
  describe 'test attribute "flow_authentication"' do
67
73
  it 'should work' do
68
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -105,4 +105,10 @@ describe Authentik::Api::PatchedGoogleWorkspaceProviderRequest do
105
105
  end
106
106
  end
107
107
 
108
+ describe 'test attribute "discovery_enabled"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
108
114
  end
@@ -87,6 +87,12 @@ describe Authentik::Api::PatchedMicrosoftEntraProviderRequest do
87
87
  end
88
88
  end
89
89
 
90
+ describe 'test attribute "discovery_enabled"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
90
96
  describe 'test attribute "sync_page_timeout"' do
91
97
  it 'should work' do
92
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -105,6 +105,12 @@ describe Authentik::Api::PatchedSCIMProviderRequest do
105
105
  end
106
106
  end
107
107
 
108
+ describe 'test attribute "discovery_enabled"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
108
114
  describe 'test attribute "group_filters"' do
109
115
  it 'should work' do
110
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -105,6 +105,12 @@ describe Authentik::Api::SCIMProviderRequest do
105
105
  end
106
106
  end
107
107
 
108
+ describe 'test attribute "discovery_enabled"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
108
114
  describe 'test attribute "group_filters"' do
109
115
  it 'should work' do
110
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -171,6 +171,12 @@ describe Authentik::Api::SCIMProvider do
171
171
  end
172
172
  end
173
173
 
174
+ describe 'test attribute "discovery_enabled"' do
175
+ it 'should work' do
176
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
177
+ end
178
+ end
179
+
174
180
  describe 'test attribute "group_filters"' do
175
181
  it 'should work' do
176
182
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authentik-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 2026.8.0.rc1
4
+ version: 2026.8.0.rc3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Uhlig