akeyless 5.0.8 → 5.0.10
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 +9 -1
 - data/docs/CreateESM.md +2 -0
 - data/docs/CreateUSC.md +2 -0
 - data/docs/DSProducerDetails.md +12 -0
 - data/docs/DynamicSecretCreateGcp.md +2 -0
 - data/docs/DynamicSecretCreateOpenAI.md +40 -0
 - data/docs/DynamicSecretUpdateGcp.md +2 -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/GatewayCreateMigration.md +1 -11
 - data/docs/GatewayCreateProducerGcp.md +2 -0
 - data/docs/GatewayUpdateMigration.md +0 -10
 - data/docs/GatewayUpdateProducerGcp.md +2 -0
 - data/docs/NotiForwarder.md +2 -0
 - data/docs/OpenAITargetDetails.md +3 -3
 - data/docs/SecretInfo.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 +252 -0
 - data/lib/akeyless/api/v2_api.rb +256 -0
 - data/lib/akeyless/models/create_esm.rb +11 -1
 - data/lib/akeyless/models/create_usc.rb +11 -1
 - data/lib/akeyless/models/ds_producer_details.rb +55 -1
 - data/lib/akeyless/models/dynamic_secret_create_gcp.rb +11 -1
 - data/lib/akeyless/models/dynamic_secret_create_open_ai.rb +339 -0
 - data/lib/akeyless/models/dynamic_secret_update_gcp.rb +11 -1
 - 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_migration.rb +2 -54
 - data/lib/akeyless/models/gateway_create_producer_gcp.rb +11 -1
 - data/lib/akeyless/models/gateway_update_migration.rb +1 -53
 - data/lib/akeyless/models/gateway_update_producer_gcp.rb +11 -1
 - data/lib/akeyless/models/noti_forwarder.rb +10 -1
 - data/lib/akeyless/models/open_ai_target_details.rb +13 -13
 - data/lib/akeyless/models/secret_info.rb +10 -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 +4 -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
 - metadata +17 -1
 
| 
         @@ -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
         
     | 
| 
         @@ -0,0 +1,120 @@ 
     | 
|
| 
      
 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::EventForwarderUpdateTeams
         
     | 
| 
      
 18 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 19 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 20 
     | 
    
         
            +
            describe Akeyless::EventForwarderUpdateTeams do
         
     | 
| 
      
 21 
     | 
    
         
            +
              let(:instance) { Akeyless::EventForwarderUpdateTeams.new }
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of EventForwarderUpdateTeams' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of EventForwarderUpdateTeams' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  # uncomment below to test the instance creation
         
     | 
| 
      
 26 
     | 
    
         
            +
                  #expect(instance).to be_instance_of(Akeyless::EventForwarderUpdateTeams)
         
     | 
| 
      
 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 "enable"' 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 "event_types"' 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 "keep_prev_version"' 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 "key"' 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 "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 "new_name"' 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 "targets_event_source_locations"' 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 "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 "uid_token"' 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 
     | 
    
         
            +
              describe 'test attribute "url"' do
         
     | 
| 
      
 115 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 116 
     | 
    
         
            +
                  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
         
     | 
| 
      
 117 
     | 
    
         
            +
                end
         
     | 
| 
      
 118 
     | 
    
         
            +
              end
         
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
      
 120 
     | 
    
         
            +
            end
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: akeyless
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 5.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 5.0.10
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - OpenAPI-Generator
         
     | 
| 
         @@ -363,6 +363,7 @@ files: 
     | 
|
| 
       363 
363 
     | 
    
         
             
            - docs/DynamicSecretCreateMongoDb.md
         
     | 
| 
       364 
364 
     | 
    
         
             
            - docs/DynamicSecretCreateMsSql.md
         
     | 
| 
       365 
365 
     | 
    
         
             
            - docs/DynamicSecretCreateMySql.md
         
     | 
| 
      
 366 
     | 
    
         
            +
            - docs/DynamicSecretCreateOpenAI.md
         
     | 
| 
       366 
367 
     | 
    
         
             
            - docs/DynamicSecretCreateOracleDb.md
         
     | 
| 
       367 
368 
     | 
    
         
             
            - docs/DynamicSecretCreateOutput.md
         
     | 
| 
       368 
369 
     | 
    
         
             
            - docs/DynamicSecretCreatePing.md
         
     | 
| 
         @@ -402,6 +403,7 @@ files: 
     | 
|
| 
       402 
403 
     | 
    
         
             
            - docs/DynamicSecretUpdateMongoDb.md
         
     | 
| 
       403 
404 
     | 
    
         
             
            - docs/DynamicSecretUpdateMsSql.md
         
     | 
| 
       404 
405 
     | 
    
         
             
            - docs/DynamicSecretUpdateMySql.md
         
     | 
| 
      
 406 
     | 
    
         
            +
            - docs/DynamicSecretUpdateOpenAI.md
         
     | 
| 
       405 
407 
     | 
    
         
             
            - docs/DynamicSecretUpdateOracleDb.md
         
     | 
| 
       406 
408 
     | 
    
         
             
            - docs/DynamicSecretUpdateOutput.md
         
     | 
| 
       407 
409 
     | 
    
         
             
            - docs/DynamicSecretUpdatePing.md
         
     | 
| 
         @@ -442,6 +444,7 @@ files: 
     | 
|
| 
       442 
444 
     | 
    
         
             
            - docs/EventForwarderCreateEmail.md
         
     | 
| 
       443 
445 
     | 
    
         
             
            - docs/EventForwarderCreateServiceNow.md
         
     | 
| 
       444 
446 
     | 
    
         
             
            - docs/EventForwarderCreateSlack.md
         
     | 
| 
      
 447 
     | 
    
         
            +
            - docs/EventForwarderCreateTeams.md
         
     | 
| 
       445 
448 
     | 
    
         
             
            - docs/EventForwarderCreateUpdateOutput.md
         
     | 
| 
       446 
449 
     | 
    
         
             
            - docs/EventForwarderCreateWebhook.md
         
     | 
| 
       447 
450 
     | 
    
         
             
            - docs/EventForwarderDelete.md
         
     | 
| 
         @@ -451,6 +454,7 @@ files: 
     | 
|
| 
       451 
454 
     | 
    
         
             
            - docs/EventForwarderUpdateEmail.md
         
     | 
| 
       452 
455 
     | 
    
         
             
            - docs/EventForwarderUpdateServiceNow.md
         
     | 
| 
       453 
456 
     | 
    
         
             
            - docs/EventForwarderUpdateSlack.md
         
     | 
| 
      
 457 
     | 
    
         
            +
            - docs/EventForwarderUpdateTeams.md
         
     | 
| 
       454 
458 
     | 
    
         
             
            - docs/EventForwarderUpdateWebhook.md
         
     | 
| 
       455 
459 
     | 
    
         
             
            - docs/ExportClassicKey.md
         
     | 
| 
       456 
460 
     | 
    
         
             
            - docs/ExportClassicKeyOutput.md
         
     | 
| 
         @@ -1501,6 +1505,7 @@ files: 
     | 
|
| 
       1501 
1505 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_create_mongo_db.rb
         
     | 
| 
       1502 
1506 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_create_ms_sql.rb
         
     | 
| 
       1503 
1507 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_create_my_sql.rb
         
     | 
| 
      
 1508 
     | 
    
         
            +
            - lib/akeyless/models/dynamic_secret_create_open_ai.rb
         
     | 
| 
       1504 
1509 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_create_oracle_db.rb
         
     | 
| 
       1505 
1510 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_create_output.rb
         
     | 
| 
       1506 
1511 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_create_ping.rb
         
     | 
| 
         @@ -1540,6 +1545,7 @@ files: 
     | 
|
| 
       1540 
1545 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_update_mongo_db.rb
         
     | 
| 
       1541 
1546 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_update_ms_sql.rb
         
     | 
| 
       1542 
1547 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_update_my_sql.rb
         
     | 
| 
      
 1548 
     | 
    
         
            +
            - lib/akeyless/models/dynamic_secret_update_open_ai.rb
         
     | 
| 
       1543 
1549 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_update_oracle_db.rb
         
     | 
| 
       1544 
1550 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_update_output.rb
         
     | 
| 
       1545 
1551 
     | 
    
         
             
            - lib/akeyless/models/dynamic_secret_update_ping.rb
         
     | 
| 
         @@ -1580,6 +1586,7 @@ files: 
     | 
|
| 
       1580 
1586 
     | 
    
         
             
            - lib/akeyless/models/event_forwarder_create_email.rb
         
     | 
| 
       1581 
1587 
     | 
    
         
             
            - lib/akeyless/models/event_forwarder_create_service_now.rb
         
     | 
| 
       1582 
1588 
     | 
    
         
             
            - lib/akeyless/models/event_forwarder_create_slack.rb
         
     | 
| 
      
 1589 
     | 
    
         
            +
            - lib/akeyless/models/event_forwarder_create_teams.rb
         
     | 
| 
       1583 
1590 
     | 
    
         
             
            - lib/akeyless/models/event_forwarder_create_update_output.rb
         
     | 
| 
       1584 
1591 
     | 
    
         
             
            - lib/akeyless/models/event_forwarder_create_webhook.rb
         
     | 
| 
       1585 
1592 
     | 
    
         
             
            - lib/akeyless/models/event_forwarder_delete.rb
         
     | 
| 
         @@ -1589,6 +1596,7 @@ files: 
     | 
|
| 
       1589 
1596 
     | 
    
         
             
            - lib/akeyless/models/event_forwarder_update_email.rb
         
     | 
| 
       1590 
1597 
     | 
    
         
             
            - lib/akeyless/models/event_forwarder_update_service_now.rb
         
     | 
| 
       1591 
1598 
     | 
    
         
             
            - lib/akeyless/models/event_forwarder_update_slack.rb
         
     | 
| 
      
 1599 
     | 
    
         
            +
            - lib/akeyless/models/event_forwarder_update_teams.rb
         
     | 
| 
       1592 
1600 
     | 
    
         
             
            - lib/akeyless/models/event_forwarder_update_webhook.rb
         
     | 
| 
       1593 
1601 
     | 
    
         
             
            - lib/akeyless/models/export_classic_key.rb
         
     | 
| 
       1594 
1602 
     | 
    
         
             
            - lib/akeyless/models/export_classic_key_output.rb
         
     | 
| 
         @@ -3125,6 +3133,7 @@ files: 
     | 
|
| 
       3125 
3133 
     | 
    
         
             
            - spec/models/dynamic_secret_create_mongo_db_spec.rb
         
     | 
| 
       3126 
3134 
     | 
    
         
             
            - spec/models/dynamic_secret_create_ms_sql_spec.rb
         
     | 
| 
       3127 
3135 
     | 
    
         
             
            - spec/models/dynamic_secret_create_my_sql_spec.rb
         
     | 
| 
      
 3136 
     | 
    
         
            +
            - spec/models/dynamic_secret_create_open_ai_spec.rb
         
     | 
| 
       3128 
3137 
     | 
    
         
             
            - spec/models/dynamic_secret_create_oracle_db_spec.rb
         
     | 
| 
       3129 
3138 
     | 
    
         
             
            - spec/models/dynamic_secret_create_output_spec.rb
         
     | 
| 
       3130 
3139 
     | 
    
         
             
            - spec/models/dynamic_secret_create_ping_spec.rb
         
     | 
| 
         @@ -3164,6 +3173,7 @@ files: 
     | 
|
| 
       3164 
3173 
     | 
    
         
             
            - spec/models/dynamic_secret_update_mongo_db_spec.rb
         
     | 
| 
       3165 
3174 
     | 
    
         
             
            - spec/models/dynamic_secret_update_ms_sql_spec.rb
         
     | 
| 
       3166 
3175 
     | 
    
         
             
            - spec/models/dynamic_secret_update_my_sql_spec.rb
         
     | 
| 
      
 3176 
     | 
    
         
            +
            - spec/models/dynamic_secret_update_open_ai_spec.rb
         
     | 
| 
       3167 
3177 
     | 
    
         
             
            - spec/models/dynamic_secret_update_oracle_db_spec.rb
         
     | 
| 
       3168 
3178 
     | 
    
         
             
            - spec/models/dynamic_secret_update_output_spec.rb
         
     | 
| 
       3169 
3179 
     | 
    
         
             
            - spec/models/dynamic_secret_update_ping_spec.rb
         
     | 
| 
         @@ -3204,6 +3214,7 @@ files: 
     | 
|
| 
       3204 
3214 
     | 
    
         
             
            - spec/models/event_forwarder_create_email_spec.rb
         
     | 
| 
       3205 
3215 
     | 
    
         
             
            - spec/models/event_forwarder_create_service_now_spec.rb
         
     | 
| 
       3206 
3216 
     | 
    
         
             
            - spec/models/event_forwarder_create_slack_spec.rb
         
     | 
| 
      
 3217 
     | 
    
         
            +
            - spec/models/event_forwarder_create_teams_spec.rb
         
     | 
| 
       3207 
3218 
     | 
    
         
             
            - spec/models/event_forwarder_create_update_output_spec.rb
         
     | 
| 
       3208 
3219 
     | 
    
         
             
            - spec/models/event_forwarder_create_webhook_spec.rb
         
     | 
| 
       3209 
3220 
     | 
    
         
             
            - spec/models/event_forwarder_delete_output_spec.rb
         
     | 
| 
         @@ -3213,6 +3224,7 @@ files: 
     | 
|
| 
       3213 
3224 
     | 
    
         
             
            - spec/models/event_forwarder_update_email_spec.rb
         
     | 
| 
       3214 
3225 
     | 
    
         
             
            - spec/models/event_forwarder_update_service_now_spec.rb
         
     | 
| 
       3215 
3226 
     | 
    
         
             
            - spec/models/event_forwarder_update_slack_spec.rb
         
     | 
| 
      
 3227 
     | 
    
         
            +
            - spec/models/event_forwarder_update_teams_spec.rb
         
     | 
| 
       3216 
3228 
     | 
    
         
             
            - spec/models/event_forwarder_update_webhook_spec.rb
         
     | 
| 
       3217 
3229 
     | 
    
         
             
            - spec/models/export_classic_key_output_spec.rb
         
     | 
| 
       3218 
3230 
     | 
    
         
             
            - spec/models/export_classic_key_spec.rb
         
     | 
| 
         @@ -4282,6 +4294,7 @@ test_files: 
     | 
|
| 
       4282 
4294 
     | 
    
         
             
            - spec/models/dynamic_secret_create_mongo_db_spec.rb
         
     | 
| 
       4283 
4295 
     | 
    
         
             
            - spec/models/dynamic_secret_create_ms_sql_spec.rb
         
     | 
| 
       4284 
4296 
     | 
    
         
             
            - spec/models/dynamic_secret_create_my_sql_spec.rb
         
     | 
| 
      
 4297 
     | 
    
         
            +
            - spec/models/dynamic_secret_create_open_ai_spec.rb
         
     | 
| 
       4285 
4298 
     | 
    
         
             
            - spec/models/dynamic_secret_create_oracle_db_spec.rb
         
     | 
| 
       4286 
4299 
     | 
    
         
             
            - spec/models/dynamic_secret_create_output_spec.rb
         
     | 
| 
       4287 
4300 
     | 
    
         
             
            - spec/models/dynamic_secret_create_ping_spec.rb
         
     | 
| 
         @@ -4321,6 +4334,7 @@ test_files: 
     | 
|
| 
       4321 
4334 
     | 
    
         
             
            - spec/models/dynamic_secret_update_mongo_db_spec.rb
         
     | 
| 
       4322 
4335 
     | 
    
         
             
            - spec/models/dynamic_secret_update_ms_sql_spec.rb
         
     | 
| 
       4323 
4336 
     | 
    
         
             
            - spec/models/dynamic_secret_update_my_sql_spec.rb
         
     | 
| 
      
 4337 
     | 
    
         
            +
            - spec/models/dynamic_secret_update_open_ai_spec.rb
         
     | 
| 
       4324 
4338 
     | 
    
         
             
            - spec/models/dynamic_secret_update_oracle_db_spec.rb
         
     | 
| 
       4325 
4339 
     | 
    
         
             
            - spec/models/dynamic_secret_update_output_spec.rb
         
     | 
| 
       4326 
4340 
     | 
    
         
             
            - spec/models/dynamic_secret_update_ping_spec.rb
         
     | 
| 
         @@ -4361,6 +4375,7 @@ test_files: 
     | 
|
| 
       4361 
4375 
     | 
    
         
             
            - spec/models/event_forwarder_create_email_spec.rb
         
     | 
| 
       4362 
4376 
     | 
    
         
             
            - spec/models/event_forwarder_create_service_now_spec.rb
         
     | 
| 
       4363 
4377 
     | 
    
         
             
            - spec/models/event_forwarder_create_slack_spec.rb
         
     | 
| 
      
 4378 
     | 
    
         
            +
            - spec/models/event_forwarder_create_teams_spec.rb
         
     | 
| 
       4364 
4379 
     | 
    
         
             
            - spec/models/event_forwarder_create_update_output_spec.rb
         
     | 
| 
       4365 
4380 
     | 
    
         
             
            - spec/models/event_forwarder_create_webhook_spec.rb
         
     | 
| 
       4366 
4381 
     | 
    
         
             
            - spec/models/event_forwarder_delete_output_spec.rb
         
     | 
| 
         @@ -4370,6 +4385,7 @@ test_files: 
     | 
|
| 
       4370 
4385 
     | 
    
         
             
            - spec/models/event_forwarder_update_email_spec.rb
         
     | 
| 
       4371 
4386 
     | 
    
         
             
            - spec/models/event_forwarder_update_service_now_spec.rb
         
     | 
| 
       4372 
4387 
     | 
    
         
             
            - spec/models/event_forwarder_update_slack_spec.rb
         
     | 
| 
      
 4388 
     | 
    
         
            +
            - spec/models/event_forwarder_update_teams_spec.rb
         
     | 
| 
       4373 
4389 
     | 
    
         
             
            - spec/models/event_forwarder_update_webhook_spec.rb
         
     | 
| 
       4374 
4390 
     | 
    
         
             
            - spec/models/export_classic_key_output_spec.rb
         
     | 
| 
       4375 
4391 
     | 
    
         
             
            - spec/models/export_classic_key_spec.rb
         
     |