akeyless 5.0.6 → 5.0.8
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 +14 -1
- data/docs/Auth.md +4 -0
- data/docs/AuthOutput.md +2 -0
- data/docs/AzureLogAnalyticsForwardingConfig.md +2 -0
- data/docs/CertificateTemplateInfo.md +2 -0
- data/docs/CreateClassicKey.md +3 -1
- data/docs/CreateDFCKey.md +3 -1
- data/docs/CreateKey.md +3 -1
- data/docs/CreateRole.md +2 -0
- data/docs/GatewayCreateAllowedAccess.md +1 -1
- data/docs/GatewayUpdateAllowedAccess.md +1 -1
- data/docs/GatewayUpdateLogForwardingAzureAnalytics.md +2 -0
- data/docs/GatewayUpdateLogForwardingSplunk.md +2 -0
- data/docs/GeminiTargetDetails.md +22 -0
- data/docs/GenerateCsr.md +2 -0
- data/docs/GetCertChallenge.md +22 -0
- data/docs/GetCertChallengeOutput.md +18 -0
- data/docs/GwUpdateRemoteAccessSessionLogsAzureAnalytics.md +2 -0
- data/docs/GwUpdateRemoteAccessSessionLogsSplunk.md +2 -0
- data/docs/OpenAITargetDetails.md +26 -0
- data/docs/PathRule.md +2 -0
- data/docs/ReverseRBACClient.md +2 -0
- data/docs/RoleAuthMethodAssociation.md +2 -0
- data/docs/SharingItemFullInfo.md +2 -0
- data/docs/SplunkLogForwardingConfig.md +2 -0
- data/docs/StaticSecretSync.md +2 -0
- data/docs/TargetCreateGemini.md +36 -0
- data/docs/TargetCreateOpenAI.md +40 -0
- data/docs/TargetItemAssociation.md +2 -0
- data/docs/TargetTypeDetailsInput.md +4 -0
- data/docs/TargetUpdateGemini.md +42 -0
- data/docs/TargetUpdateOpenAI.md +46 -0
- data/docs/UpdateRole.md +2 -0
- data/docs/V2Api.md +315 -0
- data/lib/akeyless/api/v2_api.rb +320 -0
- data/lib/akeyless/models/auth.rb +21 -1
- data/lib/akeyless/models/auth_output.rb +10 -1
- data/lib/akeyless/models/azure_log_analytics_forwarding_config.rb +10 -1
- data/lib/akeyless/models/certificate_template_info.rb +10 -1
- data/lib/akeyless/models/create_classic_key.rb +14 -2
- data/lib/akeyless/models/create_dfc_key.rb +14 -2
- data/lib/akeyless/models/create_key.rb +14 -2
- data/lib/akeyless/models/create_role.rb +11 -1
- data/lib/akeyless/models/gateway_create_allowed_access.rb +1 -1
- data/lib/akeyless/models/gateway_update_allowed_access.rb +1 -1
- data/lib/akeyless/models/gateway_update_log_forwarding_azure_analytics.rb +13 -1
- data/lib/akeyless/models/gateway_update_log_forwarding_splunk.rb +13 -1
- data/lib/akeyless/models/gemini_target_details.rb +233 -0
- data/lib/akeyless/models/generate_csr.rb +13 -1
- data/lib/akeyless/models/get_cert_challenge.rb +238 -0
- data/lib/akeyless/models/get_cert_challenge_output.rb +214 -0
- data/lib/akeyless/models/gw_update_remote_access_session_logs_azure_analytics.rb +13 -1
- data/lib/akeyless/models/gw_update_remote_access_session_logs_splunk.rb +13 -1
- data/lib/akeyless/models/open_ai_target_details.rb +251 -0
- data/lib/akeyless/models/path_rule.rb +11 -1
- data/lib/akeyless/models/reverse_rbac_client.rb +10 -1
- data/lib/akeyless/models/role_auth_method_association.rb +10 -1
- data/lib/akeyless/models/sharing_item_full_info.rb +11 -1
- data/lib/akeyless/models/splunk_log_forwarding_config.rb +10 -1
- data/lib/akeyless/models/static_secret_sync.rb +11 -1
- data/lib/akeyless/models/target_create_gemini.rb +317 -0
- data/lib/akeyless/models/target_create_open_ai.rb +337 -0
- data/lib/akeyless/models/target_item_association.rb +10 -1
- data/lib/akeyless/models/target_type_details_input.rb +19 -1
- data/lib/akeyless/models/target_update_gemini.rb +351 -0
- data/lib/akeyless/models/target_update_open_ai.rb +371 -0
- data/lib/akeyless/models/update_role.rb +11 -1
- data/lib/akeyless/version.rb +1 -1
- data/lib/akeyless.rb +8 -0
- data/spec/models/gemini_target_details_spec.rb +48 -0
- data/spec/models/get_cert_challenge_output_spec.rb +36 -0
- data/spec/models/get_cert_challenge_spec.rb +48 -0
- data/spec/models/open_ai_target_details_spec.rb +60 -0
- data/spec/models/target_create_gemini_spec.rb +90 -0
- data/spec/models/target_create_open_ai_spec.rb +102 -0
- data/spec/models/target_update_gemini_spec.rb +108 -0
- data/spec/models/target_update_open_ai_spec.rb +120 -0
- metadata +33 -1
@@ -0,0 +1,90 @@
|
|
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::TargetCreateGemini
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::TargetCreateGemini do
|
21
|
+
let(:instance) { Akeyless::TargetCreateGemini.new }
|
22
|
+
|
23
|
+
describe 'test an instance of TargetCreateGemini' do
|
24
|
+
it 'should create an instance of TargetCreateGemini' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(Akeyless::TargetCreateGemini)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "api_key"' 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 "description"' 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 "gemini_url"' 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 "key"' 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 "max_versions"' 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 "model"' 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 "name"' 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 "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
|
+
describe 'test attribute "uid_token"' 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
|
+
end
|
@@ -0,0 +1,102 @@
|
|
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::TargetCreateOpenAI
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::TargetCreateOpenAI do
|
21
|
+
let(:instance) { Akeyless::TargetCreateOpenAI.new }
|
22
|
+
|
23
|
+
describe 'test an instance of TargetCreateOpenAI' do
|
24
|
+
it 'should create an instance of TargetCreateOpenAI' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(Akeyless::TargetCreateOpenAI)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "api_key"' 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_id"' 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 "description"' 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 "key"' 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 "max_versions"' 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 "model"' 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 "name"' 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 "openai_url"' 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 "organization_id"' 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 "token"' 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 "uid_token"' 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
|
+
end
|
@@ -0,0 +1,108 @@
|
|
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::TargetUpdateGemini
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::TargetUpdateGemini do
|
21
|
+
let(:instance) { Akeyless::TargetUpdateGemini.new }
|
22
|
+
|
23
|
+
describe 'test an instance of TargetUpdateGemini' do
|
24
|
+
it 'should create an instance of TargetUpdateGemini' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(Akeyless::TargetUpdateGemini)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "api_key"' 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 "description"' 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 "gemini_url"' 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 "keep_prev_version"' 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 "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 "max_versions"' 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 "model"' 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 "name"' 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 "new_comment"' 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 "new_name"' 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 "token"' 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 "uid_token"' 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
|
+
end
|
@@ -0,0 +1,120 @@
|
|
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::TargetUpdateOpenAI
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::TargetUpdateOpenAI do
|
21
|
+
let(:instance) { Akeyless::TargetUpdateOpenAI.new }
|
22
|
+
|
23
|
+
describe 'test an instance of TargetUpdateOpenAI' do
|
24
|
+
it 'should create an instance of TargetUpdateOpenAI' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(Akeyless::TargetUpdateOpenAI)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "api_key"' 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_id"' 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 "description"' 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 "keep_prev_version"' 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 "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 "max_versions"' 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 "model"' 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 "name"' 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 "new_comment"' 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 "new_name"' 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 "openai_url"' 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 "organization_id"' 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 "token"' 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 "uid_token"' 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
|
+
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.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
@@ -655,6 +655,7 @@ files:
|
|
655
655
|
- docs/GatewayUpdateTmpUsers.md
|
656
656
|
- docs/GatewaysListResponse.md
|
657
657
|
- docs/GcpTargetDetails.md
|
658
|
+
- docs/GeminiTargetDetails.md
|
658
659
|
- docs/GenCustomerFragment.md
|
659
660
|
- docs/GeneralConfigPart.md
|
660
661
|
- docs/GenerateAcmeEab.md
|
@@ -667,6 +668,8 @@ files:
|
|
667
668
|
- docs/GetAccountSettingsCommandOutput.md
|
668
669
|
- docs/GetAnalyticsData.md
|
669
670
|
- docs/GetAuthMethod.md
|
671
|
+
- docs/GetCertChallenge.md
|
672
|
+
- docs/GetCertChallengeOutput.md
|
670
673
|
- docs/GetCertificateValue.md
|
671
674
|
- docs/GetCertificateValueOutput.md
|
672
675
|
- docs/GetCloudIdentity.md
|
@@ -827,6 +830,7 @@ files:
|
|
827
830
|
- docs/OidcClientInfo.md
|
828
831
|
- docs/OnePasswordMigration.md
|
829
832
|
- docs/OnePasswordPayload.md
|
833
|
+
- docs/OpenAITargetDetails.md
|
830
834
|
- docs/PKICertificateIssueDetails.md
|
831
835
|
- docs/PasswordBreachInfo.md
|
832
836
|
- docs/PasswordExpirationInfo.md
|
@@ -976,6 +980,7 @@ files:
|
|
976
980
|
- docs/TargetCreateDockerhub.md
|
977
981
|
- docs/TargetCreateEks.md
|
978
982
|
- docs/TargetCreateGcp.md
|
983
|
+
- docs/TargetCreateGemini.md
|
979
984
|
- docs/TargetCreateGithub.md
|
980
985
|
- docs/TargetCreateGitlab.md
|
981
986
|
- docs/TargetCreateGke.md
|
@@ -986,6 +991,7 @@ files:
|
|
986
991
|
- docs/TargetCreateK8s.md
|
987
992
|
- docs/TargetCreateLdap.md
|
988
993
|
- docs/TargetCreateLinked.md
|
994
|
+
- docs/TargetCreateOpenAI.md
|
989
995
|
- docs/TargetCreateOutput.md
|
990
996
|
- docs/TargetCreatePing.md
|
991
997
|
- docs/TargetCreateRabbitMq.md
|
@@ -1011,6 +1017,7 @@ files:
|
|
1011
1017
|
- docs/TargetUpdateDockerhub.md
|
1012
1018
|
- docs/TargetUpdateEks.md
|
1013
1019
|
- docs/TargetUpdateGcp.md
|
1020
|
+
- docs/TargetUpdateGemini.md
|
1014
1021
|
- docs/TargetUpdateGithub.md
|
1015
1022
|
- docs/TargetUpdateGitlab.md
|
1016
1023
|
- docs/TargetUpdateGke.md
|
@@ -1021,6 +1028,7 @@ files:
|
|
1021
1028
|
- docs/TargetUpdateK8s.md
|
1022
1029
|
- docs/TargetUpdateLdap.md
|
1023
1030
|
- docs/TargetUpdateLinked.md
|
1031
|
+
- docs/TargetUpdateOpenAI.md
|
1024
1032
|
- docs/TargetUpdateOutput.md
|
1025
1033
|
- docs/TargetUpdatePing.md
|
1026
1034
|
- docs/TargetUpdateRabbitMq.md
|
@@ -1784,6 +1792,7 @@ files:
|
|
1784
1792
|
- lib/akeyless/models/gcp_payload.rb
|
1785
1793
|
- lib/akeyless/models/gcp_secrets_migration.rb
|
1786
1794
|
- lib/akeyless/models/gcp_target_details.rb
|
1795
|
+
- lib/akeyless/models/gemini_target_details.rb
|
1787
1796
|
- lib/akeyless/models/gen_customer_fragment.rb
|
1788
1797
|
- lib/akeyless/models/general_config_part.rb
|
1789
1798
|
- lib/akeyless/models/generate_acme_eab.rb
|
@@ -1796,6 +1805,8 @@ files:
|
|
1796
1805
|
- lib/akeyless/models/get_account_settings_command_output.rb
|
1797
1806
|
- lib/akeyless/models/get_analytics_data.rb
|
1798
1807
|
- lib/akeyless/models/get_auth_method.rb
|
1808
|
+
- lib/akeyless/models/get_cert_challenge.rb
|
1809
|
+
- lib/akeyless/models/get_cert_challenge_output.rb
|
1799
1810
|
- lib/akeyless/models/get_certificate_value.rb
|
1800
1811
|
- lib/akeyless/models/get_certificate_value_output.rb
|
1801
1812
|
- lib/akeyless/models/get_cloud_identity.rb
|
@@ -1957,6 +1968,7 @@ files:
|
|
1957
1968
|
- lib/akeyless/models/oidc_custom_claim.rb
|
1958
1969
|
- lib/akeyless/models/one_password_migration.rb
|
1959
1970
|
- lib/akeyless/models/one_password_payload.rb
|
1971
|
+
- lib/akeyless/models/open_ai_target_details.rb
|
1960
1972
|
- lib/akeyless/models/password_breach_info.rb
|
1961
1973
|
- lib/akeyless/models/password_expiration_info.rb
|
1962
1974
|
- lib/akeyless/models/password_policy_info.rb
|
@@ -2106,6 +2118,7 @@ files:
|
|
2106
2118
|
- lib/akeyless/models/target_create_dockerhub.rb
|
2107
2119
|
- lib/akeyless/models/target_create_eks.rb
|
2108
2120
|
- lib/akeyless/models/target_create_gcp.rb
|
2121
|
+
- lib/akeyless/models/target_create_gemini.rb
|
2109
2122
|
- lib/akeyless/models/target_create_github.rb
|
2110
2123
|
- lib/akeyless/models/target_create_gitlab.rb
|
2111
2124
|
- lib/akeyless/models/target_create_gke.rb
|
@@ -2116,6 +2129,7 @@ files:
|
|
2116
2129
|
- lib/akeyless/models/target_create_k8s.rb
|
2117
2130
|
- lib/akeyless/models/target_create_ldap.rb
|
2118
2131
|
- lib/akeyless/models/target_create_linked.rb
|
2132
|
+
- lib/akeyless/models/target_create_open_ai.rb
|
2119
2133
|
- lib/akeyless/models/target_create_output.rb
|
2120
2134
|
- lib/akeyless/models/target_create_ping.rb
|
2121
2135
|
- lib/akeyless/models/target_create_rabbit_mq.rb
|
@@ -2141,6 +2155,7 @@ files:
|
|
2141
2155
|
- lib/akeyless/models/target_update_dockerhub.rb
|
2142
2156
|
- lib/akeyless/models/target_update_eks.rb
|
2143
2157
|
- lib/akeyless/models/target_update_gcp.rb
|
2158
|
+
- lib/akeyless/models/target_update_gemini.rb
|
2144
2159
|
- lib/akeyless/models/target_update_github.rb
|
2145
2160
|
- lib/akeyless/models/target_update_gitlab.rb
|
2146
2161
|
- lib/akeyless/models/target_update_gke.rb
|
@@ -2151,6 +2166,7 @@ files:
|
|
2151
2166
|
- lib/akeyless/models/target_update_k8s.rb
|
2152
2167
|
- lib/akeyless/models/target_update_ldap.rb
|
2153
2168
|
- lib/akeyless/models/target_update_linked.rb
|
2169
|
+
- lib/akeyless/models/target_update_open_ai.rb
|
2154
2170
|
- lib/akeyless/models/target_update_output.rb
|
2155
2171
|
- lib/akeyless/models/target_update_ping.rb
|
2156
2172
|
- lib/akeyless/models/target_update_rabbit_mq.rb
|
@@ -3400,6 +3416,7 @@ files:
|
|
3400
3416
|
- spec/models/gcp_payload_spec.rb
|
3401
3417
|
- spec/models/gcp_secrets_migration_spec.rb
|
3402
3418
|
- spec/models/gcp_target_details_spec.rb
|
3419
|
+
- spec/models/gemini_target_details_spec.rb
|
3403
3420
|
- spec/models/gen_customer_fragment_spec.rb
|
3404
3421
|
- spec/models/general_config_part_spec.rb
|
3405
3422
|
- spec/models/generate_acme_eab_output_spec.rb
|
@@ -3412,6 +3429,8 @@ files:
|
|
3412
3429
|
- spec/models/get_account_settings_spec.rb
|
3413
3430
|
- spec/models/get_analytics_data_spec.rb
|
3414
3431
|
- spec/models/get_auth_method_spec.rb
|
3432
|
+
- spec/models/get_cert_challenge_output_spec.rb
|
3433
|
+
- spec/models/get_cert_challenge_spec.rb
|
3415
3434
|
- spec/models/get_certificate_value_output_spec.rb
|
3416
3435
|
- spec/models/get_certificate_value_spec.rb
|
3417
3436
|
- spec/models/get_cloud_identity_output_spec.rb
|
@@ -3573,6 +3592,7 @@ files:
|
|
3573
3592
|
- spec/models/oidc_custom_claim_spec.rb
|
3574
3593
|
- spec/models/one_password_migration_spec.rb
|
3575
3594
|
- spec/models/one_password_payload_spec.rb
|
3595
|
+
- spec/models/open_ai_target_details_spec.rb
|
3576
3596
|
- spec/models/password_breach_info_spec.rb
|
3577
3597
|
- spec/models/password_expiration_info_spec.rb
|
3578
3598
|
- spec/models/password_policy_info_spec.rb
|
@@ -3721,6 +3741,7 @@ files:
|
|
3721
3741
|
- spec/models/target_create_dockerhub_spec.rb
|
3722
3742
|
- spec/models/target_create_eks_spec.rb
|
3723
3743
|
- spec/models/target_create_gcp_spec.rb
|
3744
|
+
- spec/models/target_create_gemini_spec.rb
|
3724
3745
|
- spec/models/target_create_github_spec.rb
|
3725
3746
|
- spec/models/target_create_gitlab_spec.rb
|
3726
3747
|
- spec/models/target_create_gke_spec.rb
|
@@ -3731,6 +3752,7 @@ files:
|
|
3731
3752
|
- spec/models/target_create_k8s_spec.rb
|
3732
3753
|
- spec/models/target_create_ldap_spec.rb
|
3733
3754
|
- spec/models/target_create_linked_spec.rb
|
3755
|
+
- spec/models/target_create_open_ai_spec.rb
|
3734
3756
|
- spec/models/target_create_output_spec.rb
|
3735
3757
|
- spec/models/target_create_ping_spec.rb
|
3736
3758
|
- spec/models/target_create_rabbit_mq_spec.rb
|
@@ -3757,6 +3779,7 @@ files:
|
|
3757
3779
|
- spec/models/target_update_dockerhub_spec.rb
|
3758
3780
|
- spec/models/target_update_eks_spec.rb
|
3759
3781
|
- spec/models/target_update_gcp_spec.rb
|
3782
|
+
- spec/models/target_update_gemini_spec.rb
|
3760
3783
|
- spec/models/target_update_github_spec.rb
|
3761
3784
|
- spec/models/target_update_gitlab_spec.rb
|
3762
3785
|
- spec/models/target_update_gke_spec.rb
|
@@ -3767,6 +3790,7 @@ files:
|
|
3767
3790
|
- spec/models/target_update_k8s_spec.rb
|
3768
3791
|
- spec/models/target_update_ldap_spec.rb
|
3769
3792
|
- spec/models/target_update_linked_spec.rb
|
3793
|
+
- spec/models/target_update_open_ai_spec.rb
|
3770
3794
|
- spec/models/target_update_output_spec.rb
|
3771
3795
|
- spec/models/target_update_ping_spec.rb
|
3772
3796
|
- spec/models/target_update_rabbit_mq_spec.rb
|
@@ -4549,6 +4573,7 @@ test_files:
|
|
4549
4573
|
- spec/models/gcp_payload_spec.rb
|
4550
4574
|
- spec/models/gcp_secrets_migration_spec.rb
|
4551
4575
|
- spec/models/gcp_target_details_spec.rb
|
4576
|
+
- spec/models/gemini_target_details_spec.rb
|
4552
4577
|
- spec/models/gen_customer_fragment_spec.rb
|
4553
4578
|
- spec/models/general_config_part_spec.rb
|
4554
4579
|
- spec/models/generate_acme_eab_output_spec.rb
|
@@ -4561,6 +4586,8 @@ test_files:
|
|
4561
4586
|
- spec/models/get_account_settings_spec.rb
|
4562
4587
|
- spec/models/get_analytics_data_spec.rb
|
4563
4588
|
- spec/models/get_auth_method_spec.rb
|
4589
|
+
- spec/models/get_cert_challenge_output_spec.rb
|
4590
|
+
- spec/models/get_cert_challenge_spec.rb
|
4564
4591
|
- spec/models/get_certificate_value_output_spec.rb
|
4565
4592
|
- spec/models/get_certificate_value_spec.rb
|
4566
4593
|
- spec/models/get_cloud_identity_output_spec.rb
|
@@ -4722,6 +4749,7 @@ test_files:
|
|
4722
4749
|
- spec/models/oidc_custom_claim_spec.rb
|
4723
4750
|
- spec/models/one_password_migration_spec.rb
|
4724
4751
|
- spec/models/one_password_payload_spec.rb
|
4752
|
+
- spec/models/open_ai_target_details_spec.rb
|
4725
4753
|
- spec/models/password_breach_info_spec.rb
|
4726
4754
|
- spec/models/password_expiration_info_spec.rb
|
4727
4755
|
- spec/models/password_policy_info_spec.rb
|
@@ -4870,6 +4898,7 @@ test_files:
|
|
4870
4898
|
- spec/models/target_create_dockerhub_spec.rb
|
4871
4899
|
- spec/models/target_create_eks_spec.rb
|
4872
4900
|
- spec/models/target_create_gcp_spec.rb
|
4901
|
+
- spec/models/target_create_gemini_spec.rb
|
4873
4902
|
- spec/models/target_create_github_spec.rb
|
4874
4903
|
- spec/models/target_create_gitlab_spec.rb
|
4875
4904
|
- spec/models/target_create_gke_spec.rb
|
@@ -4880,6 +4909,7 @@ test_files:
|
|
4880
4909
|
- spec/models/target_create_k8s_spec.rb
|
4881
4910
|
- spec/models/target_create_ldap_spec.rb
|
4882
4911
|
- spec/models/target_create_linked_spec.rb
|
4912
|
+
- spec/models/target_create_open_ai_spec.rb
|
4883
4913
|
- spec/models/target_create_output_spec.rb
|
4884
4914
|
- spec/models/target_create_ping_spec.rb
|
4885
4915
|
- spec/models/target_create_rabbit_mq_spec.rb
|
@@ -4906,6 +4936,7 @@ test_files:
|
|
4906
4936
|
- spec/models/target_update_dockerhub_spec.rb
|
4907
4937
|
- spec/models/target_update_eks_spec.rb
|
4908
4938
|
- spec/models/target_update_gcp_spec.rb
|
4939
|
+
- spec/models/target_update_gemini_spec.rb
|
4909
4940
|
- spec/models/target_update_github_spec.rb
|
4910
4941
|
- spec/models/target_update_gitlab_spec.rb
|
4911
4942
|
- spec/models/target_update_gke_spec.rb
|
@@ -4916,6 +4947,7 @@ test_files:
|
|
4916
4947
|
- spec/models/target_update_k8s_spec.rb
|
4917
4948
|
- spec/models/target_update_ldap_spec.rb
|
4918
4949
|
- spec/models/target_update_linked_spec.rb
|
4950
|
+
- spec/models/target_update_open_ai_spec.rb
|
4919
4951
|
- spec/models/target_update_output_spec.rb
|
4920
4952
|
- spec/models/target_update_ping_spec.rb
|
4921
4953
|
- spec/models/target_update_rabbit_mq_spec.rb
|