aws-sdk-ec2 1.254.0 → 1.258.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/client.rb +249 -188
- data/lib/aws-sdk-ec2/client_api.rb +18 -0
- 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_interface.rb +6 -10
- data/lib/aws-sdk-ec2/placement_group.rb +5 -5
- data/lib/aws-sdk-ec2/resource.rb +34 -24
- data/lib/aws-sdk-ec2/subnet.rb +23 -19
- data/lib/aws-sdk-ec2/types.rb +289 -181
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
|
@@ -1191,11 +1191,11 @@ module Aws::EC2
|
|
|
1191
1191
|
#
|
|
1192
1192
|
# * `subnet-id` - The ID of the subnet for the instance.
|
|
1193
1193
|
#
|
|
1194
|
-
# * `tag
|
|
1195
|
-
#
|
|
1196
|
-
#
|
|
1197
|
-
#
|
|
1198
|
-
#
|
|
1194
|
+
# * `tag:<key>` - The key/value combination of a tag assigned to the
|
|
1195
|
+
# resource. Use the tag key in the filter name and the tag value as
|
|
1196
|
+
# the filter value. For example, to find all resources that have a tag
|
|
1197
|
+
# with the key `Owner` and the value `TeamA`, specify `tag:Owner` for
|
|
1198
|
+
# the filter name and `TeamA` for the filter value.
|
|
1199
1199
|
#
|
|
1200
1200
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
|
1201
1201
|
# filter to find all resources that have a tag with a specific key,
|
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.258.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-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|