aws-sdk-apigatewayv2 1.72.0 → 1.73.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: 95260e09d19160c6ef0b0161c62eb2a5500df4cb13e0304117d51a9c1800ff8e
4
- data.tar.gz: db2532da2e341e5c74afd0922ce3debc059615f40204698bd0c9c063190a5e63
3
+ metadata.gz: 19032b12744717ebea503a7f87cda4fd5680215dd747f95099628ac8b21cde3b
4
+ data.tar.gz: de731b47a72429eec557d1ab92ddb0c692a19a039f1f3af8b7f75758bb80fdf3
5
5
  SHA512:
6
- metadata.gz: 17a8892d681b609183d4611f7c1f47a708d043cc6253d1da3d96a900dc49d6b686df0ade34fa279ece29c7266b39a2d93bf7568ebb98ee923d7126869a38b207
7
- data.tar.gz: 1a898c21ee75e0de329ad741c03ce4fce362e28ce09db08da52b64323dc5f4c8abbc9ead96e567fd856a73f0714c0f94fd7458d604209057e631a230b22078f8
6
+ metadata.gz: 63495f1b8570bb9d6c4881732eba32a273b0720803eab9c645811bf61105df85cf867a7b873add1c91cbab9e3a1ec4488c8d6248ac65304ce7e0dc19d9301158
7
+ data.tar.gz: d027c7be95c9554c4d7a4dcf8b8ca2bf34f6e3bff13dd3462f99a6f14c815c75f83e892d1f70c5e9e5ffe1f77b15f789031183533a189d82fb91beedd1e924f9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.73.0 (2025-03-28)
5
+ ------------------
6
+
7
+ * Feature - Adds support for setting the IP address type to allow dual-stack or IPv4 address types to invoke your APIs or domain names.
8
+
4
9
  1.72.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.73.0
@@ -498,6 +498,9 @@ module Aws::ApiGatewayV2
498
498
  #
499
499
  # @option params [Boolean] :disable_execute_api_endpoint
500
500
  #
501
+ # @option params [String] :ip_address_type
502
+ # The IP address types that can invoke the API.
503
+ #
501
504
  # @option params [required, String] :name
502
505
  # A string with a length between \[1-128\].
503
506
  #
@@ -543,6 +546,7 @@ module Aws::ApiGatewayV2
543
546
  # * {Types::CreateApiResponse#disable_schema_validation #disable_schema_validation} => Boolean
544
547
  # * {Types::CreateApiResponse#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
545
548
  # * {Types::CreateApiResponse#import_info #import_info} => Array<String>
549
+ # * {Types::CreateApiResponse#ip_address_type #ip_address_type} => String
546
550
  # * {Types::CreateApiResponse#name #name} => String
547
551
  # * {Types::CreateApiResponse#protocol_type #protocol_type} => String
548
552
  # * {Types::CreateApiResponse#route_selection_expression #route_selection_expression} => String
@@ -566,6 +570,7 @@ module Aws::ApiGatewayV2
566
570
  # description: "StringWithLengthBetween0And1024",
567
571
  # disable_schema_validation: false,
568
572
  # disable_execute_api_endpoint: false,
573
+ # ip_address_type: "ipv4", # accepts ipv4, dualstack
569
574
  # name: "StringWithLengthBetween1And128", # required
570
575
  # protocol_type: "WEBSOCKET", # required, accepts WEBSOCKET, HTTP
571
576
  # route_key: "SelectionKey",
@@ -599,6 +604,7 @@ module Aws::ApiGatewayV2
599
604
  # resp.disable_execute_api_endpoint #=> Boolean
600
605
  # resp.import_info #=> Array
601
606
  # resp.import_info[0] #=> String
607
+ # resp.ip_address_type #=> String, one of "ipv4", "dualstack"
602
608
  # resp.name #=> String
603
609
  # resp.protocol_type #=> String, one of "WEBSOCKET", "HTTP"
604
610
  # resp.route_selection_expression #=> String
@@ -853,6 +859,7 @@ module Aws::ApiGatewayV2
853
859
  # domain_name_status_message: "__string",
854
860
  # endpoint_type: "REGIONAL", # accepts REGIONAL, EDGE
855
861
  # hosted_zone_id: "__string",
862
+ # ip_address_type: "ipv4", # accepts ipv4, dualstack
856
863
  # security_policy: "TLS_1_0", # accepts TLS_1_0, TLS_1_2
857
864
  # ownership_verification_certificate_arn: "Arn",
858
865
  # },
@@ -879,6 +886,7 @@ module Aws::ApiGatewayV2
879
886
  # resp.domain_name_configurations[0].domain_name_status_message #=> String
880
887
  # resp.domain_name_configurations[0].endpoint_type #=> String, one of "REGIONAL", "EDGE"
881
888
  # resp.domain_name_configurations[0].hosted_zone_id #=> String
889
+ # resp.domain_name_configurations[0].ip_address_type #=> String, one of "ipv4", "dualstack"
882
890
  # resp.domain_name_configurations[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
883
891
  # resp.domain_name_configurations[0].ownership_verification_certificate_arn #=> String
884
892
  # resp.mutual_tls_authentication.truststore_uri #=> String
@@ -2057,6 +2065,7 @@ module Aws::ApiGatewayV2
2057
2065
  # * {Types::GetApiResponse#disable_schema_validation #disable_schema_validation} => Boolean
2058
2066
  # * {Types::GetApiResponse#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
2059
2067
  # * {Types::GetApiResponse#import_info #import_info} => Array<String>
2068
+ # * {Types::GetApiResponse#ip_address_type #ip_address_type} => String
2060
2069
  # * {Types::GetApiResponse#name #name} => String
2061
2070
  # * {Types::GetApiResponse#protocol_type #protocol_type} => String
2062
2071
  # * {Types::GetApiResponse#route_selection_expression #route_selection_expression} => String
@@ -2092,6 +2101,7 @@ module Aws::ApiGatewayV2
2092
2101
  # resp.disable_execute_api_endpoint #=> Boolean
2093
2102
  # resp.import_info #=> Array
2094
2103
  # resp.import_info[0] #=> String
2104
+ # resp.ip_address_type #=> String, one of "ipv4", "dualstack"
2095
2105
  # resp.name #=> String
2096
2106
  # resp.protocol_type #=> String, one of "WEBSOCKET", "HTTP"
2097
2107
  # resp.route_selection_expression #=> String
@@ -2220,6 +2230,7 @@ module Aws::ApiGatewayV2
2220
2230
  # resp.items[0].disable_execute_api_endpoint #=> Boolean
2221
2231
  # resp.items[0].import_info #=> Array
2222
2232
  # resp.items[0].import_info[0] #=> String
2233
+ # resp.items[0].ip_address_type #=> String, one of "ipv4", "dualstack"
2223
2234
  # resp.items[0].name #=> String
2224
2235
  # resp.items[0].protocol_type #=> String, one of "WEBSOCKET", "HTTP"
2225
2236
  # resp.items[0].route_selection_expression #=> String
@@ -2443,6 +2454,7 @@ module Aws::ApiGatewayV2
2443
2454
  # resp.domain_name_configurations[0].domain_name_status_message #=> String
2444
2455
  # resp.domain_name_configurations[0].endpoint_type #=> String, one of "REGIONAL", "EDGE"
2445
2456
  # resp.domain_name_configurations[0].hosted_zone_id #=> String
2457
+ # resp.domain_name_configurations[0].ip_address_type #=> String, one of "ipv4", "dualstack"
2446
2458
  # resp.domain_name_configurations[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
2447
2459
  # resp.domain_name_configurations[0].ownership_verification_certificate_arn #=> String
2448
2460
  # resp.mutual_tls_authentication.truststore_uri #=> String
@@ -2491,6 +2503,7 @@ module Aws::ApiGatewayV2
2491
2503
  # resp.items[0].domain_name_configurations[0].domain_name_status_message #=> String
2492
2504
  # resp.items[0].domain_name_configurations[0].endpoint_type #=> String, one of "REGIONAL", "EDGE"
2493
2505
  # resp.items[0].domain_name_configurations[0].hosted_zone_id #=> String
2506
+ # resp.items[0].domain_name_configurations[0].ip_address_type #=> String, one of "ipv4", "dualstack"
2494
2507
  # resp.items[0].domain_name_configurations[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
2495
2508
  # resp.items[0].domain_name_configurations[0].ownership_verification_certificate_arn #=> String
2496
2509
  # resp.items[0].mutual_tls_authentication.truststore_uri #=> String
@@ -3269,6 +3282,7 @@ module Aws::ApiGatewayV2
3269
3282
  # * {Types::ImportApiResponse#disable_schema_validation #disable_schema_validation} => Boolean
3270
3283
  # * {Types::ImportApiResponse#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
3271
3284
  # * {Types::ImportApiResponse#import_info #import_info} => Array<String>
3285
+ # * {Types::ImportApiResponse#ip_address_type #ip_address_type} => String
3272
3286
  # * {Types::ImportApiResponse#name #name} => String
3273
3287
  # * {Types::ImportApiResponse#protocol_type #protocol_type} => String
3274
3288
  # * {Types::ImportApiResponse#route_selection_expression #route_selection_expression} => String
@@ -3306,6 +3320,7 @@ module Aws::ApiGatewayV2
3306
3320
  # resp.disable_execute_api_endpoint #=> Boolean
3307
3321
  # resp.import_info #=> Array
3308
3322
  # resp.import_info[0] #=> String
3323
+ # resp.ip_address_type #=> String, one of "ipv4", "dualstack"
3309
3324
  # resp.name #=> String
3310
3325
  # resp.protocol_type #=> String, one of "WEBSOCKET", "HTTP"
3311
3326
  # resp.route_selection_expression #=> String
@@ -3344,6 +3359,7 @@ module Aws::ApiGatewayV2
3344
3359
  # * {Types::ReimportApiResponse#disable_schema_validation #disable_schema_validation} => Boolean
3345
3360
  # * {Types::ReimportApiResponse#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
3346
3361
  # * {Types::ReimportApiResponse#import_info #import_info} => Array<String>
3362
+ # * {Types::ReimportApiResponse#ip_address_type #ip_address_type} => String
3347
3363
  # * {Types::ReimportApiResponse#name #name} => String
3348
3364
  # * {Types::ReimportApiResponse#protocol_type #protocol_type} => String
3349
3365
  # * {Types::ReimportApiResponse#route_selection_expression #route_selection_expression} => String
@@ -3382,6 +3398,7 @@ module Aws::ApiGatewayV2
3382
3398
  # resp.disable_execute_api_endpoint #=> Boolean
3383
3399
  # resp.import_info #=> Array
3384
3400
  # resp.import_info[0] #=> String
3401
+ # resp.ip_address_type #=> String, one of "ipv4", "dualstack"
3385
3402
  # resp.name #=> String
3386
3403
  # resp.protocol_type #=> String, one of "WEBSOCKET", "HTTP"
3387
3404
  # resp.route_selection_expression #=> String
@@ -3475,6 +3492,9 @@ module Aws::ApiGatewayV2
3475
3492
  #
3476
3493
  # @option params [Boolean] :disable_execute_api_endpoint
3477
3494
  #
3495
+ # @option params [String] :ip_address_type
3496
+ # The IP address types that can invoke the API.
3497
+ #
3478
3498
  # @option params [String] :name
3479
3499
  # A string with a length between \[1-128\].
3480
3500
  #
@@ -3514,6 +3534,7 @@ module Aws::ApiGatewayV2
3514
3534
  # * {Types::UpdateApiResponse#disable_schema_validation #disable_schema_validation} => Boolean
3515
3535
  # * {Types::UpdateApiResponse#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
3516
3536
  # * {Types::UpdateApiResponse#import_info #import_info} => Array<String>
3537
+ # * {Types::UpdateApiResponse#ip_address_type #ip_address_type} => String
3517
3538
  # * {Types::UpdateApiResponse#name #name} => String
3518
3539
  # * {Types::UpdateApiResponse#protocol_type #protocol_type} => String
3519
3540
  # * {Types::UpdateApiResponse#route_selection_expression #route_selection_expression} => String
@@ -3538,6 +3559,7 @@ module Aws::ApiGatewayV2
3538
3559
  # description: "StringWithLengthBetween0And1024",
3539
3560
  # disable_schema_validation: false,
3540
3561
  # disable_execute_api_endpoint: false,
3562
+ # ip_address_type: "ipv4", # accepts ipv4, dualstack
3541
3563
  # name: "StringWithLengthBetween1And128",
3542
3564
  # route_key: "SelectionKey",
3543
3565
  # route_selection_expression: "SelectionExpression",
@@ -3567,6 +3589,7 @@ module Aws::ApiGatewayV2
3567
3589
  # resp.disable_execute_api_endpoint #=> Boolean
3568
3590
  # resp.import_info #=> Array
3569
3591
  # resp.import_info[0] #=> String
3592
+ # resp.ip_address_type #=> String, one of "ipv4", "dualstack"
3570
3593
  # resp.name #=> String
3571
3594
  # resp.protocol_type #=> String, one of "WEBSOCKET", "HTTP"
3572
3595
  # resp.route_selection_expression #=> String
@@ -3822,6 +3845,7 @@ module Aws::ApiGatewayV2
3822
3845
  # domain_name_status_message: "__string",
3823
3846
  # endpoint_type: "REGIONAL", # accepts REGIONAL, EDGE
3824
3847
  # hosted_zone_id: "__string",
3848
+ # ip_address_type: "ipv4", # accepts ipv4, dualstack
3825
3849
  # security_policy: "TLS_1_0", # accepts TLS_1_0, TLS_1_2
3826
3850
  # ownership_verification_certificate_arn: "Arn",
3827
3851
  # },
@@ -3845,6 +3869,7 @@ module Aws::ApiGatewayV2
3845
3869
  # resp.domain_name_configurations[0].domain_name_status_message #=> String
3846
3870
  # resp.domain_name_configurations[0].endpoint_type #=> String, one of "REGIONAL", "EDGE"
3847
3871
  # resp.domain_name_configurations[0].hosted_zone_id #=> String
3872
+ # resp.domain_name_configurations[0].ip_address_type #=> String, one of "ipv4", "dualstack"
3848
3873
  # resp.domain_name_configurations[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
3849
3874
  # resp.domain_name_configurations[0].ownership_verification_certificate_arn #=> String
3850
3875
  # resp.mutual_tls_authentication.truststore_uri #=> String
@@ -4605,7 +4630,7 @@ module Aws::ApiGatewayV2
4605
4630
  tracer: tracer
4606
4631
  )
4607
4632
  context[:gem_name] = 'aws-sdk-apigatewayv2'
4608
- context[:gem_version] = '1.72.0'
4633
+ context[:gem_version] = '1.73.0'
4609
4634
  Seahorse::Client::Request.new(handlers, context)
4610
4635
  end
4611
4636
 
@@ -165,6 +165,7 @@ module Aws::ApiGatewayV2
165
165
  IntegrationResponses = Shapes::StructureShape.new(name: 'IntegrationResponses')
166
166
  IntegrationType = Shapes::StringShape.new(name: 'IntegrationType')
167
167
  Integrations = Shapes::StructureShape.new(name: 'Integrations')
168
+ IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
168
169
  JWTConfiguration = Shapes::StructureShape.new(name: 'JWTConfiguration')
169
170
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
170
171
  LoggingLevel = Shapes::StringShape.new(name: 'LoggingLevel')
@@ -296,6 +297,7 @@ module Aws::ApiGatewayV2
296
297
  Api.add_member(:disable_schema_validation, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableSchemaValidation"))
297
298
  Api.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableExecuteApiEndpoint"))
298
299
  Api.add_member(:import_info, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "importInfo"))
300
+ Api.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
299
301
  Api.add_member(:name, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, required: true, location_name: "name"))
300
302
  Api.add_member(:protocol_type, Shapes::ShapeRef.new(shape: ProtocolType, required: true, location_name: "protocolType"))
301
303
  Api.add_member(:route_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, required: true, location_name: "routeSelectionExpression"))
@@ -395,6 +397,7 @@ module Aws::ApiGatewayV2
395
397
  CreateApiRequest.add_member(:description, Shapes::ShapeRef.new(shape: StringWithLengthBetween0And1024, location_name: "description"))
396
398
  CreateApiRequest.add_member(:disable_schema_validation, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableSchemaValidation"))
397
399
  CreateApiRequest.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableExecuteApiEndpoint"))
400
+ CreateApiRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
398
401
  CreateApiRequest.add_member(:name, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, required: true, location_name: "name"))
399
402
  CreateApiRequest.add_member(:protocol_type, Shapes::ShapeRef.new(shape: ProtocolType, required: true, location_name: "protocolType"))
400
403
  CreateApiRequest.add_member(:route_key, Shapes::ShapeRef.new(shape: SelectionKey, location_name: "routeKey"))
@@ -414,6 +417,7 @@ module Aws::ApiGatewayV2
414
417
  CreateApiResponse.add_member(:disable_schema_validation, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableSchemaValidation"))
415
418
  CreateApiResponse.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableExecuteApiEndpoint"))
416
419
  CreateApiResponse.add_member(:import_info, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "importInfo"))
420
+ CreateApiResponse.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
417
421
  CreateApiResponse.add_member(:name, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "name"))
418
422
  CreateApiResponse.add_member(:protocol_type, Shapes::ShapeRef.new(shape: ProtocolType, location_name: "protocolType"))
419
423
  CreateApiResponse.add_member(:route_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "routeSelectionExpression"))
@@ -821,6 +825,7 @@ module Aws::ApiGatewayV2
821
825
  DomainNameConfiguration.add_member(:domain_name_status_message, Shapes::ShapeRef.new(shape: __string, location_name: "domainNameStatusMessage"))
822
826
  DomainNameConfiguration.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: EndpointType, location_name: "endpointType"))
823
827
  DomainNameConfiguration.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: __string, location_name: "hostedZoneId"))
828
+ DomainNameConfiguration.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
824
829
  DomainNameConfiguration.add_member(:security_policy, Shapes::ShapeRef.new(shape: SecurityPolicy, location_name: "securityPolicy"))
825
830
  DomainNameConfiguration.add_member(:ownership_verification_certificate_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ownershipVerificationCertificateArn"))
826
831
  DomainNameConfiguration.struct_class = Types::DomainNameConfiguration
@@ -876,6 +881,7 @@ module Aws::ApiGatewayV2
876
881
  GetApiResponse.add_member(:disable_schema_validation, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableSchemaValidation"))
877
882
  GetApiResponse.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableExecuteApiEndpoint"))
878
883
  GetApiResponse.add_member(:import_info, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "importInfo"))
884
+ GetApiResponse.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
879
885
  GetApiResponse.add_member(:name, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "name"))
880
886
  GetApiResponse.add_member(:protocol_type, Shapes::ShapeRef.new(shape: ProtocolType, location_name: "protocolType"))
881
887
  GetApiResponse.add_member(:route_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "routeSelectionExpression"))
@@ -1169,6 +1175,7 @@ module Aws::ApiGatewayV2
1169
1175
  ImportApiResponse.add_member(:disable_schema_validation, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableSchemaValidation"))
1170
1176
  ImportApiResponse.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableExecuteApiEndpoint"))
1171
1177
  ImportApiResponse.add_member(:import_info, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "importInfo"))
1178
+ ImportApiResponse.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
1172
1179
  ImportApiResponse.add_member(:name, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "name"))
1173
1180
  ImportApiResponse.add_member(:protocol_type, Shapes::ShapeRef.new(shape: ProtocolType, location_name: "protocolType"))
1174
1181
  ImportApiResponse.add_member(:route_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "routeSelectionExpression"))
@@ -1272,6 +1279,7 @@ module Aws::ApiGatewayV2
1272
1279
  ReimportApiResponse.add_member(:disable_schema_validation, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableSchemaValidation"))
1273
1280
  ReimportApiResponse.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableExecuteApiEndpoint"))
1274
1281
  ReimportApiResponse.add_member(:import_info, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "importInfo"))
1282
+ ReimportApiResponse.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
1275
1283
  ReimportApiResponse.add_member(:name, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "name"))
1276
1284
  ReimportApiResponse.add_member(:protocol_type, Shapes::ShapeRef.new(shape: ProtocolType, location_name: "protocolType"))
1277
1285
  ReimportApiResponse.add_member(:route_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "routeSelectionExpression"))
@@ -1398,6 +1406,7 @@ module Aws::ApiGatewayV2
1398
1406
  UpdateApiInput.add_member(:description, Shapes::ShapeRef.new(shape: StringWithLengthBetween0And1024, location_name: "description"))
1399
1407
  UpdateApiInput.add_member(:disable_schema_validation, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableSchemaValidation"))
1400
1408
  UpdateApiInput.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableExecuteApiEndpoint"))
1409
+ UpdateApiInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
1401
1410
  UpdateApiInput.add_member(:name, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "name"))
1402
1411
  UpdateApiInput.add_member(:route_key, Shapes::ShapeRef.new(shape: SelectionKey, location_name: "routeKey"))
1403
1412
  UpdateApiInput.add_member(:route_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "routeSelectionExpression"))
@@ -1430,6 +1439,7 @@ module Aws::ApiGatewayV2
1430
1439
  UpdateApiRequest.add_member(:description, Shapes::ShapeRef.new(shape: StringWithLengthBetween0And1024, location_name: "description"))
1431
1440
  UpdateApiRequest.add_member(:disable_schema_validation, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableSchemaValidation"))
1432
1441
  UpdateApiRequest.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableExecuteApiEndpoint"))
1442
+ UpdateApiRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
1433
1443
  UpdateApiRequest.add_member(:name, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "name"))
1434
1444
  UpdateApiRequest.add_member(:route_key, Shapes::ShapeRef.new(shape: SelectionKey, location_name: "routeKey"))
1435
1445
  UpdateApiRequest.add_member(:route_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "routeSelectionExpression"))
@@ -1447,6 +1457,7 @@ module Aws::ApiGatewayV2
1447
1457
  UpdateApiResponse.add_member(:disable_schema_validation, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableSchemaValidation"))
1448
1458
  UpdateApiResponse.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: __boolean, location_name: "disableExecuteApiEndpoint"))
1449
1459
  UpdateApiResponse.add_member(:import_info, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "importInfo"))
1460
+ UpdateApiResponse.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
1450
1461
  UpdateApiResponse.add_member(:name, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "name"))
1451
1462
  UpdateApiResponse.add_member(:protocol_type, Shapes::ShapeRef.new(shape: ProtocolType, location_name: "protocolType"))
1452
1463
  UpdateApiResponse.add_member(:route_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "routeSelectionExpression"))
@@ -97,6 +97,10 @@ module Aws::ApiGatewayV2
97
97
  # during import. Supported only for HTTP APIs.
98
98
  # @return [Array<String>]
99
99
  #
100
+ # @!attribute [rw] ip_address_type
101
+ # The IP address types that can invoke the API.
102
+ # @return [String]
103
+ #
100
104
  # @!attribute [rw] name
101
105
  # The name of the API.
102
106
  # @return [String]
@@ -136,6 +140,7 @@ module Aws::ApiGatewayV2
136
140
  :disable_schema_validation,
137
141
  :disable_execute_api_endpoint,
138
142
  :import_info,
143
+ :ip_address_type,
139
144
  :name,
140
145
  :protocol_type,
141
146
  :route_selection_expression,
@@ -650,6 +655,10 @@ module Aws::ApiGatewayV2
650
655
  # @!attribute [rw] disable_execute_api_endpoint
651
656
  # @return [Boolean]
652
657
  #
658
+ # @!attribute [rw] ip_address_type
659
+ # The IP address types that can invoke the API.
660
+ # @return [String]
661
+ #
653
662
  # @!attribute [rw] name
654
663
  # A string with a length between \[1-128\].
655
664
  # @return [String]
@@ -697,6 +706,7 @@ module Aws::ApiGatewayV2
697
706
  :description,
698
707
  :disable_schema_validation,
699
708
  :disable_execute_api_endpoint,
709
+ :ip_address_type,
700
710
  :name,
701
711
  :protocol_type,
702
712
  :route_key,
@@ -752,6 +762,10 @@ module Aws::ApiGatewayV2
752
762
  # @!attribute [rw] import_info
753
763
  # @return [Array<String>]
754
764
  #
765
+ # @!attribute [rw] ip_address_type
766
+ # The IP address types that can invoke the API.
767
+ # @return [String]
768
+ #
755
769
  # @!attribute [rw] name
756
770
  # A string with a length between \[1-128\].
757
771
  # @return [String]
@@ -791,6 +805,7 @@ module Aws::ApiGatewayV2
791
805
  :disable_schema_validation,
792
806
  :disable_execute_api_endpoint,
793
807
  :import_info,
808
+ :ip_address_type,
794
809
  :name,
795
810
  :protocol_type,
796
811
  :route_selection_expression,
@@ -3076,6 +3091,13 @@ module Aws::ApiGatewayV2
3076
3091
  # The Amazon Route 53 Hosted Zone ID of the endpoint.
3077
3092
  # @return [String]
3078
3093
  #
3094
+ # @!attribute [rw] ip_address_type
3095
+ # The IP address types that can invoke the domain name. Use ipv4 to
3096
+ # allow only IPv4 addresses to invoke your domain name, or use
3097
+ # dualstack to allow both IPv4 and IPv6 addresses to invoke your
3098
+ # domain name.
3099
+ # @return [String]
3100
+ #
3079
3101
  # @!attribute [rw] security_policy
3080
3102
  # The Transport Layer Security (TLS) version of the security policy
3081
3103
  # for this domain name. The valid values are TLS\_1\_0 and TLS\_1\_2.
@@ -3097,6 +3119,7 @@ module Aws::ApiGatewayV2
3097
3119
  :domain_name_status_message,
3098
3120
  :endpoint_type,
3099
3121
  :hosted_zone_id,
3122
+ :ip_address_type,
3100
3123
  :security_policy,
3101
3124
  :ownership_verification_certificate_arn)
3102
3125
  SENSITIVE = []
@@ -3305,6 +3328,10 @@ module Aws::ApiGatewayV2
3305
3328
  # @!attribute [rw] import_info
3306
3329
  # @return [Array<String>]
3307
3330
  #
3331
+ # @!attribute [rw] ip_address_type
3332
+ # The IP address types that can invoke the API.
3333
+ # @return [String]
3334
+ #
3308
3335
  # @!attribute [rw] name
3309
3336
  # A string with a length between \[1-128\].
3310
3337
  # @return [String]
@@ -3344,6 +3371,7 @@ module Aws::ApiGatewayV2
3344
3371
  :disable_schema_validation,
3345
3372
  :disable_execute_api_endpoint,
3346
3373
  :import_info,
3374
+ :ip_address_type,
3347
3375
  :name,
3348
3376
  :protocol_type,
3349
3377
  :route_selection_expression,
@@ -4612,6 +4640,10 @@ module Aws::ApiGatewayV2
4612
4640
  # @!attribute [rw] import_info
4613
4641
  # @return [Array<String>]
4614
4642
  #
4643
+ # @!attribute [rw] ip_address_type
4644
+ # The IP address types that can invoke the API.
4645
+ # @return [String]
4646
+ #
4615
4647
  # @!attribute [rw] name
4616
4648
  # A string with a length between \[1-128\].
4617
4649
  # @return [String]
@@ -4651,6 +4683,7 @@ module Aws::ApiGatewayV2
4651
4683
  :disable_schema_validation,
4652
4684
  :disable_execute_api_endpoint,
4653
4685
  :import_info,
4686
+ :ip_address_type,
4654
4687
  :name,
4655
4688
  :protocol_type,
4656
4689
  :route_selection_expression,
@@ -5291,6 +5324,10 @@ module Aws::ApiGatewayV2
5291
5324
  # @!attribute [rw] import_info
5292
5325
  # @return [Array<String>]
5293
5326
  #
5327
+ # @!attribute [rw] ip_address_type
5328
+ # The IP address types that can invoke the API.
5329
+ # @return [String]
5330
+ #
5294
5331
  # @!attribute [rw] name
5295
5332
  # A string with a length between \[1-128\].
5296
5333
  # @return [String]
@@ -5330,6 +5367,7 @@ module Aws::ApiGatewayV2
5330
5367
  :disable_schema_validation,
5331
5368
  :disable_execute_api_endpoint,
5332
5369
  :import_info,
5370
+ :ip_address_type,
5333
5371
  :name,
5334
5372
  :protocol_type,
5335
5373
  :route_selection_expression,
@@ -5787,6 +5825,12 @@ module Aws::ApiGatewayV2
5787
5825
  # @!attribute [rw] disable_execute_api_endpoint
5788
5826
  # @return [Boolean]
5789
5827
  #
5828
+ # @!attribute [rw] ip_address_type
5829
+ # The IP address types that can invoke the API. Use ipv4 to allow only
5830
+ # IPv4 addresses to invoke your API, or use dualstack to allow both
5831
+ # IPv4 and IPv6 addresses to invoke your domain name.
5832
+ # @return [String]
5833
+ #
5790
5834
  # @!attribute [rw] name
5791
5835
  # The name of the API.
5792
5836
  # @return [String]
@@ -5825,6 +5869,7 @@ module Aws::ApiGatewayV2
5825
5869
  :description,
5826
5870
  :disable_schema_validation,
5827
5871
  :disable_execute_api_endpoint,
5872
+ :ip_address_type,
5828
5873
  :name,
5829
5874
  :route_key,
5830
5875
  :route_selection_expression,
@@ -5958,6 +6003,10 @@ module Aws::ApiGatewayV2
5958
6003
  # @!attribute [rw] disable_execute_api_endpoint
5959
6004
  # @return [Boolean]
5960
6005
  #
6006
+ # @!attribute [rw] ip_address_type
6007
+ # The IP address types that can invoke the API.
6008
+ # @return [String]
6009
+ #
5961
6010
  # @!attribute [rw] name
5962
6011
  # A string with a length between \[1-128\].
5963
6012
  # @return [String]
@@ -5998,6 +6047,7 @@ module Aws::ApiGatewayV2
5998
6047
  :description,
5999
6048
  :disable_schema_validation,
6000
6049
  :disable_execute_api_endpoint,
6050
+ :ip_address_type,
6001
6051
  :name,
6002
6052
  :route_key,
6003
6053
  :route_selection_expression,
@@ -6051,6 +6101,10 @@ module Aws::ApiGatewayV2
6051
6101
  # @!attribute [rw] import_info
6052
6102
  # @return [Array<String>]
6053
6103
  #
6104
+ # @!attribute [rw] ip_address_type
6105
+ # The IP address types that can invoke the API.
6106
+ # @return [String]
6107
+ #
6054
6108
  # @!attribute [rw] name
6055
6109
  # A string with a length between \[1-128\].
6056
6110
  # @return [String]
@@ -6090,6 +6144,7 @@ module Aws::ApiGatewayV2
6090
6144
  :disable_schema_validation,
6091
6145
  :disable_execute_api_endpoint,
6092
6146
  :import_info,
6147
+ :ip_address_type,
6093
6148
  :name,
6094
6149
  :protocol_type,
6095
6150
  :route_selection_expression,
@@ -54,7 +54,7 @@ module Aws::ApiGatewayV2
54
54
  autoload :EndpointProvider, 'aws-sdk-apigatewayv2/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-apigatewayv2/endpoints'
56
56
 
57
- GEM_VERSION = '1.72.0'
57
+ GEM_VERSION = '1.73.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -89,6 +89,7 @@ module Aws
89
89
  def disable_schema_validation: () -> bool
90
90
  def disable_execute_api_endpoint: () -> bool
91
91
  def import_info: () -> ::Array[::String]
92
+ def ip_address_type: () -> ("ipv4" | "dualstack")
92
93
  def name: () -> ::String
93
94
  def protocol_type: () -> ("WEBSOCKET" | "HTTP")
94
95
  def route_selection_expression: () -> ::String
@@ -111,6 +112,7 @@ module Aws
111
112
  ?description: ::String,
112
113
  ?disable_schema_validation: bool,
113
114
  ?disable_execute_api_endpoint: bool,
115
+ ?ip_address_type: ("ipv4" | "dualstack"),
114
116
  name: ::String,
115
117
  protocol_type: ("WEBSOCKET" | "HTTP"),
116
118
  ?route_key: ::String,
@@ -208,6 +210,7 @@ module Aws
208
210
  domain_name_status_message: ::String?,
209
211
  endpoint_type: ("REGIONAL" | "EDGE")?,
210
212
  hosted_zone_id: ::String?,
213
+ ip_address_type: ("ipv4" | "dualstack")?,
211
214
  security_policy: ("TLS_1_0" | "TLS_1_2")?,
212
215
  ownership_verification_certificate_arn: ::String?
213
216
  },
@@ -581,6 +584,7 @@ module Aws
581
584
  def disable_schema_validation: () -> bool
582
585
  def disable_execute_api_endpoint: () -> bool
583
586
  def import_info: () -> ::Array[::String]
587
+ def ip_address_type: () -> ("ipv4" | "dualstack")
584
588
  def name: () -> ::String
585
589
  def protocol_type: () -> ("WEBSOCKET" | "HTTP")
586
590
  def route_selection_expression: () -> ::String
@@ -990,6 +994,7 @@ module Aws
990
994
  def disable_schema_validation: () -> bool
991
995
  def disable_execute_api_endpoint: () -> bool
992
996
  def import_info: () -> ::Array[::String]
997
+ def ip_address_type: () -> ("ipv4" | "dualstack")
993
998
  def name: () -> ::String
994
999
  def protocol_type: () -> ("WEBSOCKET" | "HTTP")
995
1000
  def route_selection_expression: () -> ::String
@@ -1017,6 +1022,7 @@ module Aws
1017
1022
  def disable_schema_validation: () -> bool
1018
1023
  def disable_execute_api_endpoint: () -> bool
1019
1024
  def import_info: () -> ::Array[::String]
1025
+ def ip_address_type: () -> ("ipv4" | "dualstack")
1020
1026
  def name: () -> ::String
1021
1027
  def protocol_type: () -> ("WEBSOCKET" | "HTTP")
1022
1028
  def route_selection_expression: () -> ::String
@@ -1062,6 +1068,7 @@ module Aws
1062
1068
  def disable_schema_validation: () -> bool
1063
1069
  def disable_execute_api_endpoint: () -> bool
1064
1070
  def import_info: () -> ::Array[::String]
1071
+ def ip_address_type: () -> ("ipv4" | "dualstack")
1065
1072
  def name: () -> ::String
1066
1073
  def protocol_type: () -> ("WEBSOCKET" | "HTTP")
1067
1074
  def route_selection_expression: () -> ::String
@@ -1085,6 +1092,7 @@ module Aws
1085
1092
  ?description: ::String,
1086
1093
  ?disable_schema_validation: bool,
1087
1094
  ?disable_execute_api_endpoint: bool,
1095
+ ?ip_address_type: ("ipv4" | "dualstack"),
1088
1096
  ?name: ::String,
1089
1097
  ?route_key: ::String,
1090
1098
  ?route_selection_expression: ::String,
@@ -1182,6 +1190,7 @@ module Aws
1182
1190
  domain_name_status_message: ::String?,
1183
1191
  endpoint_type: ("REGIONAL" | "EDGE")?,
1184
1192
  hosted_zone_id: ::String?,
1193
+ ip_address_type: ("ipv4" | "dualstack")?,
1185
1194
  security_policy: ("TLS_1_0" | "TLS_1_2")?,
1186
1195
  ownership_verification_certificate_arn: ::String?
1187
1196
  },
data/sig/types.rbs CHANGED
@@ -30,6 +30,7 @@ module Aws::ApiGatewayV2
30
30
  attr_accessor disable_schema_validation: bool
31
31
  attr_accessor disable_execute_api_endpoint: bool
32
32
  attr_accessor import_info: ::Array[::String]
33
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
33
34
  attr_accessor name: ::String
34
35
  attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
35
36
  attr_accessor route_selection_expression: ::String
@@ -147,6 +148,7 @@ module Aws::ApiGatewayV2
147
148
  attr_accessor description: ::String
148
149
  attr_accessor disable_schema_validation: bool
149
150
  attr_accessor disable_execute_api_endpoint: bool
151
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
150
152
  attr_accessor name: ::String
151
153
  attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
152
154
  attr_accessor route_key: ::String
@@ -168,6 +170,7 @@ module Aws::ApiGatewayV2
168
170
  attr_accessor disable_schema_validation: bool
169
171
  attr_accessor disable_execute_api_endpoint: bool
170
172
  attr_accessor import_info: ::Array[::String]
173
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
171
174
  attr_accessor name: ::String
172
175
  attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
173
176
  attr_accessor route_selection_expression: ::String
@@ -676,6 +679,7 @@ module Aws::ApiGatewayV2
676
679
  attr_accessor domain_name_status_message: ::String
677
680
  attr_accessor endpoint_type: ("REGIONAL" | "EDGE")
678
681
  attr_accessor hosted_zone_id: ::String
682
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
679
683
  attr_accessor security_policy: ("TLS_1_0" | "TLS_1_2")
680
684
  attr_accessor ownership_verification_certificate_arn: ::String
681
685
  SENSITIVE: []
@@ -751,6 +755,7 @@ module Aws::ApiGatewayV2
751
755
  attr_accessor disable_schema_validation: bool
752
756
  attr_accessor disable_execute_api_endpoint: bool
753
757
  attr_accessor import_info: ::Array[::String]
758
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
754
759
  attr_accessor name: ::String
755
760
  attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
756
761
  attr_accessor route_selection_expression: ::String
@@ -1140,6 +1145,7 @@ module Aws::ApiGatewayV2
1140
1145
  attr_accessor disable_schema_validation: bool
1141
1146
  attr_accessor disable_execute_api_endpoint: bool
1142
1147
  attr_accessor import_info: ::Array[::String]
1148
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
1143
1149
  attr_accessor name: ::String
1144
1150
  attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
1145
1151
  attr_accessor route_selection_expression: ::String
@@ -1270,6 +1276,7 @@ module Aws::ApiGatewayV2
1270
1276
  attr_accessor disable_schema_validation: bool
1271
1277
  attr_accessor disable_execute_api_endpoint: bool
1272
1278
  attr_accessor import_info: ::Array[::String]
1279
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
1273
1280
  attr_accessor name: ::String
1274
1281
  attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
1275
1282
  attr_accessor route_selection_expression: ::String
@@ -1398,6 +1405,7 @@ module Aws::ApiGatewayV2
1398
1405
  attr_accessor description: ::String
1399
1406
  attr_accessor disable_schema_validation: bool
1400
1407
  attr_accessor disable_execute_api_endpoint: bool
1408
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
1401
1409
  attr_accessor name: ::String
1402
1410
  attr_accessor route_key: ::String
1403
1411
  attr_accessor route_selection_expression: ::String
@@ -1438,6 +1446,7 @@ module Aws::ApiGatewayV2
1438
1446
  attr_accessor description: ::String
1439
1447
  attr_accessor disable_schema_validation: bool
1440
1448
  attr_accessor disable_execute_api_endpoint: bool
1449
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
1441
1450
  attr_accessor name: ::String
1442
1451
  attr_accessor route_key: ::String
1443
1452
  attr_accessor route_selection_expression: ::String
@@ -1457,6 +1466,7 @@ module Aws::ApiGatewayV2
1457
1466
  attr_accessor disable_schema_validation: bool
1458
1467
  attr_accessor disable_execute_api_endpoint: bool
1459
1468
  attr_accessor import_info: ::Array[::String]
1469
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
1460
1470
  attr_accessor name: ::String
1461
1471
  attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
1462
1472
  attr_accessor route_selection_expression: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-apigatewayv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.72.0
4
+ version: 1.73.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: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core