aws-sdk-ec2 1.479.0 → 1.480.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -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 -2713
  6. data/lib/aws-sdk-ec2/client_api.rb +438 -436
  7. data/lib/aws-sdk-ec2/dhcp_options.rb +6 -6
  8. data/lib/aws-sdk-ec2/image.rb +82 -82
  9. data/lib/aws-sdk-ec2/instance.rb +285 -285
  10. data/lib/aws-sdk-ec2/key_pair.rb +12 -12
  11. data/lib/aws-sdk-ec2/key_pair_info.rb +27 -27
  12. data/lib/aws-sdk-ec2/network_acl.rb +60 -60
  13. data/lib/aws-sdk-ec2/network_interface.rb +65 -65
  14. data/lib/aws-sdk-ec2/placement_group.rb +11 -11
  15. data/lib/aws-sdk-ec2/resource.rb +597 -597
  16. data/lib/aws-sdk-ec2/route.rb +30 -30
  17. data/lib/aws-sdk-ec2/route_table.rb +37 -37
  18. data/lib/aws-sdk-ec2/security_group.rb +137 -137
  19. data/lib/aws-sdk-ec2/snapshot.rb +77 -77
  20. data/lib/aws-sdk-ec2/subnet.rb +276 -276
  21. data/lib/aws-sdk-ec2/types.rb +3284 -3291
  22. data/lib/aws-sdk-ec2/volume.rb +93 -93
  23. data/lib/aws-sdk-ec2/vpc.rb +143 -143
  24. data/lib/aws-sdk-ec2/vpc_address.rb +17 -17
  25. data/lib/aws-sdk-ec2.rb +1 -1
  26. data/sig/classic_address.rbs +5 -5
  27. data/sig/client.rbs +872 -872
  28. data/sig/dhcp_options.rbs +3 -3
  29. data/sig/image.rbs +41 -41
  30. data/sig/instance.rbs +108 -108
  31. data/sig/key_pair.rbs +6 -6
  32. data/sig/key_pair_info.rbs +3 -3
  33. data/sig/network_acl.rbs +16 -16
  34. data/sig/network_interface.rbs +22 -22
  35. data/sig/placement_group.rbs +3 -3
  36. data/sig/resource.rbs +201 -201
  37. data/sig/route.rbs +9 -9
  38. data/sig/route_table.rbs +10 -10
  39. data/sig/security_group.rbs +110 -110
  40. data/sig/snapshot.rbs +34 -34
  41. data/sig/subnet.rbs +116 -116
  42. data/sig/types.rbs +438 -437
  43. data/sig/volume.rbs +33 -33
  44. data/sig/vpc.rbs +46 -46
  45. data/sig/vpc_address.rbs +8 -8
  46. data/sig/waiters.rbs +113 -113
  47. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13dac8eb8863bcb538d03bab883f078f8ac4f08bae07dc004e6b36299fa6b223
4
- data.tar.gz: 9a68efae94878e6bc00e1d8942c1362316afbeb093a030379f1df0fab250fbfb
3
+ metadata.gz: 13a9557c015f2014711d6197e04e57565fb99127be1e1517b66ae4fe3f211993
4
+ data.tar.gz: 51dc6363ded214a79125b8d187482d4d0f005a5757b7b71a8b83f8ff5e57ee01
5
5
  SHA512:
6
- metadata.gz: 9ce8c6779ea3ab49e26f934baa7a730559d6a5c07fb7daffda1378f0c8da5a6b9452138e2183945fa27b50edc056f19ead6598e5c7df2b75acc0a1efd3ee463d
7
- data.tar.gz: d09d093153c408bfa28ee9d38945b9aa6dad9de0b2a380c6d93e5fb40ac9375a63009edd22d35312d5767127f7fe91e9be69cea539250c8897b21996b19acfcb
6
+ metadata.gz: c1120c5ea49fa8d2b41dca560ec71a0e579b40a33fd30b1fdb52f028f08c07b099a45f911f08c8f2fbd360fd01fa4e30020cca1a9b93d03b6fae2bf3a78f5eac
7
+ data.tar.gz: 0d97f56aa8c2e1fa81d11e3d939716926753786be3524b690ec3452968016e387f8c150425d598cf3521fdc94a857ec2c2d6a4e9540b67a0fba14e28933e601a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.479.0 (2024-10-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.479.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)