akeyless 5.0.17 → 5.0.19

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 (66) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -1
  3. data/docs/AccountGeneralSettings.md +2 -0
  4. data/docs/CertificateDiscovery.md +34 -0
  5. data/docs/CertificateDiscoveryOutput.md +18 -0
  6. data/docs/CertificateMigration.md +20 -0
  7. data/docs/CertificatePayload.md +30 -0
  8. data/docs/CertificateScanTarget.md +20 -0
  9. data/docs/CreateRole.md +5 -5
  10. data/docs/GatewayCreateMigration.md +7 -1
  11. data/docs/GatewayUpdateMigration.md +6 -0
  12. data/docs/ItemUSCSyncAssociation.md +2 -0
  13. data/docs/ListItems.md +2 -0
  14. data/docs/MigrationsConfigPart.md +2 -0
  15. data/docs/RotatedSecretCreateOpenAI.md +56 -0
  16. data/docs/RotatedSecretCreateSsh.md +1 -1
  17. data/docs/RotatedSecretDeleteSync.md +2 -0
  18. data/docs/RotatedSecretSync.md +2 -0
  19. data/docs/RotatedSecretUpdateOpenAI.md +58 -0
  20. data/docs/RotatedSecretUpdateSsh.md +1 -1
  21. data/docs/ScanResults.md +32 -0
  22. data/docs/StaticSecretDeleteSync.md +2 -0
  23. data/docs/StaticSecretSync.md +2 -0
  24. data/docs/TargetError.md +22 -0
  25. data/docs/UpdateRole.md +5 -5
  26. data/docs/UscDelete.md +2 -0
  27. data/docs/UscSyncInfo.md +2 -0
  28. data/docs/V2Api.md +191 -2
  29. data/lib/akeyless/api/v2_api.rb +192 -0
  30. data/lib/akeyless/models/account_general_settings.rb +10 -1
  31. data/lib/akeyless/models/certificate_discovery.rb +318 -0
  32. data/lib/akeyless/models/certificate_discovery_output.rb +214 -0
  33. data/lib/akeyless/models/certificate_migration.rb +223 -0
  34. data/lib/akeyless/models/certificate_payload.rb +272 -0
  35. data/lib/akeyless/models/certificate_scan_target.rb +223 -0
  36. data/lib/akeyless/models/create_role.rb +5 -5
  37. data/lib/akeyless/models/gateway_create_migration.rb +43 -2
  38. data/lib/akeyless/models/gateway_update_migration.rb +42 -1
  39. data/lib/akeyless/models/item_usc_sync_association.rb +10 -1
  40. data/lib/akeyless/models/list_items.rb +13 -1
  41. data/lib/akeyless/models/migrations_config_part.rb +12 -1
  42. data/lib/akeyless/models/rotated_secret_create_open_ai.rb +437 -0
  43. data/lib/akeyless/models/rotated_secret_create_ssh.rb +1 -1
  44. data/lib/akeyless/models/rotated_secret_delete_sync.rb +13 -1
  45. data/lib/akeyless/models/rotated_secret_sync.rb +11 -1
  46. data/lib/akeyless/models/rotated_secret_update_open_ai.rb +437 -0
  47. data/lib/akeyless/models/rotated_secret_update_ssh.rb +1 -1
  48. data/lib/akeyless/models/scan_results.rb +282 -0
  49. data/lib/akeyless/models/static_secret_delete_sync.rb +13 -1
  50. data/lib/akeyless/models/static_secret_sync.rb +11 -1
  51. data/lib/akeyless/models/target_error.rb +233 -0
  52. data/lib/akeyless/models/update_role.rb +5 -5
  53. data/lib/akeyless/models/usc_delete.rb +11 -1
  54. data/lib/akeyless/models/usc_sync_info.rb +10 -1
  55. data/lib/akeyless/version.rb +1 -1
  56. data/lib/akeyless.rb +9 -0
  57. data/spec/models/certificate_discovery_output_spec.rb +36 -0
  58. data/spec/models/certificate_discovery_spec.rb +84 -0
  59. data/spec/models/certificate_migration_spec.rb +42 -0
  60. data/spec/models/certificate_payload_spec.rb +72 -0
  61. data/spec/models/certificate_scan_target_spec.rb +42 -0
  62. data/spec/models/rotated_secret_create_open_ai_spec.rb +150 -0
  63. data/spec/models/rotated_secret_update_open_ai_spec.rb +156 -0
  64. data/spec/models/scan_results_spec.rb +78 -0
  65. data/spec/models/target_error_spec.rb +48 -0
  66. metadata +38 -2
@@ -0,0 +1,156 @@
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: 3.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::RotatedSecretUpdateOpenAI
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::RotatedSecretUpdateOpenAI do
21
+ let(:instance) { Akeyless::RotatedSecretUpdateOpenAI.new }
22
+
23
+ describe 'test an instance of RotatedSecretUpdateOpenAI' do
24
+ it 'should create an instance of RotatedSecretUpdateOpenAI' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::RotatedSecretUpdateOpenAI)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "add_tag"' 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 "api_key"' 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 "api_key_id"' 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 "authentication_credentials"' 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 "auto_rotate"' 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 "delete_protection"' 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
+ describe 'test attribute "description"' 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
+
72
+ describe 'test attribute "item_custom_fields"' 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
+
78
+ describe 'test attribute "json"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
+ end
82
+ end
83
+
84
+ describe 'test attribute "keep_prev_version"' do
85
+ it 'should work' do
86
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
+ end
88
+ end
89
+
90
+ describe 'test attribute "key"' 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
+
96
+ describe 'test attribute "max_versions"' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
+ end
100
+ end
101
+
102
+ describe 'test attribute "name"' do
103
+ it 'should work' do
104
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
+ end
106
+ end
107
+
108
+ describe 'test attribute "new_name"' 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
+
114
+ describe 'test attribute "password_length"' do
115
+ it 'should work' do
116
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
+ end
118
+ end
119
+
120
+ describe 'test attribute "rm_tag"' do
121
+ it 'should work' do
122
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
123
+ end
124
+ end
125
+
126
+ describe 'test attribute "rotation_event_in"' do
127
+ it 'should work' do
128
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
129
+ end
130
+ end
131
+
132
+ describe 'test attribute "rotation_hour"' 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
+
138
+ describe 'test attribute "rotation_interval"' do
139
+ it 'should work' do
140
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
141
+ end
142
+ end
143
+
144
+ describe 'test attribute "token"' do
145
+ it 'should work' do
146
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
+ end
148
+ end
149
+
150
+ describe 'test attribute "uid_token"' 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
+
156
+ end
@@ -0,0 +1,78 @@
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: 3.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::ScanResults
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::ScanResults do
21
+ let(:instance) { Akeyless::ScanResults.new }
22
+
23
+ describe 'test an instance of ScanResults' do
24
+ it 'should create an instance of ScanResults' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::ScanResults)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "count_existing"' 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 "count_failed"' 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 "count_hosts"' 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 "count_new"' 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 "count_subdomains"' 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 "error"' 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
+ describe 'test attribute "failed_targets"' 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
+
72
+ describe 'test attribute "item_names"' 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
+
78
+ 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: 3.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::TargetError
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::TargetError do
21
+ let(:instance) { Akeyless::TargetError.new }
22
+
23
+ describe 'test an instance of TargetError' do
24
+ it 'should create an instance of TargetError' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::TargetError)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "error"' 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 "host"' 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 "port"' 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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: akeyless
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.17
4
+ version: 5.0.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -165,10 +165,15 @@ files:
165
165
  - docs/CertAccessRules.md
166
166
  - docs/CertificateAnalyticAggregation.md
167
167
  - docs/CertificateChainInfo.md
168
+ - docs/CertificateDiscovery.md
169
+ - docs/CertificateDiscoveryOutput.md
168
170
  - docs/CertificateExpirationEvent.md
169
171
  - docs/CertificateExpirationEventsSettings.md
170
172
  - docs/CertificateInfo.md
171
173
  - docs/CertificateIssueInfo.md
174
+ - docs/CertificateMigration.md
175
+ - docs/CertificatePayload.md
176
+ - docs/CertificateScanTarget.md
172
177
  - docs/CertificateStore.md
173
178
  - docs/CertificateTemplateInfo.md
174
179
  - docs/CertificateVersionInfo.md
@@ -908,6 +913,7 @@ files:
908
913
  - docs/RotatedSecretCreateMongodb.md
909
914
  - docs/RotatedSecretCreateMssql.md
910
915
  - docs/RotatedSecretCreateMysql.md
916
+ - docs/RotatedSecretCreateOpenAI.md
911
917
  - docs/RotatedSecretCreateOracledb.md
912
918
  - docs/RotatedSecretCreateOutput.md
913
919
  - docs/RotatedSecretCreatePostgresql.md
@@ -935,6 +941,7 @@ files:
935
941
  - docs/RotatedSecretUpdateMongodb.md
936
942
  - docs/RotatedSecretUpdateMssql.md
937
943
  - docs/RotatedSecretUpdateMysql.md
944
+ - docs/RotatedSecretUpdateOpenAI.md
938
945
  - docs/RotatedSecretUpdateOracledb.md
939
946
  - docs/RotatedSecretUpdateOutput.md
940
947
  - docs/RotatedSecretUpdatePostgresql.md
@@ -953,6 +960,7 @@ files:
953
960
  - docs/SSHCertificateIssueDetails.md
954
961
  - docs/SSHTargetDetails.md
955
962
  - docs/SalesforceTargetDetails.md
963
+ - docs/ScanResults.md
956
964
  - docs/SecretInfo.md
957
965
  - docs/SecretSyncOutput.md
958
966
  - docs/SectigoTargetDetails.md
@@ -1027,6 +1035,7 @@ files:
1027
1035
  - docs/TargetCreateWindows.md
1028
1036
  - docs/TargetCreateZeroSSL.md
1029
1037
  - docs/TargetDelete.md
1038
+ - docs/TargetError.md
1030
1039
  - docs/TargetGet.md
1031
1040
  - docs/TargetGetDetails.md
1032
1041
  - docs/TargetItemAssociation.md
@@ -1329,10 +1338,15 @@ files:
1329
1338
  - lib/akeyless/models/cert_access_rules.rb
1330
1339
  - lib/akeyless/models/certificate_analytic_aggregation.rb
1331
1340
  - lib/akeyless/models/certificate_chain_info.rb
1341
+ - lib/akeyless/models/certificate_discovery.rb
1342
+ - lib/akeyless/models/certificate_discovery_output.rb
1332
1343
  - lib/akeyless/models/certificate_expiration_event.rb
1333
1344
  - lib/akeyless/models/certificate_expiration_events_settings.rb
1334
1345
  - lib/akeyless/models/certificate_info.rb
1335
1346
  - lib/akeyless/models/certificate_issue_info.rb
1347
+ - lib/akeyless/models/certificate_migration.rb
1348
+ - lib/akeyless/models/certificate_payload.rb
1349
+ - lib/akeyless/models/certificate_scan_target.rb
1336
1350
  - lib/akeyless/models/certificate_store.rb
1337
1351
  - lib/akeyless/models/certificate_template_info.rb
1338
1352
  - lib/akeyless/models/certificate_version_info.rb
@@ -2073,6 +2087,7 @@ files:
2073
2087
  - lib/akeyless/models/rotated_secret_create_mongodb.rb
2074
2088
  - lib/akeyless/models/rotated_secret_create_mssql.rb
2075
2089
  - lib/akeyless/models/rotated_secret_create_mysql.rb
2090
+ - lib/akeyless/models/rotated_secret_create_open_ai.rb
2076
2091
  - lib/akeyless/models/rotated_secret_create_oracledb.rb
2077
2092
  - lib/akeyless/models/rotated_secret_create_output.rb
2078
2093
  - lib/akeyless/models/rotated_secret_create_postgresql.rb
@@ -2100,6 +2115,7 @@ files:
2100
2115
  - lib/akeyless/models/rotated_secret_update_mongodb.rb
2101
2116
  - lib/akeyless/models/rotated_secret_update_mssql.rb
2102
2117
  - lib/akeyless/models/rotated_secret_update_mysql.rb
2118
+ - lib/akeyless/models/rotated_secret_update_open_ai.rb
2103
2119
  - lib/akeyless/models/rotated_secret_update_oracledb.rb
2104
2120
  - lib/akeyless/models/rotated_secret_update_output.rb
2105
2121
  - lib/akeyless/models/rotated_secret_update_postgresql.rb
@@ -2116,6 +2132,7 @@ files:
2116
2132
  - lib/akeyless/models/salesforce_target_details.rb
2117
2133
  - lib/akeyless/models/saml_access_rules.rb
2118
2134
  - lib/akeyless/models/saml_attribute.rb
2135
+ - lib/akeyless/models/scan_results.rb
2119
2136
  - lib/akeyless/models/secret_info.rb
2120
2137
  - lib/akeyless/models/secret_sync_output.rb
2121
2138
  - lib/akeyless/models/sectigo_target_details.rb
@@ -2192,6 +2209,7 @@ files:
2192
2209
  - lib/akeyless/models/target_create_windows.rb
2193
2210
  - lib/akeyless/models/target_create_zero_ssl.rb
2194
2211
  - lib/akeyless/models/target_delete.rb
2212
+ - lib/akeyless/models/target_error.rb
2195
2213
  - lib/akeyless/models/target_get.rb
2196
2214
  - lib/akeyless/models/target_get_details.rb
2197
2215
  - lib/akeyless/models/target_item_association.rb
@@ -2980,10 +2998,15 @@ files:
2980
2998
  - spec/models/cert_access_rules_spec.rb
2981
2999
  - spec/models/certificate_analytic_aggregation_spec.rb
2982
3000
  - spec/models/certificate_chain_info_spec.rb
3001
+ - spec/models/certificate_discovery_output_spec.rb
3002
+ - spec/models/certificate_discovery_spec.rb
2983
3003
  - spec/models/certificate_expiration_event_spec.rb
2984
3004
  - spec/models/certificate_expiration_events_settings_spec.rb
2985
3005
  - spec/models/certificate_info_spec.rb
2986
3006
  - spec/models/certificate_issue_info_spec.rb
3007
+ - spec/models/certificate_migration_spec.rb
3008
+ - spec/models/certificate_payload_spec.rb
3009
+ - spec/models/certificate_scan_target_spec.rb
2987
3010
  - spec/models/certificate_store_spec.rb
2988
3011
  - spec/models/certificate_template_info_spec.rb
2989
3012
  - spec/models/certificate_version_info_spec.rb
@@ -3724,6 +3747,7 @@ files:
3724
3747
  - spec/models/rotated_secret_create_mongodb_spec.rb
3725
3748
  - spec/models/rotated_secret_create_mssql_spec.rb
3726
3749
  - spec/models/rotated_secret_create_mysql_spec.rb
3750
+ - spec/models/rotated_secret_create_open_ai_spec.rb
3727
3751
  - spec/models/rotated_secret_create_oracledb_spec.rb
3728
3752
  - spec/models/rotated_secret_create_output_spec.rb
3729
3753
  - spec/models/rotated_secret_create_postgresql_spec.rb
@@ -3751,6 +3775,7 @@ files:
3751
3775
  - spec/models/rotated_secret_update_mongodb_spec.rb
3752
3776
  - spec/models/rotated_secret_update_mssql_spec.rb
3753
3777
  - spec/models/rotated_secret_update_mysql_spec.rb
3778
+ - spec/models/rotated_secret_update_open_ai_spec.rb
3754
3779
  - spec/models/rotated_secret_update_oracledb_spec.rb
3755
3780
  - spec/models/rotated_secret_update_output_spec.rb
3756
3781
  - spec/models/rotated_secret_update_postgresql_spec.rb
@@ -3767,6 +3792,7 @@ files:
3767
3792
  - spec/models/salesforce_target_details_spec.rb
3768
3793
  - spec/models/saml_access_rules_spec.rb
3769
3794
  - spec/models/saml_attribute_spec.rb
3795
+ - spec/models/scan_results_spec.rb
3770
3796
  - spec/models/secret_info_spec.rb
3771
3797
  - spec/models/secret_sync_output_spec.rb
3772
3798
  - spec/models/sectigo_target_details_spec.rb
@@ -3842,6 +3868,7 @@ files:
3842
3868
  - spec/models/target_create_windows_spec.rb
3843
3869
  - spec/models/target_create_zero_ssl_spec.rb
3844
3870
  - spec/models/target_delete_spec.rb
3871
+ - spec/models/target_error_spec.rb
3845
3872
  - spec/models/target_get_details_spec.rb
3846
3873
  - spec/models/target_get_spec.rb
3847
3874
  - spec/models/target_item_association_spec.rb
@@ -4055,7 +4082,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
4055
4082
  - !ruby/object:Gem::Version
4056
4083
  version: '0'
4057
4084
  requirements: []
4058
- rubygems_version: 3.6.9
4085
+ rubygems_version: 4.0.3
4059
4086
  specification_version: 4
4060
4087
  summary: Akeyless API Ruby Gem
4061
4088
  test_files:
@@ -4164,10 +4191,15 @@ test_files:
4164
4191
  - spec/models/cert_access_rules_spec.rb
4165
4192
  - spec/models/certificate_analytic_aggregation_spec.rb
4166
4193
  - spec/models/certificate_chain_info_spec.rb
4194
+ - spec/models/certificate_discovery_output_spec.rb
4195
+ - spec/models/certificate_discovery_spec.rb
4167
4196
  - spec/models/certificate_expiration_event_spec.rb
4168
4197
  - spec/models/certificate_expiration_events_settings_spec.rb
4169
4198
  - spec/models/certificate_info_spec.rb
4170
4199
  - spec/models/certificate_issue_info_spec.rb
4200
+ - spec/models/certificate_migration_spec.rb
4201
+ - spec/models/certificate_payload_spec.rb
4202
+ - spec/models/certificate_scan_target_spec.rb
4171
4203
  - spec/models/certificate_store_spec.rb
4172
4204
  - spec/models/certificate_template_info_spec.rb
4173
4205
  - spec/models/certificate_version_info_spec.rb
@@ -4908,6 +4940,7 @@ test_files:
4908
4940
  - spec/models/rotated_secret_create_mongodb_spec.rb
4909
4941
  - spec/models/rotated_secret_create_mssql_spec.rb
4910
4942
  - spec/models/rotated_secret_create_mysql_spec.rb
4943
+ - spec/models/rotated_secret_create_open_ai_spec.rb
4911
4944
  - spec/models/rotated_secret_create_oracledb_spec.rb
4912
4945
  - spec/models/rotated_secret_create_output_spec.rb
4913
4946
  - spec/models/rotated_secret_create_postgresql_spec.rb
@@ -4935,6 +4968,7 @@ test_files:
4935
4968
  - spec/models/rotated_secret_update_mongodb_spec.rb
4936
4969
  - spec/models/rotated_secret_update_mssql_spec.rb
4937
4970
  - spec/models/rotated_secret_update_mysql_spec.rb
4971
+ - spec/models/rotated_secret_update_open_ai_spec.rb
4938
4972
  - spec/models/rotated_secret_update_oracledb_spec.rb
4939
4973
  - spec/models/rotated_secret_update_output_spec.rb
4940
4974
  - spec/models/rotated_secret_update_postgresql_spec.rb
@@ -4951,6 +4985,7 @@ test_files:
4951
4985
  - spec/models/salesforce_target_details_spec.rb
4952
4986
  - spec/models/saml_access_rules_spec.rb
4953
4987
  - spec/models/saml_attribute_spec.rb
4988
+ - spec/models/scan_results_spec.rb
4954
4989
  - spec/models/secret_info_spec.rb
4955
4990
  - spec/models/secret_sync_output_spec.rb
4956
4991
  - spec/models/sectigo_target_details_spec.rb
@@ -5026,6 +5061,7 @@ test_files:
5026
5061
  - spec/models/target_create_windows_spec.rb
5027
5062
  - spec/models/target_create_zero_ssl_spec.rb
5028
5063
  - spec/models/target_delete_spec.rb
5064
+ - spec/models/target_error_spec.rb
5029
5065
  - spec/models/target_get_details_spec.rb
5030
5066
  - spec/models/target_get_spec.rb
5031
5067
  - spec/models/target_item_association_spec.rb