akeyless 3.1.1 → 3.1.2
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 +12 -1
- data/docs/AssocTargetItem.md +2 -0
- data/docs/CreateCertificate.md +3 -1
- data/docs/CreateClassicKey.md +6 -2
- data/docs/CreateDBTarget.md +4 -0
- data/docs/CreateDFCKey.md +3 -1
- data/docs/CreateDynamicSecret.md +3 -1
- data/docs/CreateKey.md +3 -1
- data/docs/CreatePKICertIssuer.md +3 -1
- data/docs/CreateRotatedSecret.md +3 -1
- data/docs/CreateSSHCertIssuer.md +3 -1
- data/docs/CreateSecret.md +3 -1
- data/docs/CreateTokenizer.md +3 -1
- data/docs/DSProducerDetails.md +8 -0
- data/docs/DecryptGPG.md +34 -0
- data/docs/DecryptGPGOutput.md +18 -0
- data/docs/EncryptGPG.md +32 -0
- data/docs/EncryptGPGOutput.md +18 -0
- data/docs/GatewayCreateProducerSnowflake.md +4 -0
- data/docs/GatewayUpdateItem.md +3 -1
- data/docs/GatewayUpdateProducerSnowflake.md +4 -0
- data/docs/GenCustomerFragment.md +4 -2
- data/docs/SignGPG.md +32 -0
- data/docs/SignGPGOutput.md +18 -0
- data/docs/TargetTypeDetailsInput.md +4 -0
- data/docs/UpdateDBTarget.md +4 -0
- data/docs/UpdateItem.md +3 -1
- data/docs/UpdatePKICertIssuer.md +3 -1
- data/docs/UpdateRotatedSecret.md +3 -1
- data/docs/UpdateSSHCertIssuer.md +3 -1
- data/docs/UploadPKCS12.md +3 -1
- data/docs/UploadRSA.md +3 -1
- data/docs/V2Api.md +252 -0
- data/docs/VerifyGPG.md +32 -0
- data/lib/akeyless/api/v2_api.rb +256 -0
- data/lib/akeyless/models/assoc_target_item.rb +11 -1
- data/lib/akeyless/models/create_certificate.rb +12 -2
- data/lib/akeyless/models/create_classic_key.rb +23 -3
- data/lib/akeyless/models/create_db_target.rb +21 -1
- data/lib/akeyless/models/create_dfc_key.rb +12 -2
- data/lib/akeyless/models/create_dynamic_secret.rb +12 -4
- data/lib/akeyless/models/create_key.rb +12 -2
- data/lib/akeyless/models/create_pki_cert_issuer.rb +12 -2
- data/lib/akeyless/models/create_rotated_secret.rb +12 -2
- data/lib/akeyless/models/create_secret.rb +12 -2
- data/lib/akeyless/models/create_ssh_cert_issuer.rb +12 -2
- data/lib/akeyless/models/create_tokenizer.rb +12 -2
- data/lib/akeyless/models/decrypt_gpg.rb +310 -0
- data/lib/akeyless/models/decrypt_gpg_output.rb +219 -0
- data/lib/akeyless/models/ds_producer_details.rb +40 -1
- data/lib/akeyless/models/encrypt_gpg.rb +300 -0
- data/lib/akeyless/models/encrypt_gpg_output.rb +219 -0
- data/lib/akeyless/models/gateway_create_producer_snowflake.rb +22 -2
- data/lib/akeyless/models/gateway_update_item.rb +14 -2
- data/lib/akeyless/models/gateway_update_producer_snowflake.rb +22 -2
- data/lib/akeyless/models/gen_customer_fragment.rb +15 -5
- data/lib/akeyless/models/sign_gpg.rb +300 -0
- data/lib/akeyless/models/sign_gpg_output.rb +219 -0
- data/lib/akeyless/models/target_type_details_input.rb +20 -1
- data/lib/akeyless/models/update_db_target.rb +21 -1
- data/lib/akeyless/models/update_item.rb +14 -2
- data/lib/akeyless/models/update_pki_cert_issuer.rb +12 -2
- data/lib/akeyless/models/update_rotated_secret.rb +14 -2
- data/lib/akeyless/models/update_ssh_cert_issuer.rb +12 -2
- data/lib/akeyless/models/upload_pkcs12.rb +12 -2
- data/lib/akeyless/models/upload_rsa.rb +12 -2
- data/lib/akeyless/models/verify_gpg.rb +300 -0
- data/lib/akeyless/version.rb +1 -1
- data/lib/akeyless.rb +7 -0
- data/spec/models/decrypt_gpg_output_spec.rb +34 -0
- data/spec/models/decrypt_gpg_spec.rb +82 -0
- data/spec/models/encrypt_gpg_output_spec.rb +34 -0
- data/spec/models/encrypt_gpg_spec.rb +76 -0
- data/spec/models/sign_gpg_output_spec.rb +34 -0
- data/spec/models/sign_gpg_spec.rb +76 -0
- data/spec/models/verify_gpg_spec.rb +76 -0
- metadata +30 -2
data/lib/akeyless.rb
CHANGED
@@ -146,6 +146,8 @@ require 'akeyless/models/datadog_forwarding_config'
|
|
146
146
|
require 'akeyless/models/decrypt'
|
147
147
|
require 'akeyless/models/decrypt_file'
|
148
148
|
require 'akeyless/models/decrypt_file_output'
|
149
|
+
require 'akeyless/models/decrypt_gpg'
|
150
|
+
require 'akeyless/models/decrypt_gpg_output'
|
149
151
|
require 'akeyless/models/decrypt_output'
|
150
152
|
require 'akeyless/models/decrypt_pkcs1'
|
151
153
|
require 'akeyless/models/decrypt_pkcs1_output'
|
@@ -184,6 +186,8 @@ require 'akeyless/models/email_tokenizer_info'
|
|
184
186
|
require 'akeyless/models/encrypt'
|
185
187
|
require 'akeyless/models/encrypt_file'
|
186
188
|
require 'akeyless/models/encrypt_file_output'
|
189
|
+
require 'akeyless/models/encrypt_gpg'
|
190
|
+
require 'akeyless/models/encrypt_gpg_output'
|
187
191
|
require 'akeyless/models/encrypt_output'
|
188
192
|
require 'akeyless/models/encrypt_with_classic_key'
|
189
193
|
require 'akeyless/models/encrypt_with_classic_key_output'
|
@@ -478,6 +482,8 @@ require 'akeyless/models/secure_remote_access'
|
|
478
482
|
require 'akeyless/models/set_item_state'
|
479
483
|
require 'akeyless/models/set_role_rule'
|
480
484
|
require 'akeyless/models/share_item'
|
485
|
+
require 'akeyless/models/sign_gpg'
|
486
|
+
require 'akeyless/models/sign_gpg_output'
|
481
487
|
require 'akeyless/models/sign_jwt_output'
|
482
488
|
require 'akeyless/models/sign_jwt_with_classic_key'
|
483
489
|
require 'akeyless/models/sign_pkcs1'
|
@@ -594,6 +600,7 @@ require 'akeyless/models/upload_rsa'
|
|
594
600
|
require 'akeyless/models/validate_token'
|
595
601
|
require 'akeyless/models/validate_token_output'
|
596
602
|
require 'akeyless/models/vaultless_tokenizer_info'
|
603
|
+
require 'akeyless/models/verify_gpg'
|
597
604
|
require 'akeyless/models/verify_jwt_output'
|
598
605
|
require 'akeyless/models/verify_jwt_with_classic_key'
|
599
606
|
require 'akeyless/models/verify_pkcs1'
|
@@ -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::DecryptGPGOutput
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::DecryptGPGOutput do
|
21
|
+
let(:instance) { Akeyless::DecryptGPGOutput.new }
|
22
|
+
|
23
|
+
describe 'test an instance of DecryptGPGOutput' do
|
24
|
+
it 'should create an instance of DecryptGPGOutput' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::DecryptGPGOutput)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "result"' 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,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: 6.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Akeyless::DecryptGPG
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::DecryptGPG do
|
21
|
+
let(:instance) { Akeyless::DecryptGPG.new }
|
22
|
+
|
23
|
+
describe 'test an instance of DecryptGPG' do
|
24
|
+
it 'should create an instance of DecryptGPG' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::DecryptGPG)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "ciphertext"' 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 "display_id"' 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 "item_id"' 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 "json"' 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_name"' 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 "output_format"' 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 "passphrase"' 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 "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
|
+
describe 'test attribute "uid_token"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/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: 6.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Akeyless::EncryptGPGOutput
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::EncryptGPGOutput do
|
21
|
+
let(:instance) { Akeyless::EncryptGPGOutput.new }
|
22
|
+
|
23
|
+
describe 'test an instance of EncryptGPGOutput' do
|
24
|
+
it 'should create an instance of EncryptGPGOutput' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::EncryptGPGOutput)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "result"' 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::EncryptGPG
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::EncryptGPG do
|
21
|
+
let(:instance) { Akeyless::EncryptGPG.new }
|
22
|
+
|
23
|
+
describe 'test an instance of EncryptGPG' do
|
24
|
+
it 'should create an instance of EncryptGPG' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::EncryptGPG)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "display_id"' 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 "input_format"' 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 "item_id"' 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 "json"' 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_name"' 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 "plaintext"' 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
|
@@ -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::SignGPGOutput
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::SignGPGOutput do
|
21
|
+
let(:instance) { Akeyless::SignGPGOutput.new }
|
22
|
+
|
23
|
+
describe 'test an instance of SignGPGOutput' do
|
24
|
+
it 'should create an instance of SignGPGOutput' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::SignGPGOutput)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "result"' 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::SignGPG
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::SignGPG do
|
21
|
+
let(:instance) { Akeyless::SignGPG.new }
|
22
|
+
|
23
|
+
describe 'test an instance of SignGPG' do
|
24
|
+
it 'should create an instance of SignGPG' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::SignGPG)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "display_id"' 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 "item_id"' 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_name"' 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 "message"' 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 "passphrase"' 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
|
@@ -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::VerifyGPG
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::VerifyGPG do
|
21
|
+
let(:instance) { Akeyless::VerifyGPG.new }
|
22
|
+
|
23
|
+
describe 'test an instance of VerifyGPG' do
|
24
|
+
it 'should create an instance of VerifyGPG' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::VerifyGPG)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "display_id"' 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 "item_id"' 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_name"' 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 "passphrase"' 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 "signature"' 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
|
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.1.
|
4
|
+
version: 3.1.2
|
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-01-
|
11
|
+
date: 2023-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -192,6 +192,8 @@ files:
|
|
192
192
|
- docs/Decrypt.md
|
193
193
|
- docs/DecryptFile.md
|
194
194
|
- docs/DecryptFileOutput.md
|
195
|
+
- docs/DecryptGPG.md
|
196
|
+
- docs/DecryptGPGOutput.md
|
195
197
|
- docs/DecryptOutput.md
|
196
198
|
- docs/DecryptPKCS1.md
|
197
199
|
- docs/DecryptPKCS1Output.md
|
@@ -230,6 +232,8 @@ files:
|
|
230
232
|
- docs/Encrypt.md
|
231
233
|
- docs/EncryptFile.md
|
232
234
|
- docs/EncryptFileOutput.md
|
235
|
+
- docs/EncryptGPG.md
|
236
|
+
- docs/EncryptGPGOutput.md
|
233
237
|
- docs/EncryptOutput.md
|
234
238
|
- docs/EncryptPKCS1.md
|
235
239
|
- docs/EncryptPKCS1Output.md
|
@@ -529,6 +533,8 @@ files:
|
|
529
533
|
- docs/SetItemState.md
|
530
534
|
- docs/SetRoleRule.md
|
531
535
|
- docs/ShareItem.md
|
536
|
+
- docs/SignGPG.md
|
537
|
+
- docs/SignGPGOutput.md
|
532
538
|
- docs/SignJWTOutput.md
|
533
539
|
- docs/SignJWTWithClassicKey.md
|
534
540
|
- docs/SignPKCS1.md
|
@@ -649,6 +655,7 @@ files:
|
|
649
655
|
- docs/ValidateToken.md
|
650
656
|
- docs/ValidateTokenOutput.md
|
651
657
|
- docs/VaultlessTokenizerInfo.md
|
658
|
+
- docs/VerifyGPG.md
|
652
659
|
- docs/VerifyJWTOutput.md
|
653
660
|
- docs/VerifyJWTWithClassicKey.md
|
654
661
|
- docs/VerifyPKCS1.md
|
@@ -788,6 +795,8 @@ files:
|
|
788
795
|
- lib/akeyless/models/decrypt.rb
|
789
796
|
- lib/akeyless/models/decrypt_file.rb
|
790
797
|
- lib/akeyless/models/decrypt_file_output.rb
|
798
|
+
- lib/akeyless/models/decrypt_gpg.rb
|
799
|
+
- lib/akeyless/models/decrypt_gpg_output.rb
|
791
800
|
- lib/akeyless/models/decrypt_output.rb
|
792
801
|
- lib/akeyless/models/decrypt_pkcs1.rb
|
793
802
|
- lib/akeyless/models/decrypt_pkcs1_output.rb
|
@@ -827,6 +836,8 @@ files:
|
|
827
836
|
- lib/akeyless/models/encrypt.rb
|
828
837
|
- lib/akeyless/models/encrypt_file.rb
|
829
838
|
- lib/akeyless/models/encrypt_file_output.rb
|
839
|
+
- lib/akeyless/models/encrypt_gpg.rb
|
840
|
+
- lib/akeyless/models/encrypt_gpg_output.rb
|
830
841
|
- lib/akeyless/models/encrypt_output.rb
|
831
842
|
- lib/akeyless/models/encrypt_pkcs1.rb
|
832
843
|
- lib/akeyless/models/encrypt_pkcs1_output.rb
|
@@ -1125,6 +1136,8 @@ files:
|
|
1125
1136
|
- lib/akeyless/models/set_item_state.rb
|
1126
1137
|
- lib/akeyless/models/set_role_rule.rb
|
1127
1138
|
- lib/akeyless/models/share_item.rb
|
1139
|
+
- lib/akeyless/models/sign_gpg.rb
|
1140
|
+
- lib/akeyless/models/sign_gpg_output.rb
|
1128
1141
|
- lib/akeyless/models/sign_jwt_output.rb
|
1129
1142
|
- lib/akeyless/models/sign_jwt_with_classic_key.rb
|
1130
1143
|
- lib/akeyless/models/sign_pkcs1.rb
|
@@ -1245,6 +1258,7 @@ files:
|
|
1245
1258
|
- lib/akeyless/models/validate_token.rb
|
1246
1259
|
- lib/akeyless/models/validate_token_output.rb
|
1247
1260
|
- lib/akeyless/models/vaultless_tokenizer_info.rb
|
1261
|
+
- lib/akeyless/models/verify_gpg.rb
|
1248
1262
|
- lib/akeyless/models/verify_jwt_output.rb
|
1249
1263
|
- lib/akeyless/models/verify_jwt_with_classic_key.rb
|
1250
1264
|
- lib/akeyless/models/verify_pkcs1.rb
|
@@ -1870,6 +1884,8 @@ files:
|
|
1870
1884
|
- spec/models/datadog_forwarding_config_spec.rb
|
1871
1885
|
- spec/models/decrypt_file_output_spec.rb
|
1872
1886
|
- spec/models/decrypt_file_spec.rb
|
1887
|
+
- spec/models/decrypt_gpg_output_spec.rb
|
1888
|
+
- spec/models/decrypt_gpg_spec.rb
|
1873
1889
|
- spec/models/decrypt_output_spec.rb
|
1874
1890
|
- spec/models/decrypt_pkcs1_output_spec.rb
|
1875
1891
|
- spec/models/decrypt_pkcs1_spec.rb
|
@@ -1909,6 +1925,8 @@ files:
|
|
1909
1925
|
- spec/models/email_tokenizer_info_spec.rb
|
1910
1926
|
- spec/models/encrypt_file_output_spec.rb
|
1911
1927
|
- spec/models/encrypt_file_spec.rb
|
1928
|
+
- spec/models/encrypt_gpg_output_spec.rb
|
1929
|
+
- spec/models/encrypt_gpg_spec.rb
|
1912
1930
|
- spec/models/encrypt_output_spec.rb
|
1913
1931
|
- spec/models/encrypt_pkcs1_output_spec.rb
|
1914
1932
|
- spec/models/encrypt_pkcs1_spec.rb
|
@@ -2208,6 +2226,8 @@ files:
|
|
2208
2226
|
- spec/models/set_item_state_spec.rb
|
2209
2227
|
- spec/models/set_role_rule_spec.rb
|
2210
2228
|
- spec/models/share_item_spec.rb
|
2229
|
+
- spec/models/sign_gpg_output_spec.rb
|
2230
|
+
- spec/models/sign_gpg_spec.rb
|
2211
2231
|
- spec/models/sign_jwt_output_spec.rb
|
2212
2232
|
- spec/models/sign_jwt_with_classic_key_spec.rb
|
2213
2233
|
- spec/models/sign_pkcs1_output_spec.rb
|
@@ -2328,6 +2348,7 @@ files:
|
|
2328
2348
|
- spec/models/validate_token_output_spec.rb
|
2329
2349
|
- spec/models/validate_token_spec.rb
|
2330
2350
|
- spec/models/vaultless_tokenizer_info_spec.rb
|
2351
|
+
- spec/models/verify_gpg_spec.rb
|
2331
2352
|
- spec/models/verify_jwt_output_spec.rb
|
2332
2353
|
- spec/models/verify_jwt_with_classic_key_spec.rb
|
2333
2354
|
- spec/models/verify_pkcs1_spec.rb
|
@@ -2480,6 +2501,7 @@ test_files:
|
|
2480
2501
|
- spec/models/tokenize_spec.rb
|
2481
2502
|
- spec/models/uid_token_details_spec.rb
|
2482
2503
|
- spec/models/decrypt_with_classic_key_spec.rb
|
2504
|
+
- spec/models/verify_gpg_spec.rb
|
2483
2505
|
- spec/models/decrypt_output_spec.rb
|
2484
2506
|
- spec/models/create_auth_method_universal_identity_spec.rb
|
2485
2507
|
- spec/models/move_objects_spec.rb
|
@@ -2587,6 +2609,7 @@ test_files:
|
|
2587
2609
|
- spec/models/update_db_target_spec.rb
|
2588
2610
|
- spec/models/delete_target_association_spec.rb
|
2589
2611
|
- spec/models/gateway_update_producer_github_spec.rb
|
2612
|
+
- spec/models/decrypt_gpg_output_spec.rb
|
2590
2613
|
- spec/models/kmip_client_update_response_spec.rb
|
2591
2614
|
- spec/models/kmip_set_server_state_spec.rb
|
2592
2615
|
- spec/models/kmip_list_clients_spec.rb
|
@@ -2636,6 +2659,7 @@ test_files:
|
|
2636
2659
|
- spec/models/update_rdp_target_details_spec.rb
|
2637
2660
|
- spec/models/create_pki_cert_issuer_output_spec.rb
|
2638
2661
|
- spec/models/oidc_custom_claim_spec.rb
|
2662
|
+
- spec/models/encrypt_gpg_output_spec.rb
|
2639
2663
|
- spec/models/kmip_client_spec.rb
|
2640
2664
|
- spec/models/create_ssh_target_output_spec.rb
|
2641
2665
|
- spec/models/create_rabbit_mq_target_output_spec.rb
|
@@ -2691,6 +2715,7 @@ test_files:
|
|
2691
2715
|
- spec/models/verify_pki_cert_output_spec.rb
|
2692
2716
|
- spec/models/create_classic_key_spec.rb
|
2693
2717
|
- spec/models/kubernetes_access_rules_spec.rb
|
2718
|
+
- spec/models/sign_gpg_output_spec.rb
|
2694
2719
|
- spec/models/update_rotated_secret_spec.rb
|
2695
2720
|
- spec/models/gateway_update_producer_mssql_spec.rb
|
2696
2721
|
- spec/models/universal_identity_access_rules_spec.rb
|
@@ -2709,6 +2734,7 @@ test_files:
|
|
2709
2734
|
- spec/models/target_object_association_spec.rb
|
2710
2735
|
- spec/models/json_error_spec.rb
|
2711
2736
|
- spec/models/gateway_get_migration_spec.rb
|
2737
|
+
- spec/models/sign_gpg_spec.rb
|
2712
2738
|
- spec/models/update_target_details_output_spec.rb
|
2713
2739
|
- spec/models/gateway_list_migration_spec.rb
|
2714
2740
|
- spec/models/create_pki_cert_issuer_spec.rb
|
@@ -2842,6 +2868,7 @@ test_files:
|
|
2842
2868
|
- spec/models/get_pki_certificate_output_spec.rb
|
2843
2869
|
- spec/models/update_dockerhub_target_spec.rb
|
2844
2870
|
- spec/models/gateway_migration_create_output_spec.rb
|
2871
|
+
- spec/models/encrypt_gpg_spec.rb
|
2845
2872
|
- spec/models/migration_status_spec.rb
|
2846
2873
|
- spec/models/ldap_config_part_spec.rb
|
2847
2874
|
- spec/models/create_auth_method_awsiam_spec.rb
|
@@ -2913,6 +2940,7 @@ test_files:
|
|
2913
2940
|
- spec/models/rules_spec.rb
|
2914
2941
|
- spec/models/auth_method_role_association_spec.rb
|
2915
2942
|
- spec/models/customer_fragment_spec.rb
|
2943
|
+
- spec/models/decrypt_gpg_spec.rb
|
2916
2944
|
- spec/models/gateway_migration_delete_output_spec.rb
|
2917
2945
|
- spec/models/gateway_migration_sync_output_spec.rb
|
2918
2946
|
- spec/models/gateway_update_tls_cert_spec.rb
|