amazon-pricing 0.1.27 → 0.1.28
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/lib/amazon-pricing/rds-instance-type.rb +6 -0
- data/lib/amazon-pricing/version.rb +1 -1
- metadata +3 -3
data/Gemfile.lock
CHANGED
@@ -53,6 +53,12 @@ module AwsPricing
|
|
53
53
|
db.set_price_per_hour(type_of_instance, nil, price)
|
54
54
|
else
|
55
55
|
json['valueColumns'].each do |val|
|
56
|
+
# As of 2014-04-02 we see entries w/o pricing, e.g. sqlserver_web heavy 1 year reservation = {"prices"=>{"USD"=>{}}, "name"=>"yrTerm1"}
|
57
|
+
if val['prices']['USD'].empty?
|
58
|
+
#puts "The following instance type does not have pricing: #{@region.name} : #{@api_name} : #{database_type} : #{type_of_instance} : #{val['name']} : #{is_multi_az} : #{is_byol}"
|
59
|
+
next
|
60
|
+
end
|
61
|
+
|
56
62
|
price = coerce_price(val['prices']['USD'])
|
57
63
|
|
58
64
|
case val["name"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: amazon-pricing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.28
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -64,7 +64,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
64
64
|
version: '0'
|
65
65
|
segments:
|
66
66
|
- 0
|
67
|
-
hash: -
|
67
|
+
hash: -179272630512161026
|
68
68
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
69
|
none: false
|
70
70
|
requirements:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
version: '0'
|
74
74
|
segments:
|
75
75
|
- 0
|
76
|
-
hash: -
|
76
|
+
hash: -179272630512161026
|
77
77
|
requirements: []
|
78
78
|
rubyforge_project: amazon-pricing
|
79
79
|
rubygems_version: 1.8.25
|