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

@@ -3,6 +3,8 @@ Type annotations for s3tables service Client.
3
3
 
4
4
  [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -12,8 +14,6 @@ Usage::
12
14
  session = Session()
13
15
  client: S3TablesClient = session.client("s3tables")
14
16
  ```
15
-
16
- Copyright 2025 Vlad Emelianov
17
17
  """
18
18
 
19
19
  from __future__ import annotations
@@ -27,48 +27,48 @@ from botocore.exceptions import ClientError as BotocoreClientError
27
27
 
28
28
  from .paginator import ListNamespacesPaginator, ListTableBucketsPaginator, ListTablesPaginator
29
29
  from .type_defs import (
30
- CreateNamespaceRequestRequestTypeDef,
30
+ CreateNamespaceRequestTypeDef,
31
31
  CreateNamespaceResponseTypeDef,
32
- CreateTableBucketRequestRequestTypeDef,
32
+ CreateTableBucketRequestTypeDef,
33
33
  CreateTableBucketResponseTypeDef,
34
- CreateTableRequestRequestTypeDef,
34
+ CreateTableRequestTypeDef,
35
35
  CreateTableResponseTypeDef,
36
- DeleteNamespaceRequestRequestTypeDef,
37
- DeleteTableBucketPolicyRequestRequestTypeDef,
38
- DeleteTableBucketRequestRequestTypeDef,
39
- DeleteTablePolicyRequestRequestTypeDef,
40
- DeleteTableRequestRequestTypeDef,
36
+ DeleteNamespaceRequestTypeDef,
37
+ DeleteTableBucketPolicyRequestTypeDef,
38
+ DeleteTableBucketRequestTypeDef,
39
+ DeleteTablePolicyRequestTypeDef,
40
+ DeleteTableRequestTypeDef,
41
41
  EmptyResponseMetadataTypeDef,
42
- GetNamespaceRequestRequestTypeDef,
42
+ GetNamespaceRequestTypeDef,
43
43
  GetNamespaceResponseTypeDef,
44
- GetTableBucketMaintenanceConfigurationRequestRequestTypeDef,
44
+ GetTableBucketMaintenanceConfigurationRequestTypeDef,
45
45
  GetTableBucketMaintenanceConfigurationResponseTypeDef,
46
- GetTableBucketPolicyRequestRequestTypeDef,
46
+ GetTableBucketPolicyRequestTypeDef,
47
47
  GetTableBucketPolicyResponseTypeDef,
48
- GetTableBucketRequestRequestTypeDef,
48
+ GetTableBucketRequestTypeDef,
49
49
  GetTableBucketResponseTypeDef,
50
- GetTableMaintenanceConfigurationRequestRequestTypeDef,
50
+ GetTableMaintenanceConfigurationRequestTypeDef,
51
51
  GetTableMaintenanceConfigurationResponseTypeDef,
52
- GetTableMaintenanceJobStatusRequestRequestTypeDef,
52
+ GetTableMaintenanceJobStatusRequestTypeDef,
53
53
  GetTableMaintenanceJobStatusResponseTypeDef,
54
- GetTableMetadataLocationRequestRequestTypeDef,
54
+ GetTableMetadataLocationRequestTypeDef,
55
55
  GetTableMetadataLocationResponseTypeDef,
56
- GetTablePolicyRequestRequestTypeDef,
56
+ GetTablePolicyRequestTypeDef,
57
57
  GetTablePolicyResponseTypeDef,
58
- GetTableRequestRequestTypeDef,
58
+ GetTableRequestTypeDef,
59
59
  GetTableResponseTypeDef,
60
- ListNamespacesRequestRequestTypeDef,
60
+ ListNamespacesRequestTypeDef,
61
61
  ListNamespacesResponseTypeDef,
62
- ListTableBucketsRequestRequestTypeDef,
62
+ ListTableBucketsRequestTypeDef,
63
63
  ListTableBucketsResponseTypeDef,
64
- ListTablesRequestRequestTypeDef,
64
+ ListTablesRequestTypeDef,
65
65
  ListTablesResponseTypeDef,
66
- PutTableBucketMaintenanceConfigurationRequestRequestTypeDef,
67
- PutTableBucketPolicyRequestRequestTypeDef,
68
- PutTableMaintenanceConfigurationRequestRequestTypeDef,
69
- PutTablePolicyRequestRequestTypeDef,
70
- RenameTableRequestRequestTypeDef,
71
- UpdateTableMetadataLocationRequestRequestTypeDef,
66
+ PutTableBucketMaintenanceConfigurationRequestTypeDef,
67
+ PutTableBucketPolicyRequestTypeDef,
68
+ PutTableMaintenanceConfigurationRequestTypeDef,
69
+ PutTablePolicyRequestTypeDef,
70
+ RenameTableRequestTypeDef,
71
+ UpdateTableMetadataLocationRequestTypeDef,
72
72
  UpdateTableMetadataLocationResponseTypeDef,
73
73
  )
74
74
 
@@ -130,7 +130,7 @@ class S3TablesClient(BaseClient):
130
130
  """
131
131
 
132
132
  def create_namespace(
133
- self, **kwargs: Unpack[CreateNamespaceRequestRequestTypeDef]
133
+ self, **kwargs: Unpack[CreateNamespaceRequestTypeDef]
134
134
  ) -> CreateNamespaceResponseTypeDef:
135
135
  """
136
136
  Creates a namespace.
@@ -140,7 +140,7 @@ class S3TablesClient(BaseClient):
140
140
  """
141
141
 
142
142
  def create_table(
143
- self, **kwargs: Unpack[CreateTableRequestRequestTypeDef]
143
+ self, **kwargs: Unpack[CreateTableRequestTypeDef]
144
144
  ) -> CreateTableResponseTypeDef:
145
145
  """
146
146
  Creates a new table associated with the given namespace in a table bucket.
@@ -150,7 +150,7 @@ class S3TablesClient(BaseClient):
150
150
  """
151
151
 
152
152
  def create_table_bucket(
153
- self, **kwargs: Unpack[CreateTableBucketRequestRequestTypeDef]
153
+ self, **kwargs: Unpack[CreateTableBucketRequestTypeDef]
154
154
  ) -> CreateTableBucketResponseTypeDef:
155
155
  """
156
156
  Creates a table bucket.
@@ -160,7 +160,7 @@ class S3TablesClient(BaseClient):
160
160
  """
161
161
 
162
162
  def delete_namespace(
163
- self, **kwargs: Unpack[DeleteNamespaceRequestRequestTypeDef]
163
+ self, **kwargs: Unpack[DeleteNamespaceRequestTypeDef]
164
164
  ) -> EmptyResponseMetadataTypeDef:
165
165
  """
166
166
  Deletes a namespace.
@@ -170,7 +170,7 @@ class S3TablesClient(BaseClient):
170
170
  """
171
171
 
172
172
  def delete_table(
173
- self, **kwargs: Unpack[DeleteTableRequestRequestTypeDef]
173
+ self, **kwargs: Unpack[DeleteTableRequestTypeDef]
174
174
  ) -> EmptyResponseMetadataTypeDef:
175
175
  """
176
176
  Deletes a table.
@@ -180,7 +180,7 @@ class S3TablesClient(BaseClient):
180
180
  """
181
181
 
182
182
  def delete_table_bucket(
183
- self, **kwargs: Unpack[DeleteTableBucketRequestRequestTypeDef]
183
+ self, **kwargs: Unpack[DeleteTableBucketRequestTypeDef]
184
184
  ) -> EmptyResponseMetadataTypeDef:
185
185
  """
186
186
  Deletes a table bucket.
@@ -190,7 +190,7 @@ class S3TablesClient(BaseClient):
190
190
  """
191
191
 
192
192
  def delete_table_bucket_policy(
193
- self, **kwargs: Unpack[DeleteTableBucketPolicyRequestRequestTypeDef]
193
+ self, **kwargs: Unpack[DeleteTableBucketPolicyRequestTypeDef]
194
194
  ) -> EmptyResponseMetadataTypeDef:
195
195
  """
196
196
  Deletes a table bucket policy.
@@ -200,7 +200,7 @@ class S3TablesClient(BaseClient):
200
200
  """
201
201
 
202
202
  def delete_table_policy(
203
- self, **kwargs: Unpack[DeleteTablePolicyRequestRequestTypeDef]
203
+ self, **kwargs: Unpack[DeleteTablePolicyRequestTypeDef]
204
204
  ) -> EmptyResponseMetadataTypeDef:
205
205
  """
206
206
  Deletes a table policy.
@@ -210,7 +210,7 @@ class S3TablesClient(BaseClient):
210
210
  """
211
211
 
212
212
  def get_namespace(
213
- self, **kwargs: Unpack[GetNamespaceRequestRequestTypeDef]
213
+ self, **kwargs: Unpack[GetNamespaceRequestTypeDef]
214
214
  ) -> GetNamespaceResponseTypeDef:
215
215
  """
216
216
  Gets details about a namespace.
@@ -219,7 +219,7 @@ class S3TablesClient(BaseClient):
219
219
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_namespace)
220
220
  """
221
221
 
222
- def get_table(self, **kwargs: Unpack[GetTableRequestRequestTypeDef]) -> GetTableResponseTypeDef:
222
+ def get_table(self, **kwargs: Unpack[GetTableRequestTypeDef]) -> GetTableResponseTypeDef:
223
223
  """
224
224
  Gets details about a table.
225
225
 
@@ -228,7 +228,7 @@ class S3TablesClient(BaseClient):
228
228
  """
229
229
 
230
230
  def get_table_bucket(
231
- self, **kwargs: Unpack[GetTableBucketRequestRequestTypeDef]
231
+ self, **kwargs: Unpack[GetTableBucketRequestTypeDef]
232
232
  ) -> GetTableBucketResponseTypeDef:
233
233
  """
234
234
  Gets details on a table bucket.
@@ -238,7 +238,7 @@ class S3TablesClient(BaseClient):
238
238
  """
239
239
 
240
240
  def get_table_bucket_maintenance_configuration(
241
- self, **kwargs: Unpack[GetTableBucketMaintenanceConfigurationRequestRequestTypeDef]
241
+ self, **kwargs: Unpack[GetTableBucketMaintenanceConfigurationRequestTypeDef]
242
242
  ) -> GetTableBucketMaintenanceConfigurationResponseTypeDef:
243
243
  """
244
244
  Gets details about a maintenance configuration for a given table bucket.
@@ -248,7 +248,7 @@ class S3TablesClient(BaseClient):
248
248
  """
249
249
 
250
250
  def get_table_bucket_policy(
251
- self, **kwargs: Unpack[GetTableBucketPolicyRequestRequestTypeDef]
251
+ self, **kwargs: Unpack[GetTableBucketPolicyRequestTypeDef]
252
252
  ) -> GetTableBucketPolicyResponseTypeDef:
253
253
  """
254
254
  Gets details about a table bucket policy.
@@ -258,7 +258,7 @@ class S3TablesClient(BaseClient):
258
258
  """
259
259
 
260
260
  def get_table_maintenance_configuration(
261
- self, **kwargs: Unpack[GetTableMaintenanceConfigurationRequestRequestTypeDef]
261
+ self, **kwargs: Unpack[GetTableMaintenanceConfigurationRequestTypeDef]
262
262
  ) -> GetTableMaintenanceConfigurationResponseTypeDef:
263
263
  """
264
264
  Gets details about the maintenance configuration of a table.
@@ -268,7 +268,7 @@ class S3TablesClient(BaseClient):
268
268
  """
269
269
 
270
270
  def get_table_maintenance_job_status(
271
- self, **kwargs: Unpack[GetTableMaintenanceJobStatusRequestRequestTypeDef]
271
+ self, **kwargs: Unpack[GetTableMaintenanceJobStatusRequestTypeDef]
272
272
  ) -> GetTableMaintenanceJobStatusResponseTypeDef:
273
273
  """
274
274
  Gets the status of a maintenance job for a table.
@@ -278,7 +278,7 @@ class S3TablesClient(BaseClient):
278
278
  """
279
279
 
280
280
  def get_table_metadata_location(
281
- self, **kwargs: Unpack[GetTableMetadataLocationRequestRequestTypeDef]
281
+ self, **kwargs: Unpack[GetTableMetadataLocationRequestTypeDef]
282
282
  ) -> GetTableMetadataLocationResponseTypeDef:
283
283
  """
284
284
  Gets the location of the table metadata.
@@ -288,7 +288,7 @@ class S3TablesClient(BaseClient):
288
288
  """
289
289
 
290
290
  def get_table_policy(
291
- self, **kwargs: Unpack[GetTablePolicyRequestRequestTypeDef]
291
+ self, **kwargs: Unpack[GetTablePolicyRequestTypeDef]
292
292
  ) -> GetTablePolicyResponseTypeDef:
293
293
  """
294
294
  Gets details about a table policy.
@@ -298,7 +298,7 @@ class S3TablesClient(BaseClient):
298
298
  """
299
299
 
300
300
  def list_namespaces(
301
- self, **kwargs: Unpack[ListNamespacesRequestRequestTypeDef]
301
+ self, **kwargs: Unpack[ListNamespacesRequestTypeDef]
302
302
  ) -> ListNamespacesResponseTypeDef:
303
303
  """
304
304
  Lists the namespaces within a table bucket.
@@ -308,7 +308,7 @@ class S3TablesClient(BaseClient):
308
308
  """
309
309
 
310
310
  def list_table_buckets(
311
- self, **kwargs: Unpack[ListTableBucketsRequestRequestTypeDef]
311
+ self, **kwargs: Unpack[ListTableBucketsRequestTypeDef]
312
312
  ) -> ListTableBucketsResponseTypeDef:
313
313
  """
314
314
  Lists table buckets for your account.
@@ -317,9 +317,7 @@ class S3TablesClient(BaseClient):
317
317
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#list_table_buckets)
318
318
  """
319
319
 
320
- def list_tables(
321
- self, **kwargs: Unpack[ListTablesRequestRequestTypeDef]
322
- ) -> ListTablesResponseTypeDef:
320
+ def list_tables(self, **kwargs: Unpack[ListTablesRequestTypeDef]) -> ListTablesResponseTypeDef:
323
321
  """
324
322
  List tables in the given table bucket.
325
323
 
@@ -328,7 +326,7 @@ class S3TablesClient(BaseClient):
328
326
  """
329
327
 
330
328
  def put_table_bucket_maintenance_configuration(
331
- self, **kwargs: Unpack[PutTableBucketMaintenanceConfigurationRequestRequestTypeDef]
329
+ self, **kwargs: Unpack[PutTableBucketMaintenanceConfigurationRequestTypeDef]
332
330
  ) -> EmptyResponseMetadataTypeDef:
333
331
  """
334
332
  Creates a new maintenance configuration or replaces an existing maintenance
@@ -339,7 +337,7 @@ class S3TablesClient(BaseClient):
339
337
  """
340
338
 
341
339
  def put_table_bucket_policy(
342
- self, **kwargs: Unpack[PutTableBucketPolicyRequestRequestTypeDef]
340
+ self, **kwargs: Unpack[PutTableBucketPolicyRequestTypeDef]
343
341
  ) -> EmptyResponseMetadataTypeDef:
344
342
  """
345
343
  Creates a new maintenance configuration or replaces an existing table bucket
@@ -350,7 +348,7 @@ class S3TablesClient(BaseClient):
350
348
  """
351
349
 
352
350
  def put_table_maintenance_configuration(
353
- self, **kwargs: Unpack[PutTableMaintenanceConfigurationRequestRequestTypeDef]
351
+ self, **kwargs: Unpack[PutTableMaintenanceConfigurationRequestTypeDef]
354
352
  ) -> EmptyResponseMetadataTypeDef:
355
353
  """
356
354
  Creates a new maintenance configuration or replaces an existing maintenance
@@ -361,7 +359,7 @@ class S3TablesClient(BaseClient):
361
359
  """
362
360
 
363
361
  def put_table_policy(
364
- self, **kwargs: Unpack[PutTablePolicyRequestRequestTypeDef]
362
+ self, **kwargs: Unpack[PutTablePolicyRequestTypeDef]
365
363
  ) -> EmptyResponseMetadataTypeDef:
366
364
  """
367
365
  Creates a new maintenance configuration or replaces an existing table policy
@@ -372,7 +370,7 @@ class S3TablesClient(BaseClient):
372
370
  """
373
371
 
374
372
  def rename_table(
375
- self, **kwargs: Unpack[RenameTableRequestRequestTypeDef]
373
+ self, **kwargs: Unpack[RenameTableRequestTypeDef]
376
374
  ) -> EmptyResponseMetadataTypeDef:
377
375
  """
378
376
  Renames a table or a namespace.
@@ -382,7 +380,7 @@ class S3TablesClient(BaseClient):
382
380
  """
383
381
 
384
382
  def update_table_metadata_location(
385
- self, **kwargs: Unpack[UpdateTableMetadataLocationRequestRequestTypeDef]
383
+ self, **kwargs: Unpack[UpdateTableMetadataLocationRequestTypeDef]
386
384
  ) -> UpdateTableMetadataLocationResponseTypeDef:
387
385
  """
388
386
  Updates the metadata location for a table.
@@ -3,6 +3,8 @@ Type annotations for s3tables service literal definitions.
3
3
 
4
4
  [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/literals/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -10,8 +12,6 @@ Usage::
10
12
 
11
13
  data: JobStatusType = "Disabled"
12
14
  ```
13
-
14
- Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -186,7 +186,6 @@ ServiceName = Literal[
186
186
  "efs",
187
187
  "eks",
188
188
  "eks-auth",
189
- "elastic-inference",
190
189
  "elasticache",
191
190
  "elasticbeanstalk",
192
191
  "elastictranscoder",
@@ -3,6 +3,8 @@ Type annotations for s3tables service literal definitions.
3
3
 
4
4
  [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/literals/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -10,8 +12,6 @@ Usage::
10
12
 
11
13
  data: JobStatusType = "Disabled"
12
14
  ```
13
-
14
- Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -184,7 +184,6 @@ ServiceName = Literal[
184
184
  "efs",
185
185
  "eks",
186
186
  "eks-auth",
187
- "elastic-inference",
188
187
  "elasticache",
189
188
  "elasticbeanstalk",
190
189
  "elastictranscoder",
@@ -3,6 +3,8 @@ Type annotations for s3tables service client paginators.
3
3
 
4
4
  [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -22,8 +24,6 @@ Usage::
22
24
  list_table_buckets_paginator: ListTableBucketsPaginator = client.get_paginator("list_table_buckets")
23
25
  list_tables_paginator: ListTablesPaginator = client.get_paginator("list_tables")
24
26
  ```
25
-
26
- Copyright 2025 Vlad Emelianov
27
27
  """
28
28
 
29
29
  from __future__ import annotations
@@ -3,6 +3,8 @@ Type annotations for s3tables service client paginators.
3
3
 
4
4
  [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -22,8 +24,6 @@ Usage::
22
24
  list_table_buckets_paginator: ListTableBucketsPaginator = client.get_paginator("list_table_buckets")
23
25
  list_tables_paginator: ListTablesPaginator = client.get_paginator("list_tables")
24
26
  ```
25
-
26
- Copyright 2025 Vlad Emelianov
27
27
  """
28
28
 
29
29
  from __future__ import annotations