aws-sdk-ec2 1.464.0 → 1.465.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b8d205e9dd89ae51beb51e9ba200a071c61ad315848a265714422bafda89f5d5
4
- data.tar.gz: fd5064bcad166b73d519ee89542efb855c4fbda0c01ec86e0a0b33ef77e331e4
3
+ metadata.gz: 34f94ecd7c615fe7818abb524900d1efc7a54ccfb43d29315bc1eba4e30276fa
4
+ data.tar.gz: 84d126d56c53daa280fa1bff620a57de5b27f014b16094e92eff57b7d93bd714
5
5
  SHA512:
6
- metadata.gz: c038a4fa0fd531f9e62d3a593537005f4f91c850bb459410154e718cef34e1f31f75598afd1ea73e484136dac1f9bcbab02746fb512034ed8a48dcdaf84cb932
7
- data.tar.gz: 0471afc72c5cc4b61550fa06008ea2fd0d0657c3e2cb5772a900e1774a5a663ea95efae5e18784d572d8d460353dca8d678ea590a1f984c84ca85b9a58d367dd
6
+ metadata.gz: 9d24cbabc4c3e3cbf03ea4ce17700dcf4db66482aeff1c75a40aa9afc04422ecc8edb078c44209cb38330aba211430e799384513433d315bb7ec8f910c36478f
7
+ data.tar.gz: ce1592c4f13ae4075299a8cd726c42645bbe25e11729ad54857243bc1a359dbbd7a4a4bd3d5d68476890bde0b21e69523fd70a93b72e362857de4c8fbd9cc81c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.465.0 (2024-07-10)
5
+ ------------------
6
+
7
+ * Feature - Add parameters to enable provisioning IPAM BYOIPv4 space at a Local Zone Network Border Group level
8
+
4
9
  1.464.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.464.0
1
+ 1.465.0
@@ -7676,17 +7676,19 @@ module Aws::EC2
7676
7676
  # The ID of the scope in which you would like to create the IPAM pool.
7677
7677
  #
7678
7678
  # @option params [String] :locale
7679
- # In IPAM, the locale is the Amazon Web Services Region where you want
7680
- # to make an IPAM pool available for allocations. Only resources in the
7681
- # same Region as the locale of the pool can get IP address allocations
7682
- # from the pool. You can only allocate a CIDR for a VPC, for example,
7683
- # from an IPAM pool that shares a locale with the VPC’s Region. Note
7684
- # that once you choose a Locale for a pool, you cannot modify it. If you
7685
- # do not choose a locale, resources in Regions others than the IPAM's
7686
- # home region cannot use CIDRs from this pool.
7679
+ # In IPAM, the locale is the Amazon Web Services Region or, for IPAM
7680
+ # IPv4 pools in the public scope, the network border group for an Amazon
7681
+ # Web Services Local Zone where you want to make an IPAM pool available
7682
+ # for allocations ([supported Local Zones][1]). If you do not choose a
7683
+ # locale, resources in Regions others than the IPAM's home region
7684
+ # cannot use CIDRs from this pool.
7687
7685
  #
7688
7686
  # Possible values: Any Amazon Web Services Region, such as us-east-1.
7689
7687
  #
7688
+ #
7689
+ #
7690
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
7691
+ #
7690
7692
  # @option params [String] :source_ipam_pool_id
7691
7693
  # The ID of the source IPAM pool. Use this option to create a pool
7692
7694
  # within an existing pool. Note that the CIDR you provision for the pool
@@ -10797,6 +10799,17 @@ module Aws::EC2
10797
10799
  # and the value `TeamA`, specify `tag:Owner` for the filter name and
10798
10800
  # `TeamA` for the filter value.
10799
10801
  #
10802
+ # @option params [String] :network_border_group
10803
+ # The Availability Zone (AZ) or Local Zone (LZ) network border group
10804
+ # that the resource that the IP address is assigned to is in. Defaults
10805
+ # to an AZ network border group. For more information on available Local
10806
+ # Zones, see [Local Zone availability][1] in the *Amazon EC2 User
10807
+ # Guide*.
10808
+ #
10809
+ #
10810
+ #
10811
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
10812
+ #
10800
10813
  # @return [Types::CreatePublicIpv4PoolResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10801
10814
  #
10802
10815
  # * {Types::CreatePublicIpv4PoolResult#pool_id #pool_id} => String
@@ -10816,6 +10829,7 @@ module Aws::EC2
10816
10829
  # ],
10817
10830
  # },
10818
10831
  # ],
10832
+ # network_border_group: "String",
10819
10833
  # })
10820
10834
  #
10821
10835
  # @example Response structure
@@ -17267,6 +17281,17 @@ module Aws::EC2
17267
17281
  # @option params [required, String] :pool_id
17268
17282
  # The ID of the public IPv4 pool you want to delete.
17269
17283
  #
17284
+ # @option params [String] :network_border_group
17285
+ # The Availability Zone (AZ) or Local Zone (LZ) network border group
17286
+ # that the resource that the IP address is assigned to is in. Defaults
17287
+ # to an AZ network border group. For more information on available Local
17288
+ # Zones, see [Local Zone availability][1] in the *Amazon EC2 User
17289
+ # Guide*.
17290
+ #
17291
+ #
17292
+ #
17293
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
17294
+ #
17270
17295
  # @return [Types::DeletePublicIpv4PoolResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17271
17296
  #
17272
17297
  # * {Types::DeletePublicIpv4PoolResult#return_value #return_value} => Boolean
@@ -17276,6 +17301,7 @@ module Aws::EC2
17276
17301
  # resp = client.delete_public_ipv_4_pool({
17277
17302
  # dry_run: false,
17278
17303
  # pool_id: "Ipv4PoolEc2Id", # required
17304
+ # network_border_group: "String",
17279
17305
  # })
17280
17306
  #
17281
17307
  # @example Response structure
@@ -42476,7 +42502,9 @@ module Aws::EC2
42476
42502
  # resp.ipam_discovered_resource_cidrs[0].resource_tags[0].value #=> String
42477
42503
  # resp.ipam_discovered_resource_cidrs[0].ip_usage #=> Float
42478
42504
  # resp.ipam_discovered_resource_cidrs[0].vpc_id #=> String
42505
+ # resp.ipam_discovered_resource_cidrs[0].network_interface_attachment_status #=> String, one of "available", "in-use"
42479
42506
  # resp.ipam_discovered_resource_cidrs[0].sample_time #=> Time
42507
+ # resp.ipam_discovered_resource_cidrs[0].availability_zone_id #=> String
42480
42508
  # resp.next_token #=> String
42481
42509
  #
42482
42510
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamDiscoveredResourceCidrs AWS API Documentation
@@ -42736,6 +42764,7 @@ module Aws::EC2
42736
42764
  # resp.ipam_resource_cidrs[0].management_state #=> String, one of "managed", "unmanaged", "ignored"
42737
42765
  # resp.ipam_resource_cidrs[0].overlap_status #=> String, one of "overlapping", "nonoverlapping", "ignored"
42738
42766
  # resp.ipam_resource_cidrs[0].vpc_id #=> String
42767
+ # resp.ipam_resource_cidrs[0].availability_zone_id #=> String
42739
42768
  #
42740
42769
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamResourceCidrs AWS API Documentation
42741
42770
  #
@@ -48327,6 +48356,7 @@ module Aws::EC2
48327
48356
  # resp.ipam_resource_cidr.management_state #=> String, one of "managed", "unmanaged", "ignored"
48328
48357
  # resp.ipam_resource_cidr.overlap_status #=> String, one of "overlapping", "nonoverlapping", "ignored"
48329
48358
  # resp.ipam_resource_cidr.vpc_id #=> String
48359
+ # resp.ipam_resource_cidr.availability_zone_id #=> String
48330
48360
  #
48331
48361
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamResourceCidr AWS API Documentation
48332
48362
  #
@@ -52391,6 +52421,17 @@ module Aws::EC2
52391
52421
  # The netmask length of the CIDR you would like to allocate to the
52392
52422
  # public IPv4 pool.
52393
52423
  #
52424
+ # @option params [String] :network_border_group
52425
+ # The Availability Zone (AZ) or Local Zone (LZ) network border group
52426
+ # that the resource that the IP address is assigned to is in. Defaults
52427
+ # to an AZ network border group. For more information on available Local
52428
+ # Zones, see [Local Zone availability][1] in the *Amazon EC2 User
52429
+ # Guide*.
52430
+ #
52431
+ #
52432
+ #
52433
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
52434
+ #
52394
52435
  # @return [Types::ProvisionPublicIpv4PoolCidrResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
52395
52436
  #
52396
52437
  # * {Types::ProvisionPublicIpv4PoolCidrResult#pool_id #pool_id} => String
@@ -52403,6 +52444,7 @@ module Aws::EC2
52403
52444
  # ipam_pool_id: "IpamPoolId", # required
52404
52445
  # pool_id: "Ipv4PoolEc2Id", # required
52405
52446
  # netmask_length: 1, # required
52447
+ # network_border_group: "String",
52406
52448
  # })
52407
52449
  #
52408
52450
  # @example Response structure
@@ -59488,7 +59530,7 @@ module Aws::EC2
59488
59530
  params: params,
59489
59531
  config: config)
59490
59532
  context[:gem_name] = 'aws-sdk-ec2'
59491
- context[:gem_version] = '1.464.0'
59533
+ context[:gem_version] = '1.465.0'
59492
59534
  Seahorse::Client::Request.new(handlers, context)
59493
59535
  end
59494
59536
 
@@ -1814,6 +1814,7 @@ module Aws::EC2
1814
1814
  IpamManagementState = Shapes::StringShape.new(name: 'IpamManagementState')
1815
1815
  IpamMaxResults = Shapes::IntegerShape.new(name: 'IpamMaxResults')
1816
1816
  IpamNetmaskLength = Shapes::IntegerShape.new(name: 'IpamNetmaskLength')
1817
+ IpamNetworkInterfaceAttachmentStatus = Shapes::StringShape.new(name: 'IpamNetworkInterfaceAttachmentStatus')
1817
1818
  IpamOperatingRegion = Shapes::StructureShape.new(name: 'IpamOperatingRegion')
1818
1819
  IpamOperatingRegionSet = Shapes::ListShape.new(name: 'IpamOperatingRegionSet')
1819
1820
  IpamOverlapStatus = Shapes::StringShape.new(name: 'IpamOverlapStatus')
@@ -5031,6 +5032,7 @@ module Aws::EC2
5031
5032
 
5032
5033
  CreatePublicIpv4PoolRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
5033
5034
  CreatePublicIpv4PoolRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
5035
+ CreatePublicIpv4PoolRequest.add_member(:network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "NetworkBorderGroup"))
5034
5036
  CreatePublicIpv4PoolRequest.struct_class = Types::CreatePublicIpv4PoolRequest
5035
5037
 
5036
5038
  CreatePublicIpv4PoolResult.add_member(:pool_id, Shapes::ShapeRef.new(shape: Ipv4PoolEc2Id, location_name: "poolId"))
@@ -5897,6 +5899,7 @@ module Aws::EC2
5897
5899
 
5898
5900
  DeletePublicIpv4PoolRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
5899
5901
  DeletePublicIpv4PoolRequest.add_member(:pool_id, Shapes::ShapeRef.new(shape: Ipv4PoolEc2Id, required: true, location_name: "PoolId"))
5902
+ DeletePublicIpv4PoolRequest.add_member(:network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "NetworkBorderGroup"))
5900
5903
  DeletePublicIpv4PoolRequest.struct_class = Types::DeletePublicIpv4PoolRequest
5901
5904
 
5902
5905
  DeletePublicIpv4PoolResult.add_member(:return_value, Shapes::ShapeRef.new(shape: Boolean, location_name: "returnValue"))
@@ -10539,7 +10542,9 @@ module Aws::EC2
10539
10542
  IpamDiscoveredResourceCidr.add_member(:resource_tags, Shapes::ShapeRef.new(shape: IpamResourceTagList, location_name: "resourceTagSet"))
10540
10543
  IpamDiscoveredResourceCidr.add_member(:ip_usage, Shapes::ShapeRef.new(shape: BoxedDouble, location_name: "ipUsage"))
10541
10544
  IpamDiscoveredResourceCidr.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcId"))
10545
+ IpamDiscoveredResourceCidr.add_member(:network_interface_attachment_status, Shapes::ShapeRef.new(shape: IpamNetworkInterfaceAttachmentStatus, location_name: "networkInterfaceAttachmentStatus"))
10542
10546
  IpamDiscoveredResourceCidr.add_member(:sample_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "sampleTime"))
10547
+ IpamDiscoveredResourceCidr.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
10543
10548
  IpamDiscoveredResourceCidr.struct_class = Types::IpamDiscoveredResourceCidr
10544
10549
 
10545
10550
  IpamDiscoveredResourceCidrSet.member = Shapes::ShapeRef.new(shape: IpamDiscoveredResourceCidr, location_name: "item")
@@ -10651,6 +10656,7 @@ module Aws::EC2
10651
10656
  IpamResourceCidr.add_member(:management_state, Shapes::ShapeRef.new(shape: IpamManagementState, location_name: "managementState"))
10652
10657
  IpamResourceCidr.add_member(:overlap_status, Shapes::ShapeRef.new(shape: IpamOverlapStatus, location_name: "overlapStatus"))
10653
10658
  IpamResourceCidr.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcId"))
10659
+ IpamResourceCidr.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
10654
10660
  IpamResourceCidr.struct_class = Types::IpamResourceCidr
10655
10661
 
10656
10662
  IpamResourceCidrSet.member = Shapes::ShapeRef.new(shape: IpamResourceCidr, location_name: "item")
@@ -12840,6 +12846,7 @@ module Aws::EC2
12840
12846
  ProvisionPublicIpv4PoolCidrRequest.add_member(:ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, required: true, location_name: "IpamPoolId"))
12841
12847
  ProvisionPublicIpv4PoolCidrRequest.add_member(:pool_id, Shapes::ShapeRef.new(shape: Ipv4PoolEc2Id, required: true, location_name: "PoolId"))
12842
12848
  ProvisionPublicIpv4PoolCidrRequest.add_member(:netmask_length, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "NetmaskLength"))
12849
+ ProvisionPublicIpv4PoolCidrRequest.add_member(:network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "NetworkBorderGroup"))
12843
12850
  ProvisionPublicIpv4PoolCidrRequest.struct_class = Types::ProvisionPublicIpv4PoolCidrRequest
12844
12851
 
12845
12852
  ProvisionPublicIpv4PoolCidrResult.add_member(:pool_id, Shapes::ShapeRef.new(shape: Ipv4PoolEc2Id, location_name: "poolId"))
@@ -8530,16 +8530,18 @@ module Aws::EC2
8530
8530
  # @return [String]
8531
8531
  #
8532
8532
  # @!attribute [rw] locale
8533
- # In IPAM, the locale is the Amazon Web Services Region where you want
8534
- # to make an IPAM pool available for allocations. Only resources in
8535
- # the same Region as the locale of the pool can get IP address
8536
- # allocations from the pool. You can only allocate a CIDR for a VPC,
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.
8533
+ # In IPAM, the locale is the Amazon Web Services Region or, for IPAM
8534
+ # IPv4 pools in the public scope, the network border group for an
8535
+ # Amazon Web Services Local Zone where you want to make an IPAM pool
8536
+ # available for allocations ([supported Local Zones][1]). If you do
8537
+ # not choose a locale, resources in Regions others than the IPAM's
8538
+ # home region cannot use CIDRs from this pool.
8541
8539
  #
8542
8540
  # Possible values: Any Amazon Web Services Region, such as us-east-1.
8541
+ #
8542
+ #
8543
+ #
8544
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
8543
8545
  # @return [String]
8544
8546
  #
8545
8547
  # @!attribute [rw] source_ipam_pool_id
@@ -10087,11 +10089,24 @@ module Aws::EC2
10087
10089
  # name and `TeamA` for the filter value.
10088
10090
  # @return [Array<Types::TagSpecification>]
10089
10091
  #
10092
+ # @!attribute [rw] network_border_group
10093
+ # The Availability Zone (AZ) or Local Zone (LZ) network border group
10094
+ # that the resource that the IP address is assigned to is in. Defaults
10095
+ # to an AZ network border group. For more information on available
10096
+ # Local Zones, see [Local Zone availability][1] in the *Amazon EC2
10097
+ # User Guide*.
10098
+ #
10099
+ #
10100
+ #
10101
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
10102
+ # @return [String]
10103
+ #
10090
10104
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePublicIpv4PoolRequest AWS API Documentation
10091
10105
  #
10092
10106
  class CreatePublicIpv4PoolRequest < Struct.new(
10093
10107
  :dry_run,
10094
- :tag_specifications)
10108
+ :tag_specifications,
10109
+ :network_border_group)
10095
10110
  SENSITIVE = []
10096
10111
  include Aws::Structure
10097
10112
  end
@@ -14806,11 +14821,24 @@ module Aws::EC2
14806
14821
  # The ID of the public IPv4 pool you want to delete.
14807
14822
  # @return [String]
14808
14823
  #
14824
+ # @!attribute [rw] network_border_group
14825
+ # The Availability Zone (AZ) or Local Zone (LZ) network border group
14826
+ # that the resource that the IP address is assigned to is in. Defaults
14827
+ # to an AZ network border group. For more information on available
14828
+ # Local Zones, see [Local Zone availability][1] in the *Amazon EC2
14829
+ # User Guide*.
14830
+ #
14831
+ #
14832
+ #
14833
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
14834
+ # @return [String]
14835
+ #
14809
14836
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeletePublicIpv4PoolRequest AWS API Documentation
14810
14837
  #
14811
14838
  class DeletePublicIpv4PoolRequest < Struct.new(
14812
14839
  :dry_run,
14813
- :pool_id)
14840
+ :pool_id,
14841
+ :network_border_group)
14814
14842
  SENSITIVE = []
14815
14843
  include Aws::Structure
14816
14844
  end
@@ -42562,8 +42590,15 @@ module Aws::EC2
42562
42590
  # @return [Types::IpamPublicAddressTags]
42563
42591
  #
42564
42592
  # @!attribute [rw] network_border_group
42565
- # The network border group that the resource that the IP address is
42566
- # assigned to is in.
42593
+ # The Availability Zone (AZ) or Local Zone (LZ) network border group
42594
+ # that the resource that the IP address is assigned to is in. Defaults
42595
+ # to an AZ network border group. For more information on available
42596
+ # Local Zones, see [Local Zone availability][1] in the *Amazon EC2
42597
+ # User Guide*.
42598
+ #
42599
+ #
42600
+ #
42601
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
42567
42602
  # @return [String]
42568
42603
  #
42569
42604
  # @!attribute [rw] security_groups
@@ -42658,10 +42693,19 @@ module Aws::EC2
42658
42693
  # The VPC ID.
42659
42694
  # @return [String]
42660
42695
  #
42696
+ # @!attribute [rw] network_interface_attachment_status
42697
+ # For elastic IP addresses, this is the status of an attached network
42698
+ # interface.
42699
+ # @return [String]
42700
+ #
42661
42701
  # @!attribute [rw] sample_time
42662
42702
  # The last successful resource discovery time.
42663
42703
  # @return [Time]
42664
42704
  #
42705
+ # @!attribute [rw] availability_zone_id
42706
+ # The Availability Zone ID.
42707
+ # @return [String]
42708
+ #
42665
42709
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamDiscoveredResourceCidr AWS API Documentation
42666
42710
  #
42667
42711
  class IpamDiscoveredResourceCidr < Struct.new(
@@ -42674,7 +42718,9 @@ module Aws::EC2
42674
42718
  :resource_tags,
42675
42719
  :ip_usage,
42676
42720
  :vpc_id,
42677
- :sample_time)
42721
+ :network_interface_attachment_status,
42722
+ :sample_time,
42723
+ :availability_zone_id)
42678
42724
  SENSITIVE = []
42679
42725
  include Aws::Structure
42680
42726
  end
@@ -42792,14 +42838,16 @@ module Aws::EC2
42792
42838
  #
42793
42839
  # @!attribute [rw] locale
42794
42840
  # The locale of the IPAM pool. In IPAM, the locale is the Amazon Web
42795
- # Services Region where you want to make an IPAM pool available for
42796
- # allocations. Only resources in the same Region as the locale of the
42797
- # pool can get IP address allocations from the pool. You can only
42798
- # allocate a CIDR for a VPC, for example, from an IPAM pool that
42799
- # shares a locale with the VPC’s Region. Note that once you choose a
42800
- # Locale for a pool, you cannot modify it. If you choose an Amazon Web
42801
- # Services Region for locale that has not been configured as an
42802
- # operating Region for the IPAM, you'll get an error.
42841
+ # Services Region or, for IPAM IPv4 pools in the public scope, the
42842
+ # network border group for an Amazon Web Services Local Zone where you
42843
+ # want to make an IPAM pool available for allocations ([supported
42844
+ # Local Zones][1]). If you choose an Amazon Web Services Region for
42845
+ # locale that has not been configured as an operating Region for the
42846
+ # IPAM, you'll get an error.
42847
+ #
42848
+ #
42849
+ #
42850
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
42803
42851
  # @return [String]
42804
42852
  #
42805
42853
  # @!attribute [rw] pool_depth
@@ -43259,6 +43307,10 @@ module Aws::EC2
43259
43307
  # The ID of a VPC.
43260
43308
  # @return [String]
43261
43309
  #
43310
+ # @!attribute [rw] availability_zone_id
43311
+ # The Availability Zone ID.
43312
+ # @return [String]
43313
+ #
43262
43314
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamResourceCidr AWS API Documentation
43263
43315
  #
43264
43316
  class IpamResourceCidr < Struct.new(
@@ -43276,7 +43328,8 @@ module Aws::EC2
43276
43328
  :compliance_status,
43277
43329
  :management_state,
43278
43330
  :overlap_status,
43279
- :vpc_id)
43331
+ :vpc_id,
43332
+ :availability_zone_id)
43280
43333
  SENSITIVE = []
43281
43334
  include Aws::Structure
43282
43335
  end
@@ -54594,13 +54647,26 @@ module Aws::EC2
54594
54647
  # public IPv4 pool.
54595
54648
  # @return [Integer]
54596
54649
  #
54650
+ # @!attribute [rw] network_border_group
54651
+ # The Availability Zone (AZ) or Local Zone (LZ) network border group
54652
+ # that the resource that the IP address is assigned to is in. Defaults
54653
+ # to an AZ network border group. For more information on available
54654
+ # Local Zones, see [Local Zone availability][1] in the *Amazon EC2
54655
+ # User Guide*.
54656
+ #
54657
+ #
54658
+ #
54659
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail
54660
+ # @return [String]
54661
+ #
54597
54662
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProvisionPublicIpv4PoolCidrRequest AWS API Documentation
54598
54663
  #
54599
54664
  class ProvisionPublicIpv4PoolCidrRequest < Struct.new(
54600
54665
  :dry_run,
54601
54666
  :ipam_pool_id,
54602
54667
  :pool_id,
54603
- :netmask_length)
54668
+ :netmask_length,
54669
+ :network_border_group)
54604
54670
  SENSITIVE = []
54605
54671
  include Aws::Structure
54606
54672
  end
data/lib/aws-sdk-ec2.rb CHANGED
@@ -76,6 +76,6 @@ require_relative 'aws-sdk-ec2/customizations'
76
76
  # @!group service
77
77
  module Aws::EC2
78
78
 
79
- GEM_VERSION = '1.464.0'
79
+ GEM_VERSION = '1.465.0'
80
80
 
81
81
  end
data/sig/client.rbs CHANGED
@@ -2817,7 +2817,8 @@ module Aws
2817
2817
  },
2818
2818
  ]?
2819
2819
  },
2820
- ]
2820
+ ],
2821
+ ?network_border_group: ::String
2821
2822
  ) -> _CreatePublicIpv4PoolResponseSuccess
2822
2823
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePublicIpv4PoolResponseSuccess
2823
2824
 
@@ -4373,7 +4374,8 @@ module Aws
4373
4374
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#delete_public_ipv_4_pool-instance_method
4374
4375
  def delete_public_ipv_4_pool: (
4375
4376
  ?dry_run: bool,
4376
- pool_id: ::String
4377
+ pool_id: ::String,
4378
+ ?network_border_group: ::String
4377
4379
  ) -> _DeletePublicIpv4PoolResponseSuccess
4378
4380
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePublicIpv4PoolResponseSuccess
4379
4381
 
@@ -11193,7 +11195,8 @@ module Aws
11193
11195
  ?dry_run: bool,
11194
11196
  ipam_pool_id: ::String,
11195
11197
  pool_id: ::String,
11196
- netmask_length: ::Integer
11198
+ netmask_length: ::Integer,
11199
+ ?network_border_group: ::String
11197
11200
  ) -> _ProvisionPublicIpv4PoolCidrResponseSuccess
11198
11201
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ProvisionPublicIpv4PoolCidrResponseSuccess
11199
11202
 
data/sig/types.rbs CHANGED
@@ -2265,6 +2265,7 @@ module Aws::EC2
2265
2265
  class CreatePublicIpv4PoolRequest
2266
2266
  attr_accessor dry_run: bool
2267
2267
  attr_accessor tag_specifications: ::Array[Types::TagSpecification]
2268
+ attr_accessor network_border_group: ::String
2268
2269
  SENSITIVE: []
2269
2270
  end
2270
2271
 
@@ -3439,6 +3440,7 @@ module Aws::EC2
3439
3440
  class DeletePublicIpv4PoolRequest
3440
3441
  attr_accessor dry_run: bool
3441
3442
  attr_accessor pool_id: ::String
3443
+ attr_accessor network_border_group: ::String
3442
3444
  SENSITIVE: []
3443
3445
  end
3444
3446
 
@@ -9373,7 +9375,9 @@ module Aws::EC2
9373
9375
  attr_accessor resource_tags: ::Array[Types::IpamResourceTag]
9374
9376
  attr_accessor ip_usage: ::Float
9375
9377
  attr_accessor vpc_id: ::String
9378
+ attr_accessor network_interface_attachment_status: ("available" | "in-use")
9376
9379
  attr_accessor sample_time: ::Time
9380
+ attr_accessor availability_zone_id: ::String
9377
9381
  SENSITIVE: []
9378
9382
  end
9379
9383
 
@@ -9491,6 +9495,7 @@ module Aws::EC2
9491
9495
  attr_accessor management_state: ("managed" | "unmanaged" | "ignored")
9492
9496
  attr_accessor overlap_status: ("overlapping" | "nonoverlapping" | "ignored")
9493
9497
  attr_accessor vpc_id: ::String
9498
+ attr_accessor availability_zone_id: ::String
9494
9499
  SENSITIVE: []
9495
9500
  end
9496
9501
 
@@ -12046,6 +12051,7 @@ module Aws::EC2
12046
12051
  attr_accessor ipam_pool_id: ::String
12047
12052
  attr_accessor pool_id: ::String
12048
12053
  attr_accessor netmask_length: ::Integer
12054
+ attr_accessor network_border_group: ::String
12049
12055
  SENSITIVE: []
12050
12056
  end
12051
12057
 
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.464.0
4
+ version: 1.465.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: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core