aws-sdk-apigateway 1.126.0 → 1.127.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigateway/client.rb +95 -11
- data/lib/aws-sdk-apigateway/client_api.rb +13 -0
- data/lib/aws-sdk-apigateway/types.rb +62 -6
- data/lib/aws-sdk-apigateway.rb +1 -1
- data/sig/client.rbs +39 -9
- data/sig/types.rbs +13 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e25cb452167299ed699fd59ceacdf120ba2f507757d49ee096864163d408389e
|
|
4
|
+
data.tar.gz: 27ad6c460747ae3a735ea2e284088976e3e20da6b2205d7e2bbcad041dbd90a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 352be5f3d6d81d49c8909e627ceaca72791d2ce77714948042d5f5e87901a5ee15736c73dd70daa5e2c420c5a23e41022e45494d72d8b90f7bbeffa4bb463391
|
|
7
|
+
data.tar.gz: 74b5c0ace402d5a54496be639870f46389f3a636965222884b4693bc8402e97eff2da5f9c2bccfcc3d5fb16e2303a948bf494526182b8e7269a37dbb0ccad3b1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.127.0 (2025-11-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - API Gateway now supports response streaming and new security policies for REST APIs and custom domain names.
|
|
8
|
+
|
|
4
9
|
1.126.0 (2025-10-30)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.127.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,7 @@ 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"
|
|
1325
1334
|
# resp.resource_methods["String"].authorization_scopes #=> Array
|
|
1326
1335
|
# resp.resource_methods["String"].authorization_scopes[0] #=> String
|
|
1327
1336
|
#
|
|
@@ -1384,6 +1393,14 @@ module Aws::APIGateway
|
|
|
1384
1393
|
# endpoint. To require that clients use a custom domain name to invoke
|
|
1385
1394
|
# your API, disable the default endpoint
|
|
1386
1395
|
#
|
|
1396
|
+
# @option params [String] :security_policy
|
|
1397
|
+
# The Transport Layer Security (TLS) version + cipher suite for this
|
|
1398
|
+
# RestApi.
|
|
1399
|
+
#
|
|
1400
|
+
# @option params [String] :endpoint_access_mode
|
|
1401
|
+
# The endpoint access mode of the RestApi. Only available for RestApis
|
|
1402
|
+
# that use security policies that start with `SecurityPolicy_`.
|
|
1403
|
+
#
|
|
1387
1404
|
# @return [Types::RestApi] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1388
1405
|
#
|
|
1389
1406
|
# * {Types::RestApi#id #id} => String
|
|
@@ -1400,6 +1417,10 @@ module Aws::APIGateway
|
|
|
1400
1417
|
# * {Types::RestApi#tags #tags} => Hash<String,String>
|
|
1401
1418
|
# * {Types::RestApi#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
|
|
1402
1419
|
# * {Types::RestApi#root_resource_id #root_resource_id} => String
|
|
1420
|
+
# * {Types::RestApi#security_policy #security_policy} => String
|
|
1421
|
+
# * {Types::RestApi#endpoint_access_mode #endpoint_access_mode} => String
|
|
1422
|
+
# * {Types::RestApi#api_status #api_status} => String
|
|
1423
|
+
# * {Types::RestApi#api_status_message #api_status_message} => String
|
|
1403
1424
|
#
|
|
1404
1425
|
# @example Request syntax with placeholder values
|
|
1405
1426
|
#
|
|
@@ -1421,6 +1442,8 @@ module Aws::APIGateway
|
|
|
1421
1442
|
# "String" => "String",
|
|
1422
1443
|
# },
|
|
1423
1444
|
# disable_execute_api_endpoint: false,
|
|
1445
|
+
# 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
|
|
1446
|
+
# endpoint_access_mode: "BASIC", # accepts BASIC, STRICT
|
|
1424
1447
|
# })
|
|
1425
1448
|
#
|
|
1426
1449
|
# @example Response structure
|
|
@@ -1446,6 +1469,10 @@ module Aws::APIGateway
|
|
|
1446
1469
|
# resp.tags["String"] #=> String
|
|
1447
1470
|
# resp.disable_execute_api_endpoint #=> Boolean
|
|
1448
1471
|
# resp.root_resource_id #=> String
|
|
1472
|
+
# 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"
|
|
1473
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
1474
|
+
# resp.api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
1475
|
+
# resp.api_status_message #=> String
|
|
1449
1476
|
#
|
|
1450
1477
|
# @overload create_rest_api(params = {})
|
|
1451
1478
|
# @param [Hash] params ({})
|
|
@@ -3136,6 +3163,7 @@ module Aws::APIGateway
|
|
|
3136
3163
|
# * {Types::DomainName#domain_name_status #domain_name_status} => String
|
|
3137
3164
|
# * {Types::DomainName#domain_name_status_message #domain_name_status_message} => String
|
|
3138
3165
|
# * {Types::DomainName#security_policy #security_policy} => String
|
|
3166
|
+
# * {Types::DomainName#endpoint_access_mode #endpoint_access_mode} => String
|
|
3139
3167
|
# * {Types::DomainName#tags #tags} => Hash<String,String>
|
|
3140
3168
|
# * {Types::DomainName#mutual_tls_authentication #mutual_tls_authentication} => Types::MutualTlsAuthentication
|
|
3141
3169
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
|
@@ -3169,9 +3197,10 @@ module Aws::APIGateway
|
|
|
3169
3197
|
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
|
3170
3198
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
|
3171
3199
|
# 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"
|
|
3200
|
+
# resp.domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION", "FAILED"
|
|
3173
3201
|
# resp.domain_name_status_message #=> String
|
|
3174
|
-
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
|
|
3202
|
+
# 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"
|
|
3203
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
3175
3204
|
# resp.tags #=> Hash
|
|
3176
3205
|
# resp.tags["String"] #=> String
|
|
3177
3206
|
# resp.mutual_tls_authentication.truststore_uri #=> String
|
|
@@ -3284,9 +3313,10 @@ module Aws::APIGateway
|
|
|
3284
3313
|
# resp.items[0].endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
|
3285
3314
|
# resp.items[0].endpoint_configuration.vpc_endpoint_ids #=> Array
|
|
3286
3315
|
# 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"
|
|
3316
|
+
# resp.items[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION", "FAILED"
|
|
3288
3317
|
# resp.items[0].domain_name_status_message #=> String
|
|
3289
|
-
# resp.items[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
|
|
3318
|
+
# 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"
|
|
3319
|
+
# resp.items[0].endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
3290
3320
|
# resp.items[0].tags #=> Hash
|
|
3291
3321
|
# resp.items[0].tags["String"] #=> String
|
|
3292
3322
|
# resp.items[0].mutual_tls_authentication.truststore_uri #=> String
|
|
@@ -3483,6 +3513,7 @@ module Aws::APIGateway
|
|
|
3483
3513
|
# * {Types::Integration#cache_key_parameters #cache_key_parameters} => Array<String>
|
|
3484
3514
|
# * {Types::Integration#integration_responses #integration_responses} => Hash<String,Types::IntegrationResponse>
|
|
3485
3515
|
# * {Types::Integration#tls_config #tls_config} => Types::TlsConfig
|
|
3516
|
+
# * {Types::Integration#response_transfer_mode #response_transfer_mode} => String
|
|
3486
3517
|
#
|
|
3487
3518
|
# @example Request syntax with placeholder values
|
|
3488
3519
|
#
|
|
@@ -3519,6 +3550,7 @@ module Aws::APIGateway
|
|
|
3519
3550
|
# resp.integration_responses["String"].response_templates["String"] #=> String
|
|
3520
3551
|
# resp.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
3521
3552
|
# resp.tls_config.insecure_skip_verification #=> Boolean
|
|
3553
|
+
# resp.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
3522
3554
|
#
|
|
3523
3555
|
# @overload get_integration(params = {})
|
|
3524
3556
|
# @param [Hash] params ({})
|
|
@@ -3651,6 +3683,7 @@ module Aws::APIGateway
|
|
|
3651
3683
|
# resp.method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
3652
3684
|
# resp.method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
3653
3685
|
# resp.method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
3686
|
+
# resp.method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
3654
3687
|
# resp.authorization_scopes #=> Array
|
|
3655
3688
|
# resp.authorization_scopes[0] #=> String
|
|
3656
3689
|
#
|
|
@@ -3982,6 +4015,7 @@ module Aws::APIGateway
|
|
|
3982
4015
|
# resp.resource_methods["String"].method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
3983
4016
|
# resp.resource_methods["String"].method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
3984
4017
|
# resp.resource_methods["String"].method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
4018
|
+
# resp.resource_methods["String"].method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
3985
4019
|
# resp.resource_methods["String"].authorization_scopes #=> Array
|
|
3986
4020
|
# resp.resource_methods["String"].authorization_scopes[0] #=> String
|
|
3987
4021
|
#
|
|
@@ -4079,6 +4113,7 @@ module Aws::APIGateway
|
|
|
4079
4113
|
# resp.items[0].resource_methods["String"].method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
4080
4114
|
# resp.items[0].resource_methods["String"].method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
4081
4115
|
# resp.items[0].resource_methods["String"].method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
4116
|
+
# resp.items[0].resource_methods["String"].method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
4082
4117
|
# resp.items[0].resource_methods["String"].authorization_scopes #=> Array
|
|
4083
4118
|
# resp.items[0].resource_methods["String"].authorization_scopes[0] #=> String
|
|
4084
4119
|
#
|
|
@@ -4110,6 +4145,10 @@ module Aws::APIGateway
|
|
|
4110
4145
|
# * {Types::RestApi#tags #tags} => Hash<String,String>
|
|
4111
4146
|
# * {Types::RestApi#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
|
|
4112
4147
|
# * {Types::RestApi#root_resource_id #root_resource_id} => String
|
|
4148
|
+
# * {Types::RestApi#security_policy #security_policy} => String
|
|
4149
|
+
# * {Types::RestApi#endpoint_access_mode #endpoint_access_mode} => String
|
|
4150
|
+
# * {Types::RestApi#api_status #api_status} => String
|
|
4151
|
+
# * {Types::RestApi#api_status_message #api_status_message} => String
|
|
4113
4152
|
#
|
|
4114
4153
|
# @example Request syntax with placeholder values
|
|
4115
4154
|
#
|
|
@@ -4140,6 +4179,10 @@ module Aws::APIGateway
|
|
|
4140
4179
|
# resp.tags["String"] #=> String
|
|
4141
4180
|
# resp.disable_execute_api_endpoint #=> Boolean
|
|
4142
4181
|
# resp.root_resource_id #=> String
|
|
4182
|
+
# 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"
|
|
4183
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
4184
|
+
# resp.api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
4185
|
+
# resp.api_status_message #=> String
|
|
4143
4186
|
#
|
|
4144
4187
|
# @overload get_rest_api(params = {})
|
|
4145
4188
|
# @param [Hash] params ({})
|
|
@@ -4196,6 +4239,10 @@ module Aws::APIGateway
|
|
|
4196
4239
|
# resp.items[0].tags["String"] #=> String
|
|
4197
4240
|
# resp.items[0].disable_execute_api_endpoint #=> Boolean
|
|
4198
4241
|
# resp.items[0].root_resource_id #=> String
|
|
4242
|
+
# 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"
|
|
4243
|
+
# resp.items[0].endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
4244
|
+
# resp.items[0].api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
4245
|
+
# resp.items[0].api_status_message #=> String
|
|
4199
4246
|
#
|
|
4200
4247
|
# @overload get_rest_apis(params = {})
|
|
4201
4248
|
# @param [Hash] params ({})
|
|
@@ -4990,6 +5037,10 @@ module Aws::APIGateway
|
|
|
4990
5037
|
# * {Types::RestApi#tags #tags} => Hash<String,String>
|
|
4991
5038
|
# * {Types::RestApi#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
|
|
4992
5039
|
# * {Types::RestApi#root_resource_id #root_resource_id} => String
|
|
5040
|
+
# * {Types::RestApi#security_policy #security_policy} => String
|
|
5041
|
+
# * {Types::RestApi#endpoint_access_mode #endpoint_access_mode} => String
|
|
5042
|
+
# * {Types::RestApi#api_status #api_status} => String
|
|
5043
|
+
# * {Types::RestApi#api_status_message #api_status_message} => String
|
|
4993
5044
|
#
|
|
4994
5045
|
# @example Request syntax with placeholder values
|
|
4995
5046
|
#
|
|
@@ -5024,6 +5075,10 @@ module Aws::APIGateway
|
|
|
5024
5075
|
# resp.tags["String"] #=> String
|
|
5025
5076
|
# resp.disable_execute_api_endpoint #=> Boolean
|
|
5026
5077
|
# resp.root_resource_id #=> String
|
|
5078
|
+
# 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"
|
|
5079
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
5080
|
+
# resp.api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
5081
|
+
# resp.api_status_message #=> String
|
|
5027
5082
|
#
|
|
5028
5083
|
# @overload import_rest_api(params = {})
|
|
5029
5084
|
# @param [Hash] params ({})
|
|
@@ -5198,6 +5253,9 @@ module Aws::APIGateway
|
|
|
5198
5253
|
# @option params [Types::TlsConfig] :tls_config
|
|
5199
5254
|
# Specifies the TLS configuration for an integration.
|
|
5200
5255
|
#
|
|
5256
|
+
# @option params [String] :response_transfer_mode
|
|
5257
|
+
# The response transfer mode of the integration.
|
|
5258
|
+
#
|
|
5201
5259
|
# @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5202
5260
|
#
|
|
5203
5261
|
# * {Types::Integration#type #type} => String
|
|
@@ -5215,6 +5273,7 @@ module Aws::APIGateway
|
|
|
5215
5273
|
# * {Types::Integration#cache_key_parameters #cache_key_parameters} => Array<String>
|
|
5216
5274
|
# * {Types::Integration#integration_responses #integration_responses} => Hash<String,Types::IntegrationResponse>
|
|
5217
5275
|
# * {Types::Integration#tls_config #tls_config} => Types::TlsConfig
|
|
5276
|
+
# * {Types::Integration#response_transfer_mode #response_transfer_mode} => String
|
|
5218
5277
|
#
|
|
5219
5278
|
# @example Request syntax with placeholder values
|
|
5220
5279
|
#
|
|
@@ -5242,6 +5301,7 @@ module Aws::APIGateway
|
|
|
5242
5301
|
# tls_config: {
|
|
5243
5302
|
# insecure_skip_verification: false,
|
|
5244
5303
|
# },
|
|
5304
|
+
# response_transfer_mode: "BUFFERED", # accepts BUFFERED, STREAM
|
|
5245
5305
|
# })
|
|
5246
5306
|
#
|
|
5247
5307
|
# @example Response structure
|
|
@@ -5271,6 +5331,7 @@ module Aws::APIGateway
|
|
|
5271
5331
|
# resp.integration_responses["String"].response_templates["String"] #=> String
|
|
5272
5332
|
# resp.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
5273
5333
|
# resp.tls_config.insecure_skip_verification #=> Boolean
|
|
5334
|
+
# resp.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
5274
5335
|
#
|
|
5275
5336
|
# @overload put_integration(params = {})
|
|
5276
5337
|
# @param [Hash] params ({})
|
|
@@ -5502,6 +5563,7 @@ module Aws::APIGateway
|
|
|
5502
5563
|
# resp.method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
5503
5564
|
# resp.method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
5504
5565
|
# resp.method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
5566
|
+
# resp.method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
5505
5567
|
# resp.authorization_scopes #=> Array
|
|
5506
5568
|
# resp.authorization_scopes[0] #=> String
|
|
5507
5569
|
#
|
|
@@ -5629,6 +5691,10 @@ module Aws::APIGateway
|
|
|
5629
5691
|
# * {Types::RestApi#tags #tags} => Hash<String,String>
|
|
5630
5692
|
# * {Types::RestApi#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
|
|
5631
5693
|
# * {Types::RestApi#root_resource_id #root_resource_id} => String
|
|
5694
|
+
# * {Types::RestApi#security_policy #security_policy} => String
|
|
5695
|
+
# * {Types::RestApi#endpoint_access_mode #endpoint_access_mode} => String
|
|
5696
|
+
# * {Types::RestApi#api_status #api_status} => String
|
|
5697
|
+
# * {Types::RestApi#api_status_message #api_status_message} => String
|
|
5632
5698
|
#
|
|
5633
5699
|
# @example Request syntax with placeholder values
|
|
5634
5700
|
#
|
|
@@ -5665,6 +5731,10 @@ module Aws::APIGateway
|
|
|
5665
5731
|
# resp.tags["String"] #=> String
|
|
5666
5732
|
# resp.disable_execute_api_endpoint #=> Boolean
|
|
5667
5733
|
# resp.root_resource_id #=> String
|
|
5734
|
+
# 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"
|
|
5735
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
5736
|
+
# resp.api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
5737
|
+
# resp.api_status_message #=> String
|
|
5668
5738
|
#
|
|
5669
5739
|
# @overload put_rest_api(params = {})
|
|
5670
5740
|
# @param [Hash] params ({})
|
|
@@ -6402,6 +6472,7 @@ module Aws::APIGateway
|
|
|
6402
6472
|
# * {Types::DomainName#domain_name_status #domain_name_status} => String
|
|
6403
6473
|
# * {Types::DomainName#domain_name_status_message #domain_name_status_message} => String
|
|
6404
6474
|
# * {Types::DomainName#security_policy #security_policy} => String
|
|
6475
|
+
# * {Types::DomainName#endpoint_access_mode #endpoint_access_mode} => String
|
|
6405
6476
|
# * {Types::DomainName#tags #tags} => Hash<String,String>
|
|
6406
6477
|
# * {Types::DomainName#mutual_tls_authentication #mutual_tls_authentication} => Types::MutualTlsAuthentication
|
|
6407
6478
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
|
@@ -6443,9 +6514,10 @@ module Aws::APIGateway
|
|
|
6443
6514
|
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
|
6444
6515
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
|
6445
6516
|
# 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"
|
|
6517
|
+
# resp.domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION", "FAILED"
|
|
6447
6518
|
# resp.domain_name_status_message #=> String
|
|
6448
|
-
# resp.security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
|
|
6519
|
+
# 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"
|
|
6520
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
6449
6521
|
# resp.tags #=> Hash
|
|
6450
6522
|
# resp.tags["String"] #=> String
|
|
6451
6523
|
# resp.mutual_tls_authentication.truststore_uri #=> String
|
|
@@ -6557,6 +6629,7 @@ module Aws::APIGateway
|
|
|
6557
6629
|
# * {Types::Integration#cache_key_parameters #cache_key_parameters} => Array<String>
|
|
6558
6630
|
# * {Types::Integration#integration_responses #integration_responses} => Hash<String,Types::IntegrationResponse>
|
|
6559
6631
|
# * {Types::Integration#tls_config #tls_config} => Types::TlsConfig
|
|
6632
|
+
# * {Types::Integration#response_transfer_mode #response_transfer_mode} => String
|
|
6560
6633
|
#
|
|
6561
6634
|
# @example Request syntax with placeholder values
|
|
6562
6635
|
#
|
|
@@ -6601,6 +6674,7 @@ module Aws::APIGateway
|
|
|
6601
6674
|
# resp.integration_responses["String"].response_templates["String"] #=> String
|
|
6602
6675
|
# resp.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
6603
6676
|
# resp.tls_config.insecure_skip_verification #=> Boolean
|
|
6677
|
+
# resp.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
6604
6678
|
#
|
|
6605
6679
|
# @overload update_integration(params = {})
|
|
6606
6680
|
# @param [Hash] params ({})
|
|
@@ -6766,6 +6840,7 @@ module Aws::APIGateway
|
|
|
6766
6840
|
# resp.method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
6767
6841
|
# resp.method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
6768
6842
|
# resp.method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
6843
|
+
# resp.method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
6769
6844
|
# resp.authorization_scopes #=> Array
|
|
6770
6845
|
# resp.authorization_scopes[0] #=> String
|
|
6771
6846
|
#
|
|
@@ -7030,6 +7105,7 @@ module Aws::APIGateway
|
|
|
7030
7105
|
# resp.resource_methods["String"].method_integration.integration_responses["String"].response_templates["String"] #=> String
|
|
7031
7106
|
# resp.resource_methods["String"].method_integration.integration_responses["String"].content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
7032
7107
|
# resp.resource_methods["String"].method_integration.tls_config.insecure_skip_verification #=> Boolean
|
|
7108
|
+
# resp.resource_methods["String"].method_integration.response_transfer_mode #=> String, one of "BUFFERED", "STREAM"
|
|
7033
7109
|
# resp.resource_methods["String"].authorization_scopes #=> Array
|
|
7034
7110
|
# resp.resource_methods["String"].authorization_scopes[0] #=> String
|
|
7035
7111
|
#
|
|
@@ -7069,6 +7145,10 @@ module Aws::APIGateway
|
|
|
7069
7145
|
# * {Types::RestApi#tags #tags} => Hash<String,String>
|
|
7070
7146
|
# * {Types::RestApi#disable_execute_api_endpoint #disable_execute_api_endpoint} => Boolean
|
|
7071
7147
|
# * {Types::RestApi#root_resource_id #root_resource_id} => String
|
|
7148
|
+
# * {Types::RestApi#security_policy #security_policy} => String
|
|
7149
|
+
# * {Types::RestApi#endpoint_access_mode #endpoint_access_mode} => String
|
|
7150
|
+
# * {Types::RestApi#api_status #api_status} => String
|
|
7151
|
+
# * {Types::RestApi#api_status_message #api_status_message} => String
|
|
7072
7152
|
#
|
|
7073
7153
|
# @example Request syntax with placeholder values
|
|
7074
7154
|
#
|
|
@@ -7107,6 +7187,10 @@ module Aws::APIGateway
|
|
|
7107
7187
|
# resp.tags["String"] #=> String
|
|
7108
7188
|
# resp.disable_execute_api_endpoint #=> Boolean
|
|
7109
7189
|
# resp.root_resource_id #=> String
|
|
7190
|
+
# 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"
|
|
7191
|
+
# resp.endpoint_access_mode #=> String, one of "BASIC", "STRICT"
|
|
7192
|
+
# resp.api_status #=> String, one of "UPDATING", "AVAILABLE", "PENDING", "FAILED"
|
|
7193
|
+
# resp.api_status_message #=> String
|
|
7110
7194
|
#
|
|
7111
7195
|
# @overload update_rest_api(params = {})
|
|
7112
7196
|
# @param [Hash] params ({})
|
|
@@ -7409,7 +7493,7 @@ module Aws::APIGateway
|
|
|
7409
7493
|
tracer: tracer
|
|
7410
7494
|
)
|
|
7411
7495
|
context[:gem_name] = 'aws-sdk-apigateway'
|
|
7412
|
-
context[:gem_version] = '1.
|
|
7496
|
+
context[:gem_version] = '1.127.0'
|
|
7413
7497
|
Seahorse::Client::Request.new(handlers, context)
|
|
7414
7498
|
end
|
|
7415
7499
|
|
|
@@ -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,7 @@ 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"))
|
|
981
989
|
Integration.struct_class = Types::Integration
|
|
982
990
|
|
|
983
991
|
IntegrationResponse.add_member(:status_code, Shapes::ShapeRef.new(shape: StatusCode, location_name: "statusCode"))
|
|
@@ -1167,6 +1175,7 @@ module Aws::APIGateway
|
|
|
1167
1175
|
PutIntegrationRequest.add_member(:content_handling, Shapes::ShapeRef.new(shape: ContentHandlingStrategy, location_name: "contentHandling"))
|
|
1168
1176
|
PutIntegrationRequest.add_member(:timeout_in_millis, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "timeoutInMillis"))
|
|
1169
1177
|
PutIntegrationRequest.add_member(:tls_config, Shapes::ShapeRef.new(shape: TlsConfig, location_name: "tlsConfig"))
|
|
1178
|
+
PutIntegrationRequest.add_member(:response_transfer_mode, Shapes::ShapeRef.new(shape: ResponseTransferMode, location_name: "responseTransferMode"))
|
|
1170
1179
|
PutIntegrationRequest.struct_class = Types::PutIntegrationRequest
|
|
1171
1180
|
|
|
1172
1181
|
PutIntegrationResponseRequest.add_member(:rest_api_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "restapi_id"))
|
|
@@ -1253,6 +1262,10 @@ module Aws::APIGateway
|
|
|
1253
1262
|
RestApi.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
|
|
1254
1263
|
RestApi.add_member(:disable_execute_api_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "disableExecuteApiEndpoint"))
|
|
1255
1264
|
RestApi.add_member(:root_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "rootResourceId"))
|
|
1265
|
+
RestApi.add_member(:security_policy, Shapes::ShapeRef.new(shape: SecurityPolicy, location_name: "securityPolicy"))
|
|
1266
|
+
RestApi.add_member(:endpoint_access_mode, Shapes::ShapeRef.new(shape: EndpointAccessMode, location_name: "endpointAccessMode"))
|
|
1267
|
+
RestApi.add_member(:api_status, Shapes::ShapeRef.new(shape: ApiStatus, location_name: "apiStatus"))
|
|
1268
|
+
RestApi.add_member(:api_status_message, Shapes::ShapeRef.new(shape: String, location_name: "apiStatusMessage"))
|
|
1256
1269
|
RestApi.struct_class = Types::RestApi
|
|
1257
1270
|
|
|
1258
1271
|
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,10 @@ 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
|
+
#
|
|
3629
3657
|
class Integration < Struct.new(
|
|
3630
3658
|
:type,
|
|
3631
3659
|
:http_method,
|
|
@@ -3641,7 +3669,8 @@ module Aws::APIGateway
|
|
|
3641
3669
|
:cache_namespace,
|
|
3642
3670
|
:cache_key_parameters,
|
|
3643
3671
|
:integration_responses,
|
|
3644
|
-
:tls_config
|
|
3672
|
+
:tls_config,
|
|
3673
|
+
:response_transfer_mode)
|
|
3645
3674
|
SENSITIVE = []
|
|
3646
3675
|
include Aws::Structure
|
|
3647
3676
|
end
|
|
@@ -4306,6 +4335,10 @@ module Aws::APIGateway
|
|
|
4306
4335
|
# Specifies the TLS configuration for an integration.
|
|
4307
4336
|
# @return [Types::TlsConfig]
|
|
4308
4337
|
#
|
|
4338
|
+
# @!attribute [rw] response_transfer_mode
|
|
4339
|
+
# The response transfer mode of the integration.
|
|
4340
|
+
# @return [String]
|
|
4341
|
+
#
|
|
4309
4342
|
class PutIntegrationRequest < Struct.new(
|
|
4310
4343
|
:rest_api_id,
|
|
4311
4344
|
:resource_id,
|
|
@@ -4323,7 +4356,8 @@ module Aws::APIGateway
|
|
|
4323
4356
|
:cache_key_parameters,
|
|
4324
4357
|
:content_handling,
|
|
4325
4358
|
:timeout_in_millis,
|
|
4326
|
-
:tls_config
|
|
4359
|
+
:tls_config,
|
|
4360
|
+
:response_transfer_mode)
|
|
4327
4361
|
SENSITIVE = []
|
|
4328
4362
|
include Aws::Structure
|
|
4329
4363
|
end
|
|
@@ -4789,6 +4823,24 @@ module Aws::APIGateway
|
|
|
4789
4823
|
# The API's root resource ID.
|
|
4790
4824
|
# @return [String]
|
|
4791
4825
|
#
|
|
4826
|
+
# @!attribute [rw] security_policy
|
|
4827
|
+
# The Transport Layer Security (TLS) version + cipher suite for this
|
|
4828
|
+
# RestApi.
|
|
4829
|
+
# @return [String]
|
|
4830
|
+
#
|
|
4831
|
+
# @!attribute [rw] endpoint_access_mode
|
|
4832
|
+
# The endpoint access mode of the RestApi.
|
|
4833
|
+
# @return [String]
|
|
4834
|
+
#
|
|
4835
|
+
# @!attribute [rw] api_status
|
|
4836
|
+
# The ApiStatus of the RestApi.
|
|
4837
|
+
# @return [String]
|
|
4838
|
+
#
|
|
4839
|
+
# @!attribute [rw] api_status_message
|
|
4840
|
+
# The status message of the RestApi. When the status message is
|
|
4841
|
+
# `UPDATING` you can still invoke it.
|
|
4842
|
+
# @return [String]
|
|
4843
|
+
#
|
|
4792
4844
|
class RestApi < Struct.new(
|
|
4793
4845
|
:id,
|
|
4794
4846
|
:name,
|
|
@@ -4803,7 +4855,11 @@ module Aws::APIGateway
|
|
|
4803
4855
|
:policy,
|
|
4804
4856
|
:tags,
|
|
4805
4857
|
:disable_execute_api_endpoint,
|
|
4806
|
-
:root_resource_id
|
|
4858
|
+
:root_resource_id,
|
|
4859
|
+
:security_policy,
|
|
4860
|
+
:endpoint_access_mode,
|
|
4861
|
+
:api_status,
|
|
4862
|
+
:api_status_message)
|
|
4807
4863
|
SENSITIVE = []
|
|
4808
4864
|
include Aws::Structure
|
|
4809
4865
|
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,7 @@ 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")
|
|
1009
1019
|
end
|
|
1010
1020
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_integration-instance_method
|
|
1011
1021
|
def get_integration: (
|
|
@@ -1182,6 +1192,10 @@ module Aws
|
|
|
1182
1192
|
def tags: () -> ::Hash[::String, ::String]
|
|
1183
1193
|
def disable_execute_api_endpoint: () -> bool
|
|
1184
1194
|
def root_resource_id: () -> ::String
|
|
1195
|
+
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")
|
|
1196
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
1197
|
+
def api_status: () -> ("UPDATING" | "AVAILABLE" | "PENDING" | "FAILED")
|
|
1198
|
+
def api_status_message: () -> ::String
|
|
1185
1199
|
end
|
|
1186
1200
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_rest_api-instance_method
|
|
1187
1201
|
def get_rest_api: (
|
|
@@ -1439,6 +1453,10 @@ module Aws
|
|
|
1439
1453
|
def tags: () -> ::Hash[::String, ::String]
|
|
1440
1454
|
def disable_execute_api_endpoint: () -> bool
|
|
1441
1455
|
def root_resource_id: () -> ::String
|
|
1456
|
+
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")
|
|
1457
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
1458
|
+
def api_status: () -> ("UPDATING" | "AVAILABLE" | "PENDING" | "FAILED")
|
|
1459
|
+
def api_status_message: () -> ::String
|
|
1442
1460
|
end
|
|
1443
1461
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#import_rest_api-instance_method
|
|
1444
1462
|
def import_rest_api: (
|
|
@@ -1483,6 +1501,7 @@ module Aws
|
|
|
1483
1501
|
def cache_key_parameters: () -> ::Array[::String]
|
|
1484
1502
|
def integration_responses: () -> ::Hash[::String, Types::IntegrationResponse]
|
|
1485
1503
|
def tls_config: () -> Types::TlsConfig
|
|
1504
|
+
def response_transfer_mode: () -> ("BUFFERED" | "STREAM")
|
|
1486
1505
|
end
|
|
1487
1506
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#put_integration-instance_method
|
|
1488
1507
|
def put_integration: (
|
|
@@ -1504,7 +1523,8 @@ module Aws
|
|
|
1504
1523
|
?timeout_in_millis: ::Integer,
|
|
1505
1524
|
?tls_config: {
|
|
1506
1525
|
insecure_skip_verification: bool?
|
|
1507
|
-
}
|
|
1526
|
+
},
|
|
1527
|
+
?response_transfer_mode: ("BUFFERED" | "STREAM")
|
|
1508
1528
|
) -> _PutIntegrationResponseSuccess
|
|
1509
1529
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutIntegrationResponseSuccess
|
|
1510
1530
|
|
|
@@ -1592,6 +1612,10 @@ module Aws
|
|
|
1592
1612
|
def tags: () -> ::Hash[::String, ::String]
|
|
1593
1613
|
def disable_execute_api_endpoint: () -> bool
|
|
1594
1614
|
def root_resource_id: () -> ::String
|
|
1615
|
+
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")
|
|
1616
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
1617
|
+
def api_status: () -> ("UPDATING" | "AVAILABLE" | "PENDING" | "FAILED")
|
|
1618
|
+
def api_status_message: () -> ::String
|
|
1595
1619
|
end
|
|
1596
1620
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#put_rest_api-instance_method
|
|
1597
1621
|
def put_rest_api: (
|
|
@@ -1869,9 +1893,10 @@ module Aws
|
|
|
1869
1893
|
def distribution_domain_name: () -> ::String
|
|
1870
1894
|
def distribution_hosted_zone_id: () -> ::String
|
|
1871
1895
|
def endpoint_configuration: () -> Types::EndpointConfiguration
|
|
1872
|
-
def domain_name_status: () -> ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION")
|
|
1896
|
+
def domain_name_status: () -> ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION" | "FAILED")
|
|
1873
1897
|
def domain_name_status_message: () -> ::String
|
|
1874
|
-
def security_policy: () -> ("TLS_1_0" | "TLS_1_2")
|
|
1898
|
+
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")
|
|
1899
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
1875
1900
|
def tags: () -> ::Hash[::String, ::String]
|
|
1876
1901
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
|
1877
1902
|
def ownership_verification_certificate_arn: () -> ::String
|
|
@@ -1934,6 +1959,7 @@ module Aws
|
|
|
1934
1959
|
def cache_key_parameters: () -> ::Array[::String]
|
|
1935
1960
|
def integration_responses: () -> ::Hash[::String, Types::IntegrationResponse]
|
|
1936
1961
|
def tls_config: () -> Types::TlsConfig
|
|
1962
|
+
def response_transfer_mode: () -> ("BUFFERED" | "STREAM")
|
|
1937
1963
|
end
|
|
1938
1964
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_integration-instance_method
|
|
1939
1965
|
def update_integration: (
|
|
@@ -2113,6 +2139,10 @@ module Aws
|
|
|
2113
2139
|
def tags: () -> ::Hash[::String, ::String]
|
|
2114
2140
|
def disable_execute_api_endpoint: () -> bool
|
|
2115
2141
|
def root_resource_id: () -> ::String
|
|
2142
|
+
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")
|
|
2143
|
+
def endpoint_access_mode: () -> ("BASIC" | "STRICT")
|
|
2144
|
+
def api_status: () -> ("UPDATING" | "AVAILABLE" | "PENDING" | "FAILED")
|
|
2145
|
+
def api_status_message: () -> ::String
|
|
2116
2146
|
end
|
|
2117
2147
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_rest_api-instance_method
|
|
2118
2148
|
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,7 @@ 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")
|
|
939
944
|
SENSITIVE: []
|
|
940
945
|
end
|
|
941
946
|
|
|
@@ -1064,6 +1069,7 @@ module Aws::APIGateway
|
|
|
1064
1069
|
attr_accessor content_handling: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
|
1065
1070
|
attr_accessor timeout_in_millis: ::Integer
|
|
1066
1071
|
attr_accessor tls_config: Types::TlsConfig
|
|
1072
|
+
attr_accessor response_transfer_mode: ("BUFFERED" | "STREAM")
|
|
1067
1073
|
SENSITIVE: []
|
|
1068
1074
|
end
|
|
1069
1075
|
|
|
@@ -1170,6 +1176,10 @@ module Aws::APIGateway
|
|
|
1170
1176
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1171
1177
|
attr_accessor disable_execute_api_endpoint: bool
|
|
1172
1178
|
attr_accessor root_resource_id: ::String
|
|
1179
|
+
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")
|
|
1180
|
+
attr_accessor endpoint_access_mode: ("BASIC" | "STRICT")
|
|
1181
|
+
attr_accessor api_status: ("UPDATING" | "AVAILABLE" | "PENDING" | "FAILED")
|
|
1182
|
+
attr_accessor api_status_message: ::String
|
|
1173
1183
|
SENSITIVE: []
|
|
1174
1184
|
end
|
|
1175
1185
|
|