fog-aws 3.5.2 → 3.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +16 -3
- data/LICENSE.md +1 -1
- data/README.md +39 -6
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/fog-aws.gemspec +2 -2
- data/lib/fog/aws.rb +4 -0
- data/lib/fog/aws/elasticache.rb +4 -2
- data/lib/fog/aws/elb.rb +1 -1
- data/lib/fog/aws/elbv2.rb +72 -0
- data/lib/fog/aws/models/compute/flavors.rb +1544 -122
- data/lib/fog/aws/models/compute/snapshot.rb +7 -6
- data/lib/fog/aws/models/compute/vpc.rb +7 -1
- data/lib/fog/aws/models/storage/directory.rb +0 -1
- data/lib/fog/aws/models/storage/file.rb +3 -0
- data/lib/fog/aws/parsers/compute/create_snapshot.rb +1 -1
- data/lib/fog/aws/parsers/compute/create_subnet.rb +33 -6
- data/lib/fog/aws/parsers/compute/describe_subnets.rb +33 -6
- data/lib/fog/aws/parsers/dns/create_hosted_zone.rb +1 -1
- data/lib/fog/aws/parsers/dns/get_hosted_zone.rb +3 -3
- data/lib/fog/aws/parsers/dns/list_hosted_zones.rb +3 -1
- data/lib/fog/aws/parsers/elbv2/create_load_balancer.rb +88 -0
- data/lib/fog/aws/parsers/elbv2/describe_listeners.rb +110 -0
- data/lib/fog/aws/parsers/elbv2/describe_load_balancers.rb +88 -0
- data/lib/fog/aws/parsers/elbv2/describe_tags.rb +53 -0
- data/lib/fog/aws/parsers/elbv2/empty.rb +10 -0
- data/lib/fog/aws/parsers/storage/get_object_tagging.rb +33 -0
- data/lib/fog/aws/parsers/sts/assume_role_with_web_identity.rb +1 -1
- data/lib/fog/aws/requests/compute/create_vpc.rb +2 -2
- data/lib/fog/aws/requests/elbv2/add_tags.rb +45 -0
- data/lib/fog/aws/requests/elbv2/create_load_balancer.rb +160 -0
- data/lib/fog/aws/requests/elbv2/describe_listeners.rb +38 -0
- data/lib/fog/aws/requests/elbv2/describe_load_balancers.rb +100 -0
- data/lib/fog/aws/requests/elbv2/describe_tags.rb +50 -0
- data/lib/fog/aws/requests/elbv2/remove_tags.rb +45 -0
- data/lib/fog/aws/requests/storage/get_object_tagging.rb +41 -0
- data/lib/fog/aws/requests/storage/put_object_tagging.rb +42 -0
- data/lib/fog/aws/requests/sts/assume_role_with_web_identity.rb +7 -6
- data/lib/fog/aws/storage.rb +2 -0
- data/lib/fog/aws/version.rb +1 -1
- data/tests/parsers/elbv2/create_load_balancer_tests.rb +48 -0
- data/tests/parsers/elbv2/describe_listeners_tests.rb +76 -0
- data/tests/parsers/elbv2/describe_load_balancers_tests.rb +54 -0
- data/tests/parsers/elbv2/describe_tags_tests.rb +35 -0
- data/tests/requests/compute/vpc_tests.rb +6 -0
- data/tests/requests/elbv2/helper.rb +66 -0
- data/tests/requests/elbv2/load_balancer_tests.rb +50 -0
- metadata +35 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00fc42b895d14ab00b5e1f16425418ca937cfc3baef380f8b62b195eed0f712c
|
4
|
+
data.tar.gz: 2659d7e60f0744a45d07bfdb7ae0799d019d1db32011e0226a65215c93dcedf3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0b5875cf43c3b3210ccd26330ad115a889e4802854200af17f57a4dc07a226141c3027cfe28f6d9310b451634a8a1d9cb7f817d47142e32b3af42266842a32a
|
7
|
+
data.tar.gz: 3d2ce1c9051d9806ac452adcf8992b85c8b3fe9e154834ca46136f3ab8defeab07a79ca45b76991f4d2001dc7e9f6bcf6f49d534a2eaf17e53573501565ceed1
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,21 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [
|
3
|
+
## [v3.5.2](https://github.com/fog/fog-aws/tree/v3.5.2) (2019-07-16)
|
4
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.1...v3.5.2)
|
4
5
|
|
5
|
-
|
6
|
+
**Closed issues:**
|
7
|
+
|
8
|
+
- Support for Hong Kong Region \(ap-east-1\)? [\#527](https://github.com/fog/fog-aws/issues/527)
|
9
|
+
- Make S3 Signature v4 Streaming Optional [\#523](https://github.com/fog/fog-aws/issues/523)
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Add ap-east-1 \(Hong Kong\) to Fog::AWS.regions [\#528](https://github.com/fog/fog-aws/pull/528) ([tisba](https://github.com/tisba))
|
14
|
+
- Update shared\_mock\_methods.rb [\#526](https://github.com/fog/fog-aws/pull/526) ([MiWieczo](https://github.com/MiWieczo))
|
15
|
+
- WIP: Make S3 Signature v4 streaming optional [\#525](https://github.com/fog/fog-aws/pull/525) ([stanhu](https://github.com/stanhu))
|
16
|
+
|
17
|
+
## [v3.5.1](https://github.com/fog/fog-aws/tree/v3.5.1) (2019-06-10)
|
18
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.0...v3.5.1)
|
6
19
|
|
7
20
|
**Merged pull requests:**
|
8
21
|
|
@@ -215,7 +228,7 @@
|
|
215
228
|
- Add a top-level require that matches the gem name [\#367](https://github.com/fog/fog-aws/pull/367) ([lanej](https://github.com/lanej))
|
216
229
|
- Fixed credential refresh when instance metadata host is inaccessible [\#366](https://github.com/fog/fog-aws/pull/366) ([ankane](https://github.com/ankane))
|
217
230
|
- Handle multipart upload of empty files [\#365](https://github.com/fog/fog-aws/pull/365) ([fcheung](https://github.com/fcheung))
|
218
|
-
- Add p2 instance types [\#362](https://github.com/fog/fog-aws/pull/362) ([
|
231
|
+
- Add p2 instance types [\#362](https://github.com/fog/fog-aws/pull/362) ([caged](https://github.com/caged))
|
219
232
|
- Exponential backoff [\#361](https://github.com/fog/fog-aws/pull/361) ([VVMichaelSawyer](https://github.com/VVMichaelSawyer))
|
220
233
|
- Skip call to instance metadata host if region is specified [\#360](https://github.com/fog/fog-aws/pull/360) ([ankane](https://github.com/ankane))
|
221
234
|
|
data/LICENSE.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2014-
|
3
|
+
Copyright (c) 2014-2019 [CONTRIBUTORS.md](https://github.com/fog/fog-aws/blob/master/CONTRIBUTORS.md)
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
6
|
this software and associated documentation files (the "Software"), to deal in
|
data/README.md
CHANGED
@@ -2,11 +2,9 @@
|
|
2
2
|
|
3
3
|
![Gem Version](https://badge.fury.io/rb/fog-aws.svg)
|
4
4
|
[![Build Status](https://travis-ci.org/fog/fog-aws.svg?branch=master)](https://travis-ci.org/fog/fog-aws)
|
5
|
-
[![Dependency Status](https://gemnasium.com/fog/fog-aws.svg)](https://gemnasium.com/fog/fog-aws)
|
6
5
|
[![Test Coverage](https://codeclimate.com/github/fog/fog-aws/badges/coverage.svg)](https://codeclimate.com/github/fog/fog-aws)
|
7
6
|
[![Code Climate](https://codeclimate.com/github/fog/fog-aws.svg)](https://codeclimate.com/github/fog/fog-aws)
|
8
7
|
|
9
|
-
|
10
8
|
## Installation
|
11
9
|
|
12
10
|
Add this line to your application's Gemfile:
|
@@ -39,7 +37,10 @@ default:
|
|
39
37
|
aws_secret_access_key: <YOUR_SECRET_ACCESS_KEY>
|
40
38
|
```
|
41
39
|
|
42
|
-
###
|
40
|
+
### EC2
|
41
|
+
|
42
|
+
#### Connecting to the EC2 Service:
|
43
|
+
|
43
44
|
```ruby
|
44
45
|
ec2 = Fog::Compute.new :provider => 'AWS', :region => 'us-west-2'
|
45
46
|
```
|
@@ -50,7 +51,7 @@ You can review all the requests available with this service using ```#requests``
|
|
50
51
|
ec2.requests # => [:allocate_address, :assign_private_ip_addresses, :associate_address, ...]
|
51
52
|
```
|
52
53
|
|
53
|
-
|
54
|
+
#### Launch an EC2 on-demand instance:
|
54
55
|
|
55
56
|
```ruby
|
56
57
|
response = ec2.run_instances(
|
@@ -67,19 +68,51 @@ instance.wait_for { ready? }
|
|
67
68
|
puts instance.public_ip_address # => "356.300.501.20"
|
68
69
|
```
|
69
70
|
|
70
|
-
|
71
|
+
#### Terminate an EC2 instance:
|
71
72
|
|
72
73
|
```ruby
|
73
74
|
instance = ec2.servers.get("i-02db5af4")
|
74
75
|
instance.destroy
|
75
76
|
```
|
76
77
|
|
77
|
-
Fog::AWS is more than EC2 since it supports many services provided by AWS. The best way to learn and to know about how many services are supported is to take a look at the source code. To review the tests directory and to play with the library in ```
|
78
|
+
`Fog::AWS` is more than EC2 since it supports many services provided by AWS. The best way to learn and to know about how many services are supported is to take a look at the source code. To review the tests directory and to play with the library in ```bin/console``` can be very helpful resources as well.
|
79
|
+
|
80
|
+
### S3
|
81
|
+
|
82
|
+
#### Connecting to the S3 Service:
|
83
|
+
|
84
|
+
```ruby
|
85
|
+
s3 = Fog::Storage.new(provider: 'AWS', region: 'eu-central-1')
|
86
|
+
```
|
87
|
+
|
88
|
+
#### Creating a file:
|
89
|
+
|
90
|
+
```ruby
|
91
|
+
directory = s3.directories.new(key: 'gaudi-portal-dev')
|
92
|
+
file = directory.files.create(key: 'user/1/Gemfile', body: File.open('Gemfile'), tags: 'Org-Id=1&Service-Name=My-Service')
|
93
|
+
```
|
94
|
+
|
95
|
+
#### Listing files:
|
96
|
+
|
97
|
+
```ruby
|
98
|
+
directory = s3.directories.get('gaudi-portal-dev', prefix: 'user/1/')
|
99
|
+
directory.files
|
100
|
+
```
|
101
|
+
|
102
|
+
#### Generating a URL for a file:
|
103
|
+
|
104
|
+
```ruby
|
105
|
+
directory.files.new(key: 'user/1/Gemfile').url(Time.now + 60)
|
106
|
+
```
|
78
107
|
|
79
108
|
## Documentation
|
80
109
|
|
81
110
|
See the [online documentation](http://www.rubydoc.info/github/fog/fog-aws) for a complete API reference.
|
82
111
|
|
112
|
+
## Development
|
113
|
+
|
114
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
115
|
+
|
83
116
|
## Contributing
|
84
117
|
|
85
118
|
1. Fork it ( https://github.com/fog/fog-aws/fork )
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "fog-aws"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/fog-aws.gemspec
CHANGED
@@ -23,8 +23,8 @@ Gem::Specification.new do |spec|
|
|
23
23
|
|
24
24
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
25
25
|
spec.add_development_dependency 'github_changelog_generator', '~> 1.14'
|
26
|
-
spec.add_development_dependency 'rake', '
|
27
|
-
spec.add_development_dependency 'rubyzip', '~> 1.
|
26
|
+
spec.add_development_dependency 'rake', '>= 12.3.3'
|
27
|
+
spec.add_development_dependency 'rubyzip', '~> 1.3.0'
|
28
28
|
spec.add_development_dependency 'shindo', '~> 0.3'
|
29
29
|
|
30
30
|
spec.add_dependency 'fog-core', '~> 2.1'
|
data/lib/fog/aws.rb
CHANGED
@@ -26,6 +26,7 @@ module Fog
|
|
26
26
|
autoload :ECS, File.expand_path('../aws/ecs', __FILE__)
|
27
27
|
autoload :EFS, File.expand_path('../aws/efs', __FILE__)
|
28
28
|
autoload :ELB, File.expand_path('../aws/elb', __FILE__)
|
29
|
+
autoload :ELBV2, File.expand_path('../aws/elbv2', __FILE__)
|
29
30
|
autoload :EMR, File.expand_path('../aws/emr', __FILE__)
|
30
31
|
autoload :ElasticBeanstalk, File.expand_path('../aws/beanstalk', __FILE__)
|
31
32
|
autoload :Elasticache, File.expand_path('../aws/elasticache', __FILE__)
|
@@ -58,6 +59,7 @@ module Fog
|
|
58
59
|
service(:ecs, 'ECS')
|
59
60
|
service(:efs, 'EFS')
|
60
61
|
service(:elb, 'ELB')
|
62
|
+
service(:elbv2, 'ELBV2')
|
61
63
|
service(:emr, 'EMR')
|
62
64
|
service(:federation, 'Federation')
|
63
65
|
service(:glacier, 'Glacier')
|
@@ -228,9 +230,11 @@ module Fog
|
|
228
230
|
'eu-central-1',
|
229
231
|
'eu-north-1',
|
230
232
|
'eu-west-1', 'eu-west-2', 'eu-west-3',
|
233
|
+
'me-south-1',
|
231
234
|
'us-east-1', 'us-east-2',
|
232
235
|
'us-west-1', 'us-west-2',
|
233
236
|
'sa-east-1',
|
237
|
+
'us-gov-east-1',
|
234
238
|
'us-gov-west-1'
|
235
239
|
]
|
236
240
|
end
|
data/lib/fog/aws/elasticache.rb
CHANGED
@@ -171,8 +171,10 @@ module Fog
|
|
171
171
|
@aws_credentials_expire_at = Time::now + 20
|
172
172
|
setup_credentials(options)
|
173
173
|
@region = options[:region] || 'us-east-1'
|
174
|
-
unless ['ap-
|
175
|
-
'
|
174
|
+
unless ['ap-south-1', 'ap-northeast-1', 'ap-northeast-2', 'ap-northeast-3', 'ap-southeast-1', 'ap-southeast-2',
|
175
|
+
'eu-west-1', 'eu-west-2', 'eu-west-3', 'eu-central-1',
|
176
|
+
'us-east-1', 'us-east-2', 'us-west-1', 'us-west-2', 'ca-central-1',
|
177
|
+
'sa-east-1', 'cn-north-1', 'cn-northwest-1', 'ap-east-1', 'us-gov-west-1'].include?(@region)
|
176
178
|
raise ArgumentError, "Unknown region: #{@region.inspect}"
|
177
179
|
end
|
178
180
|
end
|
data/lib/fog/aws/elb.rb
CHANGED
@@ -142,7 +142,7 @@ module Fog
|
|
142
142
|
@port = options[:port] || 443
|
143
143
|
@scheme = options[:scheme] || 'https'
|
144
144
|
@connection = Fog::XML::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", @persistent, @connection_options)
|
145
|
-
@version
|
145
|
+
@version ||= options[:version] || '2012-06-01'
|
146
146
|
|
147
147
|
setup_credentials(options)
|
148
148
|
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
module Fog
|
2
|
+
module AWS
|
3
|
+
class ELBV2 < ELB
|
4
|
+
requires :aws_access_key_id, :aws_secret_access_key
|
5
|
+
recognizes :region, :host, :path, :port, :scheme, :persistent, :use_iam_profile, :aws_session_token, :aws_credentials_expire_at, :version, :instrumentor, :instrumentor_name
|
6
|
+
|
7
|
+
request_path 'fog/aws/requests/elbv2'
|
8
|
+
request :add_tags
|
9
|
+
request :create_load_balancer
|
10
|
+
request :describe_tags
|
11
|
+
request :remove_tags
|
12
|
+
request :describe_load_balancers
|
13
|
+
request :describe_listeners
|
14
|
+
|
15
|
+
class Real < ELB::Real
|
16
|
+
def initialize(options={})
|
17
|
+
@version = '2015-12-01'
|
18
|
+
|
19
|
+
super(options)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
class Mock
|
24
|
+
def self.data
|
25
|
+
@data ||= Hash.new do |hash, region|
|
26
|
+
owner_id = Fog::AWS::Mock.owner_id
|
27
|
+
hash[region] = Hash.new do |region_hash, key|
|
28
|
+
region_hash[key] = {
|
29
|
+
:owner_id => owner_id,
|
30
|
+
:load_balancers_v2 => {}
|
31
|
+
}
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def self.dns_name(name, region)
|
37
|
+
"#{name}-#{Fog::Mock.random_hex(8)}.#{region}.elb.amazonaws.com"
|
38
|
+
end
|
39
|
+
|
40
|
+
def self.reset
|
41
|
+
@data = nil
|
42
|
+
end
|
43
|
+
|
44
|
+
attr_reader :region
|
45
|
+
|
46
|
+
def initialize(options={})
|
47
|
+
@use_iam_profile = options[:use_iam_profile]
|
48
|
+
|
49
|
+
@region = options[:region] || 'us-east-1'
|
50
|
+
setup_credentials(options)
|
51
|
+
|
52
|
+
Fog::AWS.validate_region!(@region)
|
53
|
+
end
|
54
|
+
|
55
|
+
def setup_credentials(options)
|
56
|
+
@aws_access_key_id = options[:aws_access_key_id]
|
57
|
+
@aws_secret_access_key = options[:aws_secret_access_key]
|
58
|
+
|
59
|
+
@signer = Fog::AWS::SignatureV4.new(@aws_access_key_id, @aws_secret_access_key,@region,'elasticloadbalancing')
|
60
|
+
end
|
61
|
+
|
62
|
+
def data
|
63
|
+
self.class.data[@region][@aws_access_key_id]
|
64
|
+
end
|
65
|
+
|
66
|
+
def reset_data
|
67
|
+
self.class.data[@region].delete(@aws_access_key_id)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -1,9 +1,71 @@
|
|
1
1
|
require 'fog/aws/models/compute/flavor'
|
2
2
|
|
3
|
+
# To compute RAM from AWS doc https://aws.amazon.com/fr/ec2/instance-types
|
4
|
+
# we can use this formula: RAM (in MB) = AWS_RAM (in GiB) * 1073.742 MB/GiB
|
3
5
|
module Fog
|
4
6
|
module AWS
|
5
7
|
class Compute
|
6
8
|
FLAVORS = [
|
9
|
+
{
|
10
|
+
:id => 'a1.medium',
|
11
|
+
:name => 'A1 Medium Instance',
|
12
|
+
:bits => 64,
|
13
|
+
:cores => 1,
|
14
|
+
:disk => 0,
|
15
|
+
:ram => 2147,
|
16
|
+
:ebs_optimized_available => false,
|
17
|
+
:instance_store_volumes => 0
|
18
|
+
},
|
19
|
+
{
|
20
|
+
:id => 'a1.large',
|
21
|
+
:name => 'A1 Large Instance',
|
22
|
+
:bits => 64,
|
23
|
+
:cores => 2,
|
24
|
+
:disk => 0,
|
25
|
+
:ram => 4295,
|
26
|
+
:ebs_optimized_available => false,
|
27
|
+
:instance_store_volumes => 0
|
28
|
+
},
|
29
|
+
{
|
30
|
+
:id => 'a1.xlarge',
|
31
|
+
:name => 'A1 Extra Large Instance',
|
32
|
+
:bits => 64,
|
33
|
+
:cores => 4,
|
34
|
+
:disk => 0,
|
35
|
+
:ram => 8590,
|
36
|
+
:ebs_optimized_available => false,
|
37
|
+
:instance_store_volumes => 0
|
38
|
+
},
|
39
|
+
{
|
40
|
+
:id => 'a1.2xlarge',
|
41
|
+
:name => 'A1 Double Extra Large Instance',
|
42
|
+
:bits => 64,
|
43
|
+
:cores => 8,
|
44
|
+
:disk => 0,
|
45
|
+
:ram => 17180,
|
46
|
+
:ebs_optimized_available => false,
|
47
|
+
:instance_store_volumes => 0
|
48
|
+
},
|
49
|
+
{
|
50
|
+
:id => 'a1.4xlarge',
|
51
|
+
:name => 'A1 Quadruple Extra Large Instance',
|
52
|
+
:bits => 64,
|
53
|
+
:cores => 16,
|
54
|
+
:disk => 0,
|
55
|
+
:ram => 34360,
|
56
|
+
:ebs_optimized_available => false,
|
57
|
+
:instance_store_volumes => 0
|
58
|
+
},
|
59
|
+
{
|
60
|
+
:id => 'a1.metal',
|
61
|
+
:name => 'A1 Metal',
|
62
|
+
:bits => 64,
|
63
|
+
:cores => 16,
|
64
|
+
:disk => 0,
|
65
|
+
:ram => 34360,
|
66
|
+
:ebs_optimized_available => false,
|
67
|
+
:instance_store_volumes => 0
|
68
|
+
},
|
7
69
|
{
|
8
70
|
:id => 't1.micro',
|
9
71
|
:name => 'Micro Instance',
|
@@ -36,7 +98,7 @@ module Fog
|
|
36
98
|
},
|
37
99
|
{
|
38
100
|
:id => 't2.small',
|
39
|
-
:name => '
|
101
|
+
:name => 'Small Instance',
|
40
102
|
:bits => 64,
|
41
103
|
:cores => 1,
|
42
104
|
:disk => 0,
|
@@ -46,7 +108,7 @@ module Fog
|
|
46
108
|
},
|
47
109
|
{
|
48
110
|
:id => 't2.medium',
|
49
|
-
:name => '
|
111
|
+
:name => 'Medium Instance',
|
50
112
|
:bits => 64,
|
51
113
|
:cores => 2,
|
52
114
|
:disk => 0,
|
@@ -56,7 +118,7 @@ module Fog
|
|
56
118
|
},
|
57
119
|
{
|
58
120
|
:id => 't2.large',
|
59
|
-
:name => '
|
121
|
+
:name => 'Large Instance',
|
60
122
|
:bits => 64,
|
61
123
|
:cores => 2,
|
62
124
|
:disk => 0,
|
@@ -66,7 +128,7 @@ module Fog
|
|
66
128
|
},
|
67
129
|
{
|
68
130
|
:id => 't2.xlarge',
|
69
|
-
:name => '
|
131
|
+
:name => 'Extra Large Instance',
|
70
132
|
:bits => 64,
|
71
133
|
:cores => 4,
|
72
134
|
:disk => 0,
|
@@ -76,7 +138,7 @@ module Fog
|
|
76
138
|
},
|
77
139
|
{
|
78
140
|
:id => 't2.2xlarge',
|
79
|
-
:name => '
|
141
|
+
:name => 'Double Extra Large Instance',
|
80
142
|
:bits => 64,
|
81
143
|
:cores => 8,
|
82
144
|
:disk => 0,
|
@@ -154,6 +216,156 @@ module Fog
|
|
154
216
|
:ebs_optimized_available => true,
|
155
217
|
:instance_store_volumes => 0
|
156
218
|
},
|
219
|
+
{
|
220
|
+
:id => 't3a.nano',
|
221
|
+
:name => 'T3a Nano',
|
222
|
+
:bits => 64,
|
223
|
+
:cores => 2,
|
224
|
+
:disk => 0,
|
225
|
+
:ram => 536,
|
226
|
+
:ebs_optimized_available => true,
|
227
|
+
:instance_store_volumes => 0
|
228
|
+
},
|
229
|
+
{
|
230
|
+
:id => 't3a.micro',
|
231
|
+
:name => 'T3a Micro',
|
232
|
+
:bits => 64,
|
233
|
+
:cores => 2,
|
234
|
+
:disk => 0,
|
235
|
+
:ram => 1073,
|
236
|
+
:ebs_optimized_available => true,
|
237
|
+
:instance_store_volumes => 0
|
238
|
+
},
|
239
|
+
{
|
240
|
+
:id => 't3a.small',
|
241
|
+
:name => 'T3a Small',
|
242
|
+
:bits => 64,
|
243
|
+
:cores => 2,
|
244
|
+
:disk => 0,
|
245
|
+
:ram => 2147,
|
246
|
+
:ebs_optimized_available => true,
|
247
|
+
:instance_store_volumes => 0
|
248
|
+
},
|
249
|
+
{
|
250
|
+
:id => 't3a.medium',
|
251
|
+
:name => 'T3a Medium',
|
252
|
+
:bits => 64,
|
253
|
+
:cores => 2,
|
254
|
+
:disk => 0,
|
255
|
+
:ram => 4294,
|
256
|
+
:ebs_optimized_available => true,
|
257
|
+
:instance_store_volumes => 0
|
258
|
+
},
|
259
|
+
{
|
260
|
+
:id => 't3a.large',
|
261
|
+
:name => 'T3a Large',
|
262
|
+
:bits => 64,
|
263
|
+
:cores => 2,
|
264
|
+
:disk => 0,
|
265
|
+
:ram => 8589,
|
266
|
+
:ebs_optimized_available => true,
|
267
|
+
:instance_store_volumes => 0
|
268
|
+
},
|
269
|
+
{
|
270
|
+
:id => 't3a.xlarge',
|
271
|
+
:name => 'T3a Extra Large',
|
272
|
+
:bits => 64,
|
273
|
+
:cores => 4,
|
274
|
+
:disk => 0,
|
275
|
+
:ram => 17179,
|
276
|
+
:ebs_optimized_available => true,
|
277
|
+
:instance_store_volumes => 0
|
278
|
+
},
|
279
|
+
{
|
280
|
+
:id => 't3a.2xlarge',
|
281
|
+
:name => 'T3a Double Extra Large',
|
282
|
+
:bits => 64,
|
283
|
+
:cores => 8,
|
284
|
+
:disk => 0,
|
285
|
+
:ram => 34359,
|
286
|
+
:ebs_optimized_available => true,
|
287
|
+
:instance_store_volumes => 0
|
288
|
+
},
|
289
|
+
{
|
290
|
+
:id => 'm6g.medium',
|
291
|
+
:name => 'M6G Medium',
|
292
|
+
:bits => 64,
|
293
|
+
:cores => 1,
|
294
|
+
:disk => 0,
|
295
|
+
:ram => 4295,
|
296
|
+
:ebs_optimized_available => true,
|
297
|
+
:instance_store_volumes => 0
|
298
|
+
},
|
299
|
+
{
|
300
|
+
:id => 'm6g.large',
|
301
|
+
:name => 'M6G Large',
|
302
|
+
:bits => 64,
|
303
|
+
:cores => 2,
|
304
|
+
:disk => 0,
|
305
|
+
:ram => 8590,
|
306
|
+
:ebs_optimized_available => true,
|
307
|
+
:instance_store_volumes => 0
|
308
|
+
},
|
309
|
+
{
|
310
|
+
:id => 'm6g.xlarge',
|
311
|
+
:name => 'M6G Extra Large',
|
312
|
+
:bits => 64,
|
313
|
+
:cores => 4,
|
314
|
+
:disk => 0,
|
315
|
+
:ram => 17180,
|
316
|
+
:ebs_optimized_available => true,
|
317
|
+
:instance_store_volumes => 0
|
318
|
+
},
|
319
|
+
{
|
320
|
+
:id => 'm6g.2xlarge',
|
321
|
+
:name => 'M6G Double Extra Large',
|
322
|
+
:bits => 64,
|
323
|
+
:cores => 8,
|
324
|
+
:disk => 0,
|
325
|
+
:ram => 34360,
|
326
|
+
:ebs_optimized_available => true,
|
327
|
+
:instance_store_volumes => 0
|
328
|
+
},
|
329
|
+
{
|
330
|
+
:id => 'm6g.4xlarge',
|
331
|
+
:name => 'M6G Quadruple Extra Large',
|
332
|
+
:bits => 64,
|
333
|
+
:cores => 16,
|
334
|
+
:disk => 0,
|
335
|
+
:ram => 68719,
|
336
|
+
:ebs_optimized_available => true,
|
337
|
+
:instance_store_volumes => 0
|
338
|
+
},
|
339
|
+
{
|
340
|
+
:id => 'm6g.8xlarge',
|
341
|
+
:name => 'M6G Octuple Extra Large',
|
342
|
+
:bits => 64,
|
343
|
+
:cores => 32,
|
344
|
+
:disk => 0,
|
345
|
+
:ram => 137439,
|
346
|
+
:ebs_optimized_available => true,
|
347
|
+
:instance_store_volumes => 0
|
348
|
+
},
|
349
|
+
{
|
350
|
+
:id => 'm6g.12xlarge',
|
351
|
+
:name => 'M6G Twelve Extra Large',
|
352
|
+
:bits => 64,
|
353
|
+
:cores => 48,
|
354
|
+
:disk => 0,
|
355
|
+
:ram => 206158,
|
356
|
+
:ebs_optimized_available => true,
|
357
|
+
:instance_store_volumes => 0
|
358
|
+
},
|
359
|
+
{
|
360
|
+
:id => 'm6g.16xlarge',
|
361
|
+
:name => 'M6G Sixteen Extra Large',
|
362
|
+
:bits => 64,
|
363
|
+
:cores => 64,
|
364
|
+
:disk => 0,
|
365
|
+
:ram => 274878,
|
366
|
+
:ebs_optimized_available => true,
|
367
|
+
:instance_store_volumes => 0
|
368
|
+
},
|
157
369
|
{
|
158
370
|
:id => 'm1.small',
|
159
371
|
:name => 'Small Instance',
|
@@ -364,6 +576,16 @@ module Fog
|
|
364
576
|
:ebs_optimized_available => true,
|
365
577
|
:instance_store_volumes => 0
|
366
578
|
},
|
579
|
+
{
|
580
|
+
:id => 'c5.12xlarge',
|
581
|
+
:name => 'C5 Twelve Extra Large',
|
582
|
+
:bits => 64,
|
583
|
+
:cores => 48,
|
584
|
+
:disk => 0,
|
585
|
+
:ram => 103079,
|
586
|
+
:ebs_optimized_available => true,
|
587
|
+
:instance_store_volumes => 0
|
588
|
+
},
|
367
589
|
{
|
368
590
|
:id => 'c5.18xlarge',
|
369
591
|
:name => 'C5 Eighteen Extra Large',
|
@@ -374,6 +596,26 @@ module Fog
|
|
374
596
|
:ebs_optimized_available => true,
|
375
597
|
:instance_store_volumes => 0
|
376
598
|
},
|
599
|
+
{
|
600
|
+
:id => 'c5.24xlarge',
|
601
|
+
:name => 'C5 Twenty-Four Extra Large',
|
602
|
+
:bits => 64,
|
603
|
+
:cores => 96,
|
604
|
+
:disk => 0,
|
605
|
+
:ram => 206158,
|
606
|
+
:ebs_optimized_available => true,
|
607
|
+
:instance_store_volumes => 0
|
608
|
+
},
|
609
|
+
{
|
610
|
+
:id => 'c5.metal',
|
611
|
+
:name => 'C5 Metal',
|
612
|
+
:bits => 64,
|
613
|
+
:cores => 96,
|
614
|
+
:disk => 0,
|
615
|
+
:ram => 206158,
|
616
|
+
:ebs_optimized_available => true,
|
617
|
+
:instance_store_volumes => 0
|
618
|
+
},
|
377
619
|
{
|
378
620
|
:id => 'c5d.large',
|
379
621
|
:name => 'C5d Large',
|
@@ -424,6 +666,16 @@ module Fog
|
|
424
666
|
:ebs_optimized_available => true,
|
425
667
|
:instance_store_volumes => 1
|
426
668
|
},
|
669
|
+
{
|
670
|
+
:id => 'c5d.12xlarge',
|
671
|
+
:name => 'C5d Twelve Extra Large',
|
672
|
+
:bits => 64,
|
673
|
+
:cores => 48,
|
674
|
+
:disk => 1800,
|
675
|
+
:ram => 103079,
|
676
|
+
:ebs_optimized_available => true,
|
677
|
+
:instance_store_volumes => 2
|
678
|
+
},
|
427
679
|
{
|
428
680
|
:id => 'c5d.18xlarge',
|
429
681
|
:name => 'C5d Eighteen Extra Large',
|
@@ -435,74 +687,164 @@ module Fog
|
|
435
687
|
:instance_store_volumes => 2
|
436
688
|
},
|
437
689
|
{
|
438
|
-
:id => '
|
439
|
-
:name => '
|
690
|
+
:id => 'c5d.24xlarge',
|
691
|
+
:name => 'C5d Twenty-four Extra Large',
|
440
692
|
:bits => 64,
|
441
|
-
:cores =>
|
442
|
-
:disk =>
|
443
|
-
:ram =>
|
693
|
+
:cores => 96,
|
694
|
+
:disk => 3600,
|
695
|
+
:ram => 206158,
|
444
696
|
:ebs_optimized_available => true,
|
445
|
-
:instance_store_volumes =>
|
697
|
+
:instance_store_volumes => 4
|
446
698
|
},
|
447
699
|
{
|
448
|
-
:id => '
|
449
|
-
:name => '
|
700
|
+
:id => 'c5d.metal',
|
701
|
+
:name => 'C5d Metal',
|
450
702
|
:bits => 64,
|
451
|
-
:cores =>
|
452
|
-
:disk =>
|
453
|
-
:ram =>
|
703
|
+
:cores => 96,
|
704
|
+
:disk => 3600,
|
705
|
+
:ram => 206158,
|
454
706
|
:ebs_optimized_available => true,
|
455
|
-
:instance_store_volumes =>
|
456
|
-
},
|
457
|
-
{
|
458
|
-
:id => 'hs1.8xlarge',
|
459
|
-
:name => 'High Storage Eight Extra Large',
|
460
|
-
:bits => 64,
|
461
|
-
:cores => 16,
|
462
|
-
:disk => 50331648,
|
463
|
-
:ram => 125627,
|
464
|
-
:ebs_optimized_available => false,
|
465
|
-
:instance_store_volumes => 24
|
707
|
+
:instance_store_volumes => 4
|
466
708
|
},
|
467
709
|
{
|
468
|
-
:id => '
|
469
|
-
:name => '
|
710
|
+
:id => 'c5n.large',
|
711
|
+
:name => 'C5n Large',
|
470
712
|
:bits => 64,
|
471
713
|
:cores => 2,
|
472
|
-
:disk =>
|
473
|
-
:ram =>
|
474
|
-
:ebs_optimized_available =>
|
475
|
-
:instance_store_volumes =>
|
714
|
+
:disk => 0,
|
715
|
+
:ram => 5637,
|
716
|
+
:ebs_optimized_available => true,
|
717
|
+
:instance_store_volumes => 0
|
476
718
|
},
|
477
719
|
{
|
478
|
-
:id => '
|
479
|
-
:name => '
|
720
|
+
:id => 'c5n.xlarge',
|
721
|
+
:name => 'C5n Extra Large',
|
480
722
|
:bits => 64,
|
481
723
|
:cores => 4,
|
482
|
-
:disk =>
|
483
|
-
:ram =>
|
724
|
+
:disk => 0,
|
725
|
+
:ram => 11274,
|
484
726
|
:ebs_optimized_available => true,
|
485
|
-
:instance_store_volumes =>
|
727
|
+
:instance_store_volumes => 0
|
486
728
|
},
|
487
729
|
{
|
488
|
-
:id => '
|
489
|
-
:name => '
|
730
|
+
:id => 'c5n.2xlarge',
|
731
|
+
:name => 'C5n Double Extra Large',
|
490
732
|
:bits => 64,
|
491
733
|
:cores => 8,
|
492
|
-
:disk =>
|
493
|
-
:ram =>
|
734
|
+
:disk => 0,
|
735
|
+
:ram => 22549,
|
494
736
|
:ebs_optimized_available => true,
|
495
|
-
:instance_store_volumes =>
|
737
|
+
:instance_store_volumes => 0
|
496
738
|
},
|
497
739
|
{
|
498
|
-
:id => '
|
499
|
-
:name => '
|
740
|
+
:id => 'c5n.4xlarge',
|
741
|
+
:name => 'C5n Quadruple Extra Large',
|
500
742
|
:bits => 64,
|
501
|
-
:cores =>
|
502
|
-
:disk =>
|
503
|
-
:ram =>
|
504
|
-
:ebs_optimized_available =>
|
505
|
-
:instance_store_volumes =>
|
743
|
+
:cores => 16,
|
744
|
+
:disk => 0,
|
745
|
+
:ram => 45097,
|
746
|
+
:ebs_optimized_available => true,
|
747
|
+
:instance_store_volumes => 0
|
748
|
+
},
|
749
|
+
{
|
750
|
+
:id => 'c5n.9xlarge',
|
751
|
+
:name => 'C5n Nine Extra Large',
|
752
|
+
:bits => 64,
|
753
|
+
:cores => 36,
|
754
|
+
:disk => 0,
|
755
|
+
:ram => 103079,
|
756
|
+
:ebs_optimized_available => true,
|
757
|
+
:instance_store_volumes => 0
|
758
|
+
},
|
759
|
+
{
|
760
|
+
:id => 'c5n.18xlarge',
|
761
|
+
:name => 'C5n Eighteen Extra Large',
|
762
|
+
:bits => 64,
|
763
|
+
:cores => 72,
|
764
|
+
:disk => 0,
|
765
|
+
:ram => 206158,
|
766
|
+
:ebs_optimized_available => true,
|
767
|
+
:instance_store_volumes => 0
|
768
|
+
},
|
769
|
+
{
|
770
|
+
:id => 'c5n.metal',
|
771
|
+
:name => 'C5n Metal',
|
772
|
+
:bits => 64,
|
773
|
+
:cores => 72,
|
774
|
+
:disk => 0,
|
775
|
+
:ram => 206158,
|
776
|
+
:ebs_optimized_available => true,
|
777
|
+
:instance_store_volumes => 0
|
778
|
+
},
|
779
|
+
{
|
780
|
+
:id => 'g2.2xlarge',
|
781
|
+
:name => 'GPU Double Extra Large',
|
782
|
+
:bits => 64,
|
783
|
+
:cores => 8,
|
784
|
+
:disk => 60,
|
785
|
+
:ram => 16106,
|
786
|
+
:ebs_optimized_available => true,
|
787
|
+
:instance_store_volumes => 1
|
788
|
+
},
|
789
|
+
{
|
790
|
+
:id => 'g2.8xlarge',
|
791
|
+
:name => 'GPU Eight Extra Large',
|
792
|
+
:bits => 64,
|
793
|
+
:cores => 32,
|
794
|
+
:disk => 240,
|
795
|
+
:ram => 64424,
|
796
|
+
:ebs_optimized_available => true,
|
797
|
+
:instance_store_volumes => 2
|
798
|
+
},
|
799
|
+
{
|
800
|
+
:id => 'hs1.8xlarge',
|
801
|
+
:name => 'High Storage Eight Extra Large',
|
802
|
+
:bits => 64,
|
803
|
+
:cores => 16,
|
804
|
+
:disk => 50331648,
|
805
|
+
:ram => 125627,
|
806
|
+
:ebs_optimized_available => false,
|
807
|
+
:instance_store_volumes => 24
|
808
|
+
},
|
809
|
+
{
|
810
|
+
:id => 'm2.xlarge',
|
811
|
+
:name => 'High-Memory Extra Large',
|
812
|
+
:bits => 64,
|
813
|
+
:cores => 2,
|
814
|
+
:disk => 420,
|
815
|
+
:ram => 18360,
|
816
|
+
:ebs_optimized_available => false,
|
817
|
+
:instance_store_volumes => 1
|
818
|
+
},
|
819
|
+
{
|
820
|
+
:id => 'm2.2xlarge',
|
821
|
+
:name => 'High Memory Double Extra Large',
|
822
|
+
:bits => 64,
|
823
|
+
:cores => 4,
|
824
|
+
:disk => 850,
|
825
|
+
:ram => 36721,
|
826
|
+
:ebs_optimized_available => true,
|
827
|
+
:instance_store_volumes => 1
|
828
|
+
},
|
829
|
+
{
|
830
|
+
:id => 'm2.4xlarge',
|
831
|
+
:name => 'High Memory Quadruple Extra Large',
|
832
|
+
:bits => 64,
|
833
|
+
:cores => 8,
|
834
|
+
:disk => 1690,
|
835
|
+
:ram => 73443,
|
836
|
+
:ebs_optimized_available => true,
|
837
|
+
:instance_store_volumes => 2
|
838
|
+
},
|
839
|
+
{
|
840
|
+
:id => 'cr1.8xlarge',
|
841
|
+
:name => 'High Memory Eight Extra Large',
|
842
|
+
:bits => 64,
|
843
|
+
:cores => 32,
|
844
|
+
:disk => 240,
|
845
|
+
:ram => 261993,
|
846
|
+
:ebs_optimized_available => false,
|
847
|
+
:instance_store_volumes => 2
|
506
848
|
},
|
507
849
|
{
|
508
850
|
:id => 'm3.medium',
|
@@ -684,6 +1026,106 @@ module Fog
|
|
684
1026
|
:ebs_optimized_available => true,
|
685
1027
|
:instance_store_volumes => 8
|
686
1028
|
},
|
1029
|
+
{
|
1030
|
+
:id => 'i3.metal',
|
1031
|
+
:name => 'I3 Metal',
|
1032
|
+
:bits => 64,
|
1033
|
+
:cores => 72,
|
1034
|
+
:disk => 15200,
|
1035
|
+
:ram => 549756,
|
1036
|
+
:ebs_optimized_available => true,
|
1037
|
+
:instance_store_volumes => 8
|
1038
|
+
},
|
1039
|
+
{
|
1040
|
+
:id => 'i3en.large',
|
1041
|
+
:name => 'I3en Large',
|
1042
|
+
:bits => 64,
|
1043
|
+
:cores => 2,
|
1044
|
+
:disk => 1250,
|
1045
|
+
:ram => 17180,
|
1046
|
+
:ebs_optimized_available => true,
|
1047
|
+
:instance_store_volumes => 1
|
1048
|
+
},
|
1049
|
+
{
|
1050
|
+
:id => 'i3en.xlarge',
|
1051
|
+
:name => 'I3en Extra Large',
|
1052
|
+
:bits => 64,
|
1053
|
+
:cores => 4,
|
1054
|
+
:disk => 2500,
|
1055
|
+
:ram => 34360,
|
1056
|
+
:ebs_optimized_available => true,
|
1057
|
+
:instance_store_volumes => 1
|
1058
|
+
},
|
1059
|
+
{
|
1060
|
+
:id => 'i3en.2xlarge',
|
1061
|
+
:name => 'I3en Double Extra Large',
|
1062
|
+
:bits => 64,
|
1063
|
+
:cores => 8,
|
1064
|
+
:disk => 5000,
|
1065
|
+
:ram => 68719,
|
1066
|
+
:ebs_optimized_available => true,
|
1067
|
+
:instance_store_volumes => 2
|
1068
|
+
},
|
1069
|
+
{
|
1070
|
+
:id => 'i3en.3xlarge',
|
1071
|
+
:name => 'I3en Triple Extra Large',
|
1072
|
+
:bits => 64,
|
1073
|
+
:cores => 8,
|
1074
|
+
:disk => 7500,
|
1075
|
+
:ram => 103079,
|
1076
|
+
:ebs_optimized_available => true,
|
1077
|
+
:instance_store_volumes => 1
|
1078
|
+
},
|
1079
|
+
{
|
1080
|
+
:id => 'i3en.6xlarge',
|
1081
|
+
:name => 'I3en Sextuple Extra Large',
|
1082
|
+
:bits => 64,
|
1083
|
+
:cores => 24,
|
1084
|
+
:disk => 15000,
|
1085
|
+
:ram => 206158,
|
1086
|
+
:ebs_optimized_available => true,
|
1087
|
+
:instance_store_volumes => 2
|
1088
|
+
},
|
1089
|
+
{
|
1090
|
+
:id => 'i3en.12xlarge',
|
1091
|
+
:name => 'I3en Twelve Extra Large',
|
1092
|
+
:bits => 64,
|
1093
|
+
:cores => 24,
|
1094
|
+
:disk => 15000,
|
1095
|
+
:ram => 206158,
|
1096
|
+
:ebs_optimized_available => true,
|
1097
|
+
:instance_store_volumes => 2
|
1098
|
+
},
|
1099
|
+
{
|
1100
|
+
:id => 'i3en.16xlarge',
|
1101
|
+
:name => 'I3en Sixteen Extra Large',
|
1102
|
+
:bits => 64,
|
1103
|
+
:cores => 48,
|
1104
|
+
:disk => 30000,
|
1105
|
+
:ram => 412317,
|
1106
|
+
:ebs_optimized_available => true,
|
1107
|
+
:instance_store_volumes => 4
|
1108
|
+
},
|
1109
|
+
{
|
1110
|
+
:id => 'i3en.24xlarge',
|
1111
|
+
:name => 'I3en Twenty-four Extra Large',
|
1112
|
+
:bits => 64,
|
1113
|
+
:cores => 96,
|
1114
|
+
:disk => 60000,
|
1115
|
+
:ram => 824634,
|
1116
|
+
:ebs_optimized_available => true,
|
1117
|
+
:instance_store_volumes => 8
|
1118
|
+
},
|
1119
|
+
{
|
1120
|
+
:id => 'i3en.metal',
|
1121
|
+
:name => 'I3en Metal',
|
1122
|
+
:bits => 64,
|
1123
|
+
:cores => 96,
|
1124
|
+
:disk => 60000,
|
1125
|
+
:ram => 824634,
|
1126
|
+
:ebs_optimized_available => true,
|
1127
|
+
:instance_store_volumes => 8
|
1128
|
+
},
|
687
1129
|
{
|
688
1130
|
:id => "r3.large",
|
689
1131
|
:name => "R3 Large",
|
@@ -834,6 +1276,16 @@ module Fog
|
|
834
1276
|
:ebs_optimized_available => true,
|
835
1277
|
:instance_store_volumes => 0
|
836
1278
|
},
|
1279
|
+
{
|
1280
|
+
:id => "r5.8xlarge",
|
1281
|
+
:name => "R5 Octuple Extra Large",
|
1282
|
+
:bits => 64,
|
1283
|
+
:cores => 32,
|
1284
|
+
:ram => 274878,
|
1285
|
+
:disk => 0,
|
1286
|
+
:ebs_optimized_available => true,
|
1287
|
+
:instance_store_volumes => 0
|
1288
|
+
},
|
837
1289
|
{
|
838
1290
|
:id => "r5.12xlarge",
|
839
1291
|
:name => "R5 Twelve Extra Large",
|
@@ -844,6 +1296,16 @@ module Fog
|
|
844
1296
|
:ebs_optimized_available => true,
|
845
1297
|
:instance_store_volumes => 0
|
846
1298
|
},
|
1299
|
+
{
|
1300
|
+
:id => "r5.16xlarge",
|
1301
|
+
:name => "R5 Sixteen Extra Large",
|
1302
|
+
:bits => 64,
|
1303
|
+
:cores => 64,
|
1304
|
+
:ram => 549756,
|
1305
|
+
:disk => 0,
|
1306
|
+
:ebs_optimized_available => true,
|
1307
|
+
:instance_store_volumes => 0
|
1308
|
+
},
|
847
1309
|
{
|
848
1310
|
:id => "r5.24xlarge",
|
849
1311
|
:name => "R5 Twenty Four Extra Large",
|
@@ -854,6 +1316,16 @@ module Fog
|
|
854
1316
|
:ebs_optimized_available => true,
|
855
1317
|
:instance_store_volumes => 0
|
856
1318
|
},
|
1319
|
+
{
|
1320
|
+
:id => "r5.metal",
|
1321
|
+
:name => "R5 Metal",
|
1322
|
+
:bits => 64,
|
1323
|
+
:cores => 96,
|
1324
|
+
:ram => 824633,
|
1325
|
+
:disk => 0,
|
1326
|
+
:ebs_optimized_available => true,
|
1327
|
+
:instance_store_volumes => 0
|
1328
|
+
},
|
857
1329
|
{
|
858
1330
|
:id => "r5d.large",
|
859
1331
|
:name => "R5d Large",
|
@@ -894,6 +1366,16 @@ module Fog
|
|
894
1366
|
:ebs_optimized_available => true,
|
895
1367
|
:instance_store_volumes => 2
|
896
1368
|
},
|
1369
|
+
{
|
1370
|
+
:id => "r5d.8xlarge",
|
1371
|
+
:name => "R5d Octuple Extra Large",
|
1372
|
+
:bits => 64,
|
1373
|
+
:cores => 16,
|
1374
|
+
:ram => 137438,
|
1375
|
+
:disk => 600,
|
1376
|
+
:ebs_optimized_available => true,
|
1377
|
+
:instance_store_volumes => 2
|
1378
|
+
},
|
897
1379
|
{
|
898
1380
|
:id => "r5d.12xlarge",
|
899
1381
|
:name => "R5d Twelve Extra Large",
|
@@ -904,6 +1386,16 @@ module Fog
|
|
904
1386
|
:ebs_optimized_available => true,
|
905
1387
|
:instance_store_volumes => 2
|
906
1388
|
},
|
1389
|
+
{
|
1390
|
+
:id => "r5d.16xlarge",
|
1391
|
+
:name => "R5d Sixteen Extra Large",
|
1392
|
+
:bits => 64,
|
1393
|
+
:cores => 64,
|
1394
|
+
:ram => 549756,
|
1395
|
+
:disk => 2400,
|
1396
|
+
:ebs_optimized_available => true,
|
1397
|
+
:instance_store_volumes => 4
|
1398
|
+
},
|
907
1399
|
{
|
908
1400
|
:id => "r5d.24xlarge",
|
909
1401
|
:name => "R5d Twenty Four Extra Large",
|
@@ -914,6 +1406,16 @@ module Fog
|
|
914
1406
|
:ebs_optimized_available => true,
|
915
1407
|
:instance_store_volumes => 4
|
916
1408
|
},
|
1409
|
+
{
|
1410
|
+
:id => "r5d.metal",
|
1411
|
+
:name => "R5d Metal",
|
1412
|
+
:bits => 64,
|
1413
|
+
:cores => 96,
|
1414
|
+
:ram => 824633,
|
1415
|
+
:disk => 3600,
|
1416
|
+
:ebs_optimized_available => true,
|
1417
|
+
:instance_store_volumes => 4
|
1418
|
+
},
|
917
1419
|
{
|
918
1420
|
:id => "r5a.large",
|
919
1421
|
:name => "R5 (AMD) Large",
|
@@ -975,57 +1477,517 @@ module Fog
|
|
975
1477
|
:instance_store_volumes => 0
|
976
1478
|
},
|
977
1479
|
{
|
978
|
-
:id => "
|
979
|
-
:name => "
|
1480
|
+
:id => "r5ad.large",
|
1481
|
+
:name => "R5d (AMD) Large",
|
1482
|
+
:bits => 64,
|
1483
|
+
:cores => 2,
|
1484
|
+
:ram => 17179,
|
1485
|
+
:disk => 75,
|
1486
|
+
:ebs_optimized_available => true,
|
1487
|
+
:instance_store_volumes => 1
|
1488
|
+
},
|
1489
|
+
{
|
1490
|
+
:id => "r5ad.xlarge",
|
1491
|
+
:name => "R5d (AMD) Extra Large",
|
980
1492
|
:bits => 64,
|
981
1493
|
:cores => 4,
|
982
|
-
:ram =>
|
983
|
-
:disk =>
|
1494
|
+
:ram => 34359,
|
1495
|
+
:disk => 150,
|
984
1496
|
:ebs_optimized_available => true,
|
985
|
-
:instance_store_volumes =>
|
1497
|
+
:instance_store_volumes => 1
|
986
1498
|
},
|
987
1499
|
{
|
988
|
-
:id => "
|
989
|
-
:name => "
|
1500
|
+
:id => "r5ad.2xlarge",
|
1501
|
+
:name => "R5d (AMD) Double Extra Large",
|
990
1502
|
:bits => 64,
|
991
1503
|
:cores => 8,
|
992
|
-
:ram =>
|
993
|
-
:disk =>
|
1504
|
+
:ram => 68719,
|
1505
|
+
:disk => 300,
|
994
1506
|
:ebs_optimized_available => true,
|
995
|
-
:instance_store_volumes =>
|
1507
|
+
:instance_store_volumes => 1
|
996
1508
|
},
|
997
1509
|
{
|
998
|
-
:id => "
|
999
|
-
:name => "
|
1510
|
+
:id => "r5ad.4xlarge",
|
1511
|
+
:name => "R5d (AMD) Quadruple Extra Large",
|
1000
1512
|
:bits => 64,
|
1001
1513
|
:cores => 16,
|
1002
|
-
:ram =>
|
1003
|
-
:disk =>
|
1514
|
+
:ram => 137438,
|
1515
|
+
:disk => 600,
|
1004
1516
|
:ebs_optimized_available => true,
|
1005
|
-
:instance_store_volumes =>
|
1517
|
+
:instance_store_volumes => 2
|
1006
1518
|
},
|
1007
1519
|
{
|
1008
|
-
:id => "
|
1009
|
-
:name => "
|
1520
|
+
:id => "r5ad.12xlarge",
|
1521
|
+
:name => "R5d (AMD) Twelve Extra Large",
|
1010
1522
|
:bits => 64,
|
1011
|
-
:cores =>
|
1012
|
-
:ram =>
|
1013
|
-
:disk =>
|
1523
|
+
:cores => 48,
|
1524
|
+
:ram => 412316,
|
1525
|
+
:disk => 1800,
|
1014
1526
|
:ebs_optimized_available => true,
|
1015
|
-
:instance_store_volumes =>
|
1527
|
+
:instance_store_volumes => 2
|
1016
1528
|
},
|
1017
1529
|
{
|
1018
|
-
:id => "
|
1019
|
-
:name => "
|
1530
|
+
:id => "r5ad.24xlarge",
|
1531
|
+
:name => "R5d (AMD) Twenty Four Extra Large",
|
1020
1532
|
:bits => 64,
|
1021
|
-
:cores =>
|
1022
|
-
:ram =>
|
1023
|
-
:disk =>
|
1533
|
+
:cores => 96,
|
1534
|
+
:ram => 824633,
|
1535
|
+
:disk => 3600,
|
1024
1536
|
:ebs_optimized_available => true,
|
1025
|
-
:instance_store_volumes =>
|
1537
|
+
:instance_store_volumes => 4
|
1026
1538
|
},
|
1027
1539
|
{
|
1028
|
-
:id => "
|
1540
|
+
:id => "r5n.large",
|
1541
|
+
:name => "R5n Large",
|
1542
|
+
:bits => 64,
|
1543
|
+
:cores => 2,
|
1544
|
+
:ram => 17179,
|
1545
|
+
:disk => 0,
|
1546
|
+
:ebs_optimized_available => true,
|
1547
|
+
:instance_store_volumes => 0
|
1548
|
+
},
|
1549
|
+
{
|
1550
|
+
:id => "r5n.xlarge",
|
1551
|
+
:name => "R5n Extra Large",
|
1552
|
+
:bits => 64,
|
1553
|
+
:cores => 4,
|
1554
|
+
:ram => 34359,
|
1555
|
+
:disk => 0,
|
1556
|
+
:ebs_optimized_available => true,
|
1557
|
+
:instance_store_volumes => 0
|
1558
|
+
},
|
1559
|
+
{
|
1560
|
+
:id => "r5n.2xlarge",
|
1561
|
+
:name => "R5n Double Extra Large",
|
1562
|
+
:bits => 64,
|
1563
|
+
:cores => 8,
|
1564
|
+
:ram => 68719,
|
1565
|
+
:disk => 0,
|
1566
|
+
:ebs_optimized_available => true,
|
1567
|
+
:instance_store_volumes => 0
|
1568
|
+
},
|
1569
|
+
{
|
1570
|
+
:id => "r5n.4xlarge",
|
1571
|
+
:name => "R5n Quadruple Extra Large",
|
1572
|
+
:bits => 64,
|
1573
|
+
:cores => 16,
|
1574
|
+
:ram => 137438,
|
1575
|
+
:disk => 0,
|
1576
|
+
:ebs_optimized_available => true,
|
1577
|
+
:instance_store_volumes => 0
|
1578
|
+
},
|
1579
|
+
{
|
1580
|
+
:id => "r5n.8xlarge",
|
1581
|
+
:name => "R5n Octuple Extra Large",
|
1582
|
+
:bits => 64,
|
1583
|
+
:cores => 32,
|
1584
|
+
:ram => 274878,
|
1585
|
+
:disk => 0,
|
1586
|
+
:ebs_optimized_available => true,
|
1587
|
+
:instance_store_volumes => 0
|
1588
|
+
},
|
1589
|
+
{
|
1590
|
+
:id => "r5n.12xlarge",
|
1591
|
+
:name => "R5n Twelve Extra Large",
|
1592
|
+
:bits => 64,
|
1593
|
+
:cores => 48,
|
1594
|
+
:ram => 412316,
|
1595
|
+
:disk => 0,
|
1596
|
+
:ebs_optimized_available => true,
|
1597
|
+
:instance_store_volumes => 0
|
1598
|
+
},
|
1599
|
+
{
|
1600
|
+
:id => "r5n.16xlarge",
|
1601
|
+
:name => "R5n Sixteen Extra Large",
|
1602
|
+
:bits => 64,
|
1603
|
+
:cores => 64,
|
1604
|
+
:ram => 549756,
|
1605
|
+
:disk => 0,
|
1606
|
+
:ebs_optimized_available => true,
|
1607
|
+
:instance_store_volumes => 0
|
1608
|
+
},
|
1609
|
+
{
|
1610
|
+
:id => "r5n.24xlarge",
|
1611
|
+
:name => "R5n Twenty Four Extra Large",
|
1612
|
+
:bits => 64,
|
1613
|
+
:cores => 96,
|
1614
|
+
:ram => 824633,
|
1615
|
+
:disk => 0,
|
1616
|
+
:ebs_optimized_available => true,
|
1617
|
+
:instance_store_volumes => 0
|
1618
|
+
},
|
1619
|
+
{
|
1620
|
+
:id => "r5dn.large",
|
1621
|
+
:name => "R5dn Large",
|
1622
|
+
:bits => 64,
|
1623
|
+
:cores => 2,
|
1624
|
+
:ram => 17179,
|
1625
|
+
:disk => 75,
|
1626
|
+
:ebs_optimized_available => true,
|
1627
|
+
:instance_store_volumes => 1
|
1628
|
+
},
|
1629
|
+
{
|
1630
|
+
:id => "r5dn.xlarge",
|
1631
|
+
:name => "R5dn Extra Large",
|
1632
|
+
:bits => 64,
|
1633
|
+
:cores => 4,
|
1634
|
+
:ram => 34359,
|
1635
|
+
:disk => 150,
|
1636
|
+
:ebs_optimized_available => true,
|
1637
|
+
:instance_store_volumes => 1
|
1638
|
+
},
|
1639
|
+
{
|
1640
|
+
:id => "r5dn.2xlarge",
|
1641
|
+
:name => "R5dn Double Extra Large",
|
1642
|
+
:bits => 64,
|
1643
|
+
:cores => 8,
|
1644
|
+
:ram => 68719,
|
1645
|
+
:disk => 300,
|
1646
|
+
:ebs_optimized_available => true,
|
1647
|
+
:instance_store_volumes => 1
|
1648
|
+
},
|
1649
|
+
{
|
1650
|
+
:id => "r5dn.4xlarge",
|
1651
|
+
:name => "R5dn Quadruple Extra Large",
|
1652
|
+
:bits => 64,
|
1653
|
+
:cores => 16,
|
1654
|
+
:ram => 137438,
|
1655
|
+
:disk => 600,
|
1656
|
+
:ebs_optimized_available => true,
|
1657
|
+
:instance_store_volumes => 2
|
1658
|
+
},
|
1659
|
+
{
|
1660
|
+
:id => "r5dn.8xlarge",
|
1661
|
+
:name => "R5dn Octuple Extra Large",
|
1662
|
+
:bits => 64,
|
1663
|
+
:cores => 32,
|
1664
|
+
:ram => 274878,
|
1665
|
+
:disk => 1200,
|
1666
|
+
:ebs_optimized_available => true,
|
1667
|
+
:instance_store_volumes => 2
|
1668
|
+
},
|
1669
|
+
{
|
1670
|
+
:id => "r5dn.12xlarge",
|
1671
|
+
:name => "R5dn Twelve Extra Large",
|
1672
|
+
:bits => 64,
|
1673
|
+
:cores => 48,
|
1674
|
+
:ram => 412316,
|
1675
|
+
:disk => 1800,
|
1676
|
+
:ebs_optimized_available => true,
|
1677
|
+
:instance_store_volumes => 2
|
1678
|
+
},
|
1679
|
+
{
|
1680
|
+
:id => "r5dn.16xlarge",
|
1681
|
+
:name => "R5dn Sixteen Extra Large",
|
1682
|
+
:bits => 64,
|
1683
|
+
:cores => 64,
|
1684
|
+
:ram => 549756,
|
1685
|
+
:disk => 2400,
|
1686
|
+
:ebs_optimized_available => true,
|
1687
|
+
:instance_store_volumes => 4
|
1688
|
+
},
|
1689
|
+
{
|
1690
|
+
:id => "r5dn.24xlarge",
|
1691
|
+
:name => "R5dn Twenty Four Extra Large",
|
1692
|
+
:bits => 64,
|
1693
|
+
:cores => 96,
|
1694
|
+
:ram => 824633,
|
1695
|
+
:disk => 3600,
|
1696
|
+
:ebs_optimized_available => true,
|
1697
|
+
:instance_store_volumes => 4
|
1698
|
+
},
|
1699
|
+
{
|
1700
|
+
:id => "x1.16xlarge",
|
1701
|
+
:name => "X1 Sixteen Extra Large",
|
1702
|
+
:bits => 64,
|
1703
|
+
:cores => 64,
|
1704
|
+
:ram => 1047972,
|
1705
|
+
:disk => 1920,
|
1706
|
+
:ebs_optimized_available => true,
|
1707
|
+
:instance_store_volumes => 1
|
1708
|
+
},
|
1709
|
+
{
|
1710
|
+
:id => "x1.32xlarge",
|
1711
|
+
:name => "X1 Thirty-two Extra Large",
|
1712
|
+
:bits => 64,
|
1713
|
+
:cores => 128,
|
1714
|
+
:ram => 2095944,
|
1715
|
+
:disk => 3840,
|
1716
|
+
:ebs_optimized_available => true,
|
1717
|
+
:instance_store_volumes => 2
|
1718
|
+
},
|
1719
|
+
{
|
1720
|
+
:id => "x1e.xlarge",
|
1721
|
+
:name => "X1e Extra Large",
|
1722
|
+
:bits => 64,
|
1723
|
+
:cores => 4,
|
1724
|
+
:ram => 130997,
|
1725
|
+
:disk => 120,
|
1726
|
+
:ebs_optimized_available => true,
|
1727
|
+
:instance_store_volumes => 1
|
1728
|
+
},
|
1729
|
+
{
|
1730
|
+
:id => "x1e.2xlarge",
|
1731
|
+
:name => "X1e Double Extra Large",
|
1732
|
+
:bits => 64,
|
1733
|
+
:cores => 8,
|
1734
|
+
:ram => 261993,
|
1735
|
+
:disk => 240,
|
1736
|
+
:ebs_optimized_available => true,
|
1737
|
+
:instance_store_volumes => 1
|
1738
|
+
},
|
1739
|
+
{
|
1740
|
+
:id => "x1e.4xlarge",
|
1741
|
+
:name => "X1e Quadruple Extra Large",
|
1742
|
+
:bits => 64,
|
1743
|
+
:cores => 16,
|
1744
|
+
:ram => 523986,
|
1745
|
+
:disk => 480,
|
1746
|
+
:ebs_optimized_available => true,
|
1747
|
+
:instance_store_volumes => 1
|
1748
|
+
},
|
1749
|
+
{
|
1750
|
+
:id => "x1e.8xlarge",
|
1751
|
+
:name => "X1e Octuple Extra Large",
|
1752
|
+
:bits => 64,
|
1753
|
+
:cores => 32,
|
1754
|
+
:ram => 1043677,
|
1755
|
+
:disk => 960,
|
1756
|
+
:ebs_optimized_available => true,
|
1757
|
+
:instance_store_volumes => 1
|
1758
|
+
},
|
1759
|
+
{
|
1760
|
+
:id => "x1e.16xlarge",
|
1761
|
+
:name => "X1e Sixteen Extra Large",
|
1762
|
+
:bits => 64,
|
1763
|
+
:cores => 64,
|
1764
|
+
:ram => 2095944,
|
1765
|
+
:disk => 1920,
|
1766
|
+
:ebs_optimized_available => true,
|
1767
|
+
:instance_store_volumes => 1
|
1768
|
+
},
|
1769
|
+
{
|
1770
|
+
:id => "x1e.32xlarge",
|
1771
|
+
:name => "X1e Thirty-two Extra Large",
|
1772
|
+
:bits => 64,
|
1773
|
+
:cores => 128,
|
1774
|
+
:ram => 3118147,
|
1775
|
+
:disk => 3840,
|
1776
|
+
:ebs_optimized_available => true,
|
1777
|
+
:instance_store_volumes => 2
|
1778
|
+
},
|
1779
|
+
{
|
1780
|
+
:id => "u-6tb1.metal",
|
1781
|
+
:name => "X1e Sixteen Extra Large",
|
1782
|
+
:bits => 64,
|
1783
|
+
:cores => 448,
|
1784
|
+
:ram => 6597071,
|
1785
|
+
:disk => 0,
|
1786
|
+
:ebs_optimized_available => true,
|
1787
|
+
:instance_store_volumes => 0
|
1788
|
+
},
|
1789
|
+
{
|
1790
|
+
:id => "u-9tb1.metal",
|
1791
|
+
:name => "U 9 TB Metal",
|
1792
|
+
:bits => 64,
|
1793
|
+
:cores => 448,
|
1794
|
+
:ram => 9895606,
|
1795
|
+
:disk => 0,
|
1796
|
+
:ebs_optimized_available => true,
|
1797
|
+
:instance_store_volumes => 0
|
1798
|
+
},
|
1799
|
+
{
|
1800
|
+
:id => "u-12tb1.metal",
|
1801
|
+
:name => "U 12 TB Metal",
|
1802
|
+
:bits => 64,
|
1803
|
+
:cores => 448,
|
1804
|
+
:ram => 13194141,
|
1805
|
+
:disk => 0,
|
1806
|
+
:ebs_optimized_available => true,
|
1807
|
+
:instance_store_volumes => 0
|
1808
|
+
},
|
1809
|
+
{
|
1810
|
+
:id => "u-18tb1.metal",
|
1811
|
+
:name => "U 18 TB Metal",
|
1812
|
+
:bits => 64,
|
1813
|
+
:cores => 448,
|
1814
|
+
:ram => 19791212,
|
1815
|
+
:disk => 0,
|
1816
|
+
:ebs_optimized_available => true,
|
1817
|
+
:instance_store_volumes => 0
|
1818
|
+
},
|
1819
|
+
{
|
1820
|
+
:id => "u-24tb1.metal",
|
1821
|
+
:name => "U 24 TB Metal",
|
1822
|
+
:bits => 64,
|
1823
|
+
:cores => 448,
|
1824
|
+
:ram => 26388283,
|
1825
|
+
:disk => 0,
|
1826
|
+
:ebs_optimized_available => true,
|
1827
|
+
:instance_store_volumes => 0
|
1828
|
+
},
|
1829
|
+
{
|
1830
|
+
:id => "z1d.large",
|
1831
|
+
:name => "Z1d Large",
|
1832
|
+
:bits => 64,
|
1833
|
+
:cores => 2,
|
1834
|
+
:ram => 17180,
|
1835
|
+
:disk => 75,
|
1836
|
+
:ebs_optimized_available => true,
|
1837
|
+
:instance_store_volumes => 1
|
1838
|
+
},
|
1839
|
+
{
|
1840
|
+
:id => "z1d.xlarge",
|
1841
|
+
:name => "Z1d Extra Large",
|
1842
|
+
:bits => 64,
|
1843
|
+
:cores => 4,
|
1844
|
+
:ram => 34359,
|
1845
|
+
:disk => 150,
|
1846
|
+
:ebs_optimized_available => true,
|
1847
|
+
:instance_store_volumes => 1
|
1848
|
+
},
|
1849
|
+
{
|
1850
|
+
:id => "z1d.2xlarge",
|
1851
|
+
:name => "Z1d Double Extra Large",
|
1852
|
+
:bits => 64,
|
1853
|
+
:cores => 8,
|
1854
|
+
:ram => 68719,
|
1855
|
+
:disk => 300,
|
1856
|
+
:ebs_optimized_available => true,
|
1857
|
+
:instance_store_volumes => 1
|
1858
|
+
},
|
1859
|
+
{
|
1860
|
+
:id => "z1d.3xlarge",
|
1861
|
+
:name => "Z1d Triple Extra Large",
|
1862
|
+
:bits => 64,
|
1863
|
+
:cores => 12,
|
1864
|
+
:ram => 103079,
|
1865
|
+
:disk => 450,
|
1866
|
+
:ebs_optimized_available => true,
|
1867
|
+
:instance_store_volumes => 1
|
1868
|
+
},
|
1869
|
+
{
|
1870
|
+
:id => "z1d.6xlarge",
|
1871
|
+
:name => "Z1d Sextuple Large",
|
1872
|
+
:bits => 64,
|
1873
|
+
:cores => 24,
|
1874
|
+
:ram => 206158,
|
1875
|
+
:disk => 900,
|
1876
|
+
:ebs_optimized_available => true,
|
1877
|
+
:instance_store_volumes => 1
|
1878
|
+
},
|
1879
|
+
{
|
1880
|
+
:id => "z1d.12xlarge",
|
1881
|
+
:name => "Z1d Twelve Extra Large",
|
1882
|
+
:bits => 64,
|
1883
|
+
:cores => 48,
|
1884
|
+
:ram => 412316,
|
1885
|
+
:disk => 1800,
|
1886
|
+
:ebs_optimized_available => true,
|
1887
|
+
:instance_store_volumes => 2
|
1888
|
+
},
|
1889
|
+
{
|
1890
|
+
:id => "z1d.metal",
|
1891
|
+
:name => "Z1d Metal",
|
1892
|
+
:bits => 64,
|
1893
|
+
:cores => 48,
|
1894
|
+
:ram => 412316,
|
1895
|
+
:disk => 1800,
|
1896
|
+
:ebs_optimized_available => true,
|
1897
|
+
:instance_store_volumes => 2
|
1898
|
+
},
|
1899
|
+
{
|
1900
|
+
:id => "d2.xlarge",
|
1901
|
+
:name => "D2 Extra Large",
|
1902
|
+
:bits => 64,
|
1903
|
+
:cores => 4,
|
1904
|
+
:ram => 32749,
|
1905
|
+
:disk => 6000,
|
1906
|
+
:ebs_optimized_available => true,
|
1907
|
+
:instance_store_volumes => 3
|
1908
|
+
},
|
1909
|
+
{
|
1910
|
+
:id => "d2.2xlarge",
|
1911
|
+
:name => "D2 Double Extra Large",
|
1912
|
+
:bits => 64,
|
1913
|
+
:cores => 8,
|
1914
|
+
:ram => 65498,
|
1915
|
+
:disk => 12000,
|
1916
|
+
:ebs_optimized_available => true,
|
1917
|
+
:instance_store_volumes => 6
|
1918
|
+
},
|
1919
|
+
{
|
1920
|
+
:id => "d2.4xlarge",
|
1921
|
+
:name => "D2 Quadruple Extra Large",
|
1922
|
+
:bits => 64,
|
1923
|
+
:cores => 16,
|
1924
|
+
:ram => 130996,
|
1925
|
+
:disk => 24000,
|
1926
|
+
:ebs_optimized_available => true,
|
1927
|
+
:instance_store_volumes => 12
|
1928
|
+
},
|
1929
|
+
{
|
1930
|
+
:id => "d2.8xlarge",
|
1931
|
+
:name => "D2 Eight Extra Large",
|
1932
|
+
:bits => 64,
|
1933
|
+
:cores => 36,
|
1934
|
+
:ram => 261993,
|
1935
|
+
:disk => 48000,
|
1936
|
+
:ebs_optimized_available => true,
|
1937
|
+
:instance_store_volumes => 24
|
1938
|
+
},
|
1939
|
+
{
|
1940
|
+
:id => "h1.2xlarge",
|
1941
|
+
:name => "H1 Double Extra Large",
|
1942
|
+
:bits => 64,
|
1943
|
+
:cores => 8,
|
1944
|
+
:ram => 34360,
|
1945
|
+
:disk => 2000,
|
1946
|
+
:ebs_optimized_available => true,
|
1947
|
+
:instance_store_volumes => 1
|
1948
|
+
},
|
1949
|
+
{
|
1950
|
+
:id => "h1.4xlarge",
|
1951
|
+
:name => "H1 Quadruple Extra Large",
|
1952
|
+
:bits => 64,
|
1953
|
+
:cores => 16,
|
1954
|
+
:ram => 68719,
|
1955
|
+
:disk => 4000,
|
1956
|
+
:ebs_optimized_available => true,
|
1957
|
+
:instance_store_volumes => 2
|
1958
|
+
},
|
1959
|
+
{
|
1960
|
+
:id => "h1.8xlarge",
|
1961
|
+
:name => "H1 Octuple Extra Large",
|
1962
|
+
:bits => 64,
|
1963
|
+
:cores => 32,
|
1964
|
+
:ram => 137439,
|
1965
|
+
:disk => 8000,
|
1966
|
+
:ebs_optimized_available => true,
|
1967
|
+
:instance_store_volumes => 4
|
1968
|
+
},
|
1969
|
+
{
|
1970
|
+
:id => "h1.16xlarge",
|
1971
|
+
:name => "H1 Sixteen Extra Large",
|
1972
|
+
:bits => 64,
|
1973
|
+
:cores => 64,
|
1974
|
+
:ram => 274878,
|
1975
|
+
:disk => 16000,
|
1976
|
+
:ebs_optimized_available => true,
|
1977
|
+
:instance_store_volumes => 8
|
1978
|
+
},
|
1979
|
+
{
|
1980
|
+
:id => "m4.large",
|
1981
|
+
:name => "M4 Large",
|
1982
|
+
:bits => 64,
|
1983
|
+
:cores => 2,
|
1984
|
+
:ram => 8589,
|
1985
|
+
:disk => 0,
|
1986
|
+
:ebs_optimized_available => true,
|
1987
|
+
:instance_store_volumes => 0
|
1988
|
+
},
|
1989
|
+
{
|
1990
|
+
:id => "m4.xlarge",
|
1029
1991
|
:name => "M4 Extra Large",
|
1030
1992
|
:bits => 64,
|
1031
1993
|
:cores => 4,
|
@@ -1085,8 +2047,188 @@ module Fog
|
|
1085
2047
|
:instance_store_volumes => 0
|
1086
2048
|
},
|
1087
2049
|
{
|
1088
|
-
:id => "m5.xlarge",
|
1089
|
-
:name => "M5 Extra Large",
|
2050
|
+
:id => "m5.xlarge",
|
2051
|
+
:name => "M5 Extra Large",
|
2052
|
+
:bits => 64,
|
2053
|
+
:cores => 4,
|
2054
|
+
:ram => 17179,
|
2055
|
+
:disk => 0,
|
2056
|
+
:ebs_optimized_available => true,
|
2057
|
+
:instance_store_volumes => 0
|
2058
|
+
},
|
2059
|
+
{
|
2060
|
+
:id => "m5.2xlarge",
|
2061
|
+
:name => "M5 Double Extra Large",
|
2062
|
+
:bits => 64,
|
2063
|
+
:cores => 8,
|
2064
|
+
:ram => 34359,
|
2065
|
+
:disk => 0,
|
2066
|
+
:ebs_optimized_available => true,
|
2067
|
+
:instance_store_volumes => 0
|
2068
|
+
},
|
2069
|
+
{
|
2070
|
+
:id => "m5.4xlarge",
|
2071
|
+
:name => "M5 Quadruple Extra Large",
|
2072
|
+
:bits => 64,
|
2073
|
+
:cores => 16,
|
2074
|
+
:ram => 68719,
|
2075
|
+
:disk => 0,
|
2076
|
+
:ebs_optimized_available => true,
|
2077
|
+
:instance_store_volumes => 0
|
2078
|
+
},
|
2079
|
+
{
|
2080
|
+
:id => "m5.8xlarge",
|
2081
|
+
:name => "M5 Octuple Extra Large",
|
2082
|
+
:bits => 64,
|
2083
|
+
:cores => 32,
|
2084
|
+
:ram => 137439,
|
2085
|
+
:disk => 0,
|
2086
|
+
:ebs_optimized_available => true,
|
2087
|
+
:instance_store_volumes => 0
|
2088
|
+
},
|
2089
|
+
{
|
2090
|
+
:id => "m5.12xlarge",
|
2091
|
+
:name => "M5 Twelve Extra Large",
|
2092
|
+
:bits => 64,
|
2093
|
+
:cores => 48,
|
2094
|
+
:ram => 206158,
|
2095
|
+
:disk => 0,
|
2096
|
+
:ebs_optimized_available => true,
|
2097
|
+
:instance_store_volumes => 0
|
2098
|
+
},
|
2099
|
+
{
|
2100
|
+
:id => "m5.16xlarge",
|
2101
|
+
:name => "M5 Sixteen Extra Large",
|
2102
|
+
:bits => 64,
|
2103
|
+
:cores => 64,
|
2104
|
+
:ram => 274878,
|
2105
|
+
:disk => 0,
|
2106
|
+
:ebs_optimized_available => true,
|
2107
|
+
:instance_store_volumes => 0
|
2108
|
+
},
|
2109
|
+
{
|
2110
|
+
:id => "m5.24xlarge",
|
2111
|
+
:name => "M5 Twenty Four Extra Large",
|
2112
|
+
:bits => 64,
|
2113
|
+
:cores => 96,
|
2114
|
+
:ram => 412316,
|
2115
|
+
:disk => 0,
|
2116
|
+
:ebs_optimized_available => true,
|
2117
|
+
:instance_store_volumes => 0
|
2118
|
+
},
|
2119
|
+
{
|
2120
|
+
:id => "m5.metal",
|
2121
|
+
:name => "M5 Metal",
|
2122
|
+
:bits => 64,
|
2123
|
+
:cores => 96,
|
2124
|
+
:ram => 412316,
|
2125
|
+
:disk => 0,
|
2126
|
+
:ebs_optimized_available => true,
|
2127
|
+
:instance_store_volumes => 0
|
2128
|
+
},
|
2129
|
+
{
|
2130
|
+
:id => "m5d.large",
|
2131
|
+
:name => "M5d Large",
|
2132
|
+
:bits => 64,
|
2133
|
+
:cores => 2,
|
2134
|
+
:ram => 8589,
|
2135
|
+
:disk => 75,
|
2136
|
+
:ebs_optimized_available => true,
|
2137
|
+
:instance_store_volumes => 1
|
2138
|
+
},
|
2139
|
+
{
|
2140
|
+
:id => "m5d.xlarge",
|
2141
|
+
:name => "M5d Extra Large",
|
2142
|
+
:bits => 64,
|
2143
|
+
:cores => 4,
|
2144
|
+
:ram => 17179,
|
2145
|
+
:disk => 150,
|
2146
|
+
:ebs_optimized_available => true,
|
2147
|
+
:instance_store_volumes => 1
|
2148
|
+
},
|
2149
|
+
{
|
2150
|
+
:id => "m5d.2xlarge",
|
2151
|
+
:name => "M5d Double Extra Large",
|
2152
|
+
:bits => 64,
|
2153
|
+
:cores => 8,
|
2154
|
+
:ram => 34359,
|
2155
|
+
:disk => 300,
|
2156
|
+
:ebs_optimized_available => true,
|
2157
|
+
:instance_store_volumes => 1
|
2158
|
+
},
|
2159
|
+
{
|
2160
|
+
:id => "m5d.4xlarge",
|
2161
|
+
:name => "M5d Quadruple Extra Large",
|
2162
|
+
:bits => 64,
|
2163
|
+
:cores => 16,
|
2164
|
+
:ram => 68719,
|
2165
|
+
:disk => 600,
|
2166
|
+
:ebs_optimized_available => true,
|
2167
|
+
:instance_store_volumes => 2
|
2168
|
+
},
|
2169
|
+
{
|
2170
|
+
:id => "m5d.8xlarge",
|
2171
|
+
:name => "M5d Octuple Extra Large",
|
2172
|
+
:bits => 64,
|
2173
|
+
:cores => 32,
|
2174
|
+
:ram => 137439,
|
2175
|
+
:disk => 1200,
|
2176
|
+
:ebs_optimized_available => true,
|
2177
|
+
:instance_store_volumes => 2
|
2178
|
+
},
|
2179
|
+
{
|
2180
|
+
:id => "m5d.12xlarge",
|
2181
|
+
:name => "M5d Twelve Extra Large",
|
2182
|
+
:bits => 64,
|
2183
|
+
:cores => 48,
|
2184
|
+
:ram => 206158,
|
2185
|
+
:disk => 1800,
|
2186
|
+
:ebs_optimized_available => true,
|
2187
|
+
:instance_store_volumes => 2
|
2188
|
+
},
|
2189
|
+
{
|
2190
|
+
:id => "m5d.16xlarge",
|
2191
|
+
:name => "M5d Sixteen Extra Large",
|
2192
|
+
:bits => 64,
|
2193
|
+
:cores => 64,
|
2194
|
+
:ram => 274878,
|
2195
|
+
:disk => 2400,
|
2196
|
+
:ebs_optimized_available => true,
|
2197
|
+
:instance_store_volumes => 4
|
2198
|
+
},
|
2199
|
+
{
|
2200
|
+
:id => "m5d.24xlarge",
|
2201
|
+
:name => "M5d Twenty Four Extra Large",
|
2202
|
+
:bits => 64,
|
2203
|
+
:cores => 96,
|
2204
|
+
:ram => 412316,
|
2205
|
+
:disk => 3600,
|
2206
|
+
:ebs_optimized_available => true,
|
2207
|
+
:instance_store_volumes => 4
|
2208
|
+
},
|
2209
|
+
{
|
2210
|
+
:id => "m5d.metal",
|
2211
|
+
:name => "M5d Metal",
|
2212
|
+
:bits => 64,
|
2213
|
+
:cores => 96,
|
2214
|
+
:ram => 412316,
|
2215
|
+
:disk => 3600,
|
2216
|
+
:ebs_optimized_available => true,
|
2217
|
+
:instance_store_volumes => 4
|
2218
|
+
},
|
2219
|
+
{
|
2220
|
+
:id => "m5a.large",
|
2221
|
+
:name => "M5 (AMD) Large",
|
2222
|
+
:bits => 64,
|
2223
|
+
:cores => 2,
|
2224
|
+
:ram => 8589,
|
2225
|
+
:disk => 0,
|
2226
|
+
:ebs_optimized_available => true,
|
2227
|
+
:instance_store_volumes => 0
|
2228
|
+
},
|
2229
|
+
{
|
2230
|
+
:id => "m5a.xlarge",
|
2231
|
+
:name => "M5 (AMD) Extra Large",
|
1090
2232
|
:bits => 64,
|
1091
2233
|
:cores => 4,
|
1092
2234
|
:ram => 17179,
|
@@ -1095,8 +2237,8 @@ module Fog
|
|
1095
2237
|
:instance_store_volumes => 0
|
1096
2238
|
},
|
1097
2239
|
{
|
1098
|
-
:id => "
|
1099
|
-
:name => "M5 Double Extra Large",
|
2240
|
+
:id => "m5a.2xlarge",
|
2241
|
+
:name => "M5 (AMD) Double Extra Large",
|
1100
2242
|
:bits => 64,
|
1101
2243
|
:cores => 8,
|
1102
2244
|
:ram => 34359,
|
@@ -1105,8 +2247,8 @@ module Fog
|
|
1105
2247
|
:instance_store_volumes => 0
|
1106
2248
|
},
|
1107
2249
|
{
|
1108
|
-
:id => "
|
1109
|
-
:name => "M5 Quadruple Extra Large",
|
2250
|
+
:id => "m5a.4xlarge",
|
2251
|
+
:name => "M5 (AMD) Quadruple Extra Large",
|
1110
2252
|
:bits => 64,
|
1111
2253
|
:cores => 16,
|
1112
2254
|
:ram => 68719,
|
@@ -1115,8 +2257,18 @@ module Fog
|
|
1115
2257
|
:instance_store_volumes => 0
|
1116
2258
|
},
|
1117
2259
|
{
|
1118
|
-
:id => "
|
1119
|
-
:name => "M5
|
2260
|
+
:id => "m5a.8xlarge",
|
2261
|
+
:name => "M5 (AMD) Eight Extra Large",
|
2262
|
+
:bits => 64,
|
2263
|
+
:cores => 32,
|
2264
|
+
:ram => 137438,
|
2265
|
+
:disk => 0,
|
2266
|
+
:ebs_optimized_available => true,
|
2267
|
+
:instance_store_volumes => 0
|
2268
|
+
},
|
2269
|
+
{
|
2270
|
+
:id => "m5a.12xlarge",
|
2271
|
+
:name => "M5 (AMD) Twelve Extra Large",
|
1120
2272
|
:bits => 64,
|
1121
2273
|
:cores => 48,
|
1122
2274
|
:ram => 206158,
|
@@ -1125,8 +2277,18 @@ module Fog
|
|
1125
2277
|
:instance_store_volumes => 0
|
1126
2278
|
},
|
1127
2279
|
{
|
1128
|
-
:id => "
|
1129
|
-
:name => "M5
|
2280
|
+
:id => "m5a.16xlarge",
|
2281
|
+
:name => "M5 (AMD) Sixteen Extra Large",
|
2282
|
+
:bits => 64,
|
2283
|
+
:cores => 32,
|
2284
|
+
:ram => 274877,
|
2285
|
+
:disk => 0,
|
2286
|
+
:ebs_optimized_available => true,
|
2287
|
+
:instance_store_volumes => 0
|
2288
|
+
},
|
2289
|
+
{
|
2290
|
+
:id => "m5a.24xlarge",
|
2291
|
+
:name => "M5 (AMD) Twenty Four Extra Large",
|
1130
2292
|
:bits => 64,
|
1131
2293
|
:cores => 96,
|
1132
2294
|
:ram => 412316,
|
@@ -1135,98 +2297,98 @@ module Fog
|
|
1135
2297
|
:instance_store_volumes => 0
|
1136
2298
|
},
|
1137
2299
|
{
|
1138
|
-
:id => "
|
1139
|
-
:name => "
|
2300
|
+
:id => "m5ad.large",
|
2301
|
+
:name => "M5ad (AMD) Large",
|
1140
2302
|
:bits => 64,
|
1141
2303
|
:cores => 2,
|
1142
2304
|
:ram => 8589,
|
1143
2305
|
:disk => 75,
|
1144
2306
|
:ebs_optimized_available => true,
|
1145
|
-
:instance_store_volumes =>
|
2307
|
+
:instance_store_volumes => 0
|
1146
2308
|
},
|
1147
2309
|
{
|
1148
|
-
:id => "
|
1149
|
-
:name => "
|
2310
|
+
:id => "m5ad.xlarge",
|
2311
|
+
:name => "M5ad (AMD) Extra Large",
|
1150
2312
|
:bits => 64,
|
1151
2313
|
:cores => 4,
|
1152
2314
|
:ram => 17179,
|
1153
2315
|
:disk => 150,
|
1154
2316
|
:ebs_optimized_available => true,
|
1155
|
-
:instance_store_volumes =>
|
2317
|
+
:instance_store_volumes => 0
|
1156
2318
|
},
|
1157
2319
|
{
|
1158
|
-
:id => "
|
1159
|
-
:name => "
|
2320
|
+
:id => "m5ad.2xlarge",
|
2321
|
+
:name => "M5ad (AMD) Double Extra Large",
|
1160
2322
|
:bits => 64,
|
1161
2323
|
:cores => 8,
|
1162
2324
|
:ram => 34359,
|
1163
2325
|
:disk => 300,
|
1164
2326
|
:ebs_optimized_available => true,
|
1165
|
-
:instance_store_volumes =>
|
2327
|
+
:instance_store_volumes => 0
|
1166
2328
|
},
|
1167
2329
|
{
|
1168
|
-
:id => "
|
1169
|
-
:name => "
|
2330
|
+
:id => "m5ad.4xlarge",
|
2331
|
+
:name => "M5ad (AMD) Quadruple Extra Large",
|
1170
2332
|
:bits => 64,
|
1171
2333
|
:cores => 16,
|
1172
2334
|
:ram => 68719,
|
1173
2335
|
:disk => 600,
|
1174
2336
|
:ebs_optimized_available => true,
|
1175
|
-
:instance_store_volumes =>
|
2337
|
+
:instance_store_volumes => 0
|
1176
2338
|
},
|
1177
2339
|
{
|
1178
|
-
:id => "
|
1179
|
-
:name => "
|
2340
|
+
:id => "m5ad.12xlarge",
|
2341
|
+
:name => "M5ad (AMD) Twelve Extra Large",
|
1180
2342
|
:bits => 64,
|
1181
2343
|
:cores => 48,
|
1182
2344
|
:ram => 206158,
|
1183
2345
|
:disk => 1800,
|
1184
2346
|
:ebs_optimized_available => true,
|
1185
|
-
:instance_store_volumes =>
|
2347
|
+
:instance_store_volumes => 0
|
1186
2348
|
},
|
1187
2349
|
{
|
1188
|
-
:id => "
|
1189
|
-
:name => "
|
2350
|
+
:id => "m5ad.24xlarge",
|
2351
|
+
:name => "M5ad (AMD) Twenty-four Extra Large",
|
1190
2352
|
:bits => 64,
|
1191
2353
|
:cores => 96,
|
1192
2354
|
:ram => 412316,
|
1193
2355
|
:disk => 3600,
|
1194
2356
|
:ebs_optimized_available => true,
|
1195
|
-
:instance_store_volumes =>
|
2357
|
+
:instance_store_volumes => 0
|
1196
2358
|
},
|
1197
2359
|
{
|
1198
|
-
:id => "
|
1199
|
-
:name => "
|
2360
|
+
:id => "m5n.large",
|
2361
|
+
:name => "M5n Large",
|
1200
2362
|
:bits => 64,
|
1201
2363
|
:cores => 2,
|
1202
|
-
:ram =>
|
2364
|
+
:ram => 8590,
|
1203
2365
|
:disk => 0,
|
1204
2366
|
:ebs_optimized_available => true,
|
1205
2367
|
:instance_store_volumes => 0
|
1206
2368
|
},
|
1207
2369
|
{
|
1208
|
-
:id => "
|
1209
|
-
:name => "
|
2370
|
+
:id => "m5n.xlarge",
|
2371
|
+
:name => "M5n Extra Large",
|
1210
2372
|
:bits => 64,
|
1211
2373
|
:cores => 4,
|
1212
|
-
:ram =>
|
2374
|
+
:ram => 17180,
|
1213
2375
|
:disk => 0,
|
1214
2376
|
:ebs_optimized_available => true,
|
1215
2377
|
:instance_store_volumes => 0
|
1216
2378
|
},
|
1217
2379
|
{
|
1218
|
-
:id => "
|
1219
|
-
:name => "
|
2380
|
+
:id => "m5n.2xlarge",
|
2381
|
+
:name => "M5n Double Extra Large",
|
1220
2382
|
:bits => 64,
|
1221
2383
|
:cores => 8,
|
1222
|
-
:ram =>
|
2384
|
+
:ram => 34360,
|
1223
2385
|
:disk => 0,
|
1224
2386
|
:ebs_optimized_available => true,
|
1225
2387
|
:instance_store_volumes => 0
|
1226
2388
|
},
|
1227
2389
|
{
|
1228
|
-
:id => "
|
1229
|
-
:name => "
|
2390
|
+
:id => "m5n.4xlarge",
|
2391
|
+
:name => "M5n Quadruple Extra Large",
|
1230
2392
|
:bits => 64,
|
1231
2393
|
:cores => 16,
|
1232
2394
|
:ram => 68719,
|
@@ -1235,8 +2397,18 @@ module Fog
|
|
1235
2397
|
:instance_store_volumes => 0
|
1236
2398
|
},
|
1237
2399
|
{
|
1238
|
-
:id => "
|
1239
|
-
:name => "
|
2400
|
+
:id => "m5n.8xlarge",
|
2401
|
+
:name => "M5n Octuple Extra Large",
|
2402
|
+
:bits => 64,
|
2403
|
+
:cores => 32,
|
2404
|
+
:ram => 137439,
|
2405
|
+
:disk => 0,
|
2406
|
+
:ebs_optimized_available => true,
|
2407
|
+
:instance_store_volumes => 0
|
2408
|
+
},
|
2409
|
+
{
|
2410
|
+
:id => "m5n.12xlarge",
|
2411
|
+
:name => "M5n Twelve Extra Large",
|
1240
2412
|
:bits => 64,
|
1241
2413
|
:cores => 48,
|
1242
2414
|
:ram => 206158,
|
@@ -1245,15 +2417,105 @@ module Fog
|
|
1245
2417
|
:instance_store_volumes => 0
|
1246
2418
|
},
|
1247
2419
|
{
|
1248
|
-
:id => "
|
1249
|
-
:name => "
|
2420
|
+
:id => "m5n.16xlarge",
|
2421
|
+
:name => "M5n Sixteen Extra Large",
|
2422
|
+
:bits => 64,
|
2423
|
+
:cores => 64,
|
2424
|
+
:ram => 274878,
|
2425
|
+
:disk => 0,
|
2426
|
+
:ebs_optimized_available => true,
|
2427
|
+
:instance_store_volumes => 0
|
2428
|
+
},
|
2429
|
+
{
|
2430
|
+
:id => "m5n.24xlarge",
|
2431
|
+
:name => "M5n Twenty-Four Extra Large",
|
1250
2432
|
:bits => 64,
|
1251
2433
|
:cores => 96,
|
1252
|
-
:ram =>
|
2434
|
+
:ram => 412317,
|
1253
2435
|
:disk => 0,
|
1254
2436
|
:ebs_optimized_available => true,
|
1255
2437
|
:instance_store_volumes => 0
|
1256
2438
|
},
|
2439
|
+
{
|
2440
|
+
:id => "m5dn.large",
|
2441
|
+
:name => "M5dn Large",
|
2442
|
+
:bits => 64,
|
2443
|
+
:cores => 2,
|
2444
|
+
:ram => 8590,
|
2445
|
+
:disk => 75,
|
2446
|
+
:ebs_optimized_available => true,
|
2447
|
+
:instance_store_volumes => 1
|
2448
|
+
},
|
2449
|
+
{
|
2450
|
+
:id => "m5dn.xlarge",
|
2451
|
+
:name => "M5dn Extra Large",
|
2452
|
+
:bits => 64,
|
2453
|
+
:cores => 4,
|
2454
|
+
:ram => 17180,
|
2455
|
+
:disk => 150,
|
2456
|
+
:ebs_optimized_available => true,
|
2457
|
+
:instance_store_volumes => 1
|
2458
|
+
},
|
2459
|
+
{
|
2460
|
+
:id => "m5dn.2xlarge",
|
2461
|
+
:name => "M5dn Double Extra Large",
|
2462
|
+
:bits => 64,
|
2463
|
+
:cores => 8,
|
2464
|
+
:ram => 34360,
|
2465
|
+
:disk => 300,
|
2466
|
+
:ebs_optimized_available => true,
|
2467
|
+
:instance_store_volumes => 1
|
2468
|
+
},
|
2469
|
+
{
|
2470
|
+
:id => "m5dn.4xlarge",
|
2471
|
+
:name => "M5dn Quadruple Extra Large",
|
2472
|
+
:bits => 64,
|
2473
|
+
:cores => 16,
|
2474
|
+
:ram => 68719,
|
2475
|
+
:disk => 600,
|
2476
|
+
:ebs_optimized_available => true,
|
2477
|
+
:instance_store_volumes => 2
|
2478
|
+
},
|
2479
|
+
{
|
2480
|
+
:id => "m5dn.8xlarge",
|
2481
|
+
:name => "M5dn Octuple Extra Large",
|
2482
|
+
:bits => 64,
|
2483
|
+
:cores => 32,
|
2484
|
+
:ram => 137439,
|
2485
|
+
:disk => 1200,
|
2486
|
+
:ebs_optimized_available => true,
|
2487
|
+
:instance_store_volumes => 2
|
2488
|
+
},
|
2489
|
+
{
|
2490
|
+
:id => "m5dn.12xlarge",
|
2491
|
+
:name => "M5dn Twelve Extra Large",
|
2492
|
+
:bits => 64,
|
2493
|
+
:cores => 48,
|
2494
|
+
:ram => 206158,
|
2495
|
+
:disk => 1800,
|
2496
|
+
:ebs_optimized_available => true,
|
2497
|
+
:instance_store_volumes => 2
|
2498
|
+
},
|
2499
|
+
{
|
2500
|
+
:id => "m5dn.16xlarge",
|
2501
|
+
:name => "M5dn Sixteen Extra Large",
|
2502
|
+
:bits => 64,
|
2503
|
+
:cores => 64,
|
2504
|
+
:ram => 274878,
|
2505
|
+
:disk => 2400,
|
2506
|
+
:ebs_optimized_available => true,
|
2507
|
+
:instance_store_volumes => 4
|
2508
|
+
},
|
2509
|
+
{
|
2510
|
+
:id => "m5dn.24xlarge",
|
2511
|
+
:name => "M5dn Twenty-Four Extra Large",
|
2512
|
+
:bits => 64,
|
2513
|
+
:cores => 96,
|
2514
|
+
:ram => 412317,
|
2515
|
+
:disk => 3600,
|
2516
|
+
:ebs_optimized_available => true,
|
2517
|
+
:instance_store_volumes => 4
|
2518
|
+
},
|
1257
2519
|
{
|
1258
2520
|
:id => "p2.xlarge",
|
1259
2521
|
:name => "General Purpose GPU Extra Large",
|
@@ -1314,6 +2576,66 @@ module Fog
|
|
1314
2576
|
:ebs_optimized_available => true,
|
1315
2577
|
:instance_store_volumes => 0
|
1316
2578
|
},
|
2579
|
+
{
|
2580
|
+
:id => "p3dn.24xlarge",
|
2581
|
+
:name => "Tesla GPU Twenty-four Extra Large",
|
2582
|
+
:bits => 64,
|
2583
|
+
:cores => 96,
|
2584
|
+
:ram => 824634,
|
2585
|
+
:disk => 1800,
|
2586
|
+
:ebs_optimized_available => true,
|
2587
|
+
:instance_store_volumes => 2
|
2588
|
+
},
|
2589
|
+
{
|
2590
|
+
:id => 'inf1.xlarge',
|
2591
|
+
:name => 'Inf1 Extra Large',
|
2592
|
+
:bits => 64,
|
2593
|
+
:cores => 4,
|
2594
|
+
:disk => 0,
|
2595
|
+
:ram => 8590,
|
2596
|
+
:ebs_optimized_available => true,
|
2597
|
+
:instance_store_volumes => 0
|
2598
|
+
},
|
2599
|
+
{
|
2600
|
+
:id => 'inf1.2xlarge',
|
2601
|
+
:name => 'Inf1 Double xtra Large',
|
2602
|
+
:bits => 64,
|
2603
|
+
:cores => 8,
|
2604
|
+
:disk => 0,
|
2605
|
+
:ram => 17180,
|
2606
|
+
:ebs_optimized_available => true,
|
2607
|
+
:instance_store_volumes => 0
|
2608
|
+
},
|
2609
|
+
{
|
2610
|
+
:id => 'inf1.6xlarge',
|
2611
|
+
:name => 'Inf1 Sextuple Extra Large',
|
2612
|
+
:bits => 64,
|
2613
|
+
:cores => 24,
|
2614
|
+
:disk => 0,
|
2615
|
+
:ram => 51540,
|
2616
|
+
:ebs_optimized_available => true,
|
2617
|
+
:instance_store_volumes => 0
|
2618
|
+
},
|
2619
|
+
{
|
2620
|
+
:id => 'inf1.24xlarge',
|
2621
|
+
:name => 'Inf1 Twenty-four Extra Large',
|
2622
|
+
:bits => 64,
|
2623
|
+
:cores => 96,
|
2624
|
+
:disk => 0,
|
2625
|
+
:ram => 206158,
|
2626
|
+
:ebs_optimized_available => true,
|
2627
|
+
:instance_store_volumes => 0
|
2628
|
+
},
|
2629
|
+
{
|
2630
|
+
:id => 'g3s.xlarge',
|
2631
|
+
:name => 'G3s Extra Large',
|
2632
|
+
:bits => 64,
|
2633
|
+
:cores => 4,
|
2634
|
+
:disk => 0,
|
2635
|
+
:ram => 32749,
|
2636
|
+
:ebs_optimized_available => true,
|
2637
|
+
:instance_store_volumes => 0
|
2638
|
+
},
|
1317
2639
|
{
|
1318
2640
|
:id => 'g3.4xlarge',
|
1319
2641
|
:name => 'G3 Quadruple Extra Large',
|
@@ -1343,6 +2665,106 @@ module Fog
|
|
1343
2665
|
:ram => 523986,
|
1344
2666
|
:ebs_optimized_available => true,
|
1345
2667
|
:instance_store_volumes => 0
|
2668
|
+
},
|
2669
|
+
{
|
2670
|
+
:id => 'g3dn.xlarge',
|
2671
|
+
:name => 'G3dn Extra Large',
|
2672
|
+
:bits => 64,
|
2673
|
+
:cores => 4,
|
2674
|
+
:disk => 125,
|
2675
|
+
:ram => 171780,
|
2676
|
+
:ebs_optimized_available => true,
|
2677
|
+
:instance_store_volumes => 1
|
2678
|
+
},
|
2679
|
+
{
|
2680
|
+
:id => 'g3dn.2xlarge',
|
2681
|
+
:name => 'G3dn Double Extra Large',
|
2682
|
+
:bits => 64,
|
2683
|
+
:cores => 8,
|
2684
|
+
:disk => 225,
|
2685
|
+
:ram => 34360,
|
2686
|
+
:ebs_optimized_available => true,
|
2687
|
+
:instance_store_volumes => 1
|
2688
|
+
},
|
2689
|
+
{
|
2690
|
+
:id => 'g3dn.4xlarge',
|
2691
|
+
:name => 'G3dn Quadruple Extra Large',
|
2692
|
+
:bits => 64,
|
2693
|
+
:cores => 16,
|
2694
|
+
:disk => 225,
|
2695
|
+
:ram => 68719,
|
2696
|
+
:ebs_optimized_available => true,
|
2697
|
+
:instance_store_volumes => 1
|
2698
|
+
},
|
2699
|
+
{
|
2700
|
+
:id => 'g3dn.8xlarge',
|
2701
|
+
:name => 'G3dn Octuple Extra Large',
|
2702
|
+
:bits => 64,
|
2703
|
+
:cores => 32,
|
2704
|
+
:disk => 900,
|
2705
|
+
:ram => 137439,
|
2706
|
+
:ebs_optimized_available => true,
|
2707
|
+
:instance_store_volumes => 1
|
2708
|
+
},
|
2709
|
+
{
|
2710
|
+
:id => 'g3dn.16xlarge',
|
2711
|
+
:name => 'G3dn Sixteen Extra Large',
|
2712
|
+
:bits => 64,
|
2713
|
+
:cores => 64,
|
2714
|
+
:disk => 900,
|
2715
|
+
:ram => 274878,
|
2716
|
+
:ebs_optimized_available => true,
|
2717
|
+
:instance_store_volumes => 1
|
2718
|
+
},
|
2719
|
+
{
|
2720
|
+
:id => 'g3dn.12xlarge',
|
2721
|
+
:name => 'G3dn Twelve Extra Large (4GPU)',
|
2722
|
+
:bits => 64,
|
2723
|
+
:cores => 48,
|
2724
|
+
:disk => 900,
|
2725
|
+
:ram => 206158,
|
2726
|
+
:ebs_optimized_available => true,
|
2727
|
+
:instance_store_volumes => 1
|
2728
|
+
},
|
2729
|
+
{
|
2730
|
+
:id => 'g3dn.metal',
|
2731
|
+
:name => 'G3dn Metal (8GPU)',
|
2732
|
+
:bits => 64,
|
2733
|
+
:cores => 96,
|
2734
|
+
:disk => 1800,
|
2735
|
+
:ram => 412317,
|
2736
|
+
:ebs_optimized_available => true,
|
2737
|
+
:instance_store_volumes => 2
|
2738
|
+
},
|
2739
|
+
{
|
2740
|
+
:id => 'f1.2xlarge',
|
2741
|
+
:name => 'F1 Double Extra Large',
|
2742
|
+
:bits => 64,
|
2743
|
+
:cores => 8,
|
2744
|
+
:disk => 470,
|
2745
|
+
:ram => 130997,
|
2746
|
+
:ebs_optimized_available => true,
|
2747
|
+
:instance_store_volumes => 1
|
2748
|
+
},
|
2749
|
+
{
|
2750
|
+
:id => 'f1.4xlarge',
|
2751
|
+
:name => 'F1 Quadruple Extra Large',
|
2752
|
+
:bits => 64,
|
2753
|
+
:cores => 16,
|
2754
|
+
:disk => 940,
|
2755
|
+
:ram => 261993,
|
2756
|
+
:ebs_optimized_available => true,
|
2757
|
+
:instance_store_volumes => 1
|
2758
|
+
},
|
2759
|
+
{
|
2760
|
+
:id => 'f1.16xlarge',
|
2761
|
+
:name => 'F1 Sixteen Extra Large',
|
2762
|
+
:bits => 64,
|
2763
|
+
:cores => 64,
|
2764
|
+
:disk => 3760,
|
2765
|
+
:ram => 1047972,
|
2766
|
+
:ebs_optimized_available => true,
|
2767
|
+
:instance_store_volumes => 4
|
1346
2768
|
}
|
1347
2769
|
]
|
1348
2770
|
|