akeyless 3.3.4 → 3.3.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -1
  3. data/docs/CertificateTemplateInfo.md +32 -0
  4. data/docs/CreateClassicKey.md +16 -0
  5. data/docs/CreateDFCKey.md +16 -0
  6. data/docs/CreateKey.md +16 -0
  7. data/docs/DSProducerDetails.md +8 -2
  8. data/docs/DeriveKey.md +40 -0
  9. data/docs/DeriveKeyOutput.md +20 -0
  10. data/docs/EventAction.md +26 -0
  11. data/docs/GatewayCreateProducerCertificateAutomation.md +6 -4
  12. data/docs/GatewayUpdateProducerCertificateAutomation.md +6 -4
  13. data/docs/ItemGeneralInfo.md +2 -0
  14. data/docs/SignDataWithClassicKey.md +34 -0
  15. data/docs/SignOutput.md +18 -0
  16. data/docs/TargetTypeDetailsInput.md +8 -2
  17. data/docs/V2Api.md +252 -0
  18. data/docs/VerifyDataWithClassicKey.md +36 -0
  19. data/lib/akeyless/api/v2_api.rb +256 -0
  20. data/lib/akeyless/models/certificate_template_info.rb +282 -0
  21. data/lib/akeyless/models/create_classic_key.rb +81 -1
  22. data/lib/akeyless/models/create_dfc_key.rb +81 -1
  23. data/lib/akeyless/models/create_key.rb +81 -1
  24. data/lib/akeyless/models/derive_key.rb +362 -0
  25. data/lib/akeyless/models/derive_key_output.rb +228 -0
  26. data/lib/akeyless/models/ds_producer_details.rb +30 -1
  27. data/lib/akeyless/models/event_action.rb +272 -0
  28. data/lib/akeyless/models/gateway_create_producer_certificate_automation.rb +30 -18
  29. data/lib/akeyless/models/gateway_update_producer_certificate_automation.rb +30 -18
  30. data/lib/akeyless/models/item_general_info.rb +10 -1
  31. data/lib/akeyless/models/sign_data_with_classic_key.rb +326 -0
  32. data/lib/akeyless/models/sign_output.rb +219 -0
  33. data/lib/akeyless/models/target_type_details_input.rb +30 -1
  34. data/lib/akeyless/models/verify_data_with_classic_key.rb +336 -0
  35. data/lib/akeyless/version.rb +1 -1
  36. data/lib/akeyless.rb +7 -0
  37. data/spec/models/certificate_template_info_spec.rb +76 -0
  38. data/spec/models/derive_key_output_spec.rb +40 -0
  39. data/spec/models/derive_key_spec.rb +100 -0
  40. data/spec/models/event_action_spec.rb +58 -0
  41. data/spec/models/sign_data_with_classic_key_spec.rb +82 -0
  42. data/spec/models/sign_output_spec.rb +34 -0
  43. data/spec/models/verify_data_with_classic_key_spec.rb +88 -0
  44. metadata +30 -2
@@ -0,0 +1,76 @@
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::CertificateTemplateInfo
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::CertificateTemplateInfo do
21
+ let(:instance) { Akeyless::CertificateTemplateInfo.new }
22
+
23
+ describe 'test an instance of CertificateTemplateInfo' do
24
+ it 'should create an instance of CertificateTemplateInfo' do
25
+ expect(instance).to be_instance_of(Akeyless::CertificateTemplateInfo)
26
+ end
27
+ end
28
+ describe 'test attribute "common_name"' 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 "country"' 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 "digest_algo"' 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 "locality"' 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 "organization"' 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 "province"' 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 "self_signed_enabled"' 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 "ttl"' 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
+ end
@@ -0,0 +1,40 @@
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::DeriveKeyOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::DeriveKeyOutput do
21
+ let(:instance) { Akeyless::DeriveKeyOutput.new }
22
+
23
+ describe 'test an instance of DeriveKeyOutput' do
24
+ it 'should create an instance of DeriveKeyOutput' do
25
+ expect(instance).to be_instance_of(Akeyless::DeriveKeyOutput)
26
+ end
27
+ end
28
+ describe 'test attribute "key"' 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 "salt"' 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
+ end
@@ -0,0 +1,100 @@
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::DeriveKey
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::DeriveKey do
21
+ let(:instance) { Akeyless::DeriveKey.new }
22
+
23
+ describe 'test an instance of DeriveKey' do
24
+ it 'should create an instance of DeriveKey' do
25
+ expect(instance).to be_instance_of(Akeyless::DeriveKey)
26
+ end
27
+ end
28
+ describe 'test attribute "accessibility"' 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 "alg"' 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 "hash_function"' 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 "iter"' 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 "json"' 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 "key_len"' 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 "mem"' 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 "name"' 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 "parallelism"' 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
+ describe 'test attribute "salt"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
85
+ end
86
+ end
87
+
88
+ describe 'test attribute "token"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
91
+ end
92
+ end
93
+
94
+ describe 'test attribute "uid_token"' do
95
+ it 'should work' do
96
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
97
+ end
98
+ end
99
+
100
+ end
@@ -0,0 +1,58 @@
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::EventAction
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::EventAction do
21
+ let(:instance) { Akeyless::EventAction.new }
22
+
23
+ describe 'test an instance of EventAction' do
24
+ it 'should create an instance of EventAction' do
25
+ expect(instance).to be_instance_of(Akeyless::EventAction)
26
+ end
27
+ end
28
+ describe 'test attribute "action"' 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 "event_id"' 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 "json"' 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 "token"' 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 "uid_token"' 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
+ end
@@ -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::SignDataWithClassicKey
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::SignDataWithClassicKey do
21
+ let(:instance) { Akeyless::SignDataWithClassicKey.new }
22
+
23
+ describe 'test an instance of SignDataWithClassicKey' do
24
+ it 'should create an instance of SignDataWithClassicKey' do
25
+ expect(instance).to be_instance_of(Akeyless::SignDataWithClassicKey)
26
+ end
27
+ end
28
+ describe 'test attribute "data"' 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 "display_id"' 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 "hashed"' 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 "hashing_method"' 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 "json"' 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 "name"' 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 "token"' 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 "uid_token"' 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 "version"' 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
@@ -0,0 +1,34 @@
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::SignOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::SignOutput do
21
+ let(:instance) { Akeyless::SignOutput.new }
22
+
23
+ describe 'test an instance of SignOutput' do
24
+ it 'should create an instance of SignOutput' do
25
+ expect(instance).to be_instance_of(Akeyless::SignOutput)
26
+ end
27
+ end
28
+ describe 'test attribute "result"' 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
+ end
@@ -0,0 +1,88 @@
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::VerifyDataWithClassicKey
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::VerifyDataWithClassicKey do
21
+ let(:instance) { Akeyless::VerifyDataWithClassicKey.new }
22
+
23
+ describe 'test an instance of VerifyDataWithClassicKey' do
24
+ it 'should create an instance of VerifyDataWithClassicKey' do
25
+ expect(instance).to be_instance_of(Akeyless::VerifyDataWithClassicKey)
26
+ end
27
+ end
28
+ describe 'test attribute "data"' 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 "display_id"' 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 "hashed"' 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 "hashing_method"' 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 "json"' 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 "key_name"' 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 "signature"' 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 "token"' 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 "uid_token"' 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
+ describe 'test attribute "version"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
85
+ end
86
+ end
87
+
88
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: akeyless
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.4
4
+ version: 3.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-11 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -101,6 +101,7 @@ files:
101
101
  - docs/CertificateExpirationEvent.md
102
102
  - docs/CertificateInfo.md
103
103
  - docs/CertificateIssueInfo.md
104
+ - docs/CertificateTemplateInfo.md
104
105
  - docs/ClassicKeyDetailsInfo.md
105
106
  - docs/ClassicKeyStatusInfo.md
106
107
  - docs/ClassicKeyTargetInfo.md
@@ -236,6 +237,8 @@ files:
236
237
  - docs/DeleteTarget.md
237
238
  - docs/DeleteTargetAssociation.md
238
239
  - docs/DeleteTargets.md
240
+ - docs/DeriveKey.md
241
+ - docs/DeriveKeyOutput.md
239
242
  - docs/DescribeAssoc.md
240
243
  - docs/DescribeItem.md
241
244
  - docs/DescribePermissions.md
@@ -268,6 +271,7 @@ files:
268
271
  - docs/EsmListSecretsOutput.md
269
272
  - docs/EsmUpdate.md
270
273
  - docs/EsmUpdateSecretOutput.md
274
+ - docs/EventAction.md
271
275
  - docs/ExportClassicKey.md
272
276
  - docs/ExportClassicKeyOutput.md
273
277
  - docs/Extension.md
@@ -587,10 +591,12 @@ files:
587
591
  - docs/SetRoleRule.md
588
592
  - docs/ShareItem.md
589
593
  - docs/SharingPolicyInfo.md
594
+ - docs/SignDataWithClassicKey.md
590
595
  - docs/SignGPG.md
591
596
  - docs/SignGPGOutput.md
592
597
  - docs/SignJWTOutput.md
593
598
  - docs/SignJWTWithClassicKey.md
599
+ - docs/SignOutput.md
594
600
  - docs/SignPKCS1.md
595
601
  - docs/SignPKCS1Output.md
596
602
  - docs/SignPKICertOutput.md
@@ -716,6 +722,7 @@ files:
716
722
  - docs/ValidateToken.md
717
723
  - docs/ValidateTokenOutput.md
718
724
  - docs/VaultlessTokenizerInfo.md
725
+ - docs/VerifyDataWithClassicKey.md
719
726
  - docs/VerifyGPG.md
720
727
  - docs/VerifyJWTOutput.md
721
728
  - docs/VerifyJWTWithClassicKey.md
@@ -765,6 +772,7 @@ files:
765
772
  - lib/akeyless/models/certificate_expiration_event.rb
766
773
  - lib/akeyless/models/certificate_info.rb
767
774
  - lib/akeyless/models/certificate_issue_info.rb
775
+ - lib/akeyless/models/certificate_template_info.rb
768
776
  - lib/akeyless/models/cf_config_part.rb
769
777
  - lib/akeyless/models/classic_key_details_info.rb
770
778
  - lib/akeyless/models/classic_key_status_info.rb
@@ -900,6 +908,8 @@ files:
900
908
  - lib/akeyless/models/delete_target.rb
901
909
  - lib/akeyless/models/delete_target_association.rb
902
910
  - lib/akeyless/models/delete_targets.rb
911
+ - lib/akeyless/models/derive_key.rb
912
+ - lib/akeyless/models/derive_key_output.rb
903
913
  - lib/akeyless/models/describe_assoc.rb
904
914
  - lib/akeyless/models/describe_item.rb
905
915
  - lib/akeyless/models/describe_permissions.rb
@@ -933,6 +943,7 @@ files:
933
943
  - lib/akeyless/models/esm_list_secrets_output.rb
934
944
  - lib/akeyless/models/esm_update.rb
935
945
  - lib/akeyless/models/esm_update_secret_output.rb
946
+ - lib/akeyless/models/event_action.rb
936
947
  - lib/akeyless/models/export_classic_key.rb
937
948
  - lib/akeyless/models/export_classic_key_output.rb
938
949
  - lib/akeyless/models/extension.rb
@@ -1251,10 +1262,12 @@ files:
1251
1262
  - lib/akeyless/models/set_role_rule.rb
1252
1263
  - lib/akeyless/models/share_item.rb
1253
1264
  - lib/akeyless/models/sharing_policy_info.rb
1265
+ - lib/akeyless/models/sign_data_with_classic_key.rb
1254
1266
  - lib/akeyless/models/sign_gpg.rb
1255
1267
  - lib/akeyless/models/sign_gpg_output.rb
1256
1268
  - lib/akeyless/models/sign_jwt_output.rb
1257
1269
  - lib/akeyless/models/sign_jwt_with_classic_key.rb
1270
+ - lib/akeyless/models/sign_output.rb
1258
1271
  - lib/akeyless/models/sign_pkcs1.rb
1259
1272
  - lib/akeyless/models/sign_pkcs1_output.rb
1260
1273
  - lib/akeyless/models/sign_pki_cert_output.rb
@@ -1380,6 +1393,7 @@ files:
1380
1393
  - lib/akeyless/models/validate_token.rb
1381
1394
  - lib/akeyless/models/validate_token_output.rb
1382
1395
  - lib/akeyless/models/vaultless_tokenizer_info.rb
1396
+ - lib/akeyless/models/verify_data_with_classic_key.rb
1383
1397
  - lib/akeyless/models/verify_gpg.rb
1384
1398
  - lib/akeyless/models/verify_jwt_output.rb
1385
1399
  - lib/akeyless/models/verify_jwt_with_classic_key.rb
@@ -1916,6 +1930,7 @@ files:
1916
1930
  - spec/models/certificate_expiration_event_spec.rb
1917
1931
  - spec/models/certificate_info_spec.rb
1918
1932
  - spec/models/certificate_issue_info_spec.rb
1933
+ - spec/models/certificate_template_info_spec.rb
1919
1934
  - spec/models/cf_config_part_spec.rb
1920
1935
  - spec/models/classic_key_details_info_spec.rb
1921
1936
  - spec/models/classic_key_status_info_spec.rb
@@ -2051,6 +2066,8 @@ files:
2051
2066
  - spec/models/delete_target_association_spec.rb
2052
2067
  - spec/models/delete_target_spec.rb
2053
2068
  - spec/models/delete_targets_spec.rb
2069
+ - spec/models/derive_key_output_spec.rb
2070
+ - spec/models/derive_key_spec.rb
2054
2071
  - spec/models/describe_assoc_spec.rb
2055
2072
  - spec/models/describe_item_spec.rb
2056
2073
  - spec/models/describe_permissions_output_spec.rb
@@ -2084,6 +2101,7 @@ files:
2084
2101
  - spec/models/esm_list_spec.rb
2085
2102
  - spec/models/esm_update_secret_output_spec.rb
2086
2103
  - spec/models/esm_update_spec.rb
2104
+ - spec/models/event_action_spec.rb
2087
2105
  - spec/models/export_classic_key_output_spec.rb
2088
2106
  - spec/models/export_classic_key_spec.rb
2089
2107
  - spec/models/extension_spec.rb
@@ -2402,10 +2420,12 @@ files:
2402
2420
  - spec/models/set_role_rule_spec.rb
2403
2421
  - spec/models/share_item_spec.rb
2404
2422
  - spec/models/sharing_policy_info_spec.rb
2423
+ - spec/models/sign_data_with_classic_key_spec.rb
2405
2424
  - spec/models/sign_gpg_output_spec.rb
2406
2425
  - spec/models/sign_gpg_spec.rb
2407
2426
  - spec/models/sign_jwt_output_spec.rb
2408
2427
  - spec/models/sign_jwt_with_classic_key_spec.rb
2428
+ - spec/models/sign_output_spec.rb
2409
2429
  - spec/models/sign_pkcs1_output_spec.rb
2410
2430
  - spec/models/sign_pkcs1_spec.rb
2411
2431
  - spec/models/sign_pki_cert_output_spec.rb
@@ -2531,6 +2551,7 @@ files:
2531
2551
  - spec/models/validate_token_output_spec.rb
2532
2552
  - spec/models/validate_token_spec.rb
2533
2553
  - spec/models/vaultless_tokenizer_info_spec.rb
2554
+ - spec/models/verify_data_with_classic_key_spec.rb
2534
2555
  - spec/models/verify_gpg_spec.rb
2535
2556
  - spec/models/verify_jwt_output_spec.rb
2536
2557
  - spec/models/verify_jwt_with_classic_key_spec.rb
@@ -2619,6 +2640,7 @@ test_files:
2619
2640
  - spec/models/update_auth_method_oidc_spec.rb
2620
2641
  - spec/models/get_kube_exec_creds_spec.rb
2621
2642
  - spec/models/gateway_start_producer_spec.rb
2643
+ - spec/models/derive_key_output_spec.rb
2622
2644
  - spec/models/rules_spec.rb
2623
2645
  - spec/models/classic_key_status_info_spec.rb
2624
2646
  - spec/models/create_ldap_target_output_spec.rb
@@ -2931,6 +2953,7 @@ test_files:
2931
2953
  - spec/models/gateway_migration_update_output_spec.rb
2932
2954
  - spec/models/gateway_update_producer_gke_spec.rb
2933
2955
  - spec/models/universal_identity_access_rules_spec.rb
2956
+ - spec/models/sign_output_spec.rb
2934
2957
  - spec/models/customer_full_address_spec.rb
2935
2958
  - spec/models/rotate_key_spec.rb
2936
2959
  - spec/models/create_esm_spec.rb
@@ -2951,11 +2974,14 @@ test_files:
2951
2974
  - spec/models/reverse_rbac_output_spec.rb
2952
2975
  - spec/models/allowed_access_args_spec.rb
2953
2976
  - spec/models/json_error_spec.rb
2977
+ - spec/models/verify_data_with_classic_key_spec.rb
2954
2978
  - spec/models/gateway_update_producer_oracle_db_output_spec.rb
2979
+ - spec/models/sign_data_with_classic_key_spec.rb
2955
2980
  - spec/models/hashi_migration_spec.rb
2956
2981
  - spec/models/gateway_delete_allowed_management_access_spec.rb
2957
2982
  - spec/models/get_rotated_secret_value_spec.rb
2958
2983
  - spec/models/encrypt_with_classic_key_spec.rb
2984
+ - spec/models/event_action_spec.rb
2959
2985
  - spec/models/uid_revoke_token_spec.rb
2960
2986
  - spec/models/assoc_target_item_spec.rb
2961
2987
  - spec/models/certificate_info_spec.rb
@@ -3077,6 +3103,7 @@ test_files:
3077
3103
  - spec/models/create_auth_method_universal_identity_output_spec.rb
3078
3104
  - spec/models/get_target_spec.rb
3079
3105
  - spec/models/describe_permissions_output_spec.rb
3106
+ - spec/models/derive_key_spec.rb
3080
3107
  - spec/models/create_ping_target_spec.rb
3081
3108
  - spec/models/update_native_k8_s_target_spec.rb
3082
3109
  - spec/models/gateway_create_producer_custom_spec.rb
@@ -3177,6 +3204,7 @@ test_files:
3177
3204
  - spec/models/classic_key_details_info_spec.rb
3178
3205
  - spec/models/get_kube_exec_creds_output_spec.rb
3179
3206
  - spec/models/gateway_update_producer_rabbit_mq_spec.rb
3207
+ - spec/models/certificate_template_info_spec.rb
3180
3208
  - spec/models/describe_permissions_spec.rb
3181
3209
  - spec/models/gateway_create_producer_cassandra_output_spec.rb
3182
3210
  - spec/models/create_auth_method_saml_output_spec.rb