mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
58 lines
2.2 KiB
Ruby
58 lines
2.2 KiB
Ruby
module Fog
|
|
module AWS
|
|
class RDS
|
|
class Real
|
|
|
|
require 'fog/aws/parsers/rds/create_db_subnet_group'
|
|
|
|
# Creates a db subnet group
|
|
# http://docs.amazonwebservices.com/AmazonRDS/2012-01-15/APIReference/API_CreateDBSubnetGroup.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".
|
|
# * SubnetIds <~Array> - The EC2 Subnet IDs for the DB Subnet Group.
|
|
# * DBSubnetGroupDescription <~String> - The description for the DB Subnet Group
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
def create_db_subnet_group(name, subnet_ids, description = name)
|
|
params = { 'Action' => 'CreateDBSubnetGroup',
|
|
'DBSubnetGroupName' => name,
|
|
'DBSubnetGroupDescription' => description,
|
|
:parser => Fog::Parsers::AWS::RDS::CreateDBSubnetGroup.new }
|
|
params.merge!(Fog::AWS.indexed_param("SubnetIds.member", Array(subnet_ids)))
|
|
request(params)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def create_db_subnet_group(name, subnet_ids, description = name)
|
|
response = Excon::Response.new
|
|
if self.data[:subnet_groups] && self.data[:subnet_groups][name]
|
|
raise Fog::AWS::RDS::IdentifierTaken.new("DBSubnetGroupAlreadyExists => The subnet group '#{name}' already exists")
|
|
end
|
|
|
|
subnets = subnet_ids.map { |snid| Fog::Compute[:aws].subnets.get(snid) }
|
|
vpc_id = subnets.first.vpc_id
|
|
|
|
data = {
|
|
'DBSubnetGroupName' => name,
|
|
'DBSubnetGroupDescription' => description,
|
|
'SubnetGroupStatus' => 'Complete',
|
|
'Subnets' => subnet_ids,
|
|
'VpcId' => vpc_id
|
|
}
|
|
self.data[:subnet_groups][name] = data
|
|
response.body = {
|
|
"ResponseMetadata"=>{ "RequestId"=> Fog::AWS::Mock.request_id },
|
|
'CreateDBSubnetGroupResult' => { 'DBSubnetGroup' => data }
|
|
}
|
|
response
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|