aws-sdk-ec2 1.455.0 → 1.456.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: f3026801536da9e2157d614a8405606bb85b2b5848047718905b5217c9288636
4
- data.tar.gz: 60c50b0970bb87e42dfafc047f88085164da89d04dab858b5bb1d97013a7369a
3
+ metadata.gz: e5effb071928428fc9b1c9d7aaad4048cecdb54fa15da2212d933140a1e74959
4
+ data.tar.gz: c6846094be83c90db97eb7300600aa0ba1d30e0a989d51f16f0a0c51dc14141d
5
5
  SHA512:
6
- metadata.gz: 21c5190881a6abd5ee27152b3ebc1085f40ed943a1af858c9ea450f1dc1bfcab33e58c9d3c3bb906e23670878711f25bd8989e071709389cd6bf33e994258b13
7
- data.tar.gz: b2fe6a2b35d71196d2bced7fd7aac53ddb994086fc38c14aaae8f8e4bbcef0e2a670dec055b56556c1976b910c059bec69094ec8ba1a3dc765cf44d4a0953319
6
+ metadata.gz: e54f9718e6cd1526579634c31ee1230d4e1fdcd743c23e4319994fc0bee5dbb4285a73fc85598e6eb4d3a0415e6d50cccb99e4e51060144605131c27c90e8e6c
7
+ data.tar.gz: 599df93f2534bb797de71f24a0f2658a888f7d7c9bab4ddd4bb394c872da9074ea263c31c22a4fbe7ecc7747cfe9987f33c0f5f6f44fe3778fe525005d7630cb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.456.0 (2024-05-08)
5
+ ------------------
6
+
7
+ * Feature - Adding Precision Hardware Clock (PHC) to public API DescribeInstanceTypes
8
+
4
9
  1.455.0 (2024-05-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.455.0
1
+ 1.456.0
@@ -25257,6 +25257,7 @@ module Aws::EC2
25257
25257
  # resp.instance_types[0].neuron_info.neuron_devices[0].core_info.version #=> Integer
25258
25258
  # resp.instance_types[0].neuron_info.neuron_devices[0].memory_info.size_in_mi_b #=> Integer
25259
25259
  # resp.instance_types[0].neuron_info.total_neuron_device_memory_in_mi_b #=> Integer
25260
+ # resp.instance_types[0].phc_support #=> String, one of "unsupported", "supported"
25260
25261
  # resp.next_token #=> String
25261
25262
  #
25262
25263
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceTypes AWS API Documentation
@@ -59355,7 +59356,7 @@ module Aws::EC2
59355
59356
  params: params,
59356
59357
  config: config)
59357
59358
  context[:gem_name] = 'aws-sdk-ec2'
59358
- context[:gem_version] = '1.455.0'
59359
+ context[:gem_version] = '1.456.0'
59359
59360
  Seahorse::Client::Request.new(handlers, context)
59360
59361
  end
59361
59362
 
@@ -2369,6 +2369,7 @@ module Aws::EC2
2369
2369
  Phase2IntegrityAlgorithmsListValue = Shapes::StructureShape.new(name: 'Phase2IntegrityAlgorithmsListValue')
2370
2370
  Phase2IntegrityAlgorithmsRequestList = Shapes::ListShape.new(name: 'Phase2IntegrityAlgorithmsRequestList')
2371
2371
  Phase2IntegrityAlgorithmsRequestListValue = Shapes::StructureShape.new(name: 'Phase2IntegrityAlgorithmsRequestListValue')
2372
+ PhcSupport = Shapes::StringShape.new(name: 'PhcSupport')
2372
2373
  Placement = Shapes::StructureShape.new(name: 'Placement')
2373
2374
  PlacementGroup = Shapes::StructureShape.new(name: 'PlacementGroup')
2374
2375
  PlacementGroupArn = Shapes::StringShape.new(name: 'PlacementGroupArn')
@@ -10368,6 +10369,7 @@ module Aws::EC2
10368
10369
  InstanceTypeInfo.add_member(:nitro_tpm_info, Shapes::ShapeRef.new(shape: NitroTpmInfo, location_name: "nitroTpmInfo"))
10369
10370
  InstanceTypeInfo.add_member(:media_accelerator_info, Shapes::ShapeRef.new(shape: MediaAcceleratorInfo, location_name: "mediaAcceleratorInfo"))
10370
10371
  InstanceTypeInfo.add_member(:neuron_info, Shapes::ShapeRef.new(shape: NeuronInfo, location_name: "neuronInfo"))
10372
+ InstanceTypeInfo.add_member(:phc_support, Shapes::ShapeRef.new(shape: PhcSupport, location_name: "phcSupport"))
10371
10373
  InstanceTypeInfo.struct_class = Types::InstanceTypeInfo
10372
10374
 
10373
10375
  InstanceTypeInfoFromInstanceRequirements.add_member(:instance_type, Shapes::ShapeRef.new(shape: String, location_name: "instanceType"))
@@ -41838,6 +41838,11 @@ module Aws::EC2
41838
41838
  # Describes the Neuron accelerator settings for the instance type.
41839
41839
  # @return [Types::NeuronInfo]
41840
41840
  #
41841
+ # @!attribute [rw] phc_support
41842
+ # Indicates whether a local Precision Time Protocol (PTP) hardware
41843
+ # clock (PHC) is supported.
41844
+ # @return [String]
41845
+ #
41841
41846
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceTypeInfo AWS API Documentation
41842
41847
  #
41843
41848
  class InstanceTypeInfo < Struct.new(
@@ -41869,7 +41874,8 @@ module Aws::EC2
41869
41874
  :nitro_tpm_support,
41870
41875
  :nitro_tpm_info,
41871
41876
  :media_accelerator_info,
41872
- :neuron_info)
41877
+ :neuron_info,
41878
+ :phc_support)
41873
41879
  SENSITIVE = []
41874
41880
  include Aws::Structure
41875
41881
  end
data/lib/aws-sdk-ec2.rb CHANGED
@@ -76,6 +76,6 @@ require_relative 'aws-sdk-ec2/customizations'
76
76
  # @!group service
77
77
  module Aws::EC2
78
78
 
79
- GEM_VERSION = '1.455.0'
79
+ GEM_VERSION = '1.456.0'
80
80
 
81
81
  end
data/sig/types.rbs CHANGED
@@ -9213,6 +9213,7 @@ module Aws::EC2
9213
9213
  attr_accessor nitro_tpm_info: Types::NitroTpmInfo
9214
9214
  attr_accessor media_accelerator_info: Types::MediaAcceleratorInfo
9215
9215
  attr_accessor neuron_info: Types::NeuronInfo
9216
+ attr_accessor phc_support: ("unsupported" | "supported")
9216
9217
  SENSITIVE: []
9217
9218
  end
9218
9219
 
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.455.0
4
+ version: 1.456.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: 2024-05-02 00:00:00.000000000 Z
11
+ date: 2024-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core