mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
36 lines
947 B
Ruby
36 lines
947 B
Ruby
|
module Fog
|
||
|
module AWS
|
||
|
class SNS
|
||
|
class Real
|
||
|
require 'fog/aws/parsers/sns/list_subscriptions'
|
||
|
|
||
|
# List subscriptions
|
||
|
#
|
||
|
# ==== Parameters
|
||
|
# * options<~Hash>:
|
||
|
# * 'NextToken'<~String> - Token returned from previous request, used for pagination
|
||
|
#
|
||
|
# ==== See Also
|
||
|
# http://docs.amazonwebservices.com/sns/latest/api/API_ListSubscriptions.html
|
||
|
#
|
||
|
|
||
|
def list_subscriptions(options = {})
|
||
|
request({
|
||
|
'Action' => 'ListSubscriptions',
|
||
|
:parser => Fog::Parsers::AWS::SNS::ListSubscriptions.new
|
||
|
}.merge!(options))
|
||
|
end
|
||
|
end
|
||
|
|
||
|
class Mock
|
||
|
def list_subscriptions(options={})
|
||
|
response = Excon::Response.new
|
||
|
|
||
|
response.body = {'Subscriptions' => self.data[:subscriptions].values, 'RequestId' => Fog::AWS::Mock.request_id}
|
||
|
response
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|