aws-sdk-ec2 1.516.0 → 1.518.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +107 -68
- data/lib/aws-sdk-ec2/client_api.rb +71 -67
- data/lib/aws-sdk-ec2/instance.rb +28 -8
- data/lib/aws-sdk-ec2/types.rb +125 -32
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +3 -0
- metadata +3 -6
data/lib/aws-sdk-ec2/instance.rb
CHANGED
@@ -1488,12 +1488,22 @@ module Aws::EC2
|
|
1488
1488
|
# If you have the required permissions, the error response is
|
1489
1489
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
1490
1490
|
# @option options [Boolean] :force
|
1491
|
-
# Forces the
|
1492
|
-
#
|
1493
|
-
#
|
1494
|
-
#
|
1491
|
+
# Forces the instance to stop. The instance will first attempt a
|
1492
|
+
# graceful shutdown, which includes flushing file system caches and
|
1493
|
+
# metadata. If the graceful shutdown fails to complete within the
|
1494
|
+
# timeout period, the instance shuts down forcibly without flushing the
|
1495
|
+
# file system caches and metadata.
|
1496
|
+
#
|
1497
|
+
# After using this option, you must perform file system check and repair
|
1498
|
+
# procedures. This option is not recommended for Windows instances. For
|
1499
|
+
# more information, see [Troubleshoot Amazon EC2 instance stop
|
1500
|
+
# issues][1] in the *Amazon EC2 User Guide*.
|
1495
1501
|
#
|
1496
1502
|
# Default: `false`
|
1503
|
+
#
|
1504
|
+
#
|
1505
|
+
#
|
1506
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html
|
1497
1507
|
# @return [Types::StopInstancesResult]
|
1498
1508
|
def stop(options = {})
|
1499
1509
|
options = Aws::Util.deep_merge(options, instance_ids: [@id])
|
@@ -2055,12 +2065,22 @@ module Aws::EC2
|
|
2055
2065
|
# If you have the required permissions, the error response is
|
2056
2066
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
2057
2067
|
# @option options [Boolean] :force
|
2058
|
-
# Forces the
|
2059
|
-
#
|
2060
|
-
#
|
2061
|
-
#
|
2068
|
+
# Forces the instance to stop. The instance will first attempt a
|
2069
|
+
# graceful shutdown, which includes flushing file system caches and
|
2070
|
+
# metadata. If the graceful shutdown fails to complete within the
|
2071
|
+
# timeout period, the instance shuts down forcibly without flushing the
|
2072
|
+
# file system caches and metadata.
|
2073
|
+
#
|
2074
|
+
# After using this option, you must perform file system check and repair
|
2075
|
+
# procedures. This option is not recommended for Windows instances. For
|
2076
|
+
# more information, see [Troubleshoot Amazon EC2 instance stop
|
2077
|
+
# issues][1] in the *Amazon EC2 User Guide*.
|
2062
2078
|
#
|
2063
2079
|
# Default: `false`
|
2080
|
+
#
|
2081
|
+
#
|
2082
|
+
#
|
2083
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html
|
2064
2084
|
# @return [void]
|
2065
2085
|
def batch_stop(options = {})
|
2066
2086
|
batch_enum.each do |batch|
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -6092,20 +6092,21 @@ module Aws::EC2
|
|
6092
6092
|
include Aws::Structure
|
6093
6093
|
end
|
6094
6094
|
|
6095
|
-
# Client
|
6096
|
-
#
|
6097
|
-
#
|
6098
|
-
#
|
6099
|
-
#
|
6095
|
+
# Client Route Enforcement is a feature of Client VPN that helps enforce
|
6096
|
+
# administrator defined routes on devices connected through the VPN.
|
6097
|
+
# This feature helps improve your security posture by ensuring that
|
6098
|
+
# network traffic originating from a connected client is not
|
6099
|
+
# inadvertently sent outside the VPN tunnel.
|
6100
6100
|
#
|
6101
|
-
# Client
|
6101
|
+
# Client Route Enforcement works by monitoring the route table of a
|
6102
6102
|
# connected device for routing policy changes to the VPN connection. If
|
6103
6103
|
# the feature detects any VPN routing policy modifications, it will
|
6104
6104
|
# automatically force an update to the route table, reverting it back to
|
6105
6105
|
# the expected route configurations.
|
6106
6106
|
#
|
6107
6107
|
# @!attribute [rw] enforced
|
6108
|
-
# Enable or disable
|
6108
|
+
# Enable or disable Client Route Enforcement. The state can either be
|
6109
|
+
# `true` (enabled) or `false` (disabled). The default is `false`.
|
6109
6110
|
#
|
6110
6111
|
# Valid values: `true | false`
|
6111
6112
|
#
|
@@ -6120,11 +6121,11 @@ module Aws::EC2
|
|
6120
6121
|
include Aws::Structure
|
6121
6122
|
end
|
6122
6123
|
|
6123
|
-
# The current status of
|
6124
|
-
# be `true` (enabled) or `false` (disabled).
|
6124
|
+
# The current status of Client Route Enforcement.
|
6125
6125
|
#
|
6126
6126
|
# @!attribute [rw] enforced
|
6127
|
-
# Status of the client route enforcement feature
|
6127
|
+
# Status of the client route enforcement feature, indicating whether
|
6128
|
+
# Client Route Enforcement is `true` (enabled) or `false` (disabled).
|
6128
6129
|
#
|
6129
6130
|
# Valid values: `true | false`
|
6130
6131
|
#
|
@@ -6469,7 +6470,7 @@ module Aws::EC2
|
|
6469
6470
|
# Indicates whether the client VPN session is disconnected after the
|
6470
6471
|
# maximum `sessionTimeoutHours` is reached. If `true`, users are
|
6471
6472
|
# prompted to reconnect client VPN. If `false`, client VPN attempts to
|
6472
|
-
# reconnect automatically. The default value is `
|
6473
|
+
# reconnect automatically. The default value is `true`.
|
6473
6474
|
# @return [Boolean]
|
6474
6475
|
#
|
6475
6476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientVpnEndpoint AWS API Documentation
|
@@ -8334,7 +8335,7 @@ module Aws::EC2
|
|
8334
8335
|
# maximum timeout specified in `SessionTimeoutHours` is reached. If
|
8335
8336
|
# `true`, users are prompted to reconnect client VPN. If `false`,
|
8336
8337
|
# client VPN attempts to reconnect automatically. The default value is
|
8337
|
-
# `
|
8338
|
+
# `true`.
|
8338
8339
|
# @return [Boolean]
|
8339
8340
|
#
|
8340
8341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateClientVpnEndpointRequest AWS API Documentation
|
@@ -9908,6 +9909,24 @@ module Aws::EC2
|
|
9908
9909
|
# addresses. This option is disabled by default.
|
9909
9910
|
# @return [Boolean]
|
9910
9911
|
#
|
9912
|
+
# @!attribute [rw] metered_account
|
9913
|
+
# A metered account is an Amazon Web Services account that is charged
|
9914
|
+
# for active IP addresses managed in IPAM. For more information, see
|
9915
|
+
# [Enable cost distribution][1] in the *Amazon VPC IPAM User Guide*.
|
9916
|
+
#
|
9917
|
+
# Possible values:
|
9918
|
+
#
|
9919
|
+
# * `ipam-owner` (default): The Amazon Web Services account which owns
|
9920
|
+
# the IPAM is charged for all active IP addresses managed in IPAM.
|
9921
|
+
#
|
9922
|
+
# * `resource-owner`: The Amazon Web Services account that owns the IP
|
9923
|
+
# address is charged for the active IP address.
|
9924
|
+
#
|
9925
|
+
#
|
9926
|
+
#
|
9927
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html
|
9928
|
+
# @return [String]
|
9929
|
+
#
|
9911
9930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamRequest AWS API Documentation
|
9912
9931
|
#
|
9913
9932
|
class CreateIpamRequest < Struct.new(
|
@@ -9917,7 +9936,8 @@ module Aws::EC2
|
|
9917
9936
|
:tag_specifications,
|
9918
9937
|
:client_token,
|
9919
9938
|
:tier,
|
9920
|
-
:enable_private_gua
|
9939
|
+
:enable_private_gua,
|
9940
|
+
:metered_account)
|
9921
9941
|
SENSITIVE = []
|
9922
9942
|
include Aws::Structure
|
9923
9943
|
end
|
@@ -14430,8 +14450,6 @@ module Aws::EC2
|
|
14430
14450
|
# To use a private hosted zone, you must set the following VPC
|
14431
14451
|
# attributes to `true`: `enableDnsHostnames` and `enableDnsSupport`.
|
14432
14452
|
# Use ModifyVpcAttribute to set the VPC attributes.
|
14433
|
-
#
|
14434
|
-
# Default: `true`
|
14435
14453
|
# @return [Boolean]
|
14436
14454
|
#
|
14437
14455
|
# @!attribute [rw] tag_specifications
|
@@ -18887,7 +18905,9 @@ module Aws::EC2
|
|
18887
18905
|
# @return [String]
|
18888
18906
|
#
|
18889
18907
|
# @!attribute [rw] instance_count
|
18890
|
-
# The number of instances for which to reserve capacity.
|
18908
|
+
# The number of instances for which to reserve capacity. Each Capacity
|
18909
|
+
# Block can have up to 64 instances, and you can have up to 256
|
18910
|
+
# instances across Capacity Blocks.
|
18891
18911
|
# @return [Integer]
|
18892
18912
|
#
|
18893
18913
|
# @!attribute [rw] start_date_range
|
@@ -18899,7 +18919,9 @@ module Aws::EC2
|
|
18899
18919
|
# @return [Time]
|
18900
18920
|
#
|
18901
18921
|
# @!attribute [rw] capacity_duration_hours
|
18902
|
-
# The
|
18922
|
+
# The reservation duration for the Capacity Block, in hours. You must
|
18923
|
+
# specify the duration in 1-day increments up 14 days, and in 7-day
|
18924
|
+
# increments up to 182 days.
|
18903
18925
|
# @return [Integer]
|
18904
18926
|
#
|
18905
18927
|
# @!attribute [rw] next_token
|
@@ -36586,11 +36608,11 @@ module Aws::EC2
|
|
36586
36608
|
# Amazon EBS encryption. For more information, see [Supported instance
|
36587
36609
|
# types][2].
|
36588
36610
|
#
|
36589
|
-
# This parameter is not returned by .
|
36611
|
+
# This parameter is not returned by [DescribeImageAttribute][3].
|
36590
36612
|
#
|
36591
|
-
# For and , whether you can include
|
36592
|
-
# values differ depending on the type
|
36593
|
-
# creating.
|
36613
|
+
# For [CreateImage][4] and [RegisterImage][5], whether you can include
|
36614
|
+
# this parameter, and the allowed values differ depending on the type
|
36615
|
+
# of block device mapping you are creating.
|
36594
36616
|
#
|
36595
36617
|
# * If you are creating a block device mapping for a **new (empty)
|
36596
36618
|
# volume**, you can include this parameter, and specify either
|
@@ -36618,6 +36640,9 @@ module Aws::EC2
|
|
36618
36640
|
#
|
36619
36641
|
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
36620
36642
|
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
|
36643
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImageAttribute
|
36644
|
+
# [4]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage
|
36645
|
+
# [5]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RegisterImage
|
36621
36646
|
# @return [Boolean]
|
36622
36647
|
#
|
36623
36648
|
# @!attribute [rw] delete_on_termination
|
@@ -45203,6 +45228,9 @@ module Aws::EC2
|
|
45203
45228
|
#
|
45204
45229
|
# * For instance types with GPU accelerators, specify `gpu`.
|
45205
45230
|
#
|
45231
|
+
# * For instance types with Inference accelerators, specify
|
45232
|
+
# `inference`.
|
45233
|
+
#
|
45206
45234
|
# Default: Any accelerator type
|
45207
45235
|
# @return [Array<String>]
|
45208
45236
|
#
|
@@ -45686,6 +45714,9 @@ module Aws::EC2
|
|
45686
45714
|
#
|
45687
45715
|
# * For instance types with GPU accelerators, specify `gpu`.
|
45688
45716
|
#
|
45717
|
+
# * For instance types with Inference accelerators, specify
|
45718
|
+
# `inference`.
|
45719
|
+
#
|
45689
45720
|
# Default: Any accelerator type
|
45690
45721
|
# @return [Array<String>]
|
45691
45722
|
#
|
@@ -46757,6 +46788,24 @@ module Aws::EC2
|
|
46757
46788
|
# addresses. This option is disabled by default.
|
46758
46789
|
# @return [Boolean]
|
46759
46790
|
#
|
46791
|
+
# @!attribute [rw] metered_account
|
46792
|
+
# A metered account is an Amazon Web Services account that is charged
|
46793
|
+
# for active IP addresses managed in IPAM. For more information, see
|
46794
|
+
# [Enable cost distribution][1] in the *Amazon VPC IPAM User Guide*.
|
46795
|
+
#
|
46796
|
+
# Possible values:
|
46797
|
+
#
|
46798
|
+
# * `ipam-owner` (default): The Amazon Web Services account which owns
|
46799
|
+
# the IPAM is charged for all active IP addresses managed in IPAM.
|
46800
|
+
#
|
46801
|
+
# * `resource-owner`: The Amazon Web Services account that owns the IP
|
46802
|
+
# address is charged for the active IP address.
|
46803
|
+
#
|
46804
|
+
#
|
46805
|
+
#
|
46806
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html
|
46807
|
+
# @return [String]
|
46808
|
+
#
|
46760
46809
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipam AWS API Documentation
|
46761
46810
|
#
|
46762
46811
|
class Ipam < Struct.new(
|
@@ -46776,7 +46825,8 @@ module Aws::EC2
|
|
46776
46825
|
:resource_discovery_association_count,
|
46777
46826
|
:state_message,
|
46778
46827
|
:tier,
|
46779
|
-
:enable_private_gua
|
46828
|
+
:enable_private_gua,
|
46829
|
+
:metered_account)
|
46780
46830
|
SENSITIVE = []
|
46781
46831
|
include Aws::Structure
|
46782
46832
|
end
|
@@ -51981,7 +52031,7 @@ module Aws::EC2
|
|
51981
52031
|
# maximum timeout specified in `sessionTimeoutHours` is reached. If
|
51982
52032
|
# `true`, users are prompted to reconnect client VPN. If `false`,
|
51983
52033
|
# client VPN attempts to reconnect automatically. The default value is
|
51984
|
-
# `
|
52034
|
+
# `true`.
|
51985
52035
|
# @return [Boolean]
|
51986
52036
|
#
|
51987
52037
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyClientVpnEndpointRequest AWS API Documentation
|
@@ -53451,6 +53501,24 @@ module Aws::EC2
|
|
53451
53501
|
# addresses. This option is disabled by default.
|
53452
53502
|
# @return [Boolean]
|
53453
53503
|
#
|
53504
|
+
# @!attribute [rw] metered_account
|
53505
|
+
# A metered account is an Amazon Web Services account that is charged
|
53506
|
+
# for active IP addresses managed in IPAM. For more information, see
|
53507
|
+
# [Enable cost distribution][1] in the *Amazon VPC IPAM User Guide*.
|
53508
|
+
#
|
53509
|
+
# Possible values:
|
53510
|
+
#
|
53511
|
+
# * `ipam-owner` (default): The Amazon Web Services account which owns
|
53512
|
+
# the IPAM is charged for all active IP addresses managed in IPAM.
|
53513
|
+
#
|
53514
|
+
# * `resource-owner`: The Amazon Web Services account that owns the IP
|
53515
|
+
# address is charged for the active IP address.
|
53516
|
+
#
|
53517
|
+
#
|
53518
|
+
#
|
53519
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html
|
53520
|
+
# @return [String]
|
53521
|
+
#
|
53454
53522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamRequest AWS API Documentation
|
53455
53523
|
#
|
53456
53524
|
class ModifyIpamRequest < Struct.new(
|
@@ -53460,7 +53528,8 @@ module Aws::EC2
|
|
53460
53528
|
:add_operating_regions,
|
53461
53529
|
:remove_operating_regions,
|
53462
53530
|
:tier,
|
53463
|
-
:enable_private_gua
|
53531
|
+
:enable_private_gua,
|
53532
|
+
:metered_account)
|
53464
53533
|
SENSITIVE = []
|
53465
53534
|
include Aws::Structure
|
53466
53535
|
end
|
@@ -59006,12 +59075,19 @@ module Aws::EC2
|
|
59006
59075
|
# unsupported instance families.
|
59007
59076
|
#
|
59008
59077
|
# If you specify an unsupported instance family as a value for
|
59009
|
-
# baseline performance, the API returns an empty response for
|
59010
|
-
#
|
59078
|
+
# baseline performance, the API returns an empty response for
|
59079
|
+
# [GetInstanceTypesFromInstanceRequirements][2] and an exception for
|
59080
|
+
# [CreateFleet][3], [RequestSpotFleet][4], [ModifyFleet][5], and
|
59081
|
+
# [ModifySpotFleetRequest][6].
|
59011
59082
|
#
|
59012
59083
|
#
|
59013
59084
|
#
|
59014
59085
|
# [1]: https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html
|
59086
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements
|
59087
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
|
59088
|
+
# [4]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotFleet
|
59089
|
+
# [5]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyFleet
|
59090
|
+
# [6]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifySpotFleetRequest
|
59015
59091
|
# @return [String]
|
59016
59092
|
#
|
59017
59093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PerformanceFactorReference AWS API Documentation
|
@@ -59069,12 +59145,19 @@ module Aws::EC2
|
|
59069
59145
|
# unsupported instance families.
|
59070
59146
|
#
|
59071
59147
|
# If you specify an unsupported instance family as a value for
|
59072
|
-
# baseline performance, the API returns an empty response for
|
59073
|
-
#
|
59148
|
+
# baseline performance, the API returns an empty response for
|
59149
|
+
# [GetInstanceTypesFromInstanceRequirements][2] and an exception for
|
59150
|
+
# [CreateFleet][3], [RequestSpotFleet][4], [ModifyFleet][5], and
|
59151
|
+
# [ModifySpotFleetRequest][6].
|
59074
59152
|
#
|
59075
59153
|
#
|
59076
59154
|
#
|
59077
59155
|
# [1]: https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html
|
59156
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements
|
59157
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
|
59158
|
+
# [4]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotFleet
|
59159
|
+
# [5]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyFleet
|
59160
|
+
# [6]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifySpotFleetRequest
|
59078
59161
|
# @return [String]
|
59079
59162
|
#
|
59080
59163
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PerformanceFactorReferenceRequest AWS API Documentation
|
@@ -69792,12 +69875,22 @@ module Aws::EC2
|
|
69792
69875
|
# @return [Boolean]
|
69793
69876
|
#
|
69794
69877
|
# @!attribute [rw] force
|
69795
|
-
# Forces the
|
69796
|
-
#
|
69797
|
-
#
|
69798
|
-
#
|
69878
|
+
# Forces the instance to stop. The instance will first attempt a
|
69879
|
+
# graceful shutdown, which includes flushing file system caches and
|
69880
|
+
# metadata. If the graceful shutdown fails to complete within the
|
69881
|
+
# timeout period, the instance shuts down forcibly without flushing
|
69882
|
+
# the file system caches and metadata.
|
69883
|
+
#
|
69884
|
+
# After using this option, you must perform file system check and
|
69885
|
+
# repair procedures. This option is not recommended for Windows
|
69886
|
+
# instances. For more information, see [Troubleshoot Amazon EC2
|
69887
|
+
# instance stop issues][1] in the *Amazon EC2 User Guide*.
|
69799
69888
|
#
|
69800
69889
|
# Default: `false`
|
69890
|
+
#
|
69891
|
+
#
|
69892
|
+
#
|
69893
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html
|
69801
69894
|
# @return [Boolean]
|
69802
69895
|
#
|
69803
69896
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StopInstancesRequest AWS API Documentation
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1851,7 +1851,8 @@ module Aws
|
|
1851
1851
|
],
|
1852
1852
|
?client_token: ::String,
|
1853
1853
|
?tier: ("free" | "advanced"),
|
1854
|
-
?enable_private_gua: bool
|
1854
|
+
?enable_private_gua: bool,
|
1855
|
+
?metered_account: ("ipam-owner" | "resource-owner")
|
1855
1856
|
) -> _CreateIpamResponseSuccess
|
1856
1857
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIpamResponseSuccess
|
1857
1858
|
|
@@ -11078,7 +11079,8 @@ module Aws
|
|
11078
11079
|
},
|
11079
11080
|
],
|
11080
11081
|
?tier: ("free" | "advanced"),
|
11081
|
-
?enable_private_gua: bool
|
11082
|
+
?enable_private_gua: bool,
|
11083
|
+
?metered_account: ("ipam-owner" | "resource-owner")
|
11082
11084
|
) -> _ModifyIpamResponseSuccess
|
11083
11085
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIpamResponseSuccess
|
11084
11086
|
|
data/sig/types.rbs
CHANGED
@@ -2192,6 +2192,7 @@ module Aws::EC2
|
|
2192
2192
|
attr_accessor client_token: ::String
|
2193
2193
|
attr_accessor tier: ("free" | "advanced")
|
2194
2194
|
attr_accessor enable_private_gua: bool
|
2195
|
+
attr_accessor metered_account: ("ipam-owner" | "resource-owner")
|
2195
2196
|
SENSITIVE: []
|
2196
2197
|
end
|
2197
2198
|
|
@@ -10197,6 +10198,7 @@ module Aws::EC2
|
|
10197
10198
|
attr_accessor state_message: ::String
|
10198
10199
|
attr_accessor tier: ("free" | "advanced")
|
10199
10200
|
attr_accessor enable_private_gua: bool
|
10201
|
+
attr_accessor metered_account: ("ipam-owner" | "resource-owner")
|
10200
10202
|
SENSITIVE: []
|
10201
10203
|
end
|
10202
10204
|
|
@@ -11578,6 +11580,7 @@ module Aws::EC2
|
|
11578
11580
|
attr_accessor remove_operating_regions: ::Array[Types::RemoveIpamOperatingRegion]
|
11579
11581
|
attr_accessor tier: ("free" | "advanced")
|
11580
11582
|
attr_accessor enable_private_gua: bool
|
11583
|
+
attr_accessor metered_account: ("ipam-owner" | "resource-owner")
|
11581
11584
|
SENSITIVE: []
|
11582
11585
|
end
|
11583
11586
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.518.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-core
|
@@ -129,7 +128,6 @@ licenses:
|
|
129
128
|
metadata:
|
130
129
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ec2
|
131
130
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ec2/CHANGELOG.md
|
132
|
-
post_install_message:
|
133
131
|
rdoc_options: []
|
134
132
|
require_paths:
|
135
133
|
- lib
|
@@ -144,8 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
142
|
- !ruby/object:Gem::Version
|
145
143
|
version: '0'
|
146
144
|
requirements: []
|
147
|
-
rubygems_version: 3.
|
148
|
-
signing_key:
|
145
|
+
rubygems_version: 3.6.7
|
149
146
|
specification_version: 4
|
150
147
|
summary: AWS SDK for Ruby - Amazon EC2
|
151
148
|
test_files: []
|