aws-sdk-ec2 1.430.0 → 1.431.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +59 -1
- data/lib/aws-sdk-ec2/client_api.rb +3 -0
- data/lib/aws-sdk-ec2/types.rb +138 -54
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e470d465fdecb79cc4291f9fb316d1fcce2dcb22fb969c5d906b218ebcea3fd
|
4
|
+
data.tar.gz: 5df4f4986867a86602f308dc9c8389fe0f28cc908969a2692245fe440d6a2e9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc2e691eefc3a6159931984a948e4508defc36dc9fb4d865e8d96d7c0028930df9a05fd50a4fef92b85f5aa4169382a66bfc0cb2e02e1ae56cf663c2ff8d823a
|
7
|
+
data.tar.gz: 9ccb7cb6a8c96d6eb9c7a1cf08ca71513d1dfb449194956795bd7e672a9d9693e130debbf6524f5b415d1b11dbafa8c52ac5eb59c396fa6f6a30e6b3b0c774c7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.431.0 (2023-12-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Provision BYOIPv4 address ranges and advertise them by specifying the network border groups option in Los Angeles, Phoenix and Dallas AWS Local Zones.
|
8
|
+
|
4
9
|
1.430.0 (2023-12-08)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.431.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -808,6 +808,31 @@ module Aws::EC2
|
|
808
808
|
# If you have the required permissions, the error response is
|
809
809
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
810
810
|
#
|
811
|
+
# @option params [String] :network_border_group
|
812
|
+
# If you have [Local Zones][1] enabled, you can choose a network border
|
813
|
+
# group for Local Zones when you provision and advertise a BYOIPv4 CIDR.
|
814
|
+
# Choose the network border group carefully as the EIP and the Amazon
|
815
|
+
# Web Services resource it is associated with must reside in the same
|
816
|
+
# network border group.
|
817
|
+
#
|
818
|
+
# You can provision BYOIP address ranges to and advertise them in the
|
819
|
+
# following Local Zone network border groups:
|
820
|
+
#
|
821
|
+
# * us-east-1-dfw-2
|
822
|
+
#
|
823
|
+
# * us-west-2-lax-1
|
824
|
+
#
|
825
|
+
# * us-west-2-phx-2
|
826
|
+
#
|
827
|
+
# <note markdown="1"> You cannot provision or advertise BYOIPv6 address ranges in Local
|
828
|
+
# Zones at this time.
|
829
|
+
#
|
830
|
+
# </note>
|
831
|
+
#
|
832
|
+
#
|
833
|
+
#
|
834
|
+
# [1]: https://docs.aws.amazon.com/local-zones/latest/ug/how-local-zones-work.html
|
835
|
+
#
|
811
836
|
# @return [Types::AdvertiseByoipCidrResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
812
837
|
#
|
813
838
|
# * {Types::AdvertiseByoipCidrResult#byoip_cidr #byoip_cidr} => Types::ByoipCidr
|
@@ -818,6 +843,7 @@ module Aws::EC2
|
|
818
843
|
# cidr: "String", # required
|
819
844
|
# asn: "String",
|
820
845
|
# dry_run: false,
|
846
|
+
# network_border_group: "String",
|
821
847
|
# })
|
822
848
|
#
|
823
849
|
# @example Response structure
|
@@ -831,6 +857,7 @@ module Aws::EC2
|
|
831
857
|
# resp.byoip_cidr.asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
832
858
|
# resp.byoip_cidr.status_message #=> String
|
833
859
|
# resp.byoip_cidr.state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
860
|
+
# resp.byoip_cidr.network_border_group #=> String
|
834
861
|
#
|
835
862
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AdvertiseByoipCidr AWS API Documentation
|
836
863
|
#
|
@@ -18916,6 +18943,7 @@ module Aws::EC2
|
|
18916
18943
|
# resp.byoip_cidr.asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
18917
18944
|
# resp.byoip_cidr.status_message #=> String
|
18918
18945
|
# resp.byoip_cidr.state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
18946
|
+
# resp.byoip_cidr.network_border_group #=> String
|
18919
18947
|
#
|
18920
18948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeprovisionByoipCidr AWS API Documentation
|
18921
18949
|
#
|
@@ -20090,6 +20118,7 @@ module Aws::EC2
|
|
20090
20118
|
# resp.byoip_cidrs[0].asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
20091
20119
|
# resp.byoip_cidrs[0].status_message #=> String
|
20092
20120
|
# resp.byoip_cidrs[0].state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
20121
|
+
# resp.byoip_cidrs[0].network_border_group #=> String
|
20093
20122
|
# resp.next_token #=> String
|
20094
20123
|
#
|
20095
20124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeByoipCidrs AWS API Documentation
|
@@ -51242,6 +51271,7 @@ module Aws::EC2
|
|
51242
51271
|
# resp.byoip_cidr.asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
51243
51272
|
# resp.byoip_cidr.status_message #=> String
|
51244
51273
|
# resp.byoip_cidr.state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
51274
|
+
# resp.byoip_cidr.network_border_group #=> String
|
51245
51275
|
#
|
51246
51276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MoveByoipCidrToIpam AWS API Documentation
|
51247
51277
|
#
|
@@ -51308,6 +51338,31 @@ module Aws::EC2
|
|
51308
51338
|
# @option params [Boolean] :multi_region
|
51309
51339
|
# Reserved.
|
51310
51340
|
#
|
51341
|
+
# @option params [String] :network_border_group
|
51342
|
+
# If you have [Local Zones][1] enabled, you can choose a network border
|
51343
|
+
# group for Local Zones when you provision and advertise a BYOIPv4 CIDR.
|
51344
|
+
# Choose the network border group carefully as the EIP and the Amazon
|
51345
|
+
# Web Services resource it is associated with must reside in the same
|
51346
|
+
# network border group.
|
51347
|
+
#
|
51348
|
+
# You can provision BYOIP address ranges to and advertise them in the
|
51349
|
+
# following Local Zone network border groups:
|
51350
|
+
#
|
51351
|
+
# * us-east-1-dfw-2
|
51352
|
+
#
|
51353
|
+
# * us-west-2-lax-1
|
51354
|
+
#
|
51355
|
+
# * us-west-2-phx-2
|
51356
|
+
#
|
51357
|
+
# <note markdown="1"> You cannot provision or advertise BYOIPv6 address ranges in Local
|
51358
|
+
# Zones at this time.
|
51359
|
+
#
|
51360
|
+
# </note>
|
51361
|
+
#
|
51362
|
+
#
|
51363
|
+
#
|
51364
|
+
# [1]: https://docs.aws.amazon.com/local-zones/latest/ug/how-local-zones-work.html
|
51365
|
+
#
|
51311
51366
|
# @return [Types::ProvisionByoipCidrResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
51312
51367
|
#
|
51313
51368
|
# * {Types::ProvisionByoipCidrResult#byoip_cidr #byoip_cidr} => Types::ByoipCidr
|
@@ -51335,6 +51390,7 @@ module Aws::EC2
|
|
51335
51390
|
# },
|
51336
51391
|
# ],
|
51337
51392
|
# multi_region: false,
|
51393
|
+
# network_border_group: "String",
|
51338
51394
|
# })
|
51339
51395
|
#
|
51340
51396
|
# @example Response structure
|
@@ -51348,6 +51404,7 @@ module Aws::EC2
|
|
51348
51404
|
# resp.byoip_cidr.asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
51349
51405
|
# resp.byoip_cidr.status_message #=> String
|
51350
51406
|
# resp.byoip_cidr.state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
51407
|
+
# resp.byoip_cidr.network_border_group #=> String
|
51351
51408
|
#
|
51352
51409
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProvisionByoipCidr AWS API Documentation
|
51353
51410
|
#
|
@@ -58594,6 +58651,7 @@ module Aws::EC2
|
|
58594
58651
|
# resp.byoip_cidr.asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
58595
58652
|
# resp.byoip_cidr.status_message #=> String
|
58596
58653
|
# resp.byoip_cidr.state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
58654
|
+
# resp.byoip_cidr.network_border_group #=> String
|
58597
58655
|
#
|
58598
58656
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/WithdrawByoipCidr AWS API Documentation
|
58599
58657
|
#
|
@@ -58617,7 +58675,7 @@ module Aws::EC2
|
|
58617
58675
|
params: params,
|
58618
58676
|
config: config)
|
58619
58677
|
context[:gem_name] = 'aws-sdk-ec2'
|
58620
|
-
context[:gem_version] = '1.
|
58678
|
+
context[:gem_version] = '1.431.0'
|
58621
58679
|
Seahorse::Client::Request.new(handlers, context)
|
58622
58680
|
end
|
58623
58681
|
|
@@ -3338,6 +3338,7 @@ module Aws::EC2
|
|
3338
3338
|
AdvertiseByoipCidrRequest.add_member(:cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Cidr"))
|
3339
3339
|
AdvertiseByoipCidrRequest.add_member(:asn, Shapes::ShapeRef.new(shape: String, location_name: "Asn"))
|
3340
3340
|
AdvertiseByoipCidrRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3341
|
+
AdvertiseByoipCidrRequest.add_member(:network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "NetworkBorderGroup"))
|
3341
3342
|
AdvertiseByoipCidrRequest.struct_class = Types::AdvertiseByoipCidrRequest
|
3342
3343
|
|
3343
3344
|
AdvertiseByoipCidrResult.add_member(:byoip_cidr, Shapes::ShapeRef.new(shape: ByoipCidr, location_name: "byoipCidr"))
|
@@ -3930,6 +3931,7 @@ module Aws::EC2
|
|
3930
3931
|
ByoipCidr.add_member(:asn_associations, Shapes::ShapeRef.new(shape: AsnAssociationSet, location_name: "asnAssociationSet"))
|
3931
3932
|
ByoipCidr.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
3932
3933
|
ByoipCidr.add_member(:state, Shapes::ShapeRef.new(shape: ByoipCidrState, location_name: "state"))
|
3934
|
+
ByoipCidr.add_member(:network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "networkBorderGroup"))
|
3933
3935
|
ByoipCidr.struct_class = Types::ByoipCidr
|
3934
3936
|
|
3935
3937
|
ByoipCidrSet.member = Shapes::ShapeRef.new(shape: ByoipCidr, location_name: "item")
|
@@ -12625,6 +12627,7 @@ module Aws::EC2
|
|
12625
12627
|
ProvisionByoipCidrRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
12626
12628
|
ProvisionByoipCidrRequest.add_member(:pool_tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "PoolTagSpecification"))
|
12627
12629
|
ProvisionByoipCidrRequest.add_member(:multi_region, Shapes::ShapeRef.new(shape: Boolean, location_name: "MultiRegion"))
|
12630
|
+
ProvisionByoipCidrRequest.add_member(:network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "NetworkBorderGroup"))
|
12628
12631
|
ProvisionByoipCidrRequest.struct_class = Types::ProvisionByoipCidrRequest
|
12629
12632
|
|
12630
12633
|
ProvisionByoipCidrResult.add_member(:byoip_cidr, Shapes::ShapeRef.new(shape: ByoipCidr, location_name: "byoipCidr"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -809,12 +809,39 @@ module Aws::EC2
|
|
809
809
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
810
810
|
# @return [Boolean]
|
811
811
|
#
|
812
|
+
# @!attribute [rw] network_border_group
|
813
|
+
# If you have [Local Zones][1] enabled, you can choose a network
|
814
|
+
# border group for Local Zones when you provision and advertise a
|
815
|
+
# BYOIPv4 CIDR. Choose the network border group carefully as the EIP
|
816
|
+
# and the Amazon Web Services resource it is associated with must
|
817
|
+
# reside in the same network border group.
|
818
|
+
#
|
819
|
+
# You can provision BYOIP address ranges to and advertise them in the
|
820
|
+
# following Local Zone network border groups:
|
821
|
+
#
|
822
|
+
# * us-east-1-dfw-2
|
823
|
+
#
|
824
|
+
# * us-west-2-lax-1
|
825
|
+
#
|
826
|
+
# * us-west-2-phx-2
|
827
|
+
#
|
828
|
+
# <note markdown="1"> You cannot provision or advertise BYOIPv6 address ranges in Local
|
829
|
+
# Zones at this time.
|
830
|
+
#
|
831
|
+
# </note>
|
832
|
+
#
|
833
|
+
#
|
834
|
+
#
|
835
|
+
# [1]: https://docs.aws.amazon.com/local-zones/latest/ug/how-local-zones-work.html
|
836
|
+
# @return [String]
|
837
|
+
#
|
812
838
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AdvertiseByoipCidrRequest AWS API Documentation
|
813
839
|
#
|
814
840
|
class AdvertiseByoipCidrRequest < Struct.new(
|
815
841
|
:cidr,
|
816
842
|
:asn,
|
817
|
-
:dry_run
|
843
|
+
:dry_run,
|
844
|
+
:network_border_group)
|
818
845
|
SENSITIVE = []
|
819
846
|
include Aws::Structure
|
820
847
|
end
|
@@ -3814,6 +3841,32 @@ module Aws::EC2
|
|
3814
3841
|
# The state of the address pool.
|
3815
3842
|
# @return [String]
|
3816
3843
|
#
|
3844
|
+
# @!attribute [rw] network_border_group
|
3845
|
+
# If you have [Local Zones][1] enabled, you can choose a network
|
3846
|
+
# border group for Local Zones when you provision and advertise a
|
3847
|
+
# BYOIPv4 CIDR. Choose the network border group carefully as the EIP
|
3848
|
+
# and the Amazon Web Services resource it is associated with must
|
3849
|
+
# reside in the same network border group.
|
3850
|
+
#
|
3851
|
+
# You can provision BYOIP address ranges to and advertise them in the
|
3852
|
+
# following Local Zone network border groups:
|
3853
|
+
#
|
3854
|
+
# * us-east-1-dfw-2
|
3855
|
+
#
|
3856
|
+
# * us-west-2-lax-1
|
3857
|
+
#
|
3858
|
+
# * us-west-2-phx-2
|
3859
|
+
#
|
3860
|
+
# <note markdown="1"> You cannot provision or advertise BYOIPv6 address ranges in Local
|
3861
|
+
# Zones at this time.
|
3862
|
+
#
|
3863
|
+
# </note>
|
3864
|
+
#
|
3865
|
+
#
|
3866
|
+
#
|
3867
|
+
# [1]: https://docs.aws.amazon.com/local-zones/latest/ug/how-local-zones-work.html
|
3868
|
+
# @return [String]
|
3869
|
+
#
|
3817
3870
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ByoipCidr AWS API Documentation
|
3818
3871
|
#
|
3819
3872
|
class ByoipCidr < Struct.new(
|
@@ -3821,7 +3874,8 @@ module Aws::EC2
|
|
3821
3874
|
:description,
|
3822
3875
|
:asn_associations,
|
3823
3876
|
:status_message,
|
3824
|
-
:state
|
3877
|
+
:state,
|
3878
|
+
:network_border_group)
|
3825
3879
|
SENSITIVE = []
|
3826
3880
|
include Aws::Structure
|
3827
3881
|
end
|
@@ -39668,6 +39722,16 @@ module Aws::EC2
|
|
39668
39722
|
# network interface, not an existing one. You cannot specify more than
|
39669
39723
|
# one network interface in the request. If launching into a default
|
39670
39724
|
# subnet, the default value is `true`.
|
39725
|
+
#
|
39726
|
+
# Starting on February 1, 2024, Amazon Web Services will charge for
|
39727
|
+
# all public IPv4 addresses, including public IPv4 addresses
|
39728
|
+
# associated with running instances and Elastic IP addresses. For more
|
39729
|
+
# information, see the *Public IPv4 Address* tab on the [Amazon VPC
|
39730
|
+
# pricing page][1].
|
39731
|
+
#
|
39732
|
+
#
|
39733
|
+
#
|
39734
|
+
# [1]: http://aws.amazon.com/vpc/pricing/
|
39671
39735
|
# @return [Boolean]
|
39672
39736
|
#
|
39673
39737
|
# @!attribute [rw] delete_on_termination
|
@@ -44053,21 +44117,19 @@ module Aws::EC2
|
|
44053
44117
|
# @return [String]
|
44054
44118
|
#
|
44055
44119
|
# @!attribute [rw] http_tokens
|
44056
|
-
# Indicates whether IMDSv2 is
|
44057
|
-
#
|
44058
|
-
# `optional` - When IMDSv2 is optional, you can choose to retrieve
|
44059
|
-
# instance metadata with or without a session token in your request.
|
44060
|
-
# If you retrieve the IAM role credentials without a token, the IMDSv1
|
44061
|
-
# role credentials are returned. If you retrieve the IAM role
|
44062
|
-
# credentials using a valid session token, the IMDSv2 role credentials
|
44063
|
-
# are returned.
|
44120
|
+
# Indicates whether IMDSv2 is required.
|
44064
44121
|
#
|
44065
|
-
# `
|
44066
|
-
#
|
44067
|
-
#
|
44068
|
-
#
|
44122
|
+
# * `optional` - IMDSv2 is optional. You can choose whether to send a
|
44123
|
+
# session token in your instance metadata retrieval requests. If you
|
44124
|
+
# retrieve IAM role credentials without a session token, you receive
|
44125
|
+
# the IMDSv1 role credentials. If you retrieve IAM role credentials
|
44126
|
+
# using a valid session token, you receive the IMDSv2 role
|
44127
|
+
# credentials.
|
44069
44128
|
#
|
44070
|
-
#
|
44129
|
+
# * `required` - IMDSv2 is required. You must send a session token in
|
44130
|
+
# your instance metadata retrieval requests. With this option,
|
44131
|
+
# retrieving the IAM role credentials always returns IMDSv2
|
44132
|
+
# credentials; IMDSv1 credentials are not available.
|
44071
44133
|
# @return [String]
|
44072
44134
|
#
|
44073
44135
|
# @!attribute [rw] http_put_response_hop_limit
|
@@ -44132,23 +44194,22 @@ module Aws::EC2
|
|
44132
44194
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html
|
44133
44195
|
#
|
44134
44196
|
# @!attribute [rw] http_tokens
|
44135
|
-
# IMDSv2
|
44136
|
-
# `optional` (in other words, set the use of IMDSv2 to `optional`) or
|
44137
|
-
# `required` (in other words, set the use of IMDSv2 to `required`).
|
44197
|
+
# Indicates whether IMDSv2 is required.
|
44138
44198
|
#
|
44139
|
-
# * `optional` -
|
44140
|
-
#
|
44141
|
-
#
|
44142
|
-
# IMDSv1 role credentials
|
44143
|
-
#
|
44144
|
-
# credentials
|
44199
|
+
# * `optional` - IMDSv2 is optional. You can choose whether to send a
|
44200
|
+
# session token in your instance metadata retrieval requests. If you
|
44201
|
+
# retrieve IAM role credentials without a session token, you receive
|
44202
|
+
# the IMDSv1 role credentials. If you retrieve IAM role credentials
|
44203
|
+
# using a valid session token, you receive the IMDSv2 role
|
44204
|
+
# credentials.
|
44145
44205
|
#
|
44146
|
-
# * `required` -
|
44147
|
-
#
|
44148
|
-
#
|
44206
|
+
# * `required` - IMDSv2 is required. You must send a session token in
|
44207
|
+
# your instance metadata retrieval requests. With this option,
|
44208
|
+
# retrieving the IAM role credentials always returns IMDSv2
|
44149
44209
|
# credentials; IMDSv1 credentials are not available.
|
44150
44210
|
#
|
44151
|
-
# Default: `
|
44211
|
+
# Default: If the value of `ImdsSupport` for the Amazon Machine Image
|
44212
|
+
# (AMI) for your instance is `v2.0`, the default is `required`.
|
44152
44213
|
# @return [String]
|
44153
44214
|
#
|
44154
44215
|
# @!attribute [rw] http_put_response_hop_limit
|
@@ -44222,6 +44283,16 @@ module Aws::EC2
|
|
44222
44283
|
# @!attribute [rw] associate_public_ip_address
|
44223
44284
|
# Indicates whether to associate a public IPv4 address with eth0 for a
|
44224
44285
|
# new network interface.
|
44286
|
+
#
|
44287
|
+
# Starting on February 1, 2024, Amazon Web Services will charge for
|
44288
|
+
# all public IPv4 addresses, including public IPv4 addresses
|
44289
|
+
# associated with running instances and Elastic IP addresses. For more
|
44290
|
+
# information, see the *Public IPv4 Address* tab on the [Amazon VPC
|
44291
|
+
# pricing page][1].
|
44292
|
+
#
|
44293
|
+
#
|
44294
|
+
#
|
44295
|
+
# [1]: http://aws.amazon.com/vpc/pricing/
|
44225
44296
|
# @return [Boolean]
|
44226
44297
|
#
|
44227
44298
|
# @!attribute [rw] delete_on_termination
|
@@ -44372,6 +44443,16 @@ module Aws::EC2
|
|
44372
44443
|
# @!attribute [rw] associate_public_ip_address
|
44373
44444
|
# Associates a public IPv4 address with eth0 for a new network
|
44374
44445
|
# interface.
|
44446
|
+
#
|
44447
|
+
# Starting on February 1, 2024, Amazon Web Services will charge for
|
44448
|
+
# all public IPv4 addresses, including public IPv4 addresses
|
44449
|
+
# associated with running instances and Elastic IP addresses. For more
|
44450
|
+
# information, see the *Public IPv4 Address* tab on the [Amazon VPC
|
44451
|
+
# pricing page][1].
|
44452
|
+
#
|
44453
|
+
#
|
44454
|
+
#
|
44455
|
+
# [1]: http://aws.amazon.com/vpc/pricing/
|
44375
44456
|
# @return [Boolean]
|
44376
44457
|
#
|
44377
44458
|
# @!attribute [rw] delete_on_termination
|
@@ -53401,6 +53482,32 @@ module Aws::EC2
|
|
53401
53482
|
# Reserved.
|
53402
53483
|
# @return [Boolean]
|
53403
53484
|
#
|
53485
|
+
# @!attribute [rw] network_border_group
|
53486
|
+
# If you have [Local Zones][1] enabled, you can choose a network
|
53487
|
+
# border group for Local Zones when you provision and advertise a
|
53488
|
+
# BYOIPv4 CIDR. Choose the network border group carefully as the EIP
|
53489
|
+
# and the Amazon Web Services resource it is associated with must
|
53490
|
+
# reside in the same network border group.
|
53491
|
+
#
|
53492
|
+
# You can provision BYOIP address ranges to and advertise them in the
|
53493
|
+
# following Local Zone network border groups:
|
53494
|
+
#
|
53495
|
+
# * us-east-1-dfw-2
|
53496
|
+
#
|
53497
|
+
# * us-west-2-lax-1
|
53498
|
+
#
|
53499
|
+
# * us-west-2-phx-2
|
53500
|
+
#
|
53501
|
+
# <note markdown="1"> You cannot provision or advertise BYOIPv6 address ranges in Local
|
53502
|
+
# Zones at this time.
|
53503
|
+
#
|
53504
|
+
# </note>
|
53505
|
+
#
|
53506
|
+
#
|
53507
|
+
#
|
53508
|
+
# [1]: https://docs.aws.amazon.com/local-zones/latest/ug/how-local-zones-work.html
|
53509
|
+
# @return [String]
|
53510
|
+
#
|
53404
53511
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProvisionByoipCidrRequest AWS API Documentation
|
53405
53512
|
#
|
53406
53513
|
class ProvisionByoipCidrRequest < Struct.new(
|
@@ -53410,7 +53517,8 @@ module Aws::EC2
|
|
53410
53517
|
:description,
|
53411
53518
|
:dry_run,
|
53412
53519
|
:pool_tag_specifications,
|
53413
|
-
:multi_region
|
53520
|
+
:multi_region,
|
53521
|
+
:network_border_group)
|
53414
53522
|
SENSITIVE = []
|
53415
53523
|
include Aws::Structure
|
53416
53524
|
end
|
@@ -55568,31 +55676,7 @@ module Aws::EC2
|
|
55568
55676
|
#
|
55569
55677
|
# @!attribute [rw] tag_specifications
|
55570
55678
|
# The tags to apply to the resources that are created during instance
|
55571
|
-
# launch.
|
55572
|
-
#
|
55573
|
-
# You can specify tags for the following resources only:
|
55574
|
-
#
|
55575
|
-
# * Instances
|
55576
|
-
#
|
55577
|
-
# * Volumes
|
55578
|
-
#
|
55579
|
-
# * Elastic graphics
|
55580
|
-
#
|
55581
|
-
# * Spot Instance requests
|
55582
|
-
#
|
55583
|
-
# * Network interfaces
|
55584
|
-
#
|
55585
|
-
# To tag a resource after it has been created, see [CreateTags][1].
|
55586
|
-
#
|
55587
|
-
# <note markdown="1"> To tag the launch template itself, you must use the
|
55588
|
-
# [TagSpecification][2] parameter.
|
55589
|
-
#
|
55590
|
-
# </note>
|
55591
|
-
#
|
55592
|
-
#
|
55593
|
-
#
|
55594
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html
|
55595
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html
|
55679
|
+
# launch. These tags are not applied to the launch template.
|
55596
55680
|
# @return [Array<Types::LaunchTemplateTagSpecificationRequest>]
|
55597
55681
|
#
|
55598
55682
|
# @!attribute [rw] elastic_gpu_specifications
|
data/lib/aws-sdk-ec2.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.431.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|