Sha256: 8153ef0a2df22a06376eb1da54594baf175a685a502b3946acf8fabb3ea428ce

Contents?: true

Size: 800 Bytes

Versions: 1

Compression:

Stored size: 800 Bytes

Contents

# frozen_string_literal: true

module Fog
  module Compute
    class CloudAtCost
      class Real
        def rename_server(id, name)
          body = { sid: id.to_s, name: name.to_s }
          request(
            expects: [200],
            method: 'POST',
            path: 'api/v1/renameserver.php',
            body: body
          )
        end
      end

      class Mock
        def rename_server(_id, _name)
          response = Excon::Response.new
          response.status = 200
          response.body = {
            'server_id' => Fog::Mock.random_numbers(1).to_i,
            'api'        => 'v1',
            'status'     => 'ok',
            'result'     => 'successful',
            'time'       => 12_312_323
          }
          response
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-cloudatcost-0.4.0 lib/fog/cloudatcost/requests/rename_server.rb