aws-sdk-ec2 1.455.0 → 1.457.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3026801536da9e2157d614a8405606bb85b2b5848047718905b5217c9288636
4
- data.tar.gz: 60c50b0970bb87e42dfafc047f88085164da89d04dab858b5bb1d97013a7369a
3
+ metadata.gz: 76014b975628e25477347fdc9e78eea9218c23c15bd67744851b4d391c0d5ceb
4
+ data.tar.gz: 3576cf55e624f067382a81324f2054e25d540513991247d8c3584666bfeba22e
5
5
  SHA512:
6
- metadata.gz: 21c5190881a6abd5ee27152b3ebc1085f40ed943a1af858c9ea450f1dc1bfcab33e58c9d3c3bb906e23670878711f25bd8989e071709389cd6bf33e994258b13
7
- data.tar.gz: b2fe6a2b35d71196d2bced7fd7aac53ddb994086fc38c14aaae8f8e4bbcef0e2a670dec055b56556c1976b910c059bec69094ec8ba1a3dc765cf44d4a0953319
6
+ metadata.gz: c3b1de15800a2546ab668d3da93ca2b273e95ff1d7ba7700e53ce5aa40d85c640bea9aff5892d3795d698488fba67993de9ca70e674ce1c0e3d4c1b37e199ddd
7
+ data.tar.gz: d77485828755830b932413383795d9c24d91120b7cf4bce363d3e9d8f8ec0570024ab39d60da67f8a56f6f8b8130468d10a3cae3057bdfcc295b0663a67f00f6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.457.0 (2024-05-13)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.456.0 (2024-05-08)
10
+ ------------------
11
+
12
+ * Feature - Adding Precision Hardware Clock (PHC) to public API DescribeInstanceTypes
13
+
4
14
  1.455.0 (2024-05-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.455.0
1
+ 1.457.0
@@ -305,8 +305,9 @@ module Aws::EC2
305
305
  #
306
306
  # @option options [String] :sdk_ua_app_id
307
307
  # A unique and opaque application ID that is appended to the
308
- # User-Agent header as app/<sdk_ua_app_id>. It should have a
309
- # maximum length of 50.
308
+ # User-Agent header as app/sdk_ua_app_id. It should have a
309
+ # maximum length of 50. This variable is sourced from environment
310
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
310
311
  #
311
312
  # @option options [String] :secret_access_key
312
313
  #
@@ -25257,6 +25258,7 @@ module Aws::EC2
25257
25258
  # resp.instance_types[0].neuron_info.neuron_devices[0].core_info.version #=> Integer
25258
25259
  # resp.instance_types[0].neuron_info.neuron_devices[0].memory_info.size_in_mi_b #=> Integer
25259
25260
  # resp.instance_types[0].neuron_info.total_neuron_device_memory_in_mi_b #=> Integer
25261
+ # resp.instance_types[0].phc_support #=> String, one of "unsupported", "supported"
25260
25262
  # resp.next_token #=> String
25261
25263
  #
25262
25264
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceTypes AWS API Documentation
@@ -59355,7 +59357,7 @@ module Aws::EC2
59355
59357
  params: params,
59356
59358
  config: config)
59357
59359
  context[:gem_name] = 'aws-sdk-ec2'
59358
- context[:gem_version] = '1.455.0'
59360
+ context[:gem_version] = '1.457.0'
59359
59361
  Seahorse::Client::Request.new(handlers, context)
59360
59362
  end
59361
59363
 
@@ -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.457.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.457.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-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core