aws-sdk-cloudfront 1.142.0 → 1.143.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: fcc957ce45178c28c8d8efb242929eaca1b0be68d1bf3c407c9095dd44e2cd5e
4
- data.tar.gz: 26b00829c0404f333e0e2425a306deff33e20bd6ab52ed72e99d9b45801a8bbc
3
+ metadata.gz: eed0a43fb9e14823c08fecea648a5d46e549c625a2e35c20454755fabeb6999f
4
+ data.tar.gz: a27d84997c4fcc42166e652d5a192296097eabedcd5a3611f3276b7c0024ea2e
5
5
  SHA512:
6
- metadata.gz: 7b0a9fb662b674898b1f1d3eaec51578b0d6e38e501b8630af5c63d92a64ca3a0bae330398ea2e114afc129d5edb42529863ca6cacb688ff24133e3cd2bd49a1
7
- data.tar.gz: 5019883fc696c1c6de559434d12b70509133fed781061ed49def994b54dabb2f080354e467ea61643671c6a2f9f916e2893b39eb61d67b69675a5962d67ed816
6
+ metadata.gz: 90406f320290d4e0749a3facd2d5e872423ba04fe403544ca1759e36803b3a91cd5b1af5e9adfabb3b7437709f553a04338325deb3dd4441a7e243a4fe1bb43b
7
+ data.tar.gz: 7b3b292901a05fee244fb3d609a842477f84a9a372ec9da42fc847871d73e3f966f20ed92a67b21d190a9b287dcb7001c2e896e8060b2a4d48725bd2eaa2e70c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.143.0 (2026-03-31)
5
+ ------------------
6
+
7
+ * Feature - This release adds bring your own IP (BYOIP) IPv6 support to CloudFront's CreateAnycastIpList and UpdateAnycastIpList API through the IpamCidrConfigs field.
8
+
4
9
  1.142.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.142.0
1
+ 1.143.0
@@ -11120,6 +11120,10 @@ module Aws::CloudFront
11120
11120
  #
11121
11121
  # * `dualstack` - Allocate a list of both IPv4 and IPv6 addresses
11122
11122
  #
11123
+ # @option params [Array<Types::IpamCidrConfig>] :ipam_cidr_configs
11124
+ # A list of IPAM CIDR configurations that specify the IP address ranges
11125
+ # and IPAM pool settings for updating the Anycast static IP list.
11126
+ #
11123
11127
  # @option params [required, String] :if_match
11124
11128
  # The current version (ETag value) of the Anycast static IP list that
11125
11129
  # you are updating.
@@ -11134,6 +11138,14 @@ module Aws::CloudFront
11134
11138
  # resp = client.update_anycast_ip_list({
11135
11139
  # id: "string", # required
11136
11140
  # ip_address_type: "ipv4", # accepts ipv4, ipv6, dualstack
11141
+ # ipam_cidr_configs: [
11142
+ # {
11143
+ # cidr: "string", # required
11144
+ # ipam_pool_arn: "string", # required
11145
+ # anycast_ip: "string",
11146
+ # status: "provisioned", # accepts provisioned, failed-provision, provisioning, deprovisioned, failed-deprovision, deprovisioning, advertised, failed-advertise, advertising, withdrawn, failed-withdraw, withdrawing
11147
+ # },
11148
+ # ],
11137
11149
  # if_match: "string", # required
11138
11150
  # })
11139
11151
  #
@@ -13754,7 +13766,7 @@ module Aws::CloudFront
13754
13766
  tracer: tracer
13755
13767
  )
13756
13768
  context[:gem_name] = 'aws-sdk-cloudfront'
13757
- context[:gem_version] = '1.142.0'
13769
+ context[:gem_version] = '1.143.0'
13758
13770
  Seahorse::Client::Request.new(handlers, context)
13759
13771
  end
13760
13772
 
@@ -3864,6 +3864,7 @@ module Aws::CloudFront
3864
3864
 
3865
3865
  UpdateAnycastIpListRequest.add_member(:id, Shapes::ShapeRef.new(shape: string, required: true, location: "uri", location_name: "Id"))
3866
3866
  UpdateAnycastIpListRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
3867
+ UpdateAnycastIpListRequest.add_member(:ipam_cidr_configs, Shapes::ShapeRef.new(shape: IpamCidrConfigList, location_name: "IpamCidrConfigs"))
3867
3868
  UpdateAnycastIpListRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: string, required: true, location: "header", location_name: "If-Match"))
3868
3869
  UpdateAnycastIpListRequest.struct_class = Types::UpdateAnycastIpListRequest
3869
3870
 
@@ -15884,6 +15884,12 @@ module Aws::CloudFront
15884
15884
  # * `dualstack` - Allocate a list of both IPv4 and IPv6 addresses
15885
15885
  # @return [String]
15886
15886
  #
15887
+ # @!attribute [rw] ipam_cidr_configs
15888
+ # A list of IPAM CIDR configurations that specify the IP address
15889
+ # ranges and IPAM pool settings for updating the Anycast static IP
15890
+ # list.
15891
+ # @return [Array<Types::IpamCidrConfig>]
15892
+ #
15887
15893
  # @!attribute [rw] if_match
15888
15894
  # The current version (ETag value) of the Anycast static IP list that
15889
15895
  # you are updating.
@@ -15894,6 +15900,7 @@ module Aws::CloudFront
15894
15900
  class UpdateAnycastIpListRequest < Struct.new(
15895
15901
  :id,
15896
15902
  :ip_address_type,
15903
+ :ipam_cidr_configs,
15897
15904
  :if_match)
15898
15905
  SENSITIVE = []
15899
15906
  include Aws::Structure
@@ -55,7 +55,7 @@ module Aws::CloudFront
55
55
  autoload :EndpointProvider, 'aws-sdk-cloudfront/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-cloudfront/endpoints'
57
57
 
58
- GEM_VERSION = '1.142.0'
58
+ GEM_VERSION = '1.143.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -2701,6 +2701,14 @@ module Aws
2701
2701
  def update_anycast_ip_list: (
2702
2702
  id: ::String,
2703
2703
  ?ip_address_type: ("ipv4" | "ipv6" | "dualstack"),
2704
+ ?ipam_cidr_configs: Array[
2705
+ {
2706
+ cidr: ::String,
2707
+ ipam_pool_arn: ::String,
2708
+ anycast_ip: ::String?,
2709
+ status: ("provisioned" | "failed-provision" | "provisioning" | "deprovisioned" | "failed-deprovision" | "deprovisioning" | "advertised" | "failed-advertise" | "advertising" | "withdrawn" | "failed-withdraw" | "withdrawing")?
2710
+ },
2711
+ ],
2704
2712
  if_match: ::String
2705
2713
  ) -> _UpdateAnycastIpListResponseSuccess
2706
2714
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnycastIpListResponseSuccess
data/sig/types.rbs CHANGED
@@ -3867,6 +3867,7 @@ module Aws::CloudFront
3867
3867
  class UpdateAnycastIpListRequest
3868
3868
  attr_accessor id: ::String
3869
3869
  attr_accessor ip_address_type: ("ipv4" | "ipv6" | "dualstack")
3870
+ attr_accessor ipam_cidr_configs: ::Array[Types::IpamCidrConfig]
3870
3871
  attr_accessor if_match: ::String
3871
3872
  SENSITIVE: []
3872
3873
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudfront
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.142.0
4
+ version: 1.143.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services