From 604c29d79c8cce4890e488f2e6962b7aa52f09b2 Mon Sep 17 00:00:00 2001 From: aabes Date: Fri, 18 Oct 2013 17:51:38 -0400 Subject: [PATCH] add end date for aws instance reservations --- lib/fog/aws/parsers/compute/describe_reserved_instances.rb | 2 +- tests/aws/requests/compute/instance_tests.rb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/fog/aws/parsers/compute/describe_reserved_instances.rb b/lib/fog/aws/parsers/compute/describe_reserved_instances.rb index 4a8d8fbe3..f0270f795 100644 --- a/lib/fog/aws/parsers/compute/describe_reserved_instances.rb +++ b/lib/fog/aws/parsers/compute/describe_reserved_instances.rb @@ -23,7 +23,7 @@ module Fog @reserved_instance = {} when 'requestId' @response[name] = value - when 'start' + when 'start','end' @reserved_instance[name] = Time.parse(value) end end diff --git a/tests/aws/requests/compute/instance_tests.rb b/tests/aws/requests/compute/instance_tests.rb index 75080f651..5bee14217 100644 --- a/tests/aws/requests/compute/instance_tests.rb +++ b/tests/aws/requests/compute/instance_tests.rb @@ -116,6 +116,7 @@ Shindo.tests('Fog::Compute[:aws] | instance requests', ['aws']) do 'instanceType' => String, 'availabilityZone' => String, 'start' => Time, + 'end' => Time, 'duration' => Integer, 'fixedPrice' => Float, 'usagePrice' => Float,