aws-sdk-ec2 1.464.0 → 1.466.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 +411 -125
- data/lib/aws-sdk-ec2/client_api.rb +87 -0
- data/lib/aws-sdk-ec2/endpoints.rb +42 -0
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-ec2/resource.rb +25 -19
- data/lib/aws-sdk-ec2/security_group.rb +2 -2
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +395 -40
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +152 -93
- data/sig/instance.rbs +1 -1
- data/sig/resource.rbs +17 -17
- data/sig/security_group.rbs +2 -2
- data/sig/snapshot.rbs +1 -1
- data/sig/subnet.rbs +2 -2
- data/sig/tag.rbs +1 -1
- data/sig/types.rbs +67 -5
- data/sig/volume.rbs +1 -1
- data/sig/vpc.rbs +5 -5
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -8518,6 +8518,57 @@ module Aws::EC2
|
|
8518
8518
|
include Aws::Structure
|
8519
8519
|
end
|
8520
8520
|
|
8521
|
+
# @!attribute [rw] dry_run
|
8522
|
+
# A check for whether you have the required permissions for the action
|
8523
|
+
# without actually making the request and provides an error response.
|
8524
|
+
# If you have the required permissions, the error response is
|
8525
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
8526
|
+
# @return [Boolean]
|
8527
|
+
#
|
8528
|
+
# @!attribute [rw] ipam_id
|
8529
|
+
# The ID of the IPAM that will create the token.
|
8530
|
+
# @return [String]
|
8531
|
+
#
|
8532
|
+
# @!attribute [rw] tag_specifications
|
8533
|
+
# Token tags.
|
8534
|
+
# @return [Array<Types::TagSpecification>]
|
8535
|
+
#
|
8536
|
+
# @!attribute [rw] client_token
|
8537
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
8538
|
+
# idempotency of the request. For more information, see [Ensuring
|
8539
|
+
# idempotency][1].
|
8540
|
+
#
|
8541
|
+
# **A suitable default value is auto-generated.** You should normally
|
8542
|
+
# not need to pass this option.
|
8543
|
+
#
|
8544
|
+
#
|
8545
|
+
#
|
8546
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
8547
|
+
# @return [String]
|
8548
|
+
#
|
8549
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamExternalResourceVerificationTokenRequest AWS API Documentation
|
8550
|
+
#
|
8551
|
+
class CreateIpamExternalResourceVerificationTokenRequest < Struct.new(
|
8552
|
+
:dry_run,
|
8553
|
+
:ipam_id,
|
8554
|
+
:tag_specifications,
|
8555
|
+
:client_token)
|
8556
|
+
SENSITIVE = []
|
8557
|
+
include Aws::Structure
|
8558
|
+
end
|
8559
|
+
|
8560
|
+
# @!attribute [rw] ipam_external_resource_verification_token
|
8561
|
+
# The verification token.
|
8562
|
+
# @return [Types::IpamExternalResourceVerificationToken]
|
8563
|
+
#
|
8564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamExternalResourceVerificationTokenResult AWS API Documentation
|
8565
|
+
#
|
8566
|
+
class CreateIpamExternalResourceVerificationTokenResult < Struct.new(
|
8567
|
+
:ipam_external_resource_verification_token)
|
8568
|
+
SENSITIVE = []
|
8569
|
+
include Aws::Structure
|
8570
|
+
end
|
8571
|
+
|
8521
8572
|
# @!attribute [rw] dry_run
|
8522
8573
|
# A check for whether you have the required permissions for the action
|
8523
8574
|
# without actually making the request and provides an error response.
|
@@ -8530,16 +8581,25 @@ module Aws::EC2
|
|
8530
8581
|
# @return [String]
|
8531
8582
|
#
|
8532
8583
|
# @!attribute [rw] locale
|
8533
|
-
#
|
8534
|
-
#
|
8535
|
-
#
|
8536
|
-
#
|
8537
|
-
# for example, from an IPAM pool that shares a locale with the VPC’s
|
8538
|
-
# Region. Note that once you choose a Locale for a pool, you cannot
|
8539
|
-
# modify it. If you do not choose a locale, resources in Regions
|
8540
|
-
# others than the IPAM's home region cannot use CIDRs from this pool.
|
8584
|
+
# The locale for the pool should be one of the following:
|
8585
|
+
#
|
8586
|
+
# * An Amazon Web Services Region where you want this IPAM pool to be
|
8587
|
+
# available for allocations.
|
8541
8588
|
#
|
8542
|
-
#
|
8589
|
+
# * The network border group for an Amazon Web Services Local Zone
|
8590
|
+
# where you want this IPAM pool to be available for allocations
|
8591
|
+
# ([supported Local Zones][1]). This option is only available for
|
8592
|
+
# IPAM IPv4 pools in the public scope.
|
8593
|
+
#
|
8594
|
+
# If you do not choose a locale, resources in Regions others than the
|
8595
|
+
# IPAM's home region cannot use CIDRs from this pool.
|
8596
|
+
#
|
8597
|
+
# Possible values: Any Amazon Web Services Region or supported Amazon
|
8598
|
+
# Web Services Local Zone.
|
8599
|
+
#
|
8600
|
+
#
|
8601
|
+
#
|
8602
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
|
8543
8603
|
# @return [String]
|
8544
8604
|
#
|
8545
8605
|
# @!attribute [rw] source_ipam_pool_id
|
@@ -10087,11 +10147,24 @@ module Aws::EC2
|
|
10087
10147
|
# name and `TeamA` for the filter value.
|
10088
10148
|
# @return [Array<Types::TagSpecification>]
|
10089
10149
|
#
|
10150
|
+
# @!attribute [rw] network_border_group
|
10151
|
+
# The Availability Zone (AZ) or Local Zone (LZ) network border group
|
10152
|
+
# that the resource that the IP address is assigned to is in. Defaults
|
10153
|
+
# to an AZ network border group. For more information on available
|
10154
|
+
# Local Zones, see [Local Zone availability][1] in the *Amazon EC2
|
10155
|
+
# User Guide*.
|
10156
|
+
#
|
10157
|
+
#
|
10158
|
+
#
|
10159
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
|
10160
|
+
# @return [String]
|
10161
|
+
#
|
10090
10162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePublicIpv4PoolRequest AWS API Documentation
|
10091
10163
|
#
|
10092
10164
|
class CreatePublicIpv4PoolRequest < Struct.new(
|
10093
10165
|
:dry_run,
|
10094
|
-
:tag_specifications
|
10166
|
+
:tag_specifications,
|
10167
|
+
:network_border_group)
|
10095
10168
|
SENSITIVE = []
|
10096
10169
|
include Aws::Structure
|
10097
10170
|
end
|
@@ -13968,6 +14041,38 @@ module Aws::EC2
|
|
13968
14041
|
include Aws::Structure
|
13969
14042
|
end
|
13970
14043
|
|
14044
|
+
# @!attribute [rw] dry_run
|
14045
|
+
# A check for whether you have the required permissions for the action
|
14046
|
+
# without actually making the request and provides an error response.
|
14047
|
+
# If you have the required permissions, the error response is
|
14048
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
14049
|
+
# @return [Boolean]
|
14050
|
+
#
|
14051
|
+
# @!attribute [rw] ipam_external_resource_verification_token_id
|
14052
|
+
# The token ID.
|
14053
|
+
# @return [String]
|
14054
|
+
#
|
14055
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamExternalResourceVerificationTokenRequest AWS API Documentation
|
14056
|
+
#
|
14057
|
+
class DeleteIpamExternalResourceVerificationTokenRequest < Struct.new(
|
14058
|
+
:dry_run,
|
14059
|
+
:ipam_external_resource_verification_token_id)
|
14060
|
+
SENSITIVE = []
|
14061
|
+
include Aws::Structure
|
14062
|
+
end
|
14063
|
+
|
14064
|
+
# @!attribute [rw] ipam_external_resource_verification_token
|
14065
|
+
# The verification token.
|
14066
|
+
# @return [Types::IpamExternalResourceVerificationToken]
|
14067
|
+
#
|
14068
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamExternalResourceVerificationTokenResult AWS API Documentation
|
14069
|
+
#
|
14070
|
+
class DeleteIpamExternalResourceVerificationTokenResult < Struct.new(
|
14071
|
+
:ipam_external_resource_verification_token)
|
14072
|
+
SENSITIVE = []
|
14073
|
+
include Aws::Structure
|
14074
|
+
end
|
14075
|
+
|
13971
14076
|
# @!attribute [rw] dry_run
|
13972
14077
|
# A check for whether you have the required permissions for the action
|
13973
14078
|
# without actually making the request and provides an error response.
|
@@ -14806,11 +14911,24 @@ module Aws::EC2
|
|
14806
14911
|
# The ID of the public IPv4 pool you want to delete.
|
14807
14912
|
# @return [String]
|
14808
14913
|
#
|
14914
|
+
# @!attribute [rw] network_border_group
|
14915
|
+
# The Availability Zone (AZ) or Local Zone (LZ) network border group
|
14916
|
+
# that the resource that the IP address is assigned to is in. Defaults
|
14917
|
+
# to an AZ network border group. For more information on available
|
14918
|
+
# Local Zones, see [Local Zone availability][1] in the *Amazon EC2
|
14919
|
+
# User Guide*.
|
14920
|
+
#
|
14921
|
+
#
|
14922
|
+
#
|
14923
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
|
14924
|
+
# @return [String]
|
14925
|
+
#
|
14809
14926
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeletePublicIpv4PoolRequest AWS API Documentation
|
14810
14927
|
#
|
14811
14928
|
class DeletePublicIpv4PoolRequest < Struct.new(
|
14812
14929
|
:dry_run,
|
14813
|
-
:pool_id
|
14930
|
+
:pool_id,
|
14931
|
+
:network_border_group)
|
14814
14932
|
SENSITIVE = []
|
14815
14933
|
include Aws::Structure
|
14816
14934
|
end
|
@@ -21028,6 +21146,84 @@ module Aws::EC2
|
|
21028
21146
|
include Aws::Structure
|
21029
21147
|
end
|
21030
21148
|
|
21149
|
+
# @!attribute [rw] dry_run
|
21150
|
+
# A check for whether you have the required permissions for the action
|
21151
|
+
# without actually making the request and provides an error response.
|
21152
|
+
# If you have the required permissions, the error response is
|
21153
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
21154
|
+
# @return [Boolean]
|
21155
|
+
#
|
21156
|
+
# @!attribute [rw] filters
|
21157
|
+
# One or more filters for the request. For more information about
|
21158
|
+
# filtering, see [Filtering CLI output][1].
|
21159
|
+
#
|
21160
|
+
# Available filters:
|
21161
|
+
#
|
21162
|
+
# * `ipam-arn`
|
21163
|
+
#
|
21164
|
+
# * `ipam-external-resource-verification-token-arn`
|
21165
|
+
#
|
21166
|
+
# * `ipam-external-resource-verification-token-id`
|
21167
|
+
#
|
21168
|
+
# * `ipam-id`
|
21169
|
+
#
|
21170
|
+
# * `ipam-region`
|
21171
|
+
#
|
21172
|
+
# * `state`
|
21173
|
+
#
|
21174
|
+
# * `status`
|
21175
|
+
#
|
21176
|
+
# * `token-name`
|
21177
|
+
#
|
21178
|
+
# * `token-value`
|
21179
|
+
#
|
21180
|
+
#
|
21181
|
+
#
|
21182
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-filter.html
|
21183
|
+
# @return [Array<Types::Filter>]
|
21184
|
+
#
|
21185
|
+
# @!attribute [rw] next_token
|
21186
|
+
# The token for the next page of results.
|
21187
|
+
# @return [String]
|
21188
|
+
#
|
21189
|
+
# @!attribute [rw] max_results
|
21190
|
+
# The maximum number of tokens to return in one page of results.
|
21191
|
+
# @return [Integer]
|
21192
|
+
#
|
21193
|
+
# @!attribute [rw] ipam_external_resource_verification_token_ids
|
21194
|
+
# Verification token IDs.
|
21195
|
+
# @return [Array<String>]
|
21196
|
+
#
|
21197
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamExternalResourceVerificationTokensRequest AWS API Documentation
|
21198
|
+
#
|
21199
|
+
class DescribeIpamExternalResourceVerificationTokensRequest < Struct.new(
|
21200
|
+
:dry_run,
|
21201
|
+
:filters,
|
21202
|
+
:next_token,
|
21203
|
+
:max_results,
|
21204
|
+
:ipam_external_resource_verification_token_ids)
|
21205
|
+
SENSITIVE = []
|
21206
|
+
include Aws::Structure
|
21207
|
+
end
|
21208
|
+
|
21209
|
+
# @!attribute [rw] next_token
|
21210
|
+
# The token to use to retrieve the next page of results. This value is
|
21211
|
+
# `null` when there are no more results to return.
|
21212
|
+
# @return [String]
|
21213
|
+
#
|
21214
|
+
# @!attribute [rw] ipam_external_resource_verification_tokens
|
21215
|
+
# Verification tokens.
|
21216
|
+
# @return [Array<Types::IpamExternalResourceVerificationToken>]
|
21217
|
+
#
|
21218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamExternalResourceVerificationTokensResult AWS API Documentation
|
21219
|
+
#
|
21220
|
+
class DescribeIpamExternalResourceVerificationTokensResult < Struct.new(
|
21221
|
+
:next_token,
|
21222
|
+
:ipam_external_resource_verification_tokens)
|
21223
|
+
SENSITIVE = []
|
21224
|
+
include Aws::Structure
|
21225
|
+
end
|
21226
|
+
|
21031
21227
|
# @!attribute [rw] dry_run
|
21032
21228
|
# A check for whether you have the required permissions for the action
|
21033
21229
|
# without actually making the request and provides an error response.
|
@@ -23185,8 +23381,14 @@ module Aws::EC2
|
|
23185
23381
|
# @!attribute [rw] group_names
|
23186
23382
|
# The names of the placement groups.
|
23187
23383
|
#
|
23188
|
-
#
|
23189
|
-
#
|
23384
|
+
# Constraints:
|
23385
|
+
#
|
23386
|
+
# * You can specify a name only if the placement group is owned by
|
23387
|
+
# your account.
|
23388
|
+
#
|
23389
|
+
# * If a placement group is *shared* with your account, specifying the
|
23390
|
+
# name results in an error. You must use the `GroupId` parameter
|
23391
|
+
# instead.
|
23190
23392
|
# @return [Array<String>]
|
23191
23393
|
#
|
23192
23394
|
# @!attribute [rw] group_ids
|
@@ -33294,7 +33496,14 @@ module Aws::EC2
|
|
33294
33496
|
# @return [String]
|
33295
33497
|
#
|
33296
33498
|
# @!attribute [rw] weighted_capacity
|
33297
|
-
# The number of units provided by the specified instance type.
|
33499
|
+
# The number of units provided by the specified instance type. These
|
33500
|
+
# are the same units that you chose to set the target capacity in
|
33501
|
+
# terms of instances, or a performance characteristic such as vCPUs,
|
33502
|
+
# memory, or I/O.
|
33503
|
+
#
|
33504
|
+
# If the target capacity divided by this value is not a whole number,
|
33505
|
+
# Amazon EC2 rounds the number of instances to the next whole number.
|
33506
|
+
# If this value is not specified, the default is 1.
|
33298
33507
|
#
|
33299
33508
|
# <note markdown="1"> When specifying weights, the price used in the `lowest-price` and
|
33300
33509
|
# `price-capacity-optimized` allocation strategies is per *unit* hour
|
@@ -33398,7 +33607,14 @@ module Aws::EC2
|
|
33398
33607
|
# @return [String]
|
33399
33608
|
#
|
33400
33609
|
# @!attribute [rw] weighted_capacity
|
33401
|
-
# The number of units provided by the specified instance type.
|
33610
|
+
# The number of units provided by the specified instance type. These
|
33611
|
+
# are the same units that you chose to set the target capacity in
|
33612
|
+
# terms of instances, or a performance characteristic such as vCPUs,
|
33613
|
+
# memory, or I/O.
|
33614
|
+
#
|
33615
|
+
# If the target capacity divided by this value is not a whole number,
|
33616
|
+
# Amazon EC2 rounds the number of instances to the next whole number.
|
33617
|
+
# If this value is not specified, the default is 1.
|
33402
33618
|
#
|
33403
33619
|
# <note markdown="1"> When specifying weights, the price used in the `lowest-price` and
|
33404
33620
|
# `price-capacity-optimized` allocation strategies is per *unit* hour
|
@@ -42562,8 +42778,15 @@ module Aws::EC2
|
|
42562
42778
|
# @return [Types::IpamPublicAddressTags]
|
42563
42779
|
#
|
42564
42780
|
# @!attribute [rw] network_border_group
|
42565
|
-
# The
|
42566
|
-
# assigned to is in.
|
42781
|
+
# The Availability Zone (AZ) or Local Zone (LZ) network border group
|
42782
|
+
# that the resource that the IP address is assigned to is in. Defaults
|
42783
|
+
# to an AZ network border group. For more information on available
|
42784
|
+
# Local Zones, see [Local Zone availability][1] in the *Amazon EC2
|
42785
|
+
# User Guide*.
|
42786
|
+
#
|
42787
|
+
#
|
42788
|
+
#
|
42789
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
|
42567
42790
|
# @return [String]
|
42568
42791
|
#
|
42569
42792
|
# @!attribute [rw] security_groups
|
@@ -42658,10 +42881,19 @@ module Aws::EC2
|
|
42658
42881
|
# The VPC ID.
|
42659
42882
|
# @return [String]
|
42660
42883
|
#
|
42884
|
+
# @!attribute [rw] network_interface_attachment_status
|
42885
|
+
# For elastic network interfaces, this is the status of whether or not
|
42886
|
+
# the elastic network interface is attached.
|
42887
|
+
# @return [String]
|
42888
|
+
#
|
42661
42889
|
# @!attribute [rw] sample_time
|
42662
42890
|
# The last successful resource discovery time.
|
42663
42891
|
# @return [Time]
|
42664
42892
|
#
|
42893
|
+
# @!attribute [rw] availability_zone_id
|
42894
|
+
# The Availability Zone ID.
|
42895
|
+
# @return [String]
|
42896
|
+
#
|
42665
42897
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamDiscoveredResourceCidr AWS API Documentation
|
42666
42898
|
#
|
42667
42899
|
class IpamDiscoveredResourceCidr < Struct.new(
|
@@ -42674,7 +42906,9 @@ module Aws::EC2
|
|
42674
42906
|
:resource_tags,
|
42675
42907
|
:ip_usage,
|
42676
42908
|
:vpc_id,
|
42677
|
-
:
|
42909
|
+
:network_interface_attachment_status,
|
42910
|
+
:sample_time,
|
42911
|
+
:availability_zone_id)
|
42678
42912
|
SENSITIVE = []
|
42679
42913
|
include Aws::Structure
|
42680
42914
|
end
|
@@ -42721,6 +42955,74 @@ module Aws::EC2
|
|
42721
42955
|
include Aws::Structure
|
42722
42956
|
end
|
42723
42957
|
|
42958
|
+
# A verification token is an Amazon Web Services-generated random value
|
42959
|
+
# that you can use to prove ownership of an external resource. For
|
42960
|
+
# example, you can use a verification token to validate that you control
|
42961
|
+
# a public IP address range when you bring an IP address range to Amazon
|
42962
|
+
# Web Services (BYOIP).
|
42963
|
+
#
|
42964
|
+
# @!attribute [rw] ipam_external_resource_verification_token_id
|
42965
|
+
# The ID of the token.
|
42966
|
+
# @return [String]
|
42967
|
+
#
|
42968
|
+
# @!attribute [rw] ipam_external_resource_verification_token_arn
|
42969
|
+
# Token ARN.
|
42970
|
+
# @return [String]
|
42971
|
+
#
|
42972
|
+
# @!attribute [rw] ipam_id
|
42973
|
+
# The ID of the IPAM that created the token.
|
42974
|
+
# @return [String]
|
42975
|
+
#
|
42976
|
+
# @!attribute [rw] ipam_arn
|
42977
|
+
# ARN of the IPAM that created the token.
|
42978
|
+
# @return [String]
|
42979
|
+
#
|
42980
|
+
# @!attribute [rw] ipam_region
|
42981
|
+
# Region of the IPAM that created the token.
|
42982
|
+
# @return [String]
|
42983
|
+
#
|
42984
|
+
# @!attribute [rw] token_value
|
42985
|
+
# Token value.
|
42986
|
+
# @return [String]
|
42987
|
+
#
|
42988
|
+
# @!attribute [rw] token_name
|
42989
|
+
# Token name.
|
42990
|
+
# @return [String]
|
42991
|
+
#
|
42992
|
+
# @!attribute [rw] not_after
|
42993
|
+
# Token expiration.
|
42994
|
+
# @return [Time]
|
42995
|
+
#
|
42996
|
+
# @!attribute [rw] status
|
42997
|
+
# Token status.
|
42998
|
+
# @return [String]
|
42999
|
+
#
|
43000
|
+
# @!attribute [rw] tags
|
43001
|
+
# Token tags.
|
43002
|
+
# @return [Array<Types::Tag>]
|
43003
|
+
#
|
43004
|
+
# @!attribute [rw] state
|
43005
|
+
# Token state.
|
43006
|
+
# @return [String]
|
43007
|
+
#
|
43008
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamExternalResourceVerificationToken AWS API Documentation
|
43009
|
+
#
|
43010
|
+
class IpamExternalResourceVerificationToken < Struct.new(
|
43011
|
+
:ipam_external_resource_verification_token_id,
|
43012
|
+
:ipam_external_resource_verification_token_arn,
|
43013
|
+
:ipam_id,
|
43014
|
+
:ipam_arn,
|
43015
|
+
:ipam_region,
|
43016
|
+
:token_value,
|
43017
|
+
:token_name,
|
43018
|
+
:not_after,
|
43019
|
+
:status,
|
43020
|
+
:tags,
|
43021
|
+
:state)
|
43022
|
+
SENSITIVE = []
|
43023
|
+
include Aws::Structure
|
43024
|
+
end
|
43025
|
+
|
42724
43026
|
# The operating Regions for an IPAM. Operating Regions are Amazon Web
|
42725
43027
|
# Services Regions where the IPAM is allowed to manage IP address CIDRs.
|
42726
43028
|
# IPAM only discovers and monitors resources in the Amazon Web Services
|
@@ -42791,15 +43093,25 @@ module Aws::EC2
|
|
42791
43093
|
# @return [String]
|
42792
43094
|
#
|
42793
43095
|
# @!attribute [rw] locale
|
42794
|
-
# The locale of the IPAM pool.
|
42795
|
-
#
|
42796
|
-
#
|
42797
|
-
#
|
42798
|
-
#
|
42799
|
-
#
|
42800
|
-
#
|
42801
|
-
#
|
42802
|
-
#
|
43096
|
+
# The locale of the IPAM pool.
|
43097
|
+
#
|
43098
|
+
# The locale for the pool should be one of the following:
|
43099
|
+
#
|
43100
|
+
# * An Amazon Web Services Region where you want this IPAM pool to be
|
43101
|
+
# available for allocations.
|
43102
|
+
#
|
43103
|
+
# * The network border group for an Amazon Web Services Local Zone
|
43104
|
+
# where you want this IPAM pool to be available for allocations
|
43105
|
+
# ([supported Local Zones][1]). This option is only available for
|
43106
|
+
# IPAM IPv4 pools in the public scope.
|
43107
|
+
#
|
43108
|
+
# If you choose an Amazon Web Services Region for locale that has not
|
43109
|
+
# been configured as an operating Region for the IPAM, you'll get an
|
43110
|
+
# error.
|
43111
|
+
#
|
43112
|
+
#
|
43113
|
+
#
|
43114
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
|
42803
43115
|
# @return [String]
|
42804
43116
|
#
|
42805
43117
|
# @!attribute [rw] pool_depth
|
@@ -43259,6 +43571,10 @@ module Aws::EC2
|
|
43259
43571
|
# The ID of a VPC.
|
43260
43572
|
# @return [String]
|
43261
43573
|
#
|
43574
|
+
# @!attribute [rw] availability_zone_id
|
43575
|
+
# The Availability Zone ID.
|
43576
|
+
# @return [String]
|
43577
|
+
#
|
43262
43578
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamResourceCidr AWS API Documentation
|
43263
43579
|
#
|
43264
43580
|
class IpamResourceCidr < Struct.new(
|
@@ -43276,7 +43592,8 @@ module Aws::EC2
|
|
43276
43592
|
:compliance_status,
|
43277
43593
|
:management_state,
|
43278
43594
|
:overlap_status,
|
43279
|
-
:vpc_id
|
43595
|
+
:vpc_id,
|
43596
|
+
:availability_zone_id)
|
43280
43597
|
SENSITIVE = []
|
43281
43598
|
include Aws::Structure
|
43282
43599
|
end
|
@@ -45313,10 +45630,17 @@ module Aws::EC2
|
|
45313
45630
|
# @return [String]
|
45314
45631
|
#
|
45315
45632
|
# @!attribute [rw] weighted_capacity
|
45316
|
-
# The number of units provided by the specified instance type.
|
45633
|
+
# The number of units provided by the specified instance type. These
|
45634
|
+
# are the same units that you chose to set the target capacity in
|
45635
|
+
# terms of instances, or a performance characteristic such as vCPUs,
|
45636
|
+
# memory, or I/O.
|
45317
45637
|
#
|
45318
|
-
#
|
45319
|
-
#
|
45638
|
+
# If the target capacity divided by this value is not a whole number,
|
45639
|
+
# Amazon EC2 rounds the number of instances to the next whole number.
|
45640
|
+
# If this value is not specified, the default is 1.
|
45641
|
+
#
|
45642
|
+
# <note markdown="1"> When specifying weights, the price used in the `lowestPrice` and
|
45643
|
+
# `priceCapacityOptimized` allocation strategies is per *unit* hour
|
45320
45644
|
# (where the instance price is divided by the specified weight).
|
45321
45645
|
# However, if all the specified weights are above the requested
|
45322
45646
|
# `TargetCapacity`, resulting in only 1 instance being launched, the
|
@@ -54524,8 +54848,8 @@ module Aws::EC2
|
|
54524
54848
|
#
|
54525
54849
|
# @!attribute [rw] cidr_authorization_context
|
54526
54850
|
# A signed document that proves that you are authorized to bring a
|
54527
|
-
# specified IP address range to Amazon using BYOIP. This option
|
54528
|
-
# applies to
|
54851
|
+
# specified IP address range to Amazon using BYOIP. This option only
|
54852
|
+
# applies to IPv4 and IPv6 pools in the public scope.
|
54529
54853
|
# @return [Types::IpamCidrAuthorizationContext]
|
54530
54854
|
#
|
54531
54855
|
# @!attribute [rw] netmask_length
|
@@ -54549,6 +54873,17 @@ module Aws::EC2
|
|
54549
54873
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
54550
54874
|
# @return [String]
|
54551
54875
|
#
|
54876
|
+
# @!attribute [rw] verification_method
|
54877
|
+
# The method for verifying control of a public IP address range.
|
54878
|
+
# Defaults to `remarks-x509` if not specified. This option only
|
54879
|
+
# applies to IPv4 and IPv6 pools in the public scope.
|
54880
|
+
# @return [String]
|
54881
|
+
#
|
54882
|
+
# @!attribute [rw] ipam_external_resource_verification_token_id
|
54883
|
+
# Verification token ID. This option only applies to IPv4 and IPv6
|
54884
|
+
# pools in the public scope.
|
54885
|
+
# @return [String]
|
54886
|
+
#
|
54552
54887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProvisionIpamPoolCidrRequest AWS API Documentation
|
54553
54888
|
#
|
54554
54889
|
class ProvisionIpamPoolCidrRequest < Struct.new(
|
@@ -54557,7 +54892,9 @@ module Aws::EC2
|
|
54557
54892
|
:cidr,
|
54558
54893
|
:cidr_authorization_context,
|
54559
54894
|
:netmask_length,
|
54560
|
-
:client_token
|
54895
|
+
:client_token,
|
54896
|
+
:verification_method,
|
54897
|
+
:ipam_external_resource_verification_token_id)
|
54561
54898
|
SENSITIVE = []
|
54562
54899
|
include Aws::Structure
|
54563
54900
|
end
|
@@ -54594,13 +54931,26 @@ module Aws::EC2
|
|
54594
54931
|
# public IPv4 pool.
|
54595
54932
|
# @return [Integer]
|
54596
54933
|
#
|
54934
|
+
# @!attribute [rw] network_border_group
|
54935
|
+
# The Availability Zone (AZ) or Local Zone (LZ) network border group
|
54936
|
+
# that the resource that the IP address is assigned to is in. Defaults
|
54937
|
+
# to an AZ network border group. For more information on available
|
54938
|
+
# Local Zones, see [Local Zone availability][1] in the *Amazon EC2
|
54939
|
+
# User Guide*.
|
54940
|
+
#
|
54941
|
+
#
|
54942
|
+
#
|
54943
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
|
54944
|
+
# @return [String]
|
54945
|
+
#
|
54597
54946
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProvisionPublicIpv4PoolCidrRequest AWS API Documentation
|
54598
54947
|
#
|
54599
54948
|
class ProvisionPublicIpv4PoolCidrRequest < Struct.new(
|
54600
54949
|
:dry_run,
|
54601
54950
|
:ipam_pool_id,
|
54602
54951
|
:pool_id,
|
54603
|
-
:netmask_length
|
54952
|
+
:netmask_length,
|
54953
|
+
:network_border_group)
|
54604
54954
|
SENSITIVE = []
|
54605
54955
|
include Aws::Structure
|
54606
54956
|
end
|
@@ -61717,6 +62067,15 @@ module Aws::EC2
|
|
61717
62067
|
# If the target capacity divided by this value is not a whole number,
|
61718
62068
|
# Amazon EC2 rounds the number of instances to the next whole number.
|
61719
62069
|
# If this value is not specified, the default is 1.
|
62070
|
+
#
|
62071
|
+
# <note markdown="1"> When specifying weights, the price used in the `lowestPrice` and
|
62072
|
+
# `priceCapacityOptimized` allocation strategies is per *unit* hour
|
62073
|
+
# (where the instance price is divided by the specified weight).
|
62074
|
+
# However, if all the specified weights are above the requested
|
62075
|
+
# `TargetCapacity`, resulting in only 1 instance being launched, the
|
62076
|
+
# price used is per *instance* hour.
|
62077
|
+
#
|
62078
|
+
# </note>
|
61720
62079
|
# @return [Float]
|
61721
62080
|
#
|
61722
62081
|
# @!attribute [rw] tag_specifications
|
@@ -67770,16 +68129,12 @@ module Aws::EC2
|
|
67770
68129
|
|
67771
68130
|
# Describes the modification status of an EBS volume.
|
67772
68131
|
#
|
67773
|
-
# If the volume has never been modified, some element values will be
|
67774
|
-
# null.
|
67775
|
-
#
|
67776
68132
|
# @!attribute [rw] volume_id
|
67777
68133
|
# The ID of the volume.
|
67778
68134
|
# @return [String]
|
67779
68135
|
#
|
67780
68136
|
# @!attribute [rw] modification_state
|
67781
|
-
# The current modification state.
|
67782
|
-
# unmodified volumes.
|
68137
|
+
# The current modification state.
|
67783
68138
|
# @return [String]
|
67784
68139
|
#
|
67785
68140
|
# @!attribute [rw] status_message
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
@@ -319,7 +319,7 @@ module Aws::EC2
|
|
319
319
|
# outpost_arn: "String",
|
320
320
|
# tag_specifications: [
|
321
321
|
# {
|
322
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint
|
322
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, ipam-external-resource-verification-token
|
323
323
|
# tags: [
|
324
324
|
# {
|
325
325
|
# key: "String",
|