aws-sdk-ec2 1.180.0 → 1.185.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/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +12 -2
- data/lib/aws-sdk-ec2/client.rb +371 -62
- data/lib/aws-sdk-ec2/client_api.rb +127 -2
- data/lib/aws-sdk-ec2/instance.rb +8 -4
- data/lib/aws-sdk-ec2/network_interface_association.rb +6 -0
- data/lib/aws-sdk-ec2/resource.rb +8 -6
- data/lib/aws-sdk-ec2/route.rb +9 -0
- data/lib/aws-sdk-ec2/route_table.rb +6 -0
- data/lib/aws-sdk-ec2/subnet.rb +2 -0
- data/lib/aws-sdk-ec2/types.rb +552 -106
- data/lib/aws-sdk-ec2/vpc.rb +1 -2
- data/lib/aws-sdk-ec2/vpc_address.rb +12 -2
- metadata +2 -2
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -41,8 +41,7 @@ module Aws::EC2
|
|
41
41
|
data[:cidr_block]
|
42
42
|
end
|
43
43
|
|
44
|
-
# The ID of the set of DHCP options you've associated with the VPC
|
45
|
-
# `default` if the default options are associated with the VPC).
|
44
|
+
# The ID of the set of DHCP options you've associated with the VPC.
|
46
45
|
# @return [String]
|
47
46
|
def dhcp_options_id
|
48
47
|
data[:dhcp_options_id]
|
@@ -90,7 +90,8 @@ module Aws::EC2
|
|
90
90
|
data[:public_ipv_4_pool]
|
91
91
|
end
|
92
92
|
|
93
|
-
# The name of the
|
93
|
+
# The name of the unique set of Availability Zones, Local Zones, or
|
94
|
+
# Wavelength Zones from which AWS advertises IP addresses.
|
94
95
|
# @return [String]
|
95
96
|
def network_border_group
|
96
97
|
data[:network_border_group]
|
@@ -108,6 +109,14 @@ module Aws::EC2
|
|
108
109
|
data[:customer_owned_ipv_4_pool]
|
109
110
|
end
|
110
111
|
|
112
|
+
# The carrier IP address associated. This option is only available for
|
113
|
+
# network interfaces which reside in a subnet in a Wavelength Zone (for
|
114
|
+
# example an EC2 instance).
|
115
|
+
# @return [String]
|
116
|
+
def carrier_ip
|
117
|
+
data[:carrier_ip]
|
118
|
+
end
|
119
|
+
|
111
120
|
# @!endgroup
|
112
121
|
|
113
122
|
# @return [Client]
|
@@ -303,7 +312,8 @@ module Aws::EC2
|
|
303
312
|
# @option options [String] :public_ip
|
304
313
|
# \[EC2-Classic\] The Elastic IP address. Required for EC2-Classic.
|
305
314
|
# @option options [String] :network_border_group
|
306
|
-
# The
|
315
|
+
# The set of Availability Zones, Local Zones, or Wavelength Zones from
|
316
|
+
# which AWS advertises IP addresses.
|
307
317
|
#
|
308
318
|
# If you provide an incorrect network border group, you will receive an
|
309
319
|
# `InvalidAddress.NotFound` error. For more information, see [Error
|
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.185.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: 2020-
|
11
|
+
date: 2020-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|