akeyless 2.16.11 → 2.16.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -1
  3. data/docs/AccountGeneralSettings.md +18 -0
  4. data/docs/CreateSecret.md +11 -19
  5. data/docs/DSProducerDetails.md +2 -0
  6. data/docs/DataProtectionSection.md +18 -0
  7. data/docs/DeleteItem.md +2 -2
  8. data/docs/GatewayCreateK8SAuthConfig.md +1 -1
  9. data/docs/GatewayUpdateK8SAuthConfig.md +1 -1
  10. data/docs/GetAccountSettingsCommandOutput.md +2 -0
  11. data/docs/GetSecretValue.md +2 -2
  12. data/docs/ListItems.md +2 -2
  13. data/docs/LogForwardingConfigPart.md +2 -0
  14. data/docs/TargetTypeDetailsInput.md +2 -0
  15. data/docs/UpdateAccountSettings.md +2 -0
  16. data/docs/UpdateItem.md +2 -2
  17. data/docs/UpdateSecretVal.md +11 -9
  18. data/lib/akeyless/models/account_general_settings.rb +220 -0
  19. data/lib/akeyless/models/create_secret.rb +50 -90
  20. data/lib/akeyless/models/data_protection_section.rb +220 -0
  21. data/lib/akeyless/models/delete_item.rb +11 -11
  22. data/lib/akeyless/models/ds_producer_details.rb +10 -1
  23. data/lib/akeyless/models/gateway_create_k8_s_auth_config.rb +2 -0
  24. data/lib/akeyless/models/gateway_update_k8_s_auth_config.rb +2 -0
  25. data/lib/akeyless/models/get_account_settings_command_output.rb +10 -1
  26. data/lib/akeyless/models/get_secret_value.rb +7 -7
  27. data/lib/akeyless/models/list_items.rb +11 -11
  28. data/lib/akeyless/models/log_forwarding_config_part.rb +10 -1
  29. data/lib/akeyless/models/target_type_details_input.rb +10 -1
  30. data/lib/akeyless/models/update_account_settings.rb +11 -1
  31. data/lib/akeyless/models/update_item.rb +11 -11
  32. data/lib/akeyless/models/update_secret_val.rb +52 -42
  33. data/lib/akeyless/version.rb +1 -1
  34. data/lib/akeyless.rb +2 -0
  35. data/spec/models/account_general_settings_spec.rb +34 -0
  36. data/spec/models/data_protection_section_spec.rb +34 -0
  37. metadata +507 -499
@@ -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.1.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::DataProtectionSection
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::DataProtectionSection do
21
+ let(:instance) { Akeyless::DataProtectionSection.new }
22
+
23
+ describe 'test an instance of DataProtectionSection' do
24
+ it 'should create an instance of DataProtectionSection' do
25
+ expect(instance).to be_instance_of(Akeyless::DataProtectionSection)
26
+ end
27
+ end
28
+ describe 'test attribute "enable_classic_key_protection"' 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