mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
d48d376e9c
* take the liberty of correcting Aws naming
38 lines
1.3 KiB
Ruby
38 lines
1.3 KiB
Ruby
module Fog
|
|
module AWS
|
|
class RDS
|
|
class Real
|
|
require 'fog/aws/parsers/rds/delete_db_subnet_group'
|
|
|
|
# Deletes a db subnet group
|
|
# http://docs.aws.amazon.com/AmazonRDS/2013-09-09/APIReference/API_DeleteDBSubnetGroup.html
|
|
# ==== Parameters
|
|
# * DBSubnetGroupName <~String> - The name for the DB Subnet Group. This value is stored as a lowercase string. Must contain no more than 255 alphanumeric characters or hyphens. Must not be "Default".
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
def delete_db_subnet_group(name)
|
|
params = { 'Action' => 'DeleteDBSubnetGroup',
|
|
'DBSubnetGroupName' => name,
|
|
:parser => Fog::Parsers::AWS::RDS::DeleteDBSubnetGroup.new }
|
|
request(params)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def delete_db_subnet_group(name)
|
|
response = Excon::Response.new
|
|
unless self.data[:subnet_groups] && self.data[:subnet_groups][name]
|
|
raise Fog::AWS::RDS::NotFound.new("DBSubnetGroupNotFound => The subnet group '#{name}' doesn't exists")
|
|
end
|
|
|
|
response.body = {
|
|
'ResponseMetadata'=>{ 'RequestId'=> Fog::AWS::Mock.request_id },
|
|
'return' => true,
|
|
}
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|