authentik-api 2026.8.0.rc2 → 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.
- checksums.yaml +4 -4
- data/README_API.md +5 -5
- data/lib/authentik/api/models/google_workspace_provider.rb +14 -4
- data/lib/authentik/api/models/google_workspace_provider_request.rb +14 -4
- data/lib/authentik/api/models/microsoft_entra_provider.rb +11 -1
- data/lib/authentik/api/models/microsoft_entra_provider_request.rb +11 -1
- data/lib/authentik/api/models/patched_google_workspace_provider_request.rb +14 -4
- data/lib/authentik/api/models/patched_microsoft_entra_provider_request.rb +11 -1
- data/lib/authentik/api/models/patched_scim_provider_request.rb +11 -1
- data/lib/authentik/api/models/scim_provider.rb +11 -1
- data/lib/authentik/api/models/scim_provider_request.rb +11 -1
- data/lib/authentik/api/version.rb +1 -1
- data/spec/models/google_workspace_provider_request_spec.rb +6 -0
- data/spec/models/google_workspace_provider_spec.rb +6 -0
- data/spec/models/microsoft_entra_provider_request_spec.rb +6 -0
- data/spec/models/microsoft_entra_provider_spec.rb +6 -0
- data/spec/models/patched_google_workspace_provider_request_spec.rb +6 -0
- data/spec/models/patched_microsoft_entra_provider_request_spec.rb +6 -0
- data/spec/models/patched_scim_provider_request_spec.rb +6 -0
- data/spec/models/scim_provider_request_spec.rb +6 -0
- data/spec/models/scim_provider_spec.rb +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed42d69d6b3dbe3cc3fed01847ecac66222020edccae9f1a6c4565e337ec3467
|
|
4
|
+
data.tar.gz: adbd845dd0b5f578dace882d0d1a27b3298a8439266183f581ea395b2dcd01b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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-
|
|
10
|
-
- Package version: 2026.8.0.
|
|
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.
|
|
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.
|
|
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.
|
|
36
|
+
gem 'authentik-api', '~> 2026.8.0.rc3'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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/
|
|
@@ -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/
|