Sha256: c554955560e8ccfa26e092a51dae3a9b05807b9c2f9afd9739b6fdcb9cd5f9a8

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 KB

Contents

module Fog
  module Compute
    class OneAndOne

      class Real

        ##
        # Returns a list of the servers attached to a shared storage
        # URL: [https://cloudpanel-api.1and1.com/documentation/1and1/v1/en/documentation.html#shared_storages__shared_storage_id__servers_get]
        ##
        def list_shared_storage_servers(shared_storage_id)
          
          params = {
            'method' => :get,
            'endpoint' => "/shared_storages/#{shared_storage_id}/servers"
          }

          request(params)

        end

      end # Real

      
      class Mock

        def list_shared_storage_servers(shared_storage_id)
          
          # Search for shared storage to return
          if shared_storage = self.data[:shared_storages].find {
            |hash| hash['id'] == shared_storage_id
          }
          else
            raise Fog::Errors::NotFound.new('The requested resource could
              not be found.')
          end

          # Return Response Object to User
          response = Excon::Response.new
          response.status = 202
          response.body = shared_storage['servers']
          response

        end

      end # Mock

    end # OneAndOne
  end # Compute
end # Fog

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fog-oneandone-1.2 lib/oneandone/requests/compute/list_shared_storage_servers.rb
fog-oneandone-1.0 lib/oneandone/requests/compute/list_shared_storage_servers.rb