Sha256: a63d50d8a2c526537e0b68b242fc1726a180ea9e3dcc9bd5c4708ee76505dd9a

Contents?: true

Size: 1.18 KB

Versions: 5

Compression:

Stored size: 1.18 KB

Contents

module Fog
  module Compute
    class Aliyun
      class Real
        # {Aliyun API Reference}[https://docs.aliyun.com/?spm=5176.100054.3.1.DGkmH7#/pub/ecs/open-api/disk&detachdisk]
        def detach_disk(instanceId, diskId, _options = {})
          action   = 'DetachDisk'
          sigNonce = randonStr
          time     = Time.new.utc

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

          parameters['InstanceId'] = instanceId
          pathUrl += '&InstanceId='
          pathUrl += instanceId

          parameters['DiskId'] = diskId
          pathUrl += '&DiskId='
          pathUrl += diskId
          
          device = _options[:device]
          if device
            parameters['Device'] = device
            pathUrl += '&Device='
            pathUrl += URI.encode(device, '/[^!*\'()\;?:@#&%=+$,{}[]<>`" ')
          end
          signature = sign(@aliyun_accesskey_secret, parameters)
          pathUrl += '&Signature='
          pathUrl += signature

          request(
            expects: [200, 203],
            method: 'GET',
            path: pathUrl
          )
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
fog-aliyun-0.3.0 lib/fog/aliyun/requests/compute/detach_disk.rb
fog-aliyun-0.2.2 lib/fog/aliyun/requests/compute/detach_disk.rb
fog-xiaozhu-0.2.2 lib/fog/aliyun/requests/compute/detach_disk.rb
fog-xiaozhu-0.2.1 lib/fog/aliyun/requests/compute/detach_disk.rb
fog-aliyun-0.2.1 lib/fog/aliyun/requests/compute/detach_disk.rb