aws-sdk-ec2 1.533.0 → 1.534.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: 474327e6ea7ba2514a819e932f476c5e05cb00b91d629dacb832ca7ad776b60e
4
- data.tar.gz: f00f99edbe1112cbf883099496d3aae12f25052ed7d10033d32b768c9c25e732
3
+ metadata.gz: 93d3530ea8803a6c6271b743ec4611e30d04309b31c44a42f93ce64d85a15abb
4
+ data.tar.gz: 57f72f173612893ff4e471738218c186ae228d71c8d84a227c522cf15529f425
5
5
  SHA512:
6
- metadata.gz: 311445ed8d83e35a8df89b923874249ba7648521f69c8025a329224792682fac248d991ccaba5e24a9d429ab51302792e133d749b54553b3e19f2c9772d3d174
7
- data.tar.gz: a9900e1f6a37bb1f259856975053e7fd3ff0a4a7038d6c59b19d6f183b703ce6a91be5bca2b7ee3c06647c8119e4ca80c31671da7108c3e0f7aff05873966f86
6
+ metadata.gz: dec08a296abcd7d746983a21fa92c4593dc8bc772ca7d46fade297e78b29482220350084c626f91cf3ed96424d8234dc6b2433fb70738cfded676c6a15975968
7
+ data.tar.gz: 1a10283da33cc02da8cfb69fd42b5fd9cade1dd22def5347528cd80534b66da534e4a7ff5e43ec2adc0fe9c81ca1f9b74cbbe036afcb56f3bd4a15cc191702d1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.534.0 (2025-07-01)
5
+ ------------------
6
+
7
+ * Feature - Add Context to GetInstanceTypesFromInstanceRequirements API
8
+
4
9
  1.533.0 (2025-06-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.533.0
1
+ 1.534.0
@@ -47081,6 +47081,9 @@ module Aws::EC2
47081
47081
  # The token returned from a previous paginated request. Pagination
47082
47082
  # continues from the end of the items returned by the previous request.
47083
47083
  #
47084
+ # @option params [String] :context
47085
+ # Reserved.
47086
+ #
47084
47087
  # @return [Types::GetInstanceTypesFromInstanceRequirementsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
47085
47088
  #
47086
47089
  # * {Types::GetInstanceTypesFromInstanceRequirementsResult#instance_types #instance_types} => Array<Types::InstanceTypeInfoFromInstanceRequirements>
@@ -47158,6 +47161,7 @@ module Aws::EC2
47158
47161
  # },
47159
47162
  # max_results: 1,
47160
47163
  # next_token: "String",
47164
+ # context: "String",
47161
47165
  # })
47162
47166
  #
47163
47167
  # @example Response structure
@@ -66147,7 +66151,7 @@ module Aws::EC2
66147
66151
  tracer: tracer
66148
66152
  )
66149
66153
  context[:gem_name] = 'aws-sdk-ec2'
66150
- context[:gem_version] = '1.533.0'
66154
+ context[:gem_version] = '1.534.0'
66151
66155
  Seahorse::Client::Request.new(handlers, context)
66152
66156
  end
66153
66157
 
@@ -10236,6 +10236,7 @@ module Aws::EC2
10236
10236
  GetInstanceTypesFromInstanceRequirementsRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, required: true, location_name: "InstanceRequirements"))
10237
10237
  GetInstanceTypesFromInstanceRequirementsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxResults"))
10238
10238
  GetInstanceTypesFromInstanceRequirementsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
10239
+ GetInstanceTypesFromInstanceRequirementsRequest.add_member(:context, Shapes::ShapeRef.new(shape: String, location_name: "Context"))
10239
10240
  GetInstanceTypesFromInstanceRequirementsRequest.struct_class = Types::GetInstanceTypesFromInstanceRequirementsRequest
10240
10241
 
10241
10242
  GetInstanceTypesFromInstanceRequirementsResult.add_member(:instance_types, Shapes::ShapeRef.new(shape: InstanceTypeInfoFromInstanceRequirementsSet, location_name: "instanceTypeSet"))
@@ -39637,6 +39637,10 @@ module Aws::EC2
39637
39637
  # request.
39638
39638
  # @return [String]
39639
39639
  #
39640
+ # @!attribute [rw] context
39641
+ # Reserved.
39642
+ # @return [String]
39643
+ #
39640
39644
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetInstanceTypesFromInstanceRequirementsRequest AWS API Documentation
39641
39645
  #
39642
39646
  class GetInstanceTypesFromInstanceRequirementsRequest < Struct.new(
@@ -39645,7 +39649,8 @@ module Aws::EC2
39645
39649
  :virtualization_types,
39646
39650
  :instance_requirements,
39647
39651
  :max_results,
39648
- :next_token)
39652
+ :next_token,
39653
+ :context)
39649
39654
  SENSITIVE = []
39650
39655
  include Aws::Structure
39651
39656
  end
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.533.0'
81
+ GEM_VERSION = '1.534.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -9777,7 +9777,8 @@ module Aws
9777
9777
  }?
9778
9778
  },
9779
9779
  ?max_results: ::Integer,
9780
- ?next_token: ::String
9780
+ ?next_token: ::String,
9781
+ ?context: ::String
9781
9782
  ) -> _GetInstanceTypesFromInstanceRequirementsResponseSuccess
9782
9783
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInstanceTypesFromInstanceRequirementsResponseSuccess
9783
9784
 
data/sig/types.rbs CHANGED
@@ -8737,6 +8737,7 @@ module Aws::EC2
8737
8737
  attr_accessor instance_requirements: Types::InstanceRequirementsRequest
8738
8738
  attr_accessor max_results: ::Integer
8739
8739
  attr_accessor next_token: ::String
8740
+ attr_accessor context: ::String
8740
8741
  SENSITIVE: []
8741
8742
  end
8742
8743
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.533.0
4
+ version: 1.534.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services