aws-sdk-cloudfront 1.133.0 → 1.134.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +41 -5
- data/lib/aws-sdk-cloudfront/client_api.rb +19 -0
- data/lib/aws-sdk-cloudfront/types.rb +80 -6
- data/lib/aws-sdk-cloudfront.rb +1 -1
- data/sig/client.rbs +9 -1
- data/sig/types.rbs +17 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e4678c5dc797226a102befd17264f9287938c9f0d08ba38cff087450a126518
|
|
4
|
+
data.tar.gz: 63336250644b58b72243d4e7c29414fe5e5b6c7ffff8f3f4bc87e61cfc14316f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb0a8398a3c6388fe14923de931b44e506465696d8eb66b50efad0cc37ee3230e4db0a39580bbc4ad689e99a853ba55af5ed4a9d77a7332e50ca876fa11315f4
|
|
7
|
+
data.tar.gz: 7e62aeabfa4b1d46001ef7da362a4468a5c4548a4a097e69dbd5f81eac5a2c327667ff037ccd5a7ed5ea76835507786653f9f94708aaa68928769d870cc38fc2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.134.0 (2025-11-20)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for bring your own IP (BYOIP) to CloudFront's CreateAnycastIpList API through an optional IpamCidrConfigs field.
|
|
8
|
+
|
|
4
9
|
1.133.0 (2025-11-05)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.134.0
|
|
@@ -914,12 +914,16 @@ module Aws::CloudFront
|
|
|
914
914
|
# The IP address type for the Anycast static IP list. You can specify
|
|
915
915
|
# one of the following options:
|
|
916
916
|
#
|
|
917
|
-
# * `ipv4`
|
|
917
|
+
# * `ipv4` only
|
|
918
918
|
#
|
|
919
|
-
# * `ipv6`
|
|
919
|
+
# * `ipv6` only
|
|
920
920
|
#
|
|
921
921
|
# * `dualstack` - Allocate a list of both IPv4 and IPv6 addresses
|
|
922
922
|
#
|
|
923
|
+
# @option params [Array<Types::IpamCidrConfig>] :ipam_cidr_configs
|
|
924
|
+
# A list of IPAM CIDR configurations that specify the IP address ranges
|
|
925
|
+
# and IPAM pool settings for creating the Anycast static IP list.
|
|
926
|
+
#
|
|
923
927
|
# @return [Types::CreateAnycastIpListResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
924
928
|
#
|
|
925
929
|
# * {Types::CreateAnycastIpListResult#anycast_ip_list #anycast_ip_list} => Types::AnycastIpList
|
|
@@ -939,6 +943,14 @@ module Aws::CloudFront
|
|
|
939
943
|
# ],
|
|
940
944
|
# },
|
|
941
945
|
# ip_address_type: "ipv4", # accepts ipv4, ipv6, dualstack
|
|
946
|
+
# ipam_cidr_configs: [
|
|
947
|
+
# {
|
|
948
|
+
# cidr: "string", # required
|
|
949
|
+
# ipam_pool_arn: "string", # required
|
|
950
|
+
# anycast_ip: "string",
|
|
951
|
+
# status: "provisioned", # accepts provisioned, failed-provision, provisioning, deprovisioned, failed-deprovision, deprovisioning, advertised, failed-advertise, advertising, withdrawn, failed-withdraw, withdrawing
|
|
952
|
+
# },
|
|
953
|
+
# ],
|
|
942
954
|
# })
|
|
943
955
|
#
|
|
944
956
|
# @example Response structure
|
|
@@ -948,6 +960,12 @@ module Aws::CloudFront
|
|
|
948
960
|
# resp.anycast_ip_list.status #=> String
|
|
949
961
|
# resp.anycast_ip_list.arn #=> String
|
|
950
962
|
# resp.anycast_ip_list.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
963
|
+
# resp.anycast_ip_list.ipam_config.quantity #=> Integer
|
|
964
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs #=> Array
|
|
965
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].cidr #=> String
|
|
966
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].ipam_pool_arn #=> String
|
|
967
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].anycast_ip #=> String
|
|
968
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].status #=> String, one of "provisioned", "failed-provision", "provisioning", "deprovisioned", "failed-deprovision", "deprovisioning", "advertised", "failed-advertise", "advertising", "withdrawn", "failed-withdraw", "withdrawing"
|
|
951
969
|
# resp.anycast_ip_list.anycast_ips #=> Array
|
|
952
970
|
# resp.anycast_ip_list.anycast_ips[0] #=> String
|
|
953
971
|
# resp.anycast_ip_list.ip_count #=> Integer
|
|
@@ -4726,6 +4744,12 @@ module Aws::CloudFront
|
|
|
4726
4744
|
# resp.anycast_ip_list.status #=> String
|
|
4727
4745
|
# resp.anycast_ip_list.arn #=> String
|
|
4728
4746
|
# resp.anycast_ip_list.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
4747
|
+
# resp.anycast_ip_list.ipam_config.quantity #=> Integer
|
|
4748
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs #=> Array
|
|
4749
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].cidr #=> String
|
|
4750
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].ipam_pool_arn #=> String
|
|
4751
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].anycast_ip #=> String
|
|
4752
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].status #=> String, one of "provisioned", "failed-provision", "provisioning", "deprovisioned", "failed-deprovision", "deprovisioning", "advertised", "failed-advertise", "advertising", "withdrawn", "failed-withdraw", "withdrawing"
|
|
4729
4753
|
# resp.anycast_ip_list.anycast_ips #=> Array
|
|
4730
4754
|
# resp.anycast_ip_list.anycast_ips[0] #=> String
|
|
4731
4755
|
# resp.anycast_ip_list.ip_count #=> Integer
|
|
@@ -6819,6 +6843,12 @@ module Aws::CloudFront
|
|
|
6819
6843
|
# resp.anycast_ip_lists.items[0].last_modified_time #=> Time
|
|
6820
6844
|
# resp.anycast_ip_lists.items[0].ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
6821
6845
|
# resp.anycast_ip_lists.items[0].etag #=> String
|
|
6846
|
+
# resp.anycast_ip_lists.items[0].ipam_config.quantity #=> Integer
|
|
6847
|
+
# resp.anycast_ip_lists.items[0].ipam_config.ipam_cidr_configs #=> Array
|
|
6848
|
+
# resp.anycast_ip_lists.items[0].ipam_config.ipam_cidr_configs[0].cidr #=> String
|
|
6849
|
+
# resp.anycast_ip_lists.items[0].ipam_config.ipam_cidr_configs[0].ipam_pool_arn #=> String
|
|
6850
|
+
# resp.anycast_ip_lists.items[0].ipam_config.ipam_cidr_configs[0].anycast_ip #=> String
|
|
6851
|
+
# resp.anycast_ip_lists.items[0].ipam_config.ipam_cidr_configs[0].status #=> String, one of "provisioned", "failed-provision", "provisioning", "deprovisioned", "failed-deprovision", "deprovisioning", "advertised", "failed-advertise", "advertising", "withdrawn", "failed-withdraw", "withdrawing"
|
|
6822
6852
|
# resp.anycast_ip_lists.marker #=> String
|
|
6823
6853
|
# resp.anycast_ip_lists.next_marker #=> String
|
|
6824
6854
|
# resp.anycast_ip_lists.max_items #=> Integer
|
|
@@ -10035,9 +10065,9 @@ module Aws::CloudFront
|
|
|
10035
10065
|
# The IP address type for the Anycast static IP list. You can specify
|
|
10036
10066
|
# one of the following options:
|
|
10037
10067
|
#
|
|
10038
|
-
# * `ipv4`
|
|
10068
|
+
# * `ipv4` only
|
|
10039
10069
|
#
|
|
10040
|
-
# * `ipv6`
|
|
10070
|
+
# * `ipv6` only
|
|
10041
10071
|
#
|
|
10042
10072
|
# * `dualstack` - Allocate a list of both IPv4 and IPv6 addresses
|
|
10043
10073
|
#
|
|
@@ -10065,6 +10095,12 @@ module Aws::CloudFront
|
|
|
10065
10095
|
# resp.anycast_ip_list.status #=> String
|
|
10066
10096
|
# resp.anycast_ip_list.arn #=> String
|
|
10067
10097
|
# resp.anycast_ip_list.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
10098
|
+
# resp.anycast_ip_list.ipam_config.quantity #=> Integer
|
|
10099
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs #=> Array
|
|
10100
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].cidr #=> String
|
|
10101
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].ipam_pool_arn #=> String
|
|
10102
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].anycast_ip #=> String
|
|
10103
|
+
# resp.anycast_ip_list.ipam_config.ipam_cidr_configs[0].status #=> String, one of "provisioned", "failed-provision", "provisioning", "deprovisioned", "failed-deprovision", "deprovisioning", "advertised", "failed-advertise", "advertising", "withdrawn", "failed-withdraw", "withdrawing"
|
|
10068
10104
|
# resp.anycast_ip_list.anycast_ips #=> Array
|
|
10069
10105
|
# resp.anycast_ip_list.anycast_ips[0] #=> String
|
|
10070
10106
|
# resp.anycast_ip_list.ip_count #=> Integer
|
|
@@ -12526,7 +12562,7 @@ module Aws::CloudFront
|
|
|
12526
12562
|
tracer: tracer
|
|
12527
12563
|
)
|
|
12528
12564
|
context[:gem_name] = 'aws-sdk-cloudfront'
|
|
12529
|
-
context[:gem_version] = '1.
|
|
12565
|
+
context[:gem_version] = '1.134.0'
|
|
12530
12566
|
Seahorse::Client::Request.new(handlers, context)
|
|
12531
12567
|
end
|
|
12532
12568
|
|
|
@@ -387,6 +387,10 @@ module Aws::CloudFront
|
|
|
387
387
|
InvalidationSummary = Shapes::StructureShape.new(name: 'InvalidationSummary')
|
|
388
388
|
InvalidationSummaryList = Shapes::ListShape.new(name: 'InvalidationSummaryList')
|
|
389
389
|
IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
|
|
390
|
+
IpamCidrConfig = Shapes::StructureShape.new(name: 'IpamCidrConfig')
|
|
391
|
+
IpamCidrConfigList = Shapes::ListShape.new(name: 'IpamCidrConfigList')
|
|
392
|
+
IpamCidrStatus = Shapes::StringShape.new(name: 'IpamCidrStatus')
|
|
393
|
+
IpamConfig = Shapes::StructureShape.new(name: 'IpamConfig')
|
|
390
394
|
ItemSelection = Shapes::StringShape.new(name: 'ItemSelection')
|
|
391
395
|
KGKeyPairIds = Shapes::StructureShape.new(name: 'KGKeyPairIds')
|
|
392
396
|
KGKeyPairIdsList = Shapes::ListShape.new(name: 'KGKeyPairIdsList')
|
|
@@ -833,6 +837,7 @@ module Aws::CloudFront
|
|
|
833
837
|
AnycastIpList.add_member(:status, Shapes::ShapeRef.new(shape: string, required: true, location_name: "Status"))
|
|
834
838
|
AnycastIpList.add_member(:arn, Shapes::ShapeRef.new(shape: string, required: true, location_name: "Arn"))
|
|
835
839
|
AnycastIpList.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
|
840
|
+
AnycastIpList.add_member(:ipam_config, Shapes::ShapeRef.new(shape: IpamConfig, location_name: "IpamConfig"))
|
|
836
841
|
AnycastIpList.add_member(:anycast_ips, Shapes::ShapeRef.new(shape: AnycastIps, required: true, location_name: "AnycastIps"))
|
|
837
842
|
AnycastIpList.add_member(:ip_count, Shapes::ShapeRef.new(shape: integer, required: true, location_name: "IpCount"))
|
|
838
843
|
AnycastIpList.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "LastModifiedTime"))
|
|
@@ -856,6 +861,7 @@ module Aws::CloudFront
|
|
|
856
861
|
AnycastIpListSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "LastModifiedTime"))
|
|
857
862
|
AnycastIpListSummary.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
|
858
863
|
AnycastIpListSummary.add_member(:etag, Shapes::ShapeRef.new(shape: string, location_name: "ETag"))
|
|
864
|
+
AnycastIpListSummary.add_member(:ipam_config, Shapes::ShapeRef.new(shape: IpamConfig, location_name: "IpamConfig"))
|
|
859
865
|
AnycastIpListSummary.struct_class = Types::AnycastIpListSummary
|
|
860
866
|
|
|
861
867
|
AnycastIps.member = Shapes::ShapeRef.new(shape: string, location_name: "AnycastIp")
|
|
@@ -1132,6 +1138,7 @@ module Aws::CloudFront
|
|
|
1132
1138
|
CreateAnycastIpListRequest.add_member(:ip_count, Shapes::ShapeRef.new(shape: integer, required: true, location_name: "IpCount"))
|
|
1133
1139
|
CreateAnycastIpListRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
|
1134
1140
|
CreateAnycastIpListRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
|
1141
|
+
CreateAnycastIpListRequest.add_member(:ipam_cidr_configs, Shapes::ShapeRef.new(shape: IpamCidrConfigList, location_name: "IpamCidrConfigs"))
|
|
1135
1142
|
CreateAnycastIpListRequest.struct_class = Types::CreateAnycastIpListRequest
|
|
1136
1143
|
|
|
1137
1144
|
CreateAnycastIpListResult.add_member(:anycast_ip_list, Shapes::ShapeRef.new(shape: AnycastIpList, location_name: "AnycastIpList"))
|
|
@@ -2392,6 +2399,18 @@ module Aws::CloudFront
|
|
|
2392
2399
|
|
|
2393
2400
|
InvalidationSummaryList.member = Shapes::ShapeRef.new(shape: InvalidationSummary, location_name: "InvalidationSummary")
|
|
2394
2401
|
|
|
2402
|
+
IpamCidrConfig.add_member(:cidr, Shapes::ShapeRef.new(shape: string, required: true, location_name: "Cidr"))
|
|
2403
|
+
IpamCidrConfig.add_member(:ipam_pool_arn, Shapes::ShapeRef.new(shape: string, required: true, location_name: "IpamPoolArn"))
|
|
2404
|
+
IpamCidrConfig.add_member(:anycast_ip, Shapes::ShapeRef.new(shape: string, location_name: "AnycastIp"))
|
|
2405
|
+
IpamCidrConfig.add_member(:status, Shapes::ShapeRef.new(shape: IpamCidrStatus, location_name: "Status"))
|
|
2406
|
+
IpamCidrConfig.struct_class = Types::IpamCidrConfig
|
|
2407
|
+
|
|
2408
|
+
IpamCidrConfigList.member = Shapes::ShapeRef.new(shape: IpamCidrConfig, location_name: "IpamCidrConfig")
|
|
2409
|
+
|
|
2410
|
+
IpamConfig.add_member(:quantity, Shapes::ShapeRef.new(shape: integer, required: true, location_name: "Quantity"))
|
|
2411
|
+
IpamConfig.add_member(:ipam_cidr_configs, Shapes::ShapeRef.new(shape: IpamCidrConfigList, required: true, location_name: "IpamCidrConfigs"))
|
|
2412
|
+
IpamConfig.struct_class = Types::IpamConfig
|
|
2413
|
+
|
|
2395
2414
|
KGKeyPairIds.add_member(:key_group_id, Shapes::ShapeRef.new(shape: string, location_name: "KeyGroupId"))
|
|
2396
2415
|
KGKeyPairIds.add_member(:key_pair_ids, Shapes::ShapeRef.new(shape: KeyPairIds, location_name: "KeyPairIds"))
|
|
2397
2416
|
KGKeyPairIds.struct_class = Types::KGKeyPairIds
|
|
@@ -240,6 +240,11 @@ module Aws::CloudFront
|
|
|
240
240
|
# The IP address type for the Anycast static IP list.
|
|
241
241
|
# @return [String]
|
|
242
242
|
#
|
|
243
|
+
# @!attribute [rw] ipam_config
|
|
244
|
+
# The IPAM configuration for the Anycast static IP list, that contains
|
|
245
|
+
# the quantity and list of IPAM CIDR configurations.
|
|
246
|
+
# @return [Types::IpamConfig]
|
|
247
|
+
#
|
|
243
248
|
# @!attribute [rw] anycast_ips
|
|
244
249
|
# The static IP addresses that are allocated to the Anycast static IP
|
|
245
250
|
# list.
|
|
@@ -261,6 +266,7 @@ module Aws::CloudFront
|
|
|
261
266
|
:status,
|
|
262
267
|
:arn,
|
|
263
268
|
:ip_address_type,
|
|
269
|
+
:ipam_config,
|
|
264
270
|
:anycast_ips,
|
|
265
271
|
:ip_count,
|
|
266
272
|
:last_modified_time)
|
|
@@ -352,6 +358,11 @@ module Aws::CloudFront
|
|
|
352
358
|
# The current version (ETag value) of the Anycast static IP list.
|
|
353
359
|
# @return [String]
|
|
354
360
|
#
|
|
361
|
+
# @!attribute [rw] ipam_config
|
|
362
|
+
# The IPAM configuration for the Anycast static IP list, that contains
|
|
363
|
+
# the quantity and list of IPAM CIDR configurations.
|
|
364
|
+
# @return [Types::IpamConfig]
|
|
365
|
+
#
|
|
355
366
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/AnycastIpListSummary AWS API Documentation
|
|
356
367
|
#
|
|
357
368
|
class AnycastIpListSummary < Struct.new(
|
|
@@ -362,7 +373,8 @@ module Aws::CloudFront
|
|
|
362
373
|
:ip_count,
|
|
363
374
|
:last_modified_time,
|
|
364
375
|
:ip_address_type,
|
|
365
|
-
:etag
|
|
376
|
+
:etag,
|
|
377
|
+
:ipam_config)
|
|
366
378
|
SENSITIVE = []
|
|
367
379
|
include Aws::Structure
|
|
368
380
|
end
|
|
@@ -2235,20 +2247,27 @@ module Aws::CloudFront
|
|
|
2235
2247
|
# The IP address type for the Anycast static IP list. You can specify
|
|
2236
2248
|
# one of the following options:
|
|
2237
2249
|
#
|
|
2238
|
-
# * `ipv4`
|
|
2250
|
+
# * `ipv4` only
|
|
2239
2251
|
#
|
|
2240
|
-
# * `ipv6`
|
|
2252
|
+
# * `ipv6` only
|
|
2241
2253
|
#
|
|
2242
2254
|
# * `dualstack` - Allocate a list of both IPv4 and IPv6 addresses
|
|
2243
2255
|
# @return [String]
|
|
2244
2256
|
#
|
|
2257
|
+
# @!attribute [rw] ipam_cidr_configs
|
|
2258
|
+
# A list of IPAM CIDR configurations that specify the IP address
|
|
2259
|
+
# ranges and IPAM pool settings for creating the Anycast static IP
|
|
2260
|
+
# list.
|
|
2261
|
+
# @return [Array<Types::IpamCidrConfig>]
|
|
2262
|
+
#
|
|
2245
2263
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateAnycastIpListRequest AWS API Documentation
|
|
2246
2264
|
#
|
|
2247
2265
|
class CreateAnycastIpListRequest < Struct.new(
|
|
2248
2266
|
:name,
|
|
2249
2267
|
:ip_count,
|
|
2250
2268
|
:tags,
|
|
2251
|
-
:ip_address_type
|
|
2269
|
+
:ip_address_type,
|
|
2270
|
+
:ipam_cidr_configs)
|
|
2252
2271
|
SENSITIVE = []
|
|
2253
2272
|
include Aws::Structure
|
|
2254
2273
|
end
|
|
@@ -8376,6 +8395,61 @@ module Aws::CloudFront
|
|
|
8376
8395
|
include Aws::Structure
|
|
8377
8396
|
end
|
|
8378
8397
|
|
|
8398
|
+
# Configuration for an IPAM CIDR that defines a specific IP address
|
|
8399
|
+
# range, IPAM pool, and associated Anycast IP address.
|
|
8400
|
+
#
|
|
8401
|
+
# @!attribute [rw] cidr
|
|
8402
|
+
# The CIDR that specifies the IP address range for this IPAM
|
|
8403
|
+
# configuration.
|
|
8404
|
+
# @return [String]
|
|
8405
|
+
#
|
|
8406
|
+
# @!attribute [rw] ipam_pool_arn
|
|
8407
|
+
# The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block
|
|
8408
|
+
# is assigned to.
|
|
8409
|
+
# @return [String]
|
|
8410
|
+
#
|
|
8411
|
+
# @!attribute [rw] anycast_ip
|
|
8412
|
+
# The specified Anycast IP address allocated from the IPAM pool for
|
|
8413
|
+
# this CIDR configuration.
|
|
8414
|
+
# @return [String]
|
|
8415
|
+
#
|
|
8416
|
+
# @!attribute [rw] status
|
|
8417
|
+
# The current status of the IPAM CIDR configuration.
|
|
8418
|
+
# @return [String]
|
|
8419
|
+
#
|
|
8420
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/IpamCidrConfig AWS API Documentation
|
|
8421
|
+
#
|
|
8422
|
+
class IpamCidrConfig < Struct.new(
|
|
8423
|
+
:cidr,
|
|
8424
|
+
:ipam_pool_arn,
|
|
8425
|
+
:anycast_ip,
|
|
8426
|
+
:status)
|
|
8427
|
+
SENSITIVE = []
|
|
8428
|
+
include Aws::Structure
|
|
8429
|
+
end
|
|
8430
|
+
|
|
8431
|
+
# The configuration IPAM settings that includes the quantity of CIDR
|
|
8432
|
+
# configurations and the list of IPAM CIDR configurations.
|
|
8433
|
+
#
|
|
8434
|
+
# @!attribute [rw] quantity
|
|
8435
|
+
# The number of IPAM CIDR configurations in the `IpamCidrConfigs`
|
|
8436
|
+
# list.
|
|
8437
|
+
# @return [Integer]
|
|
8438
|
+
#
|
|
8439
|
+
# @!attribute [rw] ipam_cidr_configs
|
|
8440
|
+
# A list of IPAM CIDR configurations that define the IP address
|
|
8441
|
+
# ranges, IPAM pools, and associated Anycast IP addresses.
|
|
8442
|
+
# @return [Array<Types::IpamCidrConfig>]
|
|
8443
|
+
#
|
|
8444
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/IpamConfig AWS API Documentation
|
|
8445
|
+
#
|
|
8446
|
+
class IpamConfig < Struct.new(
|
|
8447
|
+
:quantity,
|
|
8448
|
+
:ipam_cidr_configs)
|
|
8449
|
+
SENSITIVE = []
|
|
8450
|
+
include Aws::Structure
|
|
8451
|
+
end
|
|
8452
|
+
|
|
8379
8453
|
# A list of identifiers for the public keys that CloudFront can use to
|
|
8380
8454
|
# verify the signatures of signed URLs and signed cookies.
|
|
8381
8455
|
#
|
|
@@ -15035,9 +15109,9 @@ module Aws::CloudFront
|
|
|
15035
15109
|
# The IP address type for the Anycast static IP list. You can specify
|
|
15036
15110
|
# one of the following options:
|
|
15037
15111
|
#
|
|
15038
|
-
# * `ipv4`
|
|
15112
|
+
# * `ipv4` only
|
|
15039
15113
|
#
|
|
15040
|
-
# * `ipv6`
|
|
15114
|
+
# * `ipv6` only
|
|
15041
15115
|
#
|
|
15042
15116
|
# * `dualstack` - Allocate a list of both IPv4 and IPv6 addresses
|
|
15043
15117
|
# @return [String]
|
data/lib/aws-sdk-cloudfront.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -146,7 +146,15 @@ module Aws
|
|
|
146
146
|
},
|
|
147
147
|
]?
|
|
148
148
|
},
|
|
149
|
-
?ip_address_type: ("ipv4" | "ipv6" | "dualstack")
|
|
149
|
+
?ip_address_type: ("ipv4" | "ipv6" | "dualstack"),
|
|
150
|
+
?ipam_cidr_configs: Array[
|
|
151
|
+
{
|
|
152
|
+
cidr: ::String,
|
|
153
|
+
ipam_pool_arn: ::String,
|
|
154
|
+
anycast_ip: ::String?,
|
|
155
|
+
status: ("provisioned" | "failed-provision" | "provisioning" | "deprovisioned" | "failed-deprovision" | "deprovisioning" | "advertised" | "failed-advertise" | "advertising" | "withdrawn" | "failed-withdraw" | "withdrawing")?
|
|
156
|
+
},
|
|
157
|
+
]
|
|
150
158
|
) -> _CreateAnycastIpListResponseSuccess
|
|
151
159
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAnycastIpListResponseSuccess
|
|
152
160
|
|
data/sig/types.rbs
CHANGED
|
@@ -52,6 +52,7 @@ module Aws::CloudFront
|
|
|
52
52
|
attr_accessor status: ::String
|
|
53
53
|
attr_accessor arn: ::String
|
|
54
54
|
attr_accessor ip_address_type: ("ipv4" | "ipv6" | "dualstack")
|
|
55
|
+
attr_accessor ipam_config: Types::IpamConfig
|
|
55
56
|
attr_accessor anycast_ips: ::Array[::String]
|
|
56
57
|
attr_accessor ip_count: ::Integer
|
|
57
58
|
attr_accessor last_modified_time: ::Time
|
|
@@ -77,6 +78,7 @@ module Aws::CloudFront
|
|
|
77
78
|
attr_accessor last_modified_time: ::Time
|
|
78
79
|
attr_accessor ip_address_type: ("ipv4" | "ipv6" | "dualstack")
|
|
79
80
|
attr_accessor etag: ::String
|
|
81
|
+
attr_accessor ipam_config: Types::IpamConfig
|
|
80
82
|
SENSITIVE: []
|
|
81
83
|
end
|
|
82
84
|
|
|
@@ -431,6 +433,7 @@ module Aws::CloudFront
|
|
|
431
433
|
attr_accessor ip_count: ::Integer
|
|
432
434
|
attr_accessor tags: Types::Tags
|
|
433
435
|
attr_accessor ip_address_type: ("ipv4" | "ipv6" | "dualstack")
|
|
436
|
+
attr_accessor ipam_cidr_configs: ::Array[Types::IpamCidrConfig]
|
|
434
437
|
SENSITIVE: []
|
|
435
438
|
end
|
|
436
439
|
|
|
@@ -1991,6 +1994,20 @@ module Aws::CloudFront
|
|
|
1991
1994
|
SENSITIVE: []
|
|
1992
1995
|
end
|
|
1993
1996
|
|
|
1997
|
+
class IpamCidrConfig
|
|
1998
|
+
attr_accessor cidr: ::String
|
|
1999
|
+
attr_accessor ipam_pool_arn: ::String
|
|
2000
|
+
attr_accessor anycast_ip: ::String
|
|
2001
|
+
attr_accessor status: ("provisioned" | "failed-provision" | "provisioning" | "deprovisioned" | "failed-deprovision" | "deprovisioning" | "advertised" | "failed-advertise" | "advertising" | "withdrawn" | "failed-withdraw" | "withdrawing")
|
|
2002
|
+
SENSITIVE: []
|
|
2003
|
+
end
|
|
2004
|
+
|
|
2005
|
+
class IpamConfig
|
|
2006
|
+
attr_accessor quantity: ::Integer
|
|
2007
|
+
attr_accessor ipam_cidr_configs: ::Array[Types::IpamCidrConfig]
|
|
2008
|
+
SENSITIVE: []
|
|
2009
|
+
end
|
|
2010
|
+
|
|
1994
2011
|
class KGKeyPairIds
|
|
1995
2012
|
attr_accessor key_group_id: ::String
|
|
1996
2013
|
attr_accessor key_pair_ids: Types::KeyPairIds
|