akeyless 3.1.0 → 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -1
  3. data/docs/CreateCertificate.md +38 -0
  4. data/docs/CreateCertificateOutput.md +18 -0
  5. data/docs/GatewayUpdateTlsCert.md +26 -0
  6. data/docs/GatewayUpdateTlsCertOutput.md +18 -0
  7. data/docs/GetCertificateValue.md +26 -0
  8. data/docs/GetCertificateValueOutput.md +20 -0
  9. data/docs/ListSRABastions.md +2 -0
  10. data/docs/RotateKey.md +2 -0
  11. data/docs/UpdateCertificateOutput.md +18 -0
  12. data/docs/UpdateCertificateValue.md +32 -0
  13. data/docs/V2Api.md +252 -0
  14. data/lib/akeyless/api/v2_api.rb +256 -0
  15. data/lib/akeyless/models/create_certificate.rb +329 -0
  16. data/lib/akeyless/models/create_certificate_output.rb +219 -0
  17. data/lib/akeyless/models/gateway_update_tls_cert.rb +261 -0
  18. data/lib/akeyless/models/gateway_update_tls_cert_output.rb +219 -0
  19. data/lib/akeyless/models/get_certificate_value.rb +265 -0
  20. data/lib/akeyless/models/get_certificate_value_output.rb +228 -0
  21. data/lib/akeyless/models/list_sra_bastions.rb +10 -1
  22. data/lib/akeyless/models/rotate_key.rb +11 -1
  23. data/lib/akeyless/models/update_certificate_output.rb +219 -0
  24. data/lib/akeyless/models/update_certificate_value.rb +297 -0
  25. data/lib/akeyless/version.rb +1 -1
  26. data/lib/akeyless.rb +8 -0
  27. data/spec/models/create_certificate_output_spec.rb +34 -0
  28. data/spec/models/create_certificate_spec.rb +94 -0
  29. data/spec/models/gateway_update_tls_cert_output_spec.rb +34 -0
  30. data/spec/models/gateway_update_tls_cert_spec.rb +58 -0
  31. data/spec/models/get_certificate_value_output_spec.rb +40 -0
  32. data/spec/models/get_certificate_value_spec.rb +58 -0
  33. data/spec/models/update_certificate_output_spec.rb +34 -0
  34. data/spec/models/update_certificate_value_spec.rb +76 -0
  35. metadata +572 -540
@@ -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: 6.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GatewayUpdateTlsCertOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GatewayUpdateTlsCertOutput do
21
+ let(:instance) { Akeyless::GatewayUpdateTlsCertOutput.new }
22
+
23
+ describe 'test an instance of GatewayUpdateTlsCertOutput' do
24
+ it 'should create an instance of GatewayUpdateTlsCertOutput' do
25
+ expect(instance).to be_instance_of(Akeyless::GatewayUpdateTlsCertOutput)
26
+ end
27
+ end
28
+ describe 'test attribute "updated"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ 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: 6.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GatewayUpdateTlsCert
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GatewayUpdateTlsCert do
21
+ let(:instance) { Akeyless::GatewayUpdateTlsCert.new }
22
+
23
+ describe 'test an instance of GatewayUpdateTlsCert' do
24
+ it 'should create an instance of GatewayUpdateTlsCert' do
25
+ expect(instance).to be_instance_of(Akeyless::GatewayUpdateTlsCert)
26
+ end
27
+ end
28
+ describe 'test attribute "cert_data"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "json"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "key_data"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "token"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/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://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ 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: 6.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GetCertificateValueOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GetCertificateValueOutput do
21
+ let(:instance) { Akeyless::GetCertificateValueOutput.new }
22
+
23
+ describe 'test an instance of GetCertificateValueOutput' do
24
+ it 'should create an instance of GetCertificateValueOutput' do
25
+ expect(instance).to be_instance_of(Akeyless::GetCertificateValueOutput)
26
+ end
27
+ end
28
+ describe 'test attribute "certificate_pem"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "private_key_pem"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ 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: 6.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GetCertificateValue
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GetCertificateValue do
21
+ let(:instance) { Akeyless::GetCertificateValue.new }
22
+
23
+ describe 'test an instance of GetCertificateValue' do
24
+ it 'should create an instance of GetCertificateValue' do
25
+ expect(instance).to be_instance_of(Akeyless::GetCertificateValue)
26
+ end
27
+ end
28
+ describe 'test attribute "json"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "name"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "token"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "uid_token"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "version"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ 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: 6.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::UpdateCertificateOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::UpdateCertificateOutput do
21
+ let(:instance) { Akeyless::UpdateCertificateOutput.new }
22
+
23
+ describe 'test an instance of UpdateCertificateOutput' do
24
+ it 'should create an instance of UpdateCertificateOutput' do
25
+ expect(instance).to be_instance_of(Akeyless::UpdateCertificateOutput)
26
+ end
27
+ end
28
+ describe 'test attribute "name"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ end
@@ -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: 6.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::UpdateCertificateValue
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::UpdateCertificateValue do
21
+ let(:instance) { Akeyless::UpdateCertificateValue.new }
22
+
23
+ describe 'test an instance of UpdateCertificateValue' do
24
+ it 'should create an instance of UpdateCertificateValue' do
25
+ expect(instance).to be_instance_of(Akeyless::UpdateCertificateValue)
26
+ end
27
+ end
28
+ describe 'test attribute "certificate_data"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "expiration_event_in"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "json"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "key"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "key_data"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "name"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "token"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/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://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ end