akeyless 4.2.4 → 4.2.5

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 (52) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -1
  3. data/docs/AcmeAccount.md +22 -0
  4. data/docs/AuthMethodRoleAssociation.md +2 -0
  5. data/docs/ChangeAdminAccountPassword.md +26 -0
  6. data/docs/CreatePKICertIssuer.md +5 -1
  7. data/docs/DeactivateAcmeAccount.md +28 -0
  8. data/docs/GenerateAcmeEab.md +24 -0
  9. data/docs/GenerateAcmeEabOutput.md +22 -0
  10. data/docs/GetGroupOutput.md +2 -0
  11. data/docs/GetKubeExecCreds.md +1 -1
  12. data/docs/GetPKICertificate.md +1 -1
  13. data/docs/Group.md +2 -0
  14. data/docs/ListAcmeAccounts.md +24 -0
  15. data/docs/ListAcmeAccountsOutput.md +18 -0
  16. data/docs/PKICertificateIssueDetails.md +4 -0
  17. data/docs/RoleAssociationDetails.md +2 -0
  18. data/docs/RoleAuthMethodAssociation.md +2 -0
  19. data/docs/UpdateClassicKeyCertificate.md +2 -0
  20. data/docs/UpdateItem.md +2 -0
  21. data/docs/UpdatePKICertIssuer.md +5 -1
  22. data/docs/V2Api.md +252 -0
  23. data/lib/akeyless/api/v2_api.rb +256 -0
  24. data/lib/akeyless/models/acme_account.rb +234 -0
  25. data/lib/akeyless/models/auth_method_role_association.rb +10 -1
  26. data/lib/akeyless/models/change_admin_account_password.rb +271 -0
  27. data/lib/akeyless/models/create_pki_cert_issuer.rb +24 -2
  28. data/lib/akeyless/models/deactivate_acme_account.rb +282 -0
  29. data/lib/akeyless/models/generate_acme_eab.rb +254 -0
  30. data/lib/akeyless/models/generate_acme_eab_output.rb +232 -0
  31. data/lib/akeyless/models/get_group_output.rb +10 -1
  32. data/lib/akeyless/models/get_kube_exec_creds.rb +1 -1
  33. data/lib/akeyless/models/get_pki_certificate.rb +1 -1
  34. data/lib/akeyless/models/group.rb +10 -1
  35. data/lib/akeyless/models/list_acme_accounts.rb +255 -0
  36. data/lib/akeyless/models/list_acme_accounts_output.rb +216 -0
  37. data/lib/akeyless/models/pki_certificate_issue_details.rb +19 -1
  38. data/lib/akeyless/models/role_association_details.rb +10 -1
  39. data/lib/akeyless/models/role_auth_method_association.rb +10 -1
  40. data/lib/akeyless/models/update_classic_key_certificate.rb +10 -1
  41. data/lib/akeyless/models/update_item.rb +10 -1
  42. data/lib/akeyless/models/update_pki_cert_issuer.rb +24 -2
  43. data/lib/akeyless/version.rb +1 -1
  44. data/lib/akeyless.rb +7 -0
  45. data/spec/models/acme_account_spec.rb +48 -0
  46. data/spec/models/change_admin_account_password_spec.rb +60 -0
  47. data/spec/models/deactivate_acme_account_spec.rb +66 -0
  48. data/spec/models/generate_acme_eab_output_spec.rb +48 -0
  49. data/spec/models/generate_acme_eab_spec.rb +54 -0
  50. data/spec/models/list_acme_accounts_output_spec.rb +36 -0
  51. data/spec/models/list_acme_accounts_spec.rb +54 -0
  52. metadata +30 -2
@@ -0,0 +1,48 @@
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
+ Generator version: 7.9.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::AcmeAccount
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::AcmeAccount do
21
+ let(:instance) { Akeyless::AcmeAccount.new }
22
+
23
+ describe 'test an instance of AcmeAccount' do
24
+ it 'should create an instance of AcmeAccount' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::AcmeAccount)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "account_id"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "key_digest"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "status"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ end
@@ -0,0 +1,60 @@
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
+ Generator version: 7.9.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::ChangeAdminAccountPassword
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::ChangeAdminAccountPassword do
21
+ let(:instance) { Akeyless::ChangeAdminAccountPassword.new }
22
+
23
+ describe 'test an instance of ChangeAdminAccountPassword' do
24
+ it 'should create an instance of ChangeAdminAccountPassword' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::ChangeAdminAccountPassword)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "current_password"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "json"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "new_password"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "token"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "uid_token"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ end
@@ -0,0 +1,66 @@
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
+ Generator version: 7.9.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::DeactivateAcmeAccount
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::DeactivateAcmeAccount do
21
+ let(:instance) { Akeyless::DeactivateAcmeAccount.new }
22
+
23
+ describe 'test an instance of DeactivateAcmeAccount' do
24
+ it 'should create an instance of DeactivateAcmeAccount' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::DeactivateAcmeAccount)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "acme_account_id"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "cert_issuer_name"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "delete_account"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "json"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "token"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ describe 'test attribute "uid_token"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
66
+ end
@@ -0,0 +1,48 @@
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
+ Generator version: 7.9.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GenerateAcmeEabOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GenerateAcmeEabOutput do
21
+ let(:instance) { Akeyless::GenerateAcmeEabOutput.new }
22
+
23
+ describe 'test an instance of GenerateAcmeEabOutput' do
24
+ it 'should create an instance of GenerateAcmeEabOutput' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::GenerateAcmeEabOutput)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "expires_at"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "kid"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "mac_key"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ end
@@ -0,0 +1,54 @@
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
+ Generator version: 7.9.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GenerateAcmeEab
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GenerateAcmeEab do
21
+ let(:instance) { Akeyless::GenerateAcmeEab.new }
22
+
23
+ describe 'test an instance of GenerateAcmeEab' do
24
+ it 'should create an instance of GenerateAcmeEab' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::GenerateAcmeEab)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "cert_issuer_name"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "json"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "token"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "uid_token"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,36 @@
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
+ Generator version: 7.9.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::ListAcmeAccountsOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::ListAcmeAccountsOutput do
21
+ let(:instance) { Akeyless::ListAcmeAccountsOutput.new }
22
+
23
+ describe 'test an instance of ListAcmeAccountsOutput' do
24
+ it 'should create an instance of ListAcmeAccountsOutput' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::ListAcmeAccountsOutput)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "accounts"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ end
@@ -0,0 +1,54 @@
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
+ Generator version: 7.9.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::ListAcmeAccounts
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::ListAcmeAccounts do
21
+ let(:instance) { Akeyless::ListAcmeAccounts.new }
22
+
23
+ describe 'test an instance of ListAcmeAccounts' do
24
+ it 'should create an instance of ListAcmeAccounts' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::ListAcmeAccounts)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "cert_issuer_name"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "json"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "token"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "uid_token"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ 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: 4.2.4
4
+ version: 4.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-19 00:00:00.000000000 Z
11
+ date: 2024-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -72,6 +72,7 @@ files:
72
72
  - docs/AccessPermissionAssignment.md
73
73
  - docs/AccountGeneralSettings.md
74
74
  - docs/AccountObjectVersionSettingsOutput.md
75
+ - docs/AcmeAccount.md
75
76
  - docs/ActiveDirectoryMigration.md
76
77
  - docs/ActiveDirectoryPayload.md
77
78
  - docs/AddGatewayAllowedAccessId.md
@@ -154,6 +155,7 @@ files:
154
155
  - docs/CertificateTemplateInfo.md
155
156
  - docs/CertificateVersionInfo.md
156
157
  - docs/CfInfo.md
158
+ - docs/ChangeAdminAccountPassword.md
157
159
  - docs/ChefTargetDetails.md
158
160
  - docs/ClassicKeyDetailsInfo.md
159
161
  - docs/ClassicKeyStatusInfo.md
@@ -286,6 +288,7 @@ files:
286
288
  - docs/DataProtectionSection.md
287
289
  - docs/DatadogForwardingConfig.md
288
290
  - docs/DbTargetDetails.md
291
+ - docs/DeactivateAcmeAccount.md
289
292
  - docs/Decrypt.md
290
293
  - docs/DecryptFile.md
291
294
  - docs/DecryptFileOutput.md
@@ -638,6 +641,8 @@ files:
638
641
  - docs/GcpTargetDetails.md
639
642
  - docs/GenCustomerFragment.md
640
643
  - docs/GeneralConfigPart.md
644
+ - docs/GenerateAcmeEab.md
645
+ - docs/GenerateAcmeEabOutput.md
641
646
  - docs/GenerateCsr.md
642
647
  - docs/GenerateCsrOutput.md
643
648
  - docs/GetAccountSettings.md
@@ -746,6 +751,8 @@ files:
746
751
  - docs/LeadershipConfigPart.md
747
752
  - docs/LinkedDetails.md
748
753
  - docs/LinkedTargetDetails.md
754
+ - docs/ListAcmeAccounts.md
755
+ - docs/ListAcmeAccountsOutput.md
749
756
  - docs/ListAuthMethods.md
750
757
  - docs/ListAuthMethodsOutput.md
751
758
  - docs/ListGateways.md
@@ -1133,6 +1140,7 @@ files:
1133
1140
  - lib/akeyless/models/access_permission_assignment.rb
1134
1141
  - lib/akeyless/models/account_general_settings.rb
1135
1142
  - lib/akeyless/models/account_object_version_settings_output.rb
1143
+ - lib/akeyless/models/acme_account.rb
1136
1144
  - lib/akeyless/models/active_directory_migration.rb
1137
1145
  - lib/akeyless/models/active_directory_payload.rb
1138
1146
  - lib/akeyless/models/add_gateway_allowed_access_id.rb
@@ -1220,6 +1228,7 @@ files:
1220
1228
  - lib/akeyless/models/certificate_version_info.rb
1221
1229
  - lib/akeyless/models/cf_config_part.rb
1222
1230
  - lib/akeyless/models/cf_info.rb
1231
+ - lib/akeyless/models/change_admin_account_password.rb
1223
1232
  - lib/akeyless/models/chef_target_details.rb
1224
1233
  - lib/akeyless/models/classic_key_details_info.rb
1225
1234
  - lib/akeyless/models/classic_key_status_info.rb
@@ -1351,6 +1360,7 @@ files:
1351
1360
  - lib/akeyless/models/data_protection_section.rb
1352
1361
  - lib/akeyless/models/datadog_forwarding_config.rb
1353
1362
  - lib/akeyless/models/db_target_details.rb
1363
+ - lib/akeyless/models/deactivate_acme_account.rb
1354
1364
  - lib/akeyless/models/decrypt.rb
1355
1365
  - lib/akeyless/models/decrypt_file.rb
1356
1366
  - lib/akeyless/models/decrypt_file_output.rb
@@ -1703,6 +1713,8 @@ files:
1703
1713
  - lib/akeyless/models/gcp_target_details.rb
1704
1714
  - lib/akeyless/models/gen_customer_fragment.rb
1705
1715
  - lib/akeyless/models/general_config_part.rb
1716
+ - lib/akeyless/models/generate_acme_eab.rb
1717
+ - lib/akeyless/models/generate_acme_eab_output.rb
1706
1718
  - lib/akeyless/models/generate_csr.rb
1707
1719
  - lib/akeyless/models/generate_csr_output.rb
1708
1720
  - lib/akeyless/models/get_account_settings.rb
@@ -1812,6 +1824,8 @@ files:
1812
1824
  - lib/akeyless/models/leadership_config_part.rb
1813
1825
  - lib/akeyless/models/linked_details.rb
1814
1826
  - lib/akeyless/models/linked_target_details.rb
1827
+ - lib/akeyless/models/list_acme_accounts.rb
1828
+ - lib/akeyless/models/list_acme_accounts_output.rb
1815
1829
  - lib/akeyless/models/list_auth_methods.rb
1816
1830
  - lib/akeyless/models/list_auth_methods_output.rb
1817
1831
  - lib/akeyless/models/list_gateways.rb
@@ -2685,6 +2699,7 @@ files:
2685
2699
  - spec/models/access_permission_assignment_spec.rb
2686
2700
  - spec/models/account_general_settings_spec.rb
2687
2701
  - spec/models/account_object_version_settings_output_spec.rb
2702
+ - spec/models/acme_account_spec.rb
2688
2703
  - spec/models/active_directory_migration_spec.rb
2689
2704
  - spec/models/active_directory_payload_spec.rb
2690
2705
  - spec/models/add_gateway_allowed_access_id_spec.rb
@@ -2772,6 +2787,7 @@ files:
2772
2787
  - spec/models/certificate_version_info_spec.rb
2773
2788
  - spec/models/cf_config_part_spec.rb
2774
2789
  - spec/models/cf_info_spec.rb
2790
+ - spec/models/change_admin_account_password_spec.rb
2775
2791
  - spec/models/chef_target_details_spec.rb
2776
2792
  - spec/models/classic_key_details_info_spec.rb
2777
2793
  - spec/models/classic_key_status_info_spec.rb
@@ -2903,6 +2919,7 @@ files:
2903
2919
  - spec/models/data_protection_section_spec.rb
2904
2920
  - spec/models/datadog_forwarding_config_spec.rb
2905
2921
  - spec/models/db_target_details_spec.rb
2922
+ - spec/models/deactivate_acme_account_spec.rb
2906
2923
  - spec/models/decrypt_file_output_spec.rb
2907
2924
  - spec/models/decrypt_file_spec.rb
2908
2925
  - spec/models/decrypt_gpg_output_spec.rb
@@ -3255,6 +3272,8 @@ files:
3255
3272
  - spec/models/gcp_target_details_spec.rb
3256
3273
  - spec/models/gen_customer_fragment_spec.rb
3257
3274
  - spec/models/general_config_part_spec.rb
3275
+ - spec/models/generate_acme_eab_output_spec.rb
3276
+ - spec/models/generate_acme_eab_spec.rb
3258
3277
  - spec/models/generate_csr_output_spec.rb
3259
3278
  - spec/models/generate_csr_spec.rb
3260
3279
  - spec/models/get_account_settings_command_output_spec.rb
@@ -3364,6 +3383,8 @@ files:
3364
3383
  - spec/models/leadership_config_part_spec.rb
3365
3384
  - spec/models/linked_details_spec.rb
3366
3385
  - spec/models/linked_target_details_spec.rb
3386
+ - spec/models/list_acme_accounts_output_spec.rb
3387
+ - spec/models/list_acme_accounts_spec.rb
3367
3388
  - spec/models/list_auth_methods_output_spec.rb
3368
3389
  - spec/models/list_auth_methods_spec.rb
3369
3390
  - spec/models/list_gateways_spec.rb
@@ -3890,6 +3911,7 @@ test_files:
3890
3911
  - spec/models/reset_access_key_spec.rb
3891
3912
  - spec/models/get_target_spec.rb
3892
3913
  - spec/models/gateway_update_producer_artifactory_spec.rb
3914
+ - spec/models/list_acme_accounts_spec.rb
3893
3915
  - spec/models/decrypt_pkcs1_spec.rb
3894
3916
  - spec/models/dynamic_secret_update_gke_spec.rb
3895
3917
  - spec/models/target_create_zero_ssl_spec.rb
@@ -3964,6 +3986,7 @@ test_files:
3964
3986
  - spec/models/rotate_secret_spec.rb
3965
3987
  - spec/models/rollback_secret_output_spec.rb
3966
3988
  - spec/models/web_bastion_rdp_record_spec.rb
3989
+ - spec/models/generate_acme_eab_output_spec.rb
3967
3990
  - spec/models/event_forwarder_update_service_now_spec.rb
3968
3991
  - spec/models/rotated_secret_update_ssh_spec.rb
3969
3992
  - spec/models/dynamic_secret_create_ldap_spec.rb
@@ -4091,6 +4114,7 @@ test_files:
4091
4114
  - spec/models/create_dynamic_secret_spec.rb
4092
4115
  - spec/models/create_salesforce_target_output_spec.rb
4093
4116
  - spec/models/gateway_create_producer_snowflake_spec.rb
4117
+ - spec/models/change_admin_account_password_spec.rb
4094
4118
  - spec/models/gateway_update_producer_github_spec.rb
4095
4119
  - spec/models/update_rabbit_mq_target_spec.rb
4096
4120
  - spec/models/dynamic_secret_max_ttl_spec.rb
@@ -4252,6 +4276,7 @@ test_files:
4252
4276
  - spec/models/gateway_update_producer_chef_output_spec.rb
4253
4277
  - spec/models/secret_info_spec.rb
4254
4278
  - spec/models/gateway_create_producer_mssql_output_spec.rb
4279
+ - spec/models/deactivate_acme_account_spec.rb
4255
4280
  - spec/models/extension_spec.rb
4256
4281
  - spec/models/dynamic_secret_create_snowflake_spec.rb
4257
4282
  - spec/models/certificate_chain_info_spec.rb
@@ -4259,6 +4284,7 @@ test_files:
4259
4284
  - spec/models/create_web_target_output_spec.rb
4260
4285
  - spec/models/gateway_update_producer_eks_spec.rb
4261
4286
  - spec/models/auth_method_access_info_spec.rb
4287
+ - spec/models/acme_account_spec.rb
4262
4288
  - spec/models/create_dfc_key_output_spec.rb
4263
4289
  - spec/models/verify_pkcs1_spec.rb
4264
4290
  - spec/models/dynamic_secret_create_gcp_spec.rb
@@ -4331,6 +4357,7 @@ test_files:
4331
4357
  - spec/models/dynamic_secret_create_hana_db_spec.rb
4332
4358
  - spec/models/update_tokenizer_output_spec.rb
4333
4359
  - spec/models/auth_spec.rb
4360
+ - spec/models/list_acme_accounts_output_spec.rb
4334
4361
  - spec/models/logz_io_log_forwarding_config_spec.rb
4335
4362
  - spec/models/update_zero_ssl_target_spec.rb
4336
4363
  - spec/models/gateway_update_log_forwarding_stdout_spec.rb
@@ -4406,6 +4433,7 @@ test_files:
4406
4433
  - spec/models/target_update_hashi_vault_spec.rb
4407
4434
  - spec/models/gw_update_remote_access_session_logs_sumologic_spec.rb
4408
4435
  - spec/models/describe_sub_claims_spec.rb
4436
+ - spec/models/generate_acme_eab_spec.rb
4409
4437
  - spec/models/create_native_k8_s_target_spec.rb
4410
4438
  - spec/models/list_roles_output_spec.rb
4411
4439
  - spec/models/esm_delete_secret_output_spec.rb