mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
29 lines
789 B
Ruby
29 lines
789 B
Ruby
|
module Fog
|
||
|
module Compute
|
||
|
class AWS
|
||
|
class Real
|
||
|
|
||
|
require 'fog/compute/parsers/aws/basic'
|
||
|
|
||
|
# Delete a spot datafeed subscription
|
||
|
#
|
||
|
# ==== Returns
|
||
|
# * response<~Excon::Response>:
|
||
|
# * body<~Hash>:
|
||
|
# * 'requestId'<~String> id of request
|
||
|
# * 'return'<~Boolean> - success?
|
||
|
#
|
||
|
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DeleteSpotDatafeedSubscription.html]
|
||
|
def delete_spot_datafeed_subscription
|
||
|
request(
|
||
|
'Action' => 'DeleteSpotDatafeedSubscription',
|
||
|
:idempotent => true,
|
||
|
:parser => Fog::Parsers::Compute::AWS::Basic.new
|
||
|
)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|