-
-
Notifications
You must be signed in to change notification settings - Fork 353
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
restore db instance fom db snapshot #217
Conversation
ehowe
commented
Jan 19, 2016
- add mock
- add restore method on servers collection
- modify save method on server model
- raise error when multi_az and az are set
- cannot specify multi_az to be true and pick an az together
- take allocated_storage from snapshot on restore
- restore from snapshot endpoint does not take
- allocated_storage parameter
- save storage type on rds snapshot
* add mock * add restore method on servers collection * modify save method on server model * raise error when multi_az and az are set * cannot specify multi_az to be true and pick an az together * take allocated_storage from snapshot on restore * restore from snapshot endpoint does not take * allocated_storage parameter * save storage type on rds snapshot
Not sure whats up with the specs, every time I fix something, something else breaks. Is this a known issue? |
@@ -3,6 +3,18 @@ module DNS | |||
class AWS < Fog::Service | |||
extend Fog::AWS::CredentialFetcher::ServiceMethods | |||
|
|||
require 'fog/aws/requests/dns/change_resource_record_sets' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should be redundant to the request
calls that come a bit later (though a couple new ones should be added). By using request
the requires are deferred, however, until initialization time. So, I think we just want the request versions and not these explicit requires.
Looks good overall, added a couple more specific items of feedback above. Thanks! |
Thanks! |
restore db instance fom db snapshot