aws-sdk-ec2 1.381.0 → 1.383.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 +18 -27
- data/lib/aws-sdk-ec2/client.rb +450 -271
- data/lib/aws-sdk-ec2/client_api.rb +101 -2
- data/lib/aws-sdk-ec2/endpoints.rb +42 -0
- data/lib/aws-sdk-ec2/instance.rb +8 -11
- data/lib/aws-sdk-ec2/network_interface_association.rb +1 -1
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-ec2/resource.rb +31 -37
- data/lib/aws-sdk-ec2/security_group.rb +2 -2
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +3 -3
- data/lib/aws-sdk-ec2/types.rb +337 -70
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- data/lib/aws-sdk-ec2/vpc_address.rb +16 -25
- data/lib/aws-sdk-ec2.rb +1 -1
- 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: 5bfc3fd79febff6f4e759c26ad0afcc3822eeabd987f03feaec7313749a07024
|
4
|
+
data.tar.gz: f0dccb160d4856ff317fd2ba37c15f3d90a006037e89200af275f3da2329bea9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2df820332b4074f4fdb2d6977f0a07f459f2fab927e95139a54b1ac27534f995b810352847c31d2b805fd0889368a0909e24bd6bed9e3dfef74b1001a6f500a
|
7
|
+
data.tar.gz: be192ee7bb827dc32bf598f2b9f377df2f97d1e78ab9310cc6d7b0694f1373a484c1313bcb8684a30f466218f13f1408ad6f3d07d5d53d4e512d3bd7eef844bb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.383.0 (2023-06-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release introduces a new feature, EC2 Instance Connect Endpoint, that enables you to connect to a resource over TCP, without requiring the resource to have a public IPv4 address.
|
8
|
+
|
9
|
+
1.382.0 (2023-06-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Making InstanceTagAttribute as the required parameter for the DeregisterInstanceEventNotificationAttributes and RegisterInstanceEventNotificationAttributes APIs.
|
13
|
+
|
4
14
|
1.381.0 (2023-05-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.383.0
|
@@ -40,22 +40,19 @@ module Aws::EC2
|
|
40
40
|
data[:instance_id]
|
41
41
|
end
|
42
42
|
|
43
|
-
# The ID representing the allocation of the address
|
44
|
-
# EC2-VPC.
|
43
|
+
# The ID representing the allocation of the address.
|
45
44
|
# @return [String]
|
46
45
|
def allocation_id
|
47
46
|
data[:allocation_id]
|
48
47
|
end
|
49
48
|
|
50
|
-
# The ID representing the association of the address with an instance
|
51
|
-
# a VPC.
|
49
|
+
# The ID representing the association of the address with an instance.
|
52
50
|
# @return [String]
|
53
51
|
def association_id
|
54
52
|
data[:association_id]
|
55
53
|
end
|
56
54
|
|
57
|
-
#
|
58
|
-
# EC2-Classic (`standard`) or instances in a VPC (`vpc`).
|
55
|
+
# The network (`vpc`).
|
59
56
|
# @return [String]
|
60
57
|
def domain
|
61
58
|
data[:domain]
|
@@ -270,36 +267,30 @@ module Aws::EC2
|
|
270
267
|
# })
|
271
268
|
# @param [Hash] options ({})
|
272
269
|
# @option options [String] :allocation_id
|
273
|
-
#
|
270
|
+
# The allocation ID. This is required.
|
274
271
|
# @option options [String] :instance_id
|
275
272
|
# The ID of the instance. The instance must have exactly one attached
|
276
|
-
# network interface.
|
277
|
-
#
|
278
|
-
# specify an instance ID and the instance must be in the running state.
|
273
|
+
# network interface. You can specify either the instance ID or the
|
274
|
+
# network interface ID, but not both.
|
279
275
|
# @option options [Boolean] :allow_reassociation
|
280
|
-
#
|
281
|
-
#
|
282
|
-
#
|
283
|
-
# network interface. Otherwise, the operation fails. In a VPC in an
|
284
|
-
# EC2-VPC-only account, reassociation is automatic, therefore you can
|
285
|
-
# specify false to ensure the operation fails if the Elastic IP address
|
286
|
-
# is already associated with another resource.
|
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.
|
287
279
|
# @option options [Boolean] :dry_run
|
288
280
|
# Checks whether you have the required permissions for the action,
|
289
281
|
# without actually making the request, and provides an error response.
|
290
282
|
# If you have the required permissions, the error response is
|
291
283
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
292
284
|
# @option options [String] :network_interface_id
|
293
|
-
#
|
294
|
-
#
|
285
|
+
# The ID of the network interface. If the instance has more than one
|
286
|
+
# network interface, you must specify a network interface ID.
|
295
287
|
#
|
296
|
-
#
|
297
|
-
#
|
288
|
+
# You can specify either the instance ID or the network interface ID,
|
289
|
+
# but not both.
|
298
290
|
# @option options [String] :private_ip_address
|
299
|
-
#
|
300
|
-
#
|
301
|
-
#
|
302
|
-
# address.
|
291
|
+
# The primary or secondary private IP address to associate with the
|
292
|
+
# Elastic IP address. If no private IP address is specified, the Elastic
|
293
|
+
# IP address is associated with the primary private IP address.
|
303
294
|
# @return [Types::AssociateAddressResult]
|
304
295
|
def associate(options = {})
|
305
296
|
options = options.merge(public_ip: @public_ip)
|
@@ -317,7 +308,7 @@ module Aws::EC2
|
|
317
308
|
# })
|
318
309
|
# @param [Hash] options ({})
|
319
310
|
# @option options [String] :association_id
|
320
|
-
#
|
311
|
+
# The association ID. This parameter is required.
|
321
312
|
# @option options [Boolean] :dry_run
|
322
313
|
# Checks whether you have the required permissions for the action,
|
323
314
|
# without actually making the request, and provides an error response.
|
@@ -341,7 +332,7 @@ module Aws::EC2
|
|
341
332
|
# })
|
342
333
|
# @param [Hash] options ({})
|
343
334
|
# @option options [String] :allocation_id
|
344
|
-
#
|
335
|
+
# The allocation ID. This parameter is required.
|
345
336
|
# @option options [String] :network_border_group
|
346
337
|
# The set of Availability Zones, Local Zones, or Wavelength Zones from
|
347
338
|
# which Amazon Web Services advertises IP addresses.
|