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
|
module Fog
module AWS
class Compute
class Real
require 'fog/aws/parsers/compute/spot_datafeed_subscription'
# Describe spot datafeed subscription
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'requestId'<~String> - Id of request
# * 'spotDatafeedSubscription'<~Hash>:
# * 'bucket'<~String> - S3 bucket where data is stored
# * 'fault'<~Hash>:
# * 'code'<~String> - fault code
# * 'reason'<~String> - fault reason
# * 'ownerId'<~String> - AWS id of account owner
# * 'prefix'<~String> - prefix for datafeed items
# * 'state'<~String> - state of datafeed subscription
#
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSpotDatafeedSubscription.html]
def describe_spot_datafeed_subscription
request({
'Action' => 'DescribeSpotDatafeedSubscription',
:idempotent => true,
:parser => Fog::Parsers::AWS::Compute::SpotDatafeedSubscription.new
})
end
end
end
end
end
|