aws-sdk-ec2 1.478.0 → 1.479.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 +97 -34
- data/lib/aws-sdk-ec2/client_api.rb +21 -0
- data/lib/aws-sdk-ec2/endpoints.rb +11 -0
- data/lib/aws-sdk-ec2/instance.rb +21 -21
- data/lib/aws-sdk-ec2/placement_group.rb +2 -2
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-ec2/resource.rb +4 -4
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +158 -98
- data/lib/aws-sdk-ec2/vpc.rb +1 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +15 -0
- data/sig/types.rbs +15 -0
- metadata +2 -2
@@ -1082,6 +1082,8 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
1082
1082
|
Aws::EC2::Endpoints::ModifyInstanceAttribute.build(context)
|
1083
1083
|
when :modify_instance_capacity_reservation_attributes
|
1084
1084
|
Aws::EC2::Endpoints::ModifyInstanceCapacityReservationAttributes.build(context)
|
1085
|
+
when :modify_instance_cpu_options
|
1086
|
+
Aws::EC2::Endpoints::ModifyInstanceCpuOptions.build(context)
|
1085
1087
|
when :modify_instance_credit_specification
|
1086
1088
|
Aws::EC2::Endpoints::ModifyInstanceCreditSpecification.build(context)
|
1087
1089
|
when :modify_instance_event_start_time
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -440,7 +440,7 @@ module Aws::EC2
|
|
440
440
|
#
|
441
441
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyInstanceAttribute.html
|
442
442
|
# @option options [Boolean] :dry_run
|
443
|
-
# Checks whether you have the required permissions for the
|
443
|
+
# Checks whether you have the required permissions for the operation,
|
444
444
|
# without actually making the request, and provides an error response.
|
445
445
|
# If you have the required permissions, the error response is
|
446
446
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -1055,7 +1055,7 @@ module Aws::EC2
|
|
1055
1055
|
# })
|
1056
1056
|
# @param [Hash] options ({})
|
1057
1057
|
# @option options [Boolean] :dry_run
|
1058
|
-
# Checks whether you have the required permissions for the
|
1058
|
+
# Checks whether you have the required permissions for the operation,
|
1059
1059
|
# without actually making the request, and provides an error response.
|
1060
1060
|
# If you have the required permissions, the error response is
|
1061
1061
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -2864,7 +2864,7 @@ module Aws::EC2
|
|
2864
2864
|
#
|
2865
2865
|
# Default: Describes all your instances.
|
2866
2866
|
# @option options [Boolean] :dry_run
|
2867
|
-
# Checks whether you have the required permissions for the
|
2867
|
+
# Checks whether you have the required permissions for the operation,
|
2868
2868
|
# without actually making the request, and provides an error response.
|
2869
2869
|
# If you have the required permissions, the error response is
|
2870
2870
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -3436,7 +3436,7 @@ module Aws::EC2
|
|
3436
3436
|
# filter to find all resources that have a tag with a specific key,
|
3437
3437
|
# regardless of the tag value.
|
3438
3438
|
# @option options [Boolean] :dry_run
|
3439
|
-
# Checks whether you have the required permissions for the
|
3439
|
+
# Checks whether you have the required permissions for the operation,
|
3440
3440
|
# without actually making the request, and provides an error response.
|
3441
3441
|
# If you have the required permissions, the error response is
|
3442
3442
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -670,7 +670,7 @@ module Aws::EC2
|
|
670
670
|
#
|
671
671
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyInstanceAttribute.html
|
672
672
|
# @option options [Boolean] :dry_run
|
673
|
-
# Checks whether you have the required permissions for the
|
673
|
+
# Checks whether you have the required permissions for the operation,
|
674
674
|
# without actually making the request, and provides an error response.
|
675
675
|
# If you have the required permissions, the error response is
|
676
676
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -1588,7 +1588,7 @@ module Aws::EC2
|
|
1588
1588
|
#
|
1589
1589
|
# Default: Describes all your instances.
|
1590
1590
|
# @option options [Boolean] :dry_run
|
1591
|
-
# Checks whether you have the required permissions for the
|
1591
|
+
# Checks whether you have the required permissions for the operation,
|
1592
1592
|
# without actually making the request, and provides an error response.
|
1593
1593
|
# If you have the required permissions, the error response is
|
1594
1594
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -5957,7 +5957,7 @@ module Aws::EC2
|
|
5957
5957
|
# @return [String]
|
5958
5958
|
#
|
5959
5959
|
# @!attribute [rw] dry_run
|
5960
|
-
# Checks whether you have the required permissions for the
|
5960
|
+
# Checks whether you have the required permissions for the operation,
|
5961
5961
|
# without actually making the request, and provides an error response.
|
5962
5962
|
# If you have the required permissions, the error response is
|
5963
5963
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -7839,8 +7839,8 @@ module Aws::EC2
|
|
7839
7839
|
# @return [String]
|
7840
7840
|
#
|
7841
7841
|
# @!attribute [rw] platform
|
7842
|
-
# The value is `
|
7843
|
-
# is blank.
|
7842
|
+
# The value is `windows` for Windows instances in an EC2 Fleet.
|
7843
|
+
# Otherwise, the value is blank.
|
7844
7844
|
# @return [String]
|
7845
7845
|
#
|
7846
7846
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFleetInstance AWS API Documentation
|
@@ -10154,7 +10154,7 @@ module Aws::EC2
|
|
10154
10154
|
end
|
10155
10155
|
|
10156
10156
|
# @!attribute [rw] dry_run
|
10157
|
-
# Checks whether you have the required permissions for the
|
10157
|
+
# Checks whether you have the required permissions for the operation,
|
10158
10158
|
# without actually making the request, and provides an error response.
|
10159
10159
|
# If you have the required permissions, the error response is
|
10160
10160
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -10824,12 +10824,12 @@ module Aws::EC2
|
|
10824
10824
|
#
|
10825
10825
|
# @!attribute [rw] bucket
|
10826
10826
|
# The name of the Amazon S3 bucket in which to store the Spot Instance
|
10827
|
-
# data feed. For more information about bucket names, see [
|
10828
|
-
#
|
10827
|
+
# data feed. For more information about bucket names, see [Bucket
|
10828
|
+
# naming rules][1] in the *Amazon S3 User Guide*.
|
10829
10829
|
#
|
10830
10830
|
#
|
10831
10831
|
#
|
10832
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
10832
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html
|
10833
10833
|
# @return [String]
|
10834
10834
|
#
|
10835
10835
|
# @!attribute [rw] dry_run
|
@@ -12055,22 +12055,23 @@ module Aws::EC2
|
|
12055
12055
|
# @return [String]
|
12056
12056
|
#
|
12057
12057
|
# @!attribute [rw] security_group_referencing_support
|
12058
|
-
#
|
12059
|
-
#
|
12058
|
+
# <note markdown="1"> This parameter is in preview and may not be available for your
|
12059
|
+
# account.
|
12060
|
+
#
|
12061
|
+
# </note>
|
12060
12062
|
#
|
12061
|
-
#
|
12063
|
+
# Enables you to reference a security group across VPCs attached to a
|
12064
|
+
# transit gateway. Use this option to simplify security group
|
12065
|
+
# management and control of instance-to-instance traffic across VPCs
|
12066
|
+
# that are connected by transit gateway. You can also use this option
|
12067
|
+
# to migrate from VPC peering (which was the only option that
|
12068
|
+
# supported security group referencing) to transit gateways (which now
|
12069
|
+
# also support security group referencing). This option is disabled by
|
12070
|
+
# default and there are no additional costs to use this feature.
|
12062
12071
|
#
|
12063
12072
|
# If you don't enable or disable SecurityGroupReferencingSupport in
|
12064
12073
|
# the request, the attachment will inherit the security group
|
12065
12074
|
# referencing support setting on the transit gateway.
|
12066
|
-
#
|
12067
|
-
# For more information about security group referencing, see [Security
|
12068
|
-
# group referencing ][1] in the *Amazon Web Services Transit Gateways
|
12069
|
-
# Guide*.
|
12070
|
-
#
|
12071
|
-
#
|
12072
|
-
#
|
12073
|
-
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-vpc-attachments.html#vpc-attachment-security
|
12074
12075
|
# @return [String]
|
12075
12076
|
#
|
12076
12077
|
# @!attribute [rw] ipv_6_support
|
@@ -14958,7 +14959,7 @@ module Aws::EC2
|
|
14958
14959
|
end
|
14959
14960
|
|
14960
14961
|
# @!attribute [rw] dry_run
|
14961
|
-
# Checks whether you have the required permissions for the
|
14962
|
+
# Checks whether you have the required permissions for the operation,
|
14962
14963
|
# without actually making the request, and provides an error response.
|
14963
14964
|
# If you have the required permissions, the error response is
|
14964
14965
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -18748,8 +18749,8 @@ module Aws::EC2
|
|
18748
18749
|
# @return [String]
|
18749
18750
|
#
|
18750
18751
|
# @!attribute [rw] platform
|
18751
|
-
# The value is `
|
18752
|
-
# is blank.
|
18752
|
+
# The value is `windows` for Windows instances in an EC2 Fleet.
|
18753
|
+
# Otherwise, the value is blank.
|
18753
18754
|
# @return [String]
|
18754
18755
|
#
|
18755
18756
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFleetsInstances AWS API Documentation
|
@@ -19776,7 +19777,7 @@ module Aws::EC2
|
|
19776
19777
|
# @return [String]
|
19777
19778
|
#
|
19778
19779
|
# @!attribute [rw] dry_run
|
19779
|
-
# Checks whether you have the required permissions for the
|
19780
|
+
# Checks whether you have the required permissions for the operation,
|
19780
19781
|
# without actually making the request, and provides an error response.
|
19781
19782
|
# If you have the required permissions, the error response is
|
19782
19783
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -19885,7 +19886,7 @@ module Aws::EC2
|
|
19885
19886
|
end
|
19886
19887
|
|
19887
19888
|
# @!attribute [rw] dry_run
|
19888
|
-
# Checks whether you have the required permissions for the
|
19889
|
+
# Checks whether you have the required permissions for the operation,
|
19889
19890
|
# without actually making the request, and provides an error response.
|
19890
19891
|
# If you have the required permissions, the error response is
|
19891
19892
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -20157,7 +20158,7 @@ module Aws::EC2
|
|
20157
20158
|
# @return [String]
|
20158
20159
|
#
|
20159
20160
|
# @!attribute [rw] dry_run
|
20160
|
-
# Checks whether you have the required permissions for the
|
20161
|
+
# Checks whether you have the required permissions for the operation,
|
20161
20162
|
# without actually making the request, and provides an error response.
|
20162
20163
|
# If you have the required permissions, the error response is
|
20163
20164
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -20202,7 +20203,7 @@ module Aws::EC2
|
|
20202
20203
|
end
|
20203
20204
|
|
20204
20205
|
# @!attribute [rw] dry_run
|
20205
|
-
# Checks whether you have the required permissions for the
|
20206
|
+
# Checks whether you have the required permissions for the operation,
|
20206
20207
|
# without actually making the request, and provides an error response.
|
20207
20208
|
# If you have the required permissions, the error response is
|
20208
20209
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -21043,7 +21044,7 @@ module Aws::EC2
|
|
21043
21044
|
# @return [Array<String>]
|
21044
21045
|
#
|
21045
21046
|
# @!attribute [rw] dry_run
|
21046
|
-
# Checks whether you have the required permissions for the
|
21047
|
+
# Checks whether you have the required permissions for the operation,
|
21047
21048
|
# without actually making the request, and provides an error response.
|
21048
21049
|
# If you have the required permissions, the error response is
|
21049
21050
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -23453,7 +23454,7 @@ module Aws::EC2
|
|
23453
23454
|
# @return [Array<Types::Filter>]
|
23454
23455
|
#
|
23455
23456
|
# @!attribute [rw] dry_run
|
23456
|
-
# Checks whether you have the required permissions for the
|
23457
|
+
# Checks whether you have the required permissions for the operation,
|
23457
23458
|
# without actually making the request, and provides an error response.
|
23458
23459
|
# If you have the required permissions, the error response is
|
23459
23460
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -34742,7 +34743,7 @@ module Aws::EC2
|
|
34742
34743
|
# @return [String]
|
34743
34744
|
#
|
34744
34745
|
# @!attribute [rw] dry_run
|
34745
|
-
# Checks whether you have the required permissions for the
|
34746
|
+
# Checks whether you have the required permissions for the operation,
|
34746
34747
|
# without actually making the request, and provides an error response.
|
34747
34748
|
# If you have the required permissions, the error response is
|
34748
34749
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -34788,7 +34789,7 @@ module Aws::EC2
|
|
34788
34789
|
end
|
34789
34790
|
|
34790
34791
|
# @!attribute [rw] dry_run
|
34791
|
-
# Checks whether you have the required permissions for the
|
34792
|
+
# Checks whether you have the required permissions for the operation,
|
34792
34793
|
# without actually making the request, and provides an error response.
|
34793
34794
|
# If you have the required permissions, the error response is
|
34794
34795
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -34831,7 +34832,7 @@ module Aws::EC2
|
|
34831
34832
|
end
|
34832
34833
|
|
34833
34834
|
# @!attribute [rw] dry_run
|
34834
|
-
# Checks whether you have the required permissions for the
|
34835
|
+
# Checks whether you have the required permissions for the operation,
|
34835
34836
|
# without actually making the request, and provides an error response.
|
34836
34837
|
# If you have the required permissions, the error response is
|
34837
34838
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -35107,7 +35108,7 @@ module Aws::EC2
|
|
35107
35108
|
end
|
35108
35109
|
|
35109
35110
|
# @!attribute [rw] dry_run
|
35110
|
-
# Checks whether you have the required permissions for the
|
35111
|
+
# Checks whether you have the required permissions for the operation,
|
35111
35112
|
# without actually making the request, and provides an error response.
|
35112
35113
|
# If you have the required permissions, the error response is
|
35113
35114
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -35264,7 +35265,7 @@ module Aws::EC2
|
|
35264
35265
|
# @return [String]
|
35265
35266
|
#
|
35266
35267
|
# @!attribute [rw] dry_run
|
35267
|
-
# Checks whether you have the required permissions for the
|
35268
|
+
# Checks whether you have the required permissions for the operation,
|
35268
35269
|
# without actually making the request, and provides an error response.
|
35269
35270
|
# If you have the required permissions, the error response is
|
35270
35271
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -35996,7 +35997,7 @@ module Aws::EC2
|
|
35996
35997
|
# @return [String]
|
35997
35998
|
#
|
35998
35999
|
# @!attribute [rw] dry_run
|
35999
|
-
# Checks whether you have the required permissions for the
|
36000
|
+
# Checks whether you have the required permissions for the operation,
|
36000
36001
|
# without actually making the request, and provides an error response.
|
36001
36002
|
# If you have the required permissions, the error response is
|
36002
36003
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -47836,7 +47837,7 @@ module Aws::EC2
|
|
47836
47837
|
end
|
47837
47838
|
|
47838
47839
|
# @!attribute [rw] dry_run
|
47839
|
-
# Checks whether you have the required permissions for the
|
47840
|
+
# Checks whether you have the required permissions for the operation,
|
47840
47841
|
# without actually making the request, and provides an error response.
|
47841
47842
|
# If you have the required permissions, the error response is
|
47842
47843
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -48358,7 +48359,7 @@ module Aws::EC2
|
|
48358
48359
|
# @return [Types::AttributeBooleanValue]
|
48359
48360
|
#
|
48360
48361
|
# @!attribute [rw] dry_run
|
48361
|
-
# Checks whether you have the required permissions for the
|
48362
|
+
# Checks whether you have the required permissions for the operation,
|
48362
48363
|
# without actually making the request, and provides an error response.
|
48363
48364
|
# If you have the required permissions, the error response is
|
48364
48365
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -48529,8 +48530,62 @@ module Aws::EC2
|
|
48529
48530
|
include Aws::Structure
|
48530
48531
|
end
|
48531
48532
|
|
48533
|
+
# @!attribute [rw] instance_id
|
48534
|
+
# The ID of the instance to update.
|
48535
|
+
# @return [String]
|
48536
|
+
#
|
48537
|
+
# @!attribute [rw] core_count
|
48538
|
+
# The number of CPU cores to activate for the specified instance.
|
48539
|
+
# @return [Integer]
|
48540
|
+
#
|
48541
|
+
# @!attribute [rw] threads_per_core
|
48542
|
+
# The number of threads to run for each CPU core.
|
48543
|
+
# @return [Integer]
|
48544
|
+
#
|
48532
48545
|
# @!attribute [rw] dry_run
|
48533
|
-
# Checks whether you have the required permissions for the
|
48546
|
+
# Checks whether you have the required permissions for the operation,
|
48547
|
+
# without actually making the request, and provides an error response.
|
48548
|
+
# If you have the required permissions, the error response is
|
48549
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
48550
|
+
# @return [Boolean]
|
48551
|
+
#
|
48552
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceCpuOptionsRequest AWS API Documentation
|
48553
|
+
#
|
48554
|
+
class ModifyInstanceCpuOptionsRequest < Struct.new(
|
48555
|
+
:instance_id,
|
48556
|
+
:core_count,
|
48557
|
+
:threads_per_core,
|
48558
|
+
:dry_run)
|
48559
|
+
SENSITIVE = []
|
48560
|
+
include Aws::Structure
|
48561
|
+
end
|
48562
|
+
|
48563
|
+
# @!attribute [rw] instance_id
|
48564
|
+
# The ID of the instance that was updated.
|
48565
|
+
# @return [String]
|
48566
|
+
#
|
48567
|
+
# @!attribute [rw] core_count
|
48568
|
+
# The number of CPU cores that are running for the specified instance
|
48569
|
+
# after the update.
|
48570
|
+
# @return [Integer]
|
48571
|
+
#
|
48572
|
+
# @!attribute [rw] threads_per_core
|
48573
|
+
# The number of threads that are running per CPU core for the
|
48574
|
+
# specified instance after the update.
|
48575
|
+
# @return [Integer]
|
48576
|
+
#
|
48577
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceCpuOptionsResult AWS API Documentation
|
48578
|
+
#
|
48579
|
+
class ModifyInstanceCpuOptionsResult < Struct.new(
|
48580
|
+
:instance_id,
|
48581
|
+
:core_count,
|
48582
|
+
:threads_per_core)
|
48583
|
+
SENSITIVE = []
|
48584
|
+
include Aws::Structure
|
48585
|
+
end
|
48586
|
+
|
48587
|
+
# @!attribute [rw] dry_run
|
48588
|
+
# Checks whether you have the required permissions for the operation,
|
48534
48589
|
# without actually making the request, and provides an error response.
|
48535
48590
|
# If you have the required permissions, the error response is
|
48536
48591
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -48580,7 +48635,7 @@ module Aws::EC2
|
|
48580
48635
|
end
|
48581
48636
|
|
48582
48637
|
# @!attribute [rw] dry_run
|
48583
|
-
# Checks whether you have the required permissions for the
|
48638
|
+
# Checks whether you have the required permissions for the operation,
|
48584
48639
|
# without actually making the request, and provides an error response.
|
48585
48640
|
# If you have the required permissions, the error response is
|
48586
48641
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -48772,7 +48827,7 @@ module Aws::EC2
|
|
48772
48827
|
# @return [String]
|
48773
48828
|
#
|
48774
48829
|
# @!attribute [rw] dry_run
|
48775
|
-
# Checks whether you have the required permissions for the
|
48830
|
+
# Checks whether you have the required permissions for the operation,
|
48776
48831
|
# without actually making the request, and provides an error response.
|
48777
48832
|
# If you have the required permissions, the error response is
|
48778
48833
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -50229,18 +50284,19 @@ module Aws::EC2
|
|
50229
50284
|
# @return [String]
|
50230
50285
|
#
|
50231
50286
|
# @!attribute [rw] security_group_referencing_support
|
50232
|
-
#
|
50233
|
-
#
|
50234
|
-
#
|
50235
|
-
# This option is disabled by default.
|
50236
|
-
#
|
50237
|
-
# For more information about security group referencing, see [Security
|
50238
|
-
# group referencing][1] in the *Amazon Web Services Transit Gateways
|
50239
|
-
# Guide*.
|
50240
|
-
#
|
50287
|
+
# <note markdown="1"> This parameter is in preview and may not be available for your
|
50288
|
+
# account.
|
50241
50289
|
#
|
50290
|
+
# </note>
|
50242
50291
|
#
|
50243
|
-
#
|
50292
|
+
# Enables you to reference a security group across VPCs attached to a
|
50293
|
+
# transit gateway. Use this option to simplify security group
|
50294
|
+
# management and control of instance-to-instance traffic across VPCs
|
50295
|
+
# that are connected by transit gateway. You can also use this option
|
50296
|
+
# to migrate from VPC peering (which was the only option that
|
50297
|
+
# supported security group referencing) to transit gateways (which now
|
50298
|
+
# also support security group referencing). This option is disabled by
|
50299
|
+
# default and there are no additional costs to use this feature.
|
50244
50300
|
# @return [String]
|
50245
50301
|
#
|
50246
50302
|
# @!attribute [rw] auto_accept_shared_attachments
|
@@ -50435,18 +50491,19 @@ module Aws::EC2
|
|
50435
50491
|
# @return [String]
|
50436
50492
|
#
|
50437
50493
|
# @!attribute [rw] security_group_referencing_support
|
50438
|
-
#
|
50439
|
-
#
|
50440
|
-
#
|
50441
|
-
# This option is disabled by default.
|
50442
|
-
#
|
50443
|
-
# For more information about security group referencing, see [Security
|
50444
|
-
# group referencing][1] in the *Amazon Web Services Transit Gateways
|
50445
|
-
# Guide*.
|
50446
|
-
#
|
50494
|
+
# <note markdown="1"> This parameter is in preview and may not be available for your
|
50495
|
+
# account.
|
50447
50496
|
#
|
50497
|
+
# </note>
|
50448
50498
|
#
|
50449
|
-
#
|
50499
|
+
# Enables you to reference a security group across VPCs attached to a
|
50500
|
+
# transit gateway. Use this option to simplify security group
|
50501
|
+
# management and control of instance-to-instance traffic across VPCs
|
50502
|
+
# that are connected by transit gateway. You can also use this option
|
50503
|
+
# to migrate from VPC peering (which was the only option that
|
50504
|
+
# supported security group referencing) to transit gateways (which now
|
50505
|
+
# also support security group referencing). This option is disabled by
|
50506
|
+
# default and there are no additional costs to use this feature.
|
50450
50507
|
# @return [String]
|
50451
50508
|
#
|
50452
50509
|
# @!attribute [rw] ipv_6_support
|
@@ -52027,7 +52084,7 @@ module Aws::EC2
|
|
52027
52084
|
# @return [Array<String>]
|
52028
52085
|
#
|
52029
52086
|
# @!attribute [rw] dry_run
|
52030
|
-
# Checks whether you have the required permissions for the
|
52087
|
+
# Checks whether you have the required permissions for the operation,
|
52031
52088
|
# without actually making the request, and provides an error response.
|
52032
52089
|
# If you have the required permissions, the error response is
|
52033
52090
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -55751,7 +55808,7 @@ module Aws::EC2
|
|
55751
55808
|
# @return [Array<String>]
|
55752
55809
|
#
|
55753
55810
|
# @!attribute [rw] dry_run
|
55754
|
-
# Checks whether you have the required permissions for the
|
55811
|
+
# Checks whether you have the required permissions for the operation,
|
55755
55812
|
# without actually making the request, and provides an error response.
|
55756
55813
|
# If you have the required permissions, the error response is
|
55757
55814
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -56989,7 +57046,7 @@ module Aws::EC2
|
|
56989
57046
|
# @return [String]
|
56990
57047
|
#
|
56991
57048
|
# @!attribute [rw] dry_run
|
56992
|
-
# Checks whether you have the required permissions for the
|
57049
|
+
# Checks whether you have the required permissions for the operation,
|
56993
57050
|
# without actually making the request, and provides an error response.
|
56994
57051
|
# If you have the required permissions, the error response is
|
56995
57052
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -58512,7 +58569,7 @@ module Aws::EC2
|
|
58512
58569
|
# @return [String]
|
58513
58570
|
#
|
58514
58571
|
# @!attribute [rw] dry_run
|
58515
|
-
# Checks whether you have the required permissions for the
|
58572
|
+
# Checks whether you have the required permissions for the operation,
|
58516
58573
|
# without actually making the request, and provides an error response.
|
58517
58574
|
# If you have the required permissions, the error response is
|
58518
58575
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -59876,7 +59933,7 @@ module Aws::EC2
|
|
59876
59933
|
# @return [Boolean]
|
59877
59934
|
#
|
59878
59935
|
# @!attribute [rw] dry_run
|
59879
|
-
# Checks whether you have the required permissions for the
|
59936
|
+
# Checks whether you have the required permissions for the operation,
|
59880
59937
|
# without actually making the request, and provides an error response.
|
59881
59938
|
# If you have the required permissions, the error response is
|
59882
59939
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -61468,7 +61525,7 @@ module Aws::EC2
|
|
61468
61525
|
# @return [String]
|
61469
61526
|
#
|
61470
61527
|
# @!attribute [rw] dry_run
|
61471
|
-
# Checks whether you have the required permissions for the
|
61528
|
+
# Checks whether you have the required permissions for the operation,
|
61472
61529
|
# without actually making the request, and provides an error response.
|
61473
61530
|
# If you have the required permissions, the error response is
|
61474
61531
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -63690,7 +63747,7 @@ module Aws::EC2
|
|
63690
63747
|
# @return [String]
|
63691
63748
|
#
|
63692
63749
|
# @!attribute [rw] dry_run
|
63693
|
-
# Checks whether you have the required permissions for the
|
63750
|
+
# Checks whether you have the required permissions for the operation,
|
63694
63751
|
# without actually making the request, and provides an error response.
|
63695
63752
|
# If you have the required permissions, the error response is
|
63696
63753
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -63943,7 +64000,7 @@ module Aws::EC2
|
|
63943
64000
|
# @return [Boolean]
|
63944
64001
|
#
|
63945
64002
|
# @!attribute [rw] dry_run
|
63946
|
-
# Checks whether you have the required permissions for the
|
64003
|
+
# Checks whether you have the required permissions for the operation,
|
63947
64004
|
# without actually making the request, and provides an error response.
|
63948
64005
|
# If you have the required permissions, the error response is
|
63949
64006
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -64843,7 +64900,7 @@ module Aws::EC2
|
|
64843
64900
|
# @return [Array<String>]
|
64844
64901
|
#
|
64845
64902
|
# @!attribute [rw] dry_run
|
64846
|
-
# Checks whether you have the required permissions for the
|
64903
|
+
# Checks whether you have the required permissions for the operation,
|
64847
64904
|
# without actually making the request, and provides an error response.
|
64848
64905
|
# If you have the required permissions, the error response is
|
64849
64906
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
@@ -65939,18 +65996,19 @@ module Aws::EC2
|
|
65939
65996
|
# @return [String]
|
65940
65997
|
#
|
65941
65998
|
# @!attribute [rw] security_group_referencing_support
|
65942
|
-
#
|
65943
|
-
#
|
65944
|
-
#
|
65945
|
-
# This option is enabled by default.
|
65946
|
-
#
|
65947
|
-
# For more information about security group referencing, see [Security
|
65948
|
-
# group referencing][1] in the *Amazon Web Services Transit Gateways
|
65949
|
-
# Guide*.
|
65950
|
-
#
|
65999
|
+
# <note markdown="1"> This parameter is in preview and may not be available for your
|
66000
|
+
# account.
|
65951
66001
|
#
|
66002
|
+
# </note>
|
65952
66003
|
#
|
65953
|
-
#
|
66004
|
+
# Enables you to reference a security group across VPCs attached to a
|
66005
|
+
# transit gateway. Use this option to simplify security group
|
66006
|
+
# management and control of instance-to-instance traffic across VPCs
|
66007
|
+
# that are connected by transit gateway. You can also use this option
|
66008
|
+
# to migrate from VPC peering (which was the only option that
|
66009
|
+
# supported security group referencing) to transit gateways (which now
|
66010
|
+
# also support security group referencing). This option is disabled by
|
66011
|
+
# default and there are no additional costs to use this feature.
|
65954
66012
|
# @return [String]
|
65955
66013
|
#
|
65956
66014
|
# @!attribute [rw] multicast_support
|
@@ -66336,18 +66394,19 @@ module Aws::EC2
|
|
66336
66394
|
# @return [String]
|
66337
66395
|
#
|
66338
66396
|
# @!attribute [rw] security_group_referencing_support
|
66339
|
-
#
|
66340
|
-
#
|
66341
|
-
#
|
66342
|
-
# This option is disabled by default.
|
66343
|
-
#
|
66344
|
-
# For more information about security group referencing, see [Security
|
66345
|
-
# group referencing][1] in the *Amazon Web Services Transit Gateways
|
66346
|
-
# Guide*.
|
66347
|
-
#
|
66397
|
+
# <note markdown="1"> This parameter is in preview and may not be available for your
|
66398
|
+
# account.
|
66348
66399
|
#
|
66400
|
+
# </note>
|
66349
66401
|
#
|
66350
|
-
#
|
66402
|
+
# Enables you to reference a security group across VPCs attached to a
|
66403
|
+
# transit gateway. Use this option to simplify security group
|
66404
|
+
# management and control of instance-to-instance traffic across VPCs
|
66405
|
+
# that are connected by transit gateway. You can also use this option
|
66406
|
+
# to migrate from VPC peering (which was the only option that
|
66407
|
+
# supported security group referencing) to transit gateways (which now
|
66408
|
+
# also support security group referencing). This option is disabled by
|
66409
|
+
# default and there are no additional costs to use this feature.
|
66351
66410
|
# @return [String]
|
66352
66411
|
#
|
66353
66412
|
# @!attribute [rw] multicast_support
|
@@ -66728,18 +66787,19 @@ module Aws::EC2
|
|
66728
66787
|
# @return [String]
|
66729
66788
|
#
|
66730
66789
|
# @!attribute [rw] security_group_referencing_support
|
66731
|
-
#
|
66732
|
-
#
|
66733
|
-
#
|
66734
|
-
# This option is disabled by default.
|
66735
|
-
#
|
66736
|
-
# For more information about security group referencing, see [Security
|
66737
|
-
# group referencing][1] in the *Amazon Web Services Transit Gateways
|
66738
|
-
# Guide*.
|
66739
|
-
#
|
66790
|
+
# <note markdown="1"> This parameter is in preview and may not be available for your
|
66791
|
+
# account.
|
66740
66792
|
#
|
66793
|
+
# </note>
|
66741
66794
|
#
|
66742
|
-
#
|
66795
|
+
# Enables you to reference a security group across VPCs attached to a
|
66796
|
+
# transit gateway. Use this option to simplify security group
|
66797
|
+
# management and control of instance-to-instance traffic across VPCs
|
66798
|
+
# that are connected by transit gateway. You can also use this option
|
66799
|
+
# to migrate from VPC peering (which was the only option that
|
66800
|
+
# supported security group referencing) to transit gateways (which now
|
66801
|
+
# also support security group referencing). This option is disabled by
|
66802
|
+
# default and there are no additional costs to use this feature.
|
66743
66803
|
# @return [String]
|
66744
66804
|
#
|
66745
66805
|
# @!attribute [rw] ipv_6_support
|
@@ -67090,7 +67150,7 @@ module Aws::EC2
|
|
67090
67150
|
# @return [Array<String>]
|
67091
67151
|
#
|
67092
67152
|
# @!attribute [rw] dry_run
|
67093
|
-
# Checks whether you have the required permissions for the
|
67153
|
+
# Checks whether you have the required permissions for the operation,
|
67094
67154
|
# without actually making the request, and provides an error response.
|
67095
67155
|
# If you have the required permissions, the error response is
|
67096
67156
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -1446,7 +1446,7 @@ module Aws::EC2
|
|
1446
1446
|
#
|
1447
1447
|
# Default: Describes all your instances.
|
1448
1448
|
# @option options [Boolean] :dry_run
|
1449
|
-
# Checks whether you have the required permissions for the
|
1449
|
+
# Checks whether you have the required permissions for the operation,
|
1450
1450
|
# without actually making the request, and provides an error response.
|
1451
1451
|
# If you have the required permissions, the error response is
|
1452
1452
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -10117,6 +10117,21 @@ module Aws
|
|
10117
10117
|
) -> _ModifyInstanceCapacityReservationAttributesResponseSuccess
|
10118
10118
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyInstanceCapacityReservationAttributesResponseSuccess
|
10119
10119
|
|
10120
|
+
interface _ModifyInstanceCpuOptionsResponseSuccess
|
10121
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyInstanceCpuOptionsResult]
|
10122
|
+
def instance_id: () -> ::String
|
10123
|
+
def core_count: () -> ::Integer
|
10124
|
+
def threads_per_core: () -> ::Integer
|
10125
|
+
end
|
10126
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#modify_instance_cpu_options-instance_method
|
10127
|
+
def modify_instance_cpu_options: (
|
10128
|
+
instance_id: ::String,
|
10129
|
+
core_count: ::Integer,
|
10130
|
+
threads_per_core: ::Integer,
|
10131
|
+
?dry_run: bool
|
10132
|
+
) -> _ModifyInstanceCpuOptionsResponseSuccess
|
10133
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyInstanceCpuOptionsResponseSuccess
|
10134
|
+
|
10120
10135
|
interface _ModifyInstanceCreditSpecificationResponseSuccess
|
10121
10136
|
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyInstanceCreditSpecificationResult]
|
10122
10137
|
def successful_instance_credit_specifications: () -> ::Array[Types::SuccessfulInstanceCreditSpecificationItem]
|