Sha256: 1eaeb929cb60530e57bb6065e322969a65c783cc43112588acd2e5c3efd1e57e

Contents?: true

Size: 826 Bytes

Versions: 20

Compression:

Stored size: 826 Bytes

Contents

module Fog
  module OpenStack
    class SharedFileSystem
      class Real
        def remove_security_service_from_share_network(security_service_id, share_network_id)
          action = {
            'remove_security_service' => {
              'security_service_id' => security_service_id
            }
          }
          share_network_action(share_network_id, action)
        end
      end

      class Mock
        def remove_security_service_from_share_network(_security_service_id, share_network_id)
          response = Excon::Response.new
          response.status = 200

          share_net = data[:share_network_updated] || data[:share_networks].first
          share_net['id'] = share_network_id
          response.body = {'share_network' => share_net}
          response
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
fog-openstack-1.1.3 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.1.2 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-fork-99 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.1.0 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.1.0.pre lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-apibank-1.0.102 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.11 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-apibank-1.0.101 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.10 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.9 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.8 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.7 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.6 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.5 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.4 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.3 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.2 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.1 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-1.0.0 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb
fog-openstack-0.3.1 lib/fog/openstack/shared_file_system/requests/remove_security_service_from_share_network.rb