# File lib/fog/sakuracloud/requests/network/change_router_bandwidth.rb, line 7
        def change_router_bandwidth( id, bandwidthmbps )
          body = {
            "Internet" => {
              "BandWidthMbps" => bandwidthmbps
            }
          }

          request(
            :headers => {
              'Authorization' => "Basic #{@auth_encode}"
            },
            :expects  => [200],
            :method => 'PUT',
            :path => "#{Fog::SakuraCloud.build_endpoint(@api_zone)}/internet/#{id}/bandwidth",
            :body => Fog::JSON.encode(body)
          )
        end