aws-sdk-apigateway 1.44.0 → 1.45.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/lib/aws-sdk-apigateway.rb +1 -1
- data/lib/aws-sdk-apigateway/client.rb +10 -5
- data/lib/aws-sdk-apigateway/types.rb +22 -16
- 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: 55cc03fd0f877484e842adc26b865e4e5db267654ff569d1ada0289a242f6c3a
|
4
|
+
data.tar.gz: a02b1657165bd964db9787945d5360a06074b9ce5c25c53acdc5759523b2d9cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65092fa91295205bd76e54eff96ba144c729ffe0cc5f015fe8d54671a071c26e0bb4be0897e3cb8c4976af3aec740915a37655420cc7a146d9bad30b3a49e590
|
7
|
+
data.tar.gz: 9bbe5a7719976e58b917ec6fd728437fd1a612e28c6606b1e5a40bcb15c93c001f0fd1ce2a051460422ecf99b534593153eea1b87a7e4ce9b541422a11ae2688
|
data/lib/aws-sdk-apigateway.rb
CHANGED
@@ -4644,7 +4644,7 @@ module Aws::APIGateway
|
|
4644
4644
|
# @option params [required, String, IO] :body
|
4645
4645
|
# \[Required\] The POST request body containing external API
|
4646
4646
|
# definitions. Currently, only OpenAPI definition JSON/YAML files are
|
4647
|
-
# supported. The maximum size of the API definition file is
|
4647
|
+
# supported. The maximum size of the API definition file is 6MB.
|
4648
4648
|
#
|
4649
4649
|
# @return [Types::RestApi] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4650
4650
|
#
|
@@ -4882,10 +4882,15 @@ module Aws::APIGateway
|
|
4882
4882
|
# the same 415 response.
|
4883
4883
|
#
|
4884
4884
|
# @option params [String] :cache_namespace
|
4885
|
-
#
|
4885
|
+
# Specifies a group of related cached parameters. By default, API
|
4886
|
+
# Gateway uses the resource ID as the `cacheNamespace`. You can specify
|
4887
|
+
# the same `cacheNamespace` across resources to return the same cached
|
4888
|
+
# data for requests to different resources.
|
4886
4889
|
#
|
4887
4890
|
# @option params [Array<String>] :cache_key_parameters
|
4888
|
-
#
|
4891
|
+
# A list of request parameters whose values API Gateway caches. To be
|
4892
|
+
# valid values for `cacheKeyParameters`, these parameters must also be
|
4893
|
+
# specified for Method `requestParameters`.
|
4889
4894
|
#
|
4890
4895
|
# @option params [String] :content_handling
|
4891
4896
|
# Specifies how to handle request payload content type conversions.
|
@@ -5331,7 +5336,7 @@ module Aws::APIGateway
|
|
5331
5336
|
# @option params [required, String, IO] :body
|
5332
5337
|
# \[Required\] The PUT request body containing external API definitions.
|
5333
5338
|
# Currently, only OpenAPI definition JSON/YAML files are supported. The
|
5334
|
-
# maximum size of the API definition file is
|
5339
|
+
# maximum size of the API definition file is 6MB.
|
5335
5340
|
#
|
5336
5341
|
# @return [Types::RestApi] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5337
5342
|
#
|
@@ -7011,7 +7016,7 @@ module Aws::APIGateway
|
|
7011
7016
|
params: params,
|
7012
7017
|
config: config)
|
7013
7018
|
context[:gem_name] = 'aws-sdk-apigateway'
|
7014
|
-
context[:gem_version] = '1.
|
7019
|
+
context[:gem_version] = '1.45.0'
|
7015
7020
|
Seahorse::Client::Request.new(handlers, context)
|
7016
7021
|
end
|
7017
7022
|
|
@@ -4471,7 +4471,7 @@ module Aws::APIGateway
|
|
4471
4471
|
# @!attribute [rw] body
|
4472
4472
|
# \[Required\] The POST request body containing external API
|
4473
4473
|
# definitions. Currently, only OpenAPI definition JSON/YAML files are
|
4474
|
-
# supported. The maximum size of the API definition file is
|
4474
|
+
# supported. The maximum size of the API definition file is 6MB.
|
4475
4475
|
# @return [String]
|
4476
4476
|
#
|
4477
4477
|
class ImportRestApiRequest < Struct.new(
|
@@ -4662,9 +4662,10 @@ module Aws::APIGateway
|
|
4662
4662
|
# @return [Integer]
|
4663
4663
|
#
|
4664
4664
|
# @!attribute [rw] cache_namespace
|
4665
|
-
#
|
4666
|
-
#
|
4667
|
-
#
|
4665
|
+
# Specifies a group of related cached parameters. By default, API
|
4666
|
+
# Gateway uses the resource ID as the `cacheNamespace`. You can
|
4667
|
+
# specify the same `cacheNamespace` across resources to return the
|
4668
|
+
# same cached data for requests to different resources.
|
4668
4669
|
# @return [String]
|
4669
4670
|
#
|
4670
4671
|
# @!attribute [rw] cache_key_parameters
|
@@ -5582,11 +5583,16 @@ module Aws::APIGateway
|
|
5582
5583
|
# @return [String]
|
5583
5584
|
#
|
5584
5585
|
# @!attribute [rw] cache_namespace
|
5585
|
-
#
|
5586
|
+
# Specifies a group of related cached parameters. By default, API
|
5587
|
+
# Gateway uses the resource ID as the `cacheNamespace`. You can
|
5588
|
+
# specify the same `cacheNamespace` across resources to return the
|
5589
|
+
# same cached data for requests to different resources.
|
5586
5590
|
# @return [String]
|
5587
5591
|
#
|
5588
5592
|
# @!attribute [rw] cache_key_parameters
|
5589
|
-
#
|
5593
|
+
# A list of request parameters whose values API Gateway caches. To be
|
5594
|
+
# valid values for `cacheKeyParameters`, these parameters must also be
|
5595
|
+
# specified for Method `requestParameters`.
|
5590
5596
|
# @return [Array<String>]
|
5591
5597
|
#
|
5592
5598
|
# @!attribute [rw] content_handling
|
@@ -5947,7 +5953,7 @@ module Aws::APIGateway
|
|
5947
5953
|
# @!attribute [rw] body
|
5948
5954
|
# \[Required\] The PUT request body containing external API
|
5949
5955
|
# definitions. Currently, only OpenAPI definition JSON/YAML files are
|
5950
|
-
# supported. The maximum size of the API definition file is
|
5956
|
+
# supported. The maximum size of the API definition file is 6MB.
|
5951
5957
|
# @return [String]
|
5952
5958
|
#
|
5953
5959
|
class PutRestApiRequest < Struct.new(
|
@@ -6885,15 +6891,15 @@ module Aws::APIGateway
|
|
6885
6891
|
# }
|
6886
6892
|
#
|
6887
6893
|
# @!attribute [rw] insecure_skip_verification
|
6888
|
-
# Specifies whether API Gateway skips
|
6889
|
-
#
|
6890
|
-
#
|
6891
|
-
#
|
6892
|
-
#
|
6893
|
-
#
|
6894
|
-
#
|
6895
|
-
#
|
6896
|
-
#
|
6894
|
+
# Specifies whether or not API Gateway skips verification that the
|
6895
|
+
# certificate for an integration endpoint is issued by a [supported
|
6896
|
+
# certificate authority][1]. This isn’t recommended, but it enables
|
6897
|
+
# you to use certificates that are signed by private certificate
|
6898
|
+
# authorities, or certificates that are self-signed. If enabled, API
|
6899
|
+
# Gateway still performs basic certificate validation, which includes
|
6900
|
+
# checking the certificate's expiration date, hostname, and presence
|
6901
|
+
# of a root certificate authority. Supported only for `HTTP` and
|
6902
|
+
# `HTTP_PROXY` integrations.
|
6897
6903
|
#
|
6898
6904
|
#
|
6899
6905
|
#
|
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.45.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: 2020-06-
|
11
|
+
date: 2020-06-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|