aws-sdk-apigateway 1.109.0 → 1.111.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 +261 -6
- data/lib/aws-sdk-apigateway/client_api.rb +105 -0
- data/lib/aws-sdk-apigateway/types.rb +231 -15
- data/lib/aws-sdk-apigateway.rb +1 -1
- data/sig/client.rbs +71 -4
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +55 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ce99e84b458af25a8716a68acea0f00321aada0d02afd7fc9ea62fa61c7536a
|
4
|
+
data.tar.gz: 9b935b64d5e299d8cb15b80e39f615cb5d32f96fb1706d9fb17d92ad96025053
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1df0f33895cf921f4546726f3439fbfdbcec9e88f895a180669359c60f2b1b333b77371174d8471228f6c7f727b082f5a6cb573517970825b6beb3c3c500fdf9
|
7
|
+
data.tar.gz: 255c4ea4623060c2113099f9d95f44f4507f1e0fbf21469684253d07f8347d8b0174242f490c0aff049219cd6a7b6166b47dc55d11bf1e1b8ce54cafa7b37ddb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.111.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for Amazon API Gateway
|
8
|
+
|
9
|
+
1.110.0 (2024-11-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added support for custom domain names for private APIs.
|
13
|
+
|
4
14
|
1.109.0 (2024-11-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.111.0
|
@@ -259,11 +259,34 @@ module Aws::APIGateway
|
|
259
259
|
# Used when loading credentials from the shared credentials file
|
260
260
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
261
261
|
#
|
262
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
263
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
264
|
+
#
|
265
|
+
# * `when_supported` - (default) When set, a checksum will be
|
266
|
+
# calculated for all request payloads of operations modeled with the
|
267
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
268
|
+
# `requestAlgorithmMember` is modeled.
|
269
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
270
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
271
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
272
|
+
# is modeled and supplied.
|
273
|
+
#
|
262
274
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
263
275
|
# The minimum size in bytes that triggers compression for request
|
264
276
|
# bodies. The value must be non-negative integer value between 0
|
265
277
|
# and 10485780 bytes inclusive.
|
266
278
|
#
|
279
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
280
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
281
|
+
#
|
282
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
283
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
284
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
285
|
+
# are supported.
|
286
|
+
# * `when_required` - When set, checksum validation is not performed on
|
287
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
288
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
289
|
+
#
|
267
290
|
# @option options [Proc] :retry_backoff
|
268
291
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
269
292
|
# This option is only used in the `legacy` retry mode.
|
@@ -671,6 +694,10 @@ module Aws::APIGateway
|
|
671
694
|
# @option params [required, String] :domain_name
|
672
695
|
# The domain name of the BasePathMapping resource to create.
|
673
696
|
#
|
697
|
+
# @option params [String] :domain_name_id
|
698
|
+
# The identifier for the domain name resource. Required for private
|
699
|
+
# custom domain names.
|
700
|
+
#
|
674
701
|
# @option params [String] :base_path
|
675
702
|
# The base path name that callers of the API must provide as part of the
|
676
703
|
# URL after the domain name. This value must be unique for all of the
|
@@ -695,6 +722,7 @@ module Aws::APIGateway
|
|
695
722
|
#
|
696
723
|
# resp = client.create_base_path_mapping({
|
697
724
|
# domain_name: "String", # required
|
725
|
+
# domain_name_id: "String",
|
698
726
|
# base_path: "String",
|
699
727
|
# rest_api_id: "String", # required
|
700
728
|
# stage: "String",
|
@@ -899,12 +927,12 @@ module Aws::APIGateway
|
|
899
927
|
#
|
900
928
|
# @option params [String] :certificate_name
|
901
929
|
# The user-friendly name of the certificate that will be used by
|
902
|
-
# edge-optimized endpoint for this domain name.
|
930
|
+
# edge-optimized endpoint or private endpoint for this domain name.
|
903
931
|
#
|
904
932
|
# @option params [String] :certificate_body
|
905
933
|
# \[Deprecated\] The body of the server certificate that will be used by
|
906
|
-
# edge-optimized endpoint for this domain name
|
907
|
-
# certificate authority.
|
934
|
+
# edge-optimized endpoint or private endpoint for this domain name
|
935
|
+
# provided by your certificate authority.
|
908
936
|
#
|
909
937
|
# @option params [String] :certificate_private_key
|
910
938
|
# \[Deprecated\] Your edge-optimized endpoint's domain name
|
@@ -921,8 +949,8 @@ module Aws::APIGateway
|
|
921
949
|
#
|
922
950
|
# @option params [String] :certificate_arn
|
923
951
|
# The reference to an Amazon Web Services-managed certificate that will
|
924
|
-
# be used by edge-optimized endpoint for this domain
|
925
|
-
# Manager is the only supported source.
|
952
|
+
# be used by edge-optimized endpoint or private endpoint for this domain
|
953
|
+
# name. Certificate Manager is the only supported source.
|
926
954
|
#
|
927
955
|
# @option params [String] :regional_certificate_name
|
928
956
|
# The user-friendly name of the certificate that will be used by
|
@@ -958,9 +986,16 @@ module Aws::APIGateway
|
|
958
986
|
# using an ACM imported or private CA certificate ARN as the
|
959
987
|
# regionalCertificateArn.
|
960
988
|
#
|
989
|
+
# @option params [String] :policy
|
990
|
+
# A stringified JSON policy document that applies to the `execute-api`
|
991
|
+
# service for this DomainName regardless of the caller and Method
|
992
|
+
# configuration. Supported only for private custom domain names.
|
993
|
+
#
|
961
994
|
# @return [Types::DomainName] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
962
995
|
#
|
963
996
|
# * {Types::DomainName#domain_name #domain_name} => String
|
997
|
+
# * {Types::DomainName#domain_name_id #domain_name_id} => String
|
998
|
+
# * {Types::DomainName#domain_name_arn #domain_name_arn} => String
|
964
999
|
# * {Types::DomainName#certificate_name #certificate_name} => String
|
965
1000
|
# * {Types::DomainName#certificate_arn #certificate_arn} => String
|
966
1001
|
# * {Types::DomainName#certificate_upload_date #certificate_upload_date} => Time
|
@@ -977,6 +1012,8 @@ module Aws::APIGateway
|
|
977
1012
|
# * {Types::DomainName#tags #tags} => Hash<String,String>
|
978
1013
|
# * {Types::DomainName#mutual_tls_authentication #mutual_tls_authentication} => Types::MutualTlsAuthentication
|
979
1014
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
1015
|
+
# * {Types::DomainName#management_policy #management_policy} => String
|
1016
|
+
# * {Types::DomainName#policy #policy} => String
|
980
1017
|
#
|
981
1018
|
# @example Request syntax with placeholder values
|
982
1019
|
#
|
@@ -1002,11 +1039,14 @@ module Aws::APIGateway
|
|
1002
1039
|
# truststore_version: "String",
|
1003
1040
|
# },
|
1004
1041
|
# ownership_verification_certificate_arn: "String",
|
1042
|
+
# policy: "String",
|
1005
1043
|
# })
|
1006
1044
|
#
|
1007
1045
|
# @example Response structure
|
1008
1046
|
#
|
1009
1047
|
# resp.domain_name #=> String
|
1048
|
+
# resp.domain_name_id #=> String
|
1049
|
+
# resp.domain_name_arn #=> String
|
1010
1050
|
# resp.certificate_name #=> String
|
1011
1051
|
# resp.certificate_arn #=> String
|
1012
1052
|
# resp.certificate_upload_date #=> Time
|
@@ -1030,6 +1070,8 @@ module Aws::APIGateway
|
|
1030
1070
|
# resp.mutual_tls_authentication.truststore_warnings #=> Array
|
1031
1071
|
# resp.mutual_tls_authentication.truststore_warnings[0] #=> String
|
1032
1072
|
# resp.ownership_verification_certificate_arn #=> String
|
1073
|
+
# resp.management_policy #=> String
|
1074
|
+
# resp.policy #=> String
|
1033
1075
|
#
|
1034
1076
|
# @overload create_domain_name(params = {})
|
1035
1077
|
# @param [Hash] params ({})
|
@@ -1038,6 +1080,59 @@ module Aws::APIGateway
|
|
1038
1080
|
req.send_request(options)
|
1039
1081
|
end
|
1040
1082
|
|
1083
|
+
# Creates a domain name access association resource between an access
|
1084
|
+
# association source and a private custom domain name.
|
1085
|
+
#
|
1086
|
+
# @option params [required, String] :domain_name_arn
|
1087
|
+
# The ARN of the domain name.
|
1088
|
+
#
|
1089
|
+
# @option params [required, String] :access_association_source_type
|
1090
|
+
# The type of the domain name access association source.
|
1091
|
+
#
|
1092
|
+
# @option params [required, String] :access_association_source
|
1093
|
+
# The identifier of the domain name access association source. For a
|
1094
|
+
# VPCE, the value is the VPC endpoint ID.
|
1095
|
+
#
|
1096
|
+
# @option params [Hash<String,String>] :tags
|
1097
|
+
# The key-value map of strings. The valid character set is
|
1098
|
+
# \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
|
1099
|
+
# not start with `aws:`. The tag value can be up to 256 characters.
|
1100
|
+
#
|
1101
|
+
# @return [Types::DomainNameAccessAssociation] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1102
|
+
#
|
1103
|
+
# * {Types::DomainNameAccessAssociation#domain_name_access_association_arn #domain_name_access_association_arn} => String
|
1104
|
+
# * {Types::DomainNameAccessAssociation#domain_name_arn #domain_name_arn} => String
|
1105
|
+
# * {Types::DomainNameAccessAssociation#access_association_source_type #access_association_source_type} => String
|
1106
|
+
# * {Types::DomainNameAccessAssociation#access_association_source #access_association_source} => String
|
1107
|
+
# * {Types::DomainNameAccessAssociation#tags #tags} => Hash<String,String>
|
1108
|
+
#
|
1109
|
+
# @example Request syntax with placeholder values
|
1110
|
+
#
|
1111
|
+
# resp = client.create_domain_name_access_association({
|
1112
|
+
# domain_name_arn: "String", # required
|
1113
|
+
# access_association_source_type: "VPCE", # required, accepts VPCE
|
1114
|
+
# access_association_source: "String", # required
|
1115
|
+
# tags: {
|
1116
|
+
# "String" => "String",
|
1117
|
+
# },
|
1118
|
+
# })
|
1119
|
+
#
|
1120
|
+
# @example Response structure
|
1121
|
+
#
|
1122
|
+
# resp.domain_name_access_association_arn #=> String
|
1123
|
+
# resp.domain_name_arn #=> String
|
1124
|
+
# resp.access_association_source_type #=> String, one of "VPCE"
|
1125
|
+
# resp.access_association_source #=> String
|
1126
|
+
# resp.tags #=> Hash
|
1127
|
+
# resp.tags["String"] #=> String
|
1128
|
+
#
|
1129
|
+
# @overload create_domain_name_access_association(params = {})
|
1130
|
+
# @param [Hash] params ({})
|
1131
|
+
def create_domain_name_access_association(params = {}, options = {})
|
1132
|
+
req = build_request(:create_domain_name_access_association, params)
|
1133
|
+
req.send_request(options)
|
1134
|
+
end
|
1135
|
+
|
1041
1136
|
# Adds a new Model resource to an existing RestApi resource.
|
1042
1137
|
#
|
1043
1138
|
# @option params [required, String] :rest_api_id
|
@@ -1724,6 +1819,10 @@ module Aws::APIGateway
|
|
1724
1819
|
# @option params [required, String] :domain_name
|
1725
1820
|
# The domain name of the BasePathMapping resource to delete.
|
1726
1821
|
#
|
1822
|
+
# @option params [String] :domain_name_id
|
1823
|
+
# The identifier for the domain name resource. Supported only for
|
1824
|
+
# private custom domain names.
|
1825
|
+
#
|
1727
1826
|
# @option params [required, String] :base_path
|
1728
1827
|
# The base path name of the BasePathMapping resource to delete.
|
1729
1828
|
#
|
@@ -1735,6 +1834,7 @@ module Aws::APIGateway
|
|
1735
1834
|
#
|
1736
1835
|
# resp = client.delete_base_path_mapping({
|
1737
1836
|
# domain_name: "String", # required
|
1837
|
+
# domain_name_id: "String",
|
1738
1838
|
# base_path: "String", # required
|
1739
1839
|
# })
|
1740
1840
|
#
|
@@ -1843,12 +1943,17 @@ module Aws::APIGateway
|
|
1843
1943
|
# @option params [required, String] :domain_name
|
1844
1944
|
# The name of the DomainName resource to be deleted.
|
1845
1945
|
#
|
1946
|
+
# @option params [String] :domain_name_id
|
1947
|
+
# The identifier for the domain name resource. Supported only for
|
1948
|
+
# private custom domain names.
|
1949
|
+
#
|
1846
1950
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1847
1951
|
#
|
1848
1952
|
# @example Request syntax with placeholder values
|
1849
1953
|
#
|
1850
1954
|
# resp = client.delete_domain_name({
|
1851
1955
|
# domain_name: "String", # required
|
1956
|
+
# domain_name_id: "String",
|
1852
1957
|
# })
|
1853
1958
|
#
|
1854
1959
|
# @overload delete_domain_name(params = {})
|
@@ -1858,6 +1963,31 @@ module Aws::APIGateway
|
|
1858
1963
|
req.send_request(options)
|
1859
1964
|
end
|
1860
1965
|
|
1966
|
+
# Deletes the DomainNameAccessAssociation resource.
|
1967
|
+
#
|
1968
|
+
# Only the AWS account that created the DomainNameAccessAssociation
|
1969
|
+
# resource can delete it. To stop an access association source in
|
1970
|
+
# another AWS account from accessing your private custom domain name,
|
1971
|
+
# use the RejectDomainNameAccessAssociation operation.
|
1972
|
+
#
|
1973
|
+
# @option params [required, String] :domain_name_access_association_arn
|
1974
|
+
# The ARN of the domain name access association resource.
|
1975
|
+
#
|
1976
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1977
|
+
#
|
1978
|
+
# @example Request syntax with placeholder values
|
1979
|
+
#
|
1980
|
+
# resp = client.delete_domain_name_access_association({
|
1981
|
+
# domain_name_access_association_arn: "String", # required
|
1982
|
+
# })
|
1983
|
+
#
|
1984
|
+
# @overload delete_domain_name_access_association(params = {})
|
1985
|
+
# @param [Hash] params ({})
|
1986
|
+
def delete_domain_name_access_association(params = {}, options = {})
|
1987
|
+
req = build_request(:delete_domain_name_access_association, params)
|
1988
|
+
req.send_request(options)
|
1989
|
+
end
|
1990
|
+
|
1861
1991
|
# Clears any customization of a GatewayResponse of a specified response
|
1862
1992
|
# type on the given RestApi and resets it with the default settings.
|
1863
1993
|
#
|
@@ -2523,6 +2653,10 @@ module Aws::APIGateway
|
|
2523
2653
|
# @option params [required, String] :domain_name
|
2524
2654
|
# The domain name of the BasePathMapping resource to be described.
|
2525
2655
|
#
|
2656
|
+
# @option params [String] :domain_name_id
|
2657
|
+
# The identifier for the domain name resource. Supported only for
|
2658
|
+
# private custom domain names.
|
2659
|
+
#
|
2526
2660
|
# @option params [required, String] :base_path
|
2527
2661
|
# The base path name that callers of the API must provide as part of the
|
2528
2662
|
# URL after the domain name. This value must be unique for all of the
|
@@ -2539,6 +2673,7 @@ module Aws::APIGateway
|
|
2539
2673
|
#
|
2540
2674
|
# resp = client.get_base_path_mapping({
|
2541
2675
|
# domain_name: "String", # required
|
2676
|
+
# domain_name_id: "String",
|
2542
2677
|
# base_path: "String", # required
|
2543
2678
|
# })
|
2544
2679
|
#
|
@@ -2560,6 +2695,10 @@ module Aws::APIGateway
|
|
2560
2695
|
# @option params [required, String] :domain_name
|
2561
2696
|
# The domain name of a BasePathMapping resource.
|
2562
2697
|
#
|
2698
|
+
# @option params [String] :domain_name_id
|
2699
|
+
# The identifier for the domain name resource. Supported only for
|
2700
|
+
# private custom domain names.
|
2701
|
+
#
|
2563
2702
|
# @option params [String] :position
|
2564
2703
|
# The current pagination position in the paged result set.
|
2565
2704
|
#
|
@@ -2578,6 +2717,7 @@ module Aws::APIGateway
|
|
2578
2717
|
#
|
2579
2718
|
# resp = client.get_base_path_mappings({
|
2580
2719
|
# domain_name: "String", # required
|
2720
|
+
# domain_name_id: "String",
|
2581
2721
|
# position: "String",
|
2582
2722
|
# limit: 1,
|
2583
2723
|
# })
|
@@ -2956,9 +3096,15 @@ module Aws::APIGateway
|
|
2956
3096
|
# @option params [required, String] :domain_name
|
2957
3097
|
# The name of the DomainName resource.
|
2958
3098
|
#
|
3099
|
+
# @option params [String] :domain_name_id
|
3100
|
+
# The identifier for the domain name resource. Required for private
|
3101
|
+
# custom domain names.
|
3102
|
+
#
|
2959
3103
|
# @return [Types::DomainName] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2960
3104
|
#
|
2961
3105
|
# * {Types::DomainName#domain_name #domain_name} => String
|
3106
|
+
# * {Types::DomainName#domain_name_id #domain_name_id} => String
|
3107
|
+
# * {Types::DomainName#domain_name_arn #domain_name_arn} => String
|
2962
3108
|
# * {Types::DomainName#certificate_name #certificate_name} => String
|
2963
3109
|
# * {Types::DomainName#certificate_arn #certificate_arn} => String
|
2964
3110
|
# * {Types::DomainName#certificate_upload_date #certificate_upload_date} => Time
|
@@ -2975,16 +3121,21 @@ module Aws::APIGateway
|
|
2975
3121
|
# * {Types::DomainName#tags #tags} => Hash<String,String>
|
2976
3122
|
# * {Types::DomainName#mutual_tls_authentication #mutual_tls_authentication} => Types::MutualTlsAuthentication
|
2977
3123
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
3124
|
+
# * {Types::DomainName#management_policy #management_policy} => String
|
3125
|
+
# * {Types::DomainName#policy #policy} => String
|
2978
3126
|
#
|
2979
3127
|
# @example Request syntax with placeholder values
|
2980
3128
|
#
|
2981
3129
|
# resp = client.get_domain_name({
|
2982
3130
|
# domain_name: "String", # required
|
3131
|
+
# domain_name_id: "String",
|
2983
3132
|
# })
|
2984
3133
|
#
|
2985
3134
|
# @example Response structure
|
2986
3135
|
#
|
2987
3136
|
# resp.domain_name #=> String
|
3137
|
+
# resp.domain_name_id #=> String
|
3138
|
+
# resp.domain_name_arn #=> String
|
2988
3139
|
# resp.certificate_name #=> String
|
2989
3140
|
# resp.certificate_arn #=> String
|
2990
3141
|
# resp.certificate_upload_date #=> Time
|
@@ -3008,6 +3159,8 @@ module Aws::APIGateway
|
|
3008
3159
|
# resp.mutual_tls_authentication.truststore_warnings #=> Array
|
3009
3160
|
# resp.mutual_tls_authentication.truststore_warnings[0] #=> String
|
3010
3161
|
# resp.ownership_verification_certificate_arn #=> String
|
3162
|
+
# resp.management_policy #=> String
|
3163
|
+
# resp.policy #=> String
|
3011
3164
|
#
|
3012
3165
|
# @overload get_domain_name(params = {})
|
3013
3166
|
# @param [Hash] params ({})
|
@@ -3016,6 +3169,52 @@ module Aws::APIGateway
|
|
3016
3169
|
req.send_request(options)
|
3017
3170
|
end
|
3018
3171
|
|
3172
|
+
# Represents a collection on DomainNameAccessAssociations resources.
|
3173
|
+
#
|
3174
|
+
# @option params [String] :position
|
3175
|
+
# The current pagination position in the paged result set.
|
3176
|
+
#
|
3177
|
+
# @option params [Integer] :limit
|
3178
|
+
# The maximum number of returned results per page. The default value is
|
3179
|
+
# 25 and the maximum value is 500.
|
3180
|
+
#
|
3181
|
+
# @option params [String] :resource_owner
|
3182
|
+
# The owner of the domain name access association. Use `SELF` to only
|
3183
|
+
# list the domain name access associations owned by your own account.
|
3184
|
+
# Use `OTHER_ACCOUNTS` to list the domain name access associations with
|
3185
|
+
# your private custom domain names that are owned by other AWS accounts.
|
3186
|
+
#
|
3187
|
+
# @return [Types::DomainNameAccessAssociations] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3188
|
+
#
|
3189
|
+
# * {Types::DomainNameAccessAssociations#position #position} => String
|
3190
|
+
# * {Types::DomainNameAccessAssociations#items #items} => Array<Types::DomainNameAccessAssociation>
|
3191
|
+
#
|
3192
|
+
# @example Request syntax with placeholder values
|
3193
|
+
#
|
3194
|
+
# resp = client.get_domain_name_access_associations({
|
3195
|
+
# position: "String",
|
3196
|
+
# limit: 1,
|
3197
|
+
# resource_owner: "SELF", # accepts SELF, OTHER_ACCOUNTS
|
3198
|
+
# })
|
3199
|
+
#
|
3200
|
+
# @example Response structure
|
3201
|
+
#
|
3202
|
+
# resp.position #=> String
|
3203
|
+
# resp.items #=> Array
|
3204
|
+
# resp.items[0].domain_name_access_association_arn #=> String
|
3205
|
+
# resp.items[0].domain_name_arn #=> String
|
3206
|
+
# resp.items[0].access_association_source_type #=> String, one of "VPCE"
|
3207
|
+
# resp.items[0].access_association_source #=> String
|
3208
|
+
# resp.items[0].tags #=> Hash
|
3209
|
+
# resp.items[0].tags["String"] #=> String
|
3210
|
+
#
|
3211
|
+
# @overload get_domain_name_access_associations(params = {})
|
3212
|
+
# @param [Hash] params ({})
|
3213
|
+
def get_domain_name_access_associations(params = {}, options = {})
|
3214
|
+
req = build_request(:get_domain_name_access_associations, params)
|
3215
|
+
req.send_request(options)
|
3216
|
+
end
|
3217
|
+
|
3019
3218
|
# Represents a collection of DomainName resources.
|
3020
3219
|
#
|
3021
3220
|
# @option params [String] :position
|
@@ -3025,6 +3224,9 @@ module Aws::APIGateway
|
|
3025
3224
|
# The maximum number of returned results per page. The default value is
|
3026
3225
|
# 25 and the maximum value is 500.
|
3027
3226
|
#
|
3227
|
+
# @option params [String] :resource_owner
|
3228
|
+
# The owner of the domain name access association.
|
3229
|
+
#
|
3028
3230
|
# @return [Types::DomainNames] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3029
3231
|
#
|
3030
3232
|
# * {Types::DomainNames#position #position} => String
|
@@ -3037,6 +3239,7 @@ module Aws::APIGateway
|
|
3037
3239
|
# resp = client.get_domain_names({
|
3038
3240
|
# position: "String",
|
3039
3241
|
# limit: 1,
|
3242
|
+
# resource_owner: "SELF", # accepts SELF, OTHER_ACCOUNTS
|
3040
3243
|
# })
|
3041
3244
|
#
|
3042
3245
|
# @example Response structure
|
@@ -3044,6 +3247,8 @@ module Aws::APIGateway
|
|
3044
3247
|
# resp.position #=> String
|
3045
3248
|
# resp.items #=> Array
|
3046
3249
|
# resp.items[0].domain_name #=> String
|
3250
|
+
# resp.items[0].domain_name_id #=> String
|
3251
|
+
# resp.items[0].domain_name_arn #=> String
|
3047
3252
|
# resp.items[0].certificate_name #=> String
|
3048
3253
|
# resp.items[0].certificate_arn #=> String
|
3049
3254
|
# resp.items[0].certificate_upload_date #=> Time
|
@@ -3067,6 +3272,8 @@ module Aws::APIGateway
|
|
3067
3272
|
# resp.items[0].mutual_tls_authentication.truststore_warnings #=> Array
|
3068
3273
|
# resp.items[0].mutual_tls_authentication.truststore_warnings[0] #=> String
|
3069
3274
|
# resp.items[0].ownership_verification_certificate_arn #=> String
|
3275
|
+
# resp.items[0].management_policy #=> String
|
3276
|
+
# resp.items[0].policy #=> String
|
3070
3277
|
#
|
3071
3278
|
# @overload get_domain_names(params = {})
|
3072
3279
|
# @param [Hash] params ({})
|
@@ -5438,6 +5645,36 @@ module Aws::APIGateway
|
|
5438
5645
|
req.send_request(options)
|
5439
5646
|
end
|
5440
5647
|
|
5648
|
+
# Rejects a domain name access association with a private custom domain
|
5649
|
+
# name.
|
5650
|
+
#
|
5651
|
+
# To reject a domain name access association with an access association
|
5652
|
+
# source in another AWS account, use this operation. To remove a domain
|
5653
|
+
# name access association with an access association source in your own
|
5654
|
+
# account, use the DeleteDomainNameAccessAssociation operation.
|
5655
|
+
#
|
5656
|
+
# @option params [required, String] :domain_name_access_association_arn
|
5657
|
+
# The ARN of the domain name access association resource.
|
5658
|
+
#
|
5659
|
+
# @option params [required, String] :domain_name_arn
|
5660
|
+
# The ARN of the domain name.
|
5661
|
+
#
|
5662
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5663
|
+
#
|
5664
|
+
# @example Request syntax with placeholder values
|
5665
|
+
#
|
5666
|
+
# resp = client.reject_domain_name_access_association({
|
5667
|
+
# domain_name_access_association_arn: "String", # required
|
5668
|
+
# domain_name_arn: "String", # required
|
5669
|
+
# })
|
5670
|
+
#
|
5671
|
+
# @overload reject_domain_name_access_association(params = {})
|
5672
|
+
# @param [Hash] params ({})
|
5673
|
+
def reject_domain_name_access_association(params = {}, options = {})
|
5674
|
+
req = build_request(:reject_domain_name_access_association, params)
|
5675
|
+
req.send_request(options)
|
5676
|
+
end
|
5677
|
+
|
5441
5678
|
# Adds or updates a tag on a given resource.
|
5442
5679
|
#
|
5443
5680
|
# @option params [required, String] :resource_arn
|
@@ -5837,6 +6074,10 @@ module Aws::APIGateway
|
|
5837
6074
|
# @option params [required, String] :domain_name
|
5838
6075
|
# The domain name of the BasePathMapping resource to change.
|
5839
6076
|
#
|
6077
|
+
# @option params [String] :domain_name_id
|
6078
|
+
# The identifier for the domain name resource. Supported only for
|
6079
|
+
# private custom domain names.
|
6080
|
+
#
|
5840
6081
|
# @option params [required, String] :base_path
|
5841
6082
|
# The base path of the BasePathMapping resource to change.
|
5842
6083
|
#
|
@@ -5860,6 +6101,7 @@ module Aws::APIGateway
|
|
5860
6101
|
#
|
5861
6102
|
# resp = client.update_base_path_mapping({
|
5862
6103
|
# domain_name: "String", # required
|
6104
|
+
# domain_name_id: "String",
|
5863
6105
|
# base_path: "String", # required
|
5864
6106
|
# patch_operations: [
|
5865
6107
|
# {
|
@@ -6102,6 +6344,10 @@ module Aws::APIGateway
|
|
6102
6344
|
# @option params [required, String] :domain_name
|
6103
6345
|
# The name of the DomainName resource to be changed.
|
6104
6346
|
#
|
6347
|
+
# @option params [String] :domain_name_id
|
6348
|
+
# The identifier for the domain name resource. Supported only for
|
6349
|
+
# private custom domain names.
|
6350
|
+
#
|
6105
6351
|
# @option params [Array<Types::PatchOperation>] :patch_operations
|
6106
6352
|
# For more information about supported patch operations, see [Patch
|
6107
6353
|
# Operations][1].
|
@@ -6113,6 +6359,8 @@ module Aws::APIGateway
|
|
6113
6359
|
# @return [Types::DomainName] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6114
6360
|
#
|
6115
6361
|
# * {Types::DomainName#domain_name #domain_name} => String
|
6362
|
+
# * {Types::DomainName#domain_name_id #domain_name_id} => String
|
6363
|
+
# * {Types::DomainName#domain_name_arn #domain_name_arn} => String
|
6116
6364
|
# * {Types::DomainName#certificate_name #certificate_name} => String
|
6117
6365
|
# * {Types::DomainName#certificate_arn #certificate_arn} => String
|
6118
6366
|
# * {Types::DomainName#certificate_upload_date #certificate_upload_date} => Time
|
@@ -6129,11 +6377,14 @@ module Aws::APIGateway
|
|
6129
6377
|
# * {Types::DomainName#tags #tags} => Hash<String,String>
|
6130
6378
|
# * {Types::DomainName#mutual_tls_authentication #mutual_tls_authentication} => Types::MutualTlsAuthentication
|
6131
6379
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
6380
|
+
# * {Types::DomainName#management_policy #management_policy} => String
|
6381
|
+
# * {Types::DomainName#policy #policy} => String
|
6132
6382
|
#
|
6133
6383
|
# @example Request syntax with placeholder values
|
6134
6384
|
#
|
6135
6385
|
# resp = client.update_domain_name({
|
6136
6386
|
# domain_name: "String", # required
|
6387
|
+
# domain_name_id: "String",
|
6137
6388
|
# patch_operations: [
|
6138
6389
|
# {
|
6139
6390
|
# op: "add", # accepts add, remove, replace, move, copy, test
|
@@ -6147,6 +6398,8 @@ module Aws::APIGateway
|
|
6147
6398
|
# @example Response structure
|
6148
6399
|
#
|
6149
6400
|
# resp.domain_name #=> String
|
6401
|
+
# resp.domain_name_id #=> String
|
6402
|
+
# resp.domain_name_arn #=> String
|
6150
6403
|
# resp.certificate_name #=> String
|
6151
6404
|
# resp.certificate_arn #=> String
|
6152
6405
|
# resp.certificate_upload_date #=> Time
|
@@ -6170,6 +6423,8 @@ module Aws::APIGateway
|
|
6170
6423
|
# resp.mutual_tls_authentication.truststore_warnings #=> Array
|
6171
6424
|
# resp.mutual_tls_authentication.truststore_warnings[0] #=> String
|
6172
6425
|
# resp.ownership_verification_certificate_arn #=> String
|
6426
|
+
# resp.management_policy #=> String
|
6427
|
+
# resp.policy #=> String
|
6173
6428
|
#
|
6174
6429
|
# @overload update_domain_name(params = {})
|
6175
6430
|
# @param [Hash] params ({})
|
@@ -7122,7 +7377,7 @@ module Aws::APIGateway
|
|
7122
7377
|
tracer: tracer
|
7123
7378
|
)
|
7124
7379
|
context[:gem_name] = 'aws-sdk-apigateway'
|
7125
|
-
context[:gem_version] = '1.
|
7380
|
+
context[:gem_version] = '1.111.0'
|
7126
7381
|
Seahorse::Client::Request.new(handlers, context)
|
7127
7382
|
end
|
7128
7383
|
|