aws-sdk-ec2 1.301.0 → 1.302.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 +4 -4
- data/lib/aws-sdk-ec2/client_api.rb +1 -1
- data/lib/aws-sdk-ec2/types.rb +26 -2
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d25d5ebca25a69d2fd86016eda6d02253993cd816c1fcd7dbe23f7d1814a2b0
|
|
4
|
+
data.tar.gz: 1553c457ca76445534318d595dffe0b35edcdb31cff3197781aee4174aba1aa7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a49c6366286e225400b3391fd258fbccb1f3de7955e5f712e327a9047a28afee749679088c6e426be3b6c47db4766c9cdc855290dd26a4621cb2d878e123de49
|
|
7
|
+
data.tar.gz: 1f307001e8f84c7ddd308c21bae74c63ea6ac72f7abc0aea74c70d50f004a153126287880e7806f9b3d1006e602010055e2ebd21cc55abc3d6a1cba634319d2d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.302.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -5539,7 +5539,7 @@ module Aws::EC2
|
|
|
5539
5539
|
#
|
|
5540
5540
|
#
|
|
5541
5541
|
#
|
|
5542
|
-
# [1]: https://docs.aws.amazon.com/
|
|
5542
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-request-type.html
|
|
5543
5543
|
#
|
|
5544
5544
|
# @option params [Time,DateTime,Date,Integer,String] :valid_from
|
|
5545
5545
|
# The start date and time of the request, in UTC format (for example,
|
|
@@ -6721,7 +6721,7 @@ module Aws::EC2
|
|
|
6721
6721
|
# @option params [String] :description
|
|
6722
6722
|
# A description for the IPAM pool.
|
|
6723
6723
|
#
|
|
6724
|
-
# @option params [String] :address_family
|
|
6724
|
+
# @option params [required, String] :address_family
|
|
6725
6725
|
# The IP protocol assigned to this IPAM pool. You must choose either
|
|
6726
6726
|
# IPv4 or IPv6 protocol for a pool.
|
|
6727
6727
|
#
|
|
@@ -6805,7 +6805,7 @@ module Aws::EC2
|
|
|
6805
6805
|
# locale: "String",
|
|
6806
6806
|
# source_ipam_pool_id: "IpamPoolId",
|
|
6807
6807
|
# description: "String",
|
|
6808
|
-
# address_family: "ipv4", # accepts ipv4, ipv6
|
|
6808
|
+
# address_family: "ipv4", # required, accepts ipv4, ipv6
|
|
6809
6809
|
# auto_import: false,
|
|
6810
6810
|
# publicly_advertisable: false,
|
|
6811
6811
|
# allocation_min_netmask_length: 1,
|
|
@@ -49312,7 +49312,7 @@ module Aws::EC2
|
|
|
49312
49312
|
params: params,
|
|
49313
49313
|
config: config)
|
|
49314
49314
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
49315
|
-
context[:gem_version] = '1.
|
|
49315
|
+
context[:gem_version] = '1.302.0'
|
|
49316
49316
|
Seahorse::Client::Request.new(handlers, context)
|
|
49317
49317
|
end
|
|
49318
49318
|
|
|
@@ -4017,7 +4017,7 @@ module Aws::EC2
|
|
|
4017
4017
|
CreateIpamPoolRequest.add_member(:locale, Shapes::ShapeRef.new(shape: String, location_name: "Locale"))
|
|
4018
4018
|
CreateIpamPoolRequest.add_member(:source_ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, location_name: "SourceIpamPoolId"))
|
|
4019
4019
|
CreateIpamPoolRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
|
4020
|
-
CreateIpamPoolRequest.add_member(:address_family, Shapes::ShapeRef.new(shape: AddressFamily, location_name: "AddressFamily"))
|
|
4020
|
+
CreateIpamPoolRequest.add_member(:address_family, Shapes::ShapeRef.new(shape: AddressFamily, required: true, location_name: "AddressFamily"))
|
|
4021
4021
|
CreateIpamPoolRequest.add_member(:auto_import, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoImport"))
|
|
4022
4022
|
CreateIpamPoolRequest.add_member(:publicly_advertisable, Shapes::ShapeRef.new(shape: Boolean, location_name: "PubliclyAdvertisable"))
|
|
4023
4023
|
CreateIpamPoolRequest.add_member(:allocation_min_netmask_length, Shapes::ShapeRef.new(shape: IpamNetmaskLength, location_name: "AllocationMinNetmaskLength"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -7850,7 +7850,7 @@ module Aws::EC2
|
|
|
7850
7850
|
#
|
|
7851
7851
|
#
|
|
7852
7852
|
#
|
|
7853
|
-
# [1]: https://docs.aws.amazon.com/
|
|
7853
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-request-type.html
|
|
7854
7854
|
# @return [String]
|
|
7855
7855
|
#
|
|
7856
7856
|
# @!attribute [rw] valid_from
|
|
@@ -8602,7 +8602,7 @@ module Aws::EC2
|
|
|
8602
8602
|
# locale: "String",
|
|
8603
8603
|
# source_ipam_pool_id: "IpamPoolId",
|
|
8604
8604
|
# description: "String",
|
|
8605
|
-
# address_family: "ipv4", # accepts ipv4, ipv6
|
|
8605
|
+
# address_family: "ipv4", # required, accepts ipv4, ipv6
|
|
8606
8606
|
# auto_import: false,
|
|
8607
8607
|
# publicly_advertisable: false,
|
|
8608
8608
|
# allocation_min_netmask_length: 1,
|
|
@@ -40885,6 +40885,12 @@ module Aws::EC2
|
|
|
40885
40885
|
# This parameter is not supported for [GetSpotPlacementScores][1] and
|
|
40886
40886
|
# [GetInstanceTypesFromInstanceRequirements][2].
|
|
40887
40887
|
#
|
|
40888
|
+
# <note markdown="1"> If you set `TargetCapacityUnitType` to `vcpu` or `memory-mib`, the
|
|
40889
|
+
# price protection threshold is applied based on the per-vCPU or
|
|
40890
|
+
# per-memory price instead of the per-instance price.
|
|
40891
|
+
#
|
|
40892
|
+
# </note>
|
|
40893
|
+
#
|
|
40888
40894
|
# Default: `100`
|
|
40889
40895
|
#
|
|
40890
40896
|
#
|
|
@@ -40910,6 +40916,12 @@ module Aws::EC2
|
|
|
40910
40916
|
# This parameter is not supported for [GetSpotPlacementScores][1] and
|
|
40911
40917
|
# [GetInstanceTypesFromInstanceRequirements][2].
|
|
40912
40918
|
#
|
|
40919
|
+
# <note markdown="1"> If you set `TargetCapacityUnitType` to `vcpu` or `memory-mib`, the
|
|
40920
|
+
# price protection threshold is applied based on the per-vCPU or
|
|
40921
|
+
# per-memory price instead of the per-instance price.
|
|
40922
|
+
#
|
|
40923
|
+
# </note>
|
|
40924
|
+
#
|
|
40913
40925
|
# Default: `20`
|
|
40914
40926
|
#
|
|
40915
40927
|
#
|
|
@@ -41273,6 +41285,12 @@ module Aws::EC2
|
|
|
41273
41285
|
# This parameter is not supported for [GetSpotPlacementScores][1] and
|
|
41274
41286
|
# [GetInstanceTypesFromInstanceRequirements][2].
|
|
41275
41287
|
#
|
|
41288
|
+
# <note markdown="1"> If you set `TargetCapacityUnitType` to `vcpu` or `memory-mib`, the
|
|
41289
|
+
# price protection threshold is applied based on the per-vCPU or
|
|
41290
|
+
# per-memory price instead of the per-instance price.
|
|
41291
|
+
#
|
|
41292
|
+
# </note>
|
|
41293
|
+
#
|
|
41276
41294
|
# Default: `100`
|
|
41277
41295
|
#
|
|
41278
41296
|
#
|
|
@@ -41298,6 +41316,12 @@ module Aws::EC2
|
|
|
41298
41316
|
# This parameter is not supported for [GetSpotPlacementScores][1] and
|
|
41299
41317
|
# [GetInstanceTypesFromInstanceRequirements][2].
|
|
41300
41318
|
#
|
|
41319
|
+
# <note markdown="1"> If you set `TargetCapacityUnitType` to `vcpu` or `memory-mib`, the
|
|
41320
|
+
# price protection threshold is applied based on the per-vCPU or
|
|
41321
|
+
# per-memory price instead of the per-instance price.
|
|
41322
|
+
#
|
|
41323
|
+
# </note>
|
|
41324
|
+
#
|
|
41301
41325
|
# Default: `20`
|
|
41302
41326
|
#
|
|
41303
41327
|
#
|
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.302.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: 2022-
|
|
11
|
+
date: 2022-03-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|