mypy-boto3-sagemaker 1.38.7__py3-none-any.whl → 1.38.14__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.

@@ -12,9 +12,9 @@ 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.38.7\n"
16
- "Version: 1.38.7\n"
17
- "Builder version: 8.10.1\n"
15
+ "Type annotations for boto3 SageMaker 1.38.14\n"
16
+ "Version: 1.38.14\n"
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"
20
20
  "Other services: https://pypi.org/project/boto3-stubs/\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.38.7\n")
29
+ sys.stdout.write("1.38.14\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -2630,7 +2630,6 @@ ServiceName = Literal[
2630
2630
  "signer",
2631
2631
  "simspaceweaver",
2632
2632
  "sms",
2633
- "sms-voice",
2634
2633
  "snow-device-management",
2635
2634
  "snowball",
2636
2635
  "sns",
@@ -2628,7 +2628,6 @@ ServiceName = Literal[
2628
2628
  "signer",
2629
2629
  "simspaceweaver",
2630
2630
  "sms",
2631
- "sms-voice",
2632
2631
  "snow-device-management",
2633
2632
  "snowball",
2634
2633
  "sns",
@@ -1813,6 +1813,7 @@ __all__ = (
1813
1813
  "UiConfigTypeDef",
1814
1814
  "UiTemplateInfoTypeDef",
1815
1815
  "UiTemplateTypeDef",
1816
+ "UnifiedStudioSettingsTypeDef",
1816
1817
  "UpdateActionRequestTypeDef",
1817
1818
  "UpdateActionResponseTypeDef",
1818
1819
  "UpdateAppImageConfigRequestTypeDef",
@@ -2209,9 +2210,9 @@ MetricDatumTypeDef = TypedDict(
2209
2210
  "MetricDatumTypeDef",
2210
2211
  {
2211
2212
  "MetricName": NotRequired[AutoMLMetricEnumType],
2213
+ "StandardMetricName": NotRequired[AutoMLMetricExtendedEnumType],
2212
2214
  "Value": NotRequired[float],
2213
2215
  "Set": NotRequired[MetricSetSourceType],
2214
- "StandardMetricName": NotRequired[AutoMLMetricExtendedEnumType],
2215
2216
  },
2216
2217
  )
2217
2218
 
@@ -3894,6 +3895,16 @@ class DomainDetailsTypeDef(TypedDict):
3894
3895
  Url: NotRequired[str]
3895
3896
 
3896
3897
 
3898
+ class UnifiedStudioSettingsTypeDef(TypedDict):
3899
+ StudioWebPortalAccess: NotRequired[FeatureStatusType]
3900
+ DomainAccountId: NotRequired[str]
3901
+ DomainRegion: NotRequired[str]
3902
+ DomainId: NotRequired[str]
3903
+ ProjectId: NotRequired[str]
3904
+ EnvironmentId: NotRequired[str]
3905
+ ProjectS3Path: NotRequired[str]
3906
+
3907
+
3897
3908
  class FileSourceTypeDef(TypedDict):
3898
3909
  S3Uri: str
3899
3910
  ContentType: NotRequired[str]
@@ -7737,10 +7748,10 @@ class QueryFiltersTypeDef(TypedDict):
7737
7748
 
7738
7749
 
7739
7750
  class SearchTrainingPlanOfferingsRequestTypeDef(TypedDict):
7740
- InstanceType: ReservedCapacityInstanceTypeType
7741
- InstanceCount: int
7742
7751
  DurationHours: int
7743
7752
  TargetResources: Sequence[SageMakerResourceNameType]
7753
+ InstanceType: NotRequired[ReservedCapacityInstanceTypeType]
7754
+ InstanceCount: NotRequired[int]
7744
7755
  StartTimeAfter: NotRequired[TimestampTypeDef]
7745
7756
  EndTimeBefore: NotRequired[TimestampTypeDef]
7746
7757
 
@@ -9926,6 +9937,7 @@ class DomainSettingsOutputTypeDef(TypedDict):
9926
9937
  ExecutionRoleIdentityConfig: NotRequired[ExecutionRoleIdentityConfigType]
9927
9938
  DockerSettings: NotRequired[DockerSettingsOutputTypeDef]
9928
9939
  AmazonQSettings: NotRequired[AmazonQSettingsTypeDef]
9940
+ UnifiedStudioSettings: NotRequired[UnifiedStudioSettingsTypeDef]
9929
9941
 
9930
9942
 
9931
9943
  class DomainSettingsTypeDef(TypedDict):
@@ -9934,6 +9946,7 @@ class DomainSettingsTypeDef(TypedDict):
9934
9946
  ExecutionRoleIdentityConfig: NotRequired[ExecutionRoleIdentityConfigType]
9935
9947
  DockerSettings: NotRequired[DockerSettingsTypeDef]
9936
9948
  AmazonQSettings: NotRequired[AmazonQSettingsTypeDef]
9949
+ UnifiedStudioSettings: NotRequired[UnifiedStudioSettingsTypeDef]
9937
9950
 
9938
9951
 
9939
9952
  class CodeEditorAppSettingsOutputTypeDef(TypedDict):
@@ -10395,6 +10408,7 @@ class DomainSettingsForUpdateTypeDef(TypedDict):
10395
10408
  SecurityGroupIds: NotRequired[Sequence[str]]
10396
10409
  DockerSettings: NotRequired[DockerSettingsUnionTypeDef]
10397
10410
  AmazonQSettings: NotRequired[AmazonQSettingsTypeDef]
10411
+ UnifiedStudioSettings: NotRequired[UnifiedStudioSettingsTypeDef]
10398
10412
 
10399
10413
 
10400
10414
  class DriftCheckBaselinesTypeDef(TypedDict):
@@ -12194,6 +12208,7 @@ class SpaceSettingsOutputTypeDef(TypedDict):
12194
12208
  JupyterLabAppSettings: NotRequired[SpaceJupyterLabAppSettingsOutputTypeDef]
12195
12209
  AppType: NotRequired[AppTypeType]
12196
12210
  SpaceStorageSettings: NotRequired[SpaceStorageSettingsTypeDef]
12211
+ SpaceManagedResources: NotRequired[FeatureStatusType]
12197
12212
  CustomFileSystems: NotRequired[List[CustomFileSystemTypeDef]]
12198
12213
 
12199
12214
 
@@ -12204,6 +12219,7 @@ class SpaceSettingsTypeDef(TypedDict):
12204
12219
  JupyterLabAppSettings: NotRequired[SpaceJupyterLabAppSettingsTypeDef]
12205
12220
  AppType: NotRequired[AppTypeType]
12206
12221
  SpaceStorageSettings: NotRequired[SpaceStorageSettingsTypeDef]
12222
+ SpaceManagedResources: NotRequired[FeatureStatusType]
12207
12223
  CustomFileSystems: NotRequired[Sequence[CustomFileSystemTypeDef]]
12208
12224
 
12209
12225
 
@@ -1812,6 +1812,7 @@ __all__ = (
1812
1812
  "UiConfigTypeDef",
1813
1813
  "UiTemplateInfoTypeDef",
1814
1814
  "UiTemplateTypeDef",
1815
+ "UnifiedStudioSettingsTypeDef",
1815
1816
  "UpdateActionRequestTypeDef",
1816
1817
  "UpdateActionResponseTypeDef",
1817
1818
  "UpdateAppImageConfigRequestTypeDef",
@@ -2154,9 +2155,9 @@ MetricDatumTypeDef = TypedDict(
2154
2155
  "MetricDatumTypeDef",
2155
2156
  {
2156
2157
  "MetricName": NotRequired[AutoMLMetricEnumType],
2158
+ "StandardMetricName": NotRequired[AutoMLMetricExtendedEnumType],
2157
2159
  "Value": NotRequired[float],
2158
2160
  "Set": NotRequired[MetricSetSourceType],
2159
- "StandardMetricName": NotRequired[AutoMLMetricExtendedEnumType],
2160
2161
  },
2161
2162
  )
2162
2163
 
@@ -3527,6 +3528,15 @@ class DomainDetailsTypeDef(TypedDict):
3527
3528
  LastModifiedTime: NotRequired[datetime]
3528
3529
  Url: NotRequired[str]
3529
3530
 
3531
+ class UnifiedStudioSettingsTypeDef(TypedDict):
3532
+ StudioWebPortalAccess: NotRequired[FeatureStatusType]
3533
+ DomainAccountId: NotRequired[str]
3534
+ DomainRegion: NotRequired[str]
3535
+ DomainId: NotRequired[str]
3536
+ ProjectId: NotRequired[str]
3537
+ EnvironmentId: NotRequired[str]
3538
+ ProjectS3Path: NotRequired[str]
3539
+
3530
3540
  class FileSourceTypeDef(TypedDict):
3531
3541
  S3Uri: str
3532
3542
  ContentType: NotRequired[str]
@@ -6810,10 +6820,10 @@ class QueryFiltersTypeDef(TypedDict):
6810
6820
  Properties: NotRequired[Mapping[str, str]]
6811
6821
 
6812
6822
  class SearchTrainingPlanOfferingsRequestTypeDef(TypedDict):
6813
- InstanceType: ReservedCapacityInstanceTypeType
6814
- InstanceCount: int
6815
6823
  DurationHours: int
6816
6824
  TargetResources: Sequence[SageMakerResourceNameType]
6825
+ InstanceType: NotRequired[ReservedCapacityInstanceTypeType]
6826
+ InstanceCount: NotRequired[int]
6817
6827
  StartTimeAfter: NotRequired[TimestampTypeDef]
6818
6828
  EndTimeBefore: NotRequired[TimestampTypeDef]
6819
6829
 
@@ -8724,6 +8734,7 @@ class DomainSettingsOutputTypeDef(TypedDict):
8724
8734
  ExecutionRoleIdentityConfig: NotRequired[ExecutionRoleIdentityConfigType]
8725
8735
  DockerSettings: NotRequired[DockerSettingsOutputTypeDef]
8726
8736
  AmazonQSettings: NotRequired[AmazonQSettingsTypeDef]
8737
+ UnifiedStudioSettings: NotRequired[UnifiedStudioSettingsTypeDef]
8727
8738
 
8728
8739
  class DomainSettingsTypeDef(TypedDict):
8729
8740
  SecurityGroupIds: NotRequired[Sequence[str]]
@@ -8731,6 +8742,7 @@ class DomainSettingsTypeDef(TypedDict):
8731
8742
  ExecutionRoleIdentityConfig: NotRequired[ExecutionRoleIdentityConfigType]
8732
8743
  DockerSettings: NotRequired[DockerSettingsTypeDef]
8733
8744
  AmazonQSettings: NotRequired[AmazonQSettingsTypeDef]
8745
+ UnifiedStudioSettings: NotRequired[UnifiedStudioSettingsTypeDef]
8734
8746
 
8735
8747
  class CodeEditorAppSettingsOutputTypeDef(TypedDict):
8736
8748
  DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
@@ -9133,6 +9145,7 @@ class DomainSettingsForUpdateTypeDef(TypedDict):
9133
9145
  SecurityGroupIds: NotRequired[Sequence[str]]
9134
9146
  DockerSettings: NotRequired[DockerSettingsUnionTypeDef]
9135
9147
  AmazonQSettings: NotRequired[AmazonQSettingsTypeDef]
9148
+ UnifiedStudioSettings: NotRequired[UnifiedStudioSettingsTypeDef]
9136
9149
 
9137
9150
  class DriftCheckBaselinesTypeDef(TypedDict):
9138
9151
  Bias: NotRequired[DriftCheckBiasTypeDef]
@@ -10749,6 +10762,7 @@ class SpaceSettingsOutputTypeDef(TypedDict):
10749
10762
  JupyterLabAppSettings: NotRequired[SpaceJupyterLabAppSettingsOutputTypeDef]
10750
10763
  AppType: NotRequired[AppTypeType]
10751
10764
  SpaceStorageSettings: NotRequired[SpaceStorageSettingsTypeDef]
10765
+ SpaceManagedResources: NotRequired[FeatureStatusType]
10752
10766
  CustomFileSystems: NotRequired[List[CustomFileSystemTypeDef]]
10753
10767
 
10754
10768
  class SpaceSettingsTypeDef(TypedDict):
@@ -10758,6 +10772,7 @@ class SpaceSettingsTypeDef(TypedDict):
10758
10772
  JupyterLabAppSettings: NotRequired[SpaceJupyterLabAppSettingsTypeDef]
10759
10773
  AppType: NotRequired[AppTypeType]
10760
10774
  SpaceStorageSettings: NotRequired[SpaceStorageSettingsTypeDef]
10775
+ SpaceManagedResources: NotRequired[FeatureStatusType]
10761
10776
  CustomFileSystems: NotRequired[Sequence[CustomFileSystemTypeDef]]
10762
10777
 
10763
10778
  AlgorithmSpecificationUnionTypeDef = Union[
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.38.7"
7
+ __version__ = "1.38.14"
@@ -98,7 +98,7 @@ class EndpointDeletedWaiter(Waiter):
98
98
  """
99
99
 
100
100
  def wait( # type: ignore[override]
101
- self, **kwargs: Unpack[DescribeEndpointInputWaitExtraTypeDef]
101
+ self, **kwargs: Unpack[DescribeEndpointInputWaitTypeDef]
102
102
  ) -> None:
103
103
  """
104
104
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted.wait)
@@ -113,7 +113,7 @@ class EndpointInServiceWaiter(Waiter):
113
113
  """
114
114
 
115
115
  def wait( # type: ignore[override]
116
- self, **kwargs: Unpack[DescribeEndpointInputWaitTypeDef]
116
+ self, **kwargs: Unpack[DescribeEndpointInputWaitExtraTypeDef]
117
117
  ) -> None:
118
118
  """
119
119
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointInService.html#SageMaker.Waiter.EndpointInService.wait)
@@ -143,7 +143,7 @@ class ImageDeletedWaiter(Waiter):
143
143
  """
144
144
 
145
145
  def wait( # type: ignore[override]
146
- self, **kwargs: Unpack[DescribeImageRequestWaitExtraExtraTypeDef]
146
+ self, **kwargs: Unpack[DescribeImageRequestWaitExtraTypeDef]
147
147
  ) -> None:
148
148
  """
149
149
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted.wait)
@@ -158,7 +158,7 @@ class ImageUpdatedWaiter(Waiter):
158
158
  """
159
159
 
160
160
  def wait( # type: ignore[override]
161
- self, **kwargs: Unpack[DescribeImageRequestWaitExtraTypeDef]
161
+ self, **kwargs: Unpack[DescribeImageRequestWaitExtraExtraTypeDef]
162
162
  ) -> None:
163
163
  """
164
164
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated.wait)
@@ -203,7 +203,7 @@ class NotebookInstanceDeletedWaiter(Waiter):
203
203
  """
204
204
 
205
205
  def wait( # type: ignore[override]
206
- self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraExtraTypeDef]
206
+ self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
207
207
  ) -> None:
208
208
  """
209
209
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
@@ -218,7 +218,7 @@ class NotebookInstanceInServiceWaiter(Waiter):
218
218
  """
219
219
 
220
220
  def wait( # type: ignore[override]
221
- self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
221
+ self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraTypeDef]
222
222
  ) -> None:
223
223
  """
224
224
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceInService.html#SageMaker.Waiter.NotebookInstanceInService.wait)
@@ -233,7 +233,7 @@ class NotebookInstanceStoppedWaiter(Waiter):
233
233
  """
234
234
 
235
235
  def wait( # type: ignore[override]
236
- self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraTypeDef]
236
+ self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraExtraTypeDef]
237
237
  ) -> None:
238
238
  """
239
239
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
@@ -95,7 +95,7 @@ class EndpointDeletedWaiter(Waiter):
95
95
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
96
96
  """
97
97
  def wait( # type: ignore[override]
98
- self, **kwargs: Unpack[DescribeEndpointInputWaitExtraTypeDef]
98
+ self, **kwargs: Unpack[DescribeEndpointInputWaitTypeDef]
99
99
  ) -> None:
100
100
  """
101
101
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted.wait)
@@ -108,7 +108,7 @@ class EndpointInServiceWaiter(Waiter):
108
108
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
109
109
  """
110
110
  def wait( # type: ignore[override]
111
- self, **kwargs: Unpack[DescribeEndpointInputWaitTypeDef]
111
+ self, **kwargs: Unpack[DescribeEndpointInputWaitExtraTypeDef]
112
112
  ) -> None:
113
113
  """
114
114
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointInService.html#SageMaker.Waiter.EndpointInService.wait)
@@ -134,7 +134,7 @@ class ImageDeletedWaiter(Waiter):
134
134
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
135
135
  """
136
136
  def wait( # type: ignore[override]
137
- self, **kwargs: Unpack[DescribeImageRequestWaitExtraExtraTypeDef]
137
+ self, **kwargs: Unpack[DescribeImageRequestWaitExtraTypeDef]
138
138
  ) -> None:
139
139
  """
140
140
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted.wait)
@@ -147,7 +147,7 @@ class ImageUpdatedWaiter(Waiter):
147
147
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
148
148
  """
149
149
  def wait( # type: ignore[override]
150
- self, **kwargs: Unpack[DescribeImageRequestWaitExtraTypeDef]
150
+ self, **kwargs: Unpack[DescribeImageRequestWaitExtraExtraTypeDef]
151
151
  ) -> None:
152
152
  """
153
153
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated.wait)
@@ -186,7 +186,7 @@ class NotebookInstanceDeletedWaiter(Waiter):
186
186
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
187
187
  """
188
188
  def wait( # type: ignore[override]
189
- self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraExtraTypeDef]
189
+ self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
190
190
  ) -> None:
191
191
  """
192
192
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
@@ -199,7 +199,7 @@ class NotebookInstanceInServiceWaiter(Waiter):
199
199
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
200
200
  """
201
201
  def wait( # type: ignore[override]
202
- self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
202
+ self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraTypeDef]
203
203
  ) -> None:
204
204
  """
205
205
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceInService.html#SageMaker.Waiter.NotebookInstanceInService.wait)
@@ -212,7 +212,7 @@ class NotebookInstanceStoppedWaiter(Waiter):
212
212
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
213
213
  """
214
214
  def wait( # type: ignore[override]
215
- self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraTypeDef]
215
+ self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraExtraTypeDef]
216
216
  ) -> None:
217
217
  """
218
218
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mypy-boto3-sagemaker
3
- Version: 1.38.7
4
- Summary: Type annotations for boto3 SageMaker 1.38.7 service generated with mypy-boto3-builder 8.10.1
3
+ Version: 1.38.14
4
+ Summary: Type annotations for boto3 SageMaker 1.38.14 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
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
58
58
 
59
- Type annotations for [boto3 SageMaker 1.38.7](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 SageMaker 1.38.14](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/),
@@ -65,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
65
65
  [pyright](https://github.com/microsoft/pyright) and other tools.
66
66
 
67
67
  Generated with
68
- [mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
68
+ [mypy-boto3-builder 8.11.0](https://github.com/youtype/mypy_boto3_builder).
69
69
 
70
70
  More information can be found on
71
71
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -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.38.7' mypy-boto3-builder`
122
+ `uvx --with 'boto3==1.38.14' 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=opHkjuIms4oAULgt6RpiQM_b3MlcLpgp8MMTkCReC3o,20862
2
+ mypy_boto3_sagemaker/__init__.pyi,sha256=tbdiUUr5WXkYKgsTJGeNm8nf-W6kCYBvkDpK4kvX654,20861
3
+ mypy_boto3_sagemaker/__main__.py,sha256=D2UP61cC8FeJxgdoDBq8iqMUv5ekLbQb5SVWKnF7EKE,992
4
+ mypy_boto3_sagemaker/client.py,sha256=mIVQ5pCAuGzbrjzSBUjFos3al4bIAkDwfyPoMAsonjs,269493
5
+ mypy_boto3_sagemaker/client.pyi,sha256=GSQQDofiZ9Uwc3Z3wNJxmISvrqwatSVMHLhrXaBMRSk,269490
6
+ mypy_boto3_sagemaker/literals.py,sha256=l0Ll-D9G0jjxdQz8BaFsipcBYdRevp2C7Tflx6Z-lGg,81128
7
+ mypy_boto3_sagemaker/literals.pyi,sha256=Kq8oNJ8OSvJ338dkdG82a1b9yaL4rMqWtLZsJPzyskI,81126
8
+ mypy_boto3_sagemaker/paginator.py,sha256=6L2do5UDlW6ag_KUhRla4QbZORaFO-AulDv7A4nXEh8,113965
9
+ mypy_boto3_sagemaker/paginator.pyi,sha256=HJgYz9NiQOAITGAFA-ySnltWarPIVrk7wB-8nuAMYhQ,113730
10
+ mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_sagemaker/type_defs.py,sha256=cerXV7AcbwhAmOi4gfzsYhB_6H28HYiqJiPkqnn2Y8w,460157
12
+ mypy_boto3_sagemaker/type_defs.pyi,sha256=jpNNo8w5h7lMV7vEz2P1mPbXxdUgU0fFBhllPQ0nPAE,458583
13
+ mypy_boto3_sagemaker/version.py,sha256=1MJdOriPRQnUJCSaJ5AImld4SvjEv42ugGVU9bixc_I,93
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.38.14.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_sagemaker-1.38.14.dist-info/METADATA,sha256=-HGOryQg26Gsc3kCZ2AW2TLTR4Wzv-r0klADzP2XWIw,28898
18
+ mypy_boto3_sagemaker-1.38.14.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
19
+ mypy_boto3_sagemaker-1.38.14.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
+ mypy_boto3_sagemaker-1.38.14.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.1.0)
2
+ Generator: setuptools (80.4.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,20 +0,0 @@
1
- mypy_boto3_sagemaker/__init__.py,sha256=opHkjuIms4oAULgt6RpiQM_b3MlcLpgp8MMTkCReC3o,20862
2
- mypy_boto3_sagemaker/__init__.pyi,sha256=tbdiUUr5WXkYKgsTJGeNm8nf-W6kCYBvkDpK4kvX654,20861
3
- mypy_boto3_sagemaker/__main__.py,sha256=T_MhCu-BQ2RHIt1RYTJX4J7BEVKseODCuujx8gZGImY,989
4
- mypy_boto3_sagemaker/client.py,sha256=mIVQ5pCAuGzbrjzSBUjFos3al4bIAkDwfyPoMAsonjs,269493
5
- mypy_boto3_sagemaker/client.pyi,sha256=GSQQDofiZ9Uwc3Z3wNJxmISvrqwatSVMHLhrXaBMRSk,269490
6
- mypy_boto3_sagemaker/literals.py,sha256=1udrjpG-aQav2VvUv0A87SdU4G39Ir6x2TPBaylwh1Y,81145
7
- mypy_boto3_sagemaker/literals.pyi,sha256=ip0g569O37fHZIKY0bhWSiuV91weet8KFz-zLPBGf9A,81143
8
- mypy_boto3_sagemaker/paginator.py,sha256=6L2do5UDlW6ag_KUhRla4QbZORaFO-AulDv7A4nXEh8,113965
9
- mypy_boto3_sagemaker/paginator.pyi,sha256=HJgYz9NiQOAITGAFA-ySnltWarPIVrk7wB-8nuAMYhQ,113730
10
- mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_sagemaker/type_defs.py,sha256=aVu51SZAHrsCeMrdjLzFwdXYb658HKjVU7YVfiobzps,459457
12
- mypy_boto3_sagemaker/type_defs.pyi,sha256=U0gCiq5zhCoKj08TKQLWR0lbv2057D4TzVPbPxe2ncU,457884
13
- mypy_boto3_sagemaker/version.py,sha256=fnrOgyKeMsHmkfe72yw2wWf1yaAG54GQI-a_BZKTDyM,92
14
- mypy_boto3_sagemaker/waiter.py,sha256=-S1TZyw55DA_NY46uwNmMEDpruhN4am2JYcCn53mH1M,15080
15
- mypy_boto3_sagemaker/waiter.pyi,sha256=Ddbvoy56vM8BmGsIG3bz4wmsRS7ruZSpyb1HArqvrj4,15053
16
- mypy_boto3_sagemaker-1.38.7.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- mypy_boto3_sagemaker-1.38.7.dist-info/METADATA,sha256=oI0zN2-kxlWPKhnYdf2SvleU8yVwhL_7hUuChcFkkU4,28894
18
- mypy_boto3_sagemaker-1.38.7.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
19
- mypy_boto3_sagemaker-1.38.7.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
- mypy_boto3_sagemaker-1.38.7.dist-info/RECORD,,