mypy-boto3-s3tables 1.36.0__py3-none-any.whl → 1.36.10__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.

@@ -3,15 +3,15 @@ Type annotations for s3tables service type definitions.
3
3
 
4
4
  [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/type_defs/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
9
- from mypy_boto3_s3tables.type_defs import CreateNamespaceRequestRequestTypeDef
11
+ from mypy_boto3_s3tables.type_defs import CreateNamespaceRequestTypeDef
10
12
 
11
- data: CreateNamespaceRequestRequestTypeDef = ...
13
+ data: CreateNamespaceRequestTypeDef = ...
12
14
  ```
13
-
14
- Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  from __future__ import annotations
@@ -39,68 +39,72 @@ else:
39
39
  from typing_extensions import Literal, NotRequired, TypedDict
40
40
 
41
41
  __all__ = (
42
- "CreateNamespaceRequestRequestTypeDef",
42
+ "CreateNamespaceRequestTypeDef",
43
43
  "CreateNamespaceResponseTypeDef",
44
- "CreateTableBucketRequestRequestTypeDef",
44
+ "CreateTableBucketRequestTypeDef",
45
45
  "CreateTableBucketResponseTypeDef",
46
- "CreateTableRequestRequestTypeDef",
46
+ "CreateTableRequestTypeDef",
47
47
  "CreateTableResponseTypeDef",
48
- "DeleteNamespaceRequestRequestTypeDef",
49
- "DeleteTableBucketPolicyRequestRequestTypeDef",
50
- "DeleteTableBucketRequestRequestTypeDef",
51
- "DeleteTablePolicyRequestRequestTypeDef",
52
- "DeleteTableRequestRequestTypeDef",
48
+ "DeleteNamespaceRequestTypeDef",
49
+ "DeleteTableBucketPolicyRequestTypeDef",
50
+ "DeleteTableBucketRequestTypeDef",
51
+ "DeleteTablePolicyRequestTypeDef",
52
+ "DeleteTableRequestTypeDef",
53
53
  "EmptyResponseMetadataTypeDef",
54
- "GetNamespaceRequestRequestTypeDef",
54
+ "GetNamespaceRequestTypeDef",
55
55
  "GetNamespaceResponseTypeDef",
56
- "GetTableBucketMaintenanceConfigurationRequestRequestTypeDef",
56
+ "GetTableBucketMaintenanceConfigurationRequestTypeDef",
57
57
  "GetTableBucketMaintenanceConfigurationResponseTypeDef",
58
- "GetTableBucketPolicyRequestRequestTypeDef",
58
+ "GetTableBucketPolicyRequestTypeDef",
59
59
  "GetTableBucketPolicyResponseTypeDef",
60
- "GetTableBucketRequestRequestTypeDef",
60
+ "GetTableBucketRequestTypeDef",
61
61
  "GetTableBucketResponseTypeDef",
62
- "GetTableMaintenanceConfigurationRequestRequestTypeDef",
62
+ "GetTableMaintenanceConfigurationRequestTypeDef",
63
63
  "GetTableMaintenanceConfigurationResponseTypeDef",
64
- "GetTableMaintenanceJobStatusRequestRequestTypeDef",
64
+ "GetTableMaintenanceJobStatusRequestTypeDef",
65
65
  "GetTableMaintenanceJobStatusResponseTypeDef",
66
- "GetTableMetadataLocationRequestRequestTypeDef",
66
+ "GetTableMetadataLocationRequestTypeDef",
67
67
  "GetTableMetadataLocationResponseTypeDef",
68
- "GetTablePolicyRequestRequestTypeDef",
68
+ "GetTablePolicyRequestTypeDef",
69
69
  "GetTablePolicyResponseTypeDef",
70
- "GetTableRequestRequestTypeDef",
70
+ "GetTableRequestTypeDef",
71
71
  "GetTableResponseTypeDef",
72
72
  "IcebergCompactionSettingsTypeDef",
73
+ "IcebergMetadataTypeDef",
74
+ "IcebergSchemaTypeDef",
73
75
  "IcebergSnapshotManagementSettingsTypeDef",
74
76
  "IcebergUnreferencedFileRemovalSettingsTypeDef",
75
77
  "ListNamespacesRequestPaginateTypeDef",
76
- "ListNamespacesRequestRequestTypeDef",
78
+ "ListNamespacesRequestTypeDef",
77
79
  "ListNamespacesResponseTypeDef",
78
80
  "ListTableBucketsRequestPaginateTypeDef",
79
- "ListTableBucketsRequestRequestTypeDef",
81
+ "ListTableBucketsRequestTypeDef",
80
82
  "ListTableBucketsResponseTypeDef",
81
83
  "ListTablesRequestPaginateTypeDef",
82
- "ListTablesRequestRequestTypeDef",
84
+ "ListTablesRequestTypeDef",
83
85
  "ListTablesResponseTypeDef",
84
86
  "NamespaceSummaryTypeDef",
85
87
  "PaginatorConfigTypeDef",
86
- "PutTableBucketMaintenanceConfigurationRequestRequestTypeDef",
87
- "PutTableBucketPolicyRequestRequestTypeDef",
88
- "PutTableMaintenanceConfigurationRequestRequestTypeDef",
89
- "PutTablePolicyRequestRequestTypeDef",
90
- "RenameTableRequestRequestTypeDef",
88
+ "PutTableBucketMaintenanceConfigurationRequestTypeDef",
89
+ "PutTableBucketPolicyRequestTypeDef",
90
+ "PutTableMaintenanceConfigurationRequestTypeDef",
91
+ "PutTablePolicyRequestTypeDef",
92
+ "RenameTableRequestTypeDef",
91
93
  "ResponseMetadataTypeDef",
94
+ "SchemaFieldTypeDef",
92
95
  "TableBucketMaintenanceConfigurationValueTypeDef",
93
96
  "TableBucketMaintenanceSettingsTypeDef",
94
97
  "TableBucketSummaryTypeDef",
95
98
  "TableMaintenanceConfigurationValueTypeDef",
96
99
  "TableMaintenanceJobStatusValueTypeDef",
97
100
  "TableMaintenanceSettingsTypeDef",
101
+ "TableMetadataTypeDef",
98
102
  "TableSummaryTypeDef",
99
- "UpdateTableMetadataLocationRequestRequestTypeDef",
103
+ "UpdateTableMetadataLocationRequestTypeDef",
100
104
  "UpdateTableMetadataLocationResponseTypeDef",
101
105
  )
102
106
 
103
- class CreateNamespaceRequestRequestTypeDef(TypedDict):
107
+ class CreateNamespaceRequestTypeDef(TypedDict):
104
108
  tableBucketARN: str
105
109
  namespace: Sequence[str]
106
110
 
@@ -111,59 +115,49 @@ class ResponseMetadataTypeDef(TypedDict):
111
115
  RetryAttempts: int
112
116
  HostId: NotRequired[str]
113
117
 
114
- class CreateTableBucketRequestRequestTypeDef(TypedDict):
118
+ class CreateTableBucketRequestTypeDef(TypedDict):
115
119
  name: str
116
120
 
117
- CreateTableRequestRequestTypeDef = TypedDict(
118
- "CreateTableRequestRequestTypeDef",
119
- {
120
- "tableBucketARN": str,
121
- "namespace": str,
122
- "name": str,
123
- "format": Literal["ICEBERG"],
124
- },
125
- )
126
-
127
- class DeleteNamespaceRequestRequestTypeDef(TypedDict):
121
+ class DeleteNamespaceRequestTypeDef(TypedDict):
128
122
  tableBucketARN: str
129
123
  namespace: str
130
124
 
131
- class DeleteTableBucketPolicyRequestRequestTypeDef(TypedDict):
125
+ class DeleteTableBucketPolicyRequestTypeDef(TypedDict):
132
126
  tableBucketARN: str
133
127
 
134
- class DeleteTableBucketRequestRequestTypeDef(TypedDict):
128
+ class DeleteTableBucketRequestTypeDef(TypedDict):
135
129
  tableBucketARN: str
136
130
 
137
- class DeleteTablePolicyRequestRequestTypeDef(TypedDict):
131
+ class DeleteTablePolicyRequestTypeDef(TypedDict):
138
132
  tableBucketARN: str
139
133
  namespace: str
140
134
  name: str
141
135
 
142
- class DeleteTableRequestRequestTypeDef(TypedDict):
136
+ class DeleteTableRequestTypeDef(TypedDict):
143
137
  tableBucketARN: str
144
138
  namespace: str
145
139
  name: str
146
140
  versionToken: NotRequired[str]
147
141
 
148
- class GetNamespaceRequestRequestTypeDef(TypedDict):
142
+ class GetNamespaceRequestTypeDef(TypedDict):
149
143
  tableBucketARN: str
150
144
  namespace: str
151
145
 
152
- class GetTableBucketMaintenanceConfigurationRequestRequestTypeDef(TypedDict):
146
+ class GetTableBucketMaintenanceConfigurationRequestTypeDef(TypedDict):
153
147
  tableBucketARN: str
154
148
 
155
- class GetTableBucketPolicyRequestRequestTypeDef(TypedDict):
149
+ class GetTableBucketPolicyRequestTypeDef(TypedDict):
156
150
  tableBucketARN: str
157
151
 
158
- class GetTableBucketRequestRequestTypeDef(TypedDict):
152
+ class GetTableBucketRequestTypeDef(TypedDict):
159
153
  tableBucketARN: str
160
154
 
161
- class GetTableMaintenanceConfigurationRequestRequestTypeDef(TypedDict):
155
+ class GetTableMaintenanceConfigurationRequestTypeDef(TypedDict):
162
156
  tableBucketARN: str
163
157
  namespace: str
164
158
  name: str
165
159
 
166
- class GetTableMaintenanceJobStatusRequestRequestTypeDef(TypedDict):
160
+ class GetTableMaintenanceJobStatusRequestTypeDef(TypedDict):
167
161
  tableBucketARN: str
168
162
  namespace: str
169
163
  name: str
@@ -173,17 +167,17 @@ class TableMaintenanceJobStatusValueTypeDef(TypedDict):
173
167
  lastRunTimestamp: NotRequired[datetime]
174
168
  failureMessage: NotRequired[str]
175
169
 
176
- class GetTableMetadataLocationRequestRequestTypeDef(TypedDict):
170
+ class GetTableMetadataLocationRequestTypeDef(TypedDict):
177
171
  tableBucketARN: str
178
172
  namespace: str
179
173
  name: str
180
174
 
181
- class GetTablePolicyRequestRequestTypeDef(TypedDict):
175
+ class GetTablePolicyRequestTypeDef(TypedDict):
182
176
  tableBucketARN: str
183
177
  namespace: str
184
178
  name: str
185
179
 
186
- class GetTableRequestRequestTypeDef(TypedDict):
180
+ class GetTableRequestTypeDef(TypedDict):
187
181
  tableBucketARN: str
188
182
  namespace: str
189
183
  name: str
@@ -191,6 +185,15 @@ class GetTableRequestRequestTypeDef(TypedDict):
191
185
  class IcebergCompactionSettingsTypeDef(TypedDict):
192
186
  targetFileSizeMB: NotRequired[int]
193
187
 
188
+ SchemaFieldTypeDef = TypedDict(
189
+ "SchemaFieldTypeDef",
190
+ {
191
+ "name": str,
192
+ "type": str,
193
+ "required": NotRequired[bool],
194
+ },
195
+ )
196
+
194
197
  class IcebergSnapshotManagementSettingsTypeDef(TypedDict):
195
198
  minSnapshotsToKeep: NotRequired[int]
196
199
  maxSnapshotAgeHours: NotRequired[int]
@@ -204,7 +207,7 @@ class PaginatorConfigTypeDef(TypedDict):
204
207
  PageSize: NotRequired[int]
205
208
  StartingToken: NotRequired[str]
206
209
 
207
- class ListNamespacesRequestRequestTypeDef(TypedDict):
210
+ class ListNamespacesRequestTypeDef(TypedDict):
208
211
  tableBucketARN: str
209
212
  prefix: NotRequired[str]
210
213
  continuationToken: NotRequired[str]
@@ -216,7 +219,7 @@ class NamespaceSummaryTypeDef(TypedDict):
216
219
  createdBy: str
217
220
  ownerAccountId: str
218
221
 
219
- class ListTableBucketsRequestRequestTypeDef(TypedDict):
222
+ class ListTableBucketsRequestTypeDef(TypedDict):
220
223
  prefix: NotRequired[str]
221
224
  continuationToken: NotRequired[str]
222
225
  maxBuckets: NotRequired[int]
@@ -227,7 +230,7 @@ class TableBucketSummaryTypeDef(TypedDict):
227
230
  ownerAccountId: str
228
231
  createdAt: datetime
229
232
 
230
- class ListTablesRequestRequestTypeDef(TypedDict):
233
+ class ListTablesRequestTypeDef(TypedDict):
231
234
  tableBucketARN: str
232
235
  namespace: NotRequired[str]
233
236
  prefix: NotRequired[str]
@@ -246,17 +249,17 @@ TableSummaryTypeDef = TypedDict(
246
249
  },
247
250
  )
248
251
 
249
- class PutTableBucketPolicyRequestRequestTypeDef(TypedDict):
252
+ class PutTableBucketPolicyRequestTypeDef(TypedDict):
250
253
  tableBucketARN: str
251
254
  resourcePolicy: str
252
255
 
253
- class PutTablePolicyRequestRequestTypeDef(TypedDict):
256
+ class PutTablePolicyRequestTypeDef(TypedDict):
254
257
  tableBucketARN: str
255
258
  namespace: str
256
259
  name: str
257
260
  resourcePolicy: str
258
261
 
259
- class RenameTableRequestRequestTypeDef(TypedDict):
262
+ class RenameTableRequestTypeDef(TypedDict):
260
263
  tableBucketARN: str
261
264
  namespace: str
262
265
  name: str
@@ -264,7 +267,7 @@ class RenameTableRequestRequestTypeDef(TypedDict):
264
267
  newName: NotRequired[str]
265
268
  versionToken: NotRequired[str]
266
269
 
267
- class UpdateTableMetadataLocationRequestRequestTypeDef(TypedDict):
270
+ class UpdateTableMetadataLocationRequestTypeDef(TypedDict):
268
271
  tableBucketARN: str
269
272
  namespace: str
270
273
  name: str
@@ -350,6 +353,9 @@ class GetTableMaintenanceJobStatusResponseTypeDef(TypedDict):
350
353
  status: Dict[TableMaintenanceJobTypeType, TableMaintenanceJobStatusValueTypeDef]
351
354
  ResponseMetadata: ResponseMetadataTypeDef
352
355
 
356
+ class IcebergSchemaTypeDef(TypedDict):
357
+ fields: Sequence[SchemaFieldTypeDef]
358
+
353
359
  class TableMaintenanceSettingsTypeDef(TypedDict):
354
360
  icebergCompaction: NotRequired[IcebergCompactionSettingsTypeDef]
355
361
  icebergSnapshotManagement: NotRequired[IcebergSnapshotManagementSettingsTypeDef]
@@ -387,6 +393,9 @@ class ListTablesResponseTypeDef(TypedDict):
387
393
  continuationToken: str
388
394
  ResponseMetadata: ResponseMetadataTypeDef
389
395
 
396
+ class IcebergMetadataTypeDef(TypedDict):
397
+ schema: IcebergSchemaTypeDef
398
+
390
399
  class TableMaintenanceConfigurationValueTypeDef(TypedDict):
391
400
  status: NotRequired[MaintenanceStatusType]
392
401
  settings: NotRequired[TableMaintenanceSettingsTypeDef]
@@ -395,13 +404,16 @@ class TableBucketMaintenanceConfigurationValueTypeDef(TypedDict):
395
404
  status: NotRequired[MaintenanceStatusType]
396
405
  settings: NotRequired[TableBucketMaintenanceSettingsTypeDef]
397
406
 
407
+ class TableMetadataTypeDef(TypedDict):
408
+ iceberg: NotRequired[IcebergMetadataTypeDef]
409
+
398
410
  class GetTableMaintenanceConfigurationResponseTypeDef(TypedDict):
399
411
  tableARN: str
400
412
  configuration: Dict[TableMaintenanceTypeType, TableMaintenanceConfigurationValueTypeDef]
401
413
  ResponseMetadata: ResponseMetadataTypeDef
402
414
 
403
- PutTableMaintenanceConfigurationRequestRequestTypeDef = TypedDict(
404
- "PutTableMaintenanceConfigurationRequestRequestTypeDef",
415
+ PutTableMaintenanceConfigurationRequestTypeDef = TypedDict(
416
+ "PutTableMaintenanceConfigurationRequestTypeDef",
405
417
  {
406
418
  "tableBucketARN": str,
407
419
  "namespace": str,
@@ -418,11 +430,21 @@ class GetTableBucketMaintenanceConfigurationResponseTypeDef(TypedDict):
418
430
  ]
419
431
  ResponseMetadata: ResponseMetadataTypeDef
420
432
 
421
- PutTableBucketMaintenanceConfigurationRequestRequestTypeDef = TypedDict(
422
- "PutTableBucketMaintenanceConfigurationRequestRequestTypeDef",
433
+ PutTableBucketMaintenanceConfigurationRequestTypeDef = TypedDict(
434
+ "PutTableBucketMaintenanceConfigurationRequestTypeDef",
423
435
  {
424
436
  "tableBucketARN": str,
425
437
  "type": Literal["icebergUnreferencedFileRemoval"],
426
438
  "value": TableBucketMaintenanceConfigurationValueTypeDef,
427
439
  },
428
440
  )
441
+ CreateTableRequestTypeDef = TypedDict(
442
+ "CreateTableRequestTypeDef",
443
+ {
444
+ "tableBucketARN": str,
445
+ "namespace": str,
446
+ "name": str,
447
+ "format": Literal["ICEBERG"],
448
+ "metadata": NotRequired[TableMetadataTypeDef],
449
+ },
450
+ )
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.36.0"
7
+ __version__ = "1.36.10"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mypy-boto3-s3tables
3
- Version: 1.36.0
4
- Summary: Type annotations for boto3 S3Tables 1.36.0 service generated with mypy-boto3-builder 8.8.0
3
+ Version: 1.36.10
4
+ Summary: Type annotations for boto3 S3Tables 1.36.10 service generated with mypy-boto3-builder 8.9.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
@@ -55,7 +55,7 @@ Dynamic: summary
55
55
 
56
56
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
57
57
 
58
- Type annotations for [boto3 S3Tables 1.36.0](https://pypi.org/project/boto3/)
58
+ Type annotations for [boto3 S3Tables 1.36.10](https://pypi.org/project/boto3/)
59
59
  compatible with [VSCode](https://code.visualstudio.com/),
60
60
  [PyCharm](https://www.jetbrains.com/pycharm/),
61
61
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -64,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
64
64
  [pyright](https://github.com/microsoft/pyright) and other tools.
65
65
 
66
66
  Generated with
67
- [mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
67
+ [mypy-boto3-builder 8.9.0](https://github.com/youtype/mypy_boto3_builder).
68
68
 
69
69
  More information can be found on
70
70
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -117,7 +117,7 @@ You can generate type annotations for `boto3` package locally with
117
117
  isolation.
118
118
 
119
119
  1. Run mypy-boto3-builder in your package root directory:
120
- `uvx --with 'boto3==1.36.0' mypy_boto3_builder`
120
+ `uvx --with 'boto3==1.36.10' mypy_boto3_builder`
121
121
  2. Select `boto3-stubs` AWS SDK.
122
122
  3. Add `S3Tables` service.
123
123
  4. Use provided commands to install generated packages.
@@ -393,10 +393,10 @@ Full list of `S3Tables` TypeDefs can be found in
393
393
  [docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/type_defs/).
394
394
 
395
395
  ```python
396
- from mypy_boto3_s3tables.type_defs import CreateNamespaceRequestRequestTypeDef
396
+ from mypy_boto3_s3tables.type_defs import CreateNamespaceRequestTypeDef
397
397
 
398
398
 
399
- def get_value() -> CreateNamespaceRequestRequestTypeDef:
399
+ def get_value() -> CreateNamespaceRequestTypeDef:
400
400
  return {...}
401
401
  ```
402
402
 
@@ -451,7 +451,8 @@ Builder changelog can be found in
451
451
  ## Versioning
452
452
 
453
453
  `mypy-boto3-s3tables` version is the same as related `boto3` version and
454
- follows [PEP 440](https://www.python.org/dev/peps/pep-0440/) format.
454
+ follows
455
+ [Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
455
456
 
456
457
  <a id="thank-you"></a>
457
458
 
@@ -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=ANdMXnU7budhjILTzxBD0qZ6hnAAkyGEKy5TWBVcJNw,987
4
+ mypy_boto3_s3tables/client.py,sha256=zCiEQH2sW107da3d4sP4_7dY1I3BTOqTACrJwIpvHEU,19634
5
+ mypy_boto3_s3tables/client.pyi,sha256=FervV0-XGiQxseqygN_AIc4OF5YDEK-v1mtIokLca48,19631
6
+ mypy_boto3_s3tables/literals.py,sha256=TfzVcV63Q8QnLaRq50mc3ik7vDA5dhi6mVp1mUXwRhg,9805
7
+ mypy_boto3_s3tables/literals.pyi,sha256=cv7sfau1NLIssuJs24kzIxAppDsjIdSKanp8K5ZuCa0,9803
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=K2Hkg4vKpuL3NVE7xl4cxbpuCW5dW5hK-ItVwf6ig_Y,13311
12
+ mypy_boto3_s3tables/type_defs.pyi,sha256=ZwZXAwCYmQPR4UWzCHAP2hCiDDn12pFUavnawSfuhQQ,13248
13
+ mypy_boto3_s3tables/version.py,sha256=hifCx9tJl9X9sExjFtRlXo_c-U02aECf159Gy7ayoIM,93
14
+ mypy_boto3_s3tables-1.36.10.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
+ mypy_boto3_s3tables-1.36.10.dist-info/METADATA,sha256=6TA3hEYHcV7u3TmhaN_Gz2rebr9Ec4F030G0j_CnGNI,15118
16
+ mypy_boto3_s3tables-1.36.10.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
17
+ mypy_boto3_s3tables-1.36.10.dist-info/top_level.txt,sha256=oAuE1209XLnkqMpCnFhvFNXfMFMSV_JABp2g57RZEdE,20
18
+ mypy_boto3_s3tables-1.36.10.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- mypy_boto3_s3tables/__init__.py,sha256=PcDhCE_Zzs4IEpxnYUjWZCwp7i3uw55io7xtX1s2n5A,995
2
- mypy_boto3_s3tables/__init__.pyi,sha256=GsyAL_s0OpTho6jY2o8nHd601mz-BGG0bfv9Ao-vCdE,994
3
- mypy_boto3_s3tables/__main__.py,sha256=slhhSoxCt0Ari7Zqk53nl6BtS2msA_arYBy26YX9Ppc,984
4
- mypy_boto3_s3tables/client.py,sha256=6ZYMPcXmSHnaYCWZyQqNGXFP-mIEJElXYdlgiCIPHJQ,20012
5
- mypy_boto3_s3tables/client.pyi,sha256=zS180Xrm7c0Poyf11U04hX8ngdP0qbhmUDt2SwGc2nw,20009
6
- mypy_boto3_s3tables/literals.py,sha256=2GerV3TD8dmB2mGNwG94TqaJhvIKvY9lp30qK3VrWdY,9805
7
- mypy_boto3_s3tables/literals.pyi,sha256=dU1ulenb1g07sfQH8JNRfqO--yzLvemNc4ykMDj84SI,9803
8
- mypy_boto3_s3tables/paginator.py,sha256=UnhqH4AqWbMLKFQGHWK72bfrmnxKuOfDy8K3yt1bsDU,4696
9
- mypy_boto3_s3tables/paginator.pyi,sha256=pwWOVf0B5HBhTiqhb9FSGC-SJtHvgVKtbIuo3JbXUgQ,4686
10
- mypy_boto3_s3tables/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_s3tables/type_defs.py,sha256=RzOE9v_eZIsHvQYl6ALSsbtS2quk-aYcKCWD8Tb8SK4,13141
12
- mypy_boto3_s3tables/type_defs.pyi,sha256=b-lMleQi8lsRNhQl5vyhvhbuG1WZidDrJORW4LWbUko,13081
13
- mypy_boto3_s3tables/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
14
- mypy_boto3_s3tables-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
- mypy_boto3_s3tables-1.36.0.dist-info/METADATA,sha256=TGtg9JQ0_Runav4wqwTsd8Z268TAkRC6G3T5dS9mC2s,15075
16
- mypy_boto3_s3tables-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
17
- mypy_boto3_s3tables-1.36.0.dist-info/top_level.txt,sha256=oAuE1209XLnkqMpCnFhvFNXfMFMSV_JABp2g57RZEdE,20
18
- mypy_boto3_s3tables-1.36.0.dist-info/RECORD,,