diff --git a/lib/fog/bin/aws.rb b/lib/fog/bin/aws.rb index ad81b3431..e84339da5 100644 --- a/lib/fog/bin/aws.rb +++ b/lib/fog/bin/aws.rb @@ -7,6 +7,8 @@ class AWS < Fog::Bin Fog::AWS::CDN when :cloud_formation Fog::AWS::CloudFormation + when :cloud_watch + Fog::AWS::CloudWatch when :compute Fog::AWS::Compute when :dns @@ -38,6 +40,8 @@ class AWS < Fog::Bin Fog::CDN.new(:provider => 'AWS') when :cloud_formation Fog::AWS::CloudFormation.new + when :cloud_watch + Fog::AWS::CloudWatch.new when :compute Fog::Compute.new(:provider => 'AWS') when :dns diff --git a/tests/aws/requests/cloud_watch/metric_tests.rb b/tests/aws/requests/cloud_watch/metric_tests.rb new file mode 100644 index 000000000..6378c326b --- /dev/null +++ b/tests/aws/requests/cloud_watch/metric_tests.rb @@ -0,0 +1,24 @@ +Shindo.tests('AWS::CloudWatch | metric requests', ['aws', 'cloudwatch']) do + + tests('success') do + @metrics_list_format = { + 'ListMetricsResult' => { + 'Metrics' => + [{ + 'Dimensions' => + [{ + 'Name' => String, + 'Value' => String + }], + "MetricName" => String, + "Namespace" => String + }], + }, + 'ResponseMetadata' => {"RequestId"=> String} + } + + tests("#list_metrics").formats(@metrics_list_format) do + AWS[:cloud_watch].list_metrics.body + end + end +end \ No newline at end of file