aws-sdk-ec2 1.478.0 → 1.480.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.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +10 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-ec2/classic_address.rb +11 -11
  5. data/lib/aws-sdk-ec2/client.rb +2723 -2650
  6. data/lib/aws-sdk-ec2/client_api.rb +459 -436
  7. data/lib/aws-sdk-ec2/dhcp_options.rb +6 -6
  8. data/lib/aws-sdk-ec2/endpoints.rb +11 -0
  9. data/lib/aws-sdk-ec2/image.rb +82 -82
  10. data/lib/aws-sdk-ec2/instance.rb +304 -304
  11. data/lib/aws-sdk-ec2/key_pair.rb +12 -12
  12. data/lib/aws-sdk-ec2/key_pair_info.rb +27 -27
  13. data/lib/aws-sdk-ec2/network_acl.rb +60 -60
  14. data/lib/aws-sdk-ec2/network_interface.rb +65 -65
  15. data/lib/aws-sdk-ec2/placement_group.rb +12 -12
  16. data/lib/aws-sdk-ec2/plugins/endpoints.rb +2 -0
  17. data/lib/aws-sdk-ec2/resource.rb +597 -597
  18. data/lib/aws-sdk-ec2/route.rb +30 -30
  19. data/lib/aws-sdk-ec2/route_table.rb +37 -37
  20. data/lib/aws-sdk-ec2/security_group.rb +137 -137
  21. data/lib/aws-sdk-ec2/snapshot.rb +77 -77
  22. data/lib/aws-sdk-ec2/subnet.rb +278 -278
  23. data/lib/aws-sdk-ec2/types.rb +3322 -3269
  24. data/lib/aws-sdk-ec2/volume.rb +93 -93
  25. data/lib/aws-sdk-ec2/vpc.rb +143 -143
  26. data/lib/aws-sdk-ec2/vpc_address.rb +17 -17
  27. data/lib/aws-sdk-ec2.rb +1 -1
  28. data/sig/classic_address.rbs +5 -5
  29. data/sig/client.rbs +875 -860
  30. data/sig/dhcp_options.rbs +3 -3
  31. data/sig/image.rbs +41 -41
  32. data/sig/instance.rbs +108 -108
  33. data/sig/key_pair.rbs +6 -6
  34. data/sig/key_pair_info.rbs +3 -3
  35. data/sig/network_acl.rbs +16 -16
  36. data/sig/network_interface.rbs +22 -22
  37. data/sig/placement_group.rbs +3 -3
  38. data/sig/resource.rbs +201 -201
  39. data/sig/route.rbs +9 -9
  40. data/sig/route_table.rbs +10 -10
  41. data/sig/security_group.rbs +110 -110
  42. data/sig/snapshot.rbs +34 -34
  43. data/sig/subnet.rbs +116 -116
  44. data/sig/types.rbs +453 -437
  45. data/sig/volume.rbs +33 -33
  46. data/sig/vpc.rbs +46 -46
  47. data/sig/vpc_address.rbs +8 -8
  48. data/sig/waiters.rbs +113 -113
  49. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 145d71b7ac4ab97601a37f02c73ff951b1baada3b8dd44b6bbfa9a17c58bc7e6
4
- data.tar.gz: 65a1f0ab1fe020bded67c99765c3cdba9226b2a13504f6a0073d936b268f2997
3
+ metadata.gz: 13a9557c015f2014711d6197e04e57565fb99127be1e1517b66ae4fe3f211993
4
+ data.tar.gz: 51dc6363ded214a79125b8d187482d4d0f005a5757b7b71a8b83f8ff5e57ee01
5
5
  SHA512:
6
- metadata.gz: 0d79604a174da4c8091dda481ff60819328f9b6784a8fc093af12feebe172572474bfbf7931055f121f86d82ca9adc0545b5cb37f399de4f9d420242bd96cca4
7
- data.tar.gz: 892cf953eb6bae77f5da1b6e2068d7f05cf6609540686d884fff3435008cf2db418a2d36e15708f951b8adc54fe192b1606809c8d26e5bf18f57f95659f4359f
6
+ metadata.gz: c1120c5ea49fa8d2b41dca560ec71a0e579b40a33fd30b1fdb52f028f08c07b099a45f911f08c8f2fbd360fd01fa4e30020cca1a9b93d03b6fae2bf3a78f5eac
7
+ data.tar.gz: 0d97f56aa8c2e1fa81d11e3d939716926753786be3524b690ec3452968016e387f8c150425d598cf3521fdc94a857ec2c2d6a4e9540b67a0fba14e28933e601a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.480.0 (2024-10-04)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Amazon EC2.
8
+
9
+ 1.479.0 (2024-10-03)
10
+ ------------------
11
+
12
+ * Feature - This release includes a new API for modifying instance cpu-options after launch.
13
+
4
14
  1.478.0 (2024-09-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.478.0
1
+ 1.480.0
@@ -34,12 +34,6 @@ module Aws::EC2
34
34
  @public_ip
35
35
  end
36
36
 
37
- # The ID of the instance that the address is associated with (if any).
38
- # @return [String]
39
- def instance_id
40
- data[:instance_id]
41
- end
42
-
43
37
  # The ID representing the allocation of the address.
44
38
  # @return [String]
45
39
  def allocation_id
@@ -117,6 +111,12 @@ module Aws::EC2
117
111
  data[:carrier_ip]
118
112
  end
119
113
 
114
+ # The ID of the instance that the address is associated with (if any).
115
+ # @return [String]
116
+ def instance_id
117
+ data[:instance_id]
118
+ end
119
+
120
120
  # @!endgroup
121
121
 
122
122
  # @return [Client]
@@ -260,10 +260,10 @@ module Aws::EC2
260
260
  # classic_address.associate({
261
261
  # allocation_id: "AllocationId",
262
262
  # instance_id: "InstanceId",
263
- # allow_reassociation: false,
264
263
  # dry_run: false,
265
264
  # network_interface_id: "NetworkInterfaceId",
266
265
  # private_ip_address: "String",
266
+ # allow_reassociation: false,
267
267
  # })
268
268
  # @param [Hash] options ({})
269
269
  # @option options [String] :allocation_id
@@ -272,10 +272,6 @@ module Aws::EC2
272
272
  # The ID of the instance. The instance must have exactly one attached
273
273
  # network interface. You can specify either the instance ID or the
274
274
  # network interface ID, but not both.
275
- # @option options [Boolean] :allow_reassociation
276
- # Reassociation is automatic, but you can specify false to ensure the
277
- # operation fails if the Elastic IP address is already associated with
278
- # another resource.
279
275
  # @option options [Boolean] :dry_run
280
276
  # Checks whether you have the required permissions for the action,
281
277
  # without actually making the request, and provides an error response.
@@ -291,6 +287,10 @@ module Aws::EC2
291
287
  # The primary or secondary private IP address to associate with the
292
288
  # Elastic IP address. If no private IP address is specified, the Elastic
293
289
  # IP address is associated with the primary private IP address.
290
+ # @option options [Boolean] :allow_reassociation
291
+ # Reassociation is automatic, but you can specify false to ensure the
292
+ # operation fails if the Elastic IP address is already associated with
293
+ # another resource.
294
294
  # @return [Types::AssociateAddressResult]
295
295
  def associate(options = {})
296
296
  options = options.merge(public_ip: @public_ip)