1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
# frozen_string_literal: true
module Fog
module Compute
class Aliyun
class Real
# Disassociate an avalable eip IP address to the given instance.
#
# ==== Parameters
# * server_id<~String> - id of the instance
# * allocationId<~String> - id of the EIP
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'RequestId'<~String> - Id of the request
#
# {Aliyun API Reference}[https://docs.aliyun.com/?spm=5176.100054.201.106.DGkmH7#/pub/ecs/open-api/network&associateeipaddresss]
def unassociate_eip_address(server_id, allocationId, options = {})
_action = 'UnassociateEipAddress'
_sigNonce = randonStr
_time = Time.new.utc
type = options['instance_type']
_parameters = defaultParameters(_action, _sigNonce, _time)
_pathURL = defaultAliyunUri(_action, _sigNonce, _time)
_parameters['InstanceId'] = server_id
_pathURL += '&InstanceId=' + server_id
_parameters['AllocationId'] = allocationId
_pathURL += '&AllocationId=' + allocationId
if type
_parameters['InstanceType'] = type
_pathURL += 'InstanceType=' + type
end
_signature = sign(@aliyun_accesskey_secret, _parameters)
_pathURL += '&Signature=' + _signature
request(
expects: [200, 204],
method: 'GET',
path: _pathURL
)
end
end
end
end
end
|