Skip to content

Commit ea82181

Browse files
chore(MPL): Rename MPL Python package (#706)
1 parent 5b2b116 commit ea82181

File tree

57 files changed

+259
-217
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+259
-217
lines changed

examples/src/aws_kms_discovery_keyring_example.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@
3333
"""
3434

3535
import boto3
36-
from aws_cryptographic_materialproviders.mpl import AwsCryptographicMaterialProviders
37-
from aws_cryptographic_materialproviders.mpl.config import MaterialProvidersConfig
38-
from aws_cryptographic_materialproviders.mpl.models import (
36+
from aws_cryptographic_material_providers.mpl import AwsCryptographicMaterialProviders
37+
from aws_cryptographic_material_providers.mpl.config import MaterialProvidersConfig
38+
from aws_cryptographic_material_providers.mpl.models import (
3939
CreateAwsKmsDiscoveryKeyringInput,
4040
CreateAwsKmsKeyringInput,
4141
DiscoveryFilter,
4242
)
43-
from aws_cryptographic_materialproviders.mpl.references import IKeyring
43+
from aws_cryptographic_material_providers.mpl.references import IKeyring
4444
from typing import Dict # noqa pylint: disable=wrong-import-order
4545

4646
import aws_encryption_sdk

examples/src/aws_kms_discovery_multi_keyring_example.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@
3030
"""
3131

3232
import boto3
33-
from aws_cryptographic_materialproviders.mpl import AwsCryptographicMaterialProviders
34-
from aws_cryptographic_materialproviders.mpl.config import MaterialProvidersConfig
35-
from aws_cryptographic_materialproviders.mpl.models import (
33+
from aws_cryptographic_material_providers.mpl import AwsCryptographicMaterialProviders
34+
from aws_cryptographic_material_providers.mpl.config import MaterialProvidersConfig
35+
from aws_cryptographic_material_providers.mpl.models import (
3636
CreateAwsKmsDiscoveryMultiKeyringInput,
3737
CreateAwsKmsKeyringInput,
3838
DiscoveryFilter,
3939
)
40-
from aws_cryptographic_materialproviders.mpl.references import IKeyring
40+
from aws_cryptographic_material_providers.mpl.references import IKeyring
4141
from typing import Dict # noqa pylint: disable=wrong-import-order
4242

4343
import aws_encryption_sdk

examples/src/aws_kms_keyring_example.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"""
1919

2020
import boto3
21-
from aws_cryptographic_materialproviders.mpl import AwsCryptographicMaterialProviders
22-
from aws_cryptographic_materialproviders.mpl.config import MaterialProvidersConfig
23-
from aws_cryptographic_materialproviders.mpl.models import CreateAwsKmsKeyringInput
24-
from aws_cryptographic_materialproviders.mpl.references import IKeyring
21+
from aws_cryptographic_material_providers.mpl import AwsCryptographicMaterialProviders
22+
from aws_cryptographic_material_providers.mpl.config import MaterialProvidersConfig
23+
from aws_cryptographic_material_providers.mpl.models import CreateAwsKmsKeyringInput
24+
from aws_cryptographic_material_providers.mpl.references import IKeyring
2525
from typing import Dict # noqa pylint: disable=wrong-import-order
2626

2727
import aws_encryption_sdk

examples/src/aws_kms_mrk_discovery_keyring_example.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
"""
3636

3737
import boto3
38-
from aws_cryptographic_materialproviders.mpl import AwsCryptographicMaterialProviders
39-
from aws_cryptographic_materialproviders.mpl.config import MaterialProvidersConfig
40-
from aws_cryptographic_materialproviders.mpl.models import (
38+
from aws_cryptographic_material_providers.mpl import AwsCryptographicMaterialProviders
39+
from aws_cryptographic_material_providers.mpl.config import MaterialProvidersConfig
40+
from aws_cryptographic_material_providers.mpl.models import (
4141
CreateAwsKmsMrkDiscoveryKeyringInput,
4242
CreateAwsKmsMrkKeyringInput,
4343
DiscoveryFilter,
4444
)
45-
from aws_cryptographic_materialproviders.mpl.references import IKeyring
45+
from aws_cryptographic_material_providers.mpl.references import IKeyring
4646
from typing import Dict # noqa pylint: disable=wrong-import-order
4747

4848
import aws_encryption_sdk

examples/src/aws_kms_mrk_discovery_multi_keyring_example.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@
3737
"""
3838

3939
import boto3
40-
from aws_cryptographic_materialproviders.mpl import AwsCryptographicMaterialProviders
41-
from aws_cryptographic_materialproviders.mpl.config import MaterialProvidersConfig
42-
from aws_cryptographic_materialproviders.mpl.models import (
40+
from aws_cryptographic_material_providers.mpl import AwsCryptographicMaterialProviders
41+
from aws_cryptographic_material_providers.mpl.config import MaterialProvidersConfig
42+
from aws_cryptographic_material_providers.mpl.models import (
4343
CreateAwsKmsMrkDiscoveryMultiKeyringInput,
4444
CreateAwsKmsMrkKeyringInput,
4545
DiscoveryFilter,
4646
)
47-
from aws_cryptographic_materialproviders.mpl.references import IKeyring
47+
from aws_cryptographic_material_providers.mpl.references import IKeyring
4848
from typing import Dict # noqa pylint: disable=wrong-import-order
4949

5050
import aws_encryption_sdk

examples/src/aws_kms_mrk_keyring_example.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"""
2323

2424
import boto3
25-
from aws_cryptographic_materialproviders.mpl import AwsCryptographicMaterialProviders
26-
from aws_cryptographic_materialproviders.mpl.config import MaterialProvidersConfig
27-
from aws_cryptographic_materialproviders.mpl.models import CreateAwsKmsMrkKeyringInput
28-
from aws_cryptographic_materialproviders.mpl.references import IKeyring
25+
from aws_cryptographic_material_providers.mpl import AwsCryptographicMaterialProviders
26+
from aws_cryptographic_material_providers.mpl.config import MaterialProvidersConfig
27+
from aws_cryptographic_material_providers.mpl.models import CreateAwsKmsMrkKeyringInput
28+
from aws_cryptographic_material_providers.mpl.references import IKeyring
2929
from typing import Dict # noqa pylint: disable=wrong-import-order
3030

3131
import aws_encryption_sdk

examples/src/aws_kms_mrk_multi_keyring_example.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,13 @@
2828
"""
2929

3030
import boto3
31-
from aws_cryptographic_materialproviders.mpl import AwsCryptographicMaterialProviders
32-
from aws_cryptographic_materialproviders.mpl.config import MaterialProvidersConfig
33-
from aws_cryptographic_materialproviders.mpl.models import CreateAwsKmsMrkKeyringInput, CreateAwsKmsMrkMultiKeyringInput
34-
from aws_cryptographic_materialproviders.mpl.references import IKeyring
31+
from aws_cryptographic_material_providers.mpl import AwsCryptographicMaterialProviders
32+
from aws_cryptographic_material_providers.mpl.config import MaterialProvidersConfig
33+
from aws_cryptographic_material_providers.mpl.models import (
34+
CreateAwsKmsMrkKeyringInput,
35+
CreateAwsKmsMrkMultiKeyringInput,
36+
)
37+
from aws_cryptographic_material_providers.mpl.references import IKeyring
3538
from typing import Dict # noqa pylint: disable=wrong-import-order
3639

3740
import aws_encryption_sdk

examples/src/aws_kms_multi_keyring_example.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
"""
3939

4040
import boto3
41-
from aws_cryptographic_materialproviders.mpl import AwsCryptographicMaterialProviders
42-
from aws_cryptographic_materialproviders.mpl.config import MaterialProvidersConfig
43-
from aws_cryptographic_materialproviders.mpl.models import CreateAwsKmsKeyringInput, CreateAwsKmsMultiKeyringInput
44-
from aws_cryptographic_materialproviders.mpl.references import IKeyring
41+
from aws_cryptographic_material_providers.mpl import AwsCryptographicMaterialProviders
42+
from aws_cryptographic_material_providers.mpl.config import MaterialProvidersConfig
43+
from aws_cryptographic_material_providers.mpl.models import CreateAwsKmsKeyringInput, CreateAwsKmsMultiKeyringInput
44+
from aws_cryptographic_material_providers.mpl.references import IKeyring
4545
from typing import Dict # noqa pylint: disable=wrong-import-order
4646

4747
import aws_encryption_sdk

examples/src/aws_kms_rsa_keyring_example.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"""
1616

1717
import boto3
18-
from aws_cryptographic_materialproviders.mpl import AwsCryptographicMaterialProviders
19-
from aws_cryptographic_materialproviders.mpl.config import MaterialProvidersConfig
20-
from aws_cryptographic_materialproviders.mpl.models import CreateAwsKmsRsaKeyringInput
21-
from aws_cryptographic_materialproviders.mpl.references import IKeyring
18+
from aws_cryptographic_material_providers.mpl import AwsCryptographicMaterialProviders
19+
from aws_cryptographic_material_providers.mpl.config import MaterialProvidersConfig
20+
from aws_cryptographic_material_providers.mpl.models import CreateAwsKmsRsaKeyringInput
21+
from aws_cryptographic_material_providers.mpl.references import IKeyring
2222
from typing import Dict # noqa pylint: disable=wrong-import-order
2323

2424
import aws_encryption_sdk

examples/src/branch_key_id_supplier_example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# SPDX-License-Identifier: Apache-2.0
33
"""Example implementation of a branch key ID supplier."""
44

5-
from aws_cryptographic_materialproviders.mpl.models import GetBranchKeyIdInput, GetBranchKeyIdOutput
6-
from aws_cryptographic_materialproviders.mpl.references import IBranchKeyIdSupplier
5+
from aws_cryptographic_material_providers.mpl.models import GetBranchKeyIdInput, GetBranchKeyIdOutput
6+
from aws_cryptographic_material_providers.mpl.references import IBranchKeyIdSupplier
77
from typing import Dict # noqa pylint: disable=wrong-import-order
88

99

0 commit comments

Comments
 (0)