akeyless 3.3.11 → 3.3.13

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 (39) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -1
  3. data/docs/AccessPermissionAssignment.md +20 -0
  4. data/docs/AuthMethodRoleAssociation.md +2 -0
  5. data/docs/CreateAuthMethodEmail.md +36 -0
  6. data/docs/CreateAuthMethodEmailOutput.md +18 -0
  7. data/docs/CreatePKICertIssuer.md +2 -0
  8. data/docs/EsmDeleteSecretOutput.md +18 -0
  9. data/docs/EsmGetSecretOutput.md +2 -0
  10. data/docs/EsmUpdateSecretOutput.md +2 -0
  11. data/docs/GoogleChronicleForwardingConfig.md +24 -0
  12. data/docs/ItemGeneralInfo.md +2 -0
  13. data/docs/LogForwardingConfigPart.md +2 -0
  14. data/docs/OidcClientInfo.md +34 -0
  15. data/docs/UpdatePKICertIssuer.md +2 -0
  16. data/docs/V2Api.md +319 -4
  17. data/lib/akeyless/api/v2_api.rb +323 -3
  18. data/lib/akeyless/models/access_permission_assignment.rb +230 -0
  19. data/lib/akeyless/models/auth_method_role_association.rb +10 -1
  20. data/lib/akeyless/models/create_auth_method_email.rb +331 -0
  21. data/lib/akeyless/models/create_auth_method_email_output.rb +219 -0
  22. data/lib/akeyless/models/create_pki_cert_issuer.rb +11 -1
  23. data/lib/akeyless/models/esm_delete_secret_output.rb +219 -0
  24. data/lib/akeyless/models/esm_get_secret_output.rb +10 -1
  25. data/lib/akeyless/models/esm_update_secret_output.rb +10 -1
  26. data/lib/akeyless/models/google_chronicle_forwarding_config.rb +246 -0
  27. data/lib/akeyless/models/item_general_info.rb +10 -1
  28. data/lib/akeyless/models/log_forwarding_config_part.rb +10 -1
  29. data/lib/akeyless/models/oidc_client_info.rb +305 -0
  30. data/lib/akeyless/models/update_pki_cert_issuer.rb +11 -1
  31. data/lib/akeyless/version.rb +1 -1
  32. data/lib/akeyless.rb +6 -0
  33. data/spec/models/access_permission_assignment_spec.rb +40 -0
  34. data/spec/models/create_auth_method_email_output_spec.rb +34 -0
  35. data/spec/models/create_auth_method_email_spec.rb +88 -0
  36. data/spec/models/esm_delete_secret_output_spec.rb +34 -0
  37. data/spec/models/google_chronicle_forwarding_config_spec.rb +52 -0
  38. data/spec/models/oidc_client_info_spec.rb +82 -0
  39. metadata +649 -625
@@ -0,0 +1,82 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 2.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.0.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::OidcClientInfo
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::OidcClientInfo do
21
+ let(:instance) { Akeyless::OidcClientInfo.new }
22
+
23
+ describe 'test an instance of OidcClientInfo' do
24
+ it 'should create an instance of OidcClientInfo' do
25
+ expect(instance).to be_instance_of(Akeyless::OidcClientInfo)
26
+ end
27
+ end
28
+ describe 'test attribute "access_permission_assignment"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "audience"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "client_id"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "grant_types"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "logout_uris"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "public"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "redirect_uris"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "response_types"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "scopes"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
79
+ end
80
+ end
81
+
82
+ end