aws-sdk-ec2 1.127.0 → 1.128.0
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 +4 -4
- data/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +3 -3
- data/lib/aws-sdk-ec2/client_api.rb +1 -1
- data/lib/aws-sdk-ec2/types.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: da9319d62639c6532b654cbae5c5e7d3093eb98f
|
|
4
|
+
data.tar.gz: 4adaabd2af56f38fd713e664d650317e5ce3fd5e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30e7cea1784f674e5c135bd49edc81c603a64f621bd09d34fa56ef13f0cd80f10aec87e8487c19ddc4f6cf83643a4bd45953ffa6ab4db99328a124108ffc1dd1
|
|
7
|
+
data.tar.gz: e6cde7965c29d2a8efe810feae942d667ad4e5616c61147ad42ba83aacf92e1062f18fb3dc8dce1215d842bf76988f94286d023a3a496f583f6fd6aeaf1f203c
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -15630,8 +15630,8 @@ module Aws::EC2
|
|
|
15630
15630
|
# resp.instance_types[0].free_tier_eligible #=> Boolean
|
|
15631
15631
|
# resp.instance_types[0].supported_usage_classes #=> Array
|
|
15632
15632
|
# resp.instance_types[0].supported_usage_classes[0] #=> String, one of "spot", "on-demand"
|
|
15633
|
-
# resp.instance_types[0].
|
|
15634
|
-
# resp.instance_types[0].
|
|
15633
|
+
# resp.instance_types[0].supported_root_device_types #=> Array
|
|
15634
|
+
# resp.instance_types[0].supported_root_device_types[0] #=> String, one of "ebs", "instance-store"
|
|
15635
15635
|
# resp.instance_types[0].bare_metal #=> Boolean
|
|
15636
15636
|
# resp.instance_types[0].hypervisor #=> String, one of "nitro", "xen"
|
|
15637
15637
|
# resp.instance_types[0].processor_info.supported_architectures #=> Array
|
|
@@ -35440,7 +35440,7 @@ module Aws::EC2
|
|
|
35440
35440
|
params: params,
|
|
35441
35441
|
config: config)
|
|
35442
35442
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
35443
|
-
context[:gem_version] = '1.
|
|
35443
|
+
context[:gem_version] = '1.128.0'
|
|
35444
35444
|
Seahorse::Client::Request.new(handlers, context)
|
|
35445
35445
|
end
|
|
35446
35446
|
|
|
@@ -6227,7 +6227,7 @@ module Aws::EC2
|
|
|
6227
6227
|
InstanceTypeInfo.add_member(:current_generation, Shapes::ShapeRef.new(shape: CurrentGenerationFlag, location_name: "currentGeneration"))
|
|
6228
6228
|
InstanceTypeInfo.add_member(:free_tier_eligible, Shapes::ShapeRef.new(shape: FreeTierEligibleFlag, location_name: "freeTierEligible"))
|
|
6229
6229
|
InstanceTypeInfo.add_member(:supported_usage_classes, Shapes::ShapeRef.new(shape: UsageClassTypeList, location_name: "supportedUsageClasses"))
|
|
6230
|
-
InstanceTypeInfo.add_member(:
|
|
6230
|
+
InstanceTypeInfo.add_member(:supported_root_device_types, Shapes::ShapeRef.new(shape: RootDeviceTypeList, location_name: "supportedRootDeviceTypes"))
|
|
6231
6231
|
InstanceTypeInfo.add_member(:bare_metal, Shapes::ShapeRef.new(shape: BareMetalFlag, location_name: "bareMetal"))
|
|
6232
6232
|
InstanceTypeInfo.add_member(:hypervisor, Shapes::ShapeRef.new(shape: InstanceTypeHypervisor, location_name: "hypervisor"))
|
|
6233
6233
|
InstanceTypeInfo.add_member(:processor_info, Shapes::ShapeRef.new(shape: ProcessorInfo, location_name: "processorInfo"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -28309,8 +28309,8 @@ module Aws::EC2
|
|
|
28309
28309
|
# On-Demand.
|
|
28310
28310
|
# @return [Array<String>]
|
|
28311
28311
|
#
|
|
28312
|
-
# @!attribute [rw]
|
|
28313
|
-
# Indicates the supported root
|
|
28312
|
+
# @!attribute [rw] supported_root_device_types
|
|
28313
|
+
# Indicates the supported root device types.
|
|
28314
28314
|
# @return [Array<String>]
|
|
28315
28315
|
#
|
|
28316
28316
|
# @!attribute [rw] bare_metal
|
|
@@ -28390,7 +28390,7 @@ module Aws::EC2
|
|
|
28390
28390
|
:current_generation,
|
|
28391
28391
|
:free_tier_eligible,
|
|
28392
28392
|
:supported_usage_classes,
|
|
28393
|
-
:
|
|
28393
|
+
:supported_root_device_types,
|
|
28394
28394
|
:bare_metal,
|
|
28395
28395
|
:hypervisor,
|
|
28396
28396
|
:processor_info,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ec2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.128.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-12-
|
|
11
|
+
date: 2019-12-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|