2014-12-30 17:25:09 -05:00
|
|
|
module Fog
|
|
|
|
module Compute
|
2015-01-02 12:34:40 -05:00
|
|
|
class AWS
|
2014-12-30 17:25:09 -05:00
|
|
|
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
|
2015-01-02 12:34:40 -05:00
|
|
|
# * 'ownerId'<~String> - AWS id of account owner
|
2014-12-30 17:25:09 -05:00
|
|
|
# * 'prefix'<~String> - prefix for datafeed items
|
|
|
|
# * 'state'<~String> - state of datafeed subscription
|
|
|
|
#
|
2015-01-02 12:34:40 -05:00
|
|
|
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSpotDatafeedSubscription.html]
|
2014-12-30 17:25:09 -05:00
|
|
|
def describe_spot_datafeed_subscription
|
|
|
|
request({
|
|
|
|
'Action' => 'DescribeSpotDatafeedSubscription',
|
|
|
|
:idempotent => true,
|
|
|
|
:parser => Fog::Parsers::Compute::AWS::SpotDatafeedSubscription.new
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|