akeyless 5.0.7 → 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.
- checksums.yaml +4 -4
- data/README.md +12 -1
- data/docs/Auth.md +4 -0
- data/docs/AuthOutput.md +2 -0
- data/docs/CreateRole.md +2 -0
- data/docs/DSProducerDetails.md +10 -0
- data/docs/DynamicSecretCreateOpenAI.md +40 -0
- data/docs/DynamicSecretUpdateOpenAI.md +42 -0
- data/docs/EsmGetSecretOutput.md +2 -0
- data/docs/EventForwarderCreateTeams.md +44 -0
- data/docs/EventForwarderUpdateTeams.md +46 -0
- data/docs/GatewayCreateAllowedAccess.md +1 -1
- data/docs/GatewayUpdateAllowedAccess.md +1 -1
- data/docs/GeminiTargetDetails.md +2 -2
- data/docs/GetCertChallenge.md +22 -0
- data/docs/GetCertChallengeOutput.md +18 -0
- data/docs/NotiForwarder.md +2 -0
- data/docs/OpenAITargetDetails.md +5 -5
- data/docs/PathRule.md +2 -0
- data/docs/ReverseRBACClient.md +2 -0
- data/docs/RoleAuthMethodAssociation.md +2 -0
- data/docs/SecretInfo.md +2 -0
- data/docs/SharingItemFullInfo.md +2 -0
- data/docs/TargetItemAssociation.md +2 -0
- data/docs/UpdateRole.md +2 -0
- data/docs/UscCreate.md +2 -0
- data/docs/UscGetSecretOutput.md +2 -0
- data/docs/UscUpdate.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/create_role.rb +11 -1
- data/lib/akeyless/models/ds_producer_details.rb +46 -1
- data/lib/akeyless/models/dynamic_secret_create_open_ai.rb +339 -0
- data/lib/akeyless/models/dynamic_secret_update_open_ai.rb +349 -0
- data/lib/akeyless/models/esm_get_secret_output.rb +10 -1
- data/lib/akeyless/models/event_forwarder_create_teams.rb +385 -0
- data/lib/akeyless/models/event_forwarder_update_teams.rb +391 -0
- 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/gemini_target_details.rb +7 -7
- 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/noti_forwarder.rb +10 -1
- data/lib/akeyless/models/open_ai_target_details.rb +19 -19
- 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/secret_info.rb +10 -1
- data/lib/akeyless/models/sharing_item_full_info.rb +11 -1
- data/lib/akeyless/models/target_item_association.rb +10 -1
- data/lib/akeyless/models/update_role.rb +11 -1
- data/lib/akeyless/models/usc_create.rb +11 -1
- data/lib/akeyless/models/usc_get_secret_output.rb +10 -1
- data/lib/akeyless/models/usc_update.rb +11 -1
- data/lib/akeyless/version.rb +1 -1
- data/lib/akeyless.rb +6 -0
- data/spec/models/dynamic_secret_create_open_ai_spec.rb +102 -0
- data/spec/models/dynamic_secret_update_open_ai_spec.rb +108 -0
- data/spec/models/event_forwarder_create_teams_spec.rb +114 -0
- data/spec/models/event_forwarder_update_teams_spec.rb +120 -0
- data/spec/models/get_cert_challenge_output_spec.rb +36 -0
- data/spec/models/get_cert_challenge_spec.rb +48 -0
- metadata +25 -1
|
@@ -48,6 +48,9 @@ module Akeyless
|
|
|
48
48
|
# New Role name
|
|
49
49
|
attr_accessor :new_name
|
|
50
50
|
|
|
51
|
+
# Allow this role to view Reverse RBAC. Supported values: 'own', 'all'.
|
|
52
|
+
attr_accessor :reverse_rbac_access
|
|
53
|
+
|
|
51
54
|
# Allow this role to view SRA Clusters. Currently only 'none', 'own', 'all' values are supported.
|
|
52
55
|
attr_accessor :sra_reports_access
|
|
53
56
|
|
|
@@ -74,6 +77,7 @@ module Akeyless
|
|
|
74
77
|
:'name' => :'name',
|
|
75
78
|
:'new_comment' => :'new-comment',
|
|
76
79
|
:'new_name' => :'new-name',
|
|
80
|
+
:'reverse_rbac_access' => :'reverse-rbac-access',
|
|
77
81
|
:'sra_reports_access' => :'sra-reports-access',
|
|
78
82
|
:'token' => :'token',
|
|
79
83
|
:'uid_token' => :'uid-token',
|
|
@@ -100,6 +104,7 @@ module Akeyless
|
|
|
100
104
|
:'name' => :'String',
|
|
101
105
|
:'new_comment' => :'String',
|
|
102
106
|
:'new_name' => :'String',
|
|
107
|
+
:'reverse_rbac_access' => :'String',
|
|
103
108
|
:'sra_reports_access' => :'String',
|
|
104
109
|
:'token' => :'String',
|
|
105
110
|
:'uid_token' => :'String',
|
|
@@ -180,6 +185,10 @@ module Akeyless
|
|
|
180
185
|
self.new_name = attributes[:'new_name']
|
|
181
186
|
end
|
|
182
187
|
|
|
188
|
+
if attributes.key?(:'reverse_rbac_access')
|
|
189
|
+
self.reverse_rbac_access = attributes[:'reverse_rbac_access']
|
|
190
|
+
end
|
|
191
|
+
|
|
183
192
|
if attributes.key?(:'sra_reports_access')
|
|
184
193
|
self.sra_reports_access = attributes[:'sra_reports_access']
|
|
185
194
|
end
|
|
@@ -233,6 +242,7 @@ module Akeyless
|
|
|
233
242
|
name == o.name &&
|
|
234
243
|
new_comment == o.new_comment &&
|
|
235
244
|
new_name == o.new_name &&
|
|
245
|
+
reverse_rbac_access == o.reverse_rbac_access &&
|
|
236
246
|
sra_reports_access == o.sra_reports_access &&
|
|
237
247
|
token == o.token &&
|
|
238
248
|
uid_token == o.uid_token &&
|
|
@@ -248,7 +258,7 @@ module Akeyless
|
|
|
248
258
|
# Calculates hash code according to all attributes.
|
|
249
259
|
# @return [Integer] Hash code
|
|
250
260
|
def hash
|
|
251
|
-
[analytics_access, audit_access, delete_protection, description, event_center_access, event_forwarder_access, gw_analytics_access, json, name, new_comment, new_name, sra_reports_access, token, uid_token, usage_reports_access].hash
|
|
261
|
+
[analytics_access, audit_access, delete_protection, description, event_center_access, event_forwarder_access, gw_analytics_access, json, name, new_comment, new_name, reverse_rbac_access, sra_reports_access, token, uid_token, usage_reports_access].hash
|
|
252
262
|
end
|
|
253
263
|
|
|
254
264
|
# Builds the object from hash
|
|
@@ -45,6 +45,9 @@ module Akeyless
|
|
|
45
45
|
# The universal identity token, Required only for universal_identity authentication
|
|
46
46
|
attr_accessor :uid_token
|
|
47
47
|
|
|
48
|
+
# Optional, The name of the remote key that used to encrypt the secret value (if empty, the default key will be used)
|
|
49
|
+
attr_accessor :usc_encryption_key
|
|
50
|
+
|
|
48
51
|
# Name of the Universal Secrets Connector item
|
|
49
52
|
attr_accessor :usc_name
|
|
50
53
|
|
|
@@ -64,6 +67,7 @@ module Akeyless
|
|
|
64
67
|
:'tags' => :'tags',
|
|
65
68
|
:'token' => :'token',
|
|
66
69
|
:'uid_token' => :'uid-token',
|
|
70
|
+
:'usc_encryption_key' => :'usc-encryption-key',
|
|
67
71
|
:'usc_name' => :'usc-name',
|
|
68
72
|
:'value' => :'value'
|
|
69
73
|
}
|
|
@@ -87,6 +91,7 @@ module Akeyless
|
|
|
87
91
|
:'tags' => :'Hash<String, String>',
|
|
88
92
|
:'token' => :'String',
|
|
89
93
|
:'uid_token' => :'String',
|
|
94
|
+
:'usc_encryption_key' => :'String',
|
|
90
95
|
:'usc_name' => :'String',
|
|
91
96
|
:'value' => :'String'
|
|
92
97
|
}
|
|
@@ -159,6 +164,10 @@ module Akeyless
|
|
|
159
164
|
self.uid_token = attributes[:'uid_token']
|
|
160
165
|
end
|
|
161
166
|
|
|
167
|
+
if attributes.key?(:'usc_encryption_key')
|
|
168
|
+
self.usc_encryption_key = attributes[:'usc_encryption_key']
|
|
169
|
+
end
|
|
170
|
+
|
|
162
171
|
if attributes.key?(:'usc_name')
|
|
163
172
|
self.usc_name = attributes[:'usc_name']
|
|
164
173
|
else
|
|
@@ -217,6 +226,7 @@ module Akeyless
|
|
|
217
226
|
tags == o.tags &&
|
|
218
227
|
token == o.token &&
|
|
219
228
|
uid_token == o.uid_token &&
|
|
229
|
+
usc_encryption_key == o.usc_encryption_key &&
|
|
220
230
|
usc_name == o.usc_name &&
|
|
221
231
|
value == o.value
|
|
222
232
|
end
|
|
@@ -230,7 +240,7 @@ module Akeyless
|
|
|
230
240
|
# Calculates hash code according to all attributes.
|
|
231
241
|
# @return [Integer] Hash code
|
|
232
242
|
def hash
|
|
233
|
-
[binary_value, description, json, namespace, object_type, pfx_password, secret_name, tags, token, uid_token, usc_name, value].hash
|
|
243
|
+
[binary_value, description, json, namespace, object_type, pfx_password, secret_name, tags, token, uid_token, usc_encryption_key, usc_name, value].hash
|
|
234
244
|
end
|
|
235
245
|
|
|
236
246
|
# Builds the object from hash
|
|
@@ -17,6 +17,8 @@ module Akeyless
|
|
|
17
17
|
class UscGetSecretOutput
|
|
18
18
|
attr_accessor :binary_value
|
|
19
19
|
|
|
20
|
+
attr_accessor :encryption_key
|
|
21
|
+
|
|
20
22
|
attr_accessor :id
|
|
21
23
|
|
|
22
24
|
attr_accessor :metadata
|
|
@@ -29,6 +31,7 @@ module Akeyless
|
|
|
29
31
|
def self.attribute_map
|
|
30
32
|
{
|
|
31
33
|
:'binary_value' => :'binary_value',
|
|
34
|
+
:'encryption_key' => :'encryption_key',
|
|
32
35
|
:'id' => :'id',
|
|
33
36
|
:'metadata' => :'metadata',
|
|
34
37
|
:'name' => :'name',
|
|
@@ -45,6 +48,7 @@ module Akeyless
|
|
|
45
48
|
def self.openapi_types
|
|
46
49
|
{
|
|
47
50
|
:'binary_value' => :'Boolean',
|
|
51
|
+
:'encryption_key' => :'String',
|
|
48
52
|
:'id' => :'String',
|
|
49
53
|
:'metadata' => :'Object',
|
|
50
54
|
:'name' => :'String',
|
|
@@ -78,6 +82,10 @@ module Akeyless
|
|
|
78
82
|
self.binary_value = attributes[:'binary_value']
|
|
79
83
|
end
|
|
80
84
|
|
|
85
|
+
if attributes.key?(:'encryption_key')
|
|
86
|
+
self.encryption_key = attributes[:'encryption_key']
|
|
87
|
+
end
|
|
88
|
+
|
|
81
89
|
if attributes.key?(:'id')
|
|
82
90
|
self.id = attributes[:'id']
|
|
83
91
|
end
|
|
@@ -116,6 +124,7 @@ module Akeyless
|
|
|
116
124
|
return true if self.equal?(o)
|
|
117
125
|
self.class == o.class &&
|
|
118
126
|
binary_value == o.binary_value &&
|
|
127
|
+
encryption_key == o.encryption_key &&
|
|
119
128
|
id == o.id &&
|
|
120
129
|
metadata == o.metadata &&
|
|
121
130
|
name == o.name &&
|
|
@@ -131,7 +140,7 @@ module Akeyless
|
|
|
131
140
|
# Calculates hash code according to all attributes.
|
|
132
141
|
# @return [Integer] Hash code
|
|
133
142
|
def hash
|
|
134
|
-
[binary_value, id, metadata, name, value].hash
|
|
143
|
+
[binary_value, encryption_key, id, metadata, name, value].hash
|
|
135
144
|
end
|
|
136
145
|
|
|
137
146
|
# Builds the object from hash
|
|
@@ -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
|
data/lib/akeyless/version.rb
CHANGED
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'
|
|
@@ -608,6 +612,8 @@ require 'akeyless/models/get_account_settings'
|
|
|
608
612
|
require 'akeyless/models/get_account_settings_command_output'
|
|
609
613
|
require 'akeyless/models/get_analytics_data'
|
|
610
614
|
require 'akeyless/models/get_auth_method'
|
|
615
|
+
require 'akeyless/models/get_cert_challenge'
|
|
616
|
+
require 'akeyless/models/get_cert_challenge_output'
|
|
611
617
|
require 'akeyless/models/get_certificate_value'
|
|
612
618
|
require 'akeyless/models/get_certificate_value_output'
|
|
613
619
|
require 'akeyless/models/get_dynamic_secret_value'
|
|
@@ -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
|