akeyless 5.0.8 → 5.0.9

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.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -1
  3. data/docs/DSProducerDetails.md +10 -0
  4. data/docs/DynamicSecretCreateOpenAI.md +40 -0
  5. data/docs/DynamicSecretUpdateOpenAI.md +42 -0
  6. data/docs/EsmGetSecretOutput.md +2 -0
  7. data/docs/EventForwarderCreateTeams.md +44 -0
  8. data/docs/EventForwarderUpdateTeams.md +46 -0
  9. data/docs/NotiForwarder.md +2 -0
  10. data/docs/OpenAITargetDetails.md +3 -3
  11. data/docs/SecretInfo.md +2 -0
  12. data/docs/UscCreate.md +2 -0
  13. data/docs/UscGetSecretOutput.md +2 -0
  14. data/docs/UscUpdate.md +2 -0
  15. data/docs/V2Api.md +252 -0
  16. data/lib/akeyless/api/v2_api.rb +256 -0
  17. data/lib/akeyless/models/ds_producer_details.rb +46 -1
  18. data/lib/akeyless/models/dynamic_secret_create_open_ai.rb +339 -0
  19. data/lib/akeyless/models/dynamic_secret_update_open_ai.rb +349 -0
  20. data/lib/akeyless/models/esm_get_secret_output.rb +10 -1
  21. data/lib/akeyless/models/event_forwarder_create_teams.rb +385 -0
  22. data/lib/akeyless/models/event_forwarder_update_teams.rb +391 -0
  23. data/lib/akeyless/models/noti_forwarder.rb +10 -1
  24. data/lib/akeyless/models/open_ai_target_details.rb +13 -13
  25. data/lib/akeyless/models/secret_info.rb +10 -1
  26. data/lib/akeyless/models/usc_create.rb +11 -1
  27. data/lib/akeyless/models/usc_get_secret_output.rb +10 -1
  28. data/lib/akeyless/models/usc_update.rb +11 -1
  29. data/lib/akeyless/version.rb +1 -1
  30. data/lib/akeyless.rb +4 -0
  31. data/spec/models/dynamic_secret_create_open_ai_spec.rb +102 -0
  32. data/spec/models/dynamic_secret_update_open_ai_spec.rb +108 -0
  33. data/spec/models/event_forwarder_create_teams_spec.rb +114 -0
  34. data/spec/models/event_forwarder_update_teams_spec.rb +120 -0
  35. metadata +17 -1
@@ -43,6 +43,9 @@ module Akeyless
43
43
  # The universal identity token, Required only for universal_identity authentication
44
44
  attr_accessor :uid_token
45
45
 
46
+ # Optional, The name of the remote key that used to encrypt the secret value (if empty, the default key will be used)
47
+ attr_accessor :usc_encryption_key
48
+
46
49
  # Name of the Universal Secrets Connector item
47
50
  attr_accessor :usc_name
48
51
 
@@ -61,6 +64,7 @@ module Akeyless
61
64
  :'tags' => :'tags',
62
65
  :'token' => :'token',
63
66
  :'uid_token' => :'uid-token',
67
+ :'usc_encryption_key' => :'usc-encryption-key',
64
68
  :'usc_name' => :'usc-name',
65
69
  :'value' => :'value'
66
70
  }
@@ -83,6 +87,7 @@ module Akeyless
83
87
  :'tags' => :'Hash<String, String>',
84
88
  :'token' => :'String',
85
89
  :'uid_token' => :'String',
90
+ :'usc_encryption_key' => :'String',
86
91
  :'usc_name' => :'String',
87
92
  :'value' => :'String'
88
93
  }
@@ -151,6 +156,10 @@ module Akeyless
151
156
  self.uid_token = attributes[:'uid_token']
152
157
  end
153
158
 
159
+ if attributes.key?(:'usc_encryption_key')
160
+ self.usc_encryption_key = attributes[:'usc_encryption_key']
161
+ end
162
+
154
163
  if attributes.key?(:'usc_name')
155
164
  self.usc_name = attributes[:'usc_name']
156
165
  else
@@ -208,6 +217,7 @@ module Akeyless
208
217
  tags == o.tags &&
209
218
  token == o.token &&
210
219
  uid_token == o.uid_token &&
220
+ usc_encryption_key == o.usc_encryption_key &&
211
221
  usc_name == o.usc_name &&
212
222
  value == o.value
213
223
  end
@@ -221,7 +231,7 @@ module Akeyless
221
231
  # Calculates hash code according to all attributes.
222
232
  # @return [Integer] Hash code
223
233
  def hash
224
- [binary_value, description, json, namespace, pfx_password, secret_id, tags, token, uid_token, usc_name, value].hash
234
+ [binary_value, description, json, namespace, pfx_password, secret_id, tags, token, uid_token, usc_encryption_key, usc_name, value].hash
225
235
  end
226
236
 
227
237
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module Akeyless
14
- VERSION = '5.0.8'
14
+ VERSION = '5.0.9'
15
15
  end
data/lib/akeyless.rb CHANGED
@@ -313,6 +313,7 @@ require 'akeyless/models/dynamic_secret_create_ldap'
313
313
  require 'akeyless/models/dynamic_secret_create_mongo_db'
314
314
  require 'akeyless/models/dynamic_secret_create_ms_sql'
315
315
  require 'akeyless/models/dynamic_secret_create_my_sql'
316
+ require 'akeyless/models/dynamic_secret_create_open_ai'
316
317
  require 'akeyless/models/dynamic_secret_create_oracle_db'
317
318
  require 'akeyless/models/dynamic_secret_create_output'
318
319
  require 'akeyless/models/dynamic_secret_create_ping'
@@ -352,6 +353,7 @@ require 'akeyless/models/dynamic_secret_update_ldap'
352
353
  require 'akeyless/models/dynamic_secret_update_mongo_db'
353
354
  require 'akeyless/models/dynamic_secret_update_ms_sql'
354
355
  require 'akeyless/models/dynamic_secret_update_my_sql'
356
+ require 'akeyless/models/dynamic_secret_update_open_ai'
355
357
  require 'akeyless/models/dynamic_secret_update_oracle_db'
356
358
  require 'akeyless/models/dynamic_secret_update_output'
357
359
  require 'akeyless/models/dynamic_secret_update_ping'
@@ -390,6 +392,7 @@ require 'akeyless/models/event_action'
390
392
  require 'akeyless/models/event_forwarder_create_email'
391
393
  require 'akeyless/models/event_forwarder_create_service_now'
392
394
  require 'akeyless/models/event_forwarder_create_slack'
395
+ require 'akeyless/models/event_forwarder_create_teams'
393
396
  require 'akeyless/models/event_forwarder_create_update_output'
394
397
  require 'akeyless/models/event_forwarder_create_webhook'
395
398
  require 'akeyless/models/event_forwarder_delete'
@@ -399,6 +402,7 @@ require 'akeyless/models/event_forwarder_get_output'
399
402
  require 'akeyless/models/event_forwarder_update_email'
400
403
  require 'akeyless/models/event_forwarder_update_service_now'
401
404
  require 'akeyless/models/event_forwarder_update_slack'
405
+ require 'akeyless/models/event_forwarder_update_teams'
402
406
  require 'akeyless/models/event_forwarder_update_webhook'
403
407
  require 'akeyless/models/export_classic_key'
404
408
  require 'akeyless/models/export_classic_key_output'
@@ -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::DynamicSecretCreateOpenAI
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::DynamicSecretCreateOpenAI do
21
+ let(:instance) { Akeyless::DynamicSecretCreateOpenAI.new }
22
+
23
+ describe 'test an instance of DynamicSecretCreateOpenAI' do
24
+ it 'should create an instance of DynamicSecretCreateOpenAI' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::DynamicSecretCreateOpenAI)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "custom_username_template"' 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 "delete_protection"' 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 "name"' 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 "producer_encryption_key_name"' 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 "project_id"' 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 "tags"' 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 "target_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 "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
+ describe 'test attribute "uid_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 "user_ttl"' 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::DynamicSecretUpdateOpenAI
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::DynamicSecretUpdateOpenAI do
21
+ let(:instance) { Akeyless::DynamicSecretUpdateOpenAI.new }
22
+
23
+ describe 'test an instance of DynamicSecretUpdateOpenAI' do
24
+ it 'should create an instance of DynamicSecretUpdateOpenAI' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::DynamicSecretUpdateOpenAI)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "custom_username_template"' 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 "delete_protection"' 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 "name"' 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 "new_name"' 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 "producer_encryption_key_name"' 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 "project_id"' 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 "tags"' 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 "target_name"' 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
+ describe 'test attribute "user_ttl"' 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,114 @@
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::EventForwarderCreateTeams
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::EventForwarderCreateTeams do
21
+ let(:instance) { Akeyless::EventForwarderCreateTeams.new }
22
+
23
+ describe 'test an instance of EventForwarderCreateTeams' do
24
+ it 'should create an instance of EventForwarderCreateTeams' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::EventForwarderCreateTeams)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "auth_methods_event_source_locations"' 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 "event_types"' 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 "every"' 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 "gateways_event_source_locations"' 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 "items_event_source_locations"' 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 "json"' 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 "key"' 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 "runner_type"' 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 "targets_event_source_locations"' 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
+ describe 'test attribute "url"' 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
+ 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::EventForwarderUpdateTeams
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::EventForwarderUpdateTeams do
21
+ let(:instance) { Akeyless::EventForwarderUpdateTeams.new }
22
+
23
+ describe 'test an instance of EventForwarderUpdateTeams' do
24
+ it 'should create an instance of EventForwarderUpdateTeams' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::EventForwarderUpdateTeams)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "auth_methods_event_source_locations"' 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 "enable"' 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 "event_types"' 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 "gateways_event_source_locations"' 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 "items_event_source_locations"' 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 "json"' 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 "keep_prev_version"' 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 "key"' 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 "name"' 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 "targets_event_source_locations"' 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 "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
+ describe 'test attribute "uid_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 "url"' 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.8
4
+ version: 5.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -363,6 +363,7 @@ files:
363
363
  - docs/DynamicSecretCreateMongoDb.md
364
364
  - docs/DynamicSecretCreateMsSql.md
365
365
  - docs/DynamicSecretCreateMySql.md
366
+ - docs/DynamicSecretCreateOpenAI.md
366
367
  - docs/DynamicSecretCreateOracleDb.md
367
368
  - docs/DynamicSecretCreateOutput.md
368
369
  - docs/DynamicSecretCreatePing.md
@@ -402,6 +403,7 @@ files:
402
403
  - docs/DynamicSecretUpdateMongoDb.md
403
404
  - docs/DynamicSecretUpdateMsSql.md
404
405
  - docs/DynamicSecretUpdateMySql.md
406
+ - docs/DynamicSecretUpdateOpenAI.md
405
407
  - docs/DynamicSecretUpdateOracleDb.md
406
408
  - docs/DynamicSecretUpdateOutput.md
407
409
  - docs/DynamicSecretUpdatePing.md
@@ -442,6 +444,7 @@ files:
442
444
  - docs/EventForwarderCreateEmail.md
443
445
  - docs/EventForwarderCreateServiceNow.md
444
446
  - docs/EventForwarderCreateSlack.md
447
+ - docs/EventForwarderCreateTeams.md
445
448
  - docs/EventForwarderCreateUpdateOutput.md
446
449
  - docs/EventForwarderCreateWebhook.md
447
450
  - docs/EventForwarderDelete.md
@@ -451,6 +454,7 @@ files:
451
454
  - docs/EventForwarderUpdateEmail.md
452
455
  - docs/EventForwarderUpdateServiceNow.md
453
456
  - docs/EventForwarderUpdateSlack.md
457
+ - docs/EventForwarderUpdateTeams.md
454
458
  - docs/EventForwarderUpdateWebhook.md
455
459
  - docs/ExportClassicKey.md
456
460
  - docs/ExportClassicKeyOutput.md
@@ -1501,6 +1505,7 @@ files:
1501
1505
  - lib/akeyless/models/dynamic_secret_create_mongo_db.rb
1502
1506
  - lib/akeyless/models/dynamic_secret_create_ms_sql.rb
1503
1507
  - lib/akeyless/models/dynamic_secret_create_my_sql.rb
1508
+ - lib/akeyless/models/dynamic_secret_create_open_ai.rb
1504
1509
  - lib/akeyless/models/dynamic_secret_create_oracle_db.rb
1505
1510
  - lib/akeyless/models/dynamic_secret_create_output.rb
1506
1511
  - lib/akeyless/models/dynamic_secret_create_ping.rb
@@ -1540,6 +1545,7 @@ files:
1540
1545
  - lib/akeyless/models/dynamic_secret_update_mongo_db.rb
1541
1546
  - lib/akeyless/models/dynamic_secret_update_ms_sql.rb
1542
1547
  - lib/akeyless/models/dynamic_secret_update_my_sql.rb
1548
+ - lib/akeyless/models/dynamic_secret_update_open_ai.rb
1543
1549
  - lib/akeyless/models/dynamic_secret_update_oracle_db.rb
1544
1550
  - lib/akeyless/models/dynamic_secret_update_output.rb
1545
1551
  - lib/akeyless/models/dynamic_secret_update_ping.rb
@@ -1580,6 +1586,7 @@ files:
1580
1586
  - lib/akeyless/models/event_forwarder_create_email.rb
1581
1587
  - lib/akeyless/models/event_forwarder_create_service_now.rb
1582
1588
  - lib/akeyless/models/event_forwarder_create_slack.rb
1589
+ - lib/akeyless/models/event_forwarder_create_teams.rb
1583
1590
  - lib/akeyless/models/event_forwarder_create_update_output.rb
1584
1591
  - lib/akeyless/models/event_forwarder_create_webhook.rb
1585
1592
  - lib/akeyless/models/event_forwarder_delete.rb
@@ -1589,6 +1596,7 @@ files:
1589
1596
  - lib/akeyless/models/event_forwarder_update_email.rb
1590
1597
  - lib/akeyless/models/event_forwarder_update_service_now.rb
1591
1598
  - lib/akeyless/models/event_forwarder_update_slack.rb
1599
+ - lib/akeyless/models/event_forwarder_update_teams.rb
1592
1600
  - lib/akeyless/models/event_forwarder_update_webhook.rb
1593
1601
  - lib/akeyless/models/export_classic_key.rb
1594
1602
  - lib/akeyless/models/export_classic_key_output.rb
@@ -3125,6 +3133,7 @@ files:
3125
3133
  - spec/models/dynamic_secret_create_mongo_db_spec.rb
3126
3134
  - spec/models/dynamic_secret_create_ms_sql_spec.rb
3127
3135
  - spec/models/dynamic_secret_create_my_sql_spec.rb
3136
+ - spec/models/dynamic_secret_create_open_ai_spec.rb
3128
3137
  - spec/models/dynamic_secret_create_oracle_db_spec.rb
3129
3138
  - spec/models/dynamic_secret_create_output_spec.rb
3130
3139
  - spec/models/dynamic_secret_create_ping_spec.rb
@@ -3164,6 +3173,7 @@ files:
3164
3173
  - spec/models/dynamic_secret_update_mongo_db_spec.rb
3165
3174
  - spec/models/dynamic_secret_update_ms_sql_spec.rb
3166
3175
  - spec/models/dynamic_secret_update_my_sql_spec.rb
3176
+ - spec/models/dynamic_secret_update_open_ai_spec.rb
3167
3177
  - spec/models/dynamic_secret_update_oracle_db_spec.rb
3168
3178
  - spec/models/dynamic_secret_update_output_spec.rb
3169
3179
  - spec/models/dynamic_secret_update_ping_spec.rb
@@ -3204,6 +3214,7 @@ files:
3204
3214
  - spec/models/event_forwarder_create_email_spec.rb
3205
3215
  - spec/models/event_forwarder_create_service_now_spec.rb
3206
3216
  - spec/models/event_forwarder_create_slack_spec.rb
3217
+ - spec/models/event_forwarder_create_teams_spec.rb
3207
3218
  - spec/models/event_forwarder_create_update_output_spec.rb
3208
3219
  - spec/models/event_forwarder_create_webhook_spec.rb
3209
3220
  - spec/models/event_forwarder_delete_output_spec.rb
@@ -3213,6 +3224,7 @@ files:
3213
3224
  - spec/models/event_forwarder_update_email_spec.rb
3214
3225
  - spec/models/event_forwarder_update_service_now_spec.rb
3215
3226
  - spec/models/event_forwarder_update_slack_spec.rb
3227
+ - spec/models/event_forwarder_update_teams_spec.rb
3216
3228
  - spec/models/event_forwarder_update_webhook_spec.rb
3217
3229
  - spec/models/export_classic_key_output_spec.rb
3218
3230
  - spec/models/export_classic_key_spec.rb
@@ -4282,6 +4294,7 @@ test_files:
4282
4294
  - spec/models/dynamic_secret_create_mongo_db_spec.rb
4283
4295
  - spec/models/dynamic_secret_create_ms_sql_spec.rb
4284
4296
  - spec/models/dynamic_secret_create_my_sql_spec.rb
4297
+ - spec/models/dynamic_secret_create_open_ai_spec.rb
4285
4298
  - spec/models/dynamic_secret_create_oracle_db_spec.rb
4286
4299
  - spec/models/dynamic_secret_create_output_spec.rb
4287
4300
  - spec/models/dynamic_secret_create_ping_spec.rb
@@ -4321,6 +4334,7 @@ test_files:
4321
4334
  - spec/models/dynamic_secret_update_mongo_db_spec.rb
4322
4335
  - spec/models/dynamic_secret_update_ms_sql_spec.rb
4323
4336
  - spec/models/dynamic_secret_update_my_sql_spec.rb
4337
+ - spec/models/dynamic_secret_update_open_ai_spec.rb
4324
4338
  - spec/models/dynamic_secret_update_oracle_db_spec.rb
4325
4339
  - spec/models/dynamic_secret_update_output_spec.rb
4326
4340
  - spec/models/dynamic_secret_update_ping_spec.rb
@@ -4361,6 +4375,7 @@ test_files:
4361
4375
  - spec/models/event_forwarder_create_email_spec.rb
4362
4376
  - spec/models/event_forwarder_create_service_now_spec.rb
4363
4377
  - spec/models/event_forwarder_create_slack_spec.rb
4378
+ - spec/models/event_forwarder_create_teams_spec.rb
4364
4379
  - spec/models/event_forwarder_create_update_output_spec.rb
4365
4380
  - spec/models/event_forwarder_create_webhook_spec.rb
4366
4381
  - spec/models/event_forwarder_delete_output_spec.rb
@@ -4370,6 +4385,7 @@ test_files:
4370
4385
  - spec/models/event_forwarder_update_email_spec.rb
4371
4386
  - spec/models/event_forwarder_update_service_now_spec.rb
4372
4387
  - spec/models/event_forwarder_update_slack_spec.rb
4388
+ - spec/models/event_forwarder_update_teams_spec.rb
4373
4389
  - spec/models/event_forwarder_update_webhook_spec.rb
4374
4390
  - spec/models/export_classic_key_output_spec.rb
4375
4391
  - spec/models/export_classic_key_spec.rb