aws-sdk-ec2 1.356.0 → 1.357.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 +126 -131
- data/lib/aws-sdk-ec2/placement_group.rb +6 -3
- data/lib/aws-sdk-ec2/resource.rb +7 -5
- data/lib/aws-sdk-ec2/security_group.rb +14 -11
- data/lib/aws-sdk-ec2/subnet.rb +7 -5
- data/lib/aws-sdk-ec2/types.rb +198 -199
- data/lib/aws-sdk-ec2/vpc.rb +6 -3
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
@@ -370,9 +370,10 @@ module Aws::EC2
|
|
370
370
|
# Alternatively, use a set of IP permissions to specify multiple rules
|
371
371
|
# and a description for the rule.
|
372
372
|
# @option options [Integer] :from_port
|
373
|
-
#
|
374
|
-
#
|
375
|
-
# you specify all ICMP types, you must specify all
|
373
|
+
# If the protocol is TCP or UDP, this is the start of the port range. If
|
374
|
+
# the protocol is ICMP, this is the type number. A value of -1 indicates
|
375
|
+
# all ICMP types. If you specify all ICMP types, you must specify all
|
376
|
+
# ICMP codes.
|
376
377
|
#
|
377
378
|
# Alternatively, use a set of IP permissions to specify multiple rules
|
378
379
|
# and a description for the rule.
|
@@ -415,9 +416,10 @@ module Aws::EC2
|
|
415
416
|
# specific IP protocol and port range, use a set of IP permissions
|
416
417
|
# instead.
|
417
418
|
# @option options [Integer] :to_port
|
418
|
-
#
|
419
|
-
#
|
420
|
-
# you specify all ICMP types, you must specify all
|
419
|
+
# If the protocol is TCP or UDP, this is the end of the port range. If
|
420
|
+
# the protocol is ICMP, this is the code. A value of -1 indicates all
|
421
|
+
# ICMP codes. If you specify all ICMP types, you must specify all ICMP
|
422
|
+
# codes.
|
421
423
|
#
|
422
424
|
# Alternatively, use a set of IP permissions to specify multiple rules
|
423
425
|
# and a description for the rule.
|
@@ -676,8 +678,9 @@ module Aws::EC2
|
|
676
678
|
# The CIDR IP address range. You can't specify this parameter when
|
677
679
|
# specifying a source security group.
|
678
680
|
# @option options [Integer] :from_port
|
679
|
-
#
|
680
|
-
#
|
681
|
+
# If the protocol is TCP or UDP, this is the start of the port range. If
|
682
|
+
# the protocol is ICMP, this is the type number. A value of -1 indicates
|
683
|
+
# all ICMP types.
|
681
684
|
# @option options [String] :group_name
|
682
685
|
# \[EC2-Classic, default VPC\] The name of the security group. You must
|
683
686
|
# specify either the security group ID or the security group name in the
|
@@ -710,9 +713,9 @@ module Aws::EC2
|
|
710
713
|
# specific rule for an IP protocol and port range, use a set of IP
|
711
714
|
# permissions instead.
|
712
715
|
# @option options [Integer] :to_port
|
713
|
-
#
|
714
|
-
#
|
715
|
-
#
|
716
|
+
# If the protocol is TCP or UDP, this is the end of the port range. If
|
717
|
+
# the protocol is ICMP, this is the code. A value of -1 indicates all
|
718
|
+
# ICMP codes.
|
716
719
|
# @option options [Boolean] :dry_run
|
717
720
|
# Checks whether you have the required permissions for the action,
|
718
721
|
# without actually making the request, and provides an error response.
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -600,8 +600,7 @@ module Aws::EC2
|
|
600
600
|
#
|
601
601
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateSecurityGroup.html
|
602
602
|
# @option options [Array<String>] :security_groups
|
603
|
-
# \[EC2-Classic, default VPC\] The names of the security groups.
|
604
|
-
# nondefault VPC, you must use security group IDs instead.
|
603
|
+
# \[EC2-Classic, default VPC\] The names of the security groups.
|
605
604
|
#
|
606
605
|
# If you specify a network interface, you must specify any security
|
607
606
|
# groups as part of the network interface.
|
@@ -1179,12 +1178,15 @@ module Aws::EC2
|
|
1179
1178
|
# * `metadata-options.http-tokens` - The metadata request authorization
|
1180
1179
|
# state (`optional` \| `required`)
|
1181
1180
|
#
|
1182
|
-
# * `metadata-options.http-put-response-hop-limit` - The
|
1181
|
+
# * `metadata-options.http-put-response-hop-limit` - The HTTP metadata
|
1183
1182
|
# request put response hop limit (integer, possible values `1` to
|
1184
1183
|
# `64`)
|
1185
1184
|
#
|
1186
|
-
# * `metadata-options.http-endpoint` -
|
1187
|
-
# on
|
1185
|
+
# * `metadata-options.http-endpoint` - The status of access to the HTTP
|
1186
|
+
# metadata endpoint on your instance (`enabled` \| `disabled`)
|
1187
|
+
#
|
1188
|
+
# * `metadata-options.instance-metadata-tags` - The status of access to
|
1189
|
+
# instance tags from the instance metadata (`enabled` \| `disabled`)
|
1188
1190
|
#
|
1189
1191
|
# * `monitoring-state` - Indicates whether detailed monitoring is
|
1190
1192
|
# enabled (`disabled` \| `enabled`).
|