# File lib/fog/shared_file_system/openstack/requests/create_snapshot.rb, line 5
        def create_snapshot(share_id, options = {})
          data = {
            'share_id' => share_id
          }

          vanilla_options = [
            :name, :description, :display_name, :display_description, :force
          ]

          vanilla_options.select { |o| options[o] }.each do |key|
            data[key] = options[key]
          end

          request(
            :body    => Fog::JSON.encode('snapshot' => data),
            :expects => 202,
            :method  => 'POST',
            :path    => 'snapshots'
          )
        end