mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
30 lines
898 B
Ruby
30 lines
898 B
Ruby
module Fog
|
|
module Compute
|
|
class AWS
|
|
class Real
|
|
require 'fog/aws/parsers/compute/basic'
|
|
|
|
# Delete a placement group that you own
|
|
#
|
|
# ==== Parameters
|
|
# * group_name<~String> - Name of the placement group.
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * 'requestId'<~String> - Id of request
|
|
# * 'return'<~Boolean> - success?
|
|
#
|
|
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DeletePlacementGroup.html]
|
|
def delete_placement_group(name)
|
|
request(
|
|
'Action' => 'DeletePlacementGroup',
|
|
'GroupName' => name,
|
|
:idempotent => true,
|
|
:parser => Fog::Parsers::Compute::AWS::Basic.new
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|