From 80ce09fdd45459b6c94fbbc953fb3fa361197b0e Mon Sep 17 00:00:00 2001 From: Paul Thornthwaite <tokengeek@gmail.com> Date: Wed, 19 Feb 2014 09:25:03 +0000 Subject: [PATCH] [Brightbox] Remove SQL instance snapshot attr This didn't make it into the final API --- lib/fog/brightbox/models/compute/database_server.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/fog/brightbox/models/compute/database_server.rb b/lib/fog/brightbox/models/compute/database_server.rb index 66e348dfc..15e9e1aa1 100644 --- a/lib/fog/brightbox/models/compute/database_server.rb +++ b/lib/fog/brightbox/models/compute/database_server.rb @@ -25,7 +25,6 @@ module Fog attribute :allow_access attribute :flavor_id, "alias" => "database_server_type", :squash => "id" - attribute :snapshot_id attribute :zone_id, "alias" => "zone", :squash => "id" attribute :cloud_ips @@ -41,7 +40,6 @@ module Fog if persisted? data = update_database_server(options) else - options[:snapshot] = snapshot_id if snapshot_id options[:engine] = database_engine if database_engine options[:version] = database_version if database_version options[:database_type] = flavor_id if flavor_id