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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +5 -1
- data/lib/aws-sdk-ec2/client_api.rb +1 -0
- data/lib/aws-sdk-ec2/types.rb +6 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93d3530ea8803a6c6271b743ec4611e30d04309b31c44a42f93ce64d85a15abb
|
4
|
+
data.tar.gz: 57f72f173612893ff4e471738218c186ae228d71c8d84a227c522cf15529f425
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dec08a296abcd7d746983a21fa92c4593dc8bc772ca7d46fade297e78b29482220350084c626f91cf3ed96424d8234dc6b2433fb70738cfded676c6a15975968
|
7
|
+
data.tar.gz: 1a10283da33cc02da8cfb69fd42b5fd9cade1dd22def5347528cd80534b66da534e4a7ff5e43ec2adc0fe9c81ca1f9b74cbbe036afcb56f3bd4a15cc191702d1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.534.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -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.
|
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"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -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
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