diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-04-02 19:05:22 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-04-02 19:05:22 +0300 |
commit | 2b36ed26a1004c0e1267e4ae6037740c1feb4b45 (patch) | |
tree | d23fedfe5ecb2d5d077c2bd38b85e7805acc9173 /contrib | |
parent | 70dd205a265bca7ee326e1b524ad8b1c64240c7b (diff) | |
download | ydb-2b36ed26a1004c0e1267e4ae6037740c1feb4b45.tar.gz |
intermediate changes
ref:9c77f270165d14b960802a9f265a606214d75b27
Diffstat (limited to 'contrib')
7 files changed, 31 insertions, 7 deletions
diff --git a/contrib/python/boto3/py3/.dist-info/METADATA b/contrib/python/boto3/py3/.dist-info/METADATA index 78a95a7492b..379f93104be 100644 --- a/contrib/python/boto3/py3/.dist-info/METADATA +++ b/contrib/python/boto3/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: boto3 -Version: 1.21.31 +Version: 1.21.32 Summary: The AWS SDK for Python Home-page: https://github.com/boto/boto3 Author: Amazon Web Services @@ -22,7 +22,7 @@ Classifier: Programming Language :: Python :: 3.10 Requires-Python: >= 3.6 License-File: LICENSE License-File: NOTICE -Requires-Dist: botocore (<1.25.0,>=1.24.31) +Requires-Dist: botocore (<1.25.0,>=1.24.32) Requires-Dist: jmespath (<2.0.0,>=0.7.1) Requires-Dist: s3transfer (<0.6.0,>=0.5.0) Provides-Extra: crt diff --git a/contrib/python/boto3/py3/boto3/__init__.py b/contrib/python/boto3/py3/boto3/__init__.py index 02d5258cc59..8bbe48db1a9 100644 --- a/contrib/python/boto3/py3/boto3/__init__.py +++ b/contrib/python/boto3/py3/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.compat import _warn_deprecated_python from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.21.31' +__version__ = '1.21.32' # The default Boto3 session; autoloaded when needed. diff --git a/contrib/python/boto3/py3/boto3/examples/s3.rst b/contrib/python/boto3/py3/boto3/examples/s3.rst index 194f1111f16..0a79fb074fd 100644 --- a/contrib/python/boto3/py3/boto3/examples/s3.rst +++ b/contrib/python/boto3/py3/boto3/examples/s3.rst @@ -161,3 +161,25 @@ S3 object. "bucket-name", "key-name", "tmp.txt", ExtraArgs={"VersionId": "my-version-id"} ) + + +Filter objects by last modified time using JMESPath +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +This example shows how to filter objects by last modified time +using JMESPath. + +.. code-block:: python + + import boto3 + s3 = boto3.client("s3") + + s3_paginator = s3.get_paginator('list_objects_v2') + s3_iterator = s3_paginator.paginate(Bucket='your-bucket-name') + + filtered_iterator = s3_iterator.search( + "Contents[?to_string(LastModified)>='\"2022-01-05 08:05:37+00:00\"'].Key" + ) + + for key_data in filtered_iterator: + print(key_data) diff --git a/contrib/python/botocore/py3/.dist-info/METADATA b/contrib/python/botocore/py3/.dist-info/METADATA index 0cc195c5157..faef3388167 100644 --- a/contrib/python/botocore/py3/.dist-info/METADATA +++ b/contrib/python/botocore/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: botocore -Version: 1.24.31 +Version: 1.24.32 Summary: Low-level, data-driven core of boto 3. Home-page: https://github.com/boto/botocore Author: Amazon Web Services diff --git a/contrib/python/botocore/py3/botocore/__init__.py b/contrib/python/botocore/py3/botocore/__init__.py index efe005d9319..60cf5720487 100644 --- a/contrib/python/botocore/py3/botocore/__init__.py +++ b/contrib/python/botocore/py3/botocore/__init__.py @@ -16,7 +16,7 @@ import logging import os import re -__version__ = '1.24.31' +__version__ = '1.24.32' class NullHandler(logging.Handler): diff --git a/contrib/python/botocore/py3/botocore/data/connect/2017-08-08/service-2.json b/contrib/python/botocore/py3/botocore/data/connect/2017-08-08/service-2.json index 0b4769c44ae..c402fb90aa8 100644 --- a/contrib/python/botocore/py3/botocore/data/connect/2017-08-08/service-2.json +++ b/contrib/python/botocore/py3/botocore/data/connect/2017-08-08/service-2.json @@ -1685,7 +1685,7 @@ {"shape":"ResourceNotFoundException"}, {"shape":"InternalServiceException"} ], - "documentation":"<p>Ends the specified contact. This call does not work for the following initiation methods:</p> <ul> <li> <p>CALLBACK</p> </li> <li> <p>DISCONNECT</p> </li> <li> <p>TRANSFER</p> </li> <li> <p>QUEUE_TRANSFER</p> </li> </ul>" + "documentation":"<p>Ends the specified contact. This call does not work for the following initiation methods:</p> <ul> <li> <p>DISCONNECT</p> </li> <li> <p>TRANSFER</p> </li> <li> <p>QUEUE_TRANSFER</p> </li> </ul>" }, "StopContactRecording":{ "name":"StopContactRecording", @@ -5631,7 +5631,8 @@ "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", - "EARLY_MEDIA" + "EARLY_MEDIA", + "MULTI_PARTY_CONFERENCE" ] }, "InstanceAttributeValue":{ diff --git a/contrib/python/botocore/py3/botocore/data/endpoints.json b/contrib/python/botocore/py3/botocore/data/endpoints.json index 1a56fa3ff84..fc3007c34b8 100644 --- a/contrib/python/botocore/py3/botocore/data/endpoints.json +++ b/contrib/python/botocore/py3/botocore/data/endpoints.json @@ -1304,6 +1304,7 @@ "ap-south-1" : { }, "ap-southeast-1" : { }, "ap-southeast-2" : { }, + "ca-central-1" : { }, "eu-central-1" : { }, "eu-west-1" : { }, "eu-west-2" : { }, |