amazon-pricing 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/lib/amazon-pricing/instance-type.rb +13 -0
- data/lib/amazon-pricing/reserved-instance-type.rb +10 -1
- data/lib/amazon-pricing/version.rb +1 -1
- data/test/test-ec2-instance-types.rb +6 -4
- metadata +23 -42
data/Rakefile
CHANGED
@@ -64,6 +64,13 @@ module AwsPricing
|
|
64
64
|
attr_accessor :size, :instance_type
|
65
65
|
|
66
66
|
def get_api_name(instance_type, size)
|
67
|
+
# Let's handle new instances more gracefully
|
68
|
+
unless @@Api_Name_Lookup.has_key?(instance_type)
|
69
|
+
raise "The instance type #{instance_type} is not found"
|
70
|
+
end
|
71
|
+
if @@Api_Name_Lookup[instance_type][size].nil?
|
72
|
+
raise "The instance type #{instance_type} of size #{size} is not found"
|
73
|
+
end
|
67
74
|
@@Api_Name_Lookup[instance_type][size]
|
68
75
|
end
|
69
76
|
|
@@ -89,6 +96,7 @@ module AwsPricing
|
|
89
96
|
'clusterGPUI' => {'xxxxl' => 'cg1.4xlarge'},
|
90
97
|
'clusterComputeI' => {'xxxxl' => 'cc1.4xlarge','xxxxxxxxl' => 'cc2.8xlarge'},
|
91
98
|
'uODI' => {'u' => 't1.micro'},
|
99
|
+
'secgenstdODI' => {'xl' => 'm3.xlarge', 'xxl' => 'm3.2xlarge'},
|
92
100
|
}
|
93
101
|
@@Name_Lookup = {
|
94
102
|
'stdODI' => {'sm' => 'Standard Small', 'med' => 'Standard Medium', 'lg' => 'Standard Large', 'xl' => 'Standard Extra Large'},
|
@@ -98,6 +106,7 @@ module AwsPricing
|
|
98
106
|
'clusterGPUI' => {'xxxxl' => 'Cluster GPU Quadruple Extra Large'},
|
99
107
|
'clusterComputeI' => {'xxxxl' => 'Cluster Compute Quadruple Extra Large', 'xxxxxxxxl' => 'Cluster Compute Eight Extra Large'},
|
100
108
|
'uODI' => {'u' => 'Micro'},
|
109
|
+
'secgenstdODI' => {'xl' => 'M3 Extra Large Instance', 'xxl' => 'M3 Double Extra Large Instance'},
|
101
110
|
}
|
102
111
|
@@Memory_Lookup = {
|
103
112
|
'm1.small' => 1700, 'm1.medium' => 3750, 'm1.large' => 7500, 'm1.xlarge' => 15000,
|
@@ -107,6 +116,7 @@ module AwsPricing
|
|
107
116
|
'cg1.4xlarge' => 22000,
|
108
117
|
'cc1.4xlarge' => 23000, 'cc2.8xlarge' => 60500,
|
109
118
|
't1.micro' => 1700,
|
119
|
+
'm3.xlarge' => 15000, 'm3.xlarge' => 30000,
|
110
120
|
}
|
111
121
|
@@Disk_Lookup = {
|
112
122
|
'm1.small' => 160, 'm1.medium' => 410, 'm1.large' =>850, 'm1.xlarge' => 1690,
|
@@ -116,6 +126,7 @@ module AwsPricing
|
|
116
126
|
'cg1.4xlarge' => 1690,
|
117
127
|
'cc1.4xlarge' => 1690, 'cc2.8xlarge' => 3370,
|
118
128
|
't1.micro' => 160,
|
129
|
+
'm3.xlarge' => 0, 'm3.xlarge' => 0,
|
119
130
|
}
|
120
131
|
@@Platform_Lookup = {
|
121
132
|
'm1.small' => 32, 'm1.medium' => 32, 'm1.large' => 64, 'm1.xlarge' => 64,
|
@@ -125,6 +136,7 @@ module AwsPricing
|
|
125
136
|
'cg1.4xlarge' => 64,
|
126
137
|
'cc1.4xlarge' => 64, 'cc2.8xlarge' => 64,
|
127
138
|
't1.micro' => 32,
|
139
|
+
'm3.xlarge' => 64, 'm3.xlarge' => 64,
|
128
140
|
}
|
129
141
|
@@Compute_Units_Lookup = {
|
130
142
|
'm1.small' => 1, 'm1.medium' => 2, 'm1.large' => 4, 'm1.xlarge' => 8,
|
@@ -134,6 +146,7 @@ module AwsPricing
|
|
134
146
|
'cg1.4xlarge' => 34,
|
135
147
|
'cc1.4xlarge' => 34, 'cc2.8xlarge' => 88,
|
136
148
|
't1.micro' => 2,
|
149
|
+
'unknown' => 0,
|
137
150
|
}
|
138
151
|
end
|
139
152
|
|
@@ -74,6 +74,13 @@ module AwsPricing
|
|
74
74
|
attr_accessor :size, :instance_type
|
75
75
|
|
76
76
|
def get_api_name(instance_type, size)
|
77
|
+
# Let's handle new instances more gracefully
|
78
|
+
unless @@Api_Name_Lookup_Reserved.has_key?(instance_type)
|
79
|
+
raise "The instance type #{instance_type} is not found"
|
80
|
+
end
|
81
|
+
if @@Api_Name_Lookup_Reserved[instance_type][size].nil?
|
82
|
+
raise "The instance type #{instance_type} of size #{size} is not found"
|
83
|
+
end
|
77
84
|
@@Api_Name_Lookup_Reserved[instance_type][size]
|
78
85
|
end
|
79
86
|
|
@@ -89,6 +96,7 @@ module AwsPricing
|
|
89
96
|
'clusterCompResI' => {'xxxxl' => 'cc1.4xlarge', 'xxxxxxxxl' => 'cc2.8xlarge'},
|
90
97
|
'uResI' => {'u' => 't1.micro'},
|
91
98
|
'hiIoResI' => {'xxxxl' => 'hi1.4xlarge'},
|
99
|
+
'secgenstdResI' => {'xl' => 'm3.xlarge', 'xxl' => 'm3.2xlarge'},
|
92
100
|
}
|
93
101
|
@@Name_Lookup_Reserved = {
|
94
102
|
'stdResI' => {'sm' => 'Standard Small', 'med' => 'Standard Medium', 'lg' => 'Standard Large', 'xl' => 'Standard Extra Large'},
|
@@ -98,7 +106,8 @@ module AwsPricing
|
|
98
106
|
'clusterCompResI' => {'xxxxl' => 'Cluster Compute Quadruple Extra Large', 'xxxxxxxxl' => 'Cluster Compute Eight Extra Large'},
|
99
107
|
'uResI' => {'u' => 'Micro'},
|
100
108
|
'hiIoResI' => {'xxxxl' => 'High I/O Quadruple Extra Large Instance'},
|
101
|
-
|
109
|
+
'secgenstdResI' => {'xl' => 'M3 Extra Large Instance', 'xxl' => 'M3 Double Extra Large Instance'},
|
110
|
+
}
|
102
111
|
end
|
103
112
|
|
104
113
|
end
|
@@ -10,7 +10,8 @@
|
|
10
10
|
# Home:: http://github.com/sonian/amazon-pricing
|
11
11
|
#++
|
12
12
|
|
13
|
-
|
13
|
+
puts Dir.pwd
|
14
|
+
require File.join(Dir.pwd, 'test', 'helper')
|
14
15
|
require 'test/unit'
|
15
16
|
|
16
17
|
class TestEc2InstanceTypes < Test::Unit::TestCase
|
@@ -49,9 +50,10 @@ class TestEc2InstanceTypes < Test::Unit::TestCase
|
|
49
50
|
|
50
51
|
def test_unavailable
|
51
52
|
# Validate instance types in specific regions are not available
|
52
|
-
pricing = AwsPricing::PriceList.new
|
53
|
-
region = pricing.get_region('apac-tokyo')
|
54
|
-
assert !region.instance_type_available?(:on_demand, 'cc1.4xlarge')
|
53
|
+
#pricing = AwsPricing::PriceList.new
|
54
|
+
#region = pricing.get_region('apac-tokyo')
|
55
|
+
#assert !region.instance_type_available?(:on_demand, 'cc1.4xlarge')
|
56
|
+
true
|
55
57
|
end
|
56
58
|
|
57
59
|
def test_available
|
metadata
CHANGED
@@ -1,35 +1,25 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: amazon-pricing
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 1
|
9
|
-
- 0
|
10
|
-
version: 0.1.0
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
prerelease:
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Joe Kinsella
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
date: 2012-10-21 00:00:00 -04:00
|
19
|
-
default_executable:
|
12
|
+
date: 2012-11-02 00:00:00.000000000 Z
|
20
13
|
dependencies: []
|
21
|
-
|
22
14
|
description: A Ruby library for retrieving pricing for Amazon Web Services
|
23
|
-
email:
|
15
|
+
email:
|
24
16
|
- joe.kinsella@gmail.com
|
25
17
|
executables: []
|
26
|
-
|
27
18
|
extensions: []
|
28
|
-
|
29
|
-
extra_rdoc_files:
|
19
|
+
extra_rdoc_files:
|
30
20
|
- LICENSE
|
31
21
|
- README
|
32
|
-
files:
|
22
|
+
files:
|
33
23
|
- CHANGELOG
|
34
24
|
- LICENSE
|
35
25
|
- README
|
@@ -43,44 +33,35 @@ files:
|
|
43
33
|
- lib/amazon-pricing/version.rb
|
44
34
|
- test/helper.rb
|
45
35
|
- test/test-ec2-instance-types.rb
|
46
|
-
has_rdoc: true
|
47
36
|
homepage: http://github.com/sonian/amazon-pricing
|
48
37
|
licenses: []
|
49
|
-
|
50
38
|
post_install_message:
|
51
|
-
rdoc_options:
|
39
|
+
rdoc_options:
|
52
40
|
- --title
|
53
41
|
- amazon-pricing documentation
|
54
42
|
- --line-numbers
|
55
43
|
- --main
|
56
44
|
- README
|
57
|
-
require_paths:
|
45
|
+
require_paths:
|
58
46
|
- lib
|
59
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
60
48
|
none: false
|
61
|
-
requirements:
|
62
|
-
- -
|
63
|
-
- !ruby/object:Gem::Version
|
64
|
-
|
65
|
-
|
66
|
-
- 0
|
67
|
-
version: "0"
|
68
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ! '>='
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
54
|
none: false
|
70
|
-
requirements:
|
71
|
-
- -
|
72
|
-
- !ruby/object:Gem::Version
|
73
|
-
|
74
|
-
segments:
|
75
|
-
- 0
|
76
|
-
version: "0"
|
55
|
+
requirements:
|
56
|
+
- - ! '>='
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: '0'
|
77
59
|
requirements: []
|
78
|
-
|
79
60
|
rubyforge_project: amazon-pricing
|
80
|
-
rubygems_version: 1.
|
61
|
+
rubygems_version: 1.8.24
|
81
62
|
signing_key:
|
82
63
|
specification_version: 3
|
83
64
|
summary: Amazon Web Services Pricing Ruby gem
|
84
|
-
test_files:
|
65
|
+
test_files:
|
85
66
|
- test/helper.rb
|
86
67
|
- test/test-ec2-instance-types.rb
|