pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/py-moto



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Oct 26 12:58:04 UTC 2022

Modified Files:
        pkgsrc/net/py-moto: ALTERNATIVES Makefile PLIST distinfo

Log Message:
py-moto: updated to 4.0.8

4.0.8

General:
    * Unpins the werkzeug-dependency - Moto now works with werkzeug==2.2.2
    * Fixes the Docker-build to run on M1 Macbooks.

New Services:
    * ServiceQuotas:
        * get_service_quota()
        * list_aws_default_service_quotas()

New Methods:
    * CloudFront: list_invalidations()
    * RDS: modify_db_cluster()

Miscellaneous:
    * Lambda:delete_function() - fixed an issue where the wrong Function would be deleted when providing a qualifier
    * ECR:put_image() now removes any existing images that have the provided tag
    * IAM:detach_user/group/role_policy() now throws the correct error message when the policy is not attached in the first place
    * S3:list_object_versions(): Fix delimiter to take prefix into account
    * S3: Now closes file handles as early as possible when deleting files/multipart uploads
    * Sagamaker:describe_training_job() now throws the correct exception when trying to explain a non-existing job


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/py-moto/ALTERNATIVES
cvs rdiff -u -r1.8 -r1.9 pkgsrc/net/py-moto/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/py-moto/PLIST
cvs rdiff -u -r1.5 -r1.6 pkgsrc/net/py-moto/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/py-moto/ALTERNATIVES
diff -u pkgsrc/net/py-moto/ALTERNATIVES:1.1 pkgsrc/net/py-moto/ALTERNATIVES:1.2
--- pkgsrc/net/py-moto/ALTERNATIVES:1.1 Wed Dec 20 14:13:56 2017
+++ pkgsrc/net/py-moto/ALTERNATIVES     Wed Oct 26 12:58:04 2022
@@ -1 +1 @@
-bin/moto_server @PREFIX@/bin/moto_server@PYVERSSUFFIX@
+bin/moto_server @PREFIX@/bin/moto_server-@PYVERSSUFFIX@

Index: pkgsrc/net/py-moto/Makefile
diff -u pkgsrc/net/py-moto/Makefile:1.8 pkgsrc/net/py-moto/Makefile:1.9
--- pkgsrc/net/py-moto/Makefile:1.8     Wed Oct 19 13:56:32 2022
+++ pkgsrc/net/py-moto/Makefile Wed Oct 26 12:58:04 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2022/10/19 13:56:32 nia Exp $
+# $NetBSD: Makefile,v 1.9 2022/10/26 12:58:04 adam Exp $
 
-DISTNAME=      moto-3.0.3
+DISTNAME=      moto-4.0.8
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    net devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=m/moto/}
@@ -11,40 +11,40 @@ COMMENT=    Mock-up of the boto library
 LICENSE=       apache-2.0
 
 DEPENDS+=      ${PYPKGPREFIX}-boto3>=1.9.201:../../net/py-boto3
-DEPENDS+=      ${PYPKGPREFIX}-botocore-[0-9]*:../../net/py-botocore
-DEPENDS+=      ${PYPKGPREFIX}-requests>=2.5:../../devel/py-requests
-DEPENDS+=      ${PYPKGPREFIX}-xmltodict-[0-9]*:../../textproc/py-xmltodict
-DEPENDS+=      ${PYPKGPREFIX}-werkzeug-[0-9]*:../../www/py-werkzeug
-DEPENDS+=      ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
+DEPENDS+=      ${PYPKGPREFIX}-botocore>=1.12.201:../../net/py-botocore
 DEPENDS+=      ${PYPKGPREFIX}-dateutil>=2.1:../../time/py-dateutil
-DEPENDS+=      ${PYPKGPREFIX}-responses>=0.9.0:../../net/py-responses
 DEPENDS+=      ${PYPKGPREFIX}-jinja2>=2.10.1:../../textproc/py-jinja2
+DEPENDS+=      ${PYPKGPREFIX}-markupsafe>=2.0.1:../../textproc/py-markupsafe
+DEPENDS+=      ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
+DEPENDS+=      ${PYPKGPREFIX}-requests>=2.5:../../devel/py-requests
+DEPENDS+=      ${PYPKGPREFIX}-responses>=0.13.0:../../net/py-responses
+DEPENDS+=      ${PYPKGPREFIX}-werkzeug>=2.2.2:../../www/py-werkzeug
+DEPENDS+=      ${PYPKGPREFIX}-xmltodict-[0-9]*:../../textproc/py-xmltodict
 # unlisted but used
 DEPENDS+=      ${PYPKGPREFIX}-flask-[0-9]*:../../www/py-flask
 DEPENDS+=      ${PYPKGPREFIX}-pyaml-[0-9]*:../../textproc/py-pyaml
-
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 # unlisted but used
+TEST_DEPENDS+= ${PYPKGPREFIX}-flask-cors-[0-9]*:../../www/py-flask-cors
 TEST_DEPENDS+= ${PYPKGPREFIX}-freezegun-[0-9]*:../../devel/py-freezegun
+TEST_DEPENDS+= ${PYPKGPREFIX}-openapi-spec-validator>=0.2.8:../../textproc/py-openapi-spec-validator
 TEST_DEPENDS+= ${PYPKGPREFIX}-sure>=1.2.24:../../devel/py-sure
 
 USE_PKG_RESOURCES=     yes
 
-TEST_ENV+=     PYTHONPATH=${WRKSRC}/build/lib
-
-PYTHON_VERSIONS_INCOMPATIBLE=  27 # py-sure
+PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 .include "../../lang/python/pyversion.mk"
-
-.if ${PYPKGPREFIX} == "py37"
+.if ${_PYTHON_VERSION} == 37
 DEPENDS+=      ${PYPKGPREFIX}-importlib-metadata-[0-9]*:../../devel/py-importlib-metadata
 .endif
 
 post-install:
-       cd ${DESTDIR}${PREFIX}/bin && ${MV} moto_server moto_server${PYVERSSUFFIX} || ${TRUE}
+       cd ${DESTDIR}${PREFIX}/bin && \
+       ${MV} moto_server moto_server-${PYVERSSUFFIX} || ${TRUE}
 
 do-test:
-       cd ${WRKSRC}/tests && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
+       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests
 
 .include "../../lang/python/egg.mk"
 PYTHON_VERSIONED_DEPENDENCIES+=        cryptography

Index: pkgsrc/net/py-moto/PLIST
diff -u pkgsrc/net/py-moto/PLIST:1.3 pkgsrc/net/py-moto/PLIST:1.4
--- pkgsrc/net/py-moto/PLIST:1.3        Tue Feb 15 15:32:09 2022
+++ pkgsrc/net/py-moto/PLIST    Wed Oct 26 12:58:04 2022
@@ -1,5 +1,5 @@
-@comment $NetBSD: PLIST,v 1.3 2022/02/15 15:32:09 wiz Exp $
-bin/moto_server${PYVERSSUFFIX}
+@comment $NetBSD: PLIST,v 1.4 2022/10/26 12:58:04 adam Exp $
+bin/moto_server-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -12,6 +12,9 @@ ${PYSITELIB}/moto/__init__.pyo
 ${PYSITELIB}/moto/acm/__init__.py
 ${PYSITELIB}/moto/acm/__init__.pyc
 ${PYSITELIB}/moto/acm/__init__.pyo
+${PYSITELIB}/moto/acm/exceptions.py
+${PYSITELIB}/moto/acm/exceptions.pyc
+${PYSITELIB}/moto/acm/exceptions.pyo
 ${PYSITELIB}/moto/acm/models.py
 ${PYSITELIB}/moto/acm/models.pyc
 ${PYSITELIB}/moto/acm/models.pyo
@@ -24,6 +27,24 @@ ${PYSITELIB}/moto/acm/urls.pyo
 ${PYSITELIB}/moto/acm/utils.py
 ${PYSITELIB}/moto/acm/utils.pyc
 ${PYSITELIB}/moto/acm/utils.pyo
+${PYSITELIB}/moto/amp/__init__.py
+${PYSITELIB}/moto/amp/__init__.pyc
+${PYSITELIB}/moto/amp/__init__.pyo
+${PYSITELIB}/moto/amp/exceptions.py
+${PYSITELIB}/moto/amp/exceptions.pyc
+${PYSITELIB}/moto/amp/exceptions.pyo
+${PYSITELIB}/moto/amp/models.py
+${PYSITELIB}/moto/amp/models.pyc
+${PYSITELIB}/moto/amp/models.pyo
+${PYSITELIB}/moto/amp/responses.py
+${PYSITELIB}/moto/amp/responses.pyc
+${PYSITELIB}/moto/amp/responses.pyo
+${PYSITELIB}/moto/amp/urls.py
+${PYSITELIB}/moto/amp/urls.pyc
+${PYSITELIB}/moto/amp/urls.pyo
+${PYSITELIB}/moto/amp/utils.py
+${PYSITELIB}/moto/amp/utils.pyc
+${PYSITELIB}/moto/amp/utils.pyo
 ${PYSITELIB}/moto/apigateway/__init__.py
 ${PYSITELIB}/moto/apigateway/__init__.pyc
 ${PYSITELIB}/moto/apigateway/__init__.pyo
@@ -180,6 +201,18 @@ ${PYSITELIB}/moto/batch/urls.pyo
 ${PYSITELIB}/moto/batch/utils.py
 ${PYSITELIB}/moto/batch/utils.pyc
 ${PYSITELIB}/moto/batch/utils.pyo
+${PYSITELIB}/moto/batch_simple/__init__.py
+${PYSITELIB}/moto/batch_simple/__init__.pyc
+${PYSITELIB}/moto/batch_simple/__init__.pyo
+${PYSITELIB}/moto/batch_simple/models.py
+${PYSITELIB}/moto/batch_simple/models.pyc
+${PYSITELIB}/moto/batch_simple/models.pyo
+${PYSITELIB}/moto/batch_simple/responses.py
+${PYSITELIB}/moto/batch_simple/responses.pyc
+${PYSITELIB}/moto/batch_simple/responses.pyo
+${PYSITELIB}/moto/batch_simple/urls.py
+${PYSITELIB}/moto/batch_simple/urls.pyc
+${PYSITELIB}/moto/batch_simple/urls.pyo
 ${PYSITELIB}/moto/budgets/__init__.py
 ${PYSITELIB}/moto/budgets/__init__.pyc
 ${PYSITELIB}/moto/budgets/__init__.pyo
@@ -195,6 +228,21 @@ ${PYSITELIB}/moto/budgets/responses.pyo
 ${PYSITELIB}/moto/budgets/urls.py
 ${PYSITELIB}/moto/budgets/urls.pyc
 ${PYSITELIB}/moto/budgets/urls.pyo
+${PYSITELIB}/moto/ce/__init__.py
+${PYSITELIB}/moto/ce/__init__.pyc
+${PYSITELIB}/moto/ce/__init__.pyo
+${PYSITELIB}/moto/ce/exceptions.py
+${PYSITELIB}/moto/ce/exceptions.pyc
+${PYSITELIB}/moto/ce/exceptions.pyo
+${PYSITELIB}/moto/ce/models.py
+${PYSITELIB}/moto/ce/models.pyc
+${PYSITELIB}/moto/ce/models.pyo
+${PYSITELIB}/moto/ce/responses.py
+${PYSITELIB}/moto/ce/responses.pyc
+${PYSITELIB}/moto/ce/responses.pyo
+${PYSITELIB}/moto/ce/urls.py
+${PYSITELIB}/moto/ce/urls.pyc
+${PYSITELIB}/moto/ce/urls.pyo
 ${PYSITELIB}/moto/cloudformation/__init__.py
 ${PYSITELIB}/moto/cloudformation/__init__.pyc
 ${PYSITELIB}/moto/cloudformation/__init__.pyo
@@ -267,6 +315,21 @@ ${PYSITELIB}/moto/cloudwatch/urls.pyo
 ${PYSITELIB}/moto/cloudwatch/utils.py
 ${PYSITELIB}/moto/cloudwatch/utils.pyc
 ${PYSITELIB}/moto/cloudwatch/utils.pyo
+${PYSITELIB}/moto/codebuild/__init__.py
+${PYSITELIB}/moto/codebuild/__init__.pyc
+${PYSITELIB}/moto/codebuild/__init__.pyo
+${PYSITELIB}/moto/codebuild/exceptions.py
+${PYSITELIB}/moto/codebuild/exceptions.pyc
+${PYSITELIB}/moto/codebuild/exceptions.pyo
+${PYSITELIB}/moto/codebuild/models.py
+${PYSITELIB}/moto/codebuild/models.pyc
+${PYSITELIB}/moto/codebuild/models.pyo
+${PYSITELIB}/moto/codebuild/responses.py
+${PYSITELIB}/moto/codebuild/responses.pyc
+${PYSITELIB}/moto/codebuild/responses.pyo
+${PYSITELIB}/moto/codebuild/urls.py
+${PYSITELIB}/moto/codebuild/urls.pyc
+${PYSITELIB}/moto/codebuild/urls.pyo
 ${PYSITELIB}/moto/codecommit/__init__.py
 ${PYSITELIB}/moto/codecommit/__init__.pyc
 ${PYSITELIB}/moto/codecommit/__init__.pyo
@@ -335,6 +398,21 @@ ${PYSITELIB}/moto/cognitoidp/urls.pyo
 ${PYSITELIB}/moto/cognitoidp/utils.py
 ${PYSITELIB}/moto/cognitoidp/utils.pyc
 ${PYSITELIB}/moto/cognitoidp/utils.pyo
+${PYSITELIB}/moto/comprehend/__init__.py
+${PYSITELIB}/moto/comprehend/__init__.pyc
+${PYSITELIB}/moto/comprehend/__init__.pyo
+${PYSITELIB}/moto/comprehend/exceptions.py
+${PYSITELIB}/moto/comprehend/exceptions.pyc
+${PYSITELIB}/moto/comprehend/exceptions.pyo
+${PYSITELIB}/moto/comprehend/models.py
+${PYSITELIB}/moto/comprehend/models.pyc
+${PYSITELIB}/moto/comprehend/models.pyo
+${PYSITELIB}/moto/comprehend/responses.py
+${PYSITELIB}/moto/comprehend/responses.pyc
+${PYSITELIB}/moto/comprehend/responses.pyo
+${PYSITELIB}/moto/comprehend/urls.py
+${PYSITELIB}/moto/comprehend/urls.pyc
+${PYSITELIB}/moto/comprehend/urls.pyo
 ${PYSITELIB}/moto/config/__init__.py
 ${PYSITELIB}/moto/config/__init__.pyc
 ${PYSITELIB}/moto/config/__init__.pyo
@@ -354,6 +432,15 @@ ${PYSITELIB}/moto/config/urls.pyo
 ${PYSITELIB}/moto/core/__init__.py
 ${PYSITELIB}/moto/core/__init__.pyc
 ${PYSITELIB}/moto/core/__init__.pyo
+${PYSITELIB}/moto/core/base_backend.py
+${PYSITELIB}/moto/core/base_backend.pyc
+${PYSITELIB}/moto/core/base_backend.pyo
+${PYSITELIB}/moto/core/botocore_stubber.py
+${PYSITELIB}/moto/core/botocore_stubber.pyc
+${PYSITELIB}/moto/core/botocore_stubber.pyo
+${PYSITELIB}/moto/core/common_models.py
+${PYSITELIB}/moto/core/common_models.pyc
+${PYSITELIB}/moto/core/common_models.pyo
 ${PYSITELIB}/moto/core/custom_responses_mock.py
 ${PYSITELIB}/moto/core/custom_responses_mock.pyc
 ${PYSITELIB}/moto/core/custom_responses_mock.pyo
@@ -369,12 +456,24 @@ ${PYSITELIB}/moto/core/responses.pyo
 ${PYSITELIB}/moto/core/responses_custom_registry.py
 ${PYSITELIB}/moto/core/responses_custom_registry.pyc
 ${PYSITELIB}/moto/core/responses_custom_registry.pyo
-${PYSITELIB}/moto/core/urls.py
-${PYSITELIB}/moto/core/urls.pyc
-${PYSITELIB}/moto/core/urls.pyo
 ${PYSITELIB}/moto/core/utils.py
 ${PYSITELIB}/moto/core/utils.pyc
 ${PYSITELIB}/moto/core/utils.pyo
+${PYSITELIB}/moto/databrew/__init__.py
+${PYSITELIB}/moto/databrew/__init__.pyc
+${PYSITELIB}/moto/databrew/__init__.pyo
+${PYSITELIB}/moto/databrew/exceptions.py
+${PYSITELIB}/moto/databrew/exceptions.pyc
+${PYSITELIB}/moto/databrew/exceptions.pyo
+${PYSITELIB}/moto/databrew/models.py
+${PYSITELIB}/moto/databrew/models.pyc
+${PYSITELIB}/moto/databrew/models.pyo
+${PYSITELIB}/moto/databrew/responses.py
+${PYSITELIB}/moto/databrew/responses.pyc
+${PYSITELIB}/moto/databrew/responses.pyo
+${PYSITELIB}/moto/databrew/urls.py
+${PYSITELIB}/moto/databrew/urls.pyc
+${PYSITELIB}/moto/databrew/urls.pyo
 ${PYSITELIB}/moto/datapipeline/__init__.py
 ${PYSITELIB}/moto/datapipeline/__init__.pyc
 ${PYSITELIB}/moto/datapipeline/__init__.pyo
@@ -468,64 +567,67 @@ ${PYSITELIB}/moto/dynamodb/__init__.pyo
 ${PYSITELIB}/moto/dynamodb/comparisons.py
 ${PYSITELIB}/moto/dynamodb/comparisons.pyc
 ${PYSITELIB}/moto/dynamodb/comparisons.pyo
-${PYSITELIB}/moto/dynamodb/models.py
-${PYSITELIB}/moto/dynamodb/models.pyc
-${PYSITELIB}/moto/dynamodb/models.pyo
+${PYSITELIB}/moto/dynamodb/exceptions.py
+${PYSITELIB}/moto/dynamodb/exceptions.pyc
+${PYSITELIB}/moto/dynamodb/exceptions.pyo
+${PYSITELIB}/moto/dynamodb/limits.py
+${PYSITELIB}/moto/dynamodb/limits.pyc
+${PYSITELIB}/moto/dynamodb/limits.pyo
+${PYSITELIB}/moto/dynamodb/models/__init__.py
+${PYSITELIB}/moto/dynamodb/models/__init__.pyc
+${PYSITELIB}/moto/dynamodb/models/__init__.pyo
+${PYSITELIB}/moto/dynamodb/models/dynamo_type.py
+${PYSITELIB}/moto/dynamodb/models/dynamo_type.pyc
+${PYSITELIB}/moto/dynamodb/models/dynamo_type.pyo
+${PYSITELIB}/moto/dynamodb/models/utilities.py
+${PYSITELIB}/moto/dynamodb/models/utilities.pyc
+${PYSITELIB}/moto/dynamodb/models/utilities.pyo
+${PYSITELIB}/moto/dynamodb/parsing/__init__.py
+${PYSITELIB}/moto/dynamodb/parsing/__init__.pyc
+${PYSITELIB}/moto/dynamodb/parsing/__init__.pyo
+${PYSITELIB}/moto/dynamodb/parsing/ast_nodes.py
+${PYSITELIB}/moto/dynamodb/parsing/ast_nodes.pyc
+${PYSITELIB}/moto/dynamodb/parsing/ast_nodes.pyo
+${PYSITELIB}/moto/dynamodb/parsing/executors.py
+${PYSITELIB}/moto/dynamodb/parsing/executors.pyc
+${PYSITELIB}/moto/dynamodb/parsing/executors.pyo
+${PYSITELIB}/moto/dynamodb/parsing/expressions.py
+${PYSITELIB}/moto/dynamodb/parsing/expressions.pyc
+${PYSITELIB}/moto/dynamodb/parsing/expressions.pyo
+${PYSITELIB}/moto/dynamodb/parsing/key_condition_expression.py
+${PYSITELIB}/moto/dynamodb/parsing/key_condition_expression.pyc
+${PYSITELIB}/moto/dynamodb/parsing/key_condition_expression.pyo
+${PYSITELIB}/moto/dynamodb/parsing/reserved_keywords.py
+${PYSITELIB}/moto/dynamodb/parsing/reserved_keywords.pyc
+${PYSITELIB}/moto/dynamodb/parsing/reserved_keywords.pyo
+${PYSITELIB}/moto/dynamodb/parsing/reserved_keywords.txt
+${PYSITELIB}/moto/dynamodb/parsing/tokens.py
+${PYSITELIB}/moto/dynamodb/parsing/tokens.pyc
+${PYSITELIB}/moto/dynamodb/parsing/tokens.pyo
+${PYSITELIB}/moto/dynamodb/parsing/validators.py
+${PYSITELIB}/moto/dynamodb/parsing/validators.pyc
+${PYSITELIB}/moto/dynamodb/parsing/validators.pyo
 ${PYSITELIB}/moto/dynamodb/responses.py
 ${PYSITELIB}/moto/dynamodb/responses.pyc
 ${PYSITELIB}/moto/dynamodb/responses.pyo
 ${PYSITELIB}/moto/dynamodb/urls.py
 ${PYSITELIB}/moto/dynamodb/urls.pyc
 ${PYSITELIB}/moto/dynamodb/urls.pyo
-${PYSITELIB}/moto/dynamodb2/__init__.py
-${PYSITELIB}/moto/dynamodb2/__init__.pyc
-${PYSITELIB}/moto/dynamodb2/__init__.pyo
-${PYSITELIB}/moto/dynamodb2/comparisons.py
-${PYSITELIB}/moto/dynamodb2/comparisons.pyc
-${PYSITELIB}/moto/dynamodb2/comparisons.pyo
-${PYSITELIB}/moto/dynamodb2/exceptions.py
-${PYSITELIB}/moto/dynamodb2/exceptions.pyc
-${PYSITELIB}/moto/dynamodb2/exceptions.pyo
-${PYSITELIB}/moto/dynamodb2/limits.py
-${PYSITELIB}/moto/dynamodb2/limits.pyc
-${PYSITELIB}/moto/dynamodb2/limits.pyo
-${PYSITELIB}/moto/dynamodb2/models/__init__.py
-${PYSITELIB}/moto/dynamodb2/models/__init__.pyc
-${PYSITELIB}/moto/dynamodb2/models/__init__.pyo
-${PYSITELIB}/moto/dynamodb2/models/dynamo_type.py
-${PYSITELIB}/moto/dynamodb2/models/dynamo_type.pyc
-${PYSITELIB}/moto/dynamodb2/models/dynamo_type.pyo
-${PYSITELIB}/moto/dynamodb2/models/utilities.py
-${PYSITELIB}/moto/dynamodb2/models/utilities.pyc
-${PYSITELIB}/moto/dynamodb2/models/utilities.pyo
-${PYSITELIB}/moto/dynamodb2/parsing/__init__.py
-${PYSITELIB}/moto/dynamodb2/parsing/__init__.pyc
-${PYSITELIB}/moto/dynamodb2/parsing/__init__.pyo
-${PYSITELIB}/moto/dynamodb2/parsing/ast_nodes.py
-${PYSITELIB}/moto/dynamodb2/parsing/ast_nodes.pyc
-${PYSITELIB}/moto/dynamodb2/parsing/ast_nodes.pyo
-${PYSITELIB}/moto/dynamodb2/parsing/executors.py
-${PYSITELIB}/moto/dynamodb2/parsing/executors.pyc
-${PYSITELIB}/moto/dynamodb2/parsing/executors.pyo
-${PYSITELIB}/moto/dynamodb2/parsing/expressions.py
-${PYSITELIB}/moto/dynamodb2/parsing/expressions.pyc
-${PYSITELIB}/moto/dynamodb2/parsing/expressions.pyo
-${PYSITELIB}/moto/dynamodb2/parsing/reserved_keywords.py
-${PYSITELIB}/moto/dynamodb2/parsing/reserved_keywords.pyc
-${PYSITELIB}/moto/dynamodb2/parsing/reserved_keywords.pyo
-${PYSITELIB}/moto/dynamodb2/parsing/reserved_keywords.txt
-${PYSITELIB}/moto/dynamodb2/parsing/tokens.py
-${PYSITELIB}/moto/dynamodb2/parsing/tokens.pyc
-${PYSITELIB}/moto/dynamodb2/parsing/tokens.pyo
-${PYSITELIB}/moto/dynamodb2/parsing/validators.py
-${PYSITELIB}/moto/dynamodb2/parsing/validators.pyc
-${PYSITELIB}/moto/dynamodb2/parsing/validators.pyo
-${PYSITELIB}/moto/dynamodb2/responses.py
-${PYSITELIB}/moto/dynamodb2/responses.pyc
-${PYSITELIB}/moto/dynamodb2/responses.pyo
-${PYSITELIB}/moto/dynamodb2/urls.py
-${PYSITELIB}/moto/dynamodb2/urls.pyc
-${PYSITELIB}/moto/dynamodb2/urls.pyo
+${PYSITELIB}/moto/dynamodb_v20111205/__init__.py
+${PYSITELIB}/moto/dynamodb_v20111205/__init__.pyc
+${PYSITELIB}/moto/dynamodb_v20111205/__init__.pyo
+${PYSITELIB}/moto/dynamodb_v20111205/comparisons.py
+${PYSITELIB}/moto/dynamodb_v20111205/comparisons.pyc
+${PYSITELIB}/moto/dynamodb_v20111205/comparisons.pyo
+${PYSITELIB}/moto/dynamodb_v20111205/models.py
+${PYSITELIB}/moto/dynamodb_v20111205/models.pyc
+${PYSITELIB}/moto/dynamodb_v20111205/models.pyo
+${PYSITELIB}/moto/dynamodb_v20111205/responses.py
+${PYSITELIB}/moto/dynamodb_v20111205/responses.pyc
+${PYSITELIB}/moto/dynamodb_v20111205/responses.pyo
+${PYSITELIB}/moto/dynamodb_v20111205/urls.py
+${PYSITELIB}/moto/dynamodb_v20111205/urls.pyc
+${PYSITELIB}/moto/dynamodb_v20111205/urls.pyo
 ${PYSITELIB}/moto/dynamodbstreams/__init__.py
 ${PYSITELIB}/moto/dynamodbstreams/__init__.pyc
 ${PYSITELIB}/moto/dynamodbstreams/__init__.pyo
@@ -538,21 +640,126 @@ ${PYSITELIB}/moto/dynamodbstreams/respon
 ${PYSITELIB}/moto/dynamodbstreams/urls.py
 ${PYSITELIB}/moto/dynamodbstreams/urls.pyc
 ${PYSITELIB}/moto/dynamodbstreams/urls.pyo
+${PYSITELIB}/moto/ebs/__init__.py
+${PYSITELIB}/moto/ebs/__init__.pyc
+${PYSITELIB}/moto/ebs/__init__.pyo
+${PYSITELIB}/moto/ebs/models.py
+${PYSITELIB}/moto/ebs/models.pyc
+${PYSITELIB}/moto/ebs/models.pyo
+${PYSITELIB}/moto/ebs/responses.py
+${PYSITELIB}/moto/ebs/responses.pyc
+${PYSITELIB}/moto/ebs/responses.pyo
+${PYSITELIB}/moto/ebs/urls.py
+${PYSITELIB}/moto/ebs/urls.pyc
+${PYSITELIB}/moto/ebs/urls.pyo
 ${PYSITELIB}/moto/ec2/__init__.py
 ${PYSITELIB}/moto/ec2/__init__.pyc
 ${PYSITELIB}/moto/ec2/__init__.pyo
-${PYSITELIB}/moto/ec2/_models/core.py
-${PYSITELIB}/moto/ec2/_models/core.pyc
-${PYSITELIB}/moto/ec2/_models/core.pyo
-${PYSITELIB}/moto/ec2/_models/vpc_service_configuration.py
-${PYSITELIB}/moto/ec2/_models/vpc_service_configuration.pyc
-${PYSITELIB}/moto/ec2/_models/vpc_service_configuration.pyo
 ${PYSITELIB}/moto/ec2/exceptions.py
 ${PYSITELIB}/moto/ec2/exceptions.pyc
 ${PYSITELIB}/moto/ec2/exceptions.pyo
-${PYSITELIB}/moto/ec2/models.py
-${PYSITELIB}/moto/ec2/models.pyc
-${PYSITELIB}/moto/ec2/models.pyo
+${PYSITELIB}/moto/ec2/models/__init__.py
+${PYSITELIB}/moto/ec2/models/__init__.pyc
+${PYSITELIB}/moto/ec2/models/__init__.pyo
+${PYSITELIB}/moto/ec2/models/amis.py
+${PYSITELIB}/moto/ec2/models/amis.pyc
+${PYSITELIB}/moto/ec2/models/amis.pyo
+${PYSITELIB}/moto/ec2/models/availability_zones_and_regions.py
+${PYSITELIB}/moto/ec2/models/availability_zones_and_regions.pyc
+${PYSITELIB}/moto/ec2/models/availability_zones_and_regions.pyo
+${PYSITELIB}/moto/ec2/models/carrier_gateways.py
+${PYSITELIB}/moto/ec2/models/carrier_gateways.pyc
+${PYSITELIB}/moto/ec2/models/carrier_gateways.pyo
+${PYSITELIB}/moto/ec2/models/core.py
+${PYSITELIB}/moto/ec2/models/core.pyc
+${PYSITELIB}/moto/ec2/models/core.pyo
+${PYSITELIB}/moto/ec2/models/customer_gateways.py
+${PYSITELIB}/moto/ec2/models/customer_gateways.pyc
+${PYSITELIB}/moto/ec2/models/customer_gateways.pyo
+${PYSITELIB}/moto/ec2/models/dhcp_options.py
+${PYSITELIB}/moto/ec2/models/dhcp_options.pyc
+${PYSITELIB}/moto/ec2/models/dhcp_options.pyo
+${PYSITELIB}/moto/ec2/models/elastic_block_store.py
+${PYSITELIB}/moto/ec2/models/elastic_block_store.pyc
+${PYSITELIB}/moto/ec2/models/elastic_block_store.pyo
+${PYSITELIB}/moto/ec2/models/elastic_ip_addresses.py
+${PYSITELIB}/moto/ec2/models/elastic_ip_addresses.pyc
+${PYSITELIB}/moto/ec2/models/elastic_ip_addresses.pyo
+${PYSITELIB}/moto/ec2/models/elastic_network_interfaces.py
+${PYSITELIB}/moto/ec2/models/elastic_network_interfaces.pyc
+${PYSITELIB}/moto/ec2/models/elastic_network_interfaces.pyo
+${PYSITELIB}/moto/ec2/models/fleets.py
+${PYSITELIB}/moto/ec2/models/fleets.pyc
+${PYSITELIB}/moto/ec2/models/fleets.pyo
+${PYSITELIB}/moto/ec2/models/flow_logs.py
+${PYSITELIB}/moto/ec2/models/flow_logs.pyc
+${PYSITELIB}/moto/ec2/models/flow_logs.pyo
+${PYSITELIB}/moto/ec2/models/iam_instance_profile.py
+${PYSITELIB}/moto/ec2/models/iam_instance_profile.pyc
+${PYSITELIB}/moto/ec2/models/iam_instance_profile.pyo
+${PYSITELIB}/moto/ec2/models/instance_types.py
+${PYSITELIB}/moto/ec2/models/instance_types.pyc
+${PYSITELIB}/moto/ec2/models/instance_types.pyo
+${PYSITELIB}/moto/ec2/models/instances.py
+${PYSITELIB}/moto/ec2/models/instances.pyc
+${PYSITELIB}/moto/ec2/models/instances.pyo
+${PYSITELIB}/moto/ec2/models/internet_gateways.py
+${PYSITELIB}/moto/ec2/models/internet_gateways.pyc
+${PYSITELIB}/moto/ec2/models/internet_gateways.pyo
+${PYSITELIB}/moto/ec2/models/key_pairs.py
+${PYSITELIB}/moto/ec2/models/key_pairs.pyc
+${PYSITELIB}/moto/ec2/models/key_pairs.pyo
+${PYSITELIB}/moto/ec2/models/launch_templates.py
+${PYSITELIB}/moto/ec2/models/launch_templates.pyc
+${PYSITELIB}/moto/ec2/models/launch_templates.pyo
+${PYSITELIB}/moto/ec2/models/managed_prefixes.py
+${PYSITELIB}/moto/ec2/models/managed_prefixes.pyc
+${PYSITELIB}/moto/ec2/models/managed_prefixes.pyo
+${PYSITELIB}/moto/ec2/models/nat_gateways.py
+${PYSITELIB}/moto/ec2/models/nat_gateways.pyc
+${PYSITELIB}/moto/ec2/models/nat_gateways.pyo
+${PYSITELIB}/moto/ec2/models/network_acls.py
+${PYSITELIB}/moto/ec2/models/network_acls.pyc
+${PYSITELIB}/moto/ec2/models/network_acls.pyo
+${PYSITELIB}/moto/ec2/models/route_tables.py
+${PYSITELIB}/moto/ec2/models/route_tables.pyc
+${PYSITELIB}/moto/ec2/models/route_tables.pyo
+${PYSITELIB}/moto/ec2/models/security_groups.py
+${PYSITELIB}/moto/ec2/models/security_groups.pyc
+${PYSITELIB}/moto/ec2/models/security_groups.pyo
+${PYSITELIB}/moto/ec2/models/spot_requests.py
+${PYSITELIB}/moto/ec2/models/spot_requests.pyc
+${PYSITELIB}/moto/ec2/models/spot_requests.pyo
+${PYSITELIB}/moto/ec2/models/subnets.py
+${PYSITELIB}/moto/ec2/models/subnets.pyc
+${PYSITELIB}/moto/ec2/models/subnets.pyo
+${PYSITELIB}/moto/ec2/models/tags.py
+${PYSITELIB}/moto/ec2/models/tags.pyc
+${PYSITELIB}/moto/ec2/models/tags.pyo
+${PYSITELIB}/moto/ec2/models/transit_gateway.py
+${PYSITELIB}/moto/ec2/models/transit_gateway.pyc
+${PYSITELIB}/moto/ec2/models/transit_gateway.pyo
+${PYSITELIB}/moto/ec2/models/transit_gateway_attachments.py
+${PYSITELIB}/moto/ec2/models/transit_gateway_attachments.pyc
+${PYSITELIB}/moto/ec2/models/transit_gateway_attachments.pyo
+${PYSITELIB}/moto/ec2/models/transit_gateway_route_tables.py
+${PYSITELIB}/moto/ec2/models/transit_gateway_route_tables.pyc
+${PYSITELIB}/moto/ec2/models/transit_gateway_route_tables.pyo
+${PYSITELIB}/moto/ec2/models/vpc_peering_connections.py
+${PYSITELIB}/moto/ec2/models/vpc_peering_connections.pyc
+${PYSITELIB}/moto/ec2/models/vpc_peering_connections.pyo
+${PYSITELIB}/moto/ec2/models/vpc_service_configuration.py
+${PYSITELIB}/moto/ec2/models/vpc_service_configuration.pyc
+${PYSITELIB}/moto/ec2/models/vpc_service_configuration.pyo
+${PYSITELIB}/moto/ec2/models/vpcs.py
+${PYSITELIB}/moto/ec2/models/vpcs.pyc
+${PYSITELIB}/moto/ec2/models/vpcs.pyo
+${PYSITELIB}/moto/ec2/models/vpn_connections.py
+${PYSITELIB}/moto/ec2/models/vpn_connections.pyc
+${PYSITELIB}/moto/ec2/models/vpn_connections.pyo
+${PYSITELIB}/moto/ec2/models/vpn_gateway.py
+${PYSITELIB}/moto/ec2/models/vpn_gateway.pyc
+${PYSITELIB}/moto/ec2/models/vpn_gateway.pyo
 ${PYSITELIB}/moto/ec2/regions.py
 ${PYSITELIB}/moto/ec2/regions.pyc
 ${PYSITELIB}/moto/ec2/regions.pyo
@@ -623,9 +830,33 @@ ${PYSITELIB}/moto/ec2/resources/instance
 ${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/us-west-1.json
 ${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/us-west-2.json
 ${PYSITELIB}/moto/ec2/resources/instance_types.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/af-south-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-east-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-northeast-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-northeast-2.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-northeast-3.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-south-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-southeast-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-southeast-2.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/ca-central-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-central-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-north-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-south-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-west-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-west-2.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-west-3.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/me-south-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/sa-east-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/us-east-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/us-east-2.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/us-west-1.json
+${PYSITELIB}/moto/ec2/resources/latest_amis/us-west-2.json
 ${PYSITELIB}/moto/ec2/responses/__init__.py
 ${PYSITELIB}/moto/ec2/responses/__init__.pyc
 ${PYSITELIB}/moto/ec2/responses/__init__.pyo
+${PYSITELIB}/moto/ec2/responses/_base_response.py
+${PYSITELIB}/moto/ec2/responses/_base_response.pyc
+${PYSITELIB}/moto/ec2/responses/_base_response.pyo
 ${PYSITELIB}/moto/ec2/responses/account_attributes.py
 ${PYSITELIB}/moto/ec2/responses/account_attributes.pyc
 ${PYSITELIB}/moto/ec2/responses/account_attributes.pyo
@@ -659,6 +890,9 @@ ${PYSITELIB}/moto/ec2/responses/elastic_
 ${PYSITELIB}/moto/ec2/responses/elastic_network_interfaces.py
 ${PYSITELIB}/moto/ec2/responses/elastic_network_interfaces.pyc
 ${PYSITELIB}/moto/ec2/responses/elastic_network_interfaces.pyo
+${PYSITELIB}/moto/ec2/responses/fleets.py
+${PYSITELIB}/moto/ec2/responses/fleets.pyc
+${PYSITELIB}/moto/ec2/responses/fleets.pyo
 ${PYSITELIB}/moto/ec2/responses/flow_logs.py
 ${PYSITELIB}/moto/ec2/responses/flow_logs.pyc
 ${PYSITELIB}/moto/ec2/responses/flow_logs.pyo
@@ -890,6 +1124,9 @@ ${PYSITELIB}/moto/elb/exceptions.pyo
 ${PYSITELIB}/moto/elb/models.py
 ${PYSITELIB}/moto/elb/models.pyc
 ${PYSITELIB}/moto/elb/models.pyo
+${PYSITELIB}/moto/elb/policies.py
+${PYSITELIB}/moto/elb/policies.pyc
+${PYSITELIB}/moto/elb/policies.pyo
 ${PYSITELIB}/moto/elb/responses.py
 ${PYSITELIB}/moto/elb/responses.pyc
 ${PYSITELIB}/moto/elb/responses.pyo
@@ -950,6 +1187,24 @@ ${PYSITELIB}/moto/emrcontainers/urls.pyo
 ${PYSITELIB}/moto/emrcontainers/utils.py
 ${PYSITELIB}/moto/emrcontainers/utils.pyc
 ${PYSITELIB}/moto/emrcontainers/utils.pyo
+${PYSITELIB}/moto/emrserverless/__init__.py
+${PYSITELIB}/moto/emrserverless/__init__.pyc
+${PYSITELIB}/moto/emrserverless/__init__.pyo
+${PYSITELIB}/moto/emrserverless/exceptions.py
+${PYSITELIB}/moto/emrserverless/exceptions.pyc
+${PYSITELIB}/moto/emrserverless/exceptions.pyo
+${PYSITELIB}/moto/emrserverless/models.py
+${PYSITELIB}/moto/emrserverless/models.pyc
+${PYSITELIB}/moto/emrserverless/models.pyo
+${PYSITELIB}/moto/emrserverless/responses.py
+${PYSITELIB}/moto/emrserverless/responses.pyc
+${PYSITELIB}/moto/emrserverless/responses.pyo
+${PYSITELIB}/moto/emrserverless/urls.py
+${PYSITELIB}/moto/emrserverless/urls.pyc
+${PYSITELIB}/moto/emrserverless/urls.pyo
+${PYSITELIB}/moto/emrserverless/utils.py
+${PYSITELIB}/moto/emrserverless/utils.pyc
+${PYSITELIB}/moto/emrserverless/utils.pyo
 ${PYSITELIB}/moto/es/__init__.py
 ${PYSITELIB}/moto/es/__init__.pyc
 ${PYSITELIB}/moto/es/__init__.pyo
@@ -974,6 +1229,9 @@ ${PYSITELIB}/moto/events/exceptions.pyo
 ${PYSITELIB}/moto/events/models.py
 ${PYSITELIB}/moto/events/models.pyc
 ${PYSITELIB}/moto/events/models.pyo
+${PYSITELIB}/moto/events/notifications.py
+${PYSITELIB}/moto/events/notifications.pyc
+${PYSITELIB}/moto/events/notifications.pyo
 ${PYSITELIB}/moto/events/responses.py
 ${PYSITELIB}/moto/events/responses.pyc
 ${PYSITELIB}/moto/events/responses.pyo
@@ -1034,6 +1292,12 @@ ${PYSITELIB}/moto/glue/__init__.pyo
 ${PYSITELIB}/moto/glue/exceptions.py
 ${PYSITELIB}/moto/glue/exceptions.pyc
 ${PYSITELIB}/moto/glue/exceptions.pyo
+${PYSITELIB}/moto/glue/glue_schema_registry_constants.py
+${PYSITELIB}/moto/glue/glue_schema_registry_constants.pyc
+${PYSITELIB}/moto/glue/glue_schema_registry_constants.pyo
+${PYSITELIB}/moto/glue/glue_schema_registry_utils.py
+${PYSITELIB}/moto/glue/glue_schema_registry_utils.pyc
+${PYSITELIB}/moto/glue/glue_schema_registry_utils.pyo
 ${PYSITELIB}/moto/glue/models.py
 ${PYSITELIB}/moto/glue/models.pyc
 ${PYSITELIB}/moto/glue/models.pyo
@@ -1046,9 +1310,27 @@ ${PYSITELIB}/moto/glue/urls.pyo
 ${PYSITELIB}/moto/glue/utils.py
 ${PYSITELIB}/moto/glue/utils.pyc
 ${PYSITELIB}/moto/glue/utils.pyo
+${PYSITELIB}/moto/greengrass/__init__.py
+${PYSITELIB}/moto/greengrass/__init__.pyc
+${PYSITELIB}/moto/greengrass/__init__.pyo
+${PYSITELIB}/moto/greengrass/exceptions.py
+${PYSITELIB}/moto/greengrass/exceptions.pyc
+${PYSITELIB}/moto/greengrass/exceptions.pyo
+${PYSITELIB}/moto/greengrass/models.py
+${PYSITELIB}/moto/greengrass/models.pyc
+${PYSITELIB}/moto/greengrass/models.pyo
+${PYSITELIB}/moto/greengrass/responses.py
+${PYSITELIB}/moto/greengrass/responses.pyc
+${PYSITELIB}/moto/greengrass/responses.pyo
+${PYSITELIB}/moto/greengrass/urls.py
+${PYSITELIB}/moto/greengrass/urls.pyc
+${PYSITELIB}/moto/greengrass/urls.pyo
 ${PYSITELIB}/moto/guardduty/__init__.py
 ${PYSITELIB}/moto/guardduty/__init__.pyc
 ${PYSITELIB}/moto/guardduty/__init__.pyo
+${PYSITELIB}/moto/guardduty/exceptions.py
+${PYSITELIB}/moto/guardduty/exceptions.pyc
+${PYSITELIB}/moto/guardduty/exceptions.pyo
 ${PYSITELIB}/moto/guardduty/models.py
 ${PYSITELIB}/moto/guardduty/models.pyc
 ${PYSITELIB}/moto/guardduty/models.pyo
@@ -1313,6 +1595,64 @@ ${PYSITELIB}/moto/mediastoredata/respons
 ${PYSITELIB}/moto/mediastoredata/urls.py
 ${PYSITELIB}/moto/mediastoredata/urls.pyc
 ${PYSITELIB}/moto/mediastoredata/urls.pyo
+${PYSITELIB}/moto/meteringmarketplace/__init__.py
+${PYSITELIB}/moto/meteringmarketplace/__init__.pyc
+${PYSITELIB}/moto/meteringmarketplace/__init__.pyo
+${PYSITELIB}/moto/meteringmarketplace/exceptions.py
+${PYSITELIB}/moto/meteringmarketplace/exceptions.pyc
+${PYSITELIB}/moto/meteringmarketplace/exceptions.pyo
+${PYSITELIB}/moto/meteringmarketplace/models.py
+${PYSITELIB}/moto/meteringmarketplace/models.pyc
+${PYSITELIB}/moto/meteringmarketplace/models.pyo
+${PYSITELIB}/moto/meteringmarketplace/responses.py
+${PYSITELIB}/moto/meteringmarketplace/responses.pyc
+${PYSITELIB}/moto/meteringmarketplace/responses.pyo
+${PYSITELIB}/moto/meteringmarketplace/urls.py
+${PYSITELIB}/moto/meteringmarketplace/urls.pyc
+${PYSITELIB}/moto/meteringmarketplace/urls.pyo
+${PYSITELIB}/moto/moto_api/__init__.py
+${PYSITELIB}/moto/moto_api/__init__.pyc
+${PYSITELIB}/moto/moto_api/__init__.pyo
+${PYSITELIB}/moto/moto_api/_internal/__init__.py
+${PYSITELIB}/moto/moto_api/_internal/__init__.pyc
+${PYSITELIB}/moto/moto_api/_internal/__init__.pyo
+${PYSITELIB}/moto/moto_api/_internal/managed_state_model.py
+${PYSITELIB}/moto/moto_api/_internal/managed_state_model.pyc
+${PYSITELIB}/moto/moto_api/_internal/managed_state_model.pyo
+${PYSITELIB}/moto/moto_api/_internal/models.py
+${PYSITELIB}/moto/moto_api/_internal/models.pyc
+${PYSITELIB}/moto/moto_api/_internal/models.pyo
+${PYSITELIB}/moto/moto_api/_internal/moto_random.py
+${PYSITELIB}/moto/moto_api/_internal/moto_random.pyc
+${PYSITELIB}/moto/moto_api/_internal/moto_random.pyo
+${PYSITELIB}/moto/moto_api/_internal/recorder/__init__.py
+${PYSITELIB}/moto/moto_api/_internal/recorder/__init__.pyc
+${PYSITELIB}/moto/moto_api/_internal/recorder/__init__.pyo
+${PYSITELIB}/moto/moto_api/_internal/recorder/models.py
+${PYSITELIB}/moto/moto_api/_internal/recorder/models.pyc
+${PYSITELIB}/moto/moto_api/_internal/recorder/models.pyo
+${PYSITELIB}/moto/moto_api/_internal/recorder/responses.py
+${PYSITELIB}/moto/moto_api/_internal/recorder/responses.pyc
+${PYSITELIB}/moto/moto_api/_internal/recorder/responses.pyo
+${PYSITELIB}/moto/moto_api/_internal/responses.py
+${PYSITELIB}/moto/moto_api/_internal/responses.pyc
+${PYSITELIB}/moto/moto_api/_internal/responses.pyo
+${PYSITELIB}/moto/moto_api/_internal/state_manager.py
+${PYSITELIB}/moto/moto_api/_internal/state_manager.pyc
+${PYSITELIB}/moto/moto_api/_internal/state_manager.pyo
+${PYSITELIB}/moto/moto_api/_internal/urls.py
+${PYSITELIB}/moto/moto_api/_internal/urls.pyc
+${PYSITELIB}/moto/moto_api/_internal/urls.pyo
+${PYSITELIB}/moto/moto_server/templates/dashboard.html
+${PYSITELIB}/moto/moto_server/threaded_moto_server.py
+${PYSITELIB}/moto/moto_server/threaded_moto_server.pyc
+${PYSITELIB}/moto/moto_server/threaded_moto_server.pyo
+${PYSITELIB}/moto/moto_server/utilities.py
+${PYSITELIB}/moto/moto_server/utilities.pyc
+${PYSITELIB}/moto/moto_server/utilities.pyo
+${PYSITELIB}/moto/moto_server/werkzeug_app.py
+${PYSITELIB}/moto/moto_server/werkzeug_app.pyc
+${PYSITELIB}/moto/moto_server/werkzeug_app.pyo
 ${PYSITELIB}/moto/mq/__init__.py
 ${PYSITELIB}/moto/mq/__init__.pyc
 ${PYSITELIB}/moto/mq/__init__.pyo
@@ -1379,12 +1719,6 @@ ${PYSITELIB}/moto/packages/boto/ec2/bloc
 ${PYSITELIB}/moto/packages/boto/ec2/ec2object.py
 ${PYSITELIB}/moto/packages/boto/ec2/ec2object.pyc
 ${PYSITELIB}/moto/packages/boto/ec2/ec2object.pyo
-${PYSITELIB}/moto/packages/boto/ec2/elb/__init__.py
-${PYSITELIB}/moto/packages/boto/ec2/elb/__init__.pyc
-${PYSITELIB}/moto/packages/boto/ec2/elb/__init__.pyo
-${PYSITELIB}/moto/packages/boto/ec2/elb/policies.py
-${PYSITELIB}/moto/packages/boto/ec2/elb/policies.pyc
-${PYSITELIB}/moto/packages/boto/ec2/elb/policies.pyo
 ${PYSITELIB}/moto/packages/boto/ec2/image.py
 ${PYSITELIB}/moto/packages/boto/ec2/image.pyc
 ${PYSITELIB}/moto/packages/boto/ec2/image.pyo
@@ -1409,6 +1743,36 @@ ${PYSITELIB}/moto/packages/cfnresponse/_
 ${PYSITELIB}/moto/packages/cfnresponse/cfnresponse.py
 ${PYSITELIB}/moto/packages/cfnresponse/cfnresponse.pyc
 ${PYSITELIB}/moto/packages/cfnresponse/cfnresponse.pyo
+${PYSITELIB}/moto/personalize/__init__.py
+${PYSITELIB}/moto/personalize/__init__.pyc
+${PYSITELIB}/moto/personalize/__init__.pyo
+${PYSITELIB}/moto/personalize/exceptions.py
+${PYSITELIB}/moto/personalize/exceptions.pyc
+${PYSITELIB}/moto/personalize/exceptions.pyo
+${PYSITELIB}/moto/personalize/models.py
+${PYSITELIB}/moto/personalize/models.pyc
+${PYSITELIB}/moto/personalize/models.pyo
+${PYSITELIB}/moto/personalize/responses.py
+${PYSITELIB}/moto/personalize/responses.pyc
+${PYSITELIB}/moto/personalize/responses.pyo
+${PYSITELIB}/moto/personalize/urls.py
+${PYSITELIB}/moto/personalize/urls.pyc
+${PYSITELIB}/moto/personalize/urls.pyo
+${PYSITELIB}/moto/pinpoint/__init__.py
+${PYSITELIB}/moto/pinpoint/__init__.pyc
+${PYSITELIB}/moto/pinpoint/__init__.pyo
+${PYSITELIB}/moto/pinpoint/exceptions.py
+${PYSITELIB}/moto/pinpoint/exceptions.pyc
+${PYSITELIB}/moto/pinpoint/exceptions.pyo
+${PYSITELIB}/moto/pinpoint/models.py
+${PYSITELIB}/moto/pinpoint/models.pyc
+${PYSITELIB}/moto/pinpoint/models.pyo
+${PYSITELIB}/moto/pinpoint/responses.py
+${PYSITELIB}/moto/pinpoint/responses.pyc
+${PYSITELIB}/moto/pinpoint/responses.pyo
+${PYSITELIB}/moto/pinpoint/urls.py
+${PYSITELIB}/moto/pinpoint/urls.pyc
+${PYSITELIB}/moto/pinpoint/urls.pyo
 ${PYSITELIB}/moto/polly/__init__.py
 ${PYSITELIB}/moto/polly/__init__.pyc
 ${PYSITELIB}/moto/polly/__init__.pyo
@@ -1427,6 +1791,21 @@ ${PYSITELIB}/moto/polly/urls.pyo
 ${PYSITELIB}/moto/polly/utils.py
 ${PYSITELIB}/moto/polly/utils.pyc
 ${PYSITELIB}/moto/polly/utils.pyo
+${PYSITELIB}/moto/quicksight/__init__.py
+${PYSITELIB}/moto/quicksight/__init__.pyc
+${PYSITELIB}/moto/quicksight/__init__.pyo
+${PYSITELIB}/moto/quicksight/exceptions.py
+${PYSITELIB}/moto/quicksight/exceptions.pyc
+${PYSITELIB}/moto/quicksight/exceptions.pyo
+${PYSITELIB}/moto/quicksight/models.py
+${PYSITELIB}/moto/quicksight/models.pyc
+${PYSITELIB}/moto/quicksight/models.pyo
+${PYSITELIB}/moto/quicksight/responses.py
+${PYSITELIB}/moto/quicksight/responses.pyc
+${PYSITELIB}/moto/quicksight/responses.pyo
+${PYSITELIB}/moto/quicksight/urls.py
+${PYSITELIB}/moto/quicksight/urls.pyc
+${PYSITELIB}/moto/quicksight/urls.pyo
 ${PYSITELIB}/moto/ram/__init__.py
 ${PYSITELIB}/moto/ram/__init__.pyc
 ${PYSITELIB}/moto/ram/__init__.pyo
@@ -1457,24 +1836,9 @@ ${PYSITELIB}/moto/rds/responses.pyo
 ${PYSITELIB}/moto/rds/urls.py
 ${PYSITELIB}/moto/rds/urls.pyc
 ${PYSITELIB}/moto/rds/urls.pyo
-${PYSITELIB}/moto/rds2/__init__.py
-${PYSITELIB}/moto/rds2/__init__.pyc
-${PYSITELIB}/moto/rds2/__init__.pyo
-${PYSITELIB}/moto/rds2/exceptions.py
-${PYSITELIB}/moto/rds2/exceptions.pyc
-${PYSITELIB}/moto/rds2/exceptions.pyo
-${PYSITELIB}/moto/rds2/models.py
-${PYSITELIB}/moto/rds2/models.pyc
-${PYSITELIB}/moto/rds2/models.pyo
-${PYSITELIB}/moto/rds2/responses.py
-${PYSITELIB}/moto/rds2/responses.pyc
-${PYSITELIB}/moto/rds2/responses.pyo
-${PYSITELIB}/moto/rds2/urls.py
-${PYSITELIB}/moto/rds2/urls.pyc
-${PYSITELIB}/moto/rds2/urls.pyo
-${PYSITELIB}/moto/rds2/utils.py
-${PYSITELIB}/moto/rds2/utils.pyc
-${PYSITELIB}/moto/rds2/utils.pyo
+${PYSITELIB}/moto/rds/utils.py
+${PYSITELIB}/moto/rds/utils.pyc
+${PYSITELIB}/moto/rds/utils.pyo
 ${PYSITELIB}/moto/redshift/__init__.py
 ${PYSITELIB}/moto/redshift/__init__.pyc
 ${PYSITELIB}/moto/redshift/__init__.pyo
@@ -1493,6 +1857,36 @@ ${PYSITELIB}/moto/redshift/urls.pyo
 ${PYSITELIB}/moto/redshift/utils.py
 ${PYSITELIB}/moto/redshift/utils.pyc
 ${PYSITELIB}/moto/redshift/utils.pyo
+${PYSITELIB}/moto/redshiftdata/__init__.py
+${PYSITELIB}/moto/redshiftdata/__init__.pyc
+${PYSITELIB}/moto/redshiftdata/__init__.pyo
+${PYSITELIB}/moto/redshiftdata/exceptions.py
+${PYSITELIB}/moto/redshiftdata/exceptions.pyc
+${PYSITELIB}/moto/redshiftdata/exceptions.pyo
+${PYSITELIB}/moto/redshiftdata/models.py
+${PYSITELIB}/moto/redshiftdata/models.pyc
+${PYSITELIB}/moto/redshiftdata/models.pyo
+${PYSITELIB}/moto/redshiftdata/responses.py
+${PYSITELIB}/moto/redshiftdata/responses.pyc
+${PYSITELIB}/moto/redshiftdata/responses.pyo
+${PYSITELIB}/moto/redshiftdata/urls.py
+${PYSITELIB}/moto/redshiftdata/urls.pyc
+${PYSITELIB}/moto/redshiftdata/urls.pyo
+${PYSITELIB}/moto/rekognition/__init__.py
+${PYSITELIB}/moto/rekognition/__init__.pyc
+${PYSITELIB}/moto/rekognition/__init__.pyo
+${PYSITELIB}/moto/rekognition/exceptions.py
+${PYSITELIB}/moto/rekognition/exceptions.pyc
+${PYSITELIB}/moto/rekognition/exceptions.pyo
+${PYSITELIB}/moto/rekognition/models.py
+${PYSITELIB}/moto/rekognition/models.pyc
+${PYSITELIB}/moto/rekognition/models.pyo
+${PYSITELIB}/moto/rekognition/responses.py
+${PYSITELIB}/moto/rekognition/responses.pyc
+${PYSITELIB}/moto/rekognition/responses.pyo
+${PYSITELIB}/moto/rekognition/urls.py
+${PYSITELIB}/moto/rekognition/urls.pyc
+${PYSITELIB}/moto/rekognition/urls.pyo
 ${PYSITELIB}/moto/resourcegroups/__init__.py
 ${PYSITELIB}/moto/resourcegroups/__init__.pyc
 ${PYSITELIB}/moto/resourcegroups/__init__.pyo
@@ -1574,6 +1968,9 @@ ${PYSITELIB}/moto/s3/exceptions.pyo
 ${PYSITELIB}/moto/s3/models.py
 ${PYSITELIB}/moto/s3/models.pyc
 ${PYSITELIB}/moto/s3/models.pyo
+${PYSITELIB}/moto/s3/notifications.py
+${PYSITELIB}/moto/s3/notifications.pyc
+${PYSITELIB}/moto/s3/notifications.pyo
 ${PYSITELIB}/moto/s3/responses.py
 ${PYSITELIB}/moto/s3/responses.pyc
 ${PYSITELIB}/moto/s3/responses.pyo
@@ -1595,6 +1992,9 @@ ${PYSITELIB}/moto/s3control/__init__.pyo
 ${PYSITELIB}/moto/s3control/config.py
 ${PYSITELIB}/moto/s3control/config.pyc
 ${PYSITELIB}/moto/s3control/config.pyo
+${PYSITELIB}/moto/s3control/exceptions.py
+${PYSITELIB}/moto/s3control/exceptions.pyc
+${PYSITELIB}/moto/s3control/exceptions.pyo
 ${PYSITELIB}/moto/s3control/models.py
 ${PYSITELIB}/moto/s3control/models.pyc
 ${PYSITELIB}/moto/s3control/models.pyo
@@ -1664,6 +2064,45 @@ ${PYSITELIB}/moto/secretsmanager/utils.p
 ${PYSITELIB}/moto/server.py
 ${PYSITELIB}/moto/server.pyc
 ${PYSITELIB}/moto/server.pyo
+${PYSITELIB}/moto/servicediscovery/__init__.py
+${PYSITELIB}/moto/servicediscovery/__init__.pyc
+${PYSITELIB}/moto/servicediscovery/__init__.pyo
+${PYSITELIB}/moto/servicediscovery/exceptions.py
+${PYSITELIB}/moto/servicediscovery/exceptions.pyc
+${PYSITELIB}/moto/servicediscovery/exceptions.pyo
+${PYSITELIB}/moto/servicediscovery/models.py
+${PYSITELIB}/moto/servicediscovery/models.pyc
+${PYSITELIB}/moto/servicediscovery/models.pyo
+${PYSITELIB}/moto/servicediscovery/responses.py
+${PYSITELIB}/moto/servicediscovery/responses.pyc
+${PYSITELIB}/moto/servicediscovery/responses.pyo
+${PYSITELIB}/moto/servicediscovery/urls.py
+${PYSITELIB}/moto/servicediscovery/urls.pyc
+${PYSITELIB}/moto/servicediscovery/urls.pyo
+${PYSITELIB}/moto/servicequotas/__init__.py
+${PYSITELIB}/moto/servicequotas/__init__.pyc
+${PYSITELIB}/moto/servicequotas/__init__.pyo
+${PYSITELIB}/moto/servicequotas/exceptions.py
+${PYSITELIB}/moto/servicequotas/exceptions.pyc
+${PYSITELIB}/moto/servicequotas/exceptions.pyo
+${PYSITELIB}/moto/servicequotas/models.py
+${PYSITELIB}/moto/servicequotas/models.pyc
+${PYSITELIB}/moto/servicequotas/models.pyo
+${PYSITELIB}/moto/servicequotas/resources/__init__.py
+${PYSITELIB}/moto/servicequotas/resources/__init__.pyc
+${PYSITELIB}/moto/servicequotas/resources/__init__.pyo
+${PYSITELIB}/moto/servicequotas/resources/default_quotas/__init__.py
+${PYSITELIB}/moto/servicequotas/resources/default_quotas/__init__.pyc
+${PYSITELIB}/moto/servicequotas/resources/default_quotas/__init__.pyo
+${PYSITELIB}/moto/servicequotas/resources/default_quotas/vpc.py
+${PYSITELIB}/moto/servicequotas/resources/default_quotas/vpc.pyc
+${PYSITELIB}/moto/servicequotas/resources/default_quotas/vpc.pyo
+${PYSITELIB}/moto/servicequotas/responses.py
+${PYSITELIB}/moto/servicequotas/responses.pyc
+${PYSITELIB}/moto/servicequotas/responses.pyo
+${PYSITELIB}/moto/servicequotas/urls.py
+${PYSITELIB}/moto/servicequotas/urls.pyc
+${PYSITELIB}/moto/servicequotas/urls.pyo
 ${PYSITELIB}/moto/ses/__init__.py
 ${PYSITELIB}/moto/ses/__init__.pyc
 ${PYSITELIB}/moto/ses/__init__.pyo
@@ -1688,6 +2127,21 @@ ${PYSITELIB}/moto/ses/utils.pyo
 ${PYSITELIB}/moto/settings.py
 ${PYSITELIB}/moto/settings.pyc
 ${PYSITELIB}/moto/settings.pyo
+${PYSITELIB}/moto/signer/__init__.py
+${PYSITELIB}/moto/signer/__init__.pyc
+${PYSITELIB}/moto/signer/__init__.pyo
+${PYSITELIB}/moto/signer/exceptions.py
+${PYSITELIB}/moto/signer/exceptions.pyc
+${PYSITELIB}/moto/signer/exceptions.pyo
+${PYSITELIB}/moto/signer/models.py
+${PYSITELIB}/moto/signer/models.pyc
+${PYSITELIB}/moto/signer/models.pyo
+${PYSITELIB}/moto/signer/responses.py
+${PYSITELIB}/moto/signer/responses.pyc
+${PYSITELIB}/moto/signer/responses.pyo
+${PYSITELIB}/moto/signer/urls.py
+${PYSITELIB}/moto/signer/urls.pyc
+${PYSITELIB}/moto/signer/urls.pyo
 ${PYSITELIB}/moto/sns/__init__.py
 ${PYSITELIB}/moto/sns/__init__.pyc
 ${PYSITELIB}/moto/sns/__init__.pyo
@@ -1733,6 +2187,30 @@ ${PYSITELIB}/moto/ssm/exceptions.pyo
 ${PYSITELIB}/moto/ssm/models.py
 ${PYSITELIB}/moto/ssm/models.pyc
 ${PYSITELIB}/moto/ssm/models.pyo
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/af-south-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-east-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-2.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-3.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-south-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-2.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-3.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ca-central-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-central-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-north-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-south-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-west-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-west-2.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-west-3.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/me-south-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/sa-east-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-east-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-east-2.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-west-1.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-west-2.json
+${PYSITELIB}/moto/ssm/resources/regions.json
+${PYSITELIB}/moto/ssm/resources/services.json
 ${PYSITELIB}/moto/ssm/responses.py
 ${PYSITELIB}/moto/ssm/responses.pyc
 ${PYSITELIB}/moto/ssm/responses.pyo
@@ -1757,6 +2235,9 @@ ${PYSITELIB}/moto/ssoadmin/responses.pyo
 ${PYSITELIB}/moto/ssoadmin/urls.py
 ${PYSITELIB}/moto/ssoadmin/urls.pyc
 ${PYSITELIB}/moto/ssoadmin/urls.pyo
+${PYSITELIB}/moto/ssoadmin/utils.py
+${PYSITELIB}/moto/ssoadmin/utils.pyc
+${PYSITELIB}/moto/ssoadmin/utils.pyo
 ${PYSITELIB}/moto/stepfunctions/__init__.py
 ${PYSITELIB}/moto/stepfunctions/__init__.pyc
 ${PYSITELIB}/moto/stepfunctions/__init__.pyo
@@ -1860,7 +2341,21 @@ ${PYSITELIB}/moto/swf/urls.pyo
 ${PYSITELIB}/moto/swf/utils.py
 ${PYSITELIB}/moto/swf/utils.pyc
 ${PYSITELIB}/moto/swf/utils.pyo
-${PYSITELIB}/moto/templates/dashboard.html
+${PYSITELIB}/moto/textract/__init__.py
+${PYSITELIB}/moto/textract/__init__.pyc
+${PYSITELIB}/moto/textract/__init__.pyo
+${PYSITELIB}/moto/textract/exceptions.py
+${PYSITELIB}/moto/textract/exceptions.pyc
+${PYSITELIB}/moto/textract/exceptions.pyo
+${PYSITELIB}/moto/textract/models.py
+${PYSITELIB}/moto/textract/models.pyc
+${PYSITELIB}/moto/textract/models.pyo
+${PYSITELIB}/moto/textract/responses.py
+${PYSITELIB}/moto/textract/responses.pyc
+${PYSITELIB}/moto/textract/responses.pyo
+${PYSITELIB}/moto/textract/urls.py
+${PYSITELIB}/moto/textract/urls.pyc
+${PYSITELIB}/moto/textract/urls.pyo
 ${PYSITELIB}/moto/timestreamwrite/__init__.py
 ${PYSITELIB}/moto/timestreamwrite/__init__.pyc
 ${PYSITELIB}/moto/timestreamwrite/__init__.pyo
@@ -1894,6 +2389,9 @@ ${PYSITELIB}/moto/transcribe/urls.pyo
 ${PYSITELIB}/moto/utilities/__init__.py
 ${PYSITELIB}/moto/utilities/__init__.pyc
 ${PYSITELIB}/moto/utilities/__init__.pyo
+${PYSITELIB}/moto/utilities/aws_headers.py
+${PYSITELIB}/moto/utilities/aws_headers.pyc
+${PYSITELIB}/moto/utilities/aws_headers.pyo
 ${PYSITELIB}/moto/utilities/distutils_version.py
 ${PYSITELIB}/moto/utilities/distutils_version.pyc
 ${PYSITELIB}/moto/utilities/distutils_version.pyo

Index: pkgsrc/net/py-moto/distinfo
diff -u pkgsrc/net/py-moto/distinfo:1.5 pkgsrc/net/py-moto/distinfo:1.6
--- pkgsrc/net/py-moto/distinfo:1.5     Tue Feb 15 15:32:09 2022
+++ pkgsrc/net/py-moto/distinfo Wed Oct 26 12:58:04 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.5 2022/02/15 15:32:09 wiz Exp $
+$NetBSD: distinfo,v 1.6 2022/10/26 12:58:04 adam Exp $
 
-BLAKE2s (moto-3.0.3.tar.gz) = d24c0ebc18e361e62928fa9b518113c717bd417fb987e38803ef28e84f3bccb8
-SHA512 (moto-3.0.3.tar.gz) = 1b14d8a5101103d31136fddfb12c4d6251aa75487347b049ea96baae662528f2f557fe31a9af1cce544fa97d02710ab66f5ee517540bcf137965bd2fe3ec24fa
-Size (moto-3.0.3.tar.gz) = 2071948 bytes
+BLAKE2s (moto-4.0.8.tar.gz) = 139b810c1b1ce8b9350a92a276471dc6b189512ccfa1c587f45d1682c690442a
+SHA512 (moto-4.0.8.tar.gz) = 9d3d3164bb6a77901bb55b8c536bfc8822e5b5292d79fedfe89a4a7fefaeab24b740d9a898e9487152a45c5a3bfd15d8aaca042a485bea389e1a82bb0a90bdd0
+Size (moto-4.0.8.tar.gz) = 2488253 bytes



Home | Main Index | Thread Index | Old Index