aws-sdk-ec2 1.39.0 → 1.40.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/client.rb +201 -174
- data/lib/aws-sdk-ec2/client_api.rb +19 -0
- data/lib/aws-sdk-ec2/instance.rb +10 -10
- data/lib/aws-sdk-ec2/placement_group.rb +7 -7
- data/lib/aws-sdk-ec2/resource.rb +82 -72
- data/lib/aws-sdk-ec2/subnet.rb +16 -12
- data/lib/aws-sdk-ec2/types.rb +325 -163
- data/lib/aws-sdk-ec2/volume.rb +5 -5
- data/lib/aws-sdk-ec2/vpc.rb +48 -42
- metadata +2 -2
data/lib/aws-sdk-ec2/volume.rb
CHANGED
@@ -580,11 +580,11 @@ module Aws::EC2
|
|
580
580
|
# * `status` - The status of the snapshot (`pending` \| `completed` \|
|
581
581
|
# `error`).
|
582
582
|
#
|
583
|
-
# * `tag
|
584
|
-
#
|
585
|
-
#
|
586
|
-
#
|
587
|
-
# filter value.
|
583
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
584
|
+
# the resource. Use the tag key in the filter name and the tag value
|
585
|
+
# as the filter value. For example, to find all resources that have a
|
586
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
587
|
+
# for the filter name and `TeamA` for the filter value.
|
588
588
|
#
|
589
589
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
590
590
|
# filter to find all resources assigned a tag with a specific key,
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -722,11 +722,11 @@ module Aws::EC2
|
|
722
722
|
# * `status-message` - A message that provides more information about
|
723
723
|
# the status of the VPC peering connection, if applicable.
|
724
724
|
#
|
725
|
-
# * `tag
|
726
|
-
#
|
727
|
-
#
|
728
|
-
#
|
729
|
-
# filter value.
|
725
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
726
|
+
# the resource. Use the tag key in the filter name and the tag value
|
727
|
+
# as the filter value. For example, to find all resources that have a
|
728
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
729
|
+
# for the filter name and `TeamA` for the filter value.
|
730
730
|
#
|
731
731
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
732
732
|
# filter to find all resources assigned a tag with a specific key,
|
@@ -840,7 +840,7 @@ module Aws::EC2
|
|
840
840
|
# a Scheduled Instance (`spot` \| `scheduled`).
|
841
841
|
#
|
842
842
|
# * `instance-state-code` - The state of the instance, as a 16-bit
|
843
|
-
# unsigned integer. The high byte is
|
843
|
+
# unsigned integer. The high byte is used for internal purposes and
|
844
844
|
# should be ignored. The low byte is set based on the state
|
845
845
|
# represented. The valid values are: 0 (pending), 16 (running), 32
|
846
846
|
# (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped).
|
@@ -1026,14 +1026,14 @@ module Aws::EC2
|
|
1026
1026
|
#
|
1027
1027
|
# * `subnet-id` - The ID of the subnet for the instance.
|
1028
1028
|
#
|
1029
|
-
# * `tag
|
1030
|
-
#
|
1031
|
-
#
|
1032
|
-
#
|
1033
|
-
# filter value.
|
1029
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1030
|
+
# the resource. Use the tag key in the filter name and the tag value
|
1031
|
+
# as the filter value. For example, to find all resources that have a
|
1032
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
1033
|
+
# for the filter name and `TeamA` for the filter value.
|
1034
1034
|
#
|
1035
1035
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
1036
|
-
# filter to find all resources
|
1036
|
+
# filter to find all resources that have a tag with a specific key,
|
1037
1037
|
# regardless of the tag value.
|
1038
1038
|
#
|
1039
1039
|
# * `tenancy` - The tenancy of an instance (`dedicated` \| `default` \|
|
@@ -1101,11 +1101,11 @@ module Aws::EC2
|
|
1101
1101
|
#
|
1102
1102
|
# * `internet-gateway-id` - The ID of the Internet gateway.
|
1103
1103
|
#
|
1104
|
-
# * `tag
|
1105
|
-
#
|
1106
|
-
#
|
1107
|
-
#
|
1108
|
-
# filter value.
|
1104
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1105
|
+
# the resource. Use the tag key in the filter name and the tag value
|
1106
|
+
# as the filter value. For example, to find all resources that have a
|
1107
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
1108
|
+
# for the filter name and `TeamA` for the filter value.
|
1109
1109
|
#
|
1110
1110
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
1111
1111
|
# filter to find all resources assigned a tag with a specific key,
|
@@ -1196,11 +1196,11 @@ module Aws::EC2
|
|
1196
1196
|
#
|
1197
1197
|
# * `network-acl-id` - The ID of the network ACL.
|
1198
1198
|
#
|
1199
|
-
# * `tag
|
1200
|
-
#
|
1201
|
-
#
|
1202
|
-
#
|
1203
|
-
# filter value.
|
1199
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1200
|
+
# the resource. Use the tag key in the filter name and the tag value
|
1201
|
+
# as the filter value. For example, to find all resources that have a
|
1202
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
1203
|
+
# for the filter name and `TeamA` for the filter value.
|
1204
1204
|
#
|
1205
1205
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
1206
1206
|
# filter to find all resources assigned a tag with a specific key,
|
@@ -1351,11 +1351,11 @@ module Aws::EC2
|
|
1351
1351
|
#
|
1352
1352
|
# * `subnet-id` - The ID of the subnet for the network interface.
|
1353
1353
|
#
|
1354
|
-
# * `tag
|
1355
|
-
#
|
1356
|
-
#
|
1357
|
-
#
|
1358
|
-
# filter value.
|
1354
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1355
|
+
# the resource. Use the tag key in the filter name and the tag value
|
1356
|
+
# as the filter value. For example, to find all resources that have a
|
1357
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
1358
|
+
# for the filter name and `TeamA` for the filter value.
|
1359
1359
|
#
|
1360
1360
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
1361
1361
|
# filter to find all resources assigned a tag with a specific key,
|
@@ -1434,11 +1434,11 @@ module Aws::EC2
|
|
1434
1434
|
# * `status-message` - A message that provides more information about
|
1435
1435
|
# the status of the VPC peering connection, if applicable.
|
1436
1436
|
#
|
1437
|
-
# * `tag
|
1438
|
-
#
|
1439
|
-
#
|
1440
|
-
#
|
1441
|
-
# filter value.
|
1437
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1438
|
+
# the resource. Use the tag key in the filter name and the tag value
|
1439
|
+
# as the filter value. For example, to find all resources that have a
|
1440
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
1441
|
+
# for the filter name and `TeamA` for the filter value.
|
1442
1442
|
#
|
1443
1443
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
1444
1444
|
# filter to find all resources assigned a tag with a specific key,
|
@@ -1542,11 +1542,11 @@ module Aws::EC2
|
|
1542
1542
|
# * `route.vpc-peering-connection-id` - The ID of a VPC peering
|
1543
1543
|
# connection specified in a route in the table.
|
1544
1544
|
#
|
1545
|
-
# * `tag
|
1546
|
-
#
|
1547
|
-
#
|
1548
|
-
#
|
1549
|
-
# filter value.
|
1545
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1546
|
+
# the resource. Use the tag key in the filter name and the tag value
|
1547
|
+
# as the filter value. For example, to find all resources that have a
|
1548
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
1549
|
+
# for the filter name and `TeamA` for the filter value.
|
1550
1550
|
#
|
1551
1551
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
1552
1552
|
# filter to find all resources assigned a tag with a specific key,
|
@@ -1666,6 +1666,12 @@ module Aws::EC2
|
|
1666
1666
|
#
|
1667
1667
|
# * `owner-id` - The AWS account ID of the owner of the security group.
|
1668
1668
|
#
|
1669
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1670
|
+
# the resource. Use the tag key in the filter name and the tag value
|
1671
|
+
# as the filter value. For example, to find all resources that have a
|
1672
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
1673
|
+
# for the filter name and `TeamA` for the filter value.
|
1674
|
+
#
|
1669
1675
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
1670
1676
|
# filter to find all resources assigned a tag with a specific key,
|
1671
1677
|
# regardless of the tag value.
|
@@ -1761,11 +1767,11 @@ module Aws::EC2
|
|
1761
1767
|
#
|
1762
1768
|
# * `subnet-id` - The ID of the subnet.
|
1763
1769
|
#
|
1764
|
-
# * `tag
|
1765
|
-
#
|
1766
|
-
#
|
1767
|
-
#
|
1768
|
-
# filter value.
|
1770
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1771
|
+
# the resource. Use the tag key in the filter name and the tag value
|
1772
|
+
# as the filter value. For example, to find all resources that have a
|
1773
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
1774
|
+
# for the filter name and `TeamA` for the filter value.
|
1769
1775
|
#
|
1770
1776
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
1771
1777
|
# filter to find all resources assigned a tag with a specific key,
|
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.40.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: 2018-07-
|
11
|
+
date: 2018-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|