aws-sdk-ec2 1.243.0 → 1.244.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +267 -51
- data/lib/aws-sdk-ec2/client_api.rb +81 -0
- data/lib/aws-sdk-ec2/instance.rb +3 -2
- data/lib/aws-sdk-ec2/network_interface.rb +5 -4
- data/lib/aws-sdk-ec2/resource.rb +15 -9
- data/lib/aws-sdk-ec2/subnet.rb +9 -5
- data/lib/aws-sdk-ec2/types.rb +314 -35
- data/lib/aws-sdk-ec2/vpc.rb +4 -4
- data/lib/aws-sdk-ec2/vpc_address.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -1489,7 +1489,7 @@ module Aws::EC2
|
|
1489
1489
|
#
|
1490
1490
|
# * `network-interface-id` - The ID of the network interface.
|
1491
1491
|
#
|
1492
|
-
# * `owner-id` - The
|
1492
|
+
# * `owner-id` - The account ID of the network interface owner.
|
1493
1493
|
#
|
1494
1494
|
# * `private-ip-address` - The private IPv4 address or addresses of the
|
1495
1495
|
# network interface.
|
@@ -1497,11 +1497,11 @@ module Aws::EC2
|
|
1497
1497
|
# * `private-dns-name` - The private DNS name of the network interface
|
1498
1498
|
# (IPv4).
|
1499
1499
|
#
|
1500
|
-
# * `requester-id` - The alias or
|
1501
|
-
#
|
1500
|
+
# * `requester-id` - The alias or account ID of the principal or service
|
1501
|
+
# that created the network interface.
|
1502
1502
|
#
|
1503
1503
|
# * `requester-managed` - Indicates whether the network interface is
|
1504
|
-
# being managed by an
|
1504
|
+
# being managed by an Amazon Web Service (for example, Management
|
1505
1505
|
# Console, Auto Scaling, and so on).
|
1506
1506
|
#
|
1507
1507
|
# * `source-dest-check` - Indicates whether the network interface
|
@@ -66,7 +66,7 @@ module Aws::EC2
|
|
66
66
|
data[:network_interface_id]
|
67
67
|
end
|
68
68
|
|
69
|
-
# The ID of the
|
69
|
+
# The ID of the account that owns the network interface.
|
70
70
|
# @return [String]
|
71
71
|
def network_interface_owner_id
|
72
72
|
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.244.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-06-
|
11
|
+
date: 2021-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|