mypy-boto3-s3tables 1.39.0__py3-none-any.whl → 1.40.0__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-s3tables might be problematic. Click here for more details.

@@ -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 S3Tables 1.39.0\n"
16
- "Version: 1.39.0\n"
15
+ "Type annotations for boto3 S3Tables 1.40.0\n"
16
+ "Version: 1.40.0\n"
17
17
  "Builder version: 8.11.0\n"
18
18
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables.html#s3tables\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.0\n")
29
+ sys.stdout.write("1.40.0\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -36,6 +36,7 @@ __all__ = (
36
36
  "SSEAlgorithmType",
37
37
  "ServiceName",
38
38
  "TableBucketMaintenanceTypeType",
39
+ "TableBucketTypeType",
39
40
  "TableMaintenanceJobTypeType",
40
41
  "TableMaintenanceTypeType",
41
42
  "TableTypeType",
@@ -51,6 +52,7 @@ MaintenanceStatusType = Literal["disabled", "enabled"]
51
52
  OpenTableFormatType = Literal["ICEBERG"]
52
53
  SSEAlgorithmType = Literal["AES256", "aws:kms"]
53
54
  TableBucketMaintenanceTypeType = Literal["icebergUnreferencedFileRemoval"]
55
+ TableBucketTypeType = Literal["aws", "customer"]
54
56
  TableMaintenanceJobTypeType = Literal[
55
57
  "icebergCompaction", "icebergSnapshotManagement", "icebergUnreferencedFileRemoval"
56
58
  ]
@@ -100,6 +102,8 @@ ServiceName = Literal[
100
102
  "bedrock",
101
103
  "bedrock-agent",
102
104
  "bedrock-agent-runtime",
105
+ "bedrock-agentcore",
106
+ "bedrock-agentcore-control",
103
107
  "bedrock-data-automation",
104
108
  "bedrock-data-automation-runtime",
105
109
  "bedrock-runtime",
@@ -332,6 +336,7 @@ ServiceName = Literal[
332
336
  "notificationscontacts",
333
337
  "oam",
334
338
  "observabilityadmin",
339
+ "odb",
335
340
  "omics",
336
341
  "opensearch",
337
342
  "opensearchserverless",
@@ -392,6 +397,7 @@ ServiceName = Literal[
392
397
  "s3control",
393
398
  "s3outposts",
394
399
  "s3tables",
400
+ "s3vectors",
395
401
  "sagemaker",
396
402
  "sagemaker-a2i-runtime",
397
403
  "sagemaker-edge",
@@ -35,6 +35,7 @@ __all__ = (
35
35
  "SSEAlgorithmType",
36
36
  "ServiceName",
37
37
  "TableBucketMaintenanceTypeType",
38
+ "TableBucketTypeType",
38
39
  "TableMaintenanceJobTypeType",
39
40
  "TableMaintenanceTypeType",
40
41
  "TableTypeType",
@@ -49,6 +50,7 @@ MaintenanceStatusType = Literal["disabled", "enabled"]
49
50
  OpenTableFormatType = Literal["ICEBERG"]
50
51
  SSEAlgorithmType = Literal["AES256", "aws:kms"]
51
52
  TableBucketMaintenanceTypeType = Literal["icebergUnreferencedFileRemoval"]
53
+ TableBucketTypeType = Literal["aws", "customer"]
52
54
  TableMaintenanceJobTypeType = Literal[
53
55
  "icebergCompaction", "icebergSnapshotManagement", "icebergUnreferencedFileRemoval"
54
56
  ]
@@ -98,6 +100,8 @@ ServiceName = Literal[
98
100
  "bedrock",
99
101
  "bedrock-agent",
100
102
  "bedrock-agent-runtime",
103
+ "bedrock-agentcore",
104
+ "bedrock-agentcore-control",
101
105
  "bedrock-data-automation",
102
106
  "bedrock-data-automation-runtime",
103
107
  "bedrock-runtime",
@@ -330,6 +334,7 @@ ServiceName = Literal[
330
334
  "notificationscontacts",
331
335
  "oam",
332
336
  "observabilityadmin",
337
+ "odb",
333
338
  "omics",
334
339
  "opensearch",
335
340
  "opensearchserverless",
@@ -390,6 +395,7 @@ ServiceName = Literal[
390
395
  "s3control",
391
396
  "s3outposts",
392
397
  "s3tables",
398
+ "s3vectors",
393
399
  "sagemaker",
394
400
  "sagemaker-a2i-runtime",
395
401
  "sagemaker-edge",
@@ -24,6 +24,7 @@ from .literals import (
24
24
  JobStatusType,
25
25
  MaintenanceStatusType,
26
26
  SSEAlgorithmType,
27
+ TableBucketTypeType,
27
28
  TableMaintenanceJobTypeType,
28
29
  TableMaintenanceTypeType,
29
30
  TableTypeType,
@@ -274,18 +275,26 @@ class NamespaceSummaryTypeDef(TypedDict):
274
275
  tableBucketId: NotRequired[str]
275
276
 
276
277
 
277
- class ListTableBucketsRequestTypeDef(TypedDict):
278
- prefix: NotRequired[str]
279
- continuationToken: NotRequired[str]
280
- maxBuckets: NotRequired[int]
281
-
282
-
283
- class TableBucketSummaryTypeDef(TypedDict):
284
- arn: str
285
- name: str
286
- ownerAccountId: str
287
- createdAt: datetime
288
- tableBucketId: NotRequired[str]
278
+ ListTableBucketsRequestTypeDef = TypedDict(
279
+ "ListTableBucketsRequestTypeDef",
280
+ {
281
+ "prefix": NotRequired[str],
282
+ "continuationToken": NotRequired[str],
283
+ "maxBuckets": NotRequired[int],
284
+ "type": NotRequired[TableBucketTypeType],
285
+ },
286
+ )
287
+ TableBucketSummaryTypeDef = TypedDict(
288
+ "TableBucketSummaryTypeDef",
289
+ {
290
+ "arn": str,
291
+ "name": str,
292
+ "ownerAccountId": str,
293
+ "createdAt": datetime,
294
+ "tableBucketId": NotRequired[str],
295
+ "type": NotRequired[TableBucketTypeType],
296
+ },
297
+ )
289
298
 
290
299
 
291
300
  class ListTablesRequestTypeDef(TypedDict):
@@ -376,13 +385,18 @@ class GetTableBucketPolicyResponseTypeDef(TypedDict):
376
385
  ResponseMetadata: ResponseMetadataTypeDef
377
386
 
378
387
 
379
- class GetTableBucketResponseTypeDef(TypedDict):
380
- arn: str
381
- name: str
382
- ownerAccountId: str
383
- createdAt: datetime
384
- tableBucketId: str
385
- ResponseMetadata: ResponseMetadataTypeDef
388
+ GetTableBucketResponseTypeDef = TypedDict(
389
+ "GetTableBucketResponseTypeDef",
390
+ {
391
+ "arn": str,
392
+ "name": str,
393
+ "ownerAccountId": str,
394
+ "createdAt": datetime,
395
+ "tableBucketId": str,
396
+ "type": TableBucketTypeType,
397
+ "ResponseMetadata": ResponseMetadataTypeDef,
398
+ },
399
+ )
386
400
 
387
401
 
388
402
  class GetTableMetadataLocationResponseTypeDef(TypedDict):
@@ -475,9 +489,14 @@ class ListNamespacesRequestPaginateTypeDef(TypedDict):
475
489
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
476
490
 
477
491
 
478
- class ListTableBucketsRequestPaginateTypeDef(TypedDict):
479
- prefix: NotRequired[str]
480
- PaginationConfig: NotRequired[PaginatorConfigTypeDef]
492
+ ListTableBucketsRequestPaginateTypeDef = TypedDict(
493
+ "ListTableBucketsRequestPaginateTypeDef",
494
+ {
495
+ "prefix": NotRequired[str],
496
+ "type": NotRequired[TableBucketTypeType],
497
+ "PaginationConfig": NotRequired[PaginatorConfigTypeDef],
498
+ },
499
+ )
481
500
 
482
501
 
483
502
  class ListTablesRequestPaginateTypeDef(TypedDict):
@@ -24,6 +24,7 @@ from .literals import (
24
24
  JobStatusType,
25
25
  MaintenanceStatusType,
26
26
  SSEAlgorithmType,
27
+ TableBucketTypeType,
27
28
  TableMaintenanceJobTypeType,
28
29
  TableMaintenanceTypeType,
29
30
  TableTypeType,
@@ -244,17 +245,26 @@ class NamespaceSummaryTypeDef(TypedDict):
244
245
  namespaceId: NotRequired[str]
245
246
  tableBucketId: NotRequired[str]
246
247
 
247
- class ListTableBucketsRequestTypeDef(TypedDict):
248
- prefix: NotRequired[str]
249
- continuationToken: NotRequired[str]
250
- maxBuckets: NotRequired[int]
251
-
252
- class TableBucketSummaryTypeDef(TypedDict):
253
- arn: str
254
- name: str
255
- ownerAccountId: str
256
- createdAt: datetime
257
- tableBucketId: NotRequired[str]
248
+ ListTableBucketsRequestTypeDef = TypedDict(
249
+ "ListTableBucketsRequestTypeDef",
250
+ {
251
+ "prefix": NotRequired[str],
252
+ "continuationToken": NotRequired[str],
253
+ "maxBuckets": NotRequired[int],
254
+ "type": NotRequired[TableBucketTypeType],
255
+ },
256
+ )
257
+ TableBucketSummaryTypeDef = TypedDict(
258
+ "TableBucketSummaryTypeDef",
259
+ {
260
+ "arn": str,
261
+ "name": str,
262
+ "ownerAccountId": str,
263
+ "createdAt": datetime,
264
+ "tableBucketId": NotRequired[str],
265
+ "type": NotRequired[TableBucketTypeType],
266
+ },
267
+ )
258
268
 
259
269
  class ListTablesRequestTypeDef(TypedDict):
260
270
  tableBucketARN: str
@@ -332,13 +342,18 @@ class GetTableBucketPolicyResponseTypeDef(TypedDict):
332
342
  resourcePolicy: str
333
343
  ResponseMetadata: ResponseMetadataTypeDef
334
344
 
335
- class GetTableBucketResponseTypeDef(TypedDict):
336
- arn: str
337
- name: str
338
- ownerAccountId: str
339
- createdAt: datetime
340
- tableBucketId: str
341
- ResponseMetadata: ResponseMetadataTypeDef
345
+ GetTableBucketResponseTypeDef = TypedDict(
346
+ "GetTableBucketResponseTypeDef",
347
+ {
348
+ "arn": str,
349
+ "name": str,
350
+ "ownerAccountId": str,
351
+ "createdAt": datetime,
352
+ "tableBucketId": str,
353
+ "type": TableBucketTypeType,
354
+ "ResponseMetadata": ResponseMetadataTypeDef,
355
+ },
356
+ )
342
357
 
343
358
  class GetTableMetadataLocationResponseTypeDef(TypedDict):
344
359
  versionToken: str
@@ -417,9 +432,14 @@ class ListNamespacesRequestPaginateTypeDef(TypedDict):
417
432
  prefix: NotRequired[str]
418
433
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
419
434
 
420
- class ListTableBucketsRequestPaginateTypeDef(TypedDict):
421
- prefix: NotRequired[str]
422
- PaginationConfig: NotRequired[PaginatorConfigTypeDef]
435
+ ListTableBucketsRequestPaginateTypeDef = TypedDict(
436
+ "ListTableBucketsRequestPaginateTypeDef",
437
+ {
438
+ "prefix": NotRequired[str],
439
+ "type": NotRequired[TableBucketTypeType],
440
+ "PaginationConfig": NotRequired[PaginatorConfigTypeDef],
441
+ },
442
+ )
423
443
 
424
444
  class ListTablesRequestPaginateTypeDef(TypedDict):
425
445
  tableBucketARN: str
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.39.0"
7
+ __version__ = "1.40.0"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mypy-boto3-s3tables
3
- Version: 1.39.0
4
- Summary: Type annotations for boto3 S3Tables 1.39.0 service generated with mypy-boto3-builder 8.11.0
3
+ Version: 1.40.0
4
+ Summary: Type annotations for boto3 S3Tables 1.40.0 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 S3Tables 1.39.0](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 S3Tables 1.40.0](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/),
@@ -118,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
118
118
  isolation.
119
119
 
120
120
  1. Run mypy-boto3-builder in your package root directory:
121
- `uvx --with 'boto3==1.39.0' mypy-boto3-builder`
121
+ `uvx --with 'boto3==1.40.0' mypy-boto3-builder`
122
122
  2. Select `boto3-stubs` AWS SDK.
123
123
  3. Add `S3Tables` service.
124
124
  4. Use provided commands to install generated packages.
@@ -0,0 +1,18 @@
1
+ mypy_boto3_s3tables/__init__.py,sha256=0FRXcAgUgA-cyY4r4zQiknXuuwRImIPZvpOUqFY1fK4,1077
2
+ mypy_boto3_s3tables/__init__.pyi,sha256=H45cLvIEKHeLx7gYL2N0hJ0IK_SiJ-jQMp4wCBtY-Cc,1076
3
+ mypy_boto3_s3tables/__main__.py,sha256=wAQlz1Iu7JCqPV6FOTpMWgCphgf1AVathDCBPvK0lro,985
4
+ mypy_boto3_s3tables/client.py,sha256=YdI7GoTVwr1ABEa-4HejVDqq44DQgYHDQSXRnwa-BvI,22032
5
+ mypy_boto3_s3tables/client.pyi,sha256=ahuNL10FG1YDpPsFCMuroqLmHp3SeYSEc8jsznrWIX8,22029
6
+ mypy_boto3_s3tables/literals.py,sha256=phii0R0Q9NHBNsVZq1JOHWdBMArOopuGfQqqY6KVBIM,10281
7
+ mypy_boto3_s3tables/literals.pyi,sha256=ao27R9VVTIIM1ZOCsJTKvaGHQCKhMFeJid8iBT-v9A4,10279
8
+ mypy_boto3_s3tables/paginator.py,sha256=kxwI_U_08ugU5FZ5XuBBI1SVAO_eO6eJXR0ZDWPHxQY,4696
9
+ mypy_boto3_s3tables/paginator.pyi,sha256=g20DszBYx4Yvpt9LSme2o9ZWIuYqr9eBioI8nWPwKHo,4686
10
+ mypy_boto3_s3tables/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_s3tables/type_defs.py,sha256=PuFQBCvbHUSlmgwnHTkCOMs8bGL2ZyY7dZRd6ZM0Xxg,15652
12
+ mypy_boto3_s3tables/type_defs.pyi,sha256=JAwxTrdDqaWD_BZ4Ii8WN6a5aBok7niWdQmmx5KcLds,15583
13
+ mypy_boto3_s3tables/version.py,sha256=52Sk0XpA8tC09WfcAI6nm69vLa0ysg1C33ACO_NFSwc,92
14
+ mypy_boto3_s3tables-1.40.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
+ mypy_boto3_s3tables-1.40.0.dist-info/METADATA,sha256=iVUhNseudVQSSpd18MgqKTZEOlKGY5KDEzmRsw9eoo8,15229
16
+ mypy_boto3_s3tables-1.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ mypy_boto3_s3tables-1.40.0.dist-info/top_level.txt,sha256=oAuE1209XLnkqMpCnFhvFNXfMFMSV_JABp2g57RZEdE,20
18
+ mypy_boto3_s3tables-1.40.0.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- mypy_boto3_s3tables/__init__.py,sha256=0FRXcAgUgA-cyY4r4zQiknXuuwRImIPZvpOUqFY1fK4,1077
2
- mypy_boto3_s3tables/__init__.pyi,sha256=H45cLvIEKHeLx7gYL2N0hJ0IK_SiJ-jQMp4wCBtY-Cc,1076
3
- mypy_boto3_s3tables/__main__.py,sha256=12eatkjIuo3OnDMFyngXK5g6ZZCsiTEqH_lIDV2Bn0w,985
4
- mypy_boto3_s3tables/client.py,sha256=YdI7GoTVwr1ABEa-4HejVDqq44DQgYHDQSXRnwa-BvI,22032
5
- mypy_boto3_s3tables/client.pyi,sha256=ahuNL10FG1YDpPsFCMuroqLmHp3SeYSEc8jsznrWIX8,22029
6
- mypy_boto3_s3tables/literals.py,sha256=YR5Zl8VQVjZThdtWKtCVHFqUEms3Q1oeXdfm5XP6mIY,10119
7
- mypy_boto3_s3tables/literals.pyi,sha256=Luxznp0Z26Zozex8x3hMxb-jz3agrVKu6kXafZxX4Fg,10117
8
- mypy_boto3_s3tables/paginator.py,sha256=kxwI_U_08ugU5FZ5XuBBI1SVAO_eO6eJXR0ZDWPHxQY,4696
9
- mypy_boto3_s3tables/paginator.pyi,sha256=g20DszBYx4Yvpt9LSme2o9ZWIuYqr9eBioI8nWPwKHo,4686
10
- mypy_boto3_s3tables/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_s3tables/type_defs.py,sha256=on6qcixGgkDrDZcmBH1SCao2rvRkO9lmB1B5ps8ATa8,15136
12
- mypy_boto3_s3tables/type_defs.pyi,sha256=gILaCtOKcYGWUJDn1SEI4GhNGPOK71WMAgApFJr7gvA,15066
13
- mypy_boto3_s3tables/version.py,sha256=2zoG4eEWPRyRE1KcrQlbWADhaM3qPJ9AE2mKAu218VA,92
14
- mypy_boto3_s3tables-1.39.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
- mypy_boto3_s3tables-1.39.0.dist-info/METADATA,sha256=dD4lvKIbMgve6ZYLh5Q0olDpGAjHlXdfawo2i_7IuCk,15229
16
- mypy_boto3_s3tables-1.39.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- mypy_boto3_s3tables-1.39.0.dist-info/top_level.txt,sha256=oAuE1209XLnkqMpCnFhvFNXfMFMSV_JABp2g57RZEdE,20
18
- mypy_boto3_s3tables-1.39.0.dist-info/RECORD,,