Sha256: 6291716e44aa48ee7254d9dbf225c2794fa69b72c7ef4ac6db4a7ebf150a2de4

Contents?: true

Size: 690 Bytes

Versions: 4

Compression:

Stored size: 690 Bytes

Contents

module Fog
  module SharedFileSystem
    class HuaweiCloud
      class Real
        def delete_share(id)
          request(
            :expects => 202,
            :method  => 'DELETE',
            :path    => "shares/#{id}"
          )
        end
      end

      class Mock
        def delete_share(id)
          response = Excon::Response.new
          response.status = 202

          share                  = data[:share_updated] || data[:shares_detail].first.dup
          share['id']            = id
          share['links']['self'] = "https://127.0.0.1:8786/v2/shares/#{id}"

          response.body = {'share' => share}
          response
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/shared_file_system/huaweicloud/requests/delete_share.rb
fog-huaweicloud-0.0.2 lib/fog/shared_file_system/huaweicloud/requests/delete_share.rb
fog-huaweicloud-0.1.3 lib/fog/shared_file_system/huaweicloud/requests/delete_share.rb
fog-huaweicloud-0.1.2 lib/fog/shared_file_system/huaweicloud/requests/delete_share.rb