Sha256: 589234ad66df51ae065d3526dbedac34f4fd4ededf709d9dcfbaca88c878d203

Contents?: true

Size: 1.46 KB

Versions: 1

Compression:

Stored size: 1.46 KB

Contents

module Fog
  module Compute
    class Aliyun
      class Real
        def delete_vswitch(vswitch_id)
          # {Aliyun API Reference}[https://docs.aliyun.com/?spm=5176.100054.3.1.DGkmH7#/pub/ecs/open-api/vswitch&deletevswitch]
          action = 'DeleteVSwitch'
          sigNonce = randonStr()
          time = Time.new.utc

          parameters = defalutParameters(action, sigNonce, time)
          pathUrl    = defaultAliyunUri(action, sigNonce, time)

          if vswitch_id
            parameters["VSwitchId"] = vswitch_id
            pathUrl += '&VSwitchId='
            pathUrl += vswitch_id	
          else
            raise ArgumentError, "Missing required vswitch_id"
          end

          signature = sign(@aliyun_accesskey_secret, parameters)
          pathUrl += '&Signature='
          pathUrl += signature
          
          request(
            :expects  => [200, 203],
            :method   => 'GET',
            :path     => pathUrl
          )
        end
      end

      class Mock
        def delete_security_group(security_group_id)
          self.data[:security_groups].delete security_group_id.to_s

          response = Excon::Response.new
          response.status = 202
          response.headers = {
            "Content-Type" => "text/html; charset=UTF-8",
            "Content-Length" => "0",
            "Date" => Date.new
          }
          response.body = {}
          response
        end
      end # mock
    end # aliyun
  end # compute
end #fog

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-aliyun-0.1.0 lib/fog/aliyun/requests/compute/delete_vswitch.rb