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
 
| 
         @@ -631,6 +631,11 @@ module Aws::APIGateway 
     | 
|
| 
       631 
631 
     | 
    
         
             
                #   The domain name of the BasePathMapping resource to create.
         
     | 
| 
       632 
632 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       633 
633 
     | 
    
         
             
                #
         
     | 
| 
      
 634 
     | 
    
         
            +
                # @!attribute [rw] domain_name_id
         
     | 
| 
      
 635 
     | 
    
         
            +
                #   The identifier for the domain name resource. Supported only for
         
     | 
| 
      
 636 
     | 
    
         
            +
                #   private custom domain names.
         
     | 
| 
      
 637 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 638 
     | 
    
         
            +
                #
         
     | 
| 
       634 
639 
     | 
    
         
             
                # @!attribute [rw] base_path
         
     | 
| 
       635 
640 
     | 
    
         
             
                #   The base path name that callers of the API must provide as part of
         
     | 
| 
       636 
641 
     | 
    
         
             
                #   the URL after the domain name. This value must be unique for all of
         
     | 
| 
         @@ -650,6 +655,7 @@ module Aws::APIGateway 
     | 
|
| 
       650 
655 
     | 
    
         
             
                #
         
     | 
| 
       651 
656 
     | 
    
         
             
                class CreateBasePathMappingRequest < Struct.new(
         
     | 
| 
       652 
657 
     | 
    
         
             
                  :domain_name,
         
     | 
| 
      
 658 
     | 
    
         
            +
                  :domain_name_id,
         
     | 
| 
       653 
659 
     | 
    
         
             
                  :base_path,
         
     | 
| 
       654 
660 
     | 
    
         
             
                  :rest_api_id,
         
     | 
| 
       655 
661 
     | 
    
         
             
                  :stage)
         
     | 
| 
         @@ -776,6 +782,34 @@ module Aws::APIGateway 
     | 
|
| 
       776 
782 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       777 
783 
     | 
    
         
             
                end
         
     | 
| 
       778 
784 
     | 
    
         | 
| 
      
 785 
     | 
    
         
            +
                # @!attribute [rw] domain_name_arn
         
     | 
| 
      
 786 
     | 
    
         
            +
                #   The ARN of the domain name.
         
     | 
| 
      
 787 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 788 
     | 
    
         
            +
                #
         
     | 
| 
      
 789 
     | 
    
         
            +
                # @!attribute [rw] access_association_source_type
         
     | 
| 
      
 790 
     | 
    
         
            +
                #   The type of the domain name access association source.
         
     | 
| 
      
 791 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 792 
     | 
    
         
            +
                #
         
     | 
| 
      
 793 
     | 
    
         
            +
                # @!attribute [rw] access_association_source
         
     | 
| 
      
 794 
     | 
    
         
            +
                #   The identifier of the domain name access association source. For a
         
     | 
| 
      
 795 
     | 
    
         
            +
                #   VPCE, the value is the VPC endpoint ID.
         
     | 
| 
      
 796 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 797 
     | 
    
         
            +
                #
         
     | 
| 
      
 798 
     | 
    
         
            +
                # @!attribute [rw] tags
         
     | 
| 
      
 799 
     | 
    
         
            +
                #   The key-value map of strings. The valid character set is
         
     | 
| 
      
 800 
     | 
    
         
            +
                #   \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
         
     | 
| 
      
 801 
     | 
    
         
            +
                #   not start with `aws:`. The tag value can be up to 256 characters.
         
     | 
| 
      
 802 
     | 
    
         
            +
                #   @return [Hash<String,String>]
         
     | 
| 
      
 803 
     | 
    
         
            +
                #
         
     | 
| 
      
 804 
     | 
    
         
            +
                class CreateDomainNameAccessAssociationRequest < Struct.new(
         
     | 
| 
      
 805 
     | 
    
         
            +
                  :domain_name_arn,
         
     | 
| 
      
 806 
     | 
    
         
            +
                  :access_association_source_type,
         
     | 
| 
      
 807 
     | 
    
         
            +
                  :access_association_source,
         
     | 
| 
      
 808 
     | 
    
         
            +
                  :tags)
         
     | 
| 
      
 809 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 810 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 811 
     | 
    
         
            +
                end
         
     | 
| 
      
 812 
     | 
    
         
            +
             
     | 
| 
       779 
813 
     | 
    
         
             
                # A request to create a new domain name.
         
     | 
| 
       780 
814 
     | 
    
         
             
                #
         
     | 
| 
       781 
815 
     | 
    
         
             
                # @!attribute [rw] domain_name
         
     | 
| 
         @@ -784,13 +818,13 @@ module Aws::APIGateway 
     | 
|
| 
       784 
818 
     | 
    
         
             
                #
         
     | 
| 
       785 
819 
     | 
    
         
             
                # @!attribute [rw] certificate_name
         
     | 
| 
       786 
820 
     | 
    
         
             
                #   The user-friendly name of the certificate that will be used by
         
     | 
| 
       787 
     | 
    
         
            -
                #   edge-optimized endpoint for this domain name.
         
     | 
| 
      
 821 
     | 
    
         
            +
                #   edge-optimized endpoint or private endpoint for this domain name.
         
     | 
| 
       788 
822 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       789 
823 
     | 
    
         
             
                #
         
     | 
| 
       790 
824 
     | 
    
         
             
                # @!attribute [rw] certificate_body
         
     | 
| 
       791 
825 
     | 
    
         
             
                #   \[Deprecated\] The body of the server certificate that will be used
         
     | 
| 
       792 
     | 
    
         
            -
                #   by edge-optimized endpoint for this domain name 
     | 
| 
       793 
     | 
    
         
            -
                #   certificate authority.
         
     | 
| 
      
 826 
     | 
    
         
            +
                #   by edge-optimized endpoint or private endpoint for this domain name
         
     | 
| 
      
 827 
     | 
    
         
            +
                #   provided by your certificate authority.
         
     | 
| 
       794 
828 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       795 
829 
     | 
    
         
             
                #
         
     | 
| 
       796 
830 
     | 
    
         
             
                # @!attribute [rw] certificate_private_key
         
     | 
| 
         @@ -811,8 +845,8 @@ module Aws::APIGateway 
     | 
|
| 
       811 
845 
     | 
    
         
             
                #
         
     | 
| 
       812 
846 
     | 
    
         
             
                # @!attribute [rw] certificate_arn
         
     | 
| 
       813 
847 
     | 
    
         
             
                #   The reference to an Amazon Web Services-managed certificate that
         
     | 
| 
       814 
     | 
    
         
            -
                #   will be used by edge-optimized endpoint for this 
     | 
| 
       815 
     | 
    
         
            -
                #   Certificate Manager is the only supported source.
         
     | 
| 
      
 848 
     | 
    
         
            +
                #   will be used by edge-optimized endpoint or private endpoint for this
         
     | 
| 
      
 849 
     | 
    
         
            +
                #   domain name. Certificate Manager is the only supported source.
         
     | 
| 
       816 
850 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       817 
851 
     | 
    
         
             
                #
         
     | 
| 
       818 
852 
     | 
    
         
             
                # @!attribute [rw] regional_certificate_name
         
     | 
| 
         @@ -856,6 +890,12 @@ module Aws::APIGateway 
     | 
|
| 
       856 
890 
     | 
    
         
             
                #   as the regionalCertificateArn.
         
     | 
| 
       857 
891 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       858 
892 
     | 
    
         
             
                #
         
     | 
| 
      
 893 
     | 
    
         
            +
                # @!attribute [rw] policy
         
     | 
| 
      
 894 
     | 
    
         
            +
                #   A stringified JSON policy document that applies to the `execute-api`
         
     | 
| 
      
 895 
     | 
    
         
            +
                #   service for this DomainName regardless of the caller and Method
         
     | 
| 
      
 896 
     | 
    
         
            +
                #   configuration. Supported only for private custom domain names.
         
     | 
| 
      
 897 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 898 
     | 
    
         
            +
                #
         
     | 
| 
       859 
899 
     | 
    
         
             
                class CreateDomainNameRequest < Struct.new(
         
     | 
| 
       860 
900 
     | 
    
         
             
                  :domain_name,
         
     | 
| 
       861 
901 
     | 
    
         
             
                  :certificate_name,
         
     | 
| 
         @@ -869,7 +909,8 @@ module Aws::APIGateway 
     | 
|
| 
       869 
909 
     | 
    
         
             
                  :tags,
         
     | 
| 
       870 
910 
     | 
    
         
             
                  :security_policy,
         
     | 
| 
       871 
911 
     | 
    
         
             
                  :mutual_tls_authentication,
         
     | 
| 
       872 
     | 
    
         
            -
                  :ownership_verification_certificate_arn 
     | 
| 
      
 912 
     | 
    
         
            +
                  :ownership_verification_certificate_arn,
         
     | 
| 
      
 913 
     | 
    
         
            +
                  :policy)
         
     | 
| 
       873 
914 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       874 
915 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       875 
916 
     | 
    
         
             
                end
         
     | 
| 
         @@ -1249,6 +1290,11 @@ module Aws::APIGateway 
     | 
|
| 
       1249 
1290 
     | 
    
         
             
                #   The domain name of the BasePathMapping resource to delete.
         
     | 
| 
       1250 
1291 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       1251 
1292 
     | 
    
         
             
                #
         
     | 
| 
      
 1293 
     | 
    
         
            +
                # @!attribute [rw] domain_name_id
         
     | 
| 
      
 1294 
     | 
    
         
            +
                #   The identifier for the domain name resource. Supported only for
         
     | 
| 
      
 1295 
     | 
    
         
            +
                #   private custom domain names.
         
     | 
| 
      
 1296 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 1297 
     | 
    
         
            +
                #
         
     | 
| 
       1252 
1298 
     | 
    
         
             
                # @!attribute [rw] base_path
         
     | 
| 
       1253 
1299 
     | 
    
         
             
                #   The base path name of the BasePathMapping resource to delete.
         
     | 
| 
       1254 
1300 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1257,6 +1303,7 @@ module Aws::APIGateway 
     | 
|
| 
       1257 
1303 
     | 
    
         
             
                #
         
     | 
| 
       1258 
1304 
     | 
    
         
             
                class DeleteBasePathMappingRequest < Struct.new(
         
     | 
| 
       1259 
1305 
     | 
    
         
             
                  :domain_name,
         
     | 
| 
      
 1306 
     | 
    
         
            +
                  :domain_name_id,
         
     | 
| 
       1260 
1307 
     | 
    
         
             
                  :base_path)
         
     | 
| 
       1261 
1308 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       1262 
1309 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
         @@ -1325,14 +1372,30 @@ module Aws::APIGateway 
     | 
|
| 
       1325 
1372 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1326 
1373 
     | 
    
         
             
                end
         
     | 
| 
       1327 
1374 
     | 
    
         | 
| 
      
 1375 
     | 
    
         
            +
                # @!attribute [rw] domain_name_access_association_arn
         
     | 
| 
      
 1376 
     | 
    
         
            +
                #   The ARN of the domain name access association resource.
         
     | 
| 
      
 1377 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 1378 
     | 
    
         
            +
                #
         
     | 
| 
      
 1379 
     | 
    
         
            +
                class DeleteDomainNameAccessAssociationRequest < Struct.new(
         
     | 
| 
      
 1380 
     | 
    
         
            +
                  :domain_name_access_association_arn)
         
     | 
| 
      
 1381 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 1382 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 1383 
     | 
    
         
            +
                end
         
     | 
| 
      
 1384 
     | 
    
         
            +
             
     | 
| 
       1328 
1385 
     | 
    
         
             
                # A request to delete the DomainName resource.
         
     | 
| 
       1329 
1386 
     | 
    
         
             
                #
         
     | 
| 
       1330 
1387 
     | 
    
         
             
                # @!attribute [rw] domain_name
         
     | 
| 
       1331 
1388 
     | 
    
         
             
                #   The name of the DomainName resource to be deleted.
         
     | 
| 
       1332 
1389 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       1333 
1390 
     | 
    
         
             
                #
         
     | 
| 
      
 1391 
     | 
    
         
            +
                # @!attribute [rw] domain_name_id
         
     | 
| 
      
 1392 
     | 
    
         
            +
                #   The identifier for the domain name resource. Supported only for
         
     | 
| 
      
 1393 
     | 
    
         
            +
                #   private custom domain names.
         
     | 
| 
      
 1394 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 1395 
     | 
    
         
            +
                #
         
     | 
| 
       1334 
1396 
     | 
    
         
             
                class DeleteDomainNameRequest < Struct.new(
         
     | 
| 
       1335 
     | 
    
         
            -
                  :domain_name 
     | 
| 
      
 1397 
     | 
    
         
            +
                  :domain_name,
         
     | 
| 
      
 1398 
     | 
    
         
            +
                  :domain_name_id)
         
     | 
| 
       1336 
1399 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       1337 
1400 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1338 
1401 
     | 
    
         
             
                end
         
     | 
| 
         @@ -1831,21 +1894,30 @@ module Aws::APIGateway 
     | 
|
| 
       1831 
1894 
     | 
    
         
             
                #   `my-api.example.com`.
         
     | 
| 
       1832 
1895 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       1833 
1896 
     | 
    
         
             
                #
         
     | 
| 
      
 1897 
     | 
    
         
            +
                # @!attribute [rw] domain_name_id
         
     | 
| 
      
 1898 
     | 
    
         
            +
                #   The identifier for the domain name resource. Supported only for
         
     | 
| 
      
 1899 
     | 
    
         
            +
                #   private custom domain names.
         
     | 
| 
      
 1900 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 1901 
     | 
    
         
            +
                #
         
     | 
| 
      
 1902 
     | 
    
         
            +
                # @!attribute [rw] domain_name_arn
         
     | 
| 
      
 1903 
     | 
    
         
            +
                #   The ARN of the domain name. Supported only for private custom domain
         
     | 
| 
      
 1904 
     | 
    
         
            +
                #   names.
         
     | 
| 
      
 1905 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 1906 
     | 
    
         
            +
                #
         
     | 
| 
       1834 
1907 
     | 
    
         
             
                # @!attribute [rw] certificate_name
         
     | 
| 
       1835 
1908 
     | 
    
         
             
                #   The name of the certificate that will be used by edge-optimized
         
     | 
| 
       1836 
     | 
    
         
            -
                #   endpoint for this domain name.
         
     | 
| 
      
 1909 
     | 
    
         
            +
                #   endpoint or private endpoint for this domain name.
         
     | 
| 
       1837 
1910 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       1838 
1911 
     | 
    
         
             
                #
         
     | 
| 
       1839 
1912 
     | 
    
         
             
                # @!attribute [rw] certificate_arn
         
     | 
| 
       1840 
1913 
     | 
    
         
             
                #   The reference to an Amazon Web Services-managed certificate that
         
     | 
| 
       1841 
     | 
    
         
            -
                #   will be used by edge-optimized endpoint for this 
     | 
| 
       1842 
     | 
    
         
            -
                #   Certificate Manager is the only supported source.
         
     | 
| 
      
 1914 
     | 
    
         
            +
                #   will be used by edge-optimized endpoint or private endpoint for this
         
     | 
| 
      
 1915 
     | 
    
         
            +
                #   domain name. Certificate Manager is the only supported source.
         
     | 
| 
       1843 
1916 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       1844 
1917 
     | 
    
         
             
                #
         
     | 
| 
       1845 
1918 
     | 
    
         
             
                # @!attribute [rw] certificate_upload_date
         
     | 
| 
       1846 
1919 
     | 
    
         
             
                #   The timestamp when the certificate that was used by edge-optimized
         
     | 
| 
       1847 
     | 
    
         
            -
                #   endpoint for this domain name was uploaded. 
     | 
| 
       1848 
     | 
    
         
            -
                #   change this value if you update the certificate.
         
     | 
| 
      
 1920 
     | 
    
         
            +
                #   endpoint or private endpoint for this domain name was uploaded.
         
     | 
| 
       1849 
1921 
     | 
    
         
             
                #   @return [Time]
         
     | 
| 
       1850 
1922 
     | 
    
         
             
                #
         
     | 
| 
       1851 
1923 
     | 
    
         
             
                # @!attribute [rw] regional_domain_name
         
     | 
| 
         @@ -1929,8 +2001,24 @@ module Aws::APIGateway 
     | 
|
| 
       1929 
2001 
     | 
    
         
             
                #   as the regionalCertificateArn.
         
     | 
| 
       1930 
2002 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       1931 
2003 
     | 
    
         
             
                #
         
     | 
| 
      
 2004 
     | 
    
         
            +
                # @!attribute [rw] management_policy
         
     | 
| 
      
 2005 
     | 
    
         
            +
                #   A stringified JSON policy document that applies to the API Gateway
         
     | 
| 
      
 2006 
     | 
    
         
            +
                #   Management service for this DomainName. This policy document
         
     | 
| 
      
 2007 
     | 
    
         
            +
                #   controls access for access association sources to create domain name
         
     | 
| 
      
 2008 
     | 
    
         
            +
                #   access associations with this DomainName. Supported only for private
         
     | 
| 
      
 2009 
     | 
    
         
            +
                #   custom domain names.
         
     | 
| 
      
 2010 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2011 
     | 
    
         
            +
                #
         
     | 
| 
      
 2012 
     | 
    
         
            +
                # @!attribute [rw] policy
         
     | 
| 
      
 2013 
     | 
    
         
            +
                #   A stringified JSON policy document that applies to the `execute-api`
         
     | 
| 
      
 2014 
     | 
    
         
            +
                #   service for this DomainName regardless of the caller and Method
         
     | 
| 
      
 2015 
     | 
    
         
            +
                #   configuration. Supported only for private custom domain names.
         
     | 
| 
      
 2016 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2017 
     | 
    
         
            +
                #
         
     | 
| 
       1932 
2018 
     | 
    
         
             
                class DomainName < Struct.new(
         
     | 
| 
       1933 
2019 
     | 
    
         
             
                  :domain_name,
         
     | 
| 
      
 2020 
     | 
    
         
            +
                  :domain_name_id,
         
     | 
| 
      
 2021 
     | 
    
         
            +
                  :domain_name_arn,
         
     | 
| 
       1934 
2022 
     | 
    
         
             
                  :certificate_name,
         
     | 
| 
       1935 
2023 
     | 
    
         
             
                  :certificate_arn,
         
     | 
| 
       1936 
2024 
     | 
    
         
             
                  :certificate_upload_date,
         
     | 
| 
         @@ -1946,7 +2034,60 @@ module Aws::APIGateway 
     | 
|
| 
       1946 
2034 
     | 
    
         
             
                  :security_policy,
         
     | 
| 
       1947 
2035 
     | 
    
         
             
                  :tags,
         
     | 
| 
       1948 
2036 
     | 
    
         
             
                  :mutual_tls_authentication,
         
     | 
| 
       1949 
     | 
    
         
            -
                  :ownership_verification_certificate_arn 
     | 
| 
      
 2037 
     | 
    
         
            +
                  :ownership_verification_certificate_arn,
         
     | 
| 
      
 2038 
     | 
    
         
            +
                  :management_policy,
         
     | 
| 
      
 2039 
     | 
    
         
            +
                  :policy)
         
     | 
| 
      
 2040 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 2041 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 2042 
     | 
    
         
            +
                end
         
     | 
| 
      
 2043 
     | 
    
         
            +
             
     | 
| 
      
 2044 
     | 
    
         
            +
                # Represents a domain name access association between an access
         
     | 
| 
      
 2045 
     | 
    
         
            +
                # association source and a private custom domain name. With a domain
         
     | 
| 
      
 2046 
     | 
    
         
            +
                # name access association, an access association source can invoke a
         
     | 
| 
      
 2047 
     | 
    
         
            +
                # private custom domain name while isolated from the public internet.
         
     | 
| 
      
 2048 
     | 
    
         
            +
                #
         
     | 
| 
      
 2049 
     | 
    
         
            +
                # @!attribute [rw] domain_name_access_association_arn
         
     | 
| 
      
 2050 
     | 
    
         
            +
                #   The ARN of the domain name access association resource.
         
     | 
| 
      
 2051 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2052 
     | 
    
         
            +
                #
         
     | 
| 
      
 2053 
     | 
    
         
            +
                # @!attribute [rw] domain_name_arn
         
     | 
| 
      
 2054 
     | 
    
         
            +
                #   The ARN of the domain name.
         
     | 
| 
      
 2055 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2056 
     | 
    
         
            +
                #
         
     | 
| 
      
 2057 
     | 
    
         
            +
                # @!attribute [rw] access_association_source_type
         
     | 
| 
      
 2058 
     | 
    
         
            +
                #   The type of the domain name access association source.
         
     | 
| 
      
 2059 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2060 
     | 
    
         
            +
                #
         
     | 
| 
      
 2061 
     | 
    
         
            +
                # @!attribute [rw] access_association_source
         
     | 
| 
      
 2062 
     | 
    
         
            +
                #   The ARN of the domain name access association source. For a VPCE,
         
     | 
| 
      
 2063 
     | 
    
         
            +
                #   the ARN must be a VPC endpoint.
         
     | 
| 
      
 2064 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2065 
     | 
    
         
            +
                #
         
     | 
| 
      
 2066 
     | 
    
         
            +
                # @!attribute [rw] tags
         
     | 
| 
      
 2067 
     | 
    
         
            +
                #   The collection of tags. Each tag element is associated with a given
         
     | 
| 
      
 2068 
     | 
    
         
            +
                #   resource.
         
     | 
| 
      
 2069 
     | 
    
         
            +
                #   @return [Hash<String,String>]
         
     | 
| 
      
 2070 
     | 
    
         
            +
                #
         
     | 
| 
      
 2071 
     | 
    
         
            +
                class DomainNameAccessAssociation < Struct.new(
         
     | 
| 
      
 2072 
     | 
    
         
            +
                  :domain_name_access_association_arn,
         
     | 
| 
      
 2073 
     | 
    
         
            +
                  :domain_name_arn,
         
     | 
| 
      
 2074 
     | 
    
         
            +
                  :access_association_source_type,
         
     | 
| 
      
 2075 
     | 
    
         
            +
                  :access_association_source,
         
     | 
| 
      
 2076 
     | 
    
         
            +
                  :tags)
         
     | 
| 
      
 2077 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 2078 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 2079 
     | 
    
         
            +
                end
         
     | 
| 
      
 2080 
     | 
    
         
            +
             
     | 
| 
      
 2081 
     | 
    
         
            +
                # @!attribute [rw] position
         
     | 
| 
      
 2082 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2083 
     | 
    
         
            +
                #
         
     | 
| 
      
 2084 
     | 
    
         
            +
                # @!attribute [rw] items
         
     | 
| 
      
 2085 
     | 
    
         
            +
                #   The current page of elements from this collection.
         
     | 
| 
      
 2086 
     | 
    
         
            +
                #   @return [Array<Types::DomainNameAccessAssociation>]
         
     | 
| 
      
 2087 
     | 
    
         
            +
                #
         
     | 
| 
      
 2088 
     | 
    
         
            +
                class DomainNameAccessAssociations < Struct.new(
         
     | 
| 
      
 2089 
     | 
    
         
            +
                  :position,
         
     | 
| 
      
 2090 
     | 
    
         
            +
                  :items)
         
     | 
| 
       1950 
2091 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       1951 
2092 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1952 
2093 
     | 
    
         
             
                end
         
     | 
| 
         @@ -2229,6 +2370,11 @@ module Aws::APIGateway 
     | 
|
| 
       2229 
2370 
     | 
    
         
             
                #   The domain name of the BasePathMapping resource to be described.
         
     | 
| 
       2230 
2371 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2231 
2372 
     | 
    
         
             
                #
         
     | 
| 
      
 2373 
     | 
    
         
            +
                # @!attribute [rw] domain_name_id
         
     | 
| 
      
 2374 
     | 
    
         
            +
                #   The identifier for the domain name resource. Supported only for
         
     | 
| 
      
 2375 
     | 
    
         
            +
                #   private custom domain names.
         
     | 
| 
      
 2376 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2377 
     | 
    
         
            +
                #
         
     | 
| 
       2232 
2378 
     | 
    
         
             
                # @!attribute [rw] base_path
         
     | 
| 
       2233 
2379 
     | 
    
         
             
                #   The base path name that callers of the API must provide as part of
         
     | 
| 
       2234 
2380 
     | 
    
         
             
                #   the URL after the domain name. This value must be unique for all of
         
     | 
| 
         @@ -2238,6 +2384,7 @@ module Aws::APIGateway 
     | 
|
| 
       2238 
2384 
     | 
    
         
             
                #
         
     | 
| 
       2239 
2385 
     | 
    
         
             
                class GetBasePathMappingRequest < Struct.new(
         
     | 
| 
       2240 
2386 
     | 
    
         
             
                  :domain_name,
         
     | 
| 
      
 2387 
     | 
    
         
            +
                  :domain_name_id,
         
     | 
| 
       2241 
2388 
     | 
    
         
             
                  :base_path)
         
     | 
| 
       2242 
2389 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       2243 
2390 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
         @@ -2250,6 +2397,11 @@ module Aws::APIGateway 
     | 
|
| 
       2250 
2397 
     | 
    
         
             
                #   The domain name of a BasePathMapping resource.
         
     | 
| 
       2251 
2398 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2252 
2399 
     | 
    
         
             
                #
         
     | 
| 
      
 2400 
     | 
    
         
            +
                # @!attribute [rw] domain_name_id
         
     | 
| 
      
 2401 
     | 
    
         
            +
                #   The identifier for the domain name resource. Supported only for
         
     | 
| 
      
 2402 
     | 
    
         
            +
                #   private custom domain names.
         
     | 
| 
      
 2403 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2404 
     | 
    
         
            +
                #
         
     | 
| 
       2253 
2405 
     | 
    
         
             
                # @!attribute [rw] position
         
     | 
| 
       2254 
2406 
     | 
    
         
             
                #   The current pagination position in the paged result set.
         
     | 
| 
       2255 
2407 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -2261,6 +2413,7 @@ module Aws::APIGateway 
     | 
|
| 
       2261 
2413 
     | 
    
         
             
                #
         
     | 
| 
       2262 
2414 
     | 
    
         
             
                class GetBasePathMappingsRequest < Struct.new(
         
     | 
| 
       2263 
2415 
     | 
    
         
             
                  :domain_name,
         
     | 
| 
      
 2416 
     | 
    
         
            +
                  :domain_name_id,
         
     | 
| 
       2264 
2417 
     | 
    
         
             
                  :position,
         
     | 
| 
       2265 
2418 
     | 
    
         
             
                  :limit)
         
     | 
| 
       2266 
2419 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
         @@ -2460,14 +2613,45 @@ module Aws::APIGateway 
     | 
|
| 
       2460 
2613 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2461 
2614 
     | 
    
         
             
                end
         
     | 
| 
       2462 
2615 
     | 
    
         | 
| 
      
 2616 
     | 
    
         
            +
                # @!attribute [rw] position
         
     | 
| 
      
 2617 
     | 
    
         
            +
                #   The current pagination position in the paged result set.
         
     | 
| 
      
 2618 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2619 
     | 
    
         
            +
                #
         
     | 
| 
      
 2620 
     | 
    
         
            +
                # @!attribute [rw] limit
         
     | 
| 
      
 2621 
     | 
    
         
            +
                #   The maximum number of returned results per page. The default value
         
     | 
| 
      
 2622 
     | 
    
         
            +
                #   is 25 and the maximum value is 500.
         
     | 
| 
      
 2623 
     | 
    
         
            +
                #   @return [Integer]
         
     | 
| 
      
 2624 
     | 
    
         
            +
                #
         
     | 
| 
      
 2625 
     | 
    
         
            +
                # @!attribute [rw] resource_owner
         
     | 
| 
      
 2626 
     | 
    
         
            +
                #   The owner of the domain name access association. Use `SELF` to only
         
     | 
| 
      
 2627 
     | 
    
         
            +
                #   list the domain name access associations owned by your own account.
         
     | 
| 
      
 2628 
     | 
    
         
            +
                #   Use `OTHER_ACCOUNTS` to list the domain name access associations
         
     | 
| 
      
 2629 
     | 
    
         
            +
                #   with your private custom domain names that are owned by other AWS
         
     | 
| 
      
 2630 
     | 
    
         
            +
                #   accounts.
         
     | 
| 
      
 2631 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2632 
     | 
    
         
            +
                #
         
     | 
| 
      
 2633 
     | 
    
         
            +
                class GetDomainNameAccessAssociationsRequest < Struct.new(
         
     | 
| 
      
 2634 
     | 
    
         
            +
                  :position,
         
     | 
| 
      
 2635 
     | 
    
         
            +
                  :limit,
         
     | 
| 
      
 2636 
     | 
    
         
            +
                  :resource_owner)
         
     | 
| 
      
 2637 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 2638 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 2639 
     | 
    
         
            +
                end
         
     | 
| 
      
 2640 
     | 
    
         
            +
             
     | 
| 
       2463 
2641 
     | 
    
         
             
                # Request to get the name of a DomainName resource.
         
     | 
| 
       2464 
2642 
     | 
    
         
             
                #
         
     | 
| 
       2465 
2643 
     | 
    
         
             
                # @!attribute [rw] domain_name
         
     | 
| 
       2466 
2644 
     | 
    
         
             
                #   The name of the DomainName resource.
         
     | 
| 
       2467 
2645 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2468 
2646 
     | 
    
         
             
                #
         
     | 
| 
      
 2647 
     | 
    
         
            +
                # @!attribute [rw] domain_name_id
         
     | 
| 
      
 2648 
     | 
    
         
            +
                #   The identifier for the domain name resource. Supported only for
         
     | 
| 
      
 2649 
     | 
    
         
            +
                #   private custom domain names.
         
     | 
| 
      
 2650 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2651 
     | 
    
         
            +
                #
         
     | 
| 
       2469 
2652 
     | 
    
         
             
                class GetDomainNameRequest < Struct.new(
         
     | 
| 
       2470 
     | 
    
         
            -
                  :domain_name 
     | 
| 
      
 2653 
     | 
    
         
            +
                  :domain_name,
         
     | 
| 
      
 2654 
     | 
    
         
            +
                  :domain_name_id)
         
     | 
| 
       2471 
2655 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       2472 
2656 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2473 
2657 
     | 
    
         
             
                end
         
     | 
| 
         @@ -2483,9 +2667,14 @@ module Aws::APIGateway 
     | 
|
| 
       2483 
2667 
     | 
    
         
             
                #   is 25 and the maximum value is 500.
         
     | 
| 
       2484 
2668 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       2485 
2669 
     | 
    
         
             
                #
         
     | 
| 
      
 2670 
     | 
    
         
            +
                # @!attribute [rw] resource_owner
         
     | 
| 
      
 2671 
     | 
    
         
            +
                #   The owner of the domain name access association.
         
     | 
| 
      
 2672 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2673 
     | 
    
         
            +
                #
         
     | 
| 
       2486 
2674 
     | 
    
         
             
                class GetDomainNamesRequest < Struct.new(
         
     | 
| 
       2487 
2675 
     | 
    
         
             
                  :position,
         
     | 
| 
       2488 
     | 
    
         
            -
                  :limit 
     | 
| 
      
 2676 
     | 
    
         
            +
                  :limit,
         
     | 
| 
      
 2677 
     | 
    
         
            +
                  :resource_owner)
         
     | 
| 
       2489 
2678 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       2490 
2679 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2491 
2680 
     | 
    
         
             
                end
         
     | 
| 
         @@ -4391,6 +4580,21 @@ module Aws::APIGateway 
     | 
|
| 
       4391 
4580 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4392 
4581 
     | 
    
         
             
                end
         
     | 
| 
       4393 
4582 
     | 
    
         | 
| 
      
 4583 
     | 
    
         
            +
                # @!attribute [rw] domain_name_access_association_arn
         
     | 
| 
      
 4584 
     | 
    
         
            +
                #   The ARN of the domain name access association resource.
         
     | 
| 
      
 4585 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 4586 
     | 
    
         
            +
                #
         
     | 
| 
      
 4587 
     | 
    
         
            +
                # @!attribute [rw] domain_name_arn
         
     | 
| 
      
 4588 
     | 
    
         
            +
                #   The ARN of the domain name.
         
     | 
| 
      
 4589 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 4590 
     | 
    
         
            +
                #
         
     | 
| 
      
 4591 
     | 
    
         
            +
                class RejectDomainNameAccessAssociationRequest < Struct.new(
         
     | 
| 
      
 4592 
     | 
    
         
            +
                  :domain_name_access_association_arn,
         
     | 
| 
      
 4593 
     | 
    
         
            +
                  :domain_name_arn)
         
     | 
| 
      
 4594 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 4595 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 4596 
     | 
    
         
            +
                end
         
     | 
| 
      
 4597 
     | 
    
         
            +
             
     | 
| 
       4394 
4598 
     | 
    
         
             
                # A set of validation rules for incoming Method requests.
         
     | 
| 
       4395 
4599 
     | 
    
         
             
                #
         
     | 
| 
       4396 
4600 
     | 
    
         
             
                # @!attribute [rw] id
         
     | 
| 
         @@ -5257,6 +5461,11 @@ module Aws::APIGateway 
     | 
|
| 
       5257 
5461 
     | 
    
         
             
                #   The domain name of the BasePathMapping resource to change.
         
     | 
| 
       5258 
5462 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       5259 
5463 
     | 
    
         
             
                #
         
     | 
| 
      
 5464 
     | 
    
         
            +
                # @!attribute [rw] domain_name_id
         
     | 
| 
      
 5465 
     | 
    
         
            +
                #   The identifier for the domain name resource. Supported only for
         
     | 
| 
      
 5466 
     | 
    
         
            +
                #   private custom domain names.
         
     | 
| 
      
 5467 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 5468 
     | 
    
         
            +
                #
         
     | 
| 
       5260 
5469 
     | 
    
         
             
                # @!attribute [rw] base_path
         
     | 
| 
       5261 
5470 
     | 
    
         
             
                #   The base path of the BasePathMapping resource to change.
         
     | 
| 
       5262 
5471 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5274,6 +5483,7 @@ module Aws::APIGateway 
     | 
|
| 
       5274 
5483 
     | 
    
         
             
                #
         
     | 
| 
       5275 
5484 
     | 
    
         
             
                class UpdateBasePathMappingRequest < Struct.new(
         
     | 
| 
       5276 
5485 
     | 
    
         
             
                  :domain_name,
         
     | 
| 
      
 5486 
     | 
    
         
            +
                  :domain_name_id,
         
     | 
| 
       5277 
5487 
     | 
    
         
             
                  :base_path,
         
     | 
| 
       5278 
5488 
     | 
    
         
             
                  :patch_operations)
         
     | 
| 
       5279 
5489 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
         @@ -5391,6 +5601,11 @@ module Aws::APIGateway 
     | 
|
| 
       5391 
5601 
     | 
    
         
             
                #   The name of the DomainName resource to be changed.
         
     | 
| 
       5392 
5602 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       5393 
5603 
     | 
    
         
             
                #
         
     | 
| 
      
 5604 
     | 
    
         
            +
                # @!attribute [rw] domain_name_id
         
     | 
| 
      
 5605 
     | 
    
         
            +
                #   The identifier for the domain name resource. Supported only for
         
     | 
| 
      
 5606 
     | 
    
         
            +
                #   private custom domain names.
         
     | 
| 
      
 5607 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 5608 
     | 
    
         
            +
                #
         
     | 
| 
       5394 
5609 
     | 
    
         
             
                # @!attribute [rw] patch_operations
         
     | 
| 
       5395 
5610 
     | 
    
         
             
                #   For more information about supported patch operations, see [Patch
         
     | 
| 
       5396 
5611 
     | 
    
         
             
                #   Operations][1].
         
     | 
| 
         @@ -5402,6 +5617,7 @@ module Aws::APIGateway 
     | 
|
| 
       5402 
5617 
     | 
    
         
             
                #
         
     | 
| 
       5403 
5618 
     | 
    
         
             
                class UpdateDomainNameRequest < Struct.new(
         
     | 
| 
       5404 
5619 
     | 
    
         
             
                  :domain_name,
         
     | 
| 
      
 5620 
     | 
    
         
            +
                  :domain_name_id,
         
     | 
| 
       5405 
5621 
     | 
    
         
             
                  :patch_operations)
         
     | 
| 
       5406 
5622 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       5407 
5623 
     | 
    
         
             
                  include Aws::Structure
         
     | 
    
        data/lib/aws-sdk-apigateway.rb
    CHANGED
    
    
    
        data/sig/client.rbs
    CHANGED
    
    | 
         @@ -143,6 +143,7 @@ module Aws 
     | 
|
| 
       143 
143 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_base_path_mapping-instance_method
         
     | 
| 
       144 
144 
     | 
    
         
             
                  def create_base_path_mapping: (
         
     | 
| 
       145 
145 
     | 
    
         
             
                                                  domain_name: ::String,
         
     | 
| 
      
 146 
     | 
    
         
            +
                                                  ?domain_name_id: ::String,
         
     | 
| 
       146 
147 
     | 
    
         
             
                                                  ?base_path: ::String,
         
     | 
| 
       147 
148 
     | 
    
         
             
                                                  rest_api_id: ::String,
         
     | 
| 
       148 
149 
     | 
    
         
             
                                                  ?stage: ::String
         
     | 
| 
         @@ -212,6 +213,8 @@ module Aws 
     | 
|
| 
       212 
213 
     | 
    
         
             
                  interface _CreateDomainNameResponseSuccess
         
     | 
| 
       213 
214 
     | 
    
         
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
         
     | 
| 
       214 
215 
     | 
    
         
             
                    def domain_name: () -> ::String
         
     | 
| 
      
 216 
     | 
    
         
            +
                    def domain_name_id: () -> ::String
         
     | 
| 
      
 217 
     | 
    
         
            +
                    def domain_name_arn: () -> ::String
         
     | 
| 
       215 
218 
     | 
    
         
             
                    def certificate_name: () -> ::String
         
     | 
| 
       216 
219 
     | 
    
         
             
                    def certificate_arn: () -> ::String
         
     | 
| 
       217 
220 
     | 
    
         
             
                    def certificate_upload_date: () -> ::Time
         
     | 
| 
         @@ -228,6 +231,8 @@ module Aws 
     | 
|
| 
       228 
231 
     | 
    
         
             
                    def tags: () -> ::Hash[::String, ::String]
         
     | 
| 
       229 
232 
     | 
    
         
             
                    def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
         
     | 
| 
       230 
233 
     | 
    
         
             
                    def ownership_verification_certificate_arn: () -> ::String
         
     | 
| 
      
 234 
     | 
    
         
            +
                    def management_policy: () -> ::String
         
     | 
| 
      
 235 
     | 
    
         
            +
                    def policy: () -> ::String
         
     | 
| 
       231 
236 
     | 
    
         
             
                  end
         
     | 
| 
       232 
237 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_domain_name-instance_method
         
     | 
| 
       233 
238 
     | 
    
         
             
                  def create_domain_name: (
         
     | 
| 
         @@ -249,10 +254,28 @@ module Aws 
     | 
|
| 
       249 
254 
     | 
    
         
             
                                              truststore_uri: ::String?,
         
     | 
| 
       250 
255 
     | 
    
         
             
                                              truststore_version: ::String?
         
     | 
| 
       251 
256 
     | 
    
         
             
                                            },
         
     | 
| 
       252 
     | 
    
         
            -
                                            ?ownership_verification_certificate_arn: ::String
         
     | 
| 
      
 257 
     | 
    
         
            +
                                            ?ownership_verification_certificate_arn: ::String,
         
     | 
| 
      
 258 
     | 
    
         
            +
                                            ?policy: ::String
         
     | 
| 
       253 
259 
     | 
    
         
             
                                          ) -> _CreateDomainNameResponseSuccess
         
     | 
| 
       254 
260 
     | 
    
         
             
                                        | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameResponseSuccess
         
     | 
| 
       255 
261 
     | 
    
         | 
| 
      
 262 
     | 
    
         
            +
                  interface _CreateDomainNameAccessAssociationResponseSuccess
         
     | 
| 
      
 263 
     | 
    
         
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainNameAccessAssociation]
         
     | 
| 
      
 264 
     | 
    
         
            +
                    def domain_name_access_association_arn: () -> ::String
         
     | 
| 
      
 265 
     | 
    
         
            +
                    def domain_name_arn: () -> ::String
         
     | 
| 
      
 266 
     | 
    
         
            +
                    def access_association_source_type: () -> ("VPCE")
         
     | 
| 
      
 267 
     | 
    
         
            +
                    def access_association_source: () -> ::String
         
     | 
| 
      
 268 
     | 
    
         
            +
                    def tags: () -> ::Hash[::String, ::String]
         
     | 
| 
      
 269 
     | 
    
         
            +
                  end
         
     | 
| 
      
 270 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_domain_name_access_association-instance_method
         
     | 
| 
      
 271 
     | 
    
         
            +
                  def create_domain_name_access_association: (
         
     | 
| 
      
 272 
     | 
    
         
            +
                                                               domain_name_arn: ::String,
         
     | 
| 
      
 273 
     | 
    
         
            +
                                                               access_association_source_type: ("VPCE"),
         
     | 
| 
      
 274 
     | 
    
         
            +
                                                               access_association_source: ::String,
         
     | 
| 
      
 275 
     | 
    
         
            +
                                                               ?tags: Hash[::String, ::String]
         
     | 
| 
      
 276 
     | 
    
         
            +
                                                             ) -> _CreateDomainNameAccessAssociationResponseSuccess
         
     | 
| 
      
 277 
     | 
    
         
            +
                                                           | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameAccessAssociationResponseSuccess
         
     | 
| 
      
 278 
     | 
    
         
            +
             
     | 
| 
       256 
279 
     | 
    
         
             
                  interface _CreateModelResponseSuccess
         
     | 
| 
       257 
280 
     | 
    
         
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::Model]
         
     | 
| 
       258 
281 
     | 
    
         
             
                    def id: () -> ::String
         
     | 
| 
         @@ -468,6 +491,7 @@ module Aws 
     | 
|
| 
       468 
491 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_base_path_mapping-instance_method
         
     | 
| 
       469 
492 
     | 
    
         
             
                  def delete_base_path_mapping: (
         
     | 
| 
       470 
493 
     | 
    
         
             
                                                  domain_name: ::String,
         
     | 
| 
      
 494 
     | 
    
         
            +
                                                  ?domain_name_id: ::String,
         
     | 
| 
       471 
495 
     | 
    
         
             
                                                  base_path: ::String
         
     | 
| 
       472 
496 
     | 
    
         
             
                                                ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
       473 
497 
     | 
    
         
             
                                              | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
         @@ -501,10 +525,17 @@ module Aws 
     | 
|
| 
       501 
525 
     | 
    
         | 
| 
       502 
526 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_domain_name-instance_method
         
     | 
| 
       503 
527 
     | 
    
         
             
                  def delete_domain_name: (
         
     | 
| 
       504 
     | 
    
         
            -
                                            domain_name: ::String
         
     | 
| 
      
 528 
     | 
    
         
            +
                                            domain_name: ::String,
         
     | 
| 
      
 529 
     | 
    
         
            +
                                            ?domain_name_id: ::String
         
     | 
| 
       505 
530 
     | 
    
         
             
                                          ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
       506 
531 
     | 
    
         
             
                                        | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
       507 
532 
     | 
    
         | 
| 
      
 533 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_domain_name_access_association-instance_method
         
     | 
| 
      
 534 
     | 
    
         
            +
                  def delete_domain_name_access_association: (
         
     | 
| 
      
 535 
     | 
    
         
            +
                                                               domain_name_access_association_arn: ::String
         
     | 
| 
      
 536 
     | 
    
         
            +
                                                             ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 537 
     | 
    
         
            +
                                                           | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 538 
     | 
    
         
            +
             
     | 
| 
       508 
539 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_gateway_response-instance_method
         
     | 
| 
       509 
540 
     | 
    
         
             
                  def delete_gateway_response: (
         
     | 
| 
       510 
541 
     | 
    
         
             
                                                 rest_api_id: ::String,
         
     | 
| 
         @@ -719,6 +750,7 @@ module Aws 
     | 
|
| 
       719 
750 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_base_path_mapping-instance_method
         
     | 
| 
       720 
751 
     | 
    
         
             
                  def get_base_path_mapping: (
         
     | 
| 
       721 
752 
     | 
    
         
             
                                               domain_name: ::String,
         
     | 
| 
      
 753 
     | 
    
         
            +
                                               ?domain_name_id: ::String,
         
     | 
| 
       722 
754 
     | 
    
         
             
                                               base_path: ::String
         
     | 
| 
       723 
755 
     | 
    
         
             
                                             ) -> _GetBasePathMappingResponseSuccess
         
     | 
| 
       724 
756 
     | 
    
         
             
                                           | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBasePathMappingResponseSuccess
         
     | 
| 
         @@ -731,6 +763,7 @@ module Aws 
     | 
|
| 
       731 
763 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_base_path_mappings-instance_method
         
     | 
| 
       732 
764 
     | 
    
         
             
                  def get_base_path_mappings: (
         
     | 
| 
       733 
765 
     | 
    
         
             
                                                domain_name: ::String,
         
     | 
| 
      
 766 
     | 
    
         
            +
                                                ?domain_name_id: ::String,
         
     | 
| 
       734 
767 
     | 
    
         
             
                                                ?position: ::String,
         
     | 
| 
       735 
768 
     | 
    
         
             
                                                ?limit: ::Integer
         
     | 
| 
       736 
769 
     | 
    
         
             
                                              ) -> _GetBasePathMappingsResponseSuccess
         
     | 
| 
         @@ -850,6 +883,8 @@ module Aws 
     | 
|
| 
       850 
883 
     | 
    
         
             
                  interface _GetDomainNameResponseSuccess
         
     | 
| 
       851 
884 
     | 
    
         
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
         
     | 
| 
       852 
885 
     | 
    
         
             
                    def domain_name: () -> ::String
         
     | 
| 
      
 886 
     | 
    
         
            +
                    def domain_name_id: () -> ::String
         
     | 
| 
      
 887 
     | 
    
         
            +
                    def domain_name_arn: () -> ::String
         
     | 
| 
       853 
888 
     | 
    
         
             
                    def certificate_name: () -> ::String
         
     | 
| 
       854 
889 
     | 
    
         
             
                    def certificate_arn: () -> ::String
         
     | 
| 
       855 
890 
     | 
    
         
             
                    def certificate_upload_date: () -> ::Time
         
     | 
| 
         @@ -866,13 +901,29 @@ module Aws 
     | 
|
| 
       866 
901 
     | 
    
         
             
                    def tags: () -> ::Hash[::String, ::String]
         
     | 
| 
       867 
902 
     | 
    
         
             
                    def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
         
     | 
| 
       868 
903 
     | 
    
         
             
                    def ownership_verification_certificate_arn: () -> ::String
         
     | 
| 
      
 904 
     | 
    
         
            +
                    def management_policy: () -> ::String
         
     | 
| 
      
 905 
     | 
    
         
            +
                    def policy: () -> ::String
         
     | 
| 
       869 
906 
     | 
    
         
             
                  end
         
     | 
| 
       870 
907 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_name-instance_method
         
     | 
| 
       871 
908 
     | 
    
         
             
                  def get_domain_name: (
         
     | 
| 
       872 
     | 
    
         
            -
                                         domain_name: ::String
         
     | 
| 
      
 909 
     | 
    
         
            +
                                         domain_name: ::String,
         
     | 
| 
      
 910 
     | 
    
         
            +
                                         ?domain_name_id: ::String
         
     | 
| 
       873 
911 
     | 
    
         
             
                                       ) -> _GetDomainNameResponseSuccess
         
     | 
| 
       874 
912 
     | 
    
         
             
                                     | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNameResponseSuccess
         
     | 
| 
       875 
913 
     | 
    
         | 
| 
      
 914 
     | 
    
         
            +
                  interface _GetDomainNameAccessAssociationsResponseSuccess
         
     | 
| 
      
 915 
     | 
    
         
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainNameAccessAssociations]
         
     | 
| 
      
 916 
     | 
    
         
            +
                    def position: () -> ::String
         
     | 
| 
      
 917 
     | 
    
         
            +
                    def items: () -> ::Array[Types::DomainNameAccessAssociation]
         
     | 
| 
      
 918 
     | 
    
         
            +
                  end
         
     | 
| 
      
 919 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_name_access_associations-instance_method
         
     | 
| 
      
 920 
     | 
    
         
            +
                  def get_domain_name_access_associations: (
         
     | 
| 
      
 921 
     | 
    
         
            +
                                                             ?position: ::String,
         
     | 
| 
      
 922 
     | 
    
         
            +
                                                             ?limit: ::Integer,
         
     | 
| 
      
 923 
     | 
    
         
            +
                                                             ?resource_owner: ("SELF" | "OTHER_ACCOUNTS")
         
     | 
| 
      
 924 
     | 
    
         
            +
                                                           ) -> _GetDomainNameAccessAssociationsResponseSuccess
         
     | 
| 
      
 925 
     | 
    
         
            +
                                                         | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNameAccessAssociationsResponseSuccess
         
     | 
| 
      
 926 
     | 
    
         
            +
             
     | 
| 
       876 
927 
     | 
    
         
             
                  interface _GetDomainNamesResponseSuccess
         
     | 
| 
       877 
928 
     | 
    
         
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainNames]
         
     | 
| 
       878 
929 
     | 
    
         
             
                    def position: () -> ::String
         
     | 
| 
         @@ -881,7 +932,8 @@ module Aws 
     | 
|
| 
       881 
932 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_names-instance_method
         
     | 
| 
       882 
933 
     | 
    
         
             
                  def get_domain_names: (
         
     | 
| 
       883 
934 
     | 
    
         
             
                                          ?position: ::String,
         
     | 
| 
       884 
     | 
    
         
            -
                                          ?limit: ::Integer
         
     | 
| 
      
 935 
     | 
    
         
            +
                                          ?limit: ::Integer,
         
     | 
| 
      
 936 
     | 
    
         
            +
                                          ?resource_owner: ("SELF" | "OTHER_ACCOUNTS")
         
     | 
| 
       885 
937 
     | 
    
         
             
                                        ) -> _GetDomainNamesResponseSuccess
         
     | 
| 
       886 
938 
     | 
    
         
             
                                      | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNamesResponseSuccess
         
     | 
| 
       887 
939 
     | 
    
         | 
| 
         @@ -1543,6 +1595,13 @@ module Aws 
     | 
|
| 
       1543 
1595 
     | 
    
         
             
                                    ) -> _PutRestApiResponseSuccess
         
     | 
| 
       1544 
1596 
     | 
    
         
             
                                  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRestApiResponseSuccess
         
     | 
| 
       1545 
1597 
     | 
    
         | 
| 
      
 1598 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#reject_domain_name_access_association-instance_method
         
     | 
| 
      
 1599 
     | 
    
         
            +
                  def reject_domain_name_access_association: (
         
     | 
| 
      
 1600 
     | 
    
         
            +
                                                               domain_name_access_association_arn: ::String,
         
     | 
| 
      
 1601 
     | 
    
         
            +
                                                               domain_name_arn: ::String
         
     | 
| 
      
 1602 
     | 
    
         
            +
                                                             ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 1603 
     | 
    
         
            +
                                                           | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 1604 
     | 
    
         
            +
             
     | 
| 
       1546 
1605 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#tag_resource-instance_method
         
     | 
| 
       1547 
1606 
     | 
    
         
             
                  def tag_resource: (
         
     | 
| 
       1548 
1607 
     | 
    
         
             
                                      resource_arn: ::String,
         
     | 
| 
         @@ -1687,6 +1746,7 @@ module Aws 
     | 
|
| 
       1687 
1746 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_base_path_mapping-instance_method
         
     | 
| 
       1688 
1747 
     | 
    
         
             
                  def update_base_path_mapping: (
         
     | 
| 
       1689 
1748 
     | 
    
         
             
                                                  domain_name: ::String,
         
     | 
| 
      
 1749 
     | 
    
         
            +
                                                  ?domain_name_id: ::String,
         
     | 
| 
       1690 
1750 
     | 
    
         
             
                                                  base_path: ::String,
         
     | 
| 
       1691 
1751 
     | 
    
         
             
                                                  ?patch_operations: Array[
         
     | 
| 
       1692 
1752 
     | 
    
         
             
                                                    {
         
     | 
| 
         @@ -1789,6 +1849,8 @@ module Aws 
     | 
|
| 
       1789 
1849 
     | 
    
         
             
                  interface _UpdateDomainNameResponseSuccess
         
     | 
| 
       1790 
1850 
     | 
    
         
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
         
     | 
| 
       1791 
1851 
     | 
    
         
             
                    def domain_name: () -> ::String
         
     | 
| 
      
 1852 
     | 
    
         
            +
                    def domain_name_id: () -> ::String
         
     | 
| 
      
 1853 
     | 
    
         
            +
                    def domain_name_arn: () -> ::String
         
     | 
| 
       1792 
1854 
     | 
    
         
             
                    def certificate_name: () -> ::String
         
     | 
| 
       1793 
1855 
     | 
    
         
             
                    def certificate_arn: () -> ::String
         
     | 
| 
       1794 
1856 
     | 
    
         
             
                    def certificate_upload_date: () -> ::Time
         
     | 
| 
         @@ -1805,10 +1867,13 @@ module Aws 
     | 
|
| 
       1805 
1867 
     | 
    
         
             
                    def tags: () -> ::Hash[::String, ::String]
         
     | 
| 
       1806 
1868 
     | 
    
         
             
                    def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
         
     | 
| 
       1807 
1869 
     | 
    
         
             
                    def ownership_verification_certificate_arn: () -> ::String
         
     | 
| 
      
 1870 
     | 
    
         
            +
                    def management_policy: () -> ::String
         
     | 
| 
      
 1871 
     | 
    
         
            +
                    def policy: () -> ::String
         
     | 
| 
       1808 
1872 
     | 
    
         
             
                  end
         
     | 
| 
       1809 
1873 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_domain_name-instance_method
         
     | 
| 
       1810 
1874 
     | 
    
         
             
                  def update_domain_name: (
         
     | 
| 
       1811 
1875 
     | 
    
         
             
                                            domain_name: ::String,
         
     | 
| 
      
 1876 
     | 
    
         
            +
                                            ?domain_name_id: ::String,
         
     | 
| 
       1812 
1877 
     | 
    
         
             
                                            ?patch_operations: Array[
         
     | 
| 
       1813 
1878 
     | 
    
         
             
                                              {
         
     | 
| 
       1814 
1879 
     | 
    
         
             
                                                op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
         
     |