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 52 53 54
|
module Fog
module AWS
class Kinesis
class Real
# Describes the specified stream.
#
# ==== Options
# * ExclusiveStartShardId<~String>: The shard ID of the shard to start with.
# * Limit<~Number>: The maximum number of shards to return.
# * StreamName<~String>: The name of the stream to describe.
# ==== Returns
# * response<~Excon::Response>:
#
# ==== See Also
# https://docs.aws.amazon.com/kinesis/latest/APIReference/API_DescribeStream.html
#
def describe_stream(options={})
body = {
"ExclusiveStartShardId" => options.delete("ExclusiveStartShardId"),
"Limit" => options.delete("Limit"),
"StreamName" => options.delete("StreamName")
}.reject{ |_,v| v.nil? }
response = request({
:idempotent => true,
'X-Amz-Target' => "Kinesis_#{@version}.DescribeStream",
:body => body,
}.merge(options))
response.body = Fog::JSON.decode(response.body) unless response.body.nil?
response.body
response
end
end
class Mock
def describe_stream(options={})
stream_name = options.delete("StreamName")
unless stream = data[:kinesis_streams].detect{ |s| s["StreamName"] == stream_name }
raise Fog::AWS::Kinesis::ResourceNotFound.new("Stream #{stream_name} under account #{@account_id} not found.")
end
# Strip Records key out of shards for response
shards = stream["Shards"].reject{ |k,_| k == "Records" }
response = Excon::Response.new
response.status = 200
response.body = { "StreamDescription" => stream.dup.merge("Shards" => shards) }
response
end
end
end
end
end
|