mypy-boto3-sagemaker 1.39.1__py3-none-any.whl → 1.39.3__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/__init__.py +4 -0
- mypy_boto3_sagemaker/__init__.pyi +4 -0
- mypy_boto3_sagemaker/__main__.py +3 -3
- mypy_boto3_sagemaker/client.py +37 -0
- mypy_boto3_sagemaker/client.pyi +37 -0
- mypy_boto3_sagemaker/literals.py +3 -0
- mypy_boto3_sagemaker/literals.pyi +3 -0
- mypy_boto3_sagemaker/paginator.py +28 -0
- mypy_boto3_sagemaker/paginator.pyi +25 -0
- mypy_boto3_sagemaker/type_defs.py +938 -884
- mypy_boto3_sagemaker/type_defs.pyi +848 -800
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.39.1.dist-info → mypy_boto3_sagemaker-1.39.3.dist-info}/METADATA +8 -4
- mypy_boto3_sagemaker-1.39.3.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.39.1.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.39.1.dist-info → mypy_boto3_sagemaker-1.39.3.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.39.1.dist-info → mypy_boto3_sagemaker-1.39.3.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.39.1.dist-info → mypy_boto3_sagemaker-1.39.3.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/__init__.py
CHANGED
|
@@ -11,6 +11,7 @@ Usage::
|
|
|
11
11
|
from boto3.session import Session
|
|
12
12
|
from mypy_boto3_sagemaker import (
|
|
13
13
|
Client,
|
|
14
|
+
CreateHubContentPresignedUrlsPaginator,
|
|
14
15
|
EndpointDeletedWaiter,
|
|
15
16
|
EndpointInServiceWaiter,
|
|
16
17
|
ImageCreatedWaiter,
|
|
@@ -122,6 +123,7 @@ Usage::
|
|
|
122
123
|
training_job_completed_or_stopped_waiter: TrainingJobCompletedOrStoppedWaiter = client.get_waiter("training_job_completed_or_stopped")
|
|
123
124
|
transform_job_completed_or_stopped_waiter: TransformJobCompletedOrStoppedWaiter = client.get_waiter("transform_job_completed_or_stopped")
|
|
124
125
|
|
|
126
|
+
create_hub_content_presigned_urls_paginator: CreateHubContentPresignedUrlsPaginator = client.get_paginator("create_hub_content_presigned_urls")
|
|
125
127
|
list_actions_paginator: ListActionsPaginator = client.get_paginator("list_actions")
|
|
126
128
|
list_algorithms_paginator: ListAlgorithmsPaginator = client.get_paginator("list_algorithms")
|
|
127
129
|
list_aliases_paginator: ListAliasesPaginator = client.get_paginator("list_aliases")
|
|
@@ -205,6 +207,7 @@ Usage::
|
|
|
205
207
|
|
|
206
208
|
from .client import SageMakerClient
|
|
207
209
|
from .paginator import (
|
|
210
|
+
CreateHubContentPresignedUrlsPaginator,
|
|
208
211
|
ListActionsPaginator,
|
|
209
212
|
ListAlgorithmsPaginator,
|
|
210
213
|
ListAliasesPaginator,
|
|
@@ -305,6 +308,7 @@ Client = SageMakerClient
|
|
|
305
308
|
|
|
306
309
|
__all__ = (
|
|
307
310
|
"Client",
|
|
311
|
+
"CreateHubContentPresignedUrlsPaginator",
|
|
308
312
|
"EndpointDeletedWaiter",
|
|
309
313
|
"EndpointInServiceWaiter",
|
|
310
314
|
"ImageCreatedWaiter",
|
|
@@ -11,6 +11,7 @@ Usage::
|
|
|
11
11
|
from boto3.session import Session
|
|
12
12
|
from mypy_boto3_sagemaker import (
|
|
13
13
|
Client,
|
|
14
|
+
CreateHubContentPresignedUrlsPaginator,
|
|
14
15
|
EndpointDeletedWaiter,
|
|
15
16
|
EndpointInServiceWaiter,
|
|
16
17
|
ImageCreatedWaiter,
|
|
@@ -122,6 +123,7 @@ Usage::
|
|
|
122
123
|
training_job_completed_or_stopped_waiter: TrainingJobCompletedOrStoppedWaiter = client.get_waiter("training_job_completed_or_stopped")
|
|
123
124
|
transform_job_completed_or_stopped_waiter: TransformJobCompletedOrStoppedWaiter = client.get_waiter("transform_job_completed_or_stopped")
|
|
124
125
|
|
|
126
|
+
create_hub_content_presigned_urls_paginator: CreateHubContentPresignedUrlsPaginator = client.get_paginator("create_hub_content_presigned_urls")
|
|
125
127
|
list_actions_paginator: ListActionsPaginator = client.get_paginator("list_actions")
|
|
126
128
|
list_algorithms_paginator: ListAlgorithmsPaginator = client.get_paginator("list_algorithms")
|
|
127
129
|
list_aliases_paginator: ListAliasesPaginator = client.get_paginator("list_aliases")
|
|
@@ -205,6 +207,7 @@ Usage::
|
|
|
205
207
|
|
|
206
208
|
from .client import SageMakerClient
|
|
207
209
|
from .paginator import (
|
|
210
|
+
CreateHubContentPresignedUrlsPaginator,
|
|
208
211
|
ListActionsPaginator,
|
|
209
212
|
ListAlgorithmsPaginator,
|
|
210
213
|
ListAliasesPaginator,
|
|
@@ -304,6 +307,7 @@ Client = SageMakerClient
|
|
|
304
307
|
|
|
305
308
|
__all__ = (
|
|
306
309
|
"Client",
|
|
310
|
+
"CreateHubContentPresignedUrlsPaginator",
|
|
307
311
|
"EndpointDeletedWaiter",
|
|
308
312
|
"EndpointInServiceWaiter",
|
|
309
313
|
"ImageCreatedWaiter",
|
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.39.
|
|
16
|
-
"Version: 1.39.
|
|
15
|
+
"Type annotations for boto3 SageMaker 1.39.3\n"
|
|
16
|
+
"Version: 1.39.3\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.39.
|
|
29
|
+
sys.stdout.write("1.39.3\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_sagemaker/client.py
CHANGED
|
@@ -26,6 +26,7 @@ from botocore.errorfactory import BaseClientExceptions
|
|
|
26
26
|
from botocore.exceptions import ClientError as BotocoreClientError
|
|
27
27
|
|
|
28
28
|
from .paginator import (
|
|
29
|
+
CreateHubContentPresignedUrlsPaginator,
|
|
29
30
|
ListActionsPaginator,
|
|
30
31
|
ListAlgorithmsPaginator,
|
|
31
32
|
ListAliasesPaginator,
|
|
@@ -161,6 +162,8 @@ from .type_defs import (
|
|
|
161
162
|
CreateFeatureGroupResponseTypeDef,
|
|
162
163
|
CreateFlowDefinitionRequestTypeDef,
|
|
163
164
|
CreateFlowDefinitionResponseTypeDef,
|
|
165
|
+
CreateHubContentPresignedUrlsRequestTypeDef,
|
|
166
|
+
CreateHubContentPresignedUrlsResponseTypeDef,
|
|
164
167
|
CreateHubContentReferenceRequestTypeDef,
|
|
165
168
|
CreateHubContentReferenceResponseTypeDef,
|
|
166
169
|
CreateHubRequestTypeDef,
|
|
@@ -650,6 +653,8 @@ from .type_defs import (
|
|
|
650
653
|
StartNotebookInstanceInputTypeDef,
|
|
651
654
|
StartPipelineExecutionRequestTypeDef,
|
|
652
655
|
StartPipelineExecutionResponseTypeDef,
|
|
656
|
+
StartSessionRequestTypeDef,
|
|
657
|
+
StartSessionResponseTypeDef,
|
|
653
658
|
StopAutoMLJobRequestTypeDef,
|
|
654
659
|
StopCompilationJobRequestTypeDef,
|
|
655
660
|
StopEdgeDeploymentStageRequestTypeDef,
|
|
@@ -1122,6 +1127,16 @@ class SageMakerClient(BaseClient):
|
|
|
1122
1127
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_hub)
|
|
1123
1128
|
"""
|
|
1124
1129
|
|
|
1130
|
+
def create_hub_content_presigned_urls(
|
|
1131
|
+
self, **kwargs: Unpack[CreateHubContentPresignedUrlsRequestTypeDef]
|
|
1132
|
+
) -> CreateHubContentPresignedUrlsResponseTypeDef:
|
|
1133
|
+
"""
|
|
1134
|
+
Creates presigned URLs for accessing hub content artifacts.
|
|
1135
|
+
|
|
1136
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_hub_content_presigned_urls.html)
|
|
1137
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_hub_content_presigned_urls)
|
|
1138
|
+
"""
|
|
1139
|
+
|
|
1125
1140
|
def create_hub_content_reference(
|
|
1126
1141
|
self, **kwargs: Unpack[CreateHubContentReferenceRequestTypeDef]
|
|
1127
1142
|
) -> CreateHubContentReferenceResponseTypeDef:
|
|
@@ -3825,6 +3840,17 @@ class SageMakerClient(BaseClient):
|
|
|
3825
3840
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#start_pipeline_execution)
|
|
3826
3841
|
"""
|
|
3827
3842
|
|
|
3843
|
+
def start_session(
|
|
3844
|
+
self, **kwargs: Unpack[StartSessionRequestTypeDef]
|
|
3845
|
+
) -> StartSessionResponseTypeDef:
|
|
3846
|
+
"""
|
|
3847
|
+
Initiates a remote connection session between a local integrated development
|
|
3848
|
+
environments (IDEs) and a remote SageMaker space.
|
|
3849
|
+
|
|
3850
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/start_session.html)
|
|
3851
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#start_session)
|
|
3852
|
+
"""
|
|
3853
|
+
|
|
3828
3854
|
def stop_auto_ml_job(
|
|
3829
3855
|
self, **kwargs: Unpack[StopAutoMLJobRequestTypeDef]
|
|
3830
3856
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -4424,6 +4450,17 @@ class SageMakerClient(BaseClient):
|
|
|
4424
4450
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_workteam)
|
|
4425
4451
|
"""
|
|
4426
4452
|
|
|
4453
|
+
@overload # type: ignore[override]
|
|
4454
|
+
def get_paginator( # type: ignore[override]
|
|
4455
|
+
self, operation_name: Literal["create_hub_content_presigned_urls"]
|
|
4456
|
+
) -> CreateHubContentPresignedUrlsPaginator:
|
|
4457
|
+
"""
|
|
4458
|
+
Create a paginator for an operation.
|
|
4459
|
+
|
|
4460
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4461
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4462
|
+
"""
|
|
4463
|
+
|
|
4427
4464
|
@overload # type: ignore[override]
|
|
4428
4465
|
def get_paginator( # type: ignore[override]
|
|
4429
4466
|
self, operation_name: Literal["list_actions"]
|
mypy_boto3_sagemaker/client.pyi
CHANGED
|
@@ -26,6 +26,7 @@ from botocore.errorfactory import BaseClientExceptions
|
|
|
26
26
|
from botocore.exceptions import ClientError as BotocoreClientError
|
|
27
27
|
|
|
28
28
|
from .paginator import (
|
|
29
|
+
CreateHubContentPresignedUrlsPaginator,
|
|
29
30
|
ListActionsPaginator,
|
|
30
31
|
ListAlgorithmsPaginator,
|
|
31
32
|
ListAliasesPaginator,
|
|
@@ -161,6 +162,8 @@ from .type_defs import (
|
|
|
161
162
|
CreateFeatureGroupResponseTypeDef,
|
|
162
163
|
CreateFlowDefinitionRequestTypeDef,
|
|
163
164
|
CreateFlowDefinitionResponseTypeDef,
|
|
165
|
+
CreateHubContentPresignedUrlsRequestTypeDef,
|
|
166
|
+
CreateHubContentPresignedUrlsResponseTypeDef,
|
|
164
167
|
CreateHubContentReferenceRequestTypeDef,
|
|
165
168
|
CreateHubContentReferenceResponseTypeDef,
|
|
166
169
|
CreateHubRequestTypeDef,
|
|
@@ -650,6 +653,8 @@ from .type_defs import (
|
|
|
650
653
|
StartNotebookInstanceInputTypeDef,
|
|
651
654
|
StartPipelineExecutionRequestTypeDef,
|
|
652
655
|
StartPipelineExecutionResponseTypeDef,
|
|
656
|
+
StartSessionRequestTypeDef,
|
|
657
|
+
StartSessionResponseTypeDef,
|
|
653
658
|
StopAutoMLJobRequestTypeDef,
|
|
654
659
|
StopCompilationJobRequestTypeDef,
|
|
655
660
|
StopEdgeDeploymentStageRequestTypeDef,
|
|
@@ -1119,6 +1124,16 @@ class SageMakerClient(BaseClient):
|
|
|
1119
1124
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_hub)
|
|
1120
1125
|
"""
|
|
1121
1126
|
|
|
1127
|
+
def create_hub_content_presigned_urls(
|
|
1128
|
+
self, **kwargs: Unpack[CreateHubContentPresignedUrlsRequestTypeDef]
|
|
1129
|
+
) -> CreateHubContentPresignedUrlsResponseTypeDef:
|
|
1130
|
+
"""
|
|
1131
|
+
Creates presigned URLs for accessing hub content artifacts.
|
|
1132
|
+
|
|
1133
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_hub_content_presigned_urls.html)
|
|
1134
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_hub_content_presigned_urls)
|
|
1135
|
+
"""
|
|
1136
|
+
|
|
1122
1137
|
def create_hub_content_reference(
|
|
1123
1138
|
self, **kwargs: Unpack[CreateHubContentReferenceRequestTypeDef]
|
|
1124
1139
|
) -> CreateHubContentReferenceResponseTypeDef:
|
|
@@ -3822,6 +3837,17 @@ class SageMakerClient(BaseClient):
|
|
|
3822
3837
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#start_pipeline_execution)
|
|
3823
3838
|
"""
|
|
3824
3839
|
|
|
3840
|
+
def start_session(
|
|
3841
|
+
self, **kwargs: Unpack[StartSessionRequestTypeDef]
|
|
3842
|
+
) -> StartSessionResponseTypeDef:
|
|
3843
|
+
"""
|
|
3844
|
+
Initiates a remote connection session between a local integrated development
|
|
3845
|
+
environments (IDEs) and a remote SageMaker space.
|
|
3846
|
+
|
|
3847
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/start_session.html)
|
|
3848
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#start_session)
|
|
3849
|
+
"""
|
|
3850
|
+
|
|
3825
3851
|
def stop_auto_ml_job(
|
|
3826
3852
|
self, **kwargs: Unpack[StopAutoMLJobRequestTypeDef]
|
|
3827
3853
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -4421,6 +4447,17 @@ class SageMakerClient(BaseClient):
|
|
|
4421
4447
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_workteam)
|
|
4422
4448
|
"""
|
|
4423
4449
|
|
|
4450
|
+
@overload # type: ignore[override]
|
|
4451
|
+
def get_paginator( # type: ignore[override]
|
|
4452
|
+
self, operation_name: Literal["create_hub_content_presigned_urls"]
|
|
4453
|
+
) -> CreateHubContentPresignedUrlsPaginator:
|
|
4454
|
+
"""
|
|
4455
|
+
Create a paginator for an operation.
|
|
4456
|
+
|
|
4457
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4458
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4459
|
+
"""
|
|
4460
|
+
|
|
4424
4461
|
@overload # type: ignore[override]
|
|
4425
4462
|
def get_paginator( # type: ignore[override]
|
|
4426
4463
|
self, operation_name: Literal["list_actions"]
|
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -86,6 +86,7 @@ __all__ = (
|
|
|
86
86
|
"ConditionOutcomeType",
|
|
87
87
|
"ContainerModeType",
|
|
88
88
|
"ContentClassifierType",
|
|
89
|
+
"CreateHubContentPresignedUrlsPaginatorName",
|
|
89
90
|
"CrossAccountFilterOptionType",
|
|
90
91
|
"DataDistributionTypeType",
|
|
91
92
|
"DataSourceNameType",
|
|
@@ -936,6 +937,7 @@ CompressionTypeType = Literal["Gzip", "None"]
|
|
|
936
937
|
ConditionOutcomeType = Literal["False", "True"]
|
|
937
938
|
ContainerModeType = Literal["MultiModel", "SingleModel"]
|
|
938
939
|
ContentClassifierType = Literal["FreeOfAdultContent", "FreeOfPersonallyIdentifiableInformation"]
|
|
940
|
+
CreateHubContentPresignedUrlsPaginatorName = Literal["create_hub_content_presigned_urls"]
|
|
939
941
|
CrossAccountFilterOptionType = Literal["CrossAccount", "SameAccount"]
|
|
940
942
|
DataDistributionTypeType = Literal["FullyReplicated", "ShardedByS3Key"]
|
|
941
943
|
DataSourceNameType = Literal["SalesforceGenie", "Snowflake"]
|
|
@@ -2798,6 +2800,7 @@ ResourceServiceName = Literal[
|
|
|
2798
2800
|
"sqs",
|
|
2799
2801
|
]
|
|
2800
2802
|
PaginatorName = Literal[
|
|
2803
|
+
"create_hub_content_presigned_urls",
|
|
2801
2804
|
"list_actions",
|
|
2802
2805
|
"list_algorithms",
|
|
2803
2806
|
"list_aliases",
|
|
@@ -85,6 +85,7 @@ __all__ = (
|
|
|
85
85
|
"ConditionOutcomeType",
|
|
86
86
|
"ContainerModeType",
|
|
87
87
|
"ContentClassifierType",
|
|
88
|
+
"CreateHubContentPresignedUrlsPaginatorName",
|
|
88
89
|
"CrossAccountFilterOptionType",
|
|
89
90
|
"DataDistributionTypeType",
|
|
90
91
|
"DataSourceNameType",
|
|
@@ -934,6 +935,7 @@ CompressionTypeType = Literal["Gzip", "None"]
|
|
|
934
935
|
ConditionOutcomeType = Literal["False", "True"]
|
|
935
936
|
ContainerModeType = Literal["MultiModel", "SingleModel"]
|
|
936
937
|
ContentClassifierType = Literal["FreeOfAdultContent", "FreeOfPersonallyIdentifiableInformation"]
|
|
938
|
+
CreateHubContentPresignedUrlsPaginatorName = Literal["create_hub_content_presigned_urls"]
|
|
937
939
|
CrossAccountFilterOptionType = Literal["CrossAccount", "SameAccount"]
|
|
938
940
|
DataDistributionTypeType = Literal["FullyReplicated", "ShardedByS3Key"]
|
|
939
941
|
DataSourceNameType = Literal["SalesforceGenie", "Snowflake"]
|
|
@@ -2796,6 +2798,7 @@ ResourceServiceName = Literal[
|
|
|
2796
2798
|
"sqs",
|
|
2797
2799
|
]
|
|
2798
2800
|
PaginatorName = Literal[
|
|
2801
|
+
"create_hub_content_presigned_urls",
|
|
2799
2802
|
"list_actions",
|
|
2800
2803
|
"list_algorithms",
|
|
2801
2804
|
"list_aliases",
|
|
@@ -12,6 +12,7 @@ Usage::
|
|
|
12
12
|
|
|
13
13
|
from mypy_boto3_sagemaker.client import SageMakerClient
|
|
14
14
|
from mypy_boto3_sagemaker.paginator import (
|
|
15
|
+
CreateHubContentPresignedUrlsPaginator,
|
|
15
16
|
ListActionsPaginator,
|
|
16
17
|
ListAlgorithmsPaginator,
|
|
17
18
|
ListAliasesPaginator,
|
|
@@ -95,6 +96,7 @@ Usage::
|
|
|
95
96
|
session = Session()
|
|
96
97
|
client: SageMakerClient = session.client("sagemaker")
|
|
97
98
|
|
|
99
|
+
create_hub_content_presigned_urls_paginator: CreateHubContentPresignedUrlsPaginator = client.get_paginator("create_hub_content_presigned_urls")
|
|
98
100
|
list_actions_paginator: ListActionsPaginator = client.get_paginator("list_actions")
|
|
99
101
|
list_algorithms_paginator: ListAlgorithmsPaginator = client.get_paginator("list_algorithms")
|
|
100
102
|
list_aliases_paginator: ListAliasesPaginator = client.get_paginator("list_aliases")
|
|
@@ -184,6 +186,8 @@ from typing import TYPE_CHECKING
|
|
|
184
186
|
from botocore.paginate import PageIterator, Paginator
|
|
185
187
|
|
|
186
188
|
from .type_defs import (
|
|
189
|
+
CreateHubContentPresignedUrlsRequestPaginateTypeDef,
|
|
190
|
+
CreateHubContentPresignedUrlsResponseTypeDef,
|
|
187
191
|
ListActionsRequestPaginateTypeDef,
|
|
188
192
|
ListActionsResponseTypeDef,
|
|
189
193
|
ListAlgorithmsInputPaginateTypeDef,
|
|
@@ -349,6 +353,7 @@ else:
|
|
|
349
353
|
|
|
350
354
|
|
|
351
355
|
__all__ = (
|
|
356
|
+
"CreateHubContentPresignedUrlsPaginator",
|
|
352
357
|
"ListActionsPaginator",
|
|
353
358
|
"ListAlgorithmsPaginator",
|
|
354
359
|
"ListAliasesPaginator",
|
|
@@ -430,6 +435,29 @@ __all__ = (
|
|
|
430
435
|
)
|
|
431
436
|
|
|
432
437
|
|
|
438
|
+
if TYPE_CHECKING:
|
|
439
|
+
_CreateHubContentPresignedUrlsPaginatorBase = Paginator[
|
|
440
|
+
CreateHubContentPresignedUrlsResponseTypeDef
|
|
441
|
+
]
|
|
442
|
+
else:
|
|
443
|
+
_CreateHubContentPresignedUrlsPaginatorBase = Paginator # type: ignore[assignment]
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
class CreateHubContentPresignedUrlsPaginator(_CreateHubContentPresignedUrlsPaginatorBase):
|
|
447
|
+
"""
|
|
448
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/CreateHubContentPresignedUrls.html#SageMaker.Paginator.CreateHubContentPresignedUrls)
|
|
449
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#createhubcontentpresignedurlspaginator)
|
|
450
|
+
"""
|
|
451
|
+
|
|
452
|
+
def paginate( # type: ignore[override]
|
|
453
|
+
self, **kwargs: Unpack[CreateHubContentPresignedUrlsRequestPaginateTypeDef]
|
|
454
|
+
) -> PageIterator[CreateHubContentPresignedUrlsResponseTypeDef]:
|
|
455
|
+
"""
|
|
456
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/CreateHubContentPresignedUrls.html#SageMaker.Paginator.CreateHubContentPresignedUrls.paginate)
|
|
457
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#createhubcontentpresignedurlspaginator)
|
|
458
|
+
"""
|
|
459
|
+
|
|
460
|
+
|
|
433
461
|
if TYPE_CHECKING:
|
|
434
462
|
_ListActionsPaginatorBase = Paginator[ListActionsResponseTypeDef]
|
|
435
463
|
else:
|
|
@@ -12,6 +12,7 @@ Usage::
|
|
|
12
12
|
|
|
13
13
|
from mypy_boto3_sagemaker.client import SageMakerClient
|
|
14
14
|
from mypy_boto3_sagemaker.paginator import (
|
|
15
|
+
CreateHubContentPresignedUrlsPaginator,
|
|
15
16
|
ListActionsPaginator,
|
|
16
17
|
ListAlgorithmsPaginator,
|
|
17
18
|
ListAliasesPaginator,
|
|
@@ -95,6 +96,7 @@ Usage::
|
|
|
95
96
|
session = Session()
|
|
96
97
|
client: SageMakerClient = session.client("sagemaker")
|
|
97
98
|
|
|
99
|
+
create_hub_content_presigned_urls_paginator: CreateHubContentPresignedUrlsPaginator = client.get_paginator("create_hub_content_presigned_urls")
|
|
98
100
|
list_actions_paginator: ListActionsPaginator = client.get_paginator("list_actions")
|
|
99
101
|
list_algorithms_paginator: ListAlgorithmsPaginator = client.get_paginator("list_algorithms")
|
|
100
102
|
list_aliases_paginator: ListAliasesPaginator = client.get_paginator("list_aliases")
|
|
@@ -184,6 +186,8 @@ from typing import TYPE_CHECKING
|
|
|
184
186
|
from botocore.paginate import PageIterator, Paginator
|
|
185
187
|
|
|
186
188
|
from .type_defs import (
|
|
189
|
+
CreateHubContentPresignedUrlsRequestPaginateTypeDef,
|
|
190
|
+
CreateHubContentPresignedUrlsResponseTypeDef,
|
|
187
191
|
ListActionsRequestPaginateTypeDef,
|
|
188
192
|
ListActionsResponseTypeDef,
|
|
189
193
|
ListAlgorithmsInputPaginateTypeDef,
|
|
@@ -348,6 +352,7 @@ else:
|
|
|
348
352
|
from typing_extensions import Unpack
|
|
349
353
|
|
|
350
354
|
__all__ = (
|
|
355
|
+
"CreateHubContentPresignedUrlsPaginator",
|
|
351
356
|
"ListActionsPaginator",
|
|
352
357
|
"ListAlgorithmsPaginator",
|
|
353
358
|
"ListAliasesPaginator",
|
|
@@ -428,6 +433,26 @@ __all__ = (
|
|
|
428
433
|
"SearchPaginator",
|
|
429
434
|
)
|
|
430
435
|
|
|
436
|
+
if TYPE_CHECKING:
|
|
437
|
+
_CreateHubContentPresignedUrlsPaginatorBase = Paginator[
|
|
438
|
+
CreateHubContentPresignedUrlsResponseTypeDef
|
|
439
|
+
]
|
|
440
|
+
else:
|
|
441
|
+
_CreateHubContentPresignedUrlsPaginatorBase = Paginator # type: ignore[assignment]
|
|
442
|
+
|
|
443
|
+
class CreateHubContentPresignedUrlsPaginator(_CreateHubContentPresignedUrlsPaginatorBase):
|
|
444
|
+
"""
|
|
445
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/CreateHubContentPresignedUrls.html#SageMaker.Paginator.CreateHubContentPresignedUrls)
|
|
446
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#createhubcontentpresignedurlspaginator)
|
|
447
|
+
"""
|
|
448
|
+
def paginate( # type: ignore[override]
|
|
449
|
+
self, **kwargs: Unpack[CreateHubContentPresignedUrlsRequestPaginateTypeDef]
|
|
450
|
+
) -> PageIterator[CreateHubContentPresignedUrlsResponseTypeDef]:
|
|
451
|
+
"""
|
|
452
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/CreateHubContentPresignedUrls.html#SageMaker.Paginator.CreateHubContentPresignedUrls.paginate)
|
|
453
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#createhubcontentpresignedurlspaginator)
|
|
454
|
+
"""
|
|
455
|
+
|
|
431
456
|
if TYPE_CHECKING:
|
|
432
457
|
_ListActionsPaginatorBase = Paginator[ListActionsResponseTypeDef]
|
|
433
458
|
else:
|