Sha256: 2fa7cbb9912a225d28885d48db9b35cbc9b7abab7c5cffa260a40796e11356b0

Contents?: true

Size: 617 Bytes

Versions: 25

Compression:

Stored size: 617 Bytes

Contents

module Fog
  module SharedFileSystem
    class OpenStack
      class Real
        def list_security_services_detail(options = {})
          request(
            :expects => 200,
            :method  => 'GET',
            :path    => 'security-services/detail',
            :query   => options
          )
        end
      end

      class Mock
        def list_security_services_detail(_options = {})
          response = Excon::Response.new
          response.status = 200
          response.body = {'security_services' => data[:security_services_detail]}
          response
        end
      end
    end
  end
end

Version data entries

25 entries across 23 versions & 3 rubygems

Version Path
fog-openstack-0.1.27 lib/fog/shared_file_system/openstack/requests/list_security_services_detail.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-openstack-0.1.26/lib/fog/shared_file_system/openstack/requests/list_security_services_detail.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-openstack-0.1.26/lib/fog/shared_file_system/openstack/requests/list_security_services_detail.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-openstack-0.1.26/lib/fog/shared_file_system/openstack/requests/list_security_services_detail.rb
fog-openstack-0.1.26 lib/fog/shared_file_system/openstack/requests/list_security_services_detail.rb