aws-sdk-apigateway 1.126.0 → 1.128.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigateway/client.rb +112 -11
- data/lib/aws-sdk-apigateway/client_api.rb +15 -0
- data/lib/aws-sdk-apigateway/types.rb +72 -6
- data/lib/aws-sdk-apigateway.rb +1 -1
- data/sig/client.rbs +43 -9
- data/sig/types.rbs +15 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69776778b98a05367f4a5af10a11cb2e61705feca7ba30568fc20f57df722268
|
|
4
|
+
data.tar.gz: 66f66a2ca2814b2efa3d530953801bc2eeb65da42b064b6624b7dbe552295252
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d90fa3694d8f17bf1689f26d1f08e0ccbd9ea46efcecc889ddad7980c4e78207fb265b624357fc3306383709336f76a9fc0ce1db594f9461eda1cb71c0575db
|
|
7
|
+
data.tar.gz: 1d79f8ccba040f1e695cac1e2c3a2a84d269b505ab0e366018c8299ea9c656fd5bd460abd8d8f91683ec68acea33819cb46e87fa712dc35740457c02799fedc8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.128.0 (2025-11-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - API Gateway supports VPC link V2 for REST APIs.
|
|
8
|
+
|
|
9
|
+
1.127.0 (2025-11-19)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - API Gateway now supports response streaming and new security policies for REST APIs and custom domain names.
|
|
13
|
+
|
|
4
14
|
1.126.0 (2025-10-30)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.128.0
|
|
@@ -978,7 +978,12 @@ module Aws::APIGateway
|
|
|
978
978
|
#
|
|
979
979
|
# @option params [String] :security_policy
|
|
980
980
|
# The Transport Layer Security (TLS) version + cipher suite for this
|
|
981
|
-
# DomainName.
|
|
981
|
+
# DomainName.
|
|
982
|
+
#
|
|
983
|
+
# @option params [String] :endpoint_access_mode
|
|
984
|
+
# The endpoint access mode of the DomainName. Only available for
|
|
985
|
+
# DomainNames that use security policies that start with
|
|
986
|
+
# `SecurityPolicy_`.
|
|
982
987
|
#
|
|
983
988
|
# @option params [Types::MutualTlsAuthenticationInput] :mutual_tls_authentication
|
|
984
989
|
# The mutual TLS authentication configuration for a custom domain name.
|
|
@@ -1020,6 +1025,7 @@ module Aws::APIGateway
|
|
|
1020
1025
|
# * {Types::DomainName#domain_name_status #domain_name_status} => String
|
|
1021
1026
|
# * {Types::DomainName#domain_name_status_message #domain_name_status_message} => String
|
|
1022
1027
|
# * {Types::DomainName#security_policy #security_policy} => String
|
|
1028
|
+
# * {Types::DomainName#endpoint_access_mode #endpoint_access_mode} => String
|
|
1023
1029
|
# * {Types::DomainName#tags #tags} => Hash<String,String>
|
|
1024
1030
|
# * {Types::DomainName#mutual_tls_authentication #mutual_tls_authentication} => Types::MutualTlsAuthentication
|
|
1025
1031
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
|
@@ -1046,7 +1052,8 @@ module Aws::APIGateway
|
|
|
1046
1052
|
# tags: {
|
|
1047
1053
|
# "String" => "String",
|
|
1048
1054
|
# },
|
|
1049
|
-
# security_policy: "TLS_1_0", # accepts TLS_1_0, TLS_1_2
|
|
1055
|
+
# security_policy: "TLS_1_0", # accepts TLS_1_0, TLS_1_2, SecurityPolicy_TLS13_1_3_2025_09, SecurityPolicy_TLS13_1_3_FIPS_2025_09, SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09, SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09, SecurityPolicy_TLS13_1_2_PQ_2025_09, SecurityPolicy_TLS13_1_2_2021_06, SecurityPolicy_TLS13_2025_EDGE, SecurityPolicy_TLS12_PFS_2025_EDGE, SecurityPolicy_TLS12_2018_EDGE
|
|
1056
|
+
# endpoint_access_mode: "BASIC", # accepts BASIC, STRICT
|
|
1050
1057
|
# mutual_tls_authentication: {
|
|
1051
1058
|
# truststore_uri: "String",
|
|
1052
1059
|
# truststore_version: "String",
|
|
@@ -1075,9 +1082,10 @@ module Aws::APIGateway
|
|
|
1075
1082
|
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
|
1076
1083
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
|
1077
1084
|
# resp.endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
|
1078
|
-
# resp.domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
|
1085
|
+
# resp.domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION", "FAILED"
|
|
1079
1086
|
# resp.domain_name_status_message #=> String
|
|
1080
|
-
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
|
|
1087
|
+
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2", "SecurityPolicy_TLS13_1_3_2025_09", "SecurityPolicy_TLS13_1_3_FIPS_2025_09", "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_PQ_2025_09", "SecurityPolicy_TLS13_1_2_2021_06", "SecurityPolicy_TLS13_2025_EDGE", "SecurityPolicy_TLS12_PFS_2025_EDGE", "SecurityPolicy_TLS12_2018_EDGE"
|
|
1088
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
1081
1089
|
# resp.tags #=> Hash
|
|
1082
1090
|
# resp.tags["String"] #=> String
|
|
1083
1091
|
# resp.mutual_tls_authentication.truststore_uri #=> String
|
|
@@ -1322,6 +1330,8 @@ module Aws::APIGateway
|
|
|
1322
1330
|
# resp.resource_methods["String"].method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
1323
1331
|
# resp.resource_methods["String"].method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
1324
1332
|
# resp.resource_methods["String"].method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
1333
|
+
# resp.resource_methods["String"].method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
1334
|
+
# resp.resource_methods["String"].method_integration.integration_target #=> String
|
|
1325
1335
|
# resp.resource_methods["String"].authorization_scopes #=> Array
|
|
1326
1336
|
# resp.resource_methods["String"].authorization_scopes[0] #=> String
|
|
1327
1337
|
#
|
|
@@ -1384,6 +1394,14 @@ module Aws::APIGateway
|
|
|
1384
1394
|
# endpoint. To require that clients use a custom domain name to invoke
|
|
1385
1395
|
# your API, disable the default endpoint
|
|
1386
1396
|
#
|
|
1397
|
+
# @option params [String] :security_policy
|
|
1398
|
+
# The Transport Layer Security (TLS) version + cipher suite for this
|
|
1399
|
+
# RestApi.
|
|
1400
|
+
#
|
|
1401
|
+
# @option params [String] :endpoint_access_mode
|
|
1402
|
+
# The endpoint access mode of the RestApi. Only available for RestApis
|
|
1403
|
+
# that use security policies that start with `SecurityPolicy_`.
|
|
1404
|
+
#
|
|
1387
1405
|
# @return [Types::RestApi] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1388
1406
|
#
|
|
1389
1407
|
# * {Types::RestApi#id #id} => String
|
|
@@ -1400,6 +1418,10 @@ module Aws::APIGateway
|
|
|
1400
1418
|
# * {Types::RestApi#tags #tags} => Hash<String,String>
|
|
1401
1419
|
# * {Types::RestApi#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
|
|
1402
1420
|
# * {Types::RestApi#root_resource_id #root_resource_id} => String
|
|
1421
|
+
# * {Types::RestApi#security_policy #security_policy} => String
|
|
1422
|
+
# * {Types::RestApi#endpoint_access_mode #endpoint_access_mode} => String
|
|
1423
|
+
# * {Types::RestApi#api_status #api_status} => String
|
|
1424
|
+
# * {Types::RestApi#api_status_message #api_status_message} => String
|
|
1403
1425
|
#
|
|
1404
1426
|
# @example Request syntax with placeholder values
|
|
1405
1427
|
#
|
|
@@ -1421,6 +1443,8 @@ module Aws::APIGateway
|
|
|
1421
1443
|
# "String" => "String",
|
|
1422
1444
|
# },
|
|
1423
1445
|
# disable_execute_api_endpoint: false,
|
|
1446
|
+
# security_policy: "TLS_1_0", # accepts TLS_1_0, TLS_1_2, SecurityPolicy_TLS13_1_3_2025_09, SecurityPolicy_TLS13_1_3_FIPS_2025_09, SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09, SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09, SecurityPolicy_TLS13_1_2_PQ_2025_09, SecurityPolicy_TLS13_1_2_2021_06, SecurityPolicy_TLS13_2025_EDGE, SecurityPolicy_TLS12_PFS_2025_EDGE, SecurityPolicy_TLS12_2018_EDGE
|
|
1447
|
+
# endpoint_access_mode: "BASIC", # accepts BASIC, STRICT
|
|
1424
1448
|
# })
|
|
1425
1449
|
#
|
|
1426
1450
|
# @example Response structure
|
|
@@ -1446,6 +1470,10 @@ module Aws::APIGateway
|
|
|
1446
1470
|
# resp.tags["String"] #=> String
|
|
1447
1471
|
# resp.disable_execute_api_endpoint #=> Boolean
|
|
1448
1472
|
# resp.root_resource_id #=> String
|
|
1473
|
+
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2", "SecurityPolicy_TLS13_1_3_2025_09", "SecurityPolicy_TLS13_1_3_FIPS_2025_09", "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_PQ_2025_09", "SecurityPolicy_TLS13_1_2_2021_06", "SecurityPolicy_TLS13_2025_EDGE", "SecurityPolicy_TLS12_PFS_2025_EDGE", "SecurityPolicy_TLS12_2018_EDGE"
|
|
1474
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
1475
|
+
# resp.api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
1476
|
+
# resp.api_status_message #=> String
|
|
1449
1477
|
#
|
|
1450
1478
|
# @overload create_rest_api(params = {})
|
|
1451
1479
|
# @param [Hash] params ({})
|
|
@@ -3136,6 +3164,7 @@ module Aws::APIGateway
|
|
|
3136
3164
|
# * {Types::DomainName#domain_name_status #domain_name_status} => String
|
|
3137
3165
|
# * {Types::DomainName#domain_name_status_message #domain_name_status_message} => String
|
|
3138
3166
|
# * {Types::DomainName#security_policy #security_policy} => String
|
|
3167
|
+
# * {Types::DomainName#endpoint_access_mode #endpoint_access_mode} => String
|
|
3139
3168
|
# * {Types::DomainName#tags #tags} => Hash<String,String>
|
|
3140
3169
|
# * {Types::DomainName#mutual_tls_authentication #mutual_tls_authentication} => Types::MutualTlsAuthentication
|
|
3141
3170
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
|
@@ -3169,9 +3198,10 @@ module Aws::APIGateway
|
|
|
3169
3198
|
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
|
3170
3199
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
|
3171
3200
|
# resp.endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
|
3172
|
-
# resp.domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
|
3201
|
+
# resp.domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION", "FAILED"
|
|
3173
3202
|
# resp.domain_name_status_message #=> String
|
|
3174
|
-
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
|
|
3203
|
+
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2", "SecurityPolicy_TLS13_1_3_2025_09", "SecurityPolicy_TLS13_1_3_FIPS_2025_09", "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_PQ_2025_09", "SecurityPolicy_TLS13_1_2_2021_06", "SecurityPolicy_TLS13_2025_EDGE", "SecurityPolicy_TLS12_PFS_2025_EDGE", "SecurityPolicy_TLS12_2018_EDGE"
|
|
3204
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
3175
3205
|
# resp.tags #=> Hash
|
|
3176
3206
|
# resp.tags["String"] #=> String
|
|
3177
3207
|
# resp.mutual_tls_authentication.truststore_uri #=> String
|
|
@@ -3284,9 +3314,10 @@ module Aws::APIGateway
|
|
|
3284
3314
|
# resp.items[0].endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
|
3285
3315
|
# resp.items[0].endpoint_configuration.vpc_endpoint_ids #=> Array
|
|
3286
3316
|
# resp.items[0].endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
|
3287
|
-
# resp.items[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
|
3317
|
+
# resp.items[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION", "FAILED"
|
|
3288
3318
|
# resp.items[0].domain_name_status_message #=> String
|
|
3289
|
-
# resp.items[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
|
|
3319
|
+
# resp.items[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2", "SecurityPolicy_TLS13_1_3_2025_09", "SecurityPolicy_TLS13_1_3_FIPS_2025_09", "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_PQ_2025_09", "SecurityPolicy_TLS13_1_2_2021_06", "SecurityPolicy_TLS13_2025_EDGE", "SecurityPolicy_TLS12_PFS_2025_EDGE", "SecurityPolicy_TLS12_2018_EDGE"
|
|
3320
|
+
# resp.items[0].endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
3290
3321
|
# resp.items[0].tags #=> Hash
|
|
3291
3322
|
# resp.items[0].tags["String"] #=> String
|
|
3292
3323
|
# resp.items[0].mutual_tls_authentication.truststore_uri #=> String
|
|
@@ -3483,6 +3514,8 @@ module Aws::APIGateway
|
|
|
3483
3514
|
# * {Types::Integration#cache_key_parameters #cache_key_parameters} => Array<String>
|
|
3484
3515
|
# * {Types::Integration#integration_responses #integration_responses} => Hash<String,Types::IntegrationResponse>
|
|
3485
3516
|
# * {Types::Integration#tls_config #tls_config} => Types::TlsConfig
|
|
3517
|
+
# * {Types::Integration#response_transfer_mode #response_transfer_mode} => String
|
|
3518
|
+
# * {Types::Integration#integration_target #integration_target} => String
|
|
3486
3519
|
#
|
|
3487
3520
|
# @example Request syntax with placeholder values
|
|
3488
3521
|
#
|
|
@@ -3519,6 +3552,8 @@ module Aws::APIGateway
|
|
|
3519
3552
|
# resp.integration_responses["String"].response_templates["String"] #=> String
|
|
3520
3553
|
# resp.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
3521
3554
|
# resp.tls_config.insecure_skip_verification #=> Boolean
|
|
3555
|
+
# resp.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
3556
|
+
# resp.integration_target #=> String
|
|
3522
3557
|
#
|
|
3523
3558
|
# @overload get_integration(params = {})
|
|
3524
3559
|
# @param [Hash] params ({})
|
|
@@ -3651,6 +3686,8 @@ module Aws::APIGateway
|
|
|
3651
3686
|
# resp.method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
3652
3687
|
# resp.method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
3653
3688
|
# resp.method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
3689
|
+
# resp.method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
3690
|
+
# resp.method_integration.integration_target #=> String
|
|
3654
3691
|
# resp.authorization_scopes #=> Array
|
|
3655
3692
|
# resp.authorization_scopes[0] #=> String
|
|
3656
3693
|
#
|
|
@@ -3982,6 +4019,8 @@ module Aws::APIGateway
|
|
|
3982
4019
|
# resp.resource_methods["String"].method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
3983
4020
|
# resp.resource_methods["String"].method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
3984
4021
|
# resp.resource_methods["String"].method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
4022
|
+
# resp.resource_methods["String"].method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
4023
|
+
# resp.resource_methods["String"].method_integration.integration_target #=> String
|
|
3985
4024
|
# resp.resource_methods["String"].authorization_scopes #=> Array
|
|
3986
4025
|
# resp.resource_methods["String"].authorization_scopes[0] #=> String
|
|
3987
4026
|
#
|
|
@@ -4079,6 +4118,8 @@ module Aws::APIGateway
|
|
|
4079
4118
|
# resp.items[0].resource_methods["String"].method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
4080
4119
|
# resp.items[0].resource_methods["String"].method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
4081
4120
|
# resp.items[0].resource_methods["String"].method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
4121
|
+
# resp.items[0].resource_methods["String"].method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
4122
|
+
# resp.items[0].resource_methods["String"].method_integration.integration_target #=> String
|
|
4082
4123
|
# resp.items[0].resource_methods["String"].authorization_scopes #=> Array
|
|
4083
4124
|
# resp.items[0].resource_methods["String"].authorization_scopes[0] #=> String
|
|
4084
4125
|
#
|
|
@@ -4110,6 +4151,10 @@ module Aws::APIGateway
|
|
|
4110
4151
|
# * {Types::RestApi#tags #tags} => Hash<String,String>
|
|
4111
4152
|
# * {Types::RestApi#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
|
|
4112
4153
|
# * {Types::RestApi#root_resource_id #root_resource_id} => String
|
|
4154
|
+
# * {Types::RestApi#security_policy #security_policy} => String
|
|
4155
|
+
# * {Types::RestApi#endpoint_access_mode #endpoint_access_mode} => String
|
|
4156
|
+
# * {Types::RestApi#api_status #api_status} => String
|
|
4157
|
+
# * {Types::RestApi#api_status_message #api_status_message} => String
|
|
4113
4158
|
#
|
|
4114
4159
|
# @example Request syntax with placeholder values
|
|
4115
4160
|
#
|
|
@@ -4140,6 +4185,10 @@ module Aws::APIGateway
|
|
|
4140
4185
|
# resp.tags["String"] #=> String
|
|
4141
4186
|
# resp.disable_execute_api_endpoint #=> Boolean
|
|
4142
4187
|
# resp.root_resource_id #=> String
|
|
4188
|
+
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2", "SecurityPolicy_TLS13_1_3_2025_09", "SecurityPolicy_TLS13_1_3_FIPS_2025_09", "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_PQ_2025_09", "SecurityPolicy_TLS13_1_2_2021_06", "SecurityPolicy_TLS13_2025_EDGE", "SecurityPolicy_TLS12_PFS_2025_EDGE", "SecurityPolicy_TLS12_2018_EDGE"
|
|
4189
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
4190
|
+
# resp.api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
4191
|
+
# resp.api_status_message #=> String
|
|
4143
4192
|
#
|
|
4144
4193
|
# @overload get_rest_api(params = {})
|
|
4145
4194
|
# @param [Hash] params ({})
|
|
@@ -4196,6 +4245,10 @@ module Aws::APIGateway
|
|
|
4196
4245
|
# resp.items[0].tags["String"] #=> String
|
|
4197
4246
|
# resp.items[0].disable_execute_api_endpoint #=> Boolean
|
|
4198
4247
|
# resp.items[0].root_resource_id #=> String
|
|
4248
|
+
# resp.items[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2", "SecurityPolicy_TLS13_1_3_2025_09", "SecurityPolicy_TLS13_1_3_FIPS_2025_09", "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_PQ_2025_09", "SecurityPolicy_TLS13_1_2_2021_06", "SecurityPolicy_TLS13_2025_EDGE", "SecurityPolicy_TLS12_PFS_2025_EDGE", "SecurityPolicy_TLS12_2018_EDGE"
|
|
4249
|
+
# resp.items[0].endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
4250
|
+
# resp.items[0].api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
4251
|
+
# resp.items[0].api_status_message #=> String
|
|
4199
4252
|
#
|
|
4200
4253
|
# @overload get_rest_apis(params = {})
|
|
4201
4254
|
# @param [Hash] params ({})
|
|
@@ -4990,6 +5043,10 @@ module Aws::APIGateway
|
|
|
4990
5043
|
# * {Types::RestApi#tags #tags} => Hash<String,String>
|
|
4991
5044
|
# * {Types::RestApi#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
|
|
4992
5045
|
# * {Types::RestApi#root_resource_id #root_resource_id} => String
|
|
5046
|
+
# * {Types::RestApi#security_policy #security_policy} => String
|
|
5047
|
+
# * {Types::RestApi#endpoint_access_mode #endpoint_access_mode} => String
|
|
5048
|
+
# * {Types::RestApi#api_status #api_status} => String
|
|
5049
|
+
# * {Types::RestApi#api_status_message #api_status_message} => String
|
|
4993
5050
|
#
|
|
4994
5051
|
# @example Request syntax with placeholder values
|
|
4995
5052
|
#
|
|
@@ -5024,6 +5081,10 @@ module Aws::APIGateway
|
|
|
5024
5081
|
# resp.tags["String"] #=> String
|
|
5025
5082
|
# resp.disable_execute_api_endpoint #=> Boolean
|
|
5026
5083
|
# resp.root_resource_id #=> String
|
|
5084
|
+
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2", "SecurityPolicy_TLS13_1_3_2025_09", "SecurityPolicy_TLS13_1_3_FIPS_2025_09", "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_PQ_2025_09", "SecurityPolicy_TLS13_1_2_2021_06", "SecurityPolicy_TLS13_2025_EDGE", "SecurityPolicy_TLS12_PFS_2025_EDGE", "SecurityPolicy_TLS12_2018_EDGE"
|
|
5085
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
5086
|
+
# resp.api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
5087
|
+
# resp.api_status_message #=> String
|
|
5027
5088
|
#
|
|
5028
5089
|
# @overload import_rest_api(params = {})
|
|
5029
5090
|
# @param [Hash] params ({})
|
|
@@ -5198,6 +5259,12 @@ module Aws::APIGateway
|
|
|
5198
5259
|
# @option params [Types::TlsConfig] :tls_config
|
|
5199
5260
|
# Specifies the TLS configuration for an integration.
|
|
5200
5261
|
#
|
|
5262
|
+
# @option params [String] :response_transfer_mode
|
|
5263
|
+
# The response transfer mode of the integration.
|
|
5264
|
+
#
|
|
5265
|
+
# @option params [String] :integration_target
|
|
5266
|
+
# The ALB or NLB listener to send the request to.
|
|
5267
|
+
#
|
|
5201
5268
|
# @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5202
5269
|
#
|
|
5203
5270
|
# * {Types::Integration#type #type} => String
|
|
@@ -5215,6 +5282,8 @@ module Aws::APIGateway
|
|
|
5215
5282
|
# * {Types::Integration#cache_key_parameters #cache_key_parameters} => Array<String>
|
|
5216
5283
|
# * {Types::Integration#integration_responses #integration_responses} => Hash<String,Types::IntegrationResponse>
|
|
5217
5284
|
# * {Types::Integration#tls_config #tls_config} => Types::TlsConfig
|
|
5285
|
+
# * {Types::Integration#response_transfer_mode #response_transfer_mode} => String
|
|
5286
|
+
# * {Types::Integration#integration_target #integration_target} => String
|
|
5218
5287
|
#
|
|
5219
5288
|
# @example Request syntax with placeholder values
|
|
5220
5289
|
#
|
|
@@ -5242,6 +5311,8 @@ module Aws::APIGateway
|
|
|
5242
5311
|
# tls_config: {
|
|
5243
5312
|
# insecure_skip_verification: false,
|
|
5244
5313
|
# },
|
|
5314
|
+
# response_transfer_mode: "BUFFERED", # accepts BUFFERED, STREAM
|
|
5315
|
+
# integration_target: "String",
|
|
5245
5316
|
# })
|
|
5246
5317
|
#
|
|
5247
5318
|
# @example Response structure
|
|
@@ -5271,6 +5342,8 @@ module Aws::APIGateway
|
|
|
5271
5342
|
# resp.integration_responses["String"].response_templates["String"] #=> String
|
|
5272
5343
|
# resp.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
5273
5344
|
# resp.tls_config.insecure_skip_verification #=> Boolean
|
|
5345
|
+
# resp.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
5346
|
+
# resp.integration_target #=> String
|
|
5274
5347
|
#
|
|
5275
5348
|
# @overload put_integration(params = {})
|
|
5276
5349
|
# @param [Hash] params ({})
|
|
@@ -5502,6 +5575,8 @@ module Aws::APIGateway
|
|
|
5502
5575
|
# resp.method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
5503
5576
|
# resp.method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
5504
5577
|
# resp.method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
5578
|
+
# resp.method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
5579
|
+
# resp.method_integration.integration_target #=> String
|
|
5505
5580
|
# resp.authorization_scopes #=> Array
|
|
5506
5581
|
# resp.authorization_scopes[0] #=> String
|
|
5507
5582
|
#
|
|
@@ -5629,6 +5704,10 @@ module Aws::APIGateway
|
|
|
5629
5704
|
# * {Types::RestApi#tags #tags} => Hash<String,String>
|
|
5630
5705
|
# * {Types::RestApi#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
|
|
5631
5706
|
# * {Types::RestApi#root_resource_id #root_resource_id} => String
|
|
5707
|
+
# * {Types::RestApi#security_policy #security_policy} => String
|
|
5708
|
+
# * {Types::RestApi#endpoint_access_mode #endpoint_access_mode} => String
|
|
5709
|
+
# * {Types::RestApi#api_status #api_status} => String
|
|
5710
|
+
# * {Types::RestApi#api_status_message #api_status_message} => String
|
|
5632
5711
|
#
|
|
5633
5712
|
# @example Request syntax with placeholder values
|
|
5634
5713
|
#
|
|
@@ -5665,6 +5744,10 @@ module Aws::APIGateway
|
|
|
5665
5744
|
# resp.tags["String"] #=> String
|
|
5666
5745
|
# resp.disable_execute_api_endpoint #=> Boolean
|
|
5667
5746
|
# resp.root_resource_id #=> String
|
|
5747
|
+
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2", "SecurityPolicy_TLS13_1_3_2025_09", "SecurityPolicy_TLS13_1_3_FIPS_2025_09", "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_PQ_2025_09", "SecurityPolicy_TLS13_1_2_2021_06", "SecurityPolicy_TLS13_2025_EDGE", "SecurityPolicy_TLS12_PFS_2025_EDGE", "SecurityPolicy_TLS12_2018_EDGE"
|
|
5748
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
5749
|
+
# resp.api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
5750
|
+
# resp.api_status_message #=> String
|
|
5668
5751
|
#
|
|
5669
5752
|
# @overload put_rest_api(params = {})
|
|
5670
5753
|
# @param [Hash] params ({})
|
|
@@ -6402,6 +6485,7 @@ module Aws::APIGateway
|
|
|
6402
6485
|
# * {Types::DomainName#domain_name_status #domain_name_status} => String
|
|
6403
6486
|
# * {Types::DomainName#domain_name_status_message #domain_name_status_message} => String
|
|
6404
6487
|
# * {Types::DomainName#security_policy #security_policy} => String
|
|
6488
|
+
# * {Types::DomainName#endpoint_access_mode #endpoint_access_mode} => String
|
|
6405
6489
|
# * {Types::DomainName#tags #tags} => Hash<String,String>
|
|
6406
6490
|
# * {Types::DomainName#mutual_tls_authentication #mutual_tls_authentication} => Types::MutualTlsAuthentication
|
|
6407
6491
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
|
@@ -6443,9 +6527,10 @@ module Aws::APIGateway
|
|
|
6443
6527
|
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
|
6444
6528
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
|
6445
6529
|
# resp.endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
|
6446
|
-
# resp.domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
|
6530
|
+
# resp.domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION", "FAILED"
|
|
6447
6531
|
# resp.domain_name_status_message #=> String
|
|
6448
|
-
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
|
|
6532
|
+
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2", "SecurityPolicy_TLS13_1_3_2025_09", "SecurityPolicy_TLS13_1_3_FIPS_2025_09", "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_PQ_2025_09", "SecurityPolicy_TLS13_1_2_2021_06", "SecurityPolicy_TLS13_2025_EDGE", "SecurityPolicy_TLS12_PFS_2025_EDGE", "SecurityPolicy_TLS12_2018_EDGE"
|
|
6533
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
6449
6534
|
# resp.tags #=> Hash
|
|
6450
6535
|
# resp.tags["String"] #=> String
|
|
6451
6536
|
# resp.mutual_tls_authentication.truststore_uri #=> String
|
|
@@ -6557,6 +6642,8 @@ module Aws::APIGateway
|
|
|
6557
6642
|
# * {Types::Integration#cache_key_parameters #cache_key_parameters} => Array<String>
|
|
6558
6643
|
# * {Types::Integration#integration_responses #integration_responses} => Hash<String,Types::IntegrationResponse>
|
|
6559
6644
|
# * {Types::Integration#tls_config #tls_config} => Types::TlsConfig
|
|
6645
|
+
# * {Types::Integration#response_transfer_mode #response_transfer_mode} => String
|
|
6646
|
+
# * {Types::Integration#integration_target #integration_target} => String
|
|
6560
6647
|
#
|
|
6561
6648
|
# @example Request syntax with placeholder values
|
|
6562
6649
|
#
|
|
@@ -6601,6 +6688,8 @@ module Aws::APIGateway
|
|
|
6601
6688
|
# resp.integration_responses["String"].response_templates["String"] #=> String
|
|
6602
6689
|
# resp.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
6603
6690
|
# resp.tls_config.insecure_skip_verification #=> Boolean
|
|
6691
|
+
# resp.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
6692
|
+
# resp.integration_target #=> String
|
|
6604
6693
|
#
|
|
6605
6694
|
# @overload update_integration(params = {})
|
|
6606
6695
|
# @param [Hash] params ({})
|
|
@@ -6766,6 +6855,8 @@ module Aws::APIGateway
|
|
|
6766
6855
|
# resp.method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
6767
6856
|
# resp.method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
6768
6857
|
# resp.method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
6858
|
+
# resp.method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
6859
|
+
# resp.method_integration.integration_target #=> String
|
|
6769
6860
|
# resp.authorization_scopes #=> Array
|
|
6770
6861
|
# resp.authorization_scopes[0] #=> String
|
|
6771
6862
|
#
|
|
@@ -7030,6 +7121,8 @@ module Aws::APIGateway
|
|
|
7030
7121
|
# resp.resource_methods["String"].method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
7031
7122
|
# resp.resource_methods["String"].method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
7032
7123
|
# resp.resource_methods["String"].method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
7124
|
+
# resp.resource_methods["String"].method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
7125
|
+
# resp.resource_methods["String"].method_integration.integration_target #=> String
|
|
7033
7126
|
# resp.resource_methods["String"].authorization_scopes #=> Array
|
|
7034
7127
|
# resp.resource_methods["String"].authorization_scopes[0] #=> String
|
|
7035
7128
|
#
|
|
@@ -7069,6 +7162,10 @@ module Aws::APIGateway
|
|
|
7069
7162
|
# * {Types::RestApi#tags #tags} => Hash<String,String>
|
|
7070
7163
|
# * {Types::RestApi#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
|
|
7071
7164
|
# * {Types::RestApi#root_resource_id #root_resource_id} => String
|
|
7165
|
+
# * {Types::RestApi#security_policy #security_policy} => String
|
|
7166
|
+
# * {Types::RestApi#endpoint_access_mode #endpoint_access_mode} => String
|
|
7167
|
+
# * {Types::RestApi#api_status #api_status} => String
|
|
7168
|
+
# * {Types::RestApi#api_status_message #api_status_message} => String
|
|
7072
7169
|
#
|
|
7073
7170
|
# @example Request syntax with placeholder values
|
|
7074
7171
|
#
|
|
@@ -7107,6 +7204,10 @@ module Aws::APIGateway
|
|
|
7107
7204
|
# resp.tags["String"] #=> String
|
|
7108
7205
|
# resp.disable_execute_api_endpoint #=> Boolean
|
|
7109
7206
|
# resp.root_resource_id #=> String
|
|
7207
|
+
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2", "SecurityPolicy_TLS13_1_3_2025_09", "SecurityPolicy_TLS13_1_3_FIPS_2025_09", "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09", "SecurityPolicy_TLS13_1_2_PQ_2025_09", "SecurityPolicy_TLS13_1_2_2021_06", "SecurityPolicy_TLS13_2025_EDGE", "SecurityPolicy_TLS12_PFS_2025_EDGE", "SecurityPolicy_TLS12_2018_EDGE"
|
|
7208
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
7209
|
+
# resp.api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
7210
|
+
# resp.api_status_message #=> String
|
|
7110
7211
|
#
|
|
7111
7212
|
# @overload update_rest_api(params = {})
|
|
7112
7213
|
# @param [Hash] params ({})
|
|
@@ -7409,7 +7510,7 @@ module Aws::APIGateway
|
|
|
7409
7510
|
tracer: tracer
|
|
7410
7511
|
)
|
|
7411
7512
|
context[:gem_name] = 'aws-sdk-apigateway'
|
|
7412
|
-
context[:gem_version] = '1.
|
|
7513
|
+
context[:gem_version] = '1.128.0'
|
|
7413
7514
|
Seahorse::Client::Request.new(handlers, context)
|
|
7414
7515
|
end
|
|
7415
7516
|
|
|
@@ -23,6 +23,7 @@ module Aws::APIGateway
|
|
|
23
23
|
ApiKeys = Shapes::StructureShape.new(name: 'ApiKeys')
|
|
24
24
|
ApiKeysFormat = Shapes::StringShape.new(name: 'ApiKeysFormat')
|
|
25
25
|
ApiStage = Shapes::StructureShape.new(name: 'ApiStage')
|
|
26
|
+
ApiStatus = Shapes::StringShape.new(name: 'ApiStatus')
|
|
26
27
|
Authorizer = Shapes::StructureShape.new(name: 'Authorizer')
|
|
27
28
|
AuthorizerType = Shapes::StringShape.new(name: 'AuthorizerType')
|
|
28
29
|
Authorizers = Shapes::StructureShape.new(name: 'Authorizers')
|
|
@@ -94,6 +95,7 @@ module Aws::APIGateway
|
|
|
94
95
|
DomainNameStatus = Shapes::StringShape.new(name: 'DomainNameStatus')
|
|
95
96
|
DomainNames = Shapes::StructureShape.new(name: 'DomainNames')
|
|
96
97
|
Double = Shapes::FloatShape.new(name: 'Double')
|
|
98
|
+
EndpointAccessMode = Shapes::StringShape.new(name: 'EndpointAccessMode')
|
|
97
99
|
EndpointConfiguration = Shapes::StructureShape.new(name: 'EndpointConfiguration')
|
|
98
100
|
EndpointType = Shapes::StringShape.new(name: 'EndpointType')
|
|
99
101
|
ExportResponse = Shapes::StructureShape.new(name: 'ExportResponse')
|
|
@@ -229,6 +231,7 @@ module Aws::APIGateway
|
|
|
229
231
|
Resource = Shapes::StructureShape.new(name: 'Resource')
|
|
230
232
|
ResourceOwner = Shapes::StringShape.new(name: 'ResourceOwner')
|
|
231
233
|
Resources = Shapes::StructureShape.new(name: 'Resources')
|
|
234
|
+
ResponseTransferMode = Shapes::StringShape.new(name: 'ResponseTransferMode')
|
|
232
235
|
RestApi = Shapes::StructureShape.new(name: 'RestApi')
|
|
233
236
|
RestApis = Shapes::StructureShape.new(name: 'RestApis')
|
|
234
237
|
RoutingMode = Shapes::StringShape.new(name: 'RoutingMode')
|
|
@@ -441,6 +444,7 @@ module Aws::APIGateway
|
|
|
441
444
|
CreateDomainNameRequest.add_member(:endpoint_configuration, Shapes::ShapeRef.new(shape: EndpointConfiguration, location_name: "endpointConfiguration"))
|
|
442
445
|
CreateDomainNameRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
|
|
443
446
|
CreateDomainNameRequest.add_member(:security_policy, Shapes::ShapeRef.new(shape: SecurityPolicy, location_name: "securityPolicy"))
|
|
447
|
+
CreateDomainNameRequest.add_member(:endpoint_access_mode, Shapes::ShapeRef.new(shape: EndpointAccessMode, location_name: "endpointAccessMode"))
|
|
444
448
|
CreateDomainNameRequest.add_member(:mutual_tls_authentication, Shapes::ShapeRef.new(shape: MutualTlsAuthenticationInput, location_name: "mutualTlsAuthentication"))
|
|
445
449
|
CreateDomainNameRequest.add_member(:ownership_verification_certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "ownershipVerificationCertificateArn"))
|
|
446
450
|
CreateDomainNameRequest.add_member(:policy, Shapes::ShapeRef.new(shape: String, location_name: "policy"))
|
|
@@ -476,6 +480,8 @@ module Aws::APIGateway
|
|
|
476
480
|
CreateRestApiRequest.add_member(:policy, Shapes::ShapeRef.new(shape: String, location_name: "policy"))
|
|
477
481
|
CreateRestApiRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
|
|
478
482
|
CreateRestApiRequest.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "disableExecuteApiEndpoint"))
|
|
483
|
+
CreateRestApiRequest.add_member(:security_policy, Shapes::ShapeRef.new(shape: SecurityPolicy, location_name: "securityPolicy"))
|
|
484
|
+
CreateRestApiRequest.add_member(:endpoint_access_mode, Shapes::ShapeRef.new(shape: EndpointAccessMode, location_name: "endpointAccessMode"))
|
|
479
485
|
CreateRestApiRequest.struct_class = Types::CreateRestApiRequest
|
|
480
486
|
|
|
481
487
|
CreateStageRequest.add_member(:rest_api_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "restapi_id"))
|
|
@@ -659,6 +665,7 @@ module Aws::APIGateway
|
|
|
659
665
|
DomainName.add_member(:domain_name_status, Shapes::ShapeRef.new(shape: DomainNameStatus, location_name: "domainNameStatus"))
|
|
660
666
|
DomainName.add_member(:domain_name_status_message, Shapes::ShapeRef.new(shape: String, location_name: "domainNameStatusMessage"))
|
|
661
667
|
DomainName.add_member(:security_policy, Shapes::ShapeRef.new(shape: SecurityPolicy, location_name: "securityPolicy"))
|
|
668
|
+
DomainName.add_member(:endpoint_access_mode, Shapes::ShapeRef.new(shape: EndpointAccessMode, location_name: "endpointAccessMode"))
|
|
662
669
|
DomainName.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
|
|
663
670
|
DomainName.add_member(:mutual_tls_authentication, Shapes::ShapeRef.new(shape: MutualTlsAuthentication, location_name: "mutualTlsAuthentication"))
|
|
664
671
|
DomainName.add_member(:ownership_verification_certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "ownershipVerificationCertificateArn"))
|
|
@@ -978,6 +985,8 @@ module Aws::APIGateway
|
|
|
978
985
|
Integration.add_member(:cache_key_parameters, Shapes::ShapeRef.new(shape: ListOfString, location_name: "cacheKeyParameters"))
|
|
979
986
|
Integration.add_member(:integration_responses, Shapes::ShapeRef.new(shape: MapOfIntegrationResponse, location_name: "integrationResponses"))
|
|
980
987
|
Integration.add_member(:tls_config, Shapes::ShapeRef.new(shape: TlsConfig, location_name: "tlsConfig"))
|
|
988
|
+
Integration.add_member(:response_transfer_mode, Shapes::ShapeRef.new(shape: ResponseTransferMode, location_name: "responseTransferMode"))
|
|
989
|
+
Integration.add_member(:integration_target, Shapes::ShapeRef.new(shape: String, location_name: "integrationTarget"))
|
|
981
990
|
Integration.struct_class = Types::Integration
|
|
982
991
|
|
|
983
992
|
IntegrationResponse.add_member(:status_code, Shapes::ShapeRef.new(shape: StatusCode, location_name: "statusCode"))
|
|
@@ -1167,6 +1176,8 @@ module Aws::APIGateway
|
|
|
1167
1176
|
PutIntegrationRequest.add_member(:content_handling, Shapes::ShapeRef.new(shape: ContentHandlingStrategy, location_name: "contentHandling"))
|
|
1168
1177
|
PutIntegrationRequest.add_member(:timeout_in_millis, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "timeoutInMillis"))
|
|
1169
1178
|
PutIntegrationRequest.add_member(:tls_config, Shapes::ShapeRef.new(shape: TlsConfig, location_name: "tlsConfig"))
|
|
1179
|
+
PutIntegrationRequest.add_member(:response_transfer_mode, Shapes::ShapeRef.new(shape: ResponseTransferMode, location_name: "responseTransferMode"))
|
|
1180
|
+
PutIntegrationRequest.add_member(:integration_target, Shapes::ShapeRef.new(shape: String, location_name: "integrationTarget"))
|
|
1170
1181
|
PutIntegrationRequest.struct_class = Types::PutIntegrationRequest
|
|
1171
1182
|
|
|
1172
1183
|
PutIntegrationResponseRequest.add_member(:rest_api_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "restapi_id"))
|
|
@@ -1253,6 +1264,10 @@ module Aws::APIGateway
|
|
|
1253
1264
|
RestApi.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
|
|
1254
1265
|
RestApi.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "disableExecuteApiEndpoint"))
|
|
1255
1266
|
RestApi.add_member(:root_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "rootResourceId"))
|
|
1267
|
+
RestApi.add_member(:security_policy, Shapes::ShapeRef.new(shape: SecurityPolicy, location_name: "securityPolicy"))
|
|
1268
|
+
RestApi.add_member(:endpoint_access_mode, Shapes::ShapeRef.new(shape: EndpointAccessMode, location_name: "endpointAccessMode"))
|
|
1269
|
+
RestApi.add_member(:api_status, Shapes::ShapeRef.new(shape: ApiStatus, location_name: "apiStatus"))
|
|
1270
|
+
RestApi.add_member(:api_status_message, Shapes::ShapeRef.new(shape: String, location_name: "apiStatusMessage"))
|
|
1256
1271
|
RestApi.struct_class = Types::RestApi
|
|
1257
1272
|
|
|
1258
1273
|
RestApis.add_member(:position, Shapes::ShapeRef.new(shape: String, location_name: "position"))
|
|
@@ -873,7 +873,13 @@ module Aws::APIGateway
|
|
|
873
873
|
#
|
|
874
874
|
# @!attribute [rw] security_policy
|
|
875
875
|
# The Transport Layer Security (TLS) version + cipher suite for this
|
|
876
|
-
# DomainName.
|
|
876
|
+
# DomainName.
|
|
877
|
+
# @return [String]
|
|
878
|
+
#
|
|
879
|
+
# @!attribute [rw] endpoint_access_mode
|
|
880
|
+
# The endpoint access mode of the DomainName. Only available for
|
|
881
|
+
# DomainNames that use security policies that start with
|
|
882
|
+
# `SecurityPolicy_`.
|
|
877
883
|
# @return [String]
|
|
878
884
|
#
|
|
879
885
|
# @!attribute [rw] mutual_tls_authentication
|
|
@@ -914,6 +920,7 @@ module Aws::APIGateway
|
|
|
914
920
|
:endpoint_configuration,
|
|
915
921
|
:tags,
|
|
916
922
|
:security_policy,
|
|
923
|
+
:endpoint_access_mode,
|
|
917
924
|
:mutual_tls_authentication,
|
|
918
925
|
:ownership_verification_certificate_arn,
|
|
919
926
|
:policy,
|
|
@@ -1071,6 +1078,16 @@ module Aws::APIGateway
|
|
|
1071
1078
|
# your API, disable the default endpoint
|
|
1072
1079
|
# @return [Boolean]
|
|
1073
1080
|
#
|
|
1081
|
+
# @!attribute [rw] security_policy
|
|
1082
|
+
# The Transport Layer Security (TLS) version + cipher suite for this
|
|
1083
|
+
# RestApi.
|
|
1084
|
+
# @return [String]
|
|
1085
|
+
#
|
|
1086
|
+
# @!attribute [rw] endpoint_access_mode
|
|
1087
|
+
# The endpoint access mode of the RestApi. Only available for RestApis
|
|
1088
|
+
# that use security policies that start with `SecurityPolicy_`.
|
|
1089
|
+
# @return [String]
|
|
1090
|
+
#
|
|
1074
1091
|
class CreateRestApiRequest < Struct.new(
|
|
1075
1092
|
:name,
|
|
1076
1093
|
:description,
|
|
@@ -1082,7 +1099,9 @@ module Aws::APIGateway
|
|
|
1082
1099
|
:endpoint_configuration,
|
|
1083
1100
|
:policy,
|
|
1084
1101
|
:tags,
|
|
1085
|
-
:disable_execute_api_endpoint
|
|
1102
|
+
:disable_execute_api_endpoint,
|
|
1103
|
+
:security_policy,
|
|
1104
|
+
:endpoint_access_mode)
|
|
1086
1105
|
SENSITIVE = []
|
|
1087
1106
|
include Aws::Structure
|
|
1088
1107
|
end
|
|
@@ -1985,7 +2004,11 @@ module Aws::APIGateway
|
|
|
1985
2004
|
#
|
|
1986
2005
|
# @!attribute [rw] security_policy
|
|
1987
2006
|
# The Transport Layer Security (TLS) version + cipher suite for this
|
|
1988
|
-
# DomainName.
|
|
2007
|
+
# DomainName.
|
|
2008
|
+
# @return [String]
|
|
2009
|
+
#
|
|
2010
|
+
# @!attribute [rw] endpoint_access_mode
|
|
2011
|
+
# The endpoint access mode of the DomainName.
|
|
1989
2012
|
# @return [String]
|
|
1990
2013
|
#
|
|
1991
2014
|
# @!attribute [rw] tags
|
|
@@ -2044,6 +2067,7 @@ module Aws::APIGateway
|
|
|
2044
2067
|
:domain_name_status,
|
|
2045
2068
|
:domain_name_status_message,
|
|
2046
2069
|
:security_policy,
|
|
2070
|
+
:endpoint_access_mode,
|
|
2047
2071
|
:tags,
|
|
2048
2072
|
:mutual_tls_authentication,
|
|
2049
2073
|
:ownership_verification_certificate_arn,
|
|
@@ -3626,6 +3650,14 @@ module Aws::APIGateway
|
|
|
3626
3650
|
# Specifies the TLS configuration for an integration.
|
|
3627
3651
|
# @return [Types::TlsConfig]
|
|
3628
3652
|
#
|
|
3653
|
+
# @!attribute [rw] response_transfer_mode
|
|
3654
|
+
# The response transfer mode of the integration.
|
|
3655
|
+
# @return [String]
|
|
3656
|
+
#
|
|
3657
|
+
# @!attribute [rw] integration_target
|
|
3658
|
+
# The ALB or NLB listener to send the request to.
|
|
3659
|
+
# @return [String]
|
|
3660
|
+
#
|
|
3629
3661
|
class Integration < Struct.new(
|
|
3630
3662
|
:type,
|
|
3631
3663
|
:http_method,
|
|
@@ -3641,7 +3673,9 @@ module Aws::APIGateway
|
|
|
3641
3673
|
:cache_namespace,
|
|
3642
3674
|
:cache_key_parameters,
|
|
3643
3675
|
:integration_responses,
|
|
3644
|
-
:tls_config
|
|
3676
|
+
:tls_config,
|
|
3677
|
+
:response_transfer_mode,
|
|
3678
|
+
:integration_target)
|
|
3645
3679
|
SENSITIVE = []
|
|
3646
3680
|
include Aws::Structure
|
|
3647
3681
|
end
|
|
@@ -4306,6 +4340,14 @@ module Aws::APIGateway
|
|
|
4306
4340
|
# Specifies the TLS configuration for an integration.
|
|
4307
4341
|
# @return [Types::TlsConfig]
|
|
4308
4342
|
#
|
|
4343
|
+
# @!attribute [rw] response_transfer_mode
|
|
4344
|
+
# The response transfer mode of the integration.
|
|
4345
|
+
# @return [String]
|
|
4346
|
+
#
|
|
4347
|
+
# @!attribute [rw] integration_target
|
|
4348
|
+
# The ALB or NLB listener to send the request to.
|
|
4349
|
+
# @return [String]
|
|
4350
|
+
#
|
|
4309
4351
|
class PutIntegrationRequest < Struct.new(
|
|
4310
4352
|
:rest_api_id,
|
|
4311
4353
|
:resource_id,
|
|
@@ -4323,7 +4365,9 @@ module Aws::APIGateway
|
|
|
4323
4365
|
:cache_key_parameters,
|
|
4324
4366
|
:content_handling,
|
|
4325
4367
|
:timeout_in_millis,
|
|
4326
|
-
:tls_config
|
|
4368
|
+
:tls_config,
|
|
4369
|
+
:response_transfer_mode,
|
|
4370
|
+
:integration_target)
|
|
4327
4371
|
SENSITIVE = []
|
|
4328
4372
|
include Aws::Structure
|
|
4329
4373
|
end
|
|
@@ -4789,6 +4833,24 @@ module Aws::APIGateway
|
|
|
4789
4833
|
# The API's root resource ID.
|
|
4790
4834
|
# @return [String]
|
|
4791
4835
|
#
|
|
4836
|
+
# @!attribute [rw] security_policy
|
|
4837
|
+
# The Transport Layer Security (TLS) version + cipher suite for this
|
|
4838
|
+
# RestApi.
|
|
4839
|
+
# @return [String]
|
|
4840
|
+
#
|
|
4841
|
+
# @!attribute [rw] endpoint_access_mode
|
|
4842
|
+
# The endpoint access mode of the RestApi.
|
|
4843
|
+
# @return [String]
|
|
4844
|
+
#
|
|
4845
|
+
# @!attribute [rw] api_status
|
|
4846
|
+
# The ApiStatus of the RestApi.
|
|
4847
|
+
# @return [String]
|
|
4848
|
+
#
|
|
4849
|
+
# @!attribute [rw] api_status_message
|
|
4850
|
+
# The status message of the RestApi. When the status message is
|
|
4851
|
+
# `UPDATING` you can still invoke it.
|
|
4852
|
+
# @return [String]
|
|
4853
|
+
#
|
|
4792
4854
|
class RestApi < Struct.new(
|
|
4793
4855
|
:id,
|
|
4794
4856
|
:name,
|
|
@@ -4803,7 +4865,11 @@ module Aws::APIGateway
|
|
|
4803
4865
|
:policy,
|
|
4804
4866
|
:tags,
|
|
4805
4867
|
:disable_execute_api_endpoint,
|
|
4806
|
-
:root_resource_id
|
|
4868
|
+
:root_resource_id,
|
|
4869
|
+
:security_policy,
|
|
4870
|
+
:endpoint_access_mode,
|
|
4871
|
+
:api_status,
|
|
4872
|
+
:api_status_message)
|
|
4807
4873
|
SENSITIVE = []
|
|
4808
4874
|
include Aws::Structure
|
|
4809
4875
|
end
|
data/lib/aws-sdk-apigateway.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -228,9 +228,10 @@ module Aws
|
|
|
228
228
|
def distribution_domain_name: () -> ::String
|
|
229
229
|
def distribution_hosted_zone_id: () -> ::String
|
|
230
230
|
def endpoint_configuration: () -> Types::EndpointConfiguration
|
|
231
|
-
def domain_name_status: () -> ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION")
|
|
231
|
+
def domain_name_status: () -> ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION" | "FAILED")
|
|
232
232
|
def domain_name_status_message: () -> ::String
|
|
233
|
-
def security_policy: () -> ("TLS_1_0" | "TLS_1_2")
|
|
233
|
+
def security_policy: () -> ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
234
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
234
235
|
def tags: () -> ::Hash[::String, ::String]
|
|
235
236
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
|
236
237
|
def ownership_verification_certificate_arn: () -> ::String
|
|
@@ -254,7 +255,8 @@ module Aws
|
|
|
254
255
|
vpc_endpoint_ids: Array[::String]?
|
|
255
256
|
},
|
|
256
257
|
?tags: Hash[::String, ::String],
|
|
257
|
-
?security_policy: ("TLS_1_0" | "TLS_1_2"),
|
|
258
|
+
?security_policy: ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE"),
|
|
259
|
+
?endpoint_access_mode: ("BASIC" | "STRICT"),
|
|
258
260
|
?mutual_tls_authentication: {
|
|
259
261
|
truststore_uri: ::String?,
|
|
260
262
|
truststore_version: ::String?
|
|
@@ -348,6 +350,10 @@ module Aws
|
|
|
348
350
|
def tags: () -> ::Hash[::String, ::String]
|
|
349
351
|
def disable_execute_api_endpoint: () -> bool
|
|
350
352
|
def root_resource_id: () -> ::String
|
|
353
|
+
def security_policy: () -> ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
354
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
355
|
+
def api_status: () -> ("UPDATING" | "AVAILABLE" | "PENDING" | "FAILED")
|
|
356
|
+
def api_status_message: () -> ::String
|
|
351
357
|
end
|
|
352
358
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_rest_api-instance_method
|
|
353
359
|
def create_rest_api: (
|
|
@@ -365,7 +371,9 @@ module Aws
|
|
|
365
371
|
},
|
|
366
372
|
?policy: ::String,
|
|
367
373
|
?tags: Hash[::String, ::String],
|
|
368
|
-
?disable_execute_api_endpoint: bool
|
|
374
|
+
?disable_execute_api_endpoint: bool,
|
|
375
|
+
?security_policy: ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE"),
|
|
376
|
+
?endpoint_access_mode: ("BASIC" | "STRICT")
|
|
369
377
|
) -> _CreateRestApiResponseSuccess
|
|
370
378
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRestApiResponseSuccess
|
|
371
379
|
|
|
@@ -902,9 +910,10 @@ module Aws
|
|
|
902
910
|
def distribution_domain_name: () -> ::String
|
|
903
911
|
def distribution_hosted_zone_id: () -> ::String
|
|
904
912
|
def endpoint_configuration: () -> Types::EndpointConfiguration
|
|
905
|
-
def domain_name_status: () -> ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION")
|
|
913
|
+
def domain_name_status: () -> ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION" | "FAILED")
|
|
906
914
|
def domain_name_status_message: () -> ::String
|
|
907
|
-
def security_policy: () -> ("TLS_1_0" | "TLS_1_2")
|
|
915
|
+
def security_policy: () -> ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
916
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
908
917
|
def tags: () -> ::Hash[::String, ::String]
|
|
909
918
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
|
910
919
|
def ownership_verification_certificate_arn: () -> ::String
|
|
@@ -1006,6 +1015,8 @@ module Aws
|
|
|
1006
1015
|
def cache_key_parameters: () -> ::Array[::String]
|
|
1007
1016
|
def integration_responses: () -> ::Hash[::String, Types::IntegrationResponse]
|
|
1008
1017
|
def tls_config: () -> Types::TlsConfig
|
|
1018
|
+
def response_transfer_mode: () -> ("BUFFERED" | "STREAM")
|
|
1019
|
+
def integration_target: () -> ::String
|
|
1009
1020
|
end
|
|
1010
1021
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_integration-instance_method
|
|
1011
1022
|
def get_integration: (
|
|
@@ -1182,6 +1193,10 @@ module Aws
|
|
|
1182
1193
|
def tags: () -> ::Hash[::String, ::String]
|
|
1183
1194
|
def disable_execute_api_endpoint: () -> bool
|
|
1184
1195
|
def root_resource_id: () -> ::String
|
|
1196
|
+
def security_policy: () -> ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
1197
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
1198
|
+
def api_status: () -> ("UPDATING" | "AVAILABLE" | "PENDING" | "FAILED")
|
|
1199
|
+
def api_status_message: () -> ::String
|
|
1185
1200
|
end
|
|
1186
1201
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_rest_api-instance_method
|
|
1187
1202
|
def get_rest_api: (
|
|
@@ -1439,6 +1454,10 @@ module Aws
|
|
|
1439
1454
|
def tags: () -> ::Hash[::String, ::String]
|
|
1440
1455
|
def disable_execute_api_endpoint: () -> bool
|
|
1441
1456
|
def root_resource_id: () -> ::String
|
|
1457
|
+
def security_policy: () -> ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
1458
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
1459
|
+
def api_status: () -> ("UPDATING" | "AVAILABLE" | "PENDING" | "FAILED")
|
|
1460
|
+
def api_status_message: () -> ::String
|
|
1442
1461
|
end
|
|
1443
1462
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#import_rest_api-instance_method
|
|
1444
1463
|
def import_rest_api: (
|
|
@@ -1483,6 +1502,8 @@ module Aws
|
|
|
1483
1502
|
def cache_key_parameters: () -> ::Array[::String]
|
|
1484
1503
|
def integration_responses: () -> ::Hash[::String, Types::IntegrationResponse]
|
|
1485
1504
|
def tls_config: () -> Types::TlsConfig
|
|
1505
|
+
def response_transfer_mode: () -> ("BUFFERED" | "STREAM")
|
|
1506
|
+
def integration_target: () -> ::String
|
|
1486
1507
|
end
|
|
1487
1508
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#put_integration-instance_method
|
|
1488
1509
|
def put_integration: (
|
|
@@ -1504,7 +1525,9 @@ module Aws
|
|
|
1504
1525
|
?timeout_in_millis: ::Integer,
|
|
1505
1526
|
?tls_config: {
|
|
1506
1527
|
insecure_skip_verification: bool?
|
|
1507
|
-
}
|
|
1528
|
+
},
|
|
1529
|
+
?response_transfer_mode: ("BUFFERED" | "STREAM"),
|
|
1530
|
+
?integration_target: ::String
|
|
1508
1531
|
) -> _PutIntegrationResponseSuccess
|
|
1509
1532
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutIntegrationResponseSuccess
|
|
1510
1533
|
|
|
@@ -1592,6 +1615,10 @@ module Aws
|
|
|
1592
1615
|
def tags: () -> ::Hash[::String, ::String]
|
|
1593
1616
|
def disable_execute_api_endpoint: () -> bool
|
|
1594
1617
|
def root_resource_id: () -> ::String
|
|
1618
|
+
def security_policy: () -> ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
1619
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
1620
|
+
def api_status: () -> ("UPDATING" | "AVAILABLE" | "PENDING" | "FAILED")
|
|
1621
|
+
def api_status_message: () -> ::String
|
|
1595
1622
|
end
|
|
1596
1623
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#put_rest_api-instance_method
|
|
1597
1624
|
def put_rest_api: (
|
|
@@ -1869,9 +1896,10 @@ module Aws
|
|
|
1869
1896
|
def distribution_domain_name: () -> ::String
|
|
1870
1897
|
def distribution_hosted_zone_id: () -> ::String
|
|
1871
1898
|
def endpoint_configuration: () -> Types::EndpointConfiguration
|
|
1872
|
-
def domain_name_status: () -> ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION")
|
|
1899
|
+
def domain_name_status: () -> ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION" | "FAILED")
|
|
1873
1900
|
def domain_name_status_message: () -> ::String
|
|
1874
|
-
def security_policy: () -> ("TLS_1_0" | "TLS_1_2")
|
|
1901
|
+
def security_policy: () -> ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
1902
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
1875
1903
|
def tags: () -> ::Hash[::String, ::String]
|
|
1876
1904
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
|
1877
1905
|
def ownership_verification_certificate_arn: () -> ::String
|
|
@@ -1934,6 +1962,8 @@ module Aws
|
|
|
1934
1962
|
def cache_key_parameters: () -> ::Array[::String]
|
|
1935
1963
|
def integration_responses: () -> ::Hash[::String, Types::IntegrationResponse]
|
|
1936
1964
|
def tls_config: () -> Types::TlsConfig
|
|
1965
|
+
def response_transfer_mode: () -> ("BUFFERED" | "STREAM")
|
|
1966
|
+
def integration_target: () -> ::String
|
|
1937
1967
|
end
|
|
1938
1968
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_integration-instance_method
|
|
1939
1969
|
def update_integration: (
|
|
@@ -2113,6 +2143,10 @@ module Aws
|
|
|
2113
2143
|
def tags: () -> ::Hash[::String, ::String]
|
|
2114
2144
|
def disable_execute_api_endpoint: () -> bool
|
|
2115
2145
|
def root_resource_id: () -> ::String
|
|
2146
|
+
def security_policy: () -> ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
2147
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
2148
|
+
def api_status: () -> ("UPDATING" | "AVAILABLE" | "PENDING" | "FAILED")
|
|
2149
|
+
def api_status_message: () -> ::String
|
|
2116
2150
|
end
|
|
2117
2151
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_rest_api-instance_method
|
|
2118
2152
|
def update_rest_api: (
|
data/sig/types.rbs
CHANGED
|
@@ -205,7 +205,8 @@ module Aws::APIGateway
|
|
|
205
205
|
attr_accessor regional_certificate_arn: ::String
|
|
206
206
|
attr_accessor endpoint_configuration: Types::EndpointConfiguration
|
|
207
207
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
208
|
-
attr_accessor security_policy: ("TLS_1_0" | "TLS_1_2")
|
|
208
|
+
attr_accessor security_policy: ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
209
|
+
attr_accessor endpoint_access_mode: ("BASIC" | "STRICT")
|
|
209
210
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
|
210
211
|
attr_accessor ownership_verification_certificate_arn: ::String
|
|
211
212
|
attr_accessor policy: ::String
|
|
@@ -249,6 +250,8 @@ module Aws::APIGateway
|
|
|
249
250
|
attr_accessor policy: ::String
|
|
250
251
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
251
252
|
attr_accessor disable_execute_api_endpoint: bool
|
|
253
|
+
attr_accessor security_policy: ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
254
|
+
attr_accessor endpoint_access_mode: ("BASIC" | "STRICT")
|
|
252
255
|
SENSITIVE: []
|
|
253
256
|
end
|
|
254
257
|
|
|
@@ -501,9 +504,10 @@ module Aws::APIGateway
|
|
|
501
504
|
attr_accessor distribution_domain_name: ::String
|
|
502
505
|
attr_accessor distribution_hosted_zone_id: ::String
|
|
503
506
|
attr_accessor endpoint_configuration: Types::EndpointConfiguration
|
|
504
|
-
attr_accessor domain_name_status: ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION")
|
|
507
|
+
attr_accessor domain_name_status: ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION" | "FAILED")
|
|
505
508
|
attr_accessor domain_name_status_message: ::String
|
|
506
|
-
attr_accessor security_policy: ("TLS_1_0" | "TLS_1_2")
|
|
509
|
+
attr_accessor security_policy: ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
510
|
+
attr_accessor endpoint_access_mode: ("BASIC" | "STRICT")
|
|
507
511
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
508
512
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
|
509
513
|
attr_accessor ownership_verification_certificate_arn: ::String
|
|
@@ -936,6 +940,8 @@ module Aws::APIGateway
|
|
|
936
940
|
attr_accessor cache_key_parameters: ::Array[::String]
|
|
937
941
|
attr_accessor integration_responses: ::Hash[::String, Types::IntegrationResponse]
|
|
938
942
|
attr_accessor tls_config: Types::TlsConfig
|
|
943
|
+
attr_accessor response_transfer_mode: ("BUFFERED" | "STREAM")
|
|
944
|
+
attr_accessor integration_target: ::String
|
|
939
945
|
SENSITIVE: []
|
|
940
946
|
end
|
|
941
947
|
|
|
@@ -1064,6 +1070,8 @@ module Aws::APIGateway
|
|
|
1064
1070
|
attr_accessor content_handling: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
|
1065
1071
|
attr_accessor timeout_in_millis: ::Integer
|
|
1066
1072
|
attr_accessor tls_config: Types::TlsConfig
|
|
1073
|
+
attr_accessor response_transfer_mode: ("BUFFERED" | "STREAM")
|
|
1074
|
+
attr_accessor integration_target: ::String
|
|
1067
1075
|
SENSITIVE: []
|
|
1068
1076
|
end
|
|
1069
1077
|
|
|
@@ -1170,6 +1178,10 @@ module Aws::APIGateway
|
|
|
1170
1178
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1171
1179
|
attr_accessor disable_execute_api_endpoint: bool
|
|
1172
1180
|
attr_accessor root_resource_id: ::String
|
|
1181
|
+
attr_accessor security_policy: ("TLS_1_0" | "TLS_1_2" | "SecurityPolicy_TLS13_1_3_2025_09" | "SecurityPolicy_TLS13_1_3_FIPS_2025_09" | "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_PQ_2025_09" | "SecurityPolicy_TLS13_1_2_2021_06" | "SecurityPolicy_TLS13_2025_EDGE" | "SecurityPolicy_TLS12_PFS_2025_EDGE" | "SecurityPolicy_TLS12_2018_EDGE")
|
|
1182
|
+
attr_accessor endpoint_access_mode: ("BASIC" | "STRICT")
|
|
1183
|
+
attr_accessor api_status: ("UPDATING" | "AVAILABLE" | "PENDING" | "FAILED")
|
|
1184
|
+
attr_accessor api_status_message: ::String
|
|
1173
1185
|
SENSITIVE: []
|
|
1174
1186
|
end
|
|
1175
1187
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-apigateway
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.128.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.239.1
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.239.1
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|