cucloud 0.7.3 → 0.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fab450ec90ef357ac90e8c9ba62c46b02431043e
4
- data.tar.gz: 26be30069b2694d5c80333eeedadb836a00e2c08
3
+ metadata.gz: e0ec7bb76b35852525278900952ba8a595085bcf
4
+ data.tar.gz: 885960dcb92af67a402bfbcccc8ae32eb77f3a20
5
5
  SHA512:
6
- metadata.gz: 6eba5db27ae7096b13b6ccb594cd610b56b442989a29cc47f0f64cbb982a80364296facf4949fcb33a77c8a4a47f479d17edf7e355f3b4f76f008820f0953c97
7
- data.tar.gz: 70f4748edd83f96dbd8d0675a9e3e75e25ff1fcd09e09ba8246fb8160268a94af8fdb0ce314357f313b597de7e7c7aafe7f604eaf1e692df0c64a84bb64e7166
6
+ metadata.gz: 02e22a020ab6c0541e3b28c2063585284e24260f423eb0d620f1384d4c28f8e736418f256c14c39337278ce77773a1b07f5aa18fd642dac4e5717037124cb08d
7
+ data.tar.gz: dbc7c489fc8f3792c6a345ffb87c8297635f6fd9ba4a6d13fc5ab083e1baab3409366f62ba6ebed58d7f14ea31cb80d0d43c7b57d5f24b58e93fbd7591823ef5
@@ -56,14 +56,14 @@ module Cucloud
56
56
 
57
57
  # Modify the options group for a RDS instance
58
58
  # @param db_instance_identifier [String] RDS instance identifier
59
- # @param option_group_name [Sting] Name od the options group to apply
59
+ # @param option_group_name [Sting] Name of the options group to apply
60
60
  # @return [Hash] Hash represnting the return from AWS
61
61
  def modify_option_group(db_instance_identifier, option_group_name)
62
62
  modify_db_instance(db_instance_identifier: db_instance_identifier, option_group_name: option_group_name)
63
63
  end
64
64
 
65
65
  # Base function to modify DB, resets defualts for apply_immediately and copy_tags_to_snapshot
66
- # @param options [hash] Hash represnting the configuration for the RDS restore
66
+ # @param options [hash] Hash represnting the configuration for the RDS modify
67
67
  # @return [Hash] Hash represnting the return from AWS
68
68
  def modify_db_instance(options)
69
69
  options[:apply_immediately] = options[:apply_immediately].nil? ? true : options[:apply_immediately]
@@ -83,7 +83,7 @@ module Cucloud
83
83
  options[:db_instance_identifier] = db_instance_identifier
84
84
  options[:db_snapshot_identifier] = db_snapshot_identifier
85
85
  @rds.restore_db_instance_from_db_snapshot(options)
86
- @rds.wait_until(:db_instance_deleted, db_instance_identifier: db_instance_identifier)
86
+ @rds.wait_until(:db_instance_available, db_instance_identifier: db_instance_identifier)
87
87
  end
88
88
 
89
89
  # Delete a givne db instance
@@ -1,5 +1,5 @@
1
1
  module Cucloud
2
2
  # Disable mutable constant warning - freezing this oddly breaks bundler
3
3
  # rubocop:disable Style/MutableConstant
4
- VERSION = '0.7.3'
4
+ VERSION = '0.7.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.3
4
+ version: 0.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - sbower