aws-sdk-apigateway 1.64.0 → 1.68.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigateway/client.rb +27 -97
- data/lib/aws-sdk-apigateway/client_api.rb +263 -176
- data/lib/aws-sdk-apigateway/types.rb +28 -114
- data/lib/aws-sdk-apigateway.rb +1 -1
- metadata +5 -5
@@ -1046,6 +1046,7 @@ module Aws::APIGateway
|
|
1046
1046
|
# truststore_uri: "String",
|
1047
1047
|
# truststore_version: "String",
|
1048
1048
|
# },
|
1049
|
+
# ownership_verification_certificate_arn: "String",
|
1049
1050
|
# }
|
1050
1051
|
#
|
1051
1052
|
# @!attribute [rw] domain_name
|
@@ -1118,6 +1119,13 @@ module Aws::APIGateway
|
|
1118
1119
|
# certificate to access your custom domain name.
|
1119
1120
|
# @return [Types::MutualTlsAuthenticationInput]
|
1120
1121
|
#
|
1122
|
+
# @!attribute [rw] ownership_verification_certificate_arn
|
1123
|
+
# The ARN of the public certificate issued by ACM to validate
|
1124
|
+
# ownership of your custom domain. Only required when configuring
|
1125
|
+
# mutual TLS and using an ACM imported or private CA certificate ARN
|
1126
|
+
# as the regionalCertificateArn.
|
1127
|
+
# @return [String]
|
1128
|
+
#
|
1121
1129
|
class CreateDomainNameRequest < Struct.new(
|
1122
1130
|
:domain_name,
|
1123
1131
|
:certificate_name,
|
@@ -1130,7 +1138,8 @@ module Aws::APIGateway
|
|
1130
1138
|
:endpoint_configuration,
|
1131
1139
|
:tags,
|
1132
1140
|
:security_policy,
|
1133
|
-
:mutual_tls_authentication
|
1141
|
+
:mutual_tls_authentication,
|
1142
|
+
:ownership_verification_certificate_arn)
|
1134
1143
|
SENSITIVE = []
|
1135
1144
|
include Aws::Structure
|
1136
1145
|
end
|
@@ -1807,7 +1816,7 @@ module Aws::APIGateway
|
|
1807
1816
|
#
|
1808
1817
|
# {
|
1809
1818
|
# rest_api_id: "String", # required
|
1810
|
-
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED
|
1819
|
+
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED, WAF_FILTERED
|
1811
1820
|
# }
|
1812
1821
|
#
|
1813
1822
|
# @!attribute [rw] rest_api_id
|
@@ -1816,27 +1825,6 @@ module Aws::APIGateway
|
|
1816
1825
|
#
|
1817
1826
|
# @!attribute [rw] response_type
|
1818
1827
|
# \[Required\] The response type of the associated GatewayResponse.
|
1819
|
-
# Valid values
|
1820
|
-
# are * ACCESS\_DENIED
|
1821
|
-
# * API\_CONFIGURATION\_ERROR
|
1822
|
-
# * AUTHORIZER\_FAILURE
|
1823
|
-
# * AUTHORIZER\_CONFIGURATION\_ERROR
|
1824
|
-
# * BAD\_REQUEST\_PARAMETERS
|
1825
|
-
# * BAD\_REQUEST\_BODY
|
1826
|
-
# * DEFAULT\_4XX
|
1827
|
-
# * DEFAULT\_5XX
|
1828
|
-
# * EXPIRED\_TOKEN
|
1829
|
-
# * INVALID\_SIGNATURE
|
1830
|
-
# * INTEGRATION\_FAILURE
|
1831
|
-
# * INTEGRATION\_TIMEOUT
|
1832
|
-
# * INVALID\_API\_KEY
|
1833
|
-
# * MISSING\_AUTHENTICATION\_TOKEN
|
1834
|
-
# * QUOTA\_EXCEEDED
|
1835
|
-
# * REQUEST\_TOO\_LARGE
|
1836
|
-
# * RESOURCE\_NOT\_FOUND
|
1837
|
-
# * THROTTLED
|
1838
|
-
# * UNAUTHORIZED
|
1839
|
-
# * UNSUPPORTED\_MEDIA\_TYPE
|
1840
1828
|
# @return [String]
|
1841
1829
|
#
|
1842
1830
|
class DeleteGatewayResponseRequest < Struct.new(
|
@@ -2663,9 +2651,10 @@ module Aws::APIGateway
|
|
2663
2651
|
#
|
2664
2652
|
# @!attribute [rw] domain_name_status
|
2665
2653
|
# The status of the DomainName migration. The valid values are
|
2666
|
-
# `AVAILABLE
|
2667
|
-
#
|
2668
|
-
#
|
2654
|
+
# `AVAILABLE`, `UPDATING`, `PENDING_CERTIFICATE_REIMPORT`, and
|
2655
|
+
# `PENDING_OWNERSHIP_VERIFICATION`. If the status is `UPDATING`, the
|
2656
|
+
# domain cannot be modified further until the existing operation is
|
2657
|
+
# complete. If it is `AVAILABLE`, the domain can be updated.
|
2669
2658
|
# @return [String]
|
2670
2659
|
#
|
2671
2660
|
# @!attribute [rw] domain_name_status_message
|
@@ -2690,6 +2679,13 @@ module Aws::APIGateway
|
|
2690
2679
|
# certificate to access your API.
|
2691
2680
|
# @return [Types::MutualTlsAuthentication]
|
2692
2681
|
#
|
2682
|
+
# @!attribute [rw] ownership_verification_certificate_arn
|
2683
|
+
# The ARN of the public certificate issued by ACM to validate
|
2684
|
+
# ownership of your custom domain. Only required when configuring
|
2685
|
+
# mutual TLS and using an ACM imported or private CA certificate ARN
|
2686
|
+
# as the regionalCertificateArn.
|
2687
|
+
# @return [String]
|
2688
|
+
#
|
2693
2689
|
class DomainName < Struct.new(
|
2694
2690
|
:domain_name,
|
2695
2691
|
:certificate_name,
|
@@ -2706,7 +2702,8 @@ module Aws::APIGateway
|
|
2706
2702
|
:domain_name_status_message,
|
2707
2703
|
:security_policy,
|
2708
2704
|
:tags,
|
2709
|
-
:mutual_tls_authentication
|
2705
|
+
:mutual_tls_authentication,
|
2706
|
+
:ownership_verification_certificate_arn)
|
2710
2707
|
SENSITIVE = []
|
2711
2708
|
include Aws::Structure
|
2712
2709
|
end
|
@@ -2880,27 +2877,7 @@ module Aws::APIGateway
|
|
2880
2877
|
# [2]: https://docs.aws.amazon.com/apigateway/latest/developerguide/customize-gateway-responses.html
|
2881
2878
|
#
|
2882
2879
|
# @!attribute [rw] response_type
|
2883
|
-
# The response type of the associated GatewayResponse.
|
2884
|
-
# are * ACCESS\_DENIED
|
2885
|
-
# * API\_CONFIGURATION\_ERROR
|
2886
|
-
# * AUTHORIZER\_FAILURE
|
2887
|
-
# * AUTHORIZER\_CONFIGURATION\_ERROR
|
2888
|
-
# * BAD\_REQUEST\_PARAMETERS
|
2889
|
-
# * BAD\_REQUEST\_BODY
|
2890
|
-
# * DEFAULT\_4XX
|
2891
|
-
# * DEFAULT\_5XX
|
2892
|
-
# * EXPIRED\_TOKEN
|
2893
|
-
# * INVALID\_SIGNATURE
|
2894
|
-
# * INTEGRATION\_FAILURE
|
2895
|
-
# * INTEGRATION\_TIMEOUT
|
2896
|
-
# * INVALID\_API\_KEY
|
2897
|
-
# * MISSING\_AUTHENTICATION\_TOKEN
|
2898
|
-
# * QUOTA\_EXCEEDED
|
2899
|
-
# * REQUEST\_TOO\_LARGE
|
2900
|
-
# * RESOURCE\_NOT\_FOUND
|
2901
|
-
# * THROTTLED
|
2902
|
-
# * UNAUTHORIZED
|
2903
|
-
# * UNSUPPORTED\_MEDIA\_TYPE
|
2880
|
+
# The response type of the associated GatewayResponse.
|
2904
2881
|
# @return [String]
|
2905
2882
|
#
|
2906
2883
|
# @!attribute [rw] status_code
|
@@ -3592,7 +3569,7 @@ module Aws::APIGateway
|
|
3592
3569
|
#
|
3593
3570
|
# {
|
3594
3571
|
# rest_api_id: "String", # required
|
3595
|
-
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED
|
3572
|
+
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED, WAF_FILTERED
|
3596
3573
|
# }
|
3597
3574
|
#
|
3598
3575
|
# @!attribute [rw] rest_api_id
|
@@ -3601,27 +3578,6 @@ module Aws::APIGateway
|
|
3601
3578
|
#
|
3602
3579
|
# @!attribute [rw] response_type
|
3603
3580
|
# \[Required\] The response type of the associated GatewayResponse.
|
3604
|
-
# Valid values
|
3605
|
-
# are * ACCESS\_DENIED
|
3606
|
-
# * API\_CONFIGURATION\_ERROR
|
3607
|
-
# * AUTHORIZER\_FAILURE
|
3608
|
-
# * AUTHORIZER\_CONFIGURATION\_ERROR
|
3609
|
-
# * BAD\_REQUEST\_PARAMETERS
|
3610
|
-
# * BAD\_REQUEST\_BODY
|
3611
|
-
# * DEFAULT\_4XX
|
3612
|
-
# * DEFAULT\_5XX
|
3613
|
-
# * EXPIRED\_TOKEN
|
3614
|
-
# * INVALID\_SIGNATURE
|
3615
|
-
# * INTEGRATION\_FAILURE
|
3616
|
-
# * INTEGRATION\_TIMEOUT
|
3617
|
-
# * INVALID\_API\_KEY
|
3618
|
-
# * MISSING\_AUTHENTICATION\_TOKEN
|
3619
|
-
# * QUOTA\_EXCEEDED
|
3620
|
-
# * REQUEST\_TOO\_LARGE
|
3621
|
-
# * RESOURCE\_NOT\_FOUND
|
3622
|
-
# * THROTTLED
|
3623
|
-
# * UNAUTHORIZED
|
3624
|
-
# * UNSUPPORTED\_MEDIA\_TYPE
|
3625
3581
|
# @return [String]
|
3626
3582
|
#
|
3627
3583
|
class GetGatewayResponseRequest < Struct.new(
|
@@ -5606,7 +5562,7 @@ module Aws::APIGateway
|
|
5606
5562
|
#
|
5607
5563
|
# {
|
5608
5564
|
# rest_api_id: "String", # required
|
5609
|
-
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED
|
5565
|
+
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED, WAF_FILTERED
|
5610
5566
|
# status_code: "StatusCode",
|
5611
5567
|
# response_parameters: {
|
5612
5568
|
# "String" => "String",
|
@@ -5622,27 +5578,6 @@ module Aws::APIGateway
|
|
5622
5578
|
#
|
5623
5579
|
# @!attribute [rw] response_type
|
5624
5580
|
# \[Required\] The response type of the associated GatewayResponse.
|
5625
|
-
# Valid values
|
5626
|
-
# are * ACCESS\_DENIED
|
5627
|
-
# * API\_CONFIGURATION\_ERROR
|
5628
|
-
# * AUTHORIZER\_FAILURE
|
5629
|
-
# * AUTHORIZER\_CONFIGURATION\_ERROR
|
5630
|
-
# * BAD\_REQUEST\_PARAMETERS
|
5631
|
-
# * BAD\_REQUEST\_BODY
|
5632
|
-
# * DEFAULT\_4XX
|
5633
|
-
# * DEFAULT\_5XX
|
5634
|
-
# * EXPIRED\_TOKEN
|
5635
|
-
# * INVALID\_SIGNATURE
|
5636
|
-
# * INTEGRATION\_FAILURE
|
5637
|
-
# * INTEGRATION\_TIMEOUT
|
5638
|
-
# * INVALID\_API\_KEY
|
5639
|
-
# * MISSING\_AUTHENTICATION\_TOKEN
|
5640
|
-
# * QUOTA\_EXCEEDED
|
5641
|
-
# * REQUEST\_TOO\_LARGE
|
5642
|
-
# * RESOURCE\_NOT\_FOUND
|
5643
|
-
# * THROTTLED
|
5644
|
-
# * UNAUTHORIZED
|
5645
|
-
# * UNSUPPORTED\_MEDIA\_TYPE
|
5646
5581
|
# @return [String]
|
5647
5582
|
#
|
5648
5583
|
# @!attribute [rw] status_code
|
@@ -7574,7 +7509,7 @@ module Aws::APIGateway
|
|
7574
7509
|
#
|
7575
7510
|
# {
|
7576
7511
|
# rest_api_id: "String", # required
|
7577
|
-
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED
|
7512
|
+
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED, WAF_FILTERED
|
7578
7513
|
# patch_operations: [
|
7579
7514
|
# {
|
7580
7515
|
# op: "add", # accepts add, remove, replace, move, copy, test
|
@@ -7591,27 +7526,6 @@ module Aws::APIGateway
|
|
7591
7526
|
#
|
7592
7527
|
# @!attribute [rw] response_type
|
7593
7528
|
# \[Required\] The response type of the associated GatewayResponse.
|
7594
|
-
# Valid values
|
7595
|
-
# are * ACCESS\_DENIED
|
7596
|
-
# * API\_CONFIGURATION\_ERROR
|
7597
|
-
# * AUTHORIZER\_FAILURE
|
7598
|
-
# * AUTHORIZER\_CONFIGURATION\_ERROR
|
7599
|
-
# * BAD\_REQUEST\_PARAMETERS
|
7600
|
-
# * BAD\_REQUEST\_BODY
|
7601
|
-
# * DEFAULT\_4XX
|
7602
|
-
# * DEFAULT\_5XX
|
7603
|
-
# * EXPIRED\_TOKEN
|
7604
|
-
# * INVALID\_SIGNATURE
|
7605
|
-
# * INTEGRATION\_FAILURE
|
7606
|
-
# * INTEGRATION\_TIMEOUT
|
7607
|
-
# * INVALID\_API\_KEY
|
7608
|
-
# * MISSING\_AUTHENTICATION\_TOKEN
|
7609
|
-
# * QUOTA\_EXCEEDED
|
7610
|
-
# * REQUEST\_TOO\_LARGE
|
7611
|
-
# * RESOURCE\_NOT\_FOUND
|
7612
|
-
# * THROTTLED
|
7613
|
-
# * UNAUTHORIZED
|
7614
|
-
# * UNSUPPORTED\_MEDIA\_TYPE
|
7615
7529
|
# @return [String]
|
7616
7530
|
#
|
7617
7531
|
# @!attribute [rw] patch_operations
|
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.68.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: 2021-
|
11
|
+
date: 2021-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.121.2
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.121.2
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -77,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
77
|
requirements:
|
78
78
|
- - ">="
|
79
79
|
- !ruby/object:Gem::Version
|
80
|
-
version: '
|
80
|
+
version: '2.3'
|
81
81
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
82
|
requirements:
|
83
83
|
- - ">="
|