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/describe_placement_groups'
|
|
|
|
|
|
|
|
# Describe all or specified placement groups
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * filters<~Hash> - List of filters to limit results with
|
|
|
|
#
|
|
|
|
# === Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'requestId'<~String> - Id of request
|
|
|
|
# * 'placementGroupSet'<~Array>:
|
|
|
|
# * 'groupName'<~String> - Name of placement group
|
|
|
|
# * 'strategy'<~String> - Strategy of placement group
|
|
|
|
# * 'state'<~String> - State of placement group
|
|
|
|
#
|
2015-01-02 12:34:40 -05:00
|
|
|
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribePlacementGroups.html]
|
2014-12-30 17:25:09 -05:00
|
|
|
def describe_placement_groups(filters = {})
|
|
|
|
params = Fog::AWS.indexed_filters(filters)
|
|
|
|
request({
|
|
|
|
'Action' => 'DescribePlacementGroups',
|
|
|
|
:idempotent => true,
|
|
|
|
:parser => Fog::Parsers::Compute::AWS::DescribePlacementGroups.new
|
|
|
|
}.merge!(params))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|