aws-sdk-ec2 1.229.0 → 1.230.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 77ea25f833ca62eb916ca573ad6e6732865239bb79939ee9c3cb93efd5d97680
4
- data.tar.gz: f60bd86857692960d172963785be4ac5f2a2849812603f86e9875417331bc9ed
3
+ metadata.gz: 5a9c5e02df8853670004607b714b5e20f70ad6a4d5d9ca53b3c98448783cef0d
4
+ data.tar.gz: 2b6f327d98c7e63195133c275538a89dc936855faf9c18f71f8ec76c3fc3a012
5
5
  SHA512:
6
- metadata.gz: 418f596612a0bad2a33bbbc427398388325aaa796c5aa1a4c307b638f7e04505cb2c4a5048786b3760500d1869bfe77e702d929c9740cd979ee551d11f9c13a8
7
- data.tar.gz: aaa28fd3a9aaa012cee7b8b4699bed7937dc1fea9179ec278c823ebbd465e6bf223e0d489dce93b9143e6e815aafeaeb0d220512f749a533fd99937097cdc95a
6
+ metadata.gz: d6ffc5a2e80e6d17187c9055fffe2458bbe59a224668ccae7395c997d60e67d2544d3b4b0b63c0203a6be1003d5df1c33f84b9e072d0cb8f1d70717764f165f4
7
+ data.tar.gz: 5badb6f4c305b29018eef6f6452bd545265b58c05f6e18ab94fa0dde6dab84feb577176128df75eaba5fd7597ed26f5a47e073e5f18e1b5f3f747dd247031e3f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.230.0 (2021-03-24)
5
+ ------------------
6
+
7
+ * Feature - maximumEfaInterfaces added to DescribeInstanceTypes API
8
+
4
9
  1.229.0 (2021-03-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.229.0
1
+ 1.230.0
data/lib/aws-sdk-ec2.rb CHANGED
@@ -72,6 +72,6 @@ require_relative 'aws-sdk-ec2/customizations'
72
72
  # @!group service
73
73
  module Aws::EC2
74
74
 
75
- GEM_VERSION = '1.229.0'
75
+ GEM_VERSION = '1.230.0'
76
76
 
77
77
  end
@@ -18116,6 +18116,9 @@ module Aws::EC2
18116
18116
  #
18117
18117
  # * `memory-info.size-in-mib` - The memory size.
18118
18118
  #
18119
+ # * `network-info.efa-info.maximum-efa-interfaces` - The maximum number
18120
+ # of Elastic Fabric Adapters (EFAs) per instance. (`true` \| `false`).
18121
+ #
18119
18122
  # * `network-info.efa-supported` - Indicates whether the instance type
18120
18123
  # supports Elastic Fabric Adapter (EFA) (`true` \| `false`).
18121
18124
  #
@@ -18254,6 +18257,7 @@ module Aws::EC2
18254
18257
  # resp.instance_types[0].network_info.ipv_6_supported #=> Boolean
18255
18258
  # resp.instance_types[0].network_info.ena_support #=> String, one of "unsupported", "supported", "required"
18256
18259
  # resp.instance_types[0].network_info.efa_supported #=> Boolean
18260
+ # resp.instance_types[0].network_info.efa_info.maximum_efa_interfaces #=> Integer
18257
18261
  # resp.instance_types[0].gpu_info.gpus #=> Array
18258
18262
  # resp.instance_types[0].gpu_info.gpus[0].name #=> String
18259
18263
  # resp.instance_types[0].gpu_info.gpus[0].manufacturer #=> String
@@ -41258,7 +41262,7 @@ module Aws::EC2
41258
41262
  params: params,
41259
41263
  config: config)
41260
41264
  context[:gem_name] = 'aws-sdk-ec2'
41261
- context[:gem_version] = '1.229.0'
41265
+ context[:gem_version] = '1.230.0'
41262
41266
  Seahorse::Client::Request.new(handlers, context)
41263
41267
  end
41264
41268
 
@@ -895,6 +895,7 @@ module Aws::EC2
895
895
  EbsNvmeSupport = Shapes::StringShape.new(name: 'EbsNvmeSupport')
896
896
  EbsOptimizedInfo = Shapes::StructureShape.new(name: 'EbsOptimizedInfo')
897
897
  EbsOptimizedSupport = Shapes::StringShape.new(name: 'EbsOptimizedSupport')
898
+ EfaInfo = Shapes::StructureShape.new(name: 'EfaInfo')
898
899
  EfaSupportedFlag = Shapes::BooleanShape.new(name: 'EfaSupportedFlag')
899
900
  EgressOnlyInternetGateway = Shapes::StructureShape.new(name: 'EgressOnlyInternetGateway')
900
901
  EgressOnlyInternetGatewayId = Shapes::StringShape.new(name: 'EgressOnlyInternetGatewayId')
@@ -1407,6 +1408,7 @@ module Aws::EC2
1407
1408
  MaxNetworkInterfaces = Shapes::IntegerShape.new(name: 'MaxNetworkInterfaces')
1408
1409
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
1409
1410
  MaximumBandwidthInMbps = Shapes::IntegerShape.new(name: 'MaximumBandwidthInMbps')
1411
+ MaximumEfaInterfaces = Shapes::IntegerShape.new(name: 'MaximumEfaInterfaces')
1410
1412
  MaximumIops = Shapes::IntegerShape.new(name: 'MaximumIops')
1411
1413
  MaximumNetworkCards = Shapes::IntegerShape.new(name: 'MaximumNetworkCards')
1412
1414
  MaximumThroughputInMBps = Shapes::FloatShape.new(name: 'MaximumThroughputInMBps')
@@ -5859,6 +5861,9 @@ module Aws::EC2
5859
5861
  EbsOptimizedInfo.add_member(:maximum_iops, Shapes::ShapeRef.new(shape: MaximumIops, location_name: "maximumIops"))
5860
5862
  EbsOptimizedInfo.struct_class = Types::EbsOptimizedInfo
5861
5863
 
5864
+ EfaInfo.add_member(:maximum_efa_interfaces, Shapes::ShapeRef.new(shape: MaximumEfaInterfaces, location_name: "maximumEfaInterfaces"))
5865
+ EfaInfo.struct_class = Types::EfaInfo
5866
+
5862
5867
  EgressOnlyInternetGateway.add_member(:attachments, Shapes::ShapeRef.new(shape: InternetGatewayAttachmentList, location_name: "attachmentSet"))
5863
5868
  EgressOnlyInternetGateway.add_member(:egress_only_internet_gateway_id, Shapes::ShapeRef.new(shape: EgressOnlyInternetGatewayId, location_name: "egressOnlyInternetGatewayId"))
5864
5869
  EgressOnlyInternetGateway.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
@@ -8320,6 +8325,7 @@ module Aws::EC2
8320
8325
  NetworkInfo.add_member(:ipv_6_supported, Shapes::ShapeRef.new(shape: Ipv6Flag, location_name: "ipv6Supported"))
8321
8326
  NetworkInfo.add_member(:ena_support, Shapes::ShapeRef.new(shape: EnaSupport, location_name: "enaSupport"))
8322
8327
  NetworkInfo.add_member(:efa_supported, Shapes::ShapeRef.new(shape: EfaSupportedFlag, location_name: "efaSupported"))
8328
+ NetworkInfo.add_member(:efa_info, Shapes::ShapeRef.new(shape: EfaInfo, location_name: "efaInfo"))
8323
8329
  NetworkInfo.struct_class = Types::NetworkInfo
8324
8330
 
8325
8331
  NetworkInsightsAnalysis.add_member(:network_insights_analysis_id, Shapes::ShapeRef.new(shape: NetworkInsightsAnalysisId, location_name: "networkInsightsAnalysisId"))
@@ -17658,6 +17658,10 @@ module Aws::EC2
17658
17658
  #
17659
17659
  # * `memory-info.size-in-mib` - The memory size.
17660
17660
  #
17661
+ # * `network-info.efa-info.maximum-efa-interfaces` - The maximum
17662
+ # number of Elastic Fabric Adapters (EFAs) per instance. (`true` \|
17663
+ # `false`).
17664
+ #
17661
17665
  # * `network-info.efa-supported` - Indicates whether the instance type
17662
17666
  # supports Elastic Fabric Adapter (EFA) (`true` \| `false`).
17663
17667
  #
@@ -26487,6 +26491,20 @@ module Aws::EC2
26487
26491
  include Aws::Structure
26488
26492
  end
26489
26493
 
26494
+ # Describes the Elastic Fabric Adapters for the instance type.
26495
+ #
26496
+ # @!attribute [rw] maximum_efa_interfaces
26497
+ # The maximum number of Elastic Fabric Adapters for the instance type.
26498
+ # @return [Integer]
26499
+ #
26500
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EfaInfo AWS API Documentation
26501
+ #
26502
+ class EfaInfo < Struct.new(
26503
+ :maximum_efa_interfaces)
26504
+ SENSITIVE = []
26505
+ include Aws::Structure
26506
+ end
26507
+
26490
26508
  # Describes an egress-only internet gateway.
26491
26509
  #
26492
26510
  # @!attribute [rw] attachments
@@ -40880,6 +40898,10 @@ module Aws::EC2
40880
40898
  # Indicates whether Elastic Fabric Adapter (EFA) is supported.
40881
40899
  # @return [Boolean]
40882
40900
  #
40901
+ # @!attribute [rw] efa_info
40902
+ # Describes the Elastic Fabric Adapters for the instance type.
40903
+ # @return [Types::EfaInfo]
40904
+ #
40883
40905
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInfo AWS API Documentation
40884
40906
  #
40885
40907
  class NetworkInfo < Struct.new(
@@ -40892,7 +40914,8 @@ module Aws::EC2
40892
40914
  :ipv_6_addresses_per_interface,
40893
40915
  :ipv_6_supported,
40894
40916
  :ena_support,
40895
- :efa_supported)
40917
+ :efa_supported,
40918
+ :efa_info)
40896
40919
  SENSITIVE = []
40897
40920
  include Aws::Structure
40898
40921
  end
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.229.0
4
+ version: 1.230.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: 2021-03-22 00:00:00.000000000 Z
11
+ date: 2021-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4