akeyless 5.0.6 → 5.0.7
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 +11 -1
- 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/GatewayUpdateLogForwardingAzureAnalytics.md +2 -0
- data/docs/GatewayUpdateLogForwardingSplunk.md +2 -0
- data/docs/GeminiTargetDetails.md +22 -0
- data/docs/GenerateCsr.md +2 -0
- data/docs/GwUpdateRemoteAccessSessionLogsAzureAnalytics.md +2 -0
- data/docs/GwUpdateRemoteAccessSessionLogsSplunk.md +2 -0
- data/docs/OpenAITargetDetails.md +26 -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/TargetTypeDetailsInput.md +4 -0
- data/docs/TargetUpdateGemini.md +42 -0
- data/docs/TargetUpdateOpenAI.md +46 -0
- data/docs/V2Api.md +252 -0
- data/lib/akeyless/api/v2_api.rb +256 -0
- 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/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/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/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_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/version.rb +1 -1
- data/lib/akeyless.rb +6 -0
- data/spec/models/gemini_target_details_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 +25 -1
@@ -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.7
|
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
|
@@ -827,6 +828,7 @@ files:
|
|
827
828
|
- docs/OidcClientInfo.md
|
828
829
|
- docs/OnePasswordMigration.md
|
829
830
|
- docs/OnePasswordPayload.md
|
831
|
+
- docs/OpenAITargetDetails.md
|
830
832
|
- docs/PKICertificateIssueDetails.md
|
831
833
|
- docs/PasswordBreachInfo.md
|
832
834
|
- docs/PasswordExpirationInfo.md
|
@@ -976,6 +978,7 @@ files:
|
|
976
978
|
- docs/TargetCreateDockerhub.md
|
977
979
|
- docs/TargetCreateEks.md
|
978
980
|
- docs/TargetCreateGcp.md
|
981
|
+
- docs/TargetCreateGemini.md
|
979
982
|
- docs/TargetCreateGithub.md
|
980
983
|
- docs/TargetCreateGitlab.md
|
981
984
|
- docs/TargetCreateGke.md
|
@@ -986,6 +989,7 @@ files:
|
|
986
989
|
- docs/TargetCreateK8s.md
|
987
990
|
- docs/TargetCreateLdap.md
|
988
991
|
- docs/TargetCreateLinked.md
|
992
|
+
- docs/TargetCreateOpenAI.md
|
989
993
|
- docs/TargetCreateOutput.md
|
990
994
|
- docs/TargetCreatePing.md
|
991
995
|
- docs/TargetCreateRabbitMq.md
|
@@ -1011,6 +1015,7 @@ files:
|
|
1011
1015
|
- docs/TargetUpdateDockerhub.md
|
1012
1016
|
- docs/TargetUpdateEks.md
|
1013
1017
|
- docs/TargetUpdateGcp.md
|
1018
|
+
- docs/TargetUpdateGemini.md
|
1014
1019
|
- docs/TargetUpdateGithub.md
|
1015
1020
|
- docs/TargetUpdateGitlab.md
|
1016
1021
|
- docs/TargetUpdateGke.md
|
@@ -1021,6 +1026,7 @@ files:
|
|
1021
1026
|
- docs/TargetUpdateK8s.md
|
1022
1027
|
- docs/TargetUpdateLdap.md
|
1023
1028
|
- docs/TargetUpdateLinked.md
|
1029
|
+
- docs/TargetUpdateOpenAI.md
|
1024
1030
|
- docs/TargetUpdateOutput.md
|
1025
1031
|
- docs/TargetUpdatePing.md
|
1026
1032
|
- docs/TargetUpdateRabbitMq.md
|
@@ -1784,6 +1790,7 @@ files:
|
|
1784
1790
|
- lib/akeyless/models/gcp_payload.rb
|
1785
1791
|
- lib/akeyless/models/gcp_secrets_migration.rb
|
1786
1792
|
- lib/akeyless/models/gcp_target_details.rb
|
1793
|
+
- lib/akeyless/models/gemini_target_details.rb
|
1787
1794
|
- lib/akeyless/models/gen_customer_fragment.rb
|
1788
1795
|
- lib/akeyless/models/general_config_part.rb
|
1789
1796
|
- lib/akeyless/models/generate_acme_eab.rb
|
@@ -1957,6 +1964,7 @@ files:
|
|
1957
1964
|
- lib/akeyless/models/oidc_custom_claim.rb
|
1958
1965
|
- lib/akeyless/models/one_password_migration.rb
|
1959
1966
|
- lib/akeyless/models/one_password_payload.rb
|
1967
|
+
- lib/akeyless/models/open_ai_target_details.rb
|
1960
1968
|
- lib/akeyless/models/password_breach_info.rb
|
1961
1969
|
- lib/akeyless/models/password_expiration_info.rb
|
1962
1970
|
- lib/akeyless/models/password_policy_info.rb
|
@@ -2106,6 +2114,7 @@ files:
|
|
2106
2114
|
- lib/akeyless/models/target_create_dockerhub.rb
|
2107
2115
|
- lib/akeyless/models/target_create_eks.rb
|
2108
2116
|
- lib/akeyless/models/target_create_gcp.rb
|
2117
|
+
- lib/akeyless/models/target_create_gemini.rb
|
2109
2118
|
- lib/akeyless/models/target_create_github.rb
|
2110
2119
|
- lib/akeyless/models/target_create_gitlab.rb
|
2111
2120
|
- lib/akeyless/models/target_create_gke.rb
|
@@ -2116,6 +2125,7 @@ files:
|
|
2116
2125
|
- lib/akeyless/models/target_create_k8s.rb
|
2117
2126
|
- lib/akeyless/models/target_create_ldap.rb
|
2118
2127
|
- lib/akeyless/models/target_create_linked.rb
|
2128
|
+
- lib/akeyless/models/target_create_open_ai.rb
|
2119
2129
|
- lib/akeyless/models/target_create_output.rb
|
2120
2130
|
- lib/akeyless/models/target_create_ping.rb
|
2121
2131
|
- lib/akeyless/models/target_create_rabbit_mq.rb
|
@@ -2141,6 +2151,7 @@ files:
|
|
2141
2151
|
- lib/akeyless/models/target_update_dockerhub.rb
|
2142
2152
|
- lib/akeyless/models/target_update_eks.rb
|
2143
2153
|
- lib/akeyless/models/target_update_gcp.rb
|
2154
|
+
- lib/akeyless/models/target_update_gemini.rb
|
2144
2155
|
- lib/akeyless/models/target_update_github.rb
|
2145
2156
|
- lib/akeyless/models/target_update_gitlab.rb
|
2146
2157
|
- lib/akeyless/models/target_update_gke.rb
|
@@ -2151,6 +2162,7 @@ files:
|
|
2151
2162
|
- lib/akeyless/models/target_update_k8s.rb
|
2152
2163
|
- lib/akeyless/models/target_update_ldap.rb
|
2153
2164
|
- lib/akeyless/models/target_update_linked.rb
|
2165
|
+
- lib/akeyless/models/target_update_open_ai.rb
|
2154
2166
|
- lib/akeyless/models/target_update_output.rb
|
2155
2167
|
- lib/akeyless/models/target_update_ping.rb
|
2156
2168
|
- lib/akeyless/models/target_update_rabbit_mq.rb
|
@@ -3400,6 +3412,7 @@ files:
|
|
3400
3412
|
- spec/models/gcp_payload_spec.rb
|
3401
3413
|
- spec/models/gcp_secrets_migration_spec.rb
|
3402
3414
|
- spec/models/gcp_target_details_spec.rb
|
3415
|
+
- spec/models/gemini_target_details_spec.rb
|
3403
3416
|
- spec/models/gen_customer_fragment_spec.rb
|
3404
3417
|
- spec/models/general_config_part_spec.rb
|
3405
3418
|
- spec/models/generate_acme_eab_output_spec.rb
|
@@ -3573,6 +3586,7 @@ files:
|
|
3573
3586
|
- spec/models/oidc_custom_claim_spec.rb
|
3574
3587
|
- spec/models/one_password_migration_spec.rb
|
3575
3588
|
- spec/models/one_password_payload_spec.rb
|
3589
|
+
- spec/models/open_ai_target_details_spec.rb
|
3576
3590
|
- spec/models/password_breach_info_spec.rb
|
3577
3591
|
- spec/models/password_expiration_info_spec.rb
|
3578
3592
|
- spec/models/password_policy_info_spec.rb
|
@@ -3721,6 +3735,7 @@ files:
|
|
3721
3735
|
- spec/models/target_create_dockerhub_spec.rb
|
3722
3736
|
- spec/models/target_create_eks_spec.rb
|
3723
3737
|
- spec/models/target_create_gcp_spec.rb
|
3738
|
+
- spec/models/target_create_gemini_spec.rb
|
3724
3739
|
- spec/models/target_create_github_spec.rb
|
3725
3740
|
- spec/models/target_create_gitlab_spec.rb
|
3726
3741
|
- spec/models/target_create_gke_spec.rb
|
@@ -3731,6 +3746,7 @@ files:
|
|
3731
3746
|
- spec/models/target_create_k8s_spec.rb
|
3732
3747
|
- spec/models/target_create_ldap_spec.rb
|
3733
3748
|
- spec/models/target_create_linked_spec.rb
|
3749
|
+
- spec/models/target_create_open_ai_spec.rb
|
3734
3750
|
- spec/models/target_create_output_spec.rb
|
3735
3751
|
- spec/models/target_create_ping_spec.rb
|
3736
3752
|
- spec/models/target_create_rabbit_mq_spec.rb
|
@@ -3757,6 +3773,7 @@ files:
|
|
3757
3773
|
- spec/models/target_update_dockerhub_spec.rb
|
3758
3774
|
- spec/models/target_update_eks_spec.rb
|
3759
3775
|
- spec/models/target_update_gcp_spec.rb
|
3776
|
+
- spec/models/target_update_gemini_spec.rb
|
3760
3777
|
- spec/models/target_update_github_spec.rb
|
3761
3778
|
- spec/models/target_update_gitlab_spec.rb
|
3762
3779
|
- spec/models/target_update_gke_spec.rb
|
@@ -3767,6 +3784,7 @@ files:
|
|
3767
3784
|
- spec/models/target_update_k8s_spec.rb
|
3768
3785
|
- spec/models/target_update_ldap_spec.rb
|
3769
3786
|
- spec/models/target_update_linked_spec.rb
|
3787
|
+
- spec/models/target_update_open_ai_spec.rb
|
3770
3788
|
- spec/models/target_update_output_spec.rb
|
3771
3789
|
- spec/models/target_update_ping_spec.rb
|
3772
3790
|
- spec/models/target_update_rabbit_mq_spec.rb
|
@@ -4549,6 +4567,7 @@ test_files:
|
|
4549
4567
|
- spec/models/gcp_payload_spec.rb
|
4550
4568
|
- spec/models/gcp_secrets_migration_spec.rb
|
4551
4569
|
- spec/models/gcp_target_details_spec.rb
|
4570
|
+
- spec/models/gemini_target_details_spec.rb
|
4552
4571
|
- spec/models/gen_customer_fragment_spec.rb
|
4553
4572
|
- spec/models/general_config_part_spec.rb
|
4554
4573
|
- spec/models/generate_acme_eab_output_spec.rb
|
@@ -4722,6 +4741,7 @@ test_files:
|
|
4722
4741
|
- spec/models/oidc_custom_claim_spec.rb
|
4723
4742
|
- spec/models/one_password_migration_spec.rb
|
4724
4743
|
- spec/models/one_password_payload_spec.rb
|
4744
|
+
- spec/models/open_ai_target_details_spec.rb
|
4725
4745
|
- spec/models/password_breach_info_spec.rb
|
4726
4746
|
- spec/models/password_expiration_info_spec.rb
|
4727
4747
|
- spec/models/password_policy_info_spec.rb
|
@@ -4870,6 +4890,7 @@ test_files:
|
|
4870
4890
|
- spec/models/target_create_dockerhub_spec.rb
|
4871
4891
|
- spec/models/target_create_eks_spec.rb
|
4872
4892
|
- spec/models/target_create_gcp_spec.rb
|
4893
|
+
- spec/models/target_create_gemini_spec.rb
|
4873
4894
|
- spec/models/target_create_github_spec.rb
|
4874
4895
|
- spec/models/target_create_gitlab_spec.rb
|
4875
4896
|
- spec/models/target_create_gke_spec.rb
|
@@ -4880,6 +4901,7 @@ test_files:
|
|
4880
4901
|
- spec/models/target_create_k8s_spec.rb
|
4881
4902
|
- spec/models/target_create_ldap_spec.rb
|
4882
4903
|
- spec/models/target_create_linked_spec.rb
|
4904
|
+
- spec/models/target_create_open_ai_spec.rb
|
4883
4905
|
- spec/models/target_create_output_spec.rb
|
4884
4906
|
- spec/models/target_create_ping_spec.rb
|
4885
4907
|
- spec/models/target_create_rabbit_mq_spec.rb
|
@@ -4906,6 +4928,7 @@ test_files:
|
|
4906
4928
|
- spec/models/target_update_dockerhub_spec.rb
|
4907
4929
|
- spec/models/target_update_eks_spec.rb
|
4908
4930
|
- spec/models/target_update_gcp_spec.rb
|
4931
|
+
- spec/models/target_update_gemini_spec.rb
|
4909
4932
|
- spec/models/target_update_github_spec.rb
|
4910
4933
|
- spec/models/target_update_gitlab_spec.rb
|
4911
4934
|
- spec/models/target_update_gke_spec.rb
|
@@ -4916,6 +4939,7 @@ test_files:
|
|
4916
4939
|
- spec/models/target_update_k8s_spec.rb
|
4917
4940
|
- spec/models/target_update_ldap_spec.rb
|
4918
4941
|
- spec/models/target_update_linked_spec.rb
|
4942
|
+
- spec/models/target_update_open_ai_spec.rb
|
4919
4943
|
- spec/models/target_update_output_spec.rb
|
4920
4944
|
- spec/models/target_update_ping_spec.rb
|
4921
4945
|
- spec/models/target_update_rabbit_mq_spec.rb
|