aws-sdk-ec2 1.251.0 → 1.255.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +2 -1
- data/lib/aws-sdk-ec2/client.rb +206 -176
- data/lib/aws-sdk-ec2/client_api.rb +3 -0
- data/lib/aws-sdk-ec2/dhcp_options.rb +2 -1
- data/lib/aws-sdk-ec2/instance.rb +2 -1
- data/lib/aws-sdk-ec2/internet_gateway.rb +2 -1
- data/lib/aws-sdk-ec2/key_pair.rb +1 -1
- data/lib/aws-sdk-ec2/key_pair_info.rb +28 -4
- data/lib/aws-sdk-ec2/network_acl.rb +1 -1
- data/lib/aws-sdk-ec2/network_interface.rb +4 -3
- data/lib/aws-sdk-ec2/placement_group.rb +4 -3
- data/lib/aws-sdk-ec2/resource.rb +48 -30
- data/lib/aws-sdk-ec2/route.rb +1 -1
- data/lib/aws-sdk-ec2/route_table.rb +1 -1
- data/lib/aws-sdk-ec2/snapshot.rb +3 -3
- data/lib/aws-sdk-ec2/subnet.rb +12 -10
- data/lib/aws-sdk-ec2/types.rb +183 -120
- data/lib/aws-sdk-ec2/volume.rb +9 -7
- data/lib/aws-sdk-ec2/vpc.rb +29 -23
- data/lib/aws-sdk-ec2/vpc_address.rb +2 -1
- metadata +4 -4
data/lib/aws-sdk-ec2/volume.rb
CHANGED
@@ -646,13 +646,13 @@ module Aws::EC2
|
|
646
646
|
# `false`)
|
647
647
|
#
|
648
648
|
# * `owner-alias` - The owner alias, from an Amazon-maintained list
|
649
|
-
# (`amazon`). This is not the user-configured
|
650
|
-
# the IAM console. We recommend that you use
|
651
|
-
# instead of this filter.
|
652
|
-
#
|
653
|
-
# * `owner-id` - The account ID of the owner. We recommend that you use
|
649
|
+
# (`amazon`). This is not the user-configured Amazon Web Services
|
650
|
+
# account alias set using the IAM console. We recommend that you use
|
654
651
|
# the related parameter instead of this filter.
|
655
652
|
#
|
653
|
+
# * `owner-id` - The Amazon Web Services account ID of the owner. We
|
654
|
+
# recommend that you use the related parameter instead of this filter.
|
655
|
+
#
|
656
656
|
# * `progress` - The progress of the snapshot, as a percentage (for
|
657
657
|
# example, 80%).
|
658
658
|
#
|
@@ -678,9 +678,11 @@ module Aws::EC2
|
|
678
678
|
# * `volume-size` - The size of the volume, in GiB.
|
679
679
|
# @option options [Array<String>] :owner_ids
|
680
680
|
# Scopes the results to snapshots with the specified owners. You can
|
681
|
-
# specify a combination of account IDs, `self`, and
|
681
|
+
# specify a combination of Amazon Web Services account IDs, `self`, and
|
682
|
+
# `amazon`.
|
682
683
|
# @option options [Array<String>] :restorable_by_user_ids
|
683
|
-
# The IDs of the accounts that can create volumes
|
684
|
+
# The IDs of the Amazon Web Services accounts that can create volumes
|
685
|
+
# from the snapshot.
|
684
686
|
# @option options [Array<String>] :snapshot_ids
|
685
687
|
# The snapshot IDs.
|
686
688
|
#
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -53,7 +53,7 @@ module Aws::EC2
|
|
53
53
|
data[:state]
|
54
54
|
end
|
55
55
|
|
56
|
-
# The ID of the account that owns the VPC.
|
56
|
+
# The ID of the Amazon Web Services account that owns the VPC.
|
57
57
|
# @return [String]
|
58
58
|
def owner_id
|
59
59
|
data[:owner_id]
|
@@ -795,9 +795,9 @@ module Aws::EC2
|
|
795
795
|
# If you have the required permissions, the error response is
|
796
796
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
797
797
|
# @option options [String] :peer_owner_id
|
798
|
-
# The account ID of the owner of the accepter VPC.
|
798
|
+
# The Amazon Web Services account ID of the owner of the accepter VPC.
|
799
799
|
#
|
800
|
-
# Default: Your account ID
|
800
|
+
# Default: Your Amazon Web Services account ID
|
801
801
|
# @option options [String] :peer_vpc_id
|
802
802
|
# The ID of the VPC with which you are creating the VPC peering
|
803
803
|
# connection. You must specify this parameter in the request.
|
@@ -840,8 +840,8 @@ module Aws::EC2
|
|
840
840
|
# * `accepter-vpc-info.cidr-block` - The IPv4 CIDR block of the accepter
|
841
841
|
# VPC.
|
842
842
|
#
|
843
|
-
# * `accepter-vpc-info.owner-id` - The ID of the
|
844
|
-
# accepter VPC.
|
843
|
+
# * `accepter-vpc-info.owner-id` - The ID of the Amazon Web Services
|
844
|
+
# account that owns the accepter VPC.
|
845
845
|
#
|
846
846
|
# * `accepter-vpc-info.vpc-id` - The ID of the accepter VPC.
|
847
847
|
#
|
@@ -851,8 +851,8 @@ module Aws::EC2
|
|
851
851
|
# * `requester-vpc-info.cidr-block` - The IPv4 CIDR block of the
|
852
852
|
# requester's VPC.
|
853
853
|
#
|
854
|
-
# * `requester-vpc-info.owner-id` - The ID of the
|
855
|
-
# requester VPC.
|
854
|
+
# * `requester-vpc-info.owner-id` - The ID of the Amazon Web Services
|
855
|
+
# account that owns the requester VPC.
|
856
856
|
#
|
857
857
|
# * `requester-vpc-info.vpc-id` - The ID of the requester VPC.
|
858
858
|
#
|
@@ -1130,7 +1130,8 @@ module Aws::EC2
|
|
1130
1130
|
#
|
1131
1131
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
1132
1132
|
#
|
1133
|
-
# * `owner-id` - The account ID of the instance
|
1133
|
+
# * `owner-id` - The Amazon Web Services account ID of the instance
|
1134
|
+
# owner.
|
1134
1135
|
#
|
1135
1136
|
# * `placement-group-name` - The name of the placement group for the
|
1136
1137
|
# instance.
|
@@ -1158,8 +1159,8 @@ module Aws::EC2
|
|
1158
1159
|
# terminate the instance). Similar to the state-reason-code filter.
|
1159
1160
|
#
|
1160
1161
|
# * `requester-id` - The ID of the entity that launched the instance on
|
1161
|
-
# your behalf (for example, Management Console,
|
1162
|
-
# on).
|
1162
|
+
# your behalf (for example, Amazon Web Services Management Console,
|
1163
|
+
# Auto Scaling, and so on).
|
1163
1164
|
#
|
1164
1165
|
# * `reservation-id` - The ID of the instance's reservation. A
|
1165
1166
|
# reservation ID is created any time you launch an instance. A
|
@@ -1265,7 +1266,8 @@ module Aws::EC2
|
|
1265
1266
|
#
|
1266
1267
|
# * `internet-gateway-id` - The ID of the Internet gateway.
|
1267
1268
|
#
|
1268
|
-
# * `owner-id` - The ID of the account that owns the
|
1269
|
+
# * `owner-id` - The ID of the Amazon Web Services account that owns the
|
1270
|
+
# internet gateway.
|
1269
1271
|
#
|
1270
1272
|
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1271
1273
|
# the resource. Use the tag key in the filter name and the tag value
|
@@ -1361,7 +1363,8 @@ module Aws::EC2
|
|
1361
1363
|
#
|
1362
1364
|
# * `network-acl-id` - The ID of the network ACL.
|
1363
1365
|
#
|
1364
|
-
# * `owner-id` - The ID of the account that owns the
|
1366
|
+
# * `owner-id` - The ID of the Amazon Web Services account that owns the
|
1367
|
+
# network ACL.
|
1365
1368
|
#
|
1366
1369
|
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1367
1370
|
# the resource. Use the tag key in the filter name and the tag value
|
@@ -1488,7 +1491,8 @@ module Aws::EC2
|
|
1488
1491
|
#
|
1489
1492
|
# * `network-interface-id` - The ID of the network interface.
|
1490
1493
|
#
|
1491
|
-
# * `owner-id` - The account ID of the network
|
1494
|
+
# * `owner-id` - The Amazon Web Services account ID of the network
|
1495
|
+
# interface owner.
|
1492
1496
|
#
|
1493
1497
|
# * `private-ip-address` - The private IPv4 address or addresses of the
|
1494
1498
|
# network interface.
|
@@ -1496,12 +1500,12 @@ module Aws::EC2
|
|
1496
1500
|
# * `private-dns-name` - The private DNS name of the network interface
|
1497
1501
|
# (IPv4).
|
1498
1502
|
#
|
1499
|
-
# * `requester-id` - The alias or account ID of the
|
1500
|
-
# that created the network interface.
|
1503
|
+
# * `requester-id` - The alias or Amazon Web Services account ID of the
|
1504
|
+
# principal or service that created the network interface.
|
1501
1505
|
#
|
1502
1506
|
# * `requester-managed` - Indicates whether the network interface is
|
1503
|
-
# being managed by an Amazon Web Service (for example,
|
1504
|
-
# Console, Auto Scaling, and so on).
|
1507
|
+
# being managed by an Amazon Web Service (for example, Amazon Web
|
1508
|
+
# Services Management Console, Auto Scaling, and so on).
|
1505
1509
|
#
|
1506
1510
|
# * `source-dest-check` - Indicates whether the network interface
|
1507
1511
|
# performs source/destination checking. A value of `true` means
|
@@ -1578,8 +1582,8 @@ module Aws::EC2
|
|
1578
1582
|
# * `accepter-vpc-info.cidr-block` - The IPv4 CIDR block of the accepter
|
1579
1583
|
# VPC.
|
1580
1584
|
#
|
1581
|
-
# * `accepter-vpc-info.owner-id` - The ID of the
|
1582
|
-
# accepter VPC.
|
1585
|
+
# * `accepter-vpc-info.owner-id` - The ID of the Amazon Web Services
|
1586
|
+
# account that owns the accepter VPC.
|
1583
1587
|
#
|
1584
1588
|
# * `accepter-vpc-info.vpc-id` - The ID of the accepter VPC.
|
1585
1589
|
#
|
@@ -1589,8 +1593,8 @@ module Aws::EC2
|
|
1589
1593
|
# * `requester-vpc-info.cidr-block` - The IPv4 CIDR block of the
|
1590
1594
|
# requester's VPC.
|
1591
1595
|
#
|
1592
|
-
# * `requester-vpc-info.owner-id` - The ID of the
|
1593
|
-
# requester VPC.
|
1596
|
+
# * `requester-vpc-info.owner-id` - The ID of the Amazon Web Services
|
1597
|
+
# account that owns the requester VPC.
|
1594
1598
|
#
|
1595
1599
|
# * `requester-vpc-info.vpc-id` - The ID of the requester VPC.
|
1596
1600
|
#
|
@@ -1673,7 +1677,8 @@ module Aws::EC2
|
|
1673
1677
|
# route table for the VPC (`true` \| `false`). Route tables that do
|
1674
1678
|
# not have an association ID are not returned in the response.
|
1675
1679
|
#
|
1676
|
-
# * `owner-id` - The ID of the account that owns the
|
1680
|
+
# * `owner-id` - The ID of the Amazon Web Services account that owns the
|
1681
|
+
# route table.
|
1677
1682
|
#
|
1678
1683
|
# * `route-table-id` - The ID of the route table.
|
1679
1684
|
#
|
@@ -1939,7 +1944,8 @@ module Aws::EC2
|
|
1939
1944
|
#
|
1940
1945
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
1941
1946
|
#
|
1942
|
-
# * `owner-id` - The ID of the account that owns the
|
1947
|
+
# * `owner-id` - The ID of the Amazon Web Services account that owns the
|
1948
|
+
# subnet.
|
1943
1949
|
#
|
1944
1950
|
# * `state` - The state of the subnet (`pending` \| `available`).
|
1945
1951
|
#
|
@@ -66,7 +66,8 @@ module Aws::EC2
|
|
66
66
|
data[:network_interface_id]
|
67
67
|
end
|
68
68
|
|
69
|
-
# The ID of the account that owns the network
|
69
|
+
# The ID of the Amazon Web Services account that owns the network
|
70
|
+
# interface.
|
70
71
|
# @return [String]
|
71
72
|
def network_interface_owner_id
|
72
73
|
data[:network_interface_owner_id]
|
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.255.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: 2021-
|
11
|
+
date: 2021-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '3'
|
34
34
|
- - ">="
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: 3.
|
36
|
+
version: 3.119.0
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '3'
|
44
44
|
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 3.
|
46
|
+
version: 3.119.0
|
47
47
|
description: Official AWS Ruby gem for Amazon Elastic Compute Cloud (Amazon EC2).
|
48
48
|
This gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|