lib/fog/aliyun/requests/compute/detach_disk.rb in fog-aliyun-0.3.0 vs lib/fog/aliyun/requests/compute/detach_disk.rb in fog-aliyun-0.3.1
- old
+ new
@@ -1,25 +1,27 @@
+# frozen_string_literal: true
+
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'
+ action = 'DetachDisk'
sigNonce = randonStr
- time = Time.new.utc
+ time = Time.new.utc
parameters = defalutParameters(action, sigNonce, time)
- pathUrl = defaultAliyunUri(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, '/[^!*\'()\;?:@#&%=+$,{}[]<>`" ')