mypy-boto3-sagemaker 1.37.18__py3-none-any.whl → 1.37.22__py3-none-any.whl
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.
Potentially problematic release.
This version of mypy-boto3-sagemaker might be problematic. Click here for more details.
- mypy_boto3_sagemaker/__main__.py +3 -3
- mypy_boto3_sagemaker/type_defs.py +5 -0
- mypy_boto3_sagemaker/type_defs.pyi +5 -0
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.37.18.dist-info → mypy_boto3_sagemaker-1.37.22.dist-info}/METADATA +4 -4
- {mypy_boto3_sagemaker-1.37.18.dist-info → mypy_boto3_sagemaker-1.37.22.dist-info}/RECORD +9 -9
- {mypy_boto3_sagemaker-1.37.18.dist-info → mypy_boto3_sagemaker-1.37.22.dist-info}/WHEEL +1 -1
- {mypy_boto3_sagemaker-1.37.18.dist-info → mypy_boto3_sagemaker-1.37.22.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.37.18.dist-info → mypy_boto3_sagemaker-1.37.22.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 SageMaker 1.37.
|
|
16
|
-
"Version: 1.37.
|
|
15
|
+
"Type annotations for boto3 SageMaker 1.37.22\n"
|
|
16
|
+
"Version: 1.37.22\n"
|
|
17
17
|
"Builder version: 8.10.1\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#sagemaker\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.37.
|
|
29
|
+
sys.stdout.write("1.37.22\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -6218,6 +6218,7 @@ class CreateAppRequestTypeDef(TypedDict):
|
|
|
6218
6218
|
SpaceName: NotRequired[str]
|
|
6219
6219
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
6220
6220
|
ResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
6221
|
+
RecoveryMode: NotRequired[bool]
|
|
6221
6222
|
|
|
6222
6223
|
|
|
6223
6224
|
class DescribeAppResponseTypeDef(TypedDict):
|
|
@@ -6228,6 +6229,7 @@ class DescribeAppResponseTypeDef(TypedDict):
|
|
|
6228
6229
|
UserProfileName: str
|
|
6229
6230
|
SpaceName: str
|
|
6230
6231
|
Status: AppStatusType
|
|
6232
|
+
RecoveryMode: bool
|
|
6231
6233
|
LastHealthCheckTimestamp: datetime
|
|
6232
6234
|
LastUserActivityTimestamp: datetime
|
|
6233
6235
|
CreationTime: datetime
|
|
@@ -8043,7 +8045,9 @@ DescribePartnerAppResponseTypeDef = TypedDict(
|
|
|
8043
8045
|
"Type": PartnerAppTypeType,
|
|
8044
8046
|
"Status": PartnerAppStatusType,
|
|
8045
8047
|
"CreationTime": datetime,
|
|
8048
|
+
"LastModifiedTime": datetime,
|
|
8046
8049
|
"ExecutionRoleArn": str,
|
|
8050
|
+
"KmsKeyId": str,
|
|
8047
8051
|
"BaseUrl": str,
|
|
8048
8052
|
"MaintenanceConfig": PartnerAppMaintenanceConfigTypeDef,
|
|
8049
8053
|
"Tier": str,
|
|
@@ -10998,6 +11002,7 @@ CreatePartnerAppRequestTypeDef = TypedDict(
|
|
|
10998
11002
|
"ExecutionRoleArn": str,
|
|
10999
11003
|
"Tier": str,
|
|
11000
11004
|
"AuthType": Literal["IAM"],
|
|
11005
|
+
"KmsKeyId": NotRequired[str],
|
|
11001
11006
|
"MaintenanceConfig": NotRequired[PartnerAppMaintenanceConfigTypeDef],
|
|
11002
11007
|
"ApplicationConfig": NotRequired[PartnerAppConfigUnionTypeDef],
|
|
11003
11008
|
"EnableIamSessionBasedIdentity": NotRequired[bool],
|
|
@@ -5461,6 +5461,7 @@ class CreateAppRequestTypeDef(TypedDict):
|
|
|
5461
5461
|
SpaceName: NotRequired[str]
|
|
5462
5462
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5463
5463
|
ResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
5464
|
+
RecoveryMode: NotRequired[bool]
|
|
5464
5465
|
|
|
5465
5466
|
class DescribeAppResponseTypeDef(TypedDict):
|
|
5466
5467
|
AppArn: str
|
|
@@ -5470,6 +5471,7 @@ class DescribeAppResponseTypeDef(TypedDict):
|
|
|
5470
5471
|
UserProfileName: str
|
|
5471
5472
|
SpaceName: str
|
|
5472
5473
|
Status: AppStatusType
|
|
5474
|
+
RecoveryMode: bool
|
|
5473
5475
|
LastHealthCheckTimestamp: datetime
|
|
5474
5476
|
LastUserActivityTimestamp: datetime
|
|
5475
5477
|
CreationTime: datetime
|
|
@@ -7076,7 +7078,9 @@ DescribePartnerAppResponseTypeDef = TypedDict(
|
|
|
7076
7078
|
"Type": PartnerAppTypeType,
|
|
7077
7079
|
"Status": PartnerAppStatusType,
|
|
7078
7080
|
"CreationTime": datetime,
|
|
7081
|
+
"LastModifiedTime": datetime,
|
|
7079
7082
|
"ExecutionRoleArn": str,
|
|
7083
|
+
"KmsKeyId": str,
|
|
7080
7084
|
"BaseUrl": str,
|
|
7081
7085
|
"MaintenanceConfig": PartnerAppMaintenanceConfigTypeDef,
|
|
7082
7086
|
"Tier": str,
|
|
@@ -9677,6 +9681,7 @@ CreatePartnerAppRequestTypeDef = TypedDict(
|
|
|
9677
9681
|
"ExecutionRoleArn": str,
|
|
9678
9682
|
"Tier": str,
|
|
9679
9683
|
"AuthType": Literal["IAM"],
|
|
9684
|
+
"KmsKeyId": NotRequired[str],
|
|
9680
9685
|
"MaintenanceConfig": NotRequired[PartnerAppMaintenanceConfigTypeDef],
|
|
9681
9686
|
"ApplicationConfig": NotRequired[PartnerAppConfigUnionTypeDef],
|
|
9682
9687
|
"EnableIamSessionBasedIdentity": NotRequired[bool],
|
mypy_boto3_sagemaker/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-sagemaker
|
|
3
|
-
Version: 1.37.
|
|
4
|
-
Summary: Type annotations for boto3 SageMaker 1.37.
|
|
3
|
+
Version: 1.37.22
|
|
4
|
+
Summary: Type annotations for boto3 SageMaker 1.37.22 service generated with mypy-boto3-builder 8.10.1
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 SageMaker 1.37.
|
|
59
|
+
Type annotations for [boto3 SageMaker 1.37.22](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.37.
|
|
122
|
+
`uvx --with 'boto3==1.37.22' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
124
|
3. Add `SageMaker` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
mypy_boto3_sagemaker/__init__.py,sha256=opHkjuIms4oAULgt6RpiQM_b3MlcLpgp8MMTkCReC3o,20862
|
|
2
2
|
mypy_boto3_sagemaker/__init__.pyi,sha256=tbdiUUr5WXkYKgsTJGeNm8nf-W6kCYBvkDpK4kvX654,20861
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=0u_i5U3w2MJ89WiyqNqAan1yYa99Hfr_6Iki093qjPg,992
|
|
4
4
|
mypy_boto3_sagemaker/client.py,sha256=mIVQ5pCAuGzbrjzSBUjFos3al4bIAkDwfyPoMAsonjs,269493
|
|
5
5
|
mypy_boto3_sagemaker/client.pyi,sha256=GSQQDofiZ9Uwc3Z3wNJxmISvrqwatSVMHLhrXaBMRSk,269490
|
|
6
6
|
mypy_boto3_sagemaker/literals.py,sha256=Y3pNDmBa5sG-f40vR5u3RVTqExmRHco6ZUNRsxX7L8w,80265
|
|
@@ -8,13 +8,13 @@ mypy_boto3_sagemaker/literals.pyi,sha256=0CfrlMdmclmxj9UnAvrTct-bKWNWS7cETvwPHJE
|
|
|
8
8
|
mypy_boto3_sagemaker/paginator.py,sha256=6L2do5UDlW6ag_KUhRla4QbZORaFO-AulDv7A4nXEh8,113965
|
|
9
9
|
mypy_boto3_sagemaker/paginator.pyi,sha256=HJgYz9NiQOAITGAFA-ySnltWarPIVrk7wB-8nuAMYhQ,113730
|
|
10
10
|
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=SI3W_INFRZ-QdNQXc01TkdHkyaFDnjOjd_rkDdhs4WA,456769
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=aq39X0pEYCvLtafGRVfpo3LOEA6qd9MlsgmkcJGKHUM,455206
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=AMWnEEbhonEcJHxYoNnMUXiy0zMP6ODvvD1A8Plyfn8,93
|
|
14
14
|
mypy_boto3_sagemaker/waiter.py,sha256=-S1TZyw55DA_NY46uwNmMEDpruhN4am2JYcCn53mH1M,15080
|
|
15
15
|
mypy_boto3_sagemaker/waiter.pyi,sha256=Ddbvoy56vM8BmGsIG3bz4wmsRS7ruZSpyb1HArqvrj4,15053
|
|
16
|
-
mypy_boto3_sagemaker-1.37.
|
|
17
|
-
mypy_boto3_sagemaker-1.37.
|
|
18
|
-
mypy_boto3_sagemaker-1.37.
|
|
19
|
-
mypy_boto3_sagemaker-1.37.
|
|
20
|
-
mypy_boto3_sagemaker-1.37.
|
|
16
|
+
mypy_boto3_sagemaker-1.37.22.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.37.22.dist-info/METADATA,sha256=Dkbvz_0ZoiBEZaEuZNBuA7pyfI-KyFgitWqefnbrQB4,28898
|
|
18
|
+
mypy_boto3_sagemaker-1.37.22.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
19
|
+
mypy_boto3_sagemaker-1.37.22.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.37.22.dist-info/RECORD,,
|
{mypy_boto3_sagemaker-1.37.18.dist-info → mypy_boto3_sagemaker-1.37.22.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_sagemaker-1.37.18.dist-info → mypy_boto3_sagemaker-1.37.22.dist-info}/top_level.txt
RENAMED
|
File without changes
|