akeyless 3.0.1 → 3.1.0
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 +24 -3
- data/docs/AttributeTypeAndValue.md +20 -0
- data/docs/CertificateChainInfo.md +22 -0
- data/docs/CertificateExpirationEvent.md +18 -0
- data/docs/CertificateInfo.md +62 -0
- data/docs/Connect.md +2 -0
- data/docs/CreateEventForwarder.md +48 -0
- data/docs/CreateEventForwarderOutput.md +18 -0
- data/docs/CreateRotatedSecret.md +2 -0
- data/docs/DeleteEventForwarder.md +24 -0
- data/docs/EmailEntry.md +20 -0
- data/docs/Extension.md +22 -0
- data/docs/GatewayUpdateItem.md +2 -0
- data/docs/GetEventForwarder.md +24 -0
- data/docs/GetEventForwarderOutput.md +18 -0
- data/docs/Item.md +4 -0
- data/docs/ItemGeneralInfo.md +2 -0
- data/docs/ListSharedItems.md +24 -0
- data/docs/Name.md +28 -0
- data/docs/NotiForwarder.md +56 -0
- data/docs/RequestAccess.md +28 -0
- data/docs/RequestAccessOutput.md +18 -0
- data/docs/Target.md +4 -0
- data/docs/UpdateEventForwarder.md +40 -0
- data/docs/UpdateRotatedSecret.md +2 -0
- data/docs/V2Api.md +377 -63
- data/lib/akeyless/api/v2_api.rb +384 -64
- data/lib/akeyless/api_error.rb +1 -0
- data/lib/akeyless/configuration.rb +11 -0
- data/lib/akeyless/models/attribute_type_and_value.rb +231 -0
- data/lib/akeyless/models/certificate_chain_info.rb +241 -0
- data/lib/akeyless/models/certificate_expiration_event.rb +219 -0
- data/lib/akeyless/models/certificate_info.rb +434 -0
- data/lib/akeyless/models/connect.rb +11 -1
- data/lib/akeyless/models/create_event_forwarder.rb +394 -0
- data/lib/akeyless/models/create_event_forwarder_output.rb +219 -0
- data/lib/akeyless/models/create_rotated_secret.rb +11 -1
- data/lib/akeyless/models/delete_event_forwarder.rb +255 -0
- data/lib/akeyless/models/email_entry.rb +228 -0
- data/lib/akeyless/models/extension.rb +237 -0
- data/lib/akeyless/models/gateway_update_item.rb +11 -1
- data/lib/akeyless/models/get_event_forwarder.rb +255 -0
- data/lib/akeyless/models/get_event_forwarder_output.rb +219 -0
- data/lib/akeyless/models/item.rb +19 -1
- data/lib/akeyless/models/item_general_info.rb +10 -1
- data/lib/akeyless/models/list_shared_items.rb +253 -0
- data/lib/akeyless/models/name.rb +277 -0
- data/lib/akeyless/models/noti_forwarder.rb +400 -0
- data/lib/akeyless/models/request_access.rb +282 -0
- data/lib/akeyless/models/request_access_output.rb +219 -0
- data/lib/akeyless/models/target.rb +19 -1
- data/lib/akeyless/models/update_event_forwarder.rb +341 -0
- data/lib/akeyless/models/update_rotated_secret.rb +11 -1
- data/lib/akeyless/version.rb +1 -1
- data/lib/akeyless.rb +17 -1
- data/spec/models/attribute_type_and_value_spec.rb +40 -0
- data/spec/models/certificate_chain_info_spec.rb +46 -0
- data/spec/models/certificate_expiration_event_spec.rb +34 -0
- data/spec/models/certificate_info_spec.rb +166 -0
- data/spec/models/create_event_forwarder_output_spec.rb +34 -0
- data/spec/models/create_event_forwarder_spec.rb +124 -0
- data/spec/models/delete_event_forwarder_spec.rb +52 -0
- data/spec/models/email_entry_spec.rb +40 -0
- data/spec/models/extension_spec.rb +46 -0
- data/spec/models/get_event_forwarder_output_spec.rb +34 -0
- data/spec/models/get_event_forwarder_spec.rb +52 -0
- data/spec/models/list_shared_items_spec.rb +52 -0
- data/spec/models/name_spec.rb +64 -0
- data/spec/models/noti_forwarder_spec.rb +148 -0
- data/spec/models/request_access_output_spec.rb +34 -0
- data/spec/models/request_access_spec.rb +64 -0
- data/spec/models/update_event_forwarder_spec.rb +100 -0
- metadata +597 -529
data/lib/akeyless/version.rb
CHANGED
data/lib/akeyless.rb
CHANGED
@@ -30,6 +30,7 @@ require 'akeyless/models/akeyless_gateway_config'
|
|
30
30
|
require 'akeyless/models/allowed_access'
|
31
31
|
require 'akeyless/models/assoc_role_auth_method'
|
32
32
|
require 'akeyless/models/assoc_target_item'
|
33
|
+
require 'akeyless/models/attribute_type_and_value'
|
33
34
|
require 'akeyless/models/auth'
|
34
35
|
require 'akeyless/models/auth_method'
|
35
36
|
require 'akeyless/models/auth_method_access_info'
|
@@ -45,6 +46,9 @@ require 'akeyless/models/bastions_list'
|
|
45
46
|
require 'akeyless/models/cf_config_part'
|
46
47
|
require 'akeyless/models/cache_config_part'
|
47
48
|
require 'akeyless/models/cert_access_rules'
|
49
|
+
require 'akeyless/models/certificate_chain_info'
|
50
|
+
require 'akeyless/models/certificate_expiration_event'
|
51
|
+
require 'akeyless/models/certificate_info'
|
48
52
|
require 'akeyless/models/certificate_issue_info'
|
49
53
|
require 'akeyless/models/classic_key_details_info'
|
50
54
|
require 'akeyless/models/classic_key_status_info'
|
@@ -96,6 +100,8 @@ require 'akeyless/models/create_dockerhub_target_output'
|
|
96
100
|
require 'akeyless/models/create_dynamic_secret'
|
97
101
|
require 'akeyless/models/create_eks_target'
|
98
102
|
require 'akeyless/models/create_eks_target_output'
|
103
|
+
require 'akeyless/models/create_event_forwarder'
|
104
|
+
require 'akeyless/models/create_event_forwarder_output'
|
99
105
|
require 'akeyless/models/create_gke_target'
|
100
106
|
require 'akeyless/models/create_gke_target_output'
|
101
107
|
require 'akeyless/models/create_gcp_target'
|
@@ -148,6 +154,7 @@ require 'akeyless/models/delete_auth_method'
|
|
148
154
|
require 'akeyless/models/delete_auth_method_output'
|
149
155
|
require 'akeyless/models/delete_auth_methods'
|
150
156
|
require 'akeyless/models/delete_auth_methods_output'
|
157
|
+
require 'akeyless/models/delete_event_forwarder'
|
151
158
|
require 'akeyless/models/delete_item'
|
152
159
|
require 'akeyless/models/delete_item_output'
|
153
160
|
require 'akeyless/models/delete_items'
|
@@ -169,6 +176,7 @@ require 'akeyless/models/detokenize'
|
|
169
176
|
require 'akeyless/models/detokenize_output'
|
170
177
|
require 'akeyless/models/dynamic_secret_producer_info'
|
171
178
|
require 'akeyless/models/elasticsearch_log_forwarding_config'
|
179
|
+
require 'akeyless/models/email_entry'
|
172
180
|
require 'akeyless/models/email_pass_access_rules'
|
173
181
|
require 'akeyless/models/email_tokenizer_info'
|
174
182
|
require 'akeyless/models/encrypt'
|
@@ -179,11 +187,11 @@ require 'akeyless/models/encrypt_with_classic_key'
|
|
179
187
|
require 'akeyless/models/encrypt_with_classic_key_output'
|
180
188
|
require 'akeyless/models/export_classic_key'
|
181
189
|
require 'akeyless/models/export_classic_key_output'
|
190
|
+
require 'akeyless/models/extension'
|
182
191
|
require 'akeyless/models/external_kms_key_id'
|
183
192
|
require 'akeyless/models/gcp_access_rules'
|
184
193
|
require 'akeyless/models/gcp_payload'
|
185
194
|
require 'akeyless/models/gcp_secrets_migration'
|
186
|
-
require 'akeyless/models/gateway_add_allowed_management_access'
|
187
195
|
require 'akeyless/models/gateway_create_k8_s_auth_config'
|
188
196
|
require 'akeyless/models/gateway_create_k8_s_auth_config_output'
|
189
197
|
require 'akeyless/models/gateway_create_migration'
|
@@ -331,6 +339,8 @@ require 'akeyless/models/get_account_settings'
|
|
331
339
|
require 'akeyless/models/get_account_settings_command_output'
|
332
340
|
require 'akeyless/models/get_auth_method'
|
333
341
|
require 'akeyless/models/get_dynamic_secret_value'
|
342
|
+
require 'akeyless/models/get_event_forwarder'
|
343
|
+
require 'akeyless/models/get_event_forwarder_output'
|
334
344
|
require 'akeyless/models/get_kube_exec_creds'
|
335
345
|
require 'akeyless/models/get_kube_exec_creds_output'
|
336
346
|
require 'akeyless/models/get_pki_certificate'
|
@@ -402,6 +412,7 @@ require 'akeyless/models/list_items_in_path_output'
|
|
402
412
|
require 'akeyless/models/list_roles'
|
403
413
|
require 'akeyless/models/list_roles_output'
|
404
414
|
require 'akeyless/models/list_sra_bastions'
|
415
|
+
require 'akeyless/models/list_shared_items'
|
405
416
|
require 'akeyless/models/list_targets'
|
406
417
|
require 'akeyless/models/list_targets_output'
|
407
418
|
require 'akeyless/models/log_forwarding_config_part'
|
@@ -416,6 +427,8 @@ require 'akeyless/models/migrations_config_part'
|
|
416
427
|
require 'akeyless/models/mock_migration'
|
417
428
|
require 'akeyless/models/mock_payload'
|
418
429
|
require 'akeyless/models/move_objects'
|
430
|
+
require 'akeyless/models/name'
|
431
|
+
require 'akeyless/models/noti_forwarder'
|
419
432
|
require 'akeyless/models/o_auth2_access_rules'
|
420
433
|
require 'akeyless/models/o_auth2_custom_claim'
|
421
434
|
require 'akeyless/models/oidc_access_rules'
|
@@ -432,6 +445,8 @@ require 'akeyless/models/raw_creds'
|
|
432
445
|
require 'akeyless/models/refresh_key'
|
433
446
|
require 'akeyless/models/refresh_key_output'
|
434
447
|
require 'akeyless/models/regexp_tokenizer_info'
|
448
|
+
require 'akeyless/models/request_access'
|
449
|
+
require 'akeyless/models/request_access_output'
|
435
450
|
require 'akeyless/models/required_activity'
|
436
451
|
require 'akeyless/models/reverse_rbac'
|
437
452
|
require 'akeyless/models/reverse_rbac_client'
|
@@ -524,6 +539,7 @@ require 'akeyless/models/update_dockerhub_target'
|
|
524
539
|
require 'akeyless/models/update_dockerhub_target_output'
|
525
540
|
require 'akeyless/models/update_eks_target'
|
526
541
|
require 'akeyless/models/update_eks_target_output'
|
542
|
+
require 'akeyless/models/update_event_forwarder'
|
527
543
|
require 'akeyless/models/update_gke_target'
|
528
544
|
require 'akeyless/models/update_gke_target_output'
|
529
545
|
require 'akeyless/models/update_gcp_target'
|
@@ -0,0 +1,40 @@
|
|
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: 6.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Akeyless::AttributeTypeAndValue
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::AttributeTypeAndValue do
|
21
|
+
let(:instance) { Akeyless::AttributeTypeAndValue.new }
|
22
|
+
|
23
|
+
describe 'test an instance of AttributeTypeAndValue' do
|
24
|
+
it 'should create an instance of AttributeTypeAndValue' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::AttributeTypeAndValue)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "type"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "value"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,46 @@
|
|
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: 6.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Akeyless::CertificateChainInfo
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::CertificateChainInfo do
|
21
|
+
let(:instance) { Akeyless::CertificateChainInfo.new }
|
22
|
+
|
23
|
+
describe 'test an instance of CertificateChainInfo' do
|
24
|
+
it 'should create an instance of CertificateChainInfo' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::CertificateChainInfo)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "certificate_chain"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "certificate_pem"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "expiration_events"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
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: 6.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Akeyless::CertificateExpirationEvent
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::CertificateExpirationEvent do
|
21
|
+
let(:instance) { Akeyless::CertificateExpirationEvent.new }
|
22
|
+
|
23
|
+
describe 'test an instance of CertificateExpirationEvent' do
|
24
|
+
it 'should create an instance of CertificateExpirationEvent' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::CertificateExpirationEvent)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "seconds_before"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
@@ -0,0 +1,166 @@
|
|
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: 6.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Akeyless::CertificateInfo
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::CertificateInfo do
|
21
|
+
let(:instance) { Akeyless::CertificateInfo.new }
|
22
|
+
|
23
|
+
describe 'test an instance of CertificateInfo' do
|
24
|
+
it 'should create an instance of CertificateInfo' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::CertificateInfo)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "ext_key_usage"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "key_usage"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "dns_names"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "email_addresses"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "extensions"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "ip_addresses"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "is_ca"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'test attribute "issuer"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe 'test attribute "issuing_certificate_url"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
describe 'test attribute "key_size"' do
|
83
|
+
it 'should work' do
|
84
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe 'test attribute "not_after"' do
|
89
|
+
it 'should work' do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
describe 'test attribute "not_before"' do
|
95
|
+
it 'should work' do
|
96
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
describe 'test attribute "ocsp_server"' do
|
101
|
+
it 'should work' do
|
102
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
describe 'test attribute "public_key_algorithm_name"' do
|
107
|
+
it 'should work' do
|
108
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
describe 'test attribute "serial_number"' do
|
113
|
+
it 'should work' do
|
114
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
describe 'test attribute "sha_1_fingerprint"' do
|
119
|
+
it 'should work' do
|
120
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
describe 'test attribute "sha_256_fingerprint"' do
|
125
|
+
it 'should work' do
|
126
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
describe 'test attribute "signature"' do
|
131
|
+
it 'should work' do
|
132
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
describe 'test attribute "signature_algorithm_name"' do
|
137
|
+
it 'should work' do
|
138
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
describe 'test attribute "subject"' do
|
143
|
+
it 'should work' do
|
144
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
describe 'test attribute "subject_public_key"' do
|
149
|
+
it 'should work' do
|
150
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
describe 'test attribute "uris"' do
|
155
|
+
it 'should work' do
|
156
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
describe 'test attribute "version"' do
|
161
|
+
it 'should work' do
|
162
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
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: 6.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Akeyless::CreateEventForwarderOutput
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::CreateEventForwarderOutput do
|
21
|
+
let(:instance) { Akeyless::CreateEventForwarderOutput.new }
|
22
|
+
|
23
|
+
describe 'test an instance of CreateEventForwarderOutput' do
|
24
|
+
it 'should create an instance of CreateEventForwarderOutput' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::CreateEventForwarderOutput)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "event_forwarder_id"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
@@ -0,0 +1,124 @@
|
|
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: 6.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Akeyless::CreateEventForwarder
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::CreateEventForwarder do
|
21
|
+
let(:instance) { Akeyless::CreateEventForwarder.new }
|
22
|
+
|
23
|
+
describe 'test an instance of CreateEventForwarder' do
|
24
|
+
it 'should create an instance of CreateEventForwarder' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::CreateEventForwarder)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "admin_name"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "admin_pwd"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "comment"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "email_to"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "event_source_locations"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "event_source_type"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "event_types"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'test attribute "every"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe 'test attribute "forwarder_type"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
describe 'test attribute "host"' do
|
83
|
+
it 'should work' do
|
84
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe 'test attribute "json"' do
|
89
|
+
it 'should work' do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
describe 'test attribute "key"' do
|
95
|
+
it 'should work' do
|
96
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
describe 'test attribute "name"' do
|
101
|
+
it 'should work' do
|
102
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
describe 'test attribute "runner_type"' do
|
107
|
+
it 'should work' do
|
108
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
describe 'test attribute "token"' do
|
113
|
+
it 'should work' do
|
114
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
describe 'test attribute "uid_token"' do
|
119
|
+
it 'should work' do
|
120
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
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: 6.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Akeyless::DeleteEventForwarder
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::DeleteEventForwarder do
|
21
|
+
let(:instance) { Akeyless::DeleteEventForwarder.new }
|
22
|
+
|
23
|
+
describe 'test an instance of DeleteEventForwarder' do
|
24
|
+
it 'should create an instance of DeleteEventForwarder' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::DeleteEventForwarder)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "json"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "name"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "token"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/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://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
@@ -0,0 +1,40 @@
|
|
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: 6.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Akeyless::EmailEntry
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Akeyless::EmailEntry do
|
21
|
+
let(:instance) { Akeyless::EmailEntry.new }
|
22
|
+
|
23
|
+
describe 'test an instance of EmailEntry' do
|
24
|
+
it 'should create an instance of EmailEntry' do
|
25
|
+
expect(instance).to be_instance_of(Akeyless::EmailEntry)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "to_email"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "to_name"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|