akeyless 5.0.18 → 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.
- checksums.yaml +4 -4
- data/README.md +9 -1
- data/docs/CertificateDiscovery.md +34 -0
- data/docs/CertificateDiscoveryOutput.md +18 -0
- data/docs/CertificateMigration.md +20 -0
- data/docs/CertificatePayload.md +30 -0
- data/docs/CertificateScanTarget.md +20 -0
- data/docs/CreateRole.md +5 -5
- data/docs/GatewayCreateMigration.md +7 -1
- data/docs/GatewayUpdateMigration.md +6 -0
- data/docs/MigrationsConfigPart.md +2 -0
- data/docs/ScanResults.md +32 -0
- data/docs/TargetError.md +22 -0
- data/docs/UpdateRole.md +5 -5
- data/docs/UscDelete.md +2 -0
- data/docs/V2Api.md +65 -2
- data/lib/akeyless/api/v2_api.rb +64 -0
- data/lib/akeyless/models/certificate_discovery.rb +318 -0
- data/lib/akeyless/models/certificate_discovery_output.rb +214 -0
- data/lib/akeyless/models/certificate_migration.rb +223 -0
- data/lib/akeyless/models/certificate_payload.rb +272 -0
- data/lib/akeyless/models/certificate_scan_target.rb +223 -0
- data/lib/akeyless/models/create_role.rb +5 -5
- data/lib/akeyless/models/gateway_create_migration.rb +43 -2
- data/lib/akeyless/models/gateway_update_migration.rb +42 -1
- data/lib/akeyless/models/migrations_config_part.rb +12 -1
- data/lib/akeyless/models/scan_results.rb +282 -0
- data/lib/akeyless/models/target_error.rb +233 -0
- data/lib/akeyless/models/update_role.rb +5 -5
- data/lib/akeyless/models/usc_delete.rb +11 -1
- data/lib/akeyless/version.rb +1 -1
- data/lib/akeyless.rb +7 -0
- data/spec/models/certificate_discovery_output_spec.rb +36 -0
- data/spec/models/certificate_discovery_spec.rb +84 -0
- data/spec/models/certificate_migration_spec.rb +42 -0
- data/spec/models/certificate_payload_spec.rb +72 -0
- data/spec/models/certificate_scan_target_spec.rb +42 -0
- data/spec/models/scan_results_spec.rb +78 -0
- data/spec/models/target_error_spec.rb +48 -0
- metadata +30 -2
|
@@ -0,0 +1,84 @@
|
|
|
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::CertificateDiscovery
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Akeyless::CertificateDiscovery do
|
|
21
|
+
let(:instance) { Akeyless::CertificateDiscovery.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of CertificateDiscovery' do
|
|
24
|
+
it 'should create an instance of CertificateDiscovery' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Akeyless::CertificateDiscovery)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "debug"' 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 "expiration_event_in"' 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 "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 "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 "port_ranges"' 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 "protection_key"' 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 "target_location"' 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 "token"' 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 "uid_token"' 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
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
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::CertificateMigration
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Akeyless::CertificateMigration do
|
|
21
|
+
let(:instance) { Akeyless::CertificateMigration.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of CertificateMigration' do
|
|
24
|
+
it 'should create an instance of CertificateMigration' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Akeyless::CertificateMigration)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "general"' 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 "payload"' 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
|
+
end
|
|
@@ -0,0 +1,72 @@
|
|
|
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::CertificatePayload
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Akeyless::CertificatePayload do
|
|
21
|
+
let(:instance) { Akeyless::CertificatePayload.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of CertificatePayload' do
|
|
24
|
+
it 'should create an instance of CertificatePayload' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Akeyless::CertificatePayload)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "expiration_events"' 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 "folder"' 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 "max_dial_timeout"' 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 "max_scan_duration"' 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 "max_workers"' 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 "port_ranges"' 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 "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
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
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::CertificateScanTarget
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Akeyless::CertificateScanTarget do
|
|
21
|
+
let(:instance) { Akeyless::CertificateScanTarget.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of CertificateScanTarget' do
|
|
24
|
+
it 'should create an instance of CertificateScanTarget' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Akeyless::CertificateScanTarget)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "host"' 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 "port_ranges"' 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
|
+
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.
|
|
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
|
|
@@ -955,6 +960,7 @@ files:
|
|
|
955
960
|
- docs/SSHCertificateIssueDetails.md
|
|
956
961
|
- docs/SSHTargetDetails.md
|
|
957
962
|
- docs/SalesforceTargetDetails.md
|
|
963
|
+
- docs/ScanResults.md
|
|
958
964
|
- docs/SecretInfo.md
|
|
959
965
|
- docs/SecretSyncOutput.md
|
|
960
966
|
- docs/SectigoTargetDetails.md
|
|
@@ -1029,6 +1035,7 @@ files:
|
|
|
1029
1035
|
- docs/TargetCreateWindows.md
|
|
1030
1036
|
- docs/TargetCreateZeroSSL.md
|
|
1031
1037
|
- docs/TargetDelete.md
|
|
1038
|
+
- docs/TargetError.md
|
|
1032
1039
|
- docs/TargetGet.md
|
|
1033
1040
|
- docs/TargetGetDetails.md
|
|
1034
1041
|
- docs/TargetItemAssociation.md
|
|
@@ -1331,10 +1338,15 @@ files:
|
|
|
1331
1338
|
- lib/akeyless/models/cert_access_rules.rb
|
|
1332
1339
|
- lib/akeyless/models/certificate_analytic_aggregation.rb
|
|
1333
1340
|
- lib/akeyless/models/certificate_chain_info.rb
|
|
1341
|
+
- lib/akeyless/models/certificate_discovery.rb
|
|
1342
|
+
- lib/akeyless/models/certificate_discovery_output.rb
|
|
1334
1343
|
- lib/akeyless/models/certificate_expiration_event.rb
|
|
1335
1344
|
- lib/akeyless/models/certificate_expiration_events_settings.rb
|
|
1336
1345
|
- lib/akeyless/models/certificate_info.rb
|
|
1337
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
|
|
1338
1350
|
- lib/akeyless/models/certificate_store.rb
|
|
1339
1351
|
- lib/akeyless/models/certificate_template_info.rb
|
|
1340
1352
|
- lib/akeyless/models/certificate_version_info.rb
|
|
@@ -2120,6 +2132,7 @@ files:
|
|
|
2120
2132
|
- lib/akeyless/models/salesforce_target_details.rb
|
|
2121
2133
|
- lib/akeyless/models/saml_access_rules.rb
|
|
2122
2134
|
- lib/akeyless/models/saml_attribute.rb
|
|
2135
|
+
- lib/akeyless/models/scan_results.rb
|
|
2123
2136
|
- lib/akeyless/models/secret_info.rb
|
|
2124
2137
|
- lib/akeyless/models/secret_sync_output.rb
|
|
2125
2138
|
- lib/akeyless/models/sectigo_target_details.rb
|
|
@@ -2196,6 +2209,7 @@ files:
|
|
|
2196
2209
|
- lib/akeyless/models/target_create_windows.rb
|
|
2197
2210
|
- lib/akeyless/models/target_create_zero_ssl.rb
|
|
2198
2211
|
- lib/akeyless/models/target_delete.rb
|
|
2212
|
+
- lib/akeyless/models/target_error.rb
|
|
2199
2213
|
- lib/akeyless/models/target_get.rb
|
|
2200
2214
|
- lib/akeyless/models/target_get_details.rb
|
|
2201
2215
|
- lib/akeyless/models/target_item_association.rb
|
|
@@ -2984,10 +2998,15 @@ files:
|
|
|
2984
2998
|
- spec/models/cert_access_rules_spec.rb
|
|
2985
2999
|
- spec/models/certificate_analytic_aggregation_spec.rb
|
|
2986
3000
|
- spec/models/certificate_chain_info_spec.rb
|
|
3001
|
+
- spec/models/certificate_discovery_output_spec.rb
|
|
3002
|
+
- spec/models/certificate_discovery_spec.rb
|
|
2987
3003
|
- spec/models/certificate_expiration_event_spec.rb
|
|
2988
3004
|
- spec/models/certificate_expiration_events_settings_spec.rb
|
|
2989
3005
|
- spec/models/certificate_info_spec.rb
|
|
2990
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
|
|
2991
3010
|
- spec/models/certificate_store_spec.rb
|
|
2992
3011
|
- spec/models/certificate_template_info_spec.rb
|
|
2993
3012
|
- spec/models/certificate_version_info_spec.rb
|
|
@@ -3773,6 +3792,7 @@ files:
|
|
|
3773
3792
|
- spec/models/salesforce_target_details_spec.rb
|
|
3774
3793
|
- spec/models/saml_access_rules_spec.rb
|
|
3775
3794
|
- spec/models/saml_attribute_spec.rb
|
|
3795
|
+
- spec/models/scan_results_spec.rb
|
|
3776
3796
|
- spec/models/secret_info_spec.rb
|
|
3777
3797
|
- spec/models/secret_sync_output_spec.rb
|
|
3778
3798
|
- spec/models/sectigo_target_details_spec.rb
|
|
@@ -3848,6 +3868,7 @@ files:
|
|
|
3848
3868
|
- spec/models/target_create_windows_spec.rb
|
|
3849
3869
|
- spec/models/target_create_zero_ssl_spec.rb
|
|
3850
3870
|
- spec/models/target_delete_spec.rb
|
|
3871
|
+
- spec/models/target_error_spec.rb
|
|
3851
3872
|
- spec/models/target_get_details_spec.rb
|
|
3852
3873
|
- spec/models/target_get_spec.rb
|
|
3853
3874
|
- spec/models/target_item_association_spec.rb
|
|
@@ -4061,7 +4082,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
4061
4082
|
- !ruby/object:Gem::Version
|
|
4062
4083
|
version: '0'
|
|
4063
4084
|
requirements: []
|
|
4064
|
-
rubygems_version:
|
|
4085
|
+
rubygems_version: 4.0.3
|
|
4065
4086
|
specification_version: 4
|
|
4066
4087
|
summary: Akeyless API Ruby Gem
|
|
4067
4088
|
test_files:
|
|
@@ -4170,10 +4191,15 @@ test_files:
|
|
|
4170
4191
|
- spec/models/cert_access_rules_spec.rb
|
|
4171
4192
|
- spec/models/certificate_analytic_aggregation_spec.rb
|
|
4172
4193
|
- spec/models/certificate_chain_info_spec.rb
|
|
4194
|
+
- spec/models/certificate_discovery_output_spec.rb
|
|
4195
|
+
- spec/models/certificate_discovery_spec.rb
|
|
4173
4196
|
- spec/models/certificate_expiration_event_spec.rb
|
|
4174
4197
|
- spec/models/certificate_expiration_events_settings_spec.rb
|
|
4175
4198
|
- spec/models/certificate_info_spec.rb
|
|
4176
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
|
|
4177
4203
|
- spec/models/certificate_store_spec.rb
|
|
4178
4204
|
- spec/models/certificate_template_info_spec.rb
|
|
4179
4205
|
- spec/models/certificate_version_info_spec.rb
|
|
@@ -4959,6 +4985,7 @@ test_files:
|
|
|
4959
4985
|
- spec/models/salesforce_target_details_spec.rb
|
|
4960
4986
|
- spec/models/saml_access_rules_spec.rb
|
|
4961
4987
|
- spec/models/saml_attribute_spec.rb
|
|
4988
|
+
- spec/models/scan_results_spec.rb
|
|
4962
4989
|
- spec/models/secret_info_spec.rb
|
|
4963
4990
|
- spec/models/secret_sync_output_spec.rb
|
|
4964
4991
|
- spec/models/sectigo_target_details_spec.rb
|
|
@@ -5034,6 +5061,7 @@ test_files:
|
|
|
5034
5061
|
- spec/models/target_create_windows_spec.rb
|
|
5035
5062
|
- spec/models/target_create_zero_ssl_spec.rb
|
|
5036
5063
|
- spec/models/target_delete_spec.rb
|
|
5064
|
+
- spec/models/target_error_spec.rb
|
|
5037
5065
|
- spec/models/target_get_details_spec.rb
|
|
5038
5066
|
- spec/models/target_get_spec.rb
|
|
5039
5067
|
- spec/models/target_item_association_spec.rb
|