mypy-boto3-sagemaker 1.40.0__py3-none-any.whl → 1.40.2__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/client.py +26 -0
- mypy_boto3_sagemaker/client.pyi +26 -0
- mypy_boto3_sagemaker/literals.py +3 -0
- mypy_boto3_sagemaker/literals.pyi +3 -0
- mypy_boto3_sagemaker/type_defs.py +37 -0
- mypy_boto3_sagemaker/type_defs.pyi +33 -0
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.40.0.dist-info → mypy_boto3_sagemaker-1.40.2.dist-info}/METADATA +4 -4
- mypy_boto3_sagemaker-1.40.2.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.40.0.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.40.0.dist-info → mypy_boto3_sagemaker-1.40.2.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.40.0.dist-info → mypy_boto3_sagemaker-1.40.2.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.40.0.dist-info → mypy_boto3_sagemaker-1.40.2.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.40.
|
|
16
|
-
"Version: 1.40.
|
|
15
|
+
"Type annotations for boto3 SageMaker 1.40.2\n"
|
|
16
|
+
"Version: 1.40.2\n"
|
|
17
17
|
"Builder version: 8.11.0\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.40.
|
|
29
|
+
sys.stdout.write("1.40.2\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_sagemaker/client.py
CHANGED
|
@@ -114,6 +114,8 @@ from .type_defs import (
|
|
|
114
114
|
AddTagsOutputTypeDef,
|
|
115
115
|
AssociateTrialComponentRequestTypeDef,
|
|
116
116
|
AssociateTrialComponentResponseTypeDef,
|
|
117
|
+
AttachClusterNodeVolumeRequestTypeDef,
|
|
118
|
+
AttachClusterNodeVolumeResponseTypeDef,
|
|
117
119
|
BatchDeleteClusterNodesRequestTypeDef,
|
|
118
120
|
BatchDeleteClusterNodesResponseTypeDef,
|
|
119
121
|
BatchDescribeModelPackageInputTypeDef,
|
|
@@ -450,6 +452,8 @@ from .type_defs import (
|
|
|
450
452
|
DescribeWorkforceResponseTypeDef,
|
|
451
453
|
DescribeWorkteamRequestTypeDef,
|
|
452
454
|
DescribeWorkteamResponseTypeDef,
|
|
455
|
+
DetachClusterNodeVolumeRequestTypeDef,
|
|
456
|
+
DetachClusterNodeVolumeResponseTypeDef,
|
|
453
457
|
DisassociateTrialComponentRequestTypeDef,
|
|
454
458
|
DisassociateTrialComponentResponseTypeDef,
|
|
455
459
|
EmptyResponseMetadataTypeDef,
|
|
@@ -863,6 +867,17 @@ class SageMakerClient(BaseClient):
|
|
|
863
867
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#associate_trial_component)
|
|
864
868
|
"""
|
|
865
869
|
|
|
870
|
+
def attach_cluster_node_volume(
|
|
871
|
+
self, **kwargs: Unpack[AttachClusterNodeVolumeRequestTypeDef]
|
|
872
|
+
) -> AttachClusterNodeVolumeResponseTypeDef:
|
|
873
|
+
"""
|
|
874
|
+
Attaches your Amazon Elastic Block Store (Amazon EBS) volume to a node in your
|
|
875
|
+
EKS-orchestrated HyperPod cluster.
|
|
876
|
+
|
|
877
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/attach_cluster_node_volume.html)
|
|
878
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#attach_cluster_node_volume)
|
|
879
|
+
"""
|
|
880
|
+
|
|
866
881
|
def batch_delete_cluster_nodes(
|
|
867
882
|
self, **kwargs: Unpack[BatchDeleteClusterNodesRequestTypeDef]
|
|
868
883
|
) -> BatchDeleteClusterNodesResponseTypeDef:
|
|
@@ -2787,6 +2802,17 @@ class SageMakerClient(BaseClient):
|
|
|
2787
2802
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_workteam)
|
|
2788
2803
|
"""
|
|
2789
2804
|
|
|
2805
|
+
def detach_cluster_node_volume(
|
|
2806
|
+
self, **kwargs: Unpack[DetachClusterNodeVolumeRequestTypeDef]
|
|
2807
|
+
) -> DetachClusterNodeVolumeResponseTypeDef:
|
|
2808
|
+
"""
|
|
2809
|
+
Detaches your Amazon Elastic Block Store (Amazon EBS) volume from a node in
|
|
2810
|
+
your EKS-orchestrated SageMaker HyperPod cluster.
|
|
2811
|
+
|
|
2812
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/detach_cluster_node_volume.html)
|
|
2813
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#detach_cluster_node_volume)
|
|
2814
|
+
"""
|
|
2815
|
+
|
|
2790
2816
|
def disable_sagemaker_servicecatalog_portfolio(self) -> Dict[str, Any]:
|
|
2791
2817
|
"""
|
|
2792
2818
|
Disables using Service Catalog in SageMaker.
|
mypy_boto3_sagemaker/client.pyi
CHANGED
|
@@ -114,6 +114,8 @@ from .type_defs import (
|
|
|
114
114
|
AddTagsOutputTypeDef,
|
|
115
115
|
AssociateTrialComponentRequestTypeDef,
|
|
116
116
|
AssociateTrialComponentResponseTypeDef,
|
|
117
|
+
AttachClusterNodeVolumeRequestTypeDef,
|
|
118
|
+
AttachClusterNodeVolumeResponseTypeDef,
|
|
117
119
|
BatchDeleteClusterNodesRequestTypeDef,
|
|
118
120
|
BatchDeleteClusterNodesResponseTypeDef,
|
|
119
121
|
BatchDescribeModelPackageInputTypeDef,
|
|
@@ -450,6 +452,8 @@ from .type_defs import (
|
|
|
450
452
|
DescribeWorkforceResponseTypeDef,
|
|
451
453
|
DescribeWorkteamRequestTypeDef,
|
|
452
454
|
DescribeWorkteamResponseTypeDef,
|
|
455
|
+
DetachClusterNodeVolumeRequestTypeDef,
|
|
456
|
+
DetachClusterNodeVolumeResponseTypeDef,
|
|
453
457
|
DisassociateTrialComponentRequestTypeDef,
|
|
454
458
|
DisassociateTrialComponentResponseTypeDef,
|
|
455
459
|
EmptyResponseMetadataTypeDef,
|
|
@@ -860,6 +864,17 @@ class SageMakerClient(BaseClient):
|
|
|
860
864
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#associate_trial_component)
|
|
861
865
|
"""
|
|
862
866
|
|
|
867
|
+
def attach_cluster_node_volume(
|
|
868
|
+
self, **kwargs: Unpack[AttachClusterNodeVolumeRequestTypeDef]
|
|
869
|
+
) -> AttachClusterNodeVolumeResponseTypeDef:
|
|
870
|
+
"""
|
|
871
|
+
Attaches your Amazon Elastic Block Store (Amazon EBS) volume to a node in your
|
|
872
|
+
EKS-orchestrated HyperPod cluster.
|
|
873
|
+
|
|
874
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/attach_cluster_node_volume.html)
|
|
875
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#attach_cluster_node_volume)
|
|
876
|
+
"""
|
|
877
|
+
|
|
863
878
|
def batch_delete_cluster_nodes(
|
|
864
879
|
self, **kwargs: Unpack[BatchDeleteClusterNodesRequestTypeDef]
|
|
865
880
|
) -> BatchDeleteClusterNodesResponseTypeDef:
|
|
@@ -2784,6 +2799,17 @@ class SageMakerClient(BaseClient):
|
|
|
2784
2799
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_workteam)
|
|
2785
2800
|
"""
|
|
2786
2801
|
|
|
2802
|
+
def detach_cluster_node_volume(
|
|
2803
|
+
self, **kwargs: Unpack[DetachClusterNodeVolumeRequestTypeDef]
|
|
2804
|
+
) -> DetachClusterNodeVolumeResponseTypeDef:
|
|
2805
|
+
"""
|
|
2806
|
+
Detaches your Amazon Elastic Block Store (Amazon EBS) volume from a node in
|
|
2807
|
+
your EKS-orchestrated SageMaker HyperPod cluster.
|
|
2808
|
+
|
|
2809
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/detach_cluster_node_volume.html)
|
|
2810
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#detach_cluster_node_volume)
|
|
2811
|
+
"""
|
|
2812
|
+
|
|
2787
2813
|
def disable_sagemaker_servicecatalog_portfolio(self) -> Dict[str, Any]:
|
|
2788
2814
|
"""
|
|
2789
2815
|
Disables using Service Catalog in SageMaker.
|
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -423,6 +423,7 @@ __all__ = (
|
|
|
423
423
|
"VariantPropertyTypeType",
|
|
424
424
|
"VariantStatusType",
|
|
425
425
|
"VendorGuidanceType",
|
|
426
|
+
"VolumeAttachmentStatusType",
|
|
426
427
|
"WaiterName",
|
|
427
428
|
"WarmPoolResourceStatusType",
|
|
428
429
|
"WorkforceIpAddressTypeType",
|
|
@@ -2378,6 +2379,7 @@ UserProfileStatusType = Literal[
|
|
|
2378
2379
|
VariantPropertyTypeType = Literal["DataCaptureConfig", "DesiredInstanceCount", "DesiredWeight"]
|
|
2379
2380
|
VariantStatusType = Literal["ActivatingTraffic", "Baking", "Creating", "Deleting", "Updating"]
|
|
2380
2381
|
VendorGuidanceType = Literal["ARCHIVED", "NOT_PROVIDED", "STABLE", "TO_BE_ARCHIVED"]
|
|
2382
|
+
VolumeAttachmentStatusType = Literal["attached", "attaching", "busy", "detached", "detaching"]
|
|
2381
2383
|
WarmPoolResourceStatusType = Literal["Available", "InUse", "Reused", "Terminated"]
|
|
2382
2384
|
WorkforceIpAddressTypeType = Literal["dualstack", "ipv4"]
|
|
2383
2385
|
WorkforceStatusType = Literal["Active", "Deleting", "Failed", "Initializing", "Updating"]
|
|
@@ -2409,6 +2411,7 @@ ServiceName = Literal[
|
|
|
2409
2411
|
"appstream",
|
|
2410
2412
|
"appsync",
|
|
2411
2413
|
"apptest",
|
|
2414
|
+
"arc-region-switch",
|
|
2412
2415
|
"arc-zonal-shift",
|
|
2413
2416
|
"artifact",
|
|
2414
2417
|
"athena",
|
|
@@ -422,6 +422,7 @@ __all__ = (
|
|
|
422
422
|
"VariantPropertyTypeType",
|
|
423
423
|
"VariantStatusType",
|
|
424
424
|
"VendorGuidanceType",
|
|
425
|
+
"VolumeAttachmentStatusType",
|
|
425
426
|
"WaiterName",
|
|
426
427
|
"WarmPoolResourceStatusType",
|
|
427
428
|
"WorkforceIpAddressTypeType",
|
|
@@ -2376,6 +2377,7 @@ UserProfileStatusType = Literal[
|
|
|
2376
2377
|
VariantPropertyTypeType = Literal["DataCaptureConfig", "DesiredInstanceCount", "DesiredWeight"]
|
|
2377
2378
|
VariantStatusType = Literal["ActivatingTraffic", "Baking", "Creating", "Deleting", "Updating"]
|
|
2378
2379
|
VendorGuidanceType = Literal["ARCHIVED", "NOT_PROVIDED", "STABLE", "TO_BE_ARCHIVED"]
|
|
2380
|
+
VolumeAttachmentStatusType = Literal["attached", "attaching", "busy", "detached", "detaching"]
|
|
2379
2381
|
WarmPoolResourceStatusType = Literal["Available", "InUse", "Reused", "Terminated"]
|
|
2380
2382
|
WorkforceIpAddressTypeType = Literal["dualstack", "ipv4"]
|
|
2381
2383
|
WorkforceStatusType = Literal["Active", "Deleting", "Failed", "Initializing", "Updating"]
|
|
@@ -2407,6 +2409,7 @@ ServiceName = Literal[
|
|
|
2407
2409
|
"appstream",
|
|
2408
2410
|
"appsync",
|
|
2409
2411
|
"apptest",
|
|
2412
|
+
"arc-region-switch",
|
|
2410
2413
|
"arc-zonal-shift",
|
|
2411
2414
|
"artifact",
|
|
2412
2415
|
"athena",
|
|
@@ -308,6 +308,7 @@ from .literals import (
|
|
|
308
308
|
VariantPropertyTypeType,
|
|
309
309
|
VariantStatusType,
|
|
310
310
|
VendorGuidanceType,
|
|
311
|
+
VolumeAttachmentStatusType,
|
|
311
312
|
WarmPoolResourceStatusType,
|
|
312
313
|
WorkforceIpAddressTypeType,
|
|
313
314
|
WorkforceStatusType,
|
|
@@ -376,6 +377,8 @@ __all__ = (
|
|
|
376
377
|
"AsyncInferenceOutputConfigOutputTypeDef",
|
|
377
378
|
"AsyncInferenceOutputConfigTypeDef",
|
|
378
379
|
"AthenaDatasetDefinitionTypeDef",
|
|
380
|
+
"AttachClusterNodeVolumeRequestTypeDef",
|
|
381
|
+
"AttachClusterNodeVolumeResponseTypeDef",
|
|
379
382
|
"AuthorizedUrlTypeDef",
|
|
380
383
|
"AutoMLAlgorithmConfigOutputTypeDef",
|
|
381
384
|
"AutoMLAlgorithmConfigTypeDef",
|
|
@@ -904,6 +907,8 @@ __all__ = (
|
|
|
904
907
|
"DescribeWorkteamRequestTypeDef",
|
|
905
908
|
"DescribeWorkteamResponseTypeDef",
|
|
906
909
|
"DesiredWeightAndCapacityTypeDef",
|
|
910
|
+
"DetachClusterNodeVolumeRequestTypeDef",
|
|
911
|
+
"DetachClusterNodeVolumeResponseTypeDef",
|
|
907
912
|
"DeviceDeploymentSummaryTypeDef",
|
|
908
913
|
"DeviceFleetSummaryTypeDef",
|
|
909
914
|
"DeviceSelectionConfigOutputTypeDef",
|
|
@@ -2092,6 +2097,12 @@ class AthenaDatasetDefinitionTypeDef(TypedDict):
|
|
|
2092
2097
|
OutputCompression: NotRequired[AthenaResultCompressionTypeType]
|
|
2093
2098
|
|
|
2094
2099
|
|
|
2100
|
+
class AttachClusterNodeVolumeRequestTypeDef(TypedDict):
|
|
2101
|
+
ClusterArn: str
|
|
2102
|
+
NodeId: str
|
|
2103
|
+
VolumeId: str
|
|
2104
|
+
|
|
2105
|
+
|
|
2095
2106
|
class AuthorizedUrlTypeDef(TypedDict):
|
|
2096
2107
|
Url: NotRequired[str]
|
|
2097
2108
|
LocalPath: NotRequired[str]
|
|
@@ -3909,6 +3920,12 @@ class ProductionVariantServerlessUpdateConfigTypeDef(TypedDict):
|
|
|
3909
3920
|
ProvisionedConcurrency: NotRequired[int]
|
|
3910
3921
|
|
|
3911
3922
|
|
|
3923
|
+
class DetachClusterNodeVolumeRequestTypeDef(TypedDict):
|
|
3924
|
+
ClusterArn: str
|
|
3925
|
+
NodeId: str
|
|
3926
|
+
VolumeId: str
|
|
3927
|
+
|
|
3928
|
+
|
|
3912
3929
|
class DeviceDeploymentSummaryTypeDef(TypedDict):
|
|
3913
3930
|
EdgeDeploymentPlanArn: str
|
|
3914
3931
|
EdgeDeploymentPlanName: str
|
|
@@ -5523,6 +5540,16 @@ class AssociateTrialComponentResponseTypeDef(TypedDict):
|
|
|
5523
5540
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5524
5541
|
|
|
5525
5542
|
|
|
5543
|
+
class AttachClusterNodeVolumeResponseTypeDef(TypedDict):
|
|
5544
|
+
ClusterArn: str
|
|
5545
|
+
NodeId: str
|
|
5546
|
+
VolumeId: str
|
|
5547
|
+
AttachTime: datetime
|
|
5548
|
+
Status: VolumeAttachmentStatusType
|
|
5549
|
+
DeviceName: str
|
|
5550
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5551
|
+
|
|
5552
|
+
|
|
5526
5553
|
class CreateActionResponseTypeDef(TypedDict):
|
|
5527
5554
|
ActionArn: str
|
|
5528
5555
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5954,6 +5981,16 @@ class DescribeStudioLifecycleConfigResponseTypeDef(TypedDict):
|
|
|
5954
5981
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5955
5982
|
|
|
5956
5983
|
|
|
5984
|
+
class DetachClusterNodeVolumeResponseTypeDef(TypedDict):
|
|
5985
|
+
ClusterArn: str
|
|
5986
|
+
NodeId: str
|
|
5987
|
+
VolumeId: str
|
|
5988
|
+
AttachTime: datetime
|
|
5989
|
+
Status: VolumeAttachmentStatusType
|
|
5990
|
+
DeviceName: str
|
|
5991
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5992
|
+
|
|
5993
|
+
|
|
5957
5994
|
class DisassociateTrialComponentResponseTypeDef(TypedDict):
|
|
5958
5995
|
TrialComponentArn: str
|
|
5959
5996
|
TrialArn: str
|
|
@@ -308,6 +308,7 @@ from .literals import (
|
|
|
308
308
|
VariantPropertyTypeType,
|
|
309
309
|
VariantStatusType,
|
|
310
310
|
VendorGuidanceType,
|
|
311
|
+
VolumeAttachmentStatusType,
|
|
311
312
|
WarmPoolResourceStatusType,
|
|
312
313
|
WorkforceIpAddressTypeType,
|
|
313
314
|
WorkforceStatusType,
|
|
@@ -375,6 +376,8 @@ __all__ = (
|
|
|
375
376
|
"AsyncInferenceOutputConfigOutputTypeDef",
|
|
376
377
|
"AsyncInferenceOutputConfigTypeDef",
|
|
377
378
|
"AthenaDatasetDefinitionTypeDef",
|
|
379
|
+
"AttachClusterNodeVolumeRequestTypeDef",
|
|
380
|
+
"AttachClusterNodeVolumeResponseTypeDef",
|
|
378
381
|
"AuthorizedUrlTypeDef",
|
|
379
382
|
"AutoMLAlgorithmConfigOutputTypeDef",
|
|
380
383
|
"AutoMLAlgorithmConfigTypeDef",
|
|
@@ -903,6 +906,8 @@ __all__ = (
|
|
|
903
906
|
"DescribeWorkteamRequestTypeDef",
|
|
904
907
|
"DescribeWorkteamResponseTypeDef",
|
|
905
908
|
"DesiredWeightAndCapacityTypeDef",
|
|
909
|
+
"DetachClusterNodeVolumeRequestTypeDef",
|
|
910
|
+
"DetachClusterNodeVolumeResponseTypeDef",
|
|
906
911
|
"DeviceDeploymentSummaryTypeDef",
|
|
907
912
|
"DeviceFleetSummaryTypeDef",
|
|
908
913
|
"DeviceSelectionConfigOutputTypeDef",
|
|
@@ -2067,6 +2072,11 @@ class AthenaDatasetDefinitionTypeDef(TypedDict):
|
|
|
2067
2072
|
KmsKeyId: NotRequired[str]
|
|
2068
2073
|
OutputCompression: NotRequired[AthenaResultCompressionTypeType]
|
|
2069
2074
|
|
|
2075
|
+
class AttachClusterNodeVolumeRequestTypeDef(TypedDict):
|
|
2076
|
+
ClusterArn: str
|
|
2077
|
+
NodeId: str
|
|
2078
|
+
VolumeId: str
|
|
2079
|
+
|
|
2070
2080
|
class AuthorizedUrlTypeDef(TypedDict):
|
|
2071
2081
|
Url: NotRequired[str]
|
|
2072
2082
|
LocalPath: NotRequired[str]
|
|
@@ -3543,6 +3553,11 @@ class ProductionVariantServerlessUpdateConfigTypeDef(TypedDict):
|
|
|
3543
3553
|
MaxConcurrency: NotRequired[int]
|
|
3544
3554
|
ProvisionedConcurrency: NotRequired[int]
|
|
3545
3555
|
|
|
3556
|
+
class DetachClusterNodeVolumeRequestTypeDef(TypedDict):
|
|
3557
|
+
ClusterArn: str
|
|
3558
|
+
NodeId: str
|
|
3559
|
+
VolumeId: str
|
|
3560
|
+
|
|
3546
3561
|
class DeviceDeploymentSummaryTypeDef(TypedDict):
|
|
3547
3562
|
EdgeDeploymentPlanArn: str
|
|
3548
3563
|
EdgeDeploymentPlanName: str
|
|
@@ -4900,6 +4915,15 @@ class AssociateTrialComponentResponseTypeDef(TypedDict):
|
|
|
4900
4915
|
TrialArn: str
|
|
4901
4916
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4902
4917
|
|
|
4918
|
+
class AttachClusterNodeVolumeResponseTypeDef(TypedDict):
|
|
4919
|
+
ClusterArn: str
|
|
4920
|
+
NodeId: str
|
|
4921
|
+
VolumeId: str
|
|
4922
|
+
AttachTime: datetime
|
|
4923
|
+
Status: VolumeAttachmentStatusType
|
|
4924
|
+
DeviceName: str
|
|
4925
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
4926
|
+
|
|
4903
4927
|
class CreateActionResponseTypeDef(TypedDict):
|
|
4904
4928
|
ActionArn: str
|
|
4905
4929
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5252,6 +5276,15 @@ class DescribeStudioLifecycleConfigResponseTypeDef(TypedDict):
|
|
|
5252
5276
|
StudioLifecycleConfigAppType: StudioLifecycleConfigAppTypeType
|
|
5253
5277
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5254
5278
|
|
|
5279
|
+
class DetachClusterNodeVolumeResponseTypeDef(TypedDict):
|
|
5280
|
+
ClusterArn: str
|
|
5281
|
+
NodeId: str
|
|
5282
|
+
VolumeId: str
|
|
5283
|
+
AttachTime: datetime
|
|
5284
|
+
Status: VolumeAttachmentStatusType
|
|
5285
|
+
DeviceName: str
|
|
5286
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5287
|
+
|
|
5255
5288
|
class DisassociateTrialComponentResponseTypeDef(TypedDict):
|
|
5256
5289
|
TrialComponentArn: str
|
|
5257
5290
|
TrialArn: str
|
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.40.
|
|
4
|
-
Summary: Type annotations for boto3 SageMaker 1.40.
|
|
3
|
+
Version: 1.40.2
|
|
4
|
+
Summary: Type annotations for boto3 SageMaker 1.40.2 service generated with mypy-boto3-builder 8.11.0
|
|
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.40.
|
|
59
|
+
Type annotations for [boto3 SageMaker 1.40.2](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.40.
|
|
122
|
+
`uvx --with 'boto3==1.40.2' 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.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_sagemaker/__init__.py,sha256=JUsVccGFuQfIOyrrHUhfy5jk3FCdqGD2Hkqb2rsA8uc,21376
|
|
2
|
+
mypy_boto3_sagemaker/__init__.pyi,sha256=_mfwjFh9EC6nHOpoCL2X-jrSx1ji2LD6CShR5m-Issk,21375
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=Txvp4IOMss6tuVuv-GnGtPwUW3VmUjYmpBsjNSPoWms,989
|
|
4
|
+
mypy_boto3_sagemaker/client.py,sha256=eJnEzySwS8bcAOeG4iizP6kpn6xcVc8XD8g8ZzyB8Ug,274577
|
|
5
|
+
mypy_boto3_sagemaker/client.pyi,sha256=sJWbqStvoeb-7S3iElYsrVNtyrvba0Z8lb00q360oi0,274574
|
|
6
|
+
mypy_boto3_sagemaker/literals.py,sha256=zO48qNlfGNWzMot_M7rVcCQlhs96RghaIlPUxmTP6ag,84362
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=Fl9DGzt_nLldMwSEa685D-tixCL-576l6nyR9VcY1dA,84360
|
|
8
|
+
mypy_boto3_sagemaker/paginator.py,sha256=lx8AjH-vldHFXjRF_qervJL33q7vCl6Y_Ws6iCb8QDY,117089
|
|
9
|
+
mypy_boto3_sagemaker/paginator.pyi,sha256=pnCJcv7oA36a_irJoFOGJvYD147XWGZPz0BfSI3LBkQ,116848
|
|
10
|
+
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=l21LxND9tCZAcOQ4n3Mh0xC4w4DJ869pnpyAg5UtqBs,471745
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=AH_uJcMzup9WZ46UORgO0laW5JRrz9f3F1SqdjEb43E,470134
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=2eSDCSJMbL_5KjVPoMGbPD4wtz5zusugzLa7ydyll1w,92
|
|
14
|
+
mypy_boto3_sagemaker/waiter.py,sha256=CWKbdLxujS5uPtFCtjnxryB6GkxzSMreu3bFG45JkOE,15080
|
|
15
|
+
mypy_boto3_sagemaker/waiter.pyi,sha256=d9EJ9YokPWmsmmOMw-2-ani-JeFoBp6kadvGYQFtx3o,15053
|
|
16
|
+
mypy_boto3_sagemaker-1.40.2.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.40.2.dist-info/METADATA,sha256=Se9QvYHzVSwqTfa5YWDlXOKL79wqTXG3NJg9mLqxNO4,29244
|
|
18
|
+
mypy_boto3_sagemaker-1.40.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
mypy_boto3_sagemaker-1.40.2.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.40.2.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sagemaker/__init__.py,sha256=JUsVccGFuQfIOyrrHUhfy5jk3FCdqGD2Hkqb2rsA8uc,21376
|
|
2
|
-
mypy_boto3_sagemaker/__init__.pyi,sha256=_mfwjFh9EC6nHOpoCL2X-jrSx1ji2LD6CShR5m-Issk,21375
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=cGVXexGjD7gkMamV8OLabIgmlcpt6N3au08a5dRYlrM,989
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=sNNmzEeQak9RR8jeIBOYk4yKMC1Hntx2SbY2C1GZiag,273167
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=skCm4FG87_KzGlXDhtEg8JYDbHKQ5F3zic30pV0hMCo,273164
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=qx5OfPOzaujBczRReOffGdm8OYSv60Bqm5GSvEh4gOU,84208
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=c30RBRWPSP3Mjzw3GeU7vBmB9sgF5NKnO0BBjyUgMGU,84206
|
|
8
|
-
mypy_boto3_sagemaker/paginator.py,sha256=lx8AjH-vldHFXjRF_qervJL33q7vCl6Y_Ws6iCb8QDY,117089
|
|
9
|
-
mypy_boto3_sagemaker/paginator.pyi,sha256=pnCJcv7oA36a_irJoFOGJvYD147XWGZPz0BfSI3LBkQ,116848
|
|
10
|
-
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=95lf_1j8YNJ7YNU3hx4_7qDXyBI9ywg5RA43tasOMZ8,470821
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=woZAQ6V863iZZ__QzuFDDIiXLmiYw1ebS0AnLYFsbeg,469214
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=52Sk0XpA8tC09WfcAI6nm69vLa0ysg1C33ACO_NFSwc,92
|
|
14
|
-
mypy_boto3_sagemaker/waiter.py,sha256=CWKbdLxujS5uPtFCtjnxryB6GkxzSMreu3bFG45JkOE,15080
|
|
15
|
-
mypy_boto3_sagemaker/waiter.pyi,sha256=d9EJ9YokPWmsmmOMw-2-ani-JeFoBp6kadvGYQFtx3o,15053
|
|
16
|
-
mypy_boto3_sagemaker-1.40.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.40.0.dist-info/METADATA,sha256=tYepKDu_jZXjDz5FZe5UHEEsn0ZwVdE9En49tAcdpTs,29244
|
|
18
|
-
mypy_boto3_sagemaker-1.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
mypy_boto3_sagemaker-1.40.0.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.40.0.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_sagemaker-1.40.0.dist-info → mypy_boto3_sagemaker-1.40.2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_sagemaker-1.40.0.dist-info → mypy_boto3_sagemaker-1.40.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|