aws-sdk-ec2 1.390.0 → 1.391.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +4 -1
- data/lib/aws-sdk-ec2/client_api.rb +11 -0
- data/lib/aws-sdk-ec2/types.rb +25 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1da97cb3027456916d9cb22f8287a36792baebc5f65ebb3c2ce38761f0c7de5
|
4
|
+
data.tar.gz: 5159bac04dbfa33cec391ac8604db51da22b4029284bb6851d885608a467512f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8ae9461f6ba4d8dccfe78559e067c8b9f5dd56633183616d39d48a0d31a46c461be275daaf4b3a3635d2bbd305957a4575347faf8428e592198a1a6551a773d
|
7
|
+
data.tar.gz: c870130a8b3b77fe10f63efc43318ea3d973a725d9c82306956d1070ba7fe397475b4a903e904a72f149ac65bf7dffcca5f00e77fb78632ba22ba32bc0a3f43c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.391.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -24493,6 +24493,9 @@ module Aws::EC2
|
|
24493
24493
|
# resp.instance_types[0].supported_boot_modes #=> Array
|
24494
24494
|
# resp.instance_types[0].supported_boot_modes[0] #=> String, one of "legacy-bios", "uefi"
|
24495
24495
|
# resp.instance_types[0].nitro_enclaves_support #=> String, one of "unsupported", "supported"
|
24496
|
+
# resp.instance_types[0].nitro_tpm_support #=> String, one of "unsupported", "supported"
|
24497
|
+
# resp.instance_types[0].nitro_tpm_info.supported_versions #=> Array
|
24498
|
+
# resp.instance_types[0].nitro_tpm_info.supported_versions[0] #=> String
|
24496
24499
|
# resp.next_token #=> String
|
24497
24500
|
#
|
24498
24501
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceTypes AWS API Documentation
|
@@ -56709,7 +56712,7 @@ module Aws::EC2
|
|
56709
56712
|
params: params,
|
56710
56713
|
config: config)
|
56711
56714
|
context[:gem_name] = 'aws-sdk-ec2'
|
56712
|
-
context[:gem_version] = '1.
|
56715
|
+
context[:gem_version] = '1.391.0'
|
56713
56716
|
Seahorse::Client::Request.new(handlers, context)
|
56714
56717
|
end
|
56715
56718
|
|
@@ -2169,6 +2169,10 @@ module Aws::EC2
|
|
2169
2169
|
NewDhcpConfigurationList = Shapes::ListShape.new(name: 'NewDhcpConfigurationList')
|
2170
2170
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
2171
2171
|
NitroEnclavesSupport = Shapes::StringShape.new(name: 'NitroEnclavesSupport')
|
2172
|
+
NitroTpmInfo = Shapes::StructureShape.new(name: 'NitroTpmInfo')
|
2173
|
+
NitroTpmSupport = Shapes::StringShape.new(name: 'NitroTpmSupport')
|
2174
|
+
NitroTpmSupportedVersionType = Shapes::StringShape.new(name: 'NitroTpmSupportedVersionType')
|
2175
|
+
NitroTpmSupportedVersionsList = Shapes::ListShape.new(name: 'NitroTpmSupportedVersionsList')
|
2172
2176
|
OccurrenceDayRequestSet = Shapes::ListShape.new(name: 'OccurrenceDayRequestSet')
|
2173
2177
|
OccurrenceDaySet = Shapes::ListShape.new(name: 'OccurrenceDaySet')
|
2174
2178
|
OfferingClassType = Shapes::StringShape.new(name: 'OfferingClassType')
|
@@ -9864,6 +9868,8 @@ module Aws::EC2
|
|
9864
9868
|
InstanceTypeInfo.add_member(:auto_recovery_supported, Shapes::ShapeRef.new(shape: AutoRecoveryFlag, location_name: "autoRecoverySupported"))
|
9865
9869
|
InstanceTypeInfo.add_member(:supported_boot_modes, Shapes::ShapeRef.new(shape: BootModeTypeList, location_name: "supportedBootModes"))
|
9866
9870
|
InstanceTypeInfo.add_member(:nitro_enclaves_support, Shapes::ShapeRef.new(shape: NitroEnclavesSupport, location_name: "nitroEnclavesSupport"))
|
9871
|
+
InstanceTypeInfo.add_member(:nitro_tpm_support, Shapes::ShapeRef.new(shape: NitroTpmSupport, location_name: "nitroTpmSupport"))
|
9872
|
+
InstanceTypeInfo.add_member(:nitro_tpm_info, Shapes::ShapeRef.new(shape: NitroTpmInfo, location_name: "nitroTpmInfo"))
|
9867
9873
|
InstanceTypeInfo.struct_class = Types::InstanceTypeInfo
|
9868
9874
|
|
9869
9875
|
InstanceTypeInfoFromInstanceRequirements.add_member(:instance_type, Shapes::ShapeRef.new(shape: String, location_name: "instanceType"))
|
@@ -11754,6 +11760,11 @@ module Aws::EC2
|
|
11754
11760
|
|
11755
11761
|
NewDhcpConfigurationList.member = Shapes::ShapeRef.new(shape: NewDhcpConfiguration, location_name: "item")
|
11756
11762
|
|
11763
|
+
NitroTpmInfo.add_member(:supported_versions, Shapes::ShapeRef.new(shape: NitroTpmSupportedVersionsList, location_name: "supportedVersions"))
|
11764
|
+
NitroTpmInfo.struct_class = Types::NitroTpmInfo
|
11765
|
+
|
11766
|
+
NitroTpmSupportedVersionsList.member = Shapes::ShapeRef.new(shape: NitroTpmSupportedVersionType, location_name: "item")
|
11767
|
+
|
11757
11768
|
OccurrenceDayRequestSet.member = Shapes::ShapeRef.new(shape: Integer, location_name: "OccurenceDay")
|
11758
11769
|
|
11759
11770
|
OccurrenceDaySet.member = Shapes::ShapeRef.new(shape: Integer, location_name: "item")
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -39458,6 +39458,14 @@ module Aws::EC2
|
|
39458
39458
|
# Indicates whether Nitro Enclaves is supported.
|
39459
39459
|
# @return [String]
|
39460
39460
|
#
|
39461
|
+
# @!attribute [rw] nitro_tpm_support
|
39462
|
+
# Indicates whether NitroTPM is supported.
|
39463
|
+
# @return [String]
|
39464
|
+
#
|
39465
|
+
# @!attribute [rw] nitro_tpm_info
|
39466
|
+
# Describes the supported NitroTPM versions for the instance type.
|
39467
|
+
# @return [Types::NitroTpmInfo]
|
39468
|
+
#
|
39461
39469
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceTypeInfo AWS API Documentation
|
39462
39470
|
#
|
39463
39471
|
class InstanceTypeInfo < Struct.new(
|
@@ -39485,7 +39493,9 @@ module Aws::EC2
|
|
39485
39493
|
:dedicated_hosts_supported,
|
39486
39494
|
:auto_recovery_supported,
|
39487
39495
|
:supported_boot_modes,
|
39488
|
-
:nitro_enclaves_support
|
39496
|
+
:nitro_enclaves_support,
|
39497
|
+
:nitro_tpm_support,
|
39498
|
+
:nitro_tpm_info)
|
39489
39499
|
SENSITIVE = []
|
39490
39500
|
include Aws::Structure
|
39491
39501
|
end
|
@@ -49328,6 +49338,20 @@ module Aws::EC2
|
|
49328
49338
|
include Aws::Structure
|
49329
49339
|
end
|
49330
49340
|
|
49341
|
+
# Describes the supported NitroTPM versions for the instance type.
|
49342
|
+
#
|
49343
|
+
# @!attribute [rw] supported_versions
|
49344
|
+
# Indicates the supported NitroTPM versions.
|
49345
|
+
# @return [Array<String>]
|
49346
|
+
#
|
49347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NitroTpmInfo AWS API Documentation
|
49348
|
+
#
|
49349
|
+
class NitroTpmInfo < Struct.new(
|
49350
|
+
:supported_versions)
|
49351
|
+
SENSITIVE = []
|
49352
|
+
include Aws::Structure
|
49353
|
+
end
|
49354
|
+
|
49331
49355
|
# Describes the options for an OpenID Connect-compatible user-identity
|
49332
49356
|
# trust provider.
|
49333
49357
|
#
|
data/lib/aws-sdk-ec2.rb
CHANGED
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.391.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: 2023-07-
|
11
|
+
date: 2023-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|