aws-sdk-ec2 1.480.0 → 1.482.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +313 -41
- data/lib/aws-sdk-ec2/client_api.rb +123 -1
- data/lib/aws-sdk-ec2/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-ec2/endpoints.rb +2 -6906
- data/lib/aws-sdk-ec2/instance.rb +6 -4
- data/lib/aws-sdk-ec2/placement_group.rb +0 -3
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +1 -1262
- data/lib/aws-sdk-ec2/resource.rb +9 -17
- data/lib/aws-sdk-ec2/subnet.rb +1 -9
- data/lib/aws-sdk-ec2/types.rb +373 -94
- data/lib/aws-sdk-ec2/vpc.rb +0 -3
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +67 -0
- data/sig/types.rbs +81 -0
- metadata +4 -4
data/lib/aws-sdk-ec2/instance.rb
CHANGED
@@ -91,9 +91,7 @@ module Aws::EC2
|
|
91
91
|
|
92
92
|
# Deprecated.
|
93
93
|
#
|
94
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
95
|
-
# workloads that require graphics acceleration, we recommend that you
|
96
|
-
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
94
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
97
95
|
#
|
98
96
|
# </note>
|
99
97
|
# @return [Array<Types::ElasticGpuAssociation>]
|
@@ -101,7 +99,11 @@ module Aws::EC2
|
|
101
99
|
data[:elastic_gpu_associations]
|
102
100
|
end
|
103
101
|
|
104
|
-
#
|
102
|
+
# Deprecated
|
103
|
+
#
|
104
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
105
|
+
#
|
106
|
+
# </note>
|
105
107
|
# @return [Array<Types::ElasticInferenceAcceleratorAssociation>]
|
106
108
|
def elastic_inference_accelerator_associations
|
107
109
|
data[:elastic_inference_accelerator_associations]
|
@@ -336,9 +336,6 @@ module Aws::EC2
|
|
336
336
|
# * `iam-instance-profile.id` - The instance profile associated with the
|
337
337
|
# instance. Specified as an ID.
|
338
338
|
#
|
339
|
-
# * `iam-instance-profile.name` - The instance profile associated with
|
340
|
-
# the instance. Specified as an name.
|
341
|
-
#
|
342
339
|
# * `image-id` - The ID of the image used to launch the instance.
|
343
340
|
#
|
344
341
|
# * `instance-id` - The ID of the instance.
|