aws-sdk-ec2 1.428.0 → 1.429.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: fe9b29cb4a0cc180991e0f35f9705110636f81893f3c704afaba2f1efdd7929d
4
- data.tar.gz: c70fa7b037629e136a4636fc7b447346ab83048ad751345ebd46c45252c4552e
3
+ metadata.gz: 9f204aded62b5c213efa520faf289e3704031c065b9de3467a0ae6f5d285007a
4
+ data.tar.gz: 24efa1a0e2cf7d7521b39410d98a14e74dd3a1de9b01187a9909c84ca7501442
5
5
  SHA512:
6
- metadata.gz: 6e101b388caf00d23df06805813885c8663dc9609a1525c89d941019da72a823a108c5efc2df17b60dd980a1628358231bac7199360c067679dae89e12b05e60
7
- data.tar.gz: e8affbbaf9e64d620701890cf537b67435823477cfa60eb61c60b3cd6a0bcd859f3e6d36615a1d6695a951411f95e53197d935a4d6467fb067432e567911ff9c
6
+ metadata.gz: c4163de66545976a22a84e6f565ed08d416de1d8b1375f66cca50da894fa5950898f80cf93313ba9a3d483fc97408a0902271e85a5db2ec7816c6938958d1105
7
+ data.tar.gz: b3c1f86fbdd7977c35c6d2ea25f7108b53b382605097b4dd70aba8ce3fb53e4dd1237d8c539192d1846f5710574826a6c79760e29e848c419f448b6fb6c95be0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.429.0 (2023-12-06)
5
+ ------------------
6
+
7
+ * Feature - Releasing the new cpuManufacturer attribute within the DescribeInstanceTypes API response which notifies our customers with information on who the Manufacturer is for the processor attached to the instance, for example: Intel.
8
+
4
9
  1.428.0 (2023-12-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.428.0
1
+ 1.429.0
@@ -24952,6 +24952,7 @@ module Aws::EC2
24952
24952
  # resp.instance_types[0].processor_info.sustained_clock_speed_in_ghz #=> Float
24953
24953
  # resp.instance_types[0].processor_info.supported_features #=> Array
24954
24954
  # resp.instance_types[0].processor_info.supported_features[0] #=> String, one of "amd-sev-snp"
24955
+ # resp.instance_types[0].processor_info.manufacturer #=> String
24955
24956
  # resp.instance_types[0].v_cpu_info.default_v_cpus #=> Integer
24956
24957
  # resp.instance_types[0].v_cpu_info.default_cores #=> Integer
24957
24958
  # resp.instance_types[0].v_cpu_info.default_threads_per_core #=> Integer
@@ -58616,7 +58617,7 @@ module Aws::EC2
58616
58617
  params: params,
58617
58618
  config: config)
58618
58619
  context[:gem_name] = 'aws-sdk-ec2'
58619
- context[:gem_version] = '1.428.0'
58620
+ context[:gem_version] = '1.429.0'
58620
58621
  Seahorse::Client::Request.new(handlers, context)
58621
58622
  end
58622
58623
 
@@ -396,6 +396,7 @@ module Aws::EC2
396
396
  CoreCountList = Shapes::ListShape.new(name: 'CoreCountList')
397
397
  CoreNetworkArn = Shapes::StringShape.new(name: 'CoreNetworkArn')
398
398
  CpuManufacturer = Shapes::StringShape.new(name: 'CpuManufacturer')
399
+ CpuManufacturerName = Shapes::StringShape.new(name: 'CpuManufacturerName')
399
400
  CpuManufacturerSet = Shapes::ListShape.new(name: 'CpuManufacturerSet')
400
401
  CpuOptions = Shapes::StructureShape.new(name: 'CpuOptions')
401
402
  CpuOptionsRequest = Shapes::StructureShape.new(name: 'CpuOptionsRequest')
@@ -12595,6 +12596,7 @@ module Aws::EC2
12595
12596
  ProcessorInfo.add_member(:supported_architectures, Shapes::ShapeRef.new(shape: ArchitectureTypeList, location_name: "supportedArchitectures"))
12596
12597
  ProcessorInfo.add_member(:sustained_clock_speed_in_ghz, Shapes::ShapeRef.new(shape: ProcessorSustainedClockSpeed, location_name: "sustainedClockSpeedInGhz"))
12597
12598
  ProcessorInfo.add_member(:supported_features, Shapes::ShapeRef.new(shape: SupportedAdditionalProcessorFeatureList, location_name: "supportedFeatures"))
12599
+ ProcessorInfo.add_member(:manufacturer, Shapes::ShapeRef.new(shape: CpuManufacturerName, location_name: "manufacturer"))
12598
12600
  ProcessorInfo.struct_class = Types::ProcessorInfo
12599
12601
 
12600
12602
  ProductCode.add_member(:product_code_id, Shapes::ShapeRef.new(shape: String, location_name: "productCode"))
@@ -53314,12 +53314,17 @@ module Aws::EC2
53314
53314
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html
53315
53315
  # @return [Array<String>]
53316
53316
  #
53317
+ # @!attribute [rw] manufacturer
53318
+ # The manufacturer of the processor.
53319
+ # @return [String]
53320
+ #
53317
53321
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProcessorInfo AWS API Documentation
53318
53322
  #
53319
53323
  class ProcessorInfo < Struct.new(
53320
53324
  :supported_architectures,
53321
53325
  :sustained_clock_speed_in_ghz,
53322
- :supported_features)
53326
+ :supported_features,
53327
+ :manufacturer)
53323
53328
  SENSITIVE = []
53324
53329
  include Aws::Structure
53325
53330
  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.428.0'
79
+ GEM_VERSION = '1.429.0'
80
80
 
81
81
  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.428.0
4
+ version: 1.429.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-12-05 00:00:00.000000000 Z
11
+ date: 2023-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4