aws-sdk-apigateway 1.109.0 → 1.110.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 +238 -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 +69 -4
- data/sig/types.rbs +55 -0
- 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: 00434fd92642314675f07ef420970c34a66e70612d416b00f9f9c0e56a45662a
|
4
|
+
data.tar.gz: 1039ec1eb2813f7ffd8684bc7236ab7cf3c0c3d96d5c7dc65bdd5bdbb2e064d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c5dc2ea054ab6b02fca917f4401ff3f12566a338f05f36c2f742428db730382a8380dcb7ddbb5bd33eb47b3445869437d011bc6b65399dd06023660c1ff5caf
|
7
|
+
data.tar.gz: 1097e15d9f04a8726dcd8168b98b331e0a736fe7b0eda1d9d836a5890c7554a1ed448850f147aba13e87e0f88a7bcbf60c0c3e7ccd6ef05f2ee7aff2ac66e9ff
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.110.0
|
@@ -671,6 +671,10 @@ module Aws::APIGateway
|
|
671
671
|
# @option params [required, String] :domain_name
|
672
672
|
# The domain name of the BasePathMapping resource to create.
|
673
673
|
#
|
674
|
+
# @option params [String] :domain_name_id
|
675
|
+
# The identifier for the domain name resource. Supported only for
|
676
|
+
# private custom domain names.
|
677
|
+
#
|
674
678
|
# @option params [String] :base_path
|
675
679
|
# The base path name that callers of the API must provide as part of the
|
676
680
|
# URL after the domain name. This value must be unique for all of the
|
@@ -695,6 +699,7 @@ module Aws::APIGateway
|
|
695
699
|
#
|
696
700
|
# resp = client.create_base_path_mapping({
|
697
701
|
# domain_name: "String", # required
|
702
|
+
# domain_name_id: "String",
|
698
703
|
# base_path: "String",
|
699
704
|
# rest_api_id: "String", # required
|
700
705
|
# stage: "String",
|
@@ -899,12 +904,12 @@ module Aws::APIGateway
|
|
899
904
|
#
|
900
905
|
# @option params [String] :certificate_name
|
901
906
|
# The user-friendly name of the certificate that will be used by
|
902
|
-
# edge-optimized endpoint for this domain name.
|
907
|
+
# edge-optimized endpoint or private endpoint for this domain name.
|
903
908
|
#
|
904
909
|
# @option params [String] :certificate_body
|
905
910
|
# \[Deprecated\] The body of the server certificate that will be used by
|
906
|
-
# edge-optimized endpoint for this domain name
|
907
|
-
# certificate authority.
|
911
|
+
# edge-optimized endpoint or private endpoint for this domain name
|
912
|
+
# provided by your certificate authority.
|
908
913
|
#
|
909
914
|
# @option params [String] :certificate_private_key
|
910
915
|
# \[Deprecated\] Your edge-optimized endpoint's domain name
|
@@ -921,8 +926,8 @@ module Aws::APIGateway
|
|
921
926
|
#
|
922
927
|
# @option params [String] :certificate_arn
|
923
928
|
# 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.
|
929
|
+
# be used by edge-optimized endpoint or private endpoint for this domain
|
930
|
+
# name. Certificate Manager is the only supported source.
|
926
931
|
#
|
927
932
|
# @option params [String] :regional_certificate_name
|
928
933
|
# The user-friendly name of the certificate that will be used by
|
@@ -958,9 +963,16 @@ module Aws::APIGateway
|
|
958
963
|
# using an ACM imported or private CA certificate ARN as the
|
959
964
|
# regionalCertificateArn.
|
960
965
|
#
|
966
|
+
# @option params [String] :policy
|
967
|
+
# A stringified JSON policy document that applies to the `execute-api`
|
968
|
+
# service for this DomainName regardless of the caller and Method
|
969
|
+
# configuration. Supported only for private custom domain names.
|
970
|
+
#
|
961
971
|
# @return [Types::DomainName] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
962
972
|
#
|
963
973
|
# * {Types::DomainName#domain_name #domain_name} => String
|
974
|
+
# * {Types::DomainName#domain_name_id #domain_name_id} => String
|
975
|
+
# * {Types::DomainName#domain_name_arn #domain_name_arn} => String
|
964
976
|
# * {Types::DomainName#certificate_name #certificate_name} => String
|
965
977
|
# * {Types::DomainName#certificate_arn #certificate_arn} => String
|
966
978
|
# * {Types::DomainName#certificate_upload_date #certificate_upload_date} => Time
|
@@ -977,6 +989,8 @@ module Aws::APIGateway
|
|
977
989
|
# * {Types::DomainName#tags #tags} => Hash<String,String>
|
978
990
|
# * {Types::DomainName#mutual_tls_authentication #mutual_tls_authentication} => Types::MutualTlsAuthentication
|
979
991
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
992
|
+
# * {Types::DomainName#management_policy #management_policy} => String
|
993
|
+
# * {Types::DomainName#policy #policy} => String
|
980
994
|
#
|
981
995
|
# @example Request syntax with placeholder values
|
982
996
|
#
|
@@ -1002,11 +1016,14 @@ module Aws::APIGateway
|
|
1002
1016
|
# truststore_version: "String",
|
1003
1017
|
# },
|
1004
1018
|
# ownership_verification_certificate_arn: "String",
|
1019
|
+
# policy: "String",
|
1005
1020
|
# })
|
1006
1021
|
#
|
1007
1022
|
# @example Response structure
|
1008
1023
|
#
|
1009
1024
|
# resp.domain_name #=> String
|
1025
|
+
# resp.domain_name_id #=> String
|
1026
|
+
# resp.domain_name_arn #=> String
|
1010
1027
|
# resp.certificate_name #=> String
|
1011
1028
|
# resp.certificate_arn #=> String
|
1012
1029
|
# resp.certificate_upload_date #=> Time
|
@@ -1030,6 +1047,8 @@ module Aws::APIGateway
|
|
1030
1047
|
# resp.mutual_tls_authentication.truststore_warnings #=> Array
|
1031
1048
|
# resp.mutual_tls_authentication.truststore_warnings[0] #=> String
|
1032
1049
|
# resp.ownership_verification_certificate_arn #=> String
|
1050
|
+
# resp.management_policy #=> String
|
1051
|
+
# resp.policy #=> String
|
1033
1052
|
#
|
1034
1053
|
# @overload create_domain_name(params = {})
|
1035
1054
|
# @param [Hash] params ({})
|
@@ -1038,6 +1057,59 @@ module Aws::APIGateway
|
|
1038
1057
|
req.send_request(options)
|
1039
1058
|
end
|
1040
1059
|
|
1060
|
+
# Creates a domain name access association resource between an access
|
1061
|
+
# association source and a private custom domain name.
|
1062
|
+
#
|
1063
|
+
# @option params [required, String] :domain_name_arn
|
1064
|
+
# The ARN of the domain name.
|
1065
|
+
#
|
1066
|
+
# @option params [required, String] :access_association_source_type
|
1067
|
+
# The type of the domain name access association source.
|
1068
|
+
#
|
1069
|
+
# @option params [required, String] :access_association_source
|
1070
|
+
# The identifier of the domain name access association source. For a
|
1071
|
+
# VPCE, the value is the VPC endpoint ID.
|
1072
|
+
#
|
1073
|
+
# @option params [Hash<String,String>] :tags
|
1074
|
+
# The key-value map of strings. The valid character set is
|
1075
|
+
# \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
|
1076
|
+
# not start with `aws:`. The tag value can be up to 256 characters.
|
1077
|
+
#
|
1078
|
+
# @return [Types::DomainNameAccessAssociation] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1079
|
+
#
|
1080
|
+
# * {Types::DomainNameAccessAssociation#domain_name_access_association_arn #domain_name_access_association_arn} => String
|
1081
|
+
# * {Types::DomainNameAccessAssociation#domain_name_arn #domain_name_arn} => String
|
1082
|
+
# * {Types::DomainNameAccessAssociation#access_association_source_type #access_association_source_type} => String
|
1083
|
+
# * {Types::DomainNameAccessAssociation#access_association_source #access_association_source} => String
|
1084
|
+
# * {Types::DomainNameAccessAssociation#tags #tags} => Hash<String,String>
|
1085
|
+
#
|
1086
|
+
# @example Request syntax with placeholder values
|
1087
|
+
#
|
1088
|
+
# resp = client.create_domain_name_access_association({
|
1089
|
+
# domain_name_arn: "String", # required
|
1090
|
+
# access_association_source_type: "VPCE", # required, accepts VPCE
|
1091
|
+
# access_association_source: "String", # required
|
1092
|
+
# tags: {
|
1093
|
+
# "String" => "String",
|
1094
|
+
# },
|
1095
|
+
# })
|
1096
|
+
#
|
1097
|
+
# @example Response structure
|
1098
|
+
#
|
1099
|
+
# resp.domain_name_access_association_arn #=> String
|
1100
|
+
# resp.domain_name_arn #=> String
|
1101
|
+
# resp.access_association_source_type #=> String, one of "VPCE"
|
1102
|
+
# resp.access_association_source #=> String
|
1103
|
+
# resp.tags #=> Hash
|
1104
|
+
# resp.tags["String"] #=> String
|
1105
|
+
#
|
1106
|
+
# @overload create_domain_name_access_association(params = {})
|
1107
|
+
# @param [Hash] params ({})
|
1108
|
+
def create_domain_name_access_association(params = {}, options = {})
|
1109
|
+
req = build_request(:create_domain_name_access_association, params)
|
1110
|
+
req.send_request(options)
|
1111
|
+
end
|
1112
|
+
|
1041
1113
|
# Adds a new Model resource to an existing RestApi resource.
|
1042
1114
|
#
|
1043
1115
|
# @option params [required, String] :rest_api_id
|
@@ -1724,6 +1796,10 @@ module Aws::APIGateway
|
|
1724
1796
|
# @option params [required, String] :domain_name
|
1725
1797
|
# The domain name of the BasePathMapping resource to delete.
|
1726
1798
|
#
|
1799
|
+
# @option params [String] :domain_name_id
|
1800
|
+
# The identifier for the domain name resource. Supported only for
|
1801
|
+
# private custom domain names.
|
1802
|
+
#
|
1727
1803
|
# @option params [required, String] :base_path
|
1728
1804
|
# The base path name of the BasePathMapping resource to delete.
|
1729
1805
|
#
|
@@ -1735,6 +1811,7 @@ module Aws::APIGateway
|
|
1735
1811
|
#
|
1736
1812
|
# resp = client.delete_base_path_mapping({
|
1737
1813
|
# domain_name: "String", # required
|
1814
|
+
# domain_name_id: "String",
|
1738
1815
|
# base_path: "String", # required
|
1739
1816
|
# })
|
1740
1817
|
#
|
@@ -1843,12 +1920,17 @@ module Aws::APIGateway
|
|
1843
1920
|
# @option params [required, String] :domain_name
|
1844
1921
|
# The name of the DomainName resource to be deleted.
|
1845
1922
|
#
|
1923
|
+
# @option params [String] :domain_name_id
|
1924
|
+
# The identifier for the domain name resource. Supported only for
|
1925
|
+
# private custom domain names.
|
1926
|
+
#
|
1846
1927
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1847
1928
|
#
|
1848
1929
|
# @example Request syntax with placeholder values
|
1849
1930
|
#
|
1850
1931
|
# resp = client.delete_domain_name({
|
1851
1932
|
# domain_name: "String", # required
|
1933
|
+
# domain_name_id: "String",
|
1852
1934
|
# })
|
1853
1935
|
#
|
1854
1936
|
# @overload delete_domain_name(params = {})
|
@@ -1858,6 +1940,31 @@ module Aws::APIGateway
|
|
1858
1940
|
req.send_request(options)
|
1859
1941
|
end
|
1860
1942
|
|
1943
|
+
# Deletes the DomainNameAccessAssociation resource.
|
1944
|
+
#
|
1945
|
+
# Only the AWS account that created the DomainNameAccessAssociation
|
1946
|
+
# resource can delete it. To stop an access association source in
|
1947
|
+
# another AWS account from accessing your private custom domain name,
|
1948
|
+
# use the RejectDomainNameAccessAssociation operation.
|
1949
|
+
#
|
1950
|
+
# @option params [required, String] :domain_name_access_association_arn
|
1951
|
+
# The ARN of the domain name access association resource.
|
1952
|
+
#
|
1953
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1954
|
+
#
|
1955
|
+
# @example Request syntax with placeholder values
|
1956
|
+
#
|
1957
|
+
# resp = client.delete_domain_name_access_association({
|
1958
|
+
# domain_name_access_association_arn: "String", # required
|
1959
|
+
# })
|
1960
|
+
#
|
1961
|
+
# @overload delete_domain_name_access_association(params = {})
|
1962
|
+
# @param [Hash] params ({})
|
1963
|
+
def delete_domain_name_access_association(params = {}, options = {})
|
1964
|
+
req = build_request(:delete_domain_name_access_association, params)
|
1965
|
+
req.send_request(options)
|
1966
|
+
end
|
1967
|
+
|
1861
1968
|
# Clears any customization of a GatewayResponse of a specified response
|
1862
1969
|
# type on the given RestApi and resets it with the default settings.
|
1863
1970
|
#
|
@@ -2523,6 +2630,10 @@ module Aws::APIGateway
|
|
2523
2630
|
# @option params [required, String] :domain_name
|
2524
2631
|
# The domain name of the BasePathMapping resource to be described.
|
2525
2632
|
#
|
2633
|
+
# @option params [String] :domain_name_id
|
2634
|
+
# The identifier for the domain name resource. Supported only for
|
2635
|
+
# private custom domain names.
|
2636
|
+
#
|
2526
2637
|
# @option params [required, String] :base_path
|
2527
2638
|
# The base path name that callers of the API must provide as part of the
|
2528
2639
|
# URL after the domain name. This value must be unique for all of the
|
@@ -2539,6 +2650,7 @@ module Aws::APIGateway
|
|
2539
2650
|
#
|
2540
2651
|
# resp = client.get_base_path_mapping({
|
2541
2652
|
# domain_name: "String", # required
|
2653
|
+
# domain_name_id: "String",
|
2542
2654
|
# base_path: "String", # required
|
2543
2655
|
# })
|
2544
2656
|
#
|
@@ -2560,6 +2672,10 @@ module Aws::APIGateway
|
|
2560
2672
|
# @option params [required, String] :domain_name
|
2561
2673
|
# The domain name of a BasePathMapping resource.
|
2562
2674
|
#
|
2675
|
+
# @option params [String] :domain_name_id
|
2676
|
+
# The identifier for the domain name resource. Supported only for
|
2677
|
+
# private custom domain names.
|
2678
|
+
#
|
2563
2679
|
# @option params [String] :position
|
2564
2680
|
# The current pagination position in the paged result set.
|
2565
2681
|
#
|
@@ -2578,6 +2694,7 @@ module Aws::APIGateway
|
|
2578
2694
|
#
|
2579
2695
|
# resp = client.get_base_path_mappings({
|
2580
2696
|
# domain_name: "String", # required
|
2697
|
+
# domain_name_id: "String",
|
2581
2698
|
# position: "String",
|
2582
2699
|
# limit: 1,
|
2583
2700
|
# })
|
@@ -2956,9 +3073,15 @@ module Aws::APIGateway
|
|
2956
3073
|
# @option params [required, String] :domain_name
|
2957
3074
|
# The name of the DomainName resource.
|
2958
3075
|
#
|
3076
|
+
# @option params [String] :domain_name_id
|
3077
|
+
# The identifier for the domain name resource. Supported only for
|
3078
|
+
# private custom domain names.
|
3079
|
+
#
|
2959
3080
|
# @return [Types::DomainName] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2960
3081
|
#
|
2961
3082
|
# * {Types::DomainName#domain_name #domain_name} => String
|
3083
|
+
# * {Types::DomainName#domain_name_id #domain_name_id} => String
|
3084
|
+
# * {Types::DomainName#domain_name_arn #domain_name_arn} => String
|
2962
3085
|
# * {Types::DomainName#certificate_name #certificate_name} => String
|
2963
3086
|
# * {Types::DomainName#certificate_arn #certificate_arn} => String
|
2964
3087
|
# * {Types::DomainName#certificate_upload_date #certificate_upload_date} => Time
|
@@ -2975,16 +3098,21 @@ module Aws::APIGateway
|
|
2975
3098
|
# * {Types::DomainName#tags #tags} => Hash<String,String>
|
2976
3099
|
# * {Types::DomainName#mutual_tls_authentication #mutual_tls_authentication} => Types::MutualTlsAuthentication
|
2977
3100
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
3101
|
+
# * {Types::DomainName#management_policy #management_policy} => String
|
3102
|
+
# * {Types::DomainName#policy #policy} => String
|
2978
3103
|
#
|
2979
3104
|
# @example Request syntax with placeholder values
|
2980
3105
|
#
|
2981
3106
|
# resp = client.get_domain_name({
|
2982
3107
|
# domain_name: "String", # required
|
3108
|
+
# domain_name_id: "String",
|
2983
3109
|
# })
|
2984
3110
|
#
|
2985
3111
|
# @example Response structure
|
2986
3112
|
#
|
2987
3113
|
# resp.domain_name #=> String
|
3114
|
+
# resp.domain_name_id #=> String
|
3115
|
+
# resp.domain_name_arn #=> String
|
2988
3116
|
# resp.certificate_name #=> String
|
2989
3117
|
# resp.certificate_arn #=> String
|
2990
3118
|
# resp.certificate_upload_date #=> Time
|
@@ -3008,6 +3136,8 @@ module Aws::APIGateway
|
|
3008
3136
|
# resp.mutual_tls_authentication.truststore_warnings #=> Array
|
3009
3137
|
# resp.mutual_tls_authentication.truststore_warnings[0] #=> String
|
3010
3138
|
# resp.ownership_verification_certificate_arn #=> String
|
3139
|
+
# resp.management_policy #=> String
|
3140
|
+
# resp.policy #=> String
|
3011
3141
|
#
|
3012
3142
|
# @overload get_domain_name(params = {})
|
3013
3143
|
# @param [Hash] params ({})
|
@@ -3016,6 +3146,52 @@ module Aws::APIGateway
|
|
3016
3146
|
req.send_request(options)
|
3017
3147
|
end
|
3018
3148
|
|
3149
|
+
# Represents a collection on DomainNameAccessAssociations resources.
|
3150
|
+
#
|
3151
|
+
# @option params [String] :position
|
3152
|
+
# The current pagination position in the paged result set.
|
3153
|
+
#
|
3154
|
+
# @option params [Integer] :limit
|
3155
|
+
# The maximum number of returned results per page. The default value is
|
3156
|
+
# 25 and the maximum value is 500.
|
3157
|
+
#
|
3158
|
+
# @option params [String] :resource_owner
|
3159
|
+
# The owner of the domain name access association. Use `SELF` to only
|
3160
|
+
# list the domain name access associations owned by your own account.
|
3161
|
+
# Use `OTHER_ACCOUNTS` to list the domain name access associations with
|
3162
|
+
# your private custom domain names that are owned by other AWS accounts.
|
3163
|
+
#
|
3164
|
+
# @return [Types::DomainNameAccessAssociations] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3165
|
+
#
|
3166
|
+
# * {Types::DomainNameAccessAssociations#position #position} => String
|
3167
|
+
# * {Types::DomainNameAccessAssociations#items #items} => Array<Types::DomainNameAccessAssociation>
|
3168
|
+
#
|
3169
|
+
# @example Request syntax with placeholder values
|
3170
|
+
#
|
3171
|
+
# resp = client.get_domain_name_access_associations({
|
3172
|
+
# position: "String",
|
3173
|
+
# limit: 1,
|
3174
|
+
# resource_owner: "SELF", # accepts SELF, OTHER_ACCOUNTS
|
3175
|
+
# })
|
3176
|
+
#
|
3177
|
+
# @example Response structure
|
3178
|
+
#
|
3179
|
+
# resp.position #=> String
|
3180
|
+
# resp.items #=> Array
|
3181
|
+
# resp.items[0].domain_name_access_association_arn #=> String
|
3182
|
+
# resp.items[0].domain_name_arn #=> String
|
3183
|
+
# resp.items[0].access_association_source_type #=> String, one of "VPCE"
|
3184
|
+
# resp.items[0].access_association_source #=> String
|
3185
|
+
# resp.items[0].tags #=> Hash
|
3186
|
+
# resp.items[0].tags["String"] #=> String
|
3187
|
+
#
|
3188
|
+
# @overload get_domain_name_access_associations(params = {})
|
3189
|
+
# @param [Hash] params ({})
|
3190
|
+
def get_domain_name_access_associations(params = {}, options = {})
|
3191
|
+
req = build_request(:get_domain_name_access_associations, params)
|
3192
|
+
req.send_request(options)
|
3193
|
+
end
|
3194
|
+
|
3019
3195
|
# Represents a collection of DomainName resources.
|
3020
3196
|
#
|
3021
3197
|
# @option params [String] :position
|
@@ -3025,6 +3201,9 @@ module Aws::APIGateway
|
|
3025
3201
|
# The maximum number of returned results per page. The default value is
|
3026
3202
|
# 25 and the maximum value is 500.
|
3027
3203
|
#
|
3204
|
+
# @option params [String] :resource_owner
|
3205
|
+
# The owner of the domain name access association.
|
3206
|
+
#
|
3028
3207
|
# @return [Types::DomainNames] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3029
3208
|
#
|
3030
3209
|
# * {Types::DomainNames#position #position} => String
|
@@ -3037,6 +3216,7 @@ module Aws::APIGateway
|
|
3037
3216
|
# resp = client.get_domain_names({
|
3038
3217
|
# position: "String",
|
3039
3218
|
# limit: 1,
|
3219
|
+
# resource_owner: "SELF", # accepts SELF, OTHER_ACCOUNTS
|
3040
3220
|
# })
|
3041
3221
|
#
|
3042
3222
|
# @example Response structure
|
@@ -3044,6 +3224,8 @@ module Aws::APIGateway
|
|
3044
3224
|
# resp.position #=> String
|
3045
3225
|
# resp.items #=> Array
|
3046
3226
|
# resp.items[0].domain_name #=> String
|
3227
|
+
# resp.items[0].domain_name_id #=> String
|
3228
|
+
# resp.items[0].domain_name_arn #=> String
|
3047
3229
|
# resp.items[0].certificate_name #=> String
|
3048
3230
|
# resp.items[0].certificate_arn #=> String
|
3049
3231
|
# resp.items[0].certificate_upload_date #=> Time
|
@@ -3067,6 +3249,8 @@ module Aws::APIGateway
|
|
3067
3249
|
# resp.items[0].mutual_tls_authentication.truststore_warnings #=> Array
|
3068
3250
|
# resp.items[0].mutual_tls_authentication.truststore_warnings[0] #=> String
|
3069
3251
|
# resp.items[0].ownership_verification_certificate_arn #=> String
|
3252
|
+
# resp.items[0].management_policy #=> String
|
3253
|
+
# resp.items[0].policy #=> String
|
3070
3254
|
#
|
3071
3255
|
# @overload get_domain_names(params = {})
|
3072
3256
|
# @param [Hash] params ({})
|
@@ -5438,6 +5622,36 @@ module Aws::APIGateway
|
|
5438
5622
|
req.send_request(options)
|
5439
5623
|
end
|
5440
5624
|
|
5625
|
+
# Rejects a domain name access association with a private custom domain
|
5626
|
+
# name.
|
5627
|
+
#
|
5628
|
+
# To reject a domain name access association with an access association
|
5629
|
+
# source in another AWS account, use this operation. To remove a domain
|
5630
|
+
# name access association with an access association source in your own
|
5631
|
+
# account, use the DeleteDomainNameAccessAssociation operation.
|
5632
|
+
#
|
5633
|
+
# @option params [required, String] :domain_name_access_association_arn
|
5634
|
+
# The ARN of the domain name access association resource.
|
5635
|
+
#
|
5636
|
+
# @option params [required, String] :domain_name_arn
|
5637
|
+
# The ARN of the domain name.
|
5638
|
+
#
|
5639
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5640
|
+
#
|
5641
|
+
# @example Request syntax with placeholder values
|
5642
|
+
#
|
5643
|
+
# resp = client.reject_domain_name_access_association({
|
5644
|
+
# domain_name_access_association_arn: "String", # required
|
5645
|
+
# domain_name_arn: "String", # required
|
5646
|
+
# })
|
5647
|
+
#
|
5648
|
+
# @overload reject_domain_name_access_association(params = {})
|
5649
|
+
# @param [Hash] params ({})
|
5650
|
+
def reject_domain_name_access_association(params = {}, options = {})
|
5651
|
+
req = build_request(:reject_domain_name_access_association, params)
|
5652
|
+
req.send_request(options)
|
5653
|
+
end
|
5654
|
+
|
5441
5655
|
# Adds or updates a tag on a given resource.
|
5442
5656
|
#
|
5443
5657
|
# @option params [required, String] :resource_arn
|
@@ -5837,6 +6051,10 @@ module Aws::APIGateway
|
|
5837
6051
|
# @option params [required, String] :domain_name
|
5838
6052
|
# The domain name of the BasePathMapping resource to change.
|
5839
6053
|
#
|
6054
|
+
# @option params [String] :domain_name_id
|
6055
|
+
# The identifier for the domain name resource. Supported only for
|
6056
|
+
# private custom domain names.
|
6057
|
+
#
|
5840
6058
|
# @option params [required, String] :base_path
|
5841
6059
|
# The base path of the BasePathMapping resource to change.
|
5842
6060
|
#
|
@@ -5860,6 +6078,7 @@ module Aws::APIGateway
|
|
5860
6078
|
#
|
5861
6079
|
# resp = client.update_base_path_mapping({
|
5862
6080
|
# domain_name: "String", # required
|
6081
|
+
# domain_name_id: "String",
|
5863
6082
|
# base_path: "String", # required
|
5864
6083
|
# patch_operations: [
|
5865
6084
|
# {
|
@@ -6102,6 +6321,10 @@ module Aws::APIGateway
|
|
6102
6321
|
# @option params [required, String] :domain_name
|
6103
6322
|
# The name of the DomainName resource to be changed.
|
6104
6323
|
#
|
6324
|
+
# @option params [String] :domain_name_id
|
6325
|
+
# The identifier for the domain name resource. Supported only for
|
6326
|
+
# private custom domain names.
|
6327
|
+
#
|
6105
6328
|
# @option params [Array<Types::PatchOperation>] :patch_operations
|
6106
6329
|
# For more information about supported patch operations, see [Patch
|
6107
6330
|
# Operations][1].
|
@@ -6113,6 +6336,8 @@ module Aws::APIGateway
|
|
6113
6336
|
# @return [Types::DomainName] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6114
6337
|
#
|
6115
6338
|
# * {Types::DomainName#domain_name #domain_name} => String
|
6339
|
+
# * {Types::DomainName#domain_name_id #domain_name_id} => String
|
6340
|
+
# * {Types::DomainName#domain_name_arn #domain_name_arn} => String
|
6116
6341
|
# * {Types::DomainName#certificate_name #certificate_name} => String
|
6117
6342
|
# * {Types::DomainName#certificate_arn #certificate_arn} => String
|
6118
6343
|
# * {Types::DomainName#certificate_upload_date #certificate_upload_date} => Time
|
@@ -6129,11 +6354,14 @@ module Aws::APIGateway
|
|
6129
6354
|
# * {Types::DomainName#tags #tags} => Hash<String,String>
|
6130
6355
|
# * {Types::DomainName#mutual_tls_authentication #mutual_tls_authentication} => Types::MutualTlsAuthentication
|
6131
6356
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
6357
|
+
# * {Types::DomainName#management_policy #management_policy} => String
|
6358
|
+
# * {Types::DomainName#policy #policy} => String
|
6132
6359
|
#
|
6133
6360
|
# @example Request syntax with placeholder values
|
6134
6361
|
#
|
6135
6362
|
# resp = client.update_domain_name({
|
6136
6363
|
# domain_name: "String", # required
|
6364
|
+
# domain_name_id: "String",
|
6137
6365
|
# patch_operations: [
|
6138
6366
|
# {
|
6139
6367
|
# op: "add", # accepts add, remove, replace, move, copy, test
|
@@ -6147,6 +6375,8 @@ module Aws::APIGateway
|
|
6147
6375
|
# @example Response structure
|
6148
6376
|
#
|
6149
6377
|
# resp.domain_name #=> String
|
6378
|
+
# resp.domain_name_id #=> String
|
6379
|
+
# resp.domain_name_arn #=> String
|
6150
6380
|
# resp.certificate_name #=> String
|
6151
6381
|
# resp.certificate_arn #=> String
|
6152
6382
|
# resp.certificate_upload_date #=> Time
|
@@ -6170,6 +6400,8 @@ module Aws::APIGateway
|
|
6170
6400
|
# resp.mutual_tls_authentication.truststore_warnings #=> Array
|
6171
6401
|
# resp.mutual_tls_authentication.truststore_warnings[0] #=> String
|
6172
6402
|
# resp.ownership_verification_certificate_arn #=> String
|
6403
|
+
# resp.management_policy #=> String
|
6404
|
+
# resp.policy #=> String
|
6173
6405
|
#
|
6174
6406
|
# @overload update_domain_name(params = {})
|
6175
6407
|
# @param [Hash] params ({})
|
@@ -7122,7 +7354,7 @@ module Aws::APIGateway
|
|
7122
7354
|
tracer: tracer
|
7123
7355
|
)
|
7124
7356
|
context[:gem_name] = 'aws-sdk-apigateway'
|
7125
|
-
context[:gem_version] = '1.
|
7357
|
+
context[:gem_version] = '1.110.0'
|
7126
7358
|
Seahorse::Client::Request.new(handlers, context)
|
7127
7359
|
end
|
7128
7360
|
|