aws-sdk-apigateway 1.91.0 → 1.93.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigateway/client.rb +4 -3
- data/lib/aws-sdk-apigateway/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-apigateway/types.rb +9 -3
- data/lib/aws-sdk-apigateway.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61c88c1b5d0998521e36ea82c9d80b7a7689a4908bd0f9798eced5b205389cf7
|
4
|
+
data.tar.gz: 9eed0df9f109e96c22cc1a4690942d7bca3f798c8006dc68f13694caba2ce2f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b161bba0fbb2a01f17b6fa9471a42dd82e18b951974c815a2ab32d8a314bca6630968938242d4a026fc56be640bf7366d4f8478918eed9682ff5404022dd691b
|
7
|
+
data.tar.gz: 4892e9f2faf41db0a96522d66679edb99be344a9b16ae677c9e88ea211f0f0273541cff2db841dde94621afcc2de783e4f5e51c8aba25f6f02fdc8932410c603
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.93.0 (2024-03-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for Amazon API Gateway
|
8
|
+
|
9
|
+
1.92.0 (2024-02-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation updates for Amazon API Gateway.
|
13
|
+
|
4
14
|
1.91.0 (2024-01-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.93.0
|
@@ -992,7 +992,7 @@ module Aws::APIGateway
|
|
992
992
|
#
|
993
993
|
# @option params [String] :schema
|
994
994
|
# The schema for the model. For `application/json` models, this should
|
995
|
-
# be JSON schema draft 4 model.
|
995
|
+
# be JSON schema draft 4 model. The maximum size of the model is 400 KB.
|
996
996
|
#
|
997
997
|
# @option params [required, String] :content_type
|
998
998
|
# The content-type for the model.
|
@@ -6494,7 +6494,8 @@ module Aws::APIGateway
|
|
6494
6494
|
req.send_request(options)
|
6495
6495
|
end
|
6496
6496
|
|
6497
|
-
# Changes information about a model.
|
6497
|
+
# Changes information about a model. The maximum size of the model is
|
6498
|
+
# 400 KB.
|
6498
6499
|
#
|
6499
6500
|
# @option params [required, String] :rest_api_id
|
6500
6501
|
# The string identifier of the associated RestApi.
|
@@ -7060,7 +7061,7 @@ module Aws::APIGateway
|
|
7060
7061
|
params: params,
|
7061
7062
|
config: config)
|
7062
7063
|
context[:gem_name] = 'aws-sdk-apigateway'
|
7063
|
-
context[:gem_version] = '1.
|
7064
|
+
context[:gem_version] = '1.93.0'
|
7064
7065
|
Seahorse::Client::Request.new(handlers, context)
|
7065
7066
|
end
|
7066
7067
|
|
@@ -32,7 +32,7 @@ module Aws::APIGateway
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://apigateway-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -890,7 +890,8 @@ module Aws::APIGateway
|
|
890
890
|
#
|
891
891
|
# @!attribute [rw] schema
|
892
892
|
# The schema for the model. For `application/json` models, this should
|
893
|
-
# be JSON schema draft 4 model.
|
893
|
+
# be JSON schema draft 4 model. The maximum size of the model is 400
|
894
|
+
# KB.
|
894
895
|
# @return [String]
|
895
896
|
#
|
896
897
|
# @!attribute [rw] content_type
|
@@ -3670,7 +3671,10 @@ module Aws::APIGateway
|
|
3670
3671
|
#
|
3671
3672
|
# @!attribute [rw] data_trace_enabled
|
3672
3673
|
# Specifies whether data trace logging is enabled for this method,
|
3673
|
-
# which affects the log entries pushed to Amazon CloudWatch Logs.
|
3674
|
+
# which affects the log entries pushed to Amazon CloudWatch Logs. This
|
3675
|
+
# can be useful to troubleshoot APIs, but can result in logging
|
3676
|
+
# sensitive data. We recommend that you don't enable this option for
|
3677
|
+
# production APIs.
|
3674
3678
|
# @return [Boolean]
|
3675
3679
|
#
|
3676
3680
|
# @!attribute [rw] throttling_burst_limit
|
@@ -4735,7 +4739,9 @@ module Aws::APIGateway
|
|
4735
4739
|
# @return [String]
|
4736
4740
|
#
|
4737
4741
|
# @!attribute [rw] cache_cluster_enabled
|
4738
|
-
# Specifies whether a cache cluster is enabled for the stage.
|
4742
|
+
# Specifies whether a cache cluster is enabled for the stage. To
|
4743
|
+
# activate a method-level cache, set `CachingEnabled` to `true` for a
|
4744
|
+
# method.
|
4739
4745
|
# @return [Boolean]
|
4740
4746
|
#
|
4741
4747
|
# @!attribute [rw] cache_cluster_size
|
data/lib/aws-sdk-apigateway.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.93.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|