aws-sdk-ec2 1.411.0 → 1.412.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +0 -4
- data/lib/aws-sdk-ec2/client.rb +145 -58
- data/lib/aws-sdk-ec2/placement_group.rb +80 -21
- data/lib/aws-sdk-ec2/resource.rb +102 -45
- data/lib/aws-sdk-ec2/subnet.rb +102 -45
- data/lib/aws-sdk-ec2/types.rb +248 -65
- data/lib/aws-sdk-ec2/vpc.rb +102 -45
- data/lib/aws-sdk-ec2/vpc_address.rb +0 -4
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -1104,8 +1104,6 @@ module Aws::EC2
|
|
1104
1104
|
# example, `2021-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
|
1105
1105
|
# for example, `2021-09-29T*`, which matches an entire day.
|
1106
1106
|
#
|
1107
|
-
# * `license-pool` -
|
1108
|
-
#
|
1109
1107
|
# * `maintenance-options.auto-recovery` - The current automatic recovery
|
1110
1108
|
# behavior of the instance (`disabled` \| `default`).
|
1111
1109
|
#
|
@@ -1134,25 +1132,37 @@ module Aws::EC2
|
|
1134
1132
|
# * `monitoring-state` - Indicates whether detailed monitoring is
|
1135
1133
|
# enabled (`disabled` \| `enabled`).
|
1136
1134
|
#
|
1137
|
-
# * `network-interface.addresses.
|
1138
|
-
#
|
1139
|
-
# address.
|
1135
|
+
# * `network-interface.addresses.association.allocation-id` - The
|
1136
|
+
# allocation ID.
|
1140
1137
|
#
|
1141
|
-
# * `network-interface.addresses.
|
1142
|
-
#
|
1138
|
+
# * `network-interface.addresses.association.association-id` - The
|
1139
|
+
# association ID.
|
1140
|
+
#
|
1141
|
+
# * `network-interface.addresses.association.carrier-ip` - The carrier
|
1142
|
+
# IP address.
|
1143
|
+
#
|
1144
|
+
# * `network-interface.addresses.association.customer-owned-ip` - The
|
1145
|
+
# customer-owned IP address.
|
1146
|
+
#
|
1147
|
+
# * `network-interface.addresses.association.ip-owner-id` - The owner ID
|
1148
|
+
# of the private IPv4 address associated with the network interface.
|
1149
|
+
#
|
1150
|
+
# * `network-interface.addresses.association.public-dns-name` - The
|
1151
|
+
# public DNS name.
|
1143
1152
|
#
|
1144
1153
|
# * `network-interface.addresses.association.public-ip` - The ID of the
|
1145
1154
|
# association of an Elastic IP address (IPv4) with a network
|
1146
1155
|
# interface.
|
1147
1156
|
#
|
1148
|
-
# * `network-interface.addresses.
|
1149
|
-
# of the
|
1157
|
+
# * `network-interface.addresses.primary` - Specifies whether the IPv4
|
1158
|
+
# address of the network interface is the primary private IPv4
|
1159
|
+
# address.
|
1150
1160
|
#
|
1151
|
-
# * `network-interface.
|
1152
|
-
#
|
1161
|
+
# * `network-interface.addresses.private-dns-name` - The private DNS
|
1162
|
+
# name.
|
1153
1163
|
#
|
1154
|
-
# * `network-interface.
|
1155
|
-
#
|
1164
|
+
# * `network-interface.addresses.private-ip-address` - The private IPv4
|
1165
|
+
# address associated with the network interface.
|
1156
1166
|
#
|
1157
1167
|
# * `network-interface.association.allocation-id` - The allocation ID
|
1158
1168
|
# returned when you allocated the Elastic IP address (IPv4) for your
|
@@ -1162,30 +1172,52 @@ module Aws::EC2
|
|
1162
1172
|
# returned when the network interface was associated with an IPv4
|
1163
1173
|
# address.
|
1164
1174
|
#
|
1175
|
+
# * `network-interface.association.carrier-ip` - The customer-owned IP
|
1176
|
+
# address.
|
1177
|
+
#
|
1178
|
+
# * `network-interface.association.customer-owned-ip` - The
|
1179
|
+
# customer-owned IP address.
|
1180
|
+
#
|
1181
|
+
# * `network-interface.association.ip-owner-id` - The owner of the
|
1182
|
+
# Elastic IP address (IPv4) associated with the network interface.
|
1183
|
+
#
|
1184
|
+
# * `network-interface.association.public-dns-name` - The public DNS
|
1185
|
+
# name.
|
1186
|
+
#
|
1187
|
+
# * `network-interface.association.public-ip` - The address of the
|
1188
|
+
# Elastic IP address (IPv4) bound to the network interface.
|
1189
|
+
#
|
1190
|
+
# * `network-interface.attachment.attach-time` - The time that the
|
1191
|
+
# network interface was attached to an instance.
|
1192
|
+
#
|
1165
1193
|
# * `network-interface.attachment.attachment-id` - The ID of the
|
1166
1194
|
# interface attachment.
|
1167
1195
|
#
|
1196
|
+
# * `network-interface.attachment.delete-on-termination` - Specifies
|
1197
|
+
# whether the attachment is deleted when an instance is terminated.
|
1198
|
+
#
|
1199
|
+
# * `network-interface.attachment.device-index` - The device index to
|
1200
|
+
# which the network interface is attached.
|
1201
|
+
#
|
1168
1202
|
# * `network-interface.attachment.instance-id` - The ID of the instance
|
1169
1203
|
# to which the network interface is attached.
|
1170
1204
|
#
|
1171
1205
|
# * `network-interface.attachment.instance-owner-id` - The owner ID of
|
1172
1206
|
# the instance to which the network interface is attached.
|
1173
1207
|
#
|
1174
|
-
# * `network-interface.attachment.
|
1175
|
-
#
|
1208
|
+
# * `network-interface.attachment.network-card-index` - The index of the
|
1209
|
+
# network card.
|
1176
1210
|
#
|
1177
1211
|
# * `network-interface.attachment.status` - The status of the attachment
|
1178
1212
|
# (`attaching` \| `attached` \| `detaching` \| `detached`).
|
1179
1213
|
#
|
1180
|
-
# * `network-interface.attachment.attach-time` - The time that the
|
1181
|
-
# network interface was attached to an instance.
|
1182
|
-
#
|
1183
|
-
# * `network-interface.attachment.delete-on-termination` - Specifies
|
1184
|
-
# whether the attachment is deleted when an instance is terminated.
|
1185
|
-
#
|
1186
1214
|
# * `network-interface.availability-zone` - The Availability Zone for
|
1187
1215
|
# the network interface.
|
1188
1216
|
#
|
1217
|
+
# * `network-interface.deny-all-igw-traffic` - A Boolean that indicates
|
1218
|
+
# whether a network interface with an IPv6 address is unreachable from
|
1219
|
+
# the public internet.
|
1220
|
+
#
|
1189
1221
|
# * `network-interface.description` - The description of the network
|
1190
1222
|
# interface.
|
1191
1223
|
#
|
@@ -1195,21 +1227,42 @@ module Aws::EC2
|
|
1195
1227
|
# * `network-interface.group-name` - The name of a security group
|
1196
1228
|
# associated with the network interface.
|
1197
1229
|
#
|
1230
|
+
# * `network-interface.ipv4-prefixes.ipv4-prefix` - The IPv4 prefixes
|
1231
|
+
# that are assigned to the network interface.
|
1232
|
+
#
|
1233
|
+
# * `network-interface.ipv6-address` - The IPv6 address associated with
|
1234
|
+
# the network interface.
|
1235
|
+
#
|
1198
1236
|
# * `network-interface.ipv6-addresses.ipv6-address` - The IPv6 address
|
1199
1237
|
# associated with the network interface.
|
1200
1238
|
#
|
1239
|
+
# * `network-interface.ipv6-addresses.is-primary-ipv6` - A Boolean that
|
1240
|
+
# indicates whether this is the primary IPv6 address.
|
1241
|
+
#
|
1242
|
+
# * `network-interface.ipv6-native` - A Boolean that indicates whether
|
1243
|
+
# this is an IPv6 only network interface.
|
1244
|
+
#
|
1245
|
+
# * `network-interface.ipv6-prefixes.ipv6-prefix` - The IPv6 prefix
|
1246
|
+
# assigned to the network interface.
|
1247
|
+
#
|
1201
1248
|
# * `network-interface.mac-address` - The MAC address of the network
|
1202
1249
|
# interface.
|
1203
1250
|
#
|
1204
1251
|
# * `network-interface.network-interface-id` - The ID of the network
|
1205
1252
|
# interface.
|
1206
1253
|
#
|
1254
|
+
# * `network-interface.outpost-arn` - The ARN of the Outpost.
|
1255
|
+
#
|
1207
1256
|
# * `network-interface.owner-id` - The ID of the owner of the network
|
1208
1257
|
# interface.
|
1209
1258
|
#
|
1210
1259
|
# * `network-interface.private-dns-name` - The private DNS name of the
|
1211
1260
|
# network interface.
|
1212
1261
|
#
|
1262
|
+
# * `network-interface.private-ip-address` - The private IPv4 address.
|
1263
|
+
#
|
1264
|
+
# * `network-interface.public-dns-name` - The public DNS name.
|
1265
|
+
#
|
1213
1266
|
# * `network-interface.requester-id` - The requester ID for the network
|
1214
1267
|
# interface.
|
1215
1268
|
#
|
@@ -1228,6 +1281,12 @@ module Aws::EC2
|
|
1228
1281
|
# * `network-interface.subnet-id` - The ID of the subnet for the network
|
1229
1282
|
# interface.
|
1230
1283
|
#
|
1284
|
+
# * `network-interface.tag-key` - The key of a tag assigned to the
|
1285
|
+
# network interface.
|
1286
|
+
#
|
1287
|
+
# * `network-interface.tag-value` - The value of a tag assigned to the
|
1288
|
+
# network interface.
|
1289
|
+
#
|
1231
1290
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
1232
1291
|
# interface.
|
1233
1292
|
#
|
@@ -1575,24 +1634,24 @@ module Aws::EC2
|
|
1575
1634
|
# @option options [Array<Types::Filter>] :filters
|
1576
1635
|
# One or more filters.
|
1577
1636
|
#
|
1578
|
-
# * `
|
1579
|
-
#
|
1637
|
+
# * `association.allocation-id` - The allocation ID returned when you
|
1638
|
+
# allocated the Elastic IP address (IPv4) for your network interface.
|
1580
1639
|
#
|
1581
|
-
# * `
|
1582
|
-
#
|
1640
|
+
# * `association.association-id` - The association ID returned when the
|
1641
|
+
# network interface was associated with an IPv4 address.
|
1642
|
+
#
|
1643
|
+
# * `addresses.association.owner-id` - The owner ID of the addresses
|
1644
|
+
# associated with the network interface.
|
1583
1645
|
#
|
1584
1646
|
# * `addresses.association.public-ip` - The association ID returned when
|
1585
1647
|
# the network interface was associated with the Elastic IP address
|
1586
1648
|
# (IPv4).
|
1587
1649
|
#
|
1588
|
-
# * `addresses.
|
1589
|
-
# associated with the network interface.
|
1590
|
-
#
|
1591
|
-
# * `association.association-id` - The association ID returned when the
|
1592
|
-
# network interface was associated with an IPv4 address.
|
1650
|
+
# * `addresses.primary` - Whether the private IPv4 address is the
|
1651
|
+
# primary IP address associated with the network interface.
|
1593
1652
|
#
|
1594
|
-
# * `
|
1595
|
-
#
|
1653
|
+
# * `addresses.private-ip-address` - The private IPv4 addresses
|
1654
|
+
# associated with the network interface.
|
1596
1655
|
#
|
1597
1656
|
# * `association.ip-owner-id` - The owner of the Elastic IP address
|
1598
1657
|
# (IPv4) associated with the network interface.
|
@@ -1603,11 +1662,11 @@ module Aws::EC2
|
|
1603
1662
|
# * `association.public-dns-name` - The public DNS name for the network
|
1604
1663
|
# interface (IPv4).
|
1605
1664
|
#
|
1606
|
-
# * `attachment.attachment-id` - The ID of the interface attachment.
|
1607
|
-
#
|
1608
1665
|
# * `attachment.attach-time` - The time that the network interface was
|
1609
1666
|
# attached to an instance.
|
1610
1667
|
#
|
1668
|
+
# * `attachment.attachment-id` - The ID of the interface attachment.
|
1669
|
+
#
|
1611
1670
|
# * `attachment.delete-on-termination` - Indicates whether the
|
1612
1671
|
# attachment is deleted when an instance is terminated.
|
1613
1672
|
#
|
@@ -1631,19 +1690,17 @@ module Aws::EC2
|
|
1631
1690
|
# * `group-id` - The ID of a security group associated with the network
|
1632
1691
|
# interface.
|
1633
1692
|
#
|
1634
|
-
# * `group-name` - The name of a security group associated with the
|
1635
|
-
# network interface.
|
1636
|
-
#
|
1637
1693
|
# * `ipv6-addresses.ipv6-address` - An IPv6 address associated with the
|
1638
1694
|
# network interface.
|
1639
1695
|
#
|
1640
1696
|
# * `interface-type` - The type of network interface
|
1641
1697
|
# (`api_gateway_managed` \| `aws_codestar_connections_managed` \|
|
1642
|
-
# `branch` \| `efa` \| `
|
1643
|
-
# `
|
1644
|
-
# `
|
1645
|
-
# `
|
1646
|
-
# `
|
1698
|
+
# `branch` \| `ec2_instance_connect_endpoint` \| `efa` \| `efs` \|
|
1699
|
+
# `gateway_load_balancer` \| `gateway_load_balancer_endpoint` \|
|
1700
|
+
# `global_accelerator_managed` \| `interface` \| `iot_rules_managed`
|
1701
|
+
# \| `lambda` \| `load_balancer` \| `nat_gateway` \|
|
1702
|
+
# `network_load_balancer` \| `quicksight` \| `transit_gateway` \|
|
1703
|
+
# `trunk` \| `vpc_endpoint`).
|
1647
1704
|
#
|
1648
1705
|
# * `mac-address` - The MAC address of the network interface.
|
1649
1706
|
#
|
@@ -1652,12 +1709,12 @@ module Aws::EC2
|
|
1652
1709
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
1653
1710
|
# interface owner.
|
1654
1711
|
#
|
1655
|
-
# * `private-ip-address` - The private IPv4 address or addresses of the
|
1656
|
-
# network interface.
|
1657
|
-
#
|
1658
1712
|
# * `private-dns-name` - The private DNS name of the network interface
|
1659
1713
|
# (IPv4).
|
1660
1714
|
#
|
1715
|
+
# * `private-ip-address` - The private IPv4 address or addresses of the
|
1716
|
+
# network interface.
|
1717
|
+
#
|
1661
1718
|
# * `requester-id` - The alias or Amazon Web Services account ID of the
|
1662
1719
|
# principal or service that created the network interface.
|
1663
1720
|
#
|
@@ -316,10 +316,6 @@ module Aws::EC2
|
|
316
316
|
#
|
317
317
|
# If you provide an incorrect network border group, you receive an
|
318
318
|
# `InvalidAddress.NotFound` error.
|
319
|
-
#
|
320
|
-
# You cannot use a network border group with EC2 Classic. If you attempt
|
321
|
-
# this operation on EC2 classic, you receive an
|
322
|
-
# `InvalidParameterCombination` error.
|
323
319
|
# @option options [Boolean] :dry_run
|
324
320
|
# Checks whether you have the required permissions for the action,
|
325
321
|
# without actually making the request, and provides an error response.
|
data/lib/aws-sdk-ec2.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.412.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|