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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +11 -11
- data/lib/aws-sdk-ec2/client.rb +2723 -2650
- data/lib/aws-sdk-ec2/client_api.rb +459 -436
- data/lib/aws-sdk-ec2/dhcp_options.rb +6 -6
- data/lib/aws-sdk-ec2/endpoints.rb +11 -0
- data/lib/aws-sdk-ec2/image.rb +82 -82
- data/lib/aws-sdk-ec2/instance.rb +304 -304
- data/lib/aws-sdk-ec2/key_pair.rb +12 -12
- data/lib/aws-sdk-ec2/key_pair_info.rb +27 -27
- data/lib/aws-sdk-ec2/network_acl.rb +60 -60
- data/lib/aws-sdk-ec2/network_interface.rb +65 -65
- data/lib/aws-sdk-ec2/placement_group.rb +12 -12
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-ec2/resource.rb +597 -597
- data/lib/aws-sdk-ec2/route.rb +30 -30
- data/lib/aws-sdk-ec2/route_table.rb +37 -37
- data/lib/aws-sdk-ec2/security_group.rb +137 -137
- data/lib/aws-sdk-ec2/snapshot.rb +77 -77
- data/lib/aws-sdk-ec2/subnet.rb +278 -278
- data/lib/aws-sdk-ec2/types.rb +3322 -3269
- data/lib/aws-sdk-ec2/volume.rb +93 -93
- data/lib/aws-sdk-ec2/vpc.rb +143 -143
- data/lib/aws-sdk-ec2/vpc_address.rb +17 -17
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/classic_address.rbs +5 -5
- data/sig/client.rbs +875 -860
- data/sig/dhcp_options.rbs +3 -3
- data/sig/image.rbs +41 -41
- data/sig/instance.rbs +108 -108
- data/sig/key_pair.rbs +6 -6
- data/sig/key_pair_info.rbs +3 -3
- data/sig/network_acl.rbs +16 -16
- data/sig/network_interface.rbs +22 -22
- data/sig/placement_group.rbs +3 -3
- data/sig/resource.rbs +201 -201
- data/sig/route.rbs +9 -9
- data/sig/route_table.rbs +10 -10
- data/sig/security_group.rbs +110 -110
- data/sig/snapshot.rbs +34 -34
- data/sig/subnet.rbs +116 -116
- data/sig/types.rbs +453 -437
- data/sig/volume.rbs +33 -33
- data/sig/vpc.rbs +46 -46
- data/sig/vpc_address.rbs +8 -8
- data/sig/waiters.rbs +113 -113
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13a9557c015f2014711d6197e04e57565fb99127be1e1517b66ae4fe3f211993
|
4
|
+
data.tar.gz: 51dc6363ded214a79125b8d187482d4d0f005a5757b7b71a8b83f8ff5e57ee01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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)
|