akeyless 5.0.32 → 5.0.33

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 (48) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -2
  3. data/docs/AssocTargetItem.md +3 -1
  4. data/docs/AuthMethod.md +2 -0
  5. data/docs/KMIPCAListEntry.md +34 -0
  6. data/docs/KmipGetCABundle.md +22 -0
  7. data/docs/KmipGetCABundleOutput.md +18 -0
  8. data/docs/KmipListCAs.md +22 -0
  9. data/docs/KmipListCAsOutput.md +18 -0
  10. data/docs/KmipRenewClientCertificate.md +2 -0
  11. data/docs/KmipRotateCA.md +24 -0
  12. data/docs/KmipRotateCAOutput.md +22 -0
  13. data/docs/KmipSunsetCA.md +28 -0
  14. data/docs/KmipSunsetCAOutput.md +18 -0
  15. data/docs/RotatedSecretCreateSsh.md +12 -0
  16. data/docs/RotatedSecretDetailsInfo.md +2 -0
  17. data/docs/RotatedSecretUpdateSsh.md +12 -0
  18. data/docs/SAMLAccessRules.md +2 -0
  19. data/docs/V2Api.md +261 -1
  20. data/lib/akeyless/api/v2_api.rb +241 -1
  21. data/lib/akeyless/models/assoc_target_item.rb +14 -2
  22. data/lib/akeyless/models/auth_method.rb +11 -1
  23. data/lib/akeyless/models/kmip_get_ca_bundle.rb +237 -0
  24. data/lib/akeyless/models/kmip_get_ca_bundle_output.rb +214 -0
  25. data/lib/akeyless/models/kmip_list_cas.rb +237 -0
  26. data/lib/akeyless/models/kmip_list_cas_output.rb +216 -0
  27. data/lib/akeyless/models/kmip_renew_client_certificate.rb +11 -1
  28. data/lib/akeyless/models/kmip_rotate_ca.rb +249 -0
  29. data/lib/akeyless/models/kmip_rotate_ca_output.rb +232 -0
  30. data/lib/akeyless/models/kmip_sunset_ca.rb +276 -0
  31. data/lib/akeyless/models/kmip_sunset_ca_output.rb +214 -0
  32. data/lib/akeyless/models/kmipca_list_entry.rb +288 -0
  33. data/lib/akeyless/models/rotated_secret_create_ssh.rb +67 -1
  34. data/lib/akeyless/models/rotated_secret_details_info.rb +11 -1
  35. data/lib/akeyless/models/rotated_secret_update_ssh.rb +67 -1
  36. data/lib/akeyless/models/saml_access_rules.rb +11 -1
  37. data/lib/akeyless/version.rb +1 -1
  38. data/lib/akeyless.rb +9 -0
  39. data/spec/models/kmip_get_ca_bundle_output_spec.rb +36 -0
  40. data/spec/models/kmip_get_ca_bundle_spec.rb +48 -0
  41. data/spec/models/kmip_list_cas_output_spec.rb +36 -0
  42. data/spec/models/kmip_list_cas_spec.rb +48 -0
  43. data/spec/models/kmip_rotate_ca_output_spec.rb +48 -0
  44. data/spec/models/kmip_rotate_ca_spec.rb +54 -0
  45. data/spec/models/kmip_sunset_ca_output_spec.rb +36 -0
  46. data/spec/models/kmip_sunset_ca_spec.rb +66 -0
  47. data/spec/models/kmipca_list_entry_spec.rb +84 -0
  48. metadata +58 -22
@@ -34,6 +34,9 @@ module Akeyless
34
34
 
35
35
  attr_accessor :iis_apps_details
36
36
 
37
+ # SSHKeyAlgorithm identifies the key algorithm an SSH rotated secret uses. Kept apart from Algorithm, which is an encryption-key enum and has no ECDSA-384 or ECDSA-521.
38
+ attr_accessor :key_algorithm
39
+
37
40
  attr_accessor :last_rotation_error
38
41
 
39
42
  attr_accessor :managed_by_akeyless
@@ -79,6 +82,7 @@ module Akeyless
79
82
  :'grace_rotation_timing' => :'grace_rotation_timing',
80
83
  :'gw_cluster_id' => :'gw_cluster_id',
81
84
  :'iis_apps_details' => :'iis_apps_details',
85
+ :'key_algorithm' => :'key_algorithm',
82
86
  :'last_rotation_error' => :'last_rotation_error',
83
87
  :'managed_by_akeyless' => :'managed_by_akeyless',
84
88
  :'max_versions' => :'max_versions',
@@ -115,6 +119,7 @@ module Akeyless
115
119
  :'grace_rotation_timing' => :'String',
116
120
  :'gw_cluster_id' => :'Integer',
117
121
  :'iis_apps_details' => :'Array<WindowsService>',
122
+ :'key_algorithm' => :'String',
118
123
  :'last_rotation_error' => :'String',
119
124
  :'managed_by_akeyless' => :'Boolean',
120
125
  :'max_versions' => :'Integer',
@@ -193,6 +198,10 @@ module Akeyless
193
198
  end
194
199
  end
195
200
 
201
+ if attributes.key?(:'key_algorithm')
202
+ self.key_algorithm = attributes[:'key_algorithm']
203
+ end
204
+
196
205
  if attributes.key?(:'last_rotation_error')
197
206
  self.last_rotation_error = attributes[:'last_rotation_error']
198
207
  end
@@ -289,6 +298,7 @@ module Akeyless
289
298
  grace_rotation_timing == o.grace_rotation_timing &&
290
299
  gw_cluster_id == o.gw_cluster_id &&
291
300
  iis_apps_details == o.iis_apps_details &&
301
+ key_algorithm == o.key_algorithm &&
292
302
  last_rotation_error == o.last_rotation_error &&
293
303
  managed_by_akeyless == o.managed_by_akeyless &&
294
304
  max_versions == o.max_versions &&
@@ -316,7 +326,7 @@ module Akeyless
316
326
  # Calculates hash code according to all attributes.
317
327
  # @return [Integer] Hash code
318
328
  def hash
319
- [aws_user_name, delete_previous_version_in_days, enable_custom_password_policy, grace_rotation, grace_rotation_hour, grace_rotation_interval, grace_rotation_timing, gw_cluster_id, iis_apps_details, last_rotation_error, managed_by_akeyless, max_versions, next_auto_rotate_type, number_of_versions_to_save, public_key_remote_path, rotation_hour, rotation_interval_min, rotation_statement, rotator_creds_type, rotator_status, rotator_type, same_password, services_details, skip_dry_run, timeout_seconds].hash
329
+ [aws_user_name, delete_previous_version_in_days, enable_custom_password_policy, grace_rotation, grace_rotation_hour, grace_rotation_interval, grace_rotation_timing, gw_cluster_id, iis_apps_details, key_algorithm, last_rotation_error, managed_by_akeyless, max_versions, next_auto_rotate_type, number_of_versions_to_save, public_key_remote_path, rotation_hour, rotation_interval_min, rotation_statement, rotator_creds_type, rotator_status, rotator_type, same_password, services_details, skip_dry_run, timeout_seconds].hash
320
330
  end
321
331
 
322
332
  # Builds the object from hash
@@ -51,6 +51,9 @@ module Akeyless
51
51
 
52
52
  attr_accessor :key
53
53
 
54
+ # The key algorithm to generate with when no private key is supplied, leave empty to keep the current algorithm. options: [ED25519/RSA2048/RSA3072/RSA4096/ECDSA256/ECDSA384/ECDSA521]
55
+ attr_accessor :key_algorithm
56
+
54
57
  # Private key file contents encoded using base64
55
58
  attr_accessor :key_data_base64
56
59
 
@@ -127,12 +130,27 @@ module Akeyless
127
130
  # Override the RDP Domain username
128
131
  attr_accessor :secure_access_rdp_user
129
132
 
133
+ # Secret values contains SSH Credentials, either Private Key or Password [password/private-key] (relevant only for Static-Secret or Rotated-secret)
134
+ attr_accessor :secure_access_ssh_creds
135
+
130
136
  # Override the SSH username as indicated in SSH Certificate Issuer
131
137
  attr_accessor :secure_access_ssh_user
132
138
 
133
139
  # Specify target type. Options are ssh or rdp
134
140
  attr_accessor :secure_access_target_type
135
141
 
142
+ # Destination URL to inject secrets
143
+ attr_accessor :secure_access_url
144
+
145
+ # Enable Web Secure Remote Access
146
+ attr_accessor :secure_access_web
147
+
148
+ # Secure browser via Akeyless's Secure Remote Access (SRA)
149
+ attr_accessor :secure_access_web_browsing
150
+
151
+ # Web-Proxy via Akeyless's Secure Remote Access (SRA)
152
+ attr_accessor :secure_access_web_proxy
153
+
136
154
  # If set, dry-run will be skipped
137
155
  attr_accessor :skip_dry_run
138
156
 
@@ -172,6 +190,7 @@ module Akeyless
172
190
  :'json' => :'json',
173
191
  :'keep_prev_version' => :'keep-prev-version',
174
192
  :'key' => :'key',
193
+ :'key_algorithm' => :'key-algorithm',
175
194
  :'key_data_base64' => :'key-data-base64',
176
195
  :'lock_during_sra_session' => :'lock-during-sra-session',
177
196
  :'max_versions' => :'max-versions',
@@ -198,8 +217,13 @@ module Akeyless
198
217
  :'secure_access_host' => :'secure-access-host',
199
218
  :'secure_access_rdp_domain' => :'secure-access-rdp-domain',
200
219
  :'secure_access_rdp_user' => :'secure-access-rdp-user',
220
+ :'secure_access_ssh_creds' => :'secure-access-ssh-creds',
201
221
  :'secure_access_ssh_user' => :'secure-access-ssh-user',
202
222
  :'secure_access_target_type' => :'secure-access-target-type',
223
+ :'secure_access_url' => :'secure-access-url',
224
+ :'secure_access_web' => :'secure-access-web',
225
+ :'secure_access_web_browsing' => :'secure-access-web-browsing',
226
+ :'secure_access_web_proxy' => :'secure-access-web-proxy',
203
227
  :'skip_dry_run' => :'skip_dry_run',
204
228
  :'target' => :'target',
205
229
  :'token' => :'token',
@@ -232,6 +256,7 @@ module Akeyless
232
256
  :'json' => :'Boolean',
233
257
  :'keep_prev_version' => :'String',
234
258
  :'key' => :'String',
259
+ :'key_algorithm' => :'String',
235
260
  :'key_data_base64' => :'String',
236
261
  :'lock_during_sra_session' => :'String',
237
262
  :'max_versions' => :'String',
@@ -258,8 +283,13 @@ module Akeyless
258
283
  :'secure_access_host' => :'Array<String>',
259
284
  :'secure_access_rdp_domain' => :'String',
260
285
  :'secure_access_rdp_user' => :'String',
286
+ :'secure_access_ssh_creds' => :'String',
261
287
  :'secure_access_ssh_user' => :'String',
262
288
  :'secure_access_target_type' => :'String',
289
+ :'secure_access_url' => :'String',
290
+ :'secure_access_web' => :'Boolean',
291
+ :'secure_access_web_browsing' => :'Boolean',
292
+ :'secure_access_web_proxy' => :'Boolean',
263
293
  :'skip_dry_run' => :'String',
264
294
  :'target' => :'Array<String>',
265
295
  :'token' => :'String',
@@ -356,6 +386,10 @@ module Akeyless
356
386
  self.key = attributes[:'key']
357
387
  end
358
388
 
389
+ if attributes.key?(:'key_algorithm')
390
+ self.key_algorithm = attributes[:'key_algorithm']
391
+ end
392
+
359
393
  if attributes.key?(:'key_data_base64')
360
394
  self.key_data_base64 = attributes[:'key_data_base64']
361
395
  end
@@ -474,6 +508,10 @@ module Akeyless
474
508
  self.secure_access_rdp_user = attributes[:'secure_access_rdp_user']
475
509
  end
476
510
 
511
+ if attributes.key?(:'secure_access_ssh_creds')
512
+ self.secure_access_ssh_creds = attributes[:'secure_access_ssh_creds']
513
+ end
514
+
477
515
  if attributes.key?(:'secure_access_ssh_user')
478
516
  self.secure_access_ssh_user = attributes[:'secure_access_ssh_user']
479
517
  end
@@ -484,6 +522,28 @@ module Akeyless
484
522
  self.secure_access_target_type = 'false'
485
523
  end
486
524
 
525
+ if attributes.key?(:'secure_access_url')
526
+ self.secure_access_url = attributes[:'secure_access_url']
527
+ end
528
+
529
+ if attributes.key?(:'secure_access_web')
530
+ self.secure_access_web = attributes[:'secure_access_web']
531
+ else
532
+ self.secure_access_web = true
533
+ end
534
+
535
+ if attributes.key?(:'secure_access_web_browsing')
536
+ self.secure_access_web_browsing = attributes[:'secure_access_web_browsing']
537
+ else
538
+ self.secure_access_web_browsing = false
539
+ end
540
+
541
+ if attributes.key?(:'secure_access_web_proxy')
542
+ self.secure_access_web_proxy = attributes[:'secure_access_web_proxy']
543
+ else
544
+ self.secure_access_web_proxy = false
545
+ end
546
+
487
547
  if attributes.key?(:'skip_dry_run')
488
548
  self.skip_dry_run = attributes[:'skip_dry_run']
489
549
  end
@@ -562,6 +622,7 @@ module Akeyless
562
622
  json == o.json &&
563
623
  keep_prev_version == o.keep_prev_version &&
564
624
  key == o.key &&
625
+ key_algorithm == o.key_algorithm &&
565
626
  key_data_base64 == o.key_data_base64 &&
566
627
  lock_during_sra_session == o.lock_during_sra_session &&
567
628
  max_versions == o.max_versions &&
@@ -588,8 +649,13 @@ module Akeyless
588
649
  secure_access_host == o.secure_access_host &&
589
650
  secure_access_rdp_domain == o.secure_access_rdp_domain &&
590
651
  secure_access_rdp_user == o.secure_access_rdp_user &&
652
+ secure_access_ssh_creds == o.secure_access_ssh_creds &&
591
653
  secure_access_ssh_user == o.secure_access_ssh_user &&
592
654
  secure_access_target_type == o.secure_access_target_type &&
655
+ secure_access_url == o.secure_access_url &&
656
+ secure_access_web == o.secure_access_web &&
657
+ secure_access_web_browsing == o.secure_access_web_browsing &&
658
+ secure_access_web_proxy == o.secure_access_web_proxy &&
593
659
  skip_dry_run == o.skip_dry_run &&
594
660
  target == o.target &&
595
661
  token == o.token &&
@@ -609,7 +675,7 @@ module Akeyless
609
675
  # Calculates hash code according to all attributes.
610
676
  # @return [Integer] Hash code
611
677
  def hash
612
- [provider_type, add_tag, ara_enabled, authentication_credentials, auto_rotate, delete_protection, description, host_provider, input_rule, item_custom_fields, json, keep_prev_version, key, key_data_base64, lock_during_sra_session, max_versions, name, new_name, output_rule, password_length, public_key_remote_path, rm_tag, rotate_after_disconnect, rotated_password, rotated_username, rotation_event_in, rotation_hour, rotation_interval, rotator_custom_cmd, rotator_type, same_password, secure_access_allow_external_user, secure_access_bastion_issuer, secure_access_certificate_issuer, secure_access_enable, secure_access_enforce_hosts_restriction, secure_access_host, secure_access_rdp_domain, secure_access_rdp_user, secure_access_ssh_user, secure_access_target_type, skip_dry_run, target, token, uid_token, use_capital_letters, use_lower_letters, use_numbers, use_special_characters].hash
678
+ [provider_type, add_tag, ara_enabled, authentication_credentials, auto_rotate, delete_protection, description, host_provider, input_rule, item_custom_fields, json, keep_prev_version, key, key_algorithm, key_data_base64, lock_during_sra_session, max_versions, name, new_name, output_rule, password_length, public_key_remote_path, rm_tag, rotate_after_disconnect, rotated_password, rotated_username, rotation_event_in, rotation_hour, rotation_interval, rotator_custom_cmd, rotator_type, same_password, secure_access_allow_external_user, secure_access_bastion_issuer, secure_access_certificate_issuer, secure_access_enable, secure_access_enforce_hosts_restriction, secure_access_host, secure_access_rdp_domain, secure_access_rdp_user, secure_access_ssh_creds, secure_access_ssh_user, secure_access_target_type, secure_access_url, secure_access_web, secure_access_web_browsing, secure_access_web_proxy, skip_dry_run, target, token, uid_token, use_capital_letters, use_lower_letters, use_numbers, use_special_characters].hash
613
679
  end
614
680
 
615
681
  # Builds the object from hash
@@ -18,6 +18,9 @@ module Akeyless
18
18
  # Allowed redirect URIs after the authentication
19
19
  attr_accessor :allowed_redirect_uris
20
20
 
21
+ # AuthorizedGwClusterName binds the access method to a single GW cluster. When empty (or whitespace-only), GW-driven auth is disabled.
22
+ attr_accessor :authorized_gw_cluster_name
23
+
21
24
  # The attributes that login is restricted to.
22
25
  attr_accessor :bound_attributes
23
26
 
@@ -37,6 +40,7 @@ module Akeyless
37
40
  def self.attribute_map
38
41
  {
39
42
  :'allowed_redirect_uris' => :'allowed_redirect_URIs',
43
+ :'authorized_gw_cluster_name' => :'authorized_gw_cluster_name',
40
44
  :'bound_attributes' => :'bound_attributes',
41
45
  :'idp_metadata_url' => :'idp_metadata_url',
42
46
  :'idp_metadata_xml' => :'idp_metadata_xml',
@@ -54,6 +58,7 @@ module Akeyless
54
58
  def self.openapi_types
55
59
  {
56
60
  :'allowed_redirect_uris' => :'Array<String>',
61
+ :'authorized_gw_cluster_name' => :'String',
57
62
  :'bound_attributes' => :'Array<SAMLAttribute>',
58
63
  :'idp_metadata_url' => :'String',
59
64
  :'idp_metadata_xml' => :'String',
@@ -89,6 +94,10 @@ module Akeyless
89
94
  end
90
95
  end
91
96
 
97
+ if attributes.key?(:'authorized_gw_cluster_name')
98
+ self.authorized_gw_cluster_name = attributes[:'authorized_gw_cluster_name']
99
+ end
100
+
92
101
  if attributes.key?(:'bound_attributes')
93
102
  if (value = attributes[:'bound_attributes']).is_a?(Array)
94
103
  self.bound_attributes = value
@@ -133,6 +142,7 @@ module Akeyless
133
142
  return true if self.equal?(o)
134
143
  self.class == o.class &&
135
144
  allowed_redirect_uris == o.allowed_redirect_uris &&
145
+ authorized_gw_cluster_name == o.authorized_gw_cluster_name &&
136
146
  bound_attributes == o.bound_attributes &&
137
147
  idp_metadata_url == o.idp_metadata_url &&
138
148
  idp_metadata_xml == o.idp_metadata_xml &&
@@ -149,7 +159,7 @@ module Akeyless
149
159
  # Calculates hash code according to all attributes.
150
160
  # @return [Integer] Hash code
151
161
  def hash
152
- [allowed_redirect_uris, bound_attributes, idp_metadata_url, idp_metadata_xml, unique_identifier, use_dedicated_saml_urls].hash
162
+ [allowed_redirect_uris, authorized_gw_cluster_name, bound_attributes, idp_metadata_url, idp_metadata_xml, unique_identifier, use_dedicated_saml_urls].hash
153
163
  end
154
164
 
155
165
  # 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.32'
14
+ VERSION = '5.0.33'
15
15
  end
data/lib/akeyless.rb CHANGED
@@ -741,6 +741,7 @@ require 'akeyless/models/k8_s_auths_config_part'
741
741
  require 'akeyless/models/k8_s_migration'
742
742
  require 'akeyless/models/k8_s_payload'
743
743
  require 'akeyless/models/kmipca'
744
+ require 'akeyless/models/kmipca_list_entry'
744
745
  require 'akeyless/models/kmip_client'
745
746
  require 'akeyless/models/kmip_client_get_response'
746
747
  require 'akeyless/models/kmip_client_list_response'
@@ -763,6 +764,10 @@ require 'akeyless/models/kmip_delete_server'
763
764
  require 'akeyless/models/kmip_describe_client'
764
765
  require 'akeyless/models/kmip_describe_server'
765
766
  require 'akeyless/models/kmip_describe_server_output'
767
+ require 'akeyless/models/kmip_get_ca_bundle'
768
+ require 'akeyless/models/kmip_get_ca_bundle_output'
769
+ require 'akeyless/models/kmip_list_cas'
770
+ require 'akeyless/models/kmip_list_cas_output'
766
771
  require 'akeyless/models/kmip_list_clients'
767
772
  require 'akeyless/models/kmip_move_server'
768
773
  require 'akeyless/models/kmip_move_server_output'
@@ -770,11 +775,15 @@ require 'akeyless/models/kmip_renew_client_certificate'
770
775
  require 'akeyless/models/kmip_renew_client_certificate_output'
771
776
  require 'akeyless/models/kmip_renew_server_certificate'
772
777
  require 'akeyless/models/kmip_renew_server_certificate_output'
778
+ require 'akeyless/models/kmip_rotate_ca'
779
+ require 'akeyless/models/kmip_rotate_ca_output'
773
780
  require 'akeyless/models/kmip_server_setup'
774
781
  require 'akeyless/models/kmip_server_update'
775
782
  require 'akeyless/models/kmip_server_update_output'
776
783
  require 'akeyless/models/kmip_set_server_state'
777
784
  require 'akeyless/models/kmip_set_server_state_output'
785
+ require 'akeyless/models/kmip_sunset_ca'
786
+ require 'akeyless/models/kmip_sunset_ca_output'
778
787
  require 'akeyless/models/kube_config_value'
779
788
  require 'akeyless/models/kubeconfig_cluster'
780
789
  require 'akeyless/models/kubeconfig_context'
@@ -0,0 +1,36 @@
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::KmipGetCABundleOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::KmipGetCABundleOutput do
21
+ let(:instance) { Akeyless::KmipGetCABundleOutput.new }
22
+
23
+ describe 'test an instance of KmipGetCABundleOutput' do
24
+ it 'should create an instance of KmipGetCABundleOutput' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::KmipGetCABundleOutput)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "ca_bundle"' 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
+ end
@@ -0,0 +1,48 @@
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::KmipGetCABundle
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::KmipGetCABundle do
21
+ let(:instance) { Akeyless::KmipGetCABundle.new }
22
+
23
+ describe 'test an instance of KmipGetCABundle' do
24
+ it 'should create an instance of KmipGetCABundle' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::KmipGetCABundle)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "json"' 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 "token"' 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 "uid_token"' 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
+ end
@@ -0,0 +1,36 @@
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::KmipListCAsOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::KmipListCAsOutput do
21
+ let(:instance) { Akeyless::KmipListCAsOutput.new }
22
+
23
+ describe 'test an instance of KmipListCAsOutput' do
24
+ it 'should create an instance of KmipListCAsOutput' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::KmipListCAsOutput)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "cas"' 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
+ end
@@ -0,0 +1,48 @@
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::KmipListCAs
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::KmipListCAs do
21
+ let(:instance) { Akeyless::KmipListCAs.new }
22
+
23
+ describe 'test an instance of KmipListCAs' do
24
+ it 'should create an instance of KmipListCAs' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::KmipListCAs)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "json"' 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 "token"' 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 "uid_token"' 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
+ end
@@ -0,0 +1,48 @@
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::KmipRotateCAOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::KmipRotateCAOutput do
21
+ let(:instance) { Akeyless::KmipRotateCAOutput.new }
22
+
23
+ describe 'test an instance of KmipRotateCAOutput' do
24
+ it 'should create an instance of KmipRotateCAOutput' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::KmipRotateCAOutput)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "ca_bundle"' 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 "ca_cert"' 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 "ca_id"' 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
+ end
@@ -0,0 +1,54 @@
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::KmipRotateCA
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::KmipRotateCA do
21
+ let(:instance) { Akeyless::KmipRotateCA.new }
22
+
23
+ describe 'test an instance of KmipRotateCA' do
24
+ it 'should create an instance of KmipRotateCA' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::KmipRotateCA)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "certificate_ttl"' 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 "json"' 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 "token"' 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 "uid_token"' 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
+ end
@@ -0,0 +1,36 @@
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::KmipSunsetCAOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::KmipSunsetCAOutput do
21
+ let(:instance) { Akeyless::KmipSunsetCAOutput.new }
22
+
23
+ describe 'test an instance of KmipSunsetCAOutput' do
24
+ it 'should create an instance of KmipSunsetCAOutput' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::KmipSunsetCAOutput)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "ca_id"' 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
+ end