aws-sdk-ec2 1.422.0 → 1.423.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/client.rb +563 -38
- data/lib/aws-sdk-ec2/client_api.rb +258 -1
- data/lib/aws-sdk-ec2/endpoints.rb +84 -0
- data/lib/aws-sdk-ec2/instance.rb +2 -1
- data/lib/aws-sdk-ec2/network_interface.rb +20 -0
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-ec2/resource.rb +26 -4
- data/lib/aws-sdk-ec2/subnet.rb +12 -0
- data/lib/aws-sdk-ec2/types.rb +919 -28
- data/lib/aws-sdk-ec2/vpc.rb +14 -4
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -500,6 +500,10 @@ module Aws::EC2
|
|
500
500
|
# outpost_arn: "String",
|
501
501
|
# dry_run: false,
|
502
502
|
# ipv_6_native: false,
|
503
|
+
# ipv_4_ipam_pool_id: "IpamPoolId",
|
504
|
+
# ipv_4_netmask_length: 1,
|
505
|
+
# ipv_6_ipam_pool_id: "IpamPoolId",
|
506
|
+
# ipv_6_netmask_length: 1,
|
503
507
|
# })
|
504
508
|
# @param [Hash] options ({})
|
505
509
|
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
@@ -531,10 +535,8 @@ module Aws::EC2
|
|
531
535
|
#
|
532
536
|
# This parameter is not supported for an IPv6 only subnet.
|
533
537
|
# @option options [String] :ipv_6_cidr_block
|
534
|
-
# The IPv6 network range for the subnet, in CIDR notation.
|
535
|
-
#
|
536
|
-
#
|
537
|
-
# This parameter is required for an IPv6 only subnet.
|
538
|
+
# The IPv6 network range for the subnet, in CIDR notation. This
|
539
|
+
# parameter is required for an IPv6 only subnet.
|
538
540
|
# @option options [String] :outpost_arn
|
539
541
|
# The Amazon Resource Name (ARN) of the Outpost. If you specify an
|
540
542
|
# Outpost ARN, you must also specify the Availability Zone of the
|
@@ -546,6 +548,14 @@ module Aws::EC2
|
|
546
548
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
547
549
|
# @option options [Boolean] :ipv_6_native
|
548
550
|
# Indicates whether to create an IPv6 only subnet.
|
551
|
+
# @option options [String] :ipv_4_ipam_pool_id
|
552
|
+
# An IPv4 IPAM pool ID for the subnet.
|
553
|
+
# @option options [Integer] :ipv_4_netmask_length
|
554
|
+
# An IPv4 netmask length for the subnet.
|
555
|
+
# @option options [String] :ipv_6_ipam_pool_id
|
556
|
+
# An IPv6 IPAM pool ID for the subnet.
|
557
|
+
# @option options [Integer] :ipv_6_netmask_length
|
558
|
+
# An IPv6 netmask length for the subnet.
|
549
559
|
# @return [Subnet]
|
550
560
|
def create_subnet(options = {})
|
551
561
|
options = options.merge(vpc_id: @id)
|
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.423.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-11-
|
11
|
+
date: 2023-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|