File tree 5 files changed +8
-4
lines changed
src/aws_encryption_sdk/keyrings/aws_kms
functional/keyrings/aws_kms
integration/keyrings/aws_kms
5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ Modules
17
17
aws_encryption_sdk.keyrings.base
18
18
aws_encryption_sdk.keyrings.aws_kms
19
19
aws_encryption_sdk.keyrings.aws_kms.client_suppliers
20
- aws_encryption_sdk.keyrings.aws_kms.client_cache
21
20
aws_encryption_sdk.keyrings.multi
22
21
aws_encryption_sdk.keyrings.raw
23
22
aws_encryption_sdk.key_providers.base
@@ -45,5 +44,6 @@ Modules
45
44
aws_encryption_sdk.internal.structures
46
45
aws_encryption_sdk.internal.validators
47
46
aws_encryption_sdk.internal.utils
47
+ aws_encryption_sdk.keyrings.aws_kms._client_cache
48
48
49
49
.. include :: ../CHANGELOG.rst
Original file line number Diff line number Diff line change 4
4
5
5
.. versionadded:: 1.5.0
6
6
7
+ .. warning::
8
+ No guarantee is provided on the modules and APIs within this
9
+ namespace staying consistent. Directly reference at your own risk.
10
+
7
11
"""
8
12
import functools
9
13
import logging
Original file line number Diff line number Diff line change 19
19
from aws_encryption_sdk .identifiers import USER_AGENT_SUFFIX
20
20
from aws_encryption_sdk .internal .validators import value_is_not_a_string
21
21
22
- from .client_cache import ClientCache
22
+ from ._client_cache import ClientCache
23
23
24
24
try : # Python 3.5.0 and 3.5.1 have incompatible typing modules
25
25
from typing import Callable , Union # noqa pylint: disable=unused-import
Original file line number Diff line number Diff line change 5
5
from botocore .config import Config
6
6
from botocore .session import Session
7
7
8
- from aws_encryption_sdk .keyrings .aws_kms .client_cache import ClientCache
8
+ from aws_encryption_sdk .keyrings .aws_kms ._client_cache import ClientCache
9
9
10
10
pytestmark = [pytest .mark .functional , pytest .mark .local ]
11
11
Original file line number Diff line number Diff line change 6
6
from botocore .exceptions import BotoCoreError
7
7
from botocore .session import Session
8
8
9
- from aws_encryption_sdk .keyrings .aws_kms .client_cache import ClientCache
9
+ from aws_encryption_sdk .keyrings .aws_kms ._client_cache import ClientCache
10
10
11
11
pytestmark = [pytest .mark .integ ]
12
12
You can’t perform that action at this time.
0 commit comments