Sha256: 096ab7b9237f7d8540295f7b8b76855b8679569650543c9cad8beed1f8aaa803

Contents?: true

Size: 942 Bytes

Versions: 22

Compression:

Stored size: 942 Bytes

Contents

module Fog
  module OpenStack
    class SharedFileSystem
      class Real
        # For older versions v1.0-2.8 the export locations are responsed as an attribute of share (export_locations).
        # For newer API versions (>= 2.9) it is available in separate APIs.
        # This method returns the export location detail.
        def get_share_export_location(share_id,export_location_id)
          request(
            :expects => 200,
            :method  => 'GET',
            :path    => "shares/#{share_id}/export_locations/​{export_location_id}​"
          )
        end
      end

      class Mock
        def get_share_export_location(id)
          response = Excon::Response.new
          response.status = 200
          share_export_location = data[:export_locations].first
          share_export_location['id'] = id
          response.body = share_export_location
          response
        end
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 3 rubygems

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