akeyless 3.3.13 → 3.3.15

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.
data/lib/akeyless.rb CHANGED
@@ -30,10 +30,7 @@ require 'akeyless/models/add_gateway_allowed_access_id'
30
30
  require 'akeyless/models/admins_config_part'
31
31
  require 'akeyless/models/akeyless_gateway_config'
32
32
  require 'akeyless/models/allowed_access'
33
- require 'akeyless/models/allowed_access_args'
34
- require 'akeyless/models/allowed_access_delete_args'
35
33
  require 'akeyless/models/allowed_access_old'
36
- require 'akeyless/models/allowed_access_update_args'
37
34
  require 'akeyless/models/assoc_role_auth_method'
38
35
  require 'akeyless/models/assoc_target_item'
39
36
  require 'akeyless/models/attribute_type_and_value'
@@ -236,6 +233,7 @@ require 'akeyless/models/gcp_access_rules'
236
233
  require 'akeyless/models/gcp_payload'
237
234
  require 'akeyless/models/gcp_secrets_migration'
238
235
  require 'akeyless/models/gateway_basic_info'
236
+ require 'akeyless/models/gateway_create_allowed_access'
239
237
  require 'akeyless/models/gateway_create_k8_s_auth_config'
240
238
  require 'akeyless/models/gateway_create_k8_s_auth_config_output'
241
239
  require 'akeyless/models/gateway_create_migration'
@@ -291,6 +289,7 @@ require 'akeyless/models/gateway_create_producer_redshift'
291
289
  require 'akeyless/models/gateway_create_producer_redshift_output'
292
290
  require 'akeyless/models/gateway_create_producer_snowflake'
293
291
  require 'akeyless/models/gateway_create_producer_snowflake_output'
292
+ require 'akeyless/models/gateway_delete_allowed_access'
294
293
  require 'akeyless/models/gateway_delete_allowed_access_output'
295
294
  require 'akeyless/models/gateway_delete_k8_s_auth_config'
296
295
  require 'akeyless/models/gateway_delete_k8_s_auth_config_output'
@@ -299,6 +298,7 @@ require 'akeyless/models/gateway_delete_producer'
299
298
  require 'akeyless/models/gateway_delete_producer_output'
300
299
  require 'akeyless/models/gateway_download_customer_fragments'
301
300
  require 'akeyless/models/gateway_download_customer_fragments_output'
301
+ require 'akeyless/models/gateway_get_allowed_access'
302
302
  require 'akeyless/models/gateway_get_config'
303
303
  require 'akeyless/models/gateway_get_k8_s_auth_config'
304
304
  require 'akeyless/models/gateway_get_k8_s_auth_config_output'
@@ -326,6 +326,7 @@ require 'akeyless/models/gateway_status_migration'
326
326
  require 'akeyless/models/gateway_stop_producer'
327
327
  require 'akeyless/models/gateway_stop_producer_output'
328
328
  require 'akeyless/models/gateway_sync_migration'
329
+ require 'akeyless/models/gateway_update_allowed_access'
329
330
  require 'akeyless/models/gateway_update_item'
330
331
  require 'akeyless/models/gateway_update_item_output'
331
332
  require 'akeyless/models/gateway_update_k8_s_auth_config'
@@ -391,6 +392,8 @@ require 'akeyless/models/gateway_update_tmp_users'
391
392
  require 'akeyless/models/gateways_list_response'
392
393
  require 'akeyless/models/gen_customer_fragment'
393
394
  require 'akeyless/models/general_config_part'
395
+ require 'akeyless/models/generate_csr'
396
+ require 'akeyless/models/generate_csr_output'
394
397
  require 'akeyless/models/get_account_settings'
395
398
  require 'akeyless/models/get_account_settings_command_output'
396
399
  require 'akeyless/models/get_auth_method'
@@ -0,0 +1,76 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 2.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.0.0-beta
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GatewayCreateAllowedAccess
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GatewayCreateAllowedAccess do
21
+ let(:instance) { Akeyless::GatewayCreateAllowedAccess.new }
22
+
23
+ describe 'test an instance of GatewayCreateAllowedAccess' do
24
+ it 'should create an instance of GatewayCreateAllowedAccess' do
25
+ expect(instance).to be_instance_of(Akeyless::GatewayCreateAllowedAccess)
26
+ end
27
+ end
28
+ describe 'test attribute "access_id"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "description"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "json"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "name"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "permissions"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "sub_claims"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "token"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "uid_token"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
73
+ end
74
+ end
75
+
76
+ end
@@ -0,0 +1,52 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 2.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.0.0-beta
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GatewayDeleteAllowedAccess
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GatewayDeleteAllowedAccess do
21
+ let(:instance) { Akeyless::GatewayDeleteAllowedAccess.new }
22
+
23
+ describe 'test an instance of GatewayDeleteAllowedAccess' do
24
+ it 'should create an instance of GatewayDeleteAllowedAccess' do
25
+ expect(instance).to be_instance_of(Akeyless::GatewayDeleteAllowedAccess)
26
+ end
27
+ end
28
+ describe 'test attribute "json"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "name"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "token"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "uid_token"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
49
+ end
50
+ end
51
+
52
+ end
@@ -0,0 +1,52 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 2.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.0.0-beta
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GatewayGetAllowedAccess
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GatewayGetAllowedAccess do
21
+ let(:instance) { Akeyless::GatewayGetAllowedAccess.new }
22
+
23
+ describe 'test an instance of GatewayGetAllowedAccess' do
24
+ it 'should create an instance of GatewayGetAllowedAccess' do
25
+ expect(instance).to be_instance_of(Akeyless::GatewayGetAllowedAccess)
26
+ end
27
+ end
28
+ describe 'test attribute "json"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "name"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "token"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "uid_token"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
49
+ end
50
+ end
51
+
52
+ end
@@ -0,0 +1,82 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 2.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.0.0-beta
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GatewayUpdateAllowedAccess
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GatewayUpdateAllowedAccess do
21
+ let(:instance) { Akeyless::GatewayUpdateAllowedAccess.new }
22
+
23
+ describe 'test an instance of GatewayUpdateAllowedAccess' do
24
+ it 'should create an instance of GatewayUpdateAllowedAccess' do
25
+ expect(instance).to be_instance_of(Akeyless::GatewayUpdateAllowedAccess)
26
+ end
27
+ end
28
+ describe 'test attribute "access_id"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "description"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "json"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "name"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "new_name"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "permissions"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "sub_claims"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "token"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "uid_token"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
79
+ end
80
+ end
81
+
82
+ end
@@ -0,0 +1,34 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 2.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.0.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GenerateCsrOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GenerateCsrOutput do
21
+ let(:instance) { Akeyless::GenerateCsrOutput.new }
22
+
23
+ describe 'test an instance of GenerateCsrOutput' do
24
+ it 'should create an instance of GenerateCsrOutput' do
25
+ expect(instance).to be_instance_of(Akeyless::GenerateCsrOutput)
26
+ end
27
+ end
28
+ describe 'test attribute "data"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
31
+ end
32
+ end
33
+
34
+ end
@@ -0,0 +1,148 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 2.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.0.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GenerateCsr
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GenerateCsr do
21
+ let(:instance) { Akeyless::GenerateCsr.new }
22
+
23
+ describe 'test an instance of GenerateCsr' do
24
+ it 'should create an instance of GenerateCsr' do
25
+ expect(instance).to be_instance_of(Akeyless::GenerateCsr)
26
+ end
27
+ end
28
+ describe 'test attribute "alg"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "alt_names"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "certificate_type"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "city"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "common_name"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "country"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "critical"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "dep"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "description"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
79
+ end
80
+ end
81
+
82
+ describe 'test attribute "email_addresses"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
85
+ end
86
+ end
87
+
88
+ describe 'test attribute "generate_key"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
91
+ end
92
+ end
93
+
94
+ describe 'test attribute "ip_addresses"' do
95
+ it 'should work' do
96
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
97
+ end
98
+ end
99
+
100
+ describe 'test attribute "json"' do
101
+ it 'should work' do
102
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
103
+ end
104
+ end
105
+
106
+ describe 'test attribute "metadata"' do
107
+ it 'should work' do
108
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
109
+ end
110
+ end
111
+
112
+ describe 'test attribute "name"' do
113
+ it 'should work' do
114
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
115
+ end
116
+ end
117
+
118
+ describe 'test attribute "org"' do
119
+ it 'should work' do
120
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
121
+ end
122
+ end
123
+
124
+ describe 'test attribute "state"' do
125
+ it 'should work' do
126
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
127
+ end
128
+ end
129
+
130
+ describe 'test attribute "token"' do
131
+ it 'should work' do
132
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
133
+ end
134
+ end
135
+
136
+ describe 'test attribute "uid_token"' do
137
+ it 'should work' do
138
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
139
+ end
140
+ end
141
+
142
+ describe 'test attribute "uri_sans"' do
143
+ it 'should work' do
144
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
145
+ end
146
+ end
147
+
148
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: akeyless
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.13
4
+ version: 3.3.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-06 00:00:00.000000000 Z
11
+ date: 2023-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -285,6 +285,7 @@ files:
285
285
  - docs/GCPSecretsMigration.md
286
286
  - docs/GatewayAddAllowedManagementAccess.md
287
287
  - docs/GatewayBasicInfo.md
288
+ - docs/GatewayCreateAllowedAccess.md
288
289
  - docs/GatewayCreateK8SAuthConfig.md
289
290
  - docs/GatewayCreateK8SAuthConfigOutput.md
290
291
  - docs/GatewayCreateMigration.md
@@ -340,6 +341,7 @@ files:
340
341
  - docs/GatewayCreateProducerRedshiftOutput.md
341
342
  - docs/GatewayCreateProducerSnowflake.md
342
343
  - docs/GatewayCreateProducerSnowflakeOutput.md
344
+ - docs/GatewayDeleteAllowedAccess.md
343
345
  - docs/GatewayDeleteAllowedAccessOutput.md
344
346
  - docs/GatewayDeleteAllowedManagementAccess.md
345
347
  - docs/GatewayDeleteK8SAuthConfig.md
@@ -349,6 +351,7 @@ files:
349
351
  - docs/GatewayDeleteProducerOutput.md
350
352
  - docs/GatewayDownloadCustomerFragments.md
351
353
  - docs/GatewayDownloadCustomerFragmentsOutput.md
354
+ - docs/GatewayGetAllowedAccess.md
352
355
  - docs/GatewayGetConfig.md
353
356
  - docs/GatewayGetK8SAuthConfig.md
354
357
  - docs/GatewayGetK8SAuthConfigOutput.md
@@ -377,6 +380,7 @@ files:
377
380
  - docs/GatewayStopProducer.md
378
381
  - docs/GatewayStopProducerOutput.md
379
382
  - docs/GatewaySyncMigration.md
383
+ - docs/GatewayUpdateAllowedAccess.md
380
384
  - docs/GatewayUpdateItem.md
381
385
  - docs/GatewayUpdateItemOutput.md
382
386
  - docs/GatewayUpdateK8SAuthConfig.md
@@ -442,6 +446,8 @@ files:
442
446
  - docs/GatewaysListResponse.md
443
447
  - docs/GenCustomerFragment.md
444
448
  - docs/GeneralConfigPart.md
449
+ - docs/GenerateCsr.md
450
+ - docs/GenerateCsrOutput.md
445
451
  - docs/GetAccountSettings.md
446
452
  - docs/GetAccountSettingsCommandOutput.md
447
453
  - docs/GetAuthMethod.md
@@ -961,6 +967,7 @@ files:
961
967
  - lib/akeyless/models/external_kms_key_id.rb
962
968
  - lib/akeyless/models/gateway_add_allowed_management_access.rb
963
969
  - lib/akeyless/models/gateway_basic_info.rb
970
+ - lib/akeyless/models/gateway_create_allowed_access.rb
964
971
  - lib/akeyless/models/gateway_create_k8_s_auth_config.rb
965
972
  - lib/akeyless/models/gateway_create_k8_s_auth_config_output.rb
966
973
  - lib/akeyless/models/gateway_create_migration.rb
@@ -1016,6 +1023,7 @@ files:
1016
1023
  - lib/akeyless/models/gateway_create_producer_redshift_output.rb
1017
1024
  - lib/akeyless/models/gateway_create_producer_snowflake.rb
1018
1025
  - lib/akeyless/models/gateway_create_producer_snowflake_output.rb
1026
+ - lib/akeyless/models/gateway_delete_allowed_access.rb
1019
1027
  - lib/akeyless/models/gateway_delete_allowed_access_output.rb
1020
1028
  - lib/akeyless/models/gateway_delete_allowed_management_access.rb
1021
1029
  - lib/akeyless/models/gateway_delete_k8_s_auth_config.rb
@@ -1025,6 +1033,7 @@ files:
1025
1033
  - lib/akeyless/models/gateway_delete_producer_output.rb
1026
1034
  - lib/akeyless/models/gateway_download_customer_fragments.rb
1027
1035
  - lib/akeyless/models/gateway_download_customer_fragments_output.rb
1036
+ - lib/akeyless/models/gateway_get_allowed_access.rb
1028
1037
  - lib/akeyless/models/gateway_get_config.rb
1029
1038
  - lib/akeyless/models/gateway_get_k8_s_auth_config.rb
1030
1039
  - lib/akeyless/models/gateway_get_k8_s_auth_config_output.rb
@@ -1053,6 +1062,7 @@ files:
1053
1062
  - lib/akeyless/models/gateway_stop_producer.rb
1054
1063
  - lib/akeyless/models/gateway_stop_producer_output.rb
1055
1064
  - lib/akeyless/models/gateway_sync_migration.rb
1065
+ - lib/akeyless/models/gateway_update_allowed_access.rb
1056
1066
  - lib/akeyless/models/gateway_update_item.rb
1057
1067
  - lib/akeyless/models/gateway_update_item_output.rb
1058
1068
  - lib/akeyless/models/gateway_update_k8_s_auth_config.rb
@@ -1121,6 +1131,8 @@ files:
1121
1131
  - lib/akeyless/models/gcp_secrets_migration.rb
1122
1132
  - lib/akeyless/models/gen_customer_fragment.rb
1123
1133
  - lib/akeyless/models/general_config_part.rb
1134
+ - lib/akeyless/models/generate_csr.rb
1135
+ - lib/akeyless/models/generate_csr_output.rb
1124
1136
  - lib/akeyless/models/get_account_settings.rb
1125
1137
  - lib/akeyless/models/get_account_settings_command_output.rb
1126
1138
  - lib/akeyless/models/get_auth_method.rb
@@ -2126,6 +2138,7 @@ files:
2126
2138
  - spec/models/external_kms_key_id_spec.rb
2127
2139
  - spec/models/gateway_add_allowed_management_access_spec.rb
2128
2140
  - spec/models/gateway_basic_info_spec.rb
2141
+ - spec/models/gateway_create_allowed_access_spec.rb
2129
2142
  - spec/models/gateway_create_k8_s_auth_config_output_spec.rb
2130
2143
  - spec/models/gateway_create_k8_s_auth_config_spec.rb
2131
2144
  - spec/models/gateway_create_migration_spec.rb
@@ -2182,6 +2195,7 @@ files:
2182
2195
  - spec/models/gateway_create_producer_snowflake_output_spec.rb
2183
2196
  - spec/models/gateway_create_producer_snowflake_spec.rb
2184
2197
  - spec/models/gateway_delete_allowed_access_output_spec.rb
2198
+ - spec/models/gateway_delete_allowed_access_spec.rb
2185
2199
  - spec/models/gateway_delete_allowed_management_access_spec.rb
2186
2200
  - spec/models/gateway_delete_k8_s_auth_config_output_spec.rb
2187
2201
  - spec/models/gateway_delete_k8_s_auth_config_spec.rb
@@ -2190,6 +2204,7 @@ files:
2190
2204
  - spec/models/gateway_delete_producer_spec.rb
2191
2205
  - spec/models/gateway_download_customer_fragments_output_spec.rb
2192
2206
  - spec/models/gateway_download_customer_fragments_spec.rb
2207
+ - spec/models/gateway_get_allowed_access_spec.rb
2193
2208
  - spec/models/gateway_get_config_spec.rb
2194
2209
  - spec/models/gateway_get_k8_s_auth_config_output_spec.rb
2195
2210
  - spec/models/gateway_get_k8_s_auth_config_spec.rb
@@ -2218,6 +2233,7 @@ files:
2218
2233
  - spec/models/gateway_stop_producer_output_spec.rb
2219
2234
  - spec/models/gateway_stop_producer_spec.rb
2220
2235
  - spec/models/gateway_sync_migration_spec.rb
2236
+ - spec/models/gateway_update_allowed_access_spec.rb
2221
2237
  - spec/models/gateway_update_item_output_spec.rb
2222
2238
  - spec/models/gateway_update_item_spec.rb
2223
2239
  - spec/models/gateway_update_k8_s_auth_config_output_spec.rb
@@ -2286,6 +2302,8 @@ files:
2286
2302
  - spec/models/gcp_secrets_migration_spec.rb
2287
2303
  - spec/models/gen_customer_fragment_spec.rb
2288
2304
  - spec/models/general_config_part_spec.rb
2305
+ - spec/models/generate_csr_output_spec.rb
2306
+ - spec/models/generate_csr_spec.rb
2289
2307
  - spec/models/get_account_settings_command_output_spec.rb
2290
2308
  - spec/models/get_account_settings_spec.rb
2291
2309
  - spec/models/get_auth_method_spec.rb
@@ -2659,6 +2677,7 @@ test_files:
2659
2677
  - spec/models/update_auth_method_output_spec.rb
2660
2678
  - spec/models/aws_secrets_migration_spec.rb
2661
2679
  - spec/models/mock_migration_spec.rb
2680
+ - spec/models/gateway_delete_allowed_access_spec.rb
2662
2681
  - spec/models/create_auth_method_email_spec.rb
2663
2682
  - spec/models/create_zero_ssl_target_spec.rb
2664
2683
  - spec/models/o_auth2_access_rules_spec.rb
@@ -2929,6 +2948,7 @@ test_files:
2929
2948
  - spec/models/create_global_sign_target_spec.rb
2930
2949
  - spec/models/gateway_delete_producer_output_spec.rb
2931
2950
  - spec/models/aws_payload_spec.rb
2951
+ - spec/models/generate_csr_output_spec.rb
2932
2952
  - spec/models/create_web_target_output_spec.rb
2933
2953
  - spec/models/rotate_key_spec.rb
2934
2954
  - spec/models/update_target_details_output_spec.rb
@@ -2961,6 +2981,7 @@ test_files:
2961
2981
  - spec/models/gateway_get_k8_s_auth_config_output_spec.rb
2962
2982
  - spec/models/rotated_secret_details_info_spec.rb
2963
2983
  - spec/models/verify_jwt_with_classic_key_spec.rb
2984
+ - spec/models/gateway_update_allowed_access_spec.rb
2964
2985
  - spec/models/get_target_details_spec.rb
2965
2986
  - spec/models/uid_generate_token_output_spec.rb
2966
2987
  - spec/models/get_auth_method_spec.rb
@@ -2987,6 +3008,7 @@ test_files:
2987
3008
  - spec/models/create_auth_method_universal_identity_spec.rb
2988
3009
  - spec/models/get_certificate_value_output_spec.rb
2989
3010
  - spec/models/gateway_get_producer_spec.rb
3011
+ - spec/models/generate_csr_spec.rb
2990
3012
  - spec/models/encrypt_pkcs1_spec.rb
2991
3013
  - spec/models/uid_token_details_spec.rb
2992
3014
  - spec/models/update_auth_method_o_auth2_spec.rb
@@ -3185,6 +3207,7 @@ test_files:
3185
3207
  - spec/models/gateway_update_ldap_auth_config_output_spec.rb
3186
3208
  - spec/models/describe_assoc_spec.rb
3187
3209
  - spec/models/share_item_spec.rb
3210
+ - spec/models/gateway_get_allowed_access_spec.rb
3188
3211
  - spec/models/regexp_tokenizer_info_spec.rb
3189
3212
  - spec/models/delete_auth_method_output_spec.rb
3190
3213
  - spec/models/get_target_details_output_spec.rb
@@ -3272,6 +3295,7 @@ test_files:
3272
3295
  - spec/models/create_secret_spec.rb
3273
3296
  - spec/models/get_rotated_secret_value_spec.rb
3274
3297
  - spec/models/update_gcp_target_spec.rb
3298
+ - spec/models/gateway_create_allowed_access_spec.rb
3275
3299
  - spec/models/gateway_list_rotated_secrets_spec.rb
3276
3300
  - spec/models/target_object_association_spec.rb
3277
3301
  - spec/models/update_gcp_target_output_spec.rb