aws-sdk-apigateway 1.109.0 → 1.111.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +10 -0
 - data/VERSION +1 -1
 - data/lib/aws-sdk-apigateway/client.rb +261 -6
 - data/lib/aws-sdk-apigateway/client_api.rb +105 -0
 - data/lib/aws-sdk-apigateway/types.rb +231 -15
 - data/lib/aws-sdk-apigateway.rb +1 -1
 - data/sig/client.rbs +71 -4
 - data/sig/resource.rbs +2 -0
 - data/sig/types.rbs +55 -0
 - metadata +4 -4
 
| 
         @@ -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. Required for private
         
     | 
| 
      
 636 
     | 
    
         
            +
                #   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. Required for private
         
     | 
| 
      
 2649 
     | 
    
         
            +
                #   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
    
    | 
         @@ -39,7 +39,9 @@ module Aws 
     | 
|
| 
       39 
39 
     | 
    
         
             
                                  ?logger: untyped,
         
     | 
| 
       40 
40 
     | 
    
         
             
                                  ?max_attempts: Integer,
         
     | 
| 
       41 
41 
     | 
    
         
             
                                  ?profile: String,
         
     | 
| 
      
 42 
     | 
    
         
            +
                                  ?request_checksum_calculation: String,
         
     | 
| 
       42 
43 
     | 
    
         
             
                                  ?request_min_compression_size_bytes: Integer,
         
     | 
| 
      
 44 
     | 
    
         
            +
                                  ?response_checksum_validation: String,
         
     | 
| 
       43 
45 
     | 
    
         
             
                                  ?retry_backoff: Proc,
         
     | 
| 
       44 
46 
     | 
    
         
             
                                  ?retry_base_delay: Float,
         
     | 
| 
       45 
47 
     | 
    
         
             
                                  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
         
     | 
| 
         @@ -143,6 +145,7 @@ module Aws 
     | 
|
| 
       143 
145 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_base_path_mapping-instance_method
         
     | 
| 
       144 
146 
     | 
    
         
             
                  def create_base_path_mapping: (
         
     | 
| 
       145 
147 
     | 
    
         
             
                                                  domain_name: ::String,
         
     | 
| 
      
 148 
     | 
    
         
            +
                                                  ?domain_name_id: ::String,
         
     | 
| 
       146 
149 
     | 
    
         
             
                                                  ?base_path: ::String,
         
     | 
| 
       147 
150 
     | 
    
         
             
                                                  rest_api_id: ::String,
         
     | 
| 
       148 
151 
     | 
    
         
             
                                                  ?stage: ::String
         
     | 
| 
         @@ -212,6 +215,8 @@ module Aws 
     | 
|
| 
       212 
215 
     | 
    
         
             
                  interface _CreateDomainNameResponseSuccess
         
     | 
| 
       213 
216 
     | 
    
         
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
         
     | 
| 
       214 
217 
     | 
    
         
             
                    def domain_name: () -> ::String
         
     | 
| 
      
 218 
     | 
    
         
            +
                    def domain_name_id: () -> ::String
         
     | 
| 
      
 219 
     | 
    
         
            +
                    def domain_name_arn: () -> ::String
         
     | 
| 
       215 
220 
     | 
    
         
             
                    def certificate_name: () -> ::String
         
     | 
| 
       216 
221 
     | 
    
         
             
                    def certificate_arn: () -> ::String
         
     | 
| 
       217 
222 
     | 
    
         
             
                    def certificate_upload_date: () -> ::Time
         
     | 
| 
         @@ -228,6 +233,8 @@ module Aws 
     | 
|
| 
       228 
233 
     | 
    
         
             
                    def tags: () -> ::Hash[::String, ::String]
         
     | 
| 
       229 
234 
     | 
    
         
             
                    def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
         
     | 
| 
       230 
235 
     | 
    
         
             
                    def ownership_verification_certificate_arn: () -> ::String
         
     | 
| 
      
 236 
     | 
    
         
            +
                    def management_policy: () -> ::String
         
     | 
| 
      
 237 
     | 
    
         
            +
                    def policy: () -> ::String
         
     | 
| 
       231 
238 
     | 
    
         
             
                  end
         
     | 
| 
       232 
239 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_domain_name-instance_method
         
     | 
| 
       233 
240 
     | 
    
         
             
                  def create_domain_name: (
         
     | 
| 
         @@ -249,10 +256,28 @@ module Aws 
     | 
|
| 
       249 
256 
     | 
    
         
             
                                              truststore_uri: ::String?,
         
     | 
| 
       250 
257 
     | 
    
         
             
                                              truststore_version: ::String?
         
     | 
| 
       251 
258 
     | 
    
         
             
                                            },
         
     | 
| 
       252 
     | 
    
         
            -
                                            ?ownership_verification_certificate_arn: ::String
         
     | 
| 
      
 259 
     | 
    
         
            +
                                            ?ownership_verification_certificate_arn: ::String,
         
     | 
| 
      
 260 
     | 
    
         
            +
                                            ?policy: ::String
         
     | 
| 
       253 
261 
     | 
    
         
             
                                          ) -> _CreateDomainNameResponseSuccess
         
     | 
| 
       254 
262 
     | 
    
         
             
                                        | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameResponseSuccess
         
     | 
| 
       255 
263 
     | 
    
         | 
| 
      
 264 
     | 
    
         
            +
                  interface _CreateDomainNameAccessAssociationResponseSuccess
         
     | 
| 
      
 265 
     | 
    
         
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainNameAccessAssociation]
         
     | 
| 
      
 266 
     | 
    
         
            +
                    def domain_name_access_association_arn: () -> ::String
         
     | 
| 
      
 267 
     | 
    
         
            +
                    def domain_name_arn: () -> ::String
         
     | 
| 
      
 268 
     | 
    
         
            +
                    def access_association_source_type: () -> ("VPCE")
         
     | 
| 
      
 269 
     | 
    
         
            +
                    def access_association_source: () -> ::String
         
     | 
| 
      
 270 
     | 
    
         
            +
                    def tags: () -> ::Hash[::String, ::String]
         
     | 
| 
      
 271 
     | 
    
         
            +
                  end
         
     | 
| 
      
 272 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_domain_name_access_association-instance_method
         
     | 
| 
      
 273 
     | 
    
         
            +
                  def create_domain_name_access_association: (
         
     | 
| 
      
 274 
     | 
    
         
            +
                                                               domain_name_arn: ::String,
         
     | 
| 
      
 275 
     | 
    
         
            +
                                                               access_association_source_type: ("VPCE"),
         
     | 
| 
      
 276 
     | 
    
         
            +
                                                               access_association_source: ::String,
         
     | 
| 
      
 277 
     | 
    
         
            +
                                                               ?tags: Hash[::String, ::String]
         
     | 
| 
      
 278 
     | 
    
         
            +
                                                             ) -> _CreateDomainNameAccessAssociationResponseSuccess
         
     | 
| 
      
 279 
     | 
    
         
            +
                                                           | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameAccessAssociationResponseSuccess
         
     | 
| 
      
 280 
     | 
    
         
            +
             
     | 
| 
       256 
281 
     | 
    
         
             
                  interface _CreateModelResponseSuccess
         
     | 
| 
       257 
282 
     | 
    
         
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::Model]
         
     | 
| 
       258 
283 
     | 
    
         
             
                    def id: () -> ::String
         
     | 
| 
         @@ -468,6 +493,7 @@ module Aws 
     | 
|
| 
       468 
493 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_base_path_mapping-instance_method
         
     | 
| 
       469 
494 
     | 
    
         
             
                  def delete_base_path_mapping: (
         
     | 
| 
       470 
495 
     | 
    
         
             
                                                  domain_name: ::String,
         
     | 
| 
      
 496 
     | 
    
         
            +
                                                  ?domain_name_id: ::String,
         
     | 
| 
       471 
497 
     | 
    
         
             
                                                  base_path: ::String
         
     | 
| 
       472 
498 
     | 
    
         
             
                                                ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
       473 
499 
     | 
    
         
             
                                              | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
         @@ -501,10 +527,17 @@ module Aws 
     | 
|
| 
       501 
527 
     | 
    
         | 
| 
       502 
528 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_domain_name-instance_method
         
     | 
| 
       503 
529 
     | 
    
         
             
                  def delete_domain_name: (
         
     | 
| 
       504 
     | 
    
         
            -
                                            domain_name: ::String
         
     | 
| 
      
 530 
     | 
    
         
            +
                                            domain_name: ::String,
         
     | 
| 
      
 531 
     | 
    
         
            +
                                            ?domain_name_id: ::String
         
     | 
| 
       505 
532 
     | 
    
         
             
                                          ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
       506 
533 
     | 
    
         
             
                                        | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
       507 
534 
     | 
    
         | 
| 
      
 535 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_domain_name_access_association-instance_method
         
     | 
| 
      
 536 
     | 
    
         
            +
                  def delete_domain_name_access_association: (
         
     | 
| 
      
 537 
     | 
    
         
            +
                                                               domain_name_access_association_arn: ::String
         
     | 
| 
      
 538 
     | 
    
         
            +
                                                             ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 539 
     | 
    
         
            +
                                                           | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 540 
     | 
    
         
            +
             
     | 
| 
       508 
541 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_gateway_response-instance_method
         
     | 
| 
       509 
542 
     | 
    
         
             
                  def delete_gateway_response: (
         
     | 
| 
       510 
543 
     | 
    
         
             
                                                 rest_api_id: ::String,
         
     | 
| 
         @@ -719,6 +752,7 @@ module Aws 
     | 
|
| 
       719 
752 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_base_path_mapping-instance_method
         
     | 
| 
       720 
753 
     | 
    
         
             
                  def get_base_path_mapping: (
         
     | 
| 
       721 
754 
     | 
    
         
             
                                               domain_name: ::String,
         
     | 
| 
      
 755 
     | 
    
         
            +
                                               ?domain_name_id: ::String,
         
     | 
| 
       722 
756 
     | 
    
         
             
                                               base_path: ::String
         
     | 
| 
       723 
757 
     | 
    
         
             
                                             ) -> _GetBasePathMappingResponseSuccess
         
     | 
| 
       724 
758 
     | 
    
         
             
                                           | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBasePathMappingResponseSuccess
         
     | 
| 
         @@ -731,6 +765,7 @@ module Aws 
     | 
|
| 
       731 
765 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_base_path_mappings-instance_method
         
     | 
| 
       732 
766 
     | 
    
         
             
                  def get_base_path_mappings: (
         
     | 
| 
       733 
767 
     | 
    
         
             
                                                domain_name: ::String,
         
     | 
| 
      
 768 
     | 
    
         
            +
                                                ?domain_name_id: ::String,
         
     | 
| 
       734 
769 
     | 
    
         
             
                                                ?position: ::String,
         
     | 
| 
       735 
770 
     | 
    
         
             
                                                ?limit: ::Integer
         
     | 
| 
       736 
771 
     | 
    
         
             
                                              ) -> _GetBasePathMappingsResponseSuccess
         
     | 
| 
         @@ -850,6 +885,8 @@ module Aws 
     | 
|
| 
       850 
885 
     | 
    
         
             
                  interface _GetDomainNameResponseSuccess
         
     | 
| 
       851 
886 
     | 
    
         
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
         
     | 
| 
       852 
887 
     | 
    
         
             
                    def domain_name: () -> ::String
         
     | 
| 
      
 888 
     | 
    
         
            +
                    def domain_name_id: () -> ::String
         
     | 
| 
      
 889 
     | 
    
         
            +
                    def domain_name_arn: () -> ::String
         
     | 
| 
       853 
890 
     | 
    
         
             
                    def certificate_name: () -> ::String
         
     | 
| 
       854 
891 
     | 
    
         
             
                    def certificate_arn: () -> ::String
         
     | 
| 
       855 
892 
     | 
    
         
             
                    def certificate_upload_date: () -> ::Time
         
     | 
| 
         @@ -866,13 +903,29 @@ module Aws 
     | 
|
| 
       866 
903 
     | 
    
         
             
                    def tags: () -> ::Hash[::String, ::String]
         
     | 
| 
       867 
904 
     | 
    
         
             
                    def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
         
     | 
| 
       868 
905 
     | 
    
         
             
                    def ownership_verification_certificate_arn: () -> ::String
         
     | 
| 
      
 906 
     | 
    
         
            +
                    def management_policy: () -> ::String
         
     | 
| 
      
 907 
     | 
    
         
            +
                    def policy: () -> ::String
         
     | 
| 
       869 
908 
     | 
    
         
             
                  end
         
     | 
| 
       870 
909 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_name-instance_method
         
     | 
| 
       871 
910 
     | 
    
         
             
                  def get_domain_name: (
         
     | 
| 
       872 
     | 
    
         
            -
                                         domain_name: ::String
         
     | 
| 
      
 911 
     | 
    
         
            +
                                         domain_name: ::String,
         
     | 
| 
      
 912 
     | 
    
         
            +
                                         ?domain_name_id: ::String
         
     | 
| 
       873 
913 
     | 
    
         
             
                                       ) -> _GetDomainNameResponseSuccess
         
     | 
| 
       874 
914 
     | 
    
         
             
                                     | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNameResponseSuccess
         
     | 
| 
       875 
915 
     | 
    
         | 
| 
      
 916 
     | 
    
         
            +
                  interface _GetDomainNameAccessAssociationsResponseSuccess
         
     | 
| 
      
 917 
     | 
    
         
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainNameAccessAssociations]
         
     | 
| 
      
 918 
     | 
    
         
            +
                    def position: () -> ::String
         
     | 
| 
      
 919 
     | 
    
         
            +
                    def items: () -> ::Array[Types::DomainNameAccessAssociation]
         
     | 
| 
      
 920 
     | 
    
         
            +
                  end
         
     | 
| 
      
 921 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_name_access_associations-instance_method
         
     | 
| 
      
 922 
     | 
    
         
            +
                  def get_domain_name_access_associations: (
         
     | 
| 
      
 923 
     | 
    
         
            +
                                                             ?position: ::String,
         
     | 
| 
      
 924 
     | 
    
         
            +
                                                             ?limit: ::Integer,
         
     | 
| 
      
 925 
     | 
    
         
            +
                                                             ?resource_owner: ("SELF" | "OTHER_ACCOUNTS")
         
     | 
| 
      
 926 
     | 
    
         
            +
                                                           ) -> _GetDomainNameAccessAssociationsResponseSuccess
         
     | 
| 
      
 927 
     | 
    
         
            +
                                                         | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNameAccessAssociationsResponseSuccess
         
     | 
| 
      
 928 
     | 
    
         
            +
             
     | 
| 
       876 
929 
     | 
    
         
             
                  interface _GetDomainNamesResponseSuccess
         
     | 
| 
       877 
930 
     | 
    
         
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainNames]
         
     | 
| 
       878 
931 
     | 
    
         
             
                    def position: () -> ::String
         
     | 
| 
         @@ -881,7 +934,8 @@ module Aws 
     | 
|
| 
       881 
934 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_names-instance_method
         
     | 
| 
       882 
935 
     | 
    
         
             
                  def get_domain_names: (
         
     | 
| 
       883 
936 
     | 
    
         
             
                                          ?position: ::String,
         
     | 
| 
       884 
     | 
    
         
            -
                                          ?limit: ::Integer
         
     | 
| 
      
 937 
     | 
    
         
            +
                                          ?limit: ::Integer,
         
     | 
| 
      
 938 
     | 
    
         
            +
                                          ?resource_owner: ("SELF" | "OTHER_ACCOUNTS")
         
     | 
| 
       885 
939 
     | 
    
         
             
                                        ) -> _GetDomainNamesResponseSuccess
         
     | 
| 
       886 
940 
     | 
    
         
             
                                      | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNamesResponseSuccess
         
     | 
| 
       887 
941 
     | 
    
         | 
| 
         @@ -1543,6 +1597,13 @@ module Aws 
     | 
|
| 
       1543 
1597 
     | 
    
         
             
                                    ) -> _PutRestApiResponseSuccess
         
     | 
| 
       1544 
1598 
     | 
    
         
             
                                  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRestApiResponseSuccess
         
     | 
| 
       1545 
1599 
     | 
    
         | 
| 
      
 1600 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#reject_domain_name_access_association-instance_method
         
     | 
| 
      
 1601 
     | 
    
         
            +
                  def reject_domain_name_access_association: (
         
     | 
| 
      
 1602 
     | 
    
         
            +
                                                               domain_name_access_association_arn: ::String,
         
     | 
| 
      
 1603 
     | 
    
         
            +
                                                               domain_name_arn: ::String
         
     | 
| 
      
 1604 
     | 
    
         
            +
                                                             ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 1605 
     | 
    
         
            +
                                                           | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 1606 
     | 
    
         
            +
             
     | 
| 
       1546 
1607 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#tag_resource-instance_method
         
     | 
| 
       1547 
1608 
     | 
    
         
             
                  def tag_resource: (
         
     | 
| 
       1548 
1609 
     | 
    
         
             
                                      resource_arn: ::String,
         
     | 
| 
         @@ -1687,6 +1748,7 @@ module Aws 
     | 
|
| 
       1687 
1748 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_base_path_mapping-instance_method
         
     | 
| 
       1688 
1749 
     | 
    
         
             
                  def update_base_path_mapping: (
         
     | 
| 
       1689 
1750 
     | 
    
         
             
                                                  domain_name: ::String,
         
     | 
| 
      
 1751 
     | 
    
         
            +
                                                  ?domain_name_id: ::String,
         
     | 
| 
       1690 
1752 
     | 
    
         
             
                                                  base_path: ::String,
         
     | 
| 
       1691 
1753 
     | 
    
         
             
                                                  ?patch_operations: Array[
         
     | 
| 
       1692 
1754 
     | 
    
         
             
                                                    {
         
     | 
| 
         @@ -1789,6 +1851,8 @@ module Aws 
     | 
|
| 
       1789 
1851 
     | 
    
         
             
                  interface _UpdateDomainNameResponseSuccess
         
     | 
| 
       1790 
1852 
     | 
    
         
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
         
     | 
| 
       1791 
1853 
     | 
    
         
             
                    def domain_name: () -> ::String
         
     | 
| 
      
 1854 
     | 
    
         
            +
                    def domain_name_id: () -> ::String
         
     | 
| 
      
 1855 
     | 
    
         
            +
                    def domain_name_arn: () -> ::String
         
     | 
| 
       1792 
1856 
     | 
    
         
             
                    def certificate_name: () -> ::String
         
     | 
| 
       1793 
1857 
     | 
    
         
             
                    def certificate_arn: () -> ::String
         
     | 
| 
       1794 
1858 
     | 
    
         
             
                    def certificate_upload_date: () -> ::Time
         
     | 
| 
         @@ -1805,10 +1869,13 @@ module Aws 
     | 
|
| 
       1805 
1869 
     | 
    
         
             
                    def tags: () -> ::Hash[::String, ::String]
         
     | 
| 
       1806 
1870 
     | 
    
         
             
                    def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
         
     | 
| 
       1807 
1871 
     | 
    
         
             
                    def ownership_verification_certificate_arn: () -> ::String
         
     | 
| 
      
 1872 
     | 
    
         
            +
                    def management_policy: () -> ::String
         
     | 
| 
      
 1873 
     | 
    
         
            +
                    def policy: () -> ::String
         
     | 
| 
       1808 
1874 
     | 
    
         
             
                  end
         
     | 
| 
       1809 
1875 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_domain_name-instance_method
         
     | 
| 
       1810 
1876 
     | 
    
         
             
                  def update_domain_name: (
         
     | 
| 
       1811 
1877 
     | 
    
         
             
                                            domain_name: ::String,
         
     | 
| 
      
 1878 
     | 
    
         
            +
                                            ?domain_name_id: ::String,
         
     | 
| 
       1812 
1879 
     | 
    
         
             
                                            ?patch_operations: Array[
         
     | 
| 
       1813 
1880 
     | 
    
         
             
                                              {
         
     | 
| 
       1814 
1881 
     | 
    
         
             
                                                op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
         
     | 
    
        data/sig/resource.rbs
    CHANGED
    
    | 
         @@ -39,7 +39,9 @@ module Aws 
     | 
|
| 
       39 
39 
     | 
    
         
             
                                    ?logger: untyped,
         
     | 
| 
       40 
40 
     | 
    
         
             
                                    ?max_attempts: Integer,
         
     | 
| 
       41 
41 
     | 
    
         
             
                                    ?profile: String,
         
     | 
| 
      
 42 
     | 
    
         
            +
                                    ?request_checksum_calculation: String,
         
     | 
| 
       42 
43 
     | 
    
         
             
                                    ?request_min_compression_size_bytes: Integer,
         
     | 
| 
      
 44 
     | 
    
         
            +
                                    ?response_checksum_validation: String,
         
     | 
| 
       43 
45 
     | 
    
         
             
                                    ?retry_backoff: Proc,
         
     | 
| 
       44 
46 
     | 
    
         
             
                                    ?retry_base_delay: Float,
         
     | 
| 
       45 
47 
     | 
    
         
             
                                    ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
         
     |