aws-sdk-ec2 1.479.0 → 1.481.0

Sign up to get free protection for your applications and to get access to all the features.
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 +3074 -2792
  6. data/lib/aws-sdk-ec2/client_api.rb +562 -438
  7. data/lib/aws-sdk-ec2/dhcp_options.rb +6 -6
  8. data/lib/aws-sdk-ec2/endpoints.rb +55 -0
  9. data/lib/aws-sdk-ec2/image.rb +82 -82
  10. data/lib/aws-sdk-ec2/instance.rb +291 -289
  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 +11 -14
  16. data/lib/aws-sdk-ec2/plugins/endpoints.rb +10 -0
  17. data/lib/aws-sdk-ec2/resource.rb +594 -602
  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 +279 -287
  23. data/lib/aws-sdk-ec2/types.rb +3640 -3368
  24. data/lib/aws-sdk-ec2/volume.rb +93 -93
  25. data/lib/aws-sdk-ec2/vpc.rb +143 -146
  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 +948 -881
  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 +525 -443
  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: 13dac8eb8863bcb538d03bab883f078f8ac4f08bae07dc004e6b36299fa6b223
4
- data.tar.gz: 9a68efae94878e6bc00e1d8942c1362316afbeb093a030379f1df0fab250fbfb
3
+ metadata.gz: af4eefd55d40c03b8562e16fdd308d03faaf7e94523d968b69fd2af9d60a6fbd
4
+ data.tar.gz: b49bab3261aea0e482e918fec93c84c11211247ced2c051e1ebafe591d7712f3
5
5
  SHA512:
6
- metadata.gz: 9ce8c6779ea3ab49e26f934baa7a730559d6a5c07fb7daffda1378f0c8da5a6b9452138e2183945fa27b50edc056f19ead6598e5c7df2b75acc0a1efd3ee463d
7
- data.tar.gz: d09d093153c408bfa28ee9d38945b9aa6dad9de0b2a380c6d93e5fb40ac9375a63009edd22d35312d5767127f7fe91e9be69cea539250c8897b21996b19acfcb
6
+ metadata.gz: b5b5730687567641c061bbb5f899f1c4dc6a518db4d041c639ebe09765bdb1c59371aed3c95b230ea55977972e4634dedf2ae487c974b4e055733b89dee01c37
7
+ data.tar.gz: 7bdecce0e4ca4179ff5e2d01ad39c4571c28004e1bbdd9cfbfceb842baab08579b044d3605fadd0834c9ca62988906b55e757e8ccb49bfb7f8e788d9816c0aa0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.481.0 (2024-10-10)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for assigning the billing of shared Amazon EC2 On-Demand Capacity Reservations.
8
+
9
+ 1.480.0 (2024-10-04)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for Amazon EC2.
13
+
4
14
  1.479.0 (2024-10-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.479.0
1
+ 1.481.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)