types-boto3-kinesis 1.37.0__py3-none-any.whl → 1.38.5__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.
- types_boto3_kinesis/__main__.py +4 -4
- types_boto3_kinesis/client.py +34 -0
- types_boto3_kinesis/client.pyi +34 -0
- types_boto3_kinesis/literals.py +3 -0
- types_boto3_kinesis/literals.pyi +3 -0
- types_boto3_kinesis/type_defs.py +29 -5
- types_boto3_kinesis/type_defs.pyi +24 -4
- types_boto3_kinesis/version.py +1 -1
- {types_boto3_kinesis-1.37.0.dist-info → types_boto3_kinesis-1.38.5.dist-info}/METADATA +7 -6
- types_boto3_kinesis-1.38.5.dist-info/RECORD +20 -0
- {types_boto3_kinesis-1.37.0.dist-info → types_boto3_kinesis-1.38.5.dist-info}/WHEEL +1 -1
- types_boto3_kinesis-1.37.0.dist-info/RECORD +0 -20
- {types_boto3_kinesis-1.37.0.dist-info → types_boto3_kinesis-1.38.5.dist-info/licenses}/LICENSE +0 -0
- {types_boto3_kinesis-1.37.0.dist-info → types_boto3_kinesis-1.38.5.dist-info}/top_level.txt +0 -0
types_boto3_kinesis/__main__.py
CHANGED
|
@@ -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 Kinesis 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 Kinesis 1.38.5\n"
|
|
16
|
+
"Version: 1.38.5\n"
|
|
17
|
+
"Builder version: 8.10.1\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_kinesis//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis.html#kinesis\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.
|
|
29
|
+
sys.stdout.write("1.38.5\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_kinesis/client.py
CHANGED
|
@@ -62,6 +62,8 @@ from .type_defs import (
|
|
|
62
62
|
ListStreamConsumersOutputTypeDef,
|
|
63
63
|
ListStreamsInputTypeDef,
|
|
64
64
|
ListStreamsOutputTypeDef,
|
|
65
|
+
ListTagsForResourceInputTypeDef,
|
|
66
|
+
ListTagsForResourceOutputTypeDef,
|
|
65
67
|
ListTagsForStreamInputTypeDef,
|
|
66
68
|
ListTagsForStreamOutputTypeDef,
|
|
67
69
|
MergeShardsInputTypeDef,
|
|
@@ -78,6 +80,8 @@ from .type_defs import (
|
|
|
78
80
|
StopStreamEncryptionInputTypeDef,
|
|
79
81
|
SubscribeToShardInputTypeDef,
|
|
80
82
|
SubscribeToShardOutputTypeDef,
|
|
83
|
+
TagResourceInputTypeDef,
|
|
84
|
+
UntagResourceInputTypeDef,
|
|
81
85
|
UpdateShardCountInputTypeDef,
|
|
82
86
|
UpdateShardCountOutputTypeDef,
|
|
83
87
|
UpdateStreamModeInputTypeDef,
|
|
@@ -340,6 +344,16 @@ class KinesisClient(BaseClient):
|
|
|
340
344
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#list_streams)
|
|
341
345
|
"""
|
|
342
346
|
|
|
347
|
+
def list_tags_for_resource(
|
|
348
|
+
self, **kwargs: Unpack[ListTagsForResourceInputTypeDef]
|
|
349
|
+
) -> ListTagsForResourceOutputTypeDef:
|
|
350
|
+
"""
|
|
351
|
+
List all tags added to the specified Kinesis resource.
|
|
352
|
+
|
|
353
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/list_tags_for_resource.html)
|
|
354
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#list_tags_for_resource)
|
|
355
|
+
"""
|
|
356
|
+
|
|
343
357
|
def list_tags_for_stream(
|
|
344
358
|
self, **kwargs: Unpack[ListTagsForStreamInputTypeDef]
|
|
345
359
|
) -> ListTagsForStreamOutputTypeDef:
|
|
@@ -450,6 +464,26 @@ class KinesisClient(BaseClient):
|
|
|
450
464
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#subscribe_to_shard)
|
|
451
465
|
"""
|
|
452
466
|
|
|
467
|
+
def tag_resource(
|
|
468
|
+
self, **kwargs: Unpack[TagResourceInputTypeDef]
|
|
469
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
470
|
+
"""
|
|
471
|
+
Adds or updates tags for the specified Kinesis resource.
|
|
472
|
+
|
|
473
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/tag_resource.html)
|
|
474
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#tag_resource)
|
|
475
|
+
"""
|
|
476
|
+
|
|
477
|
+
def untag_resource(
|
|
478
|
+
self, **kwargs: Unpack[UntagResourceInputTypeDef]
|
|
479
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
480
|
+
"""
|
|
481
|
+
Removes tags from the specified Kinesis resource.
|
|
482
|
+
|
|
483
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/untag_resource.html)
|
|
484
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#untag_resource)
|
|
485
|
+
"""
|
|
486
|
+
|
|
453
487
|
def update_shard_count(
|
|
454
488
|
self, **kwargs: Unpack[UpdateShardCountInputTypeDef]
|
|
455
489
|
) -> UpdateShardCountOutputTypeDef:
|
types_boto3_kinesis/client.pyi
CHANGED
|
@@ -62,6 +62,8 @@ from .type_defs import (
|
|
|
62
62
|
ListStreamConsumersOutputTypeDef,
|
|
63
63
|
ListStreamsInputTypeDef,
|
|
64
64
|
ListStreamsOutputTypeDef,
|
|
65
|
+
ListTagsForResourceInputTypeDef,
|
|
66
|
+
ListTagsForResourceOutputTypeDef,
|
|
65
67
|
ListTagsForStreamInputTypeDef,
|
|
66
68
|
ListTagsForStreamOutputTypeDef,
|
|
67
69
|
MergeShardsInputTypeDef,
|
|
@@ -78,6 +80,8 @@ from .type_defs import (
|
|
|
78
80
|
StopStreamEncryptionInputTypeDef,
|
|
79
81
|
SubscribeToShardInputTypeDef,
|
|
80
82
|
SubscribeToShardOutputTypeDef,
|
|
83
|
+
TagResourceInputTypeDef,
|
|
84
|
+
UntagResourceInputTypeDef,
|
|
81
85
|
UpdateShardCountInputTypeDef,
|
|
82
86
|
UpdateShardCountOutputTypeDef,
|
|
83
87
|
UpdateStreamModeInputTypeDef,
|
|
@@ -337,6 +341,16 @@ class KinesisClient(BaseClient):
|
|
|
337
341
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#list_streams)
|
|
338
342
|
"""
|
|
339
343
|
|
|
344
|
+
def list_tags_for_resource(
|
|
345
|
+
self, **kwargs: Unpack[ListTagsForResourceInputTypeDef]
|
|
346
|
+
) -> ListTagsForResourceOutputTypeDef:
|
|
347
|
+
"""
|
|
348
|
+
List all tags added to the specified Kinesis resource.
|
|
349
|
+
|
|
350
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/list_tags_for_resource.html)
|
|
351
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#list_tags_for_resource)
|
|
352
|
+
"""
|
|
353
|
+
|
|
340
354
|
def list_tags_for_stream(
|
|
341
355
|
self, **kwargs: Unpack[ListTagsForStreamInputTypeDef]
|
|
342
356
|
) -> ListTagsForStreamOutputTypeDef:
|
|
@@ -447,6 +461,26 @@ class KinesisClient(BaseClient):
|
|
|
447
461
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#subscribe_to_shard)
|
|
448
462
|
"""
|
|
449
463
|
|
|
464
|
+
def tag_resource(
|
|
465
|
+
self, **kwargs: Unpack[TagResourceInputTypeDef]
|
|
466
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
467
|
+
"""
|
|
468
|
+
Adds or updates tags for the specified Kinesis resource.
|
|
469
|
+
|
|
470
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/tag_resource.html)
|
|
471
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#tag_resource)
|
|
472
|
+
"""
|
|
473
|
+
|
|
474
|
+
def untag_resource(
|
|
475
|
+
self, **kwargs: Unpack[UntagResourceInputTypeDef]
|
|
476
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
477
|
+
"""
|
|
478
|
+
Removes tags from the specified Kinesis resource.
|
|
479
|
+
|
|
480
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/untag_resource.html)
|
|
481
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#untag_resource)
|
|
482
|
+
"""
|
|
483
|
+
|
|
450
484
|
def update_shard_count(
|
|
451
485
|
self, **kwargs: Unpack[UpdateShardCountInputTypeDef]
|
|
452
486
|
) -> UpdateShardCountOutputTypeDef:
|
types_boto3_kinesis/literals.py
CHANGED
|
@@ -235,6 +235,7 @@ ServiceName = Literal[
|
|
|
235
235
|
"freetier",
|
|
236
236
|
"fsx",
|
|
237
237
|
"gamelift",
|
|
238
|
+
"gameliftstreams",
|
|
238
239
|
"geo-maps",
|
|
239
240
|
"geo-places",
|
|
240
241
|
"geo-routes",
|
|
@@ -260,6 +261,7 @@ ServiceName = Literal[
|
|
|
260
261
|
"iot",
|
|
261
262
|
"iot-data",
|
|
262
263
|
"iot-jobs-data",
|
|
264
|
+
"iot-managed-integrations",
|
|
263
265
|
"iotanalytics",
|
|
264
266
|
"iotdeviceadvisor",
|
|
265
267
|
"iotevents",
|
|
@@ -443,6 +445,7 @@ ServiceName = Literal[
|
|
|
443
445
|
"sqs",
|
|
444
446
|
"ssm",
|
|
445
447
|
"ssm-contacts",
|
|
448
|
+
"ssm-guiconnect",
|
|
446
449
|
"ssm-incidents",
|
|
447
450
|
"ssm-quicksetup",
|
|
448
451
|
"ssm-sap",
|
types_boto3_kinesis/literals.pyi
CHANGED
|
@@ -233,6 +233,7 @@ ServiceName = Literal[
|
|
|
233
233
|
"freetier",
|
|
234
234
|
"fsx",
|
|
235
235
|
"gamelift",
|
|
236
|
+
"gameliftstreams",
|
|
236
237
|
"geo-maps",
|
|
237
238
|
"geo-places",
|
|
238
239
|
"geo-routes",
|
|
@@ -258,6 +259,7 @@ ServiceName = Literal[
|
|
|
258
259
|
"iot",
|
|
259
260
|
"iot-data",
|
|
260
261
|
"iot-jobs-data",
|
|
262
|
+
"iot-managed-integrations",
|
|
261
263
|
"iotanalytics",
|
|
262
264
|
"iotdeviceadvisor",
|
|
263
265
|
"iotevents",
|
|
@@ -441,6 +443,7 @@ ServiceName = Literal[
|
|
|
441
443
|
"sqs",
|
|
442
444
|
"ssm",
|
|
443
445
|
"ssm-contacts",
|
|
446
|
+
"ssm-guiconnect",
|
|
444
447
|
"ssm-incidents",
|
|
445
448
|
"ssm-quicksetup",
|
|
446
449
|
"ssm-sap",
|
types_boto3_kinesis/type_defs.py
CHANGED
|
@@ -95,6 +95,8 @@ __all__ = (
|
|
|
95
95
|
"ListStreamsInputPaginateTypeDef",
|
|
96
96
|
"ListStreamsInputTypeDef",
|
|
97
97
|
"ListStreamsOutputTypeDef",
|
|
98
|
+
"ListTagsForResourceInputTypeDef",
|
|
99
|
+
"ListTagsForResourceOutputTypeDef",
|
|
98
100
|
"ListTagsForStreamInputTypeDef",
|
|
99
101
|
"ListTagsForStreamOutputTypeDef",
|
|
100
102
|
"MergeShardsInputTypeDef",
|
|
@@ -128,8 +130,10 @@ __all__ = (
|
|
|
128
130
|
"SubscribeToShardEventTypeDef",
|
|
129
131
|
"SubscribeToShardInputTypeDef",
|
|
130
132
|
"SubscribeToShardOutputTypeDef",
|
|
133
|
+
"TagResourceInputTypeDef",
|
|
131
134
|
"TagTypeDef",
|
|
132
135
|
"TimestampTypeDef",
|
|
136
|
+
"UntagResourceInputTypeDef",
|
|
133
137
|
"UpdateShardCountInputTypeDef",
|
|
134
138
|
"UpdateShardCountOutputTypeDef",
|
|
135
139
|
"UpdateStreamModeInputTypeDef",
|
|
@@ -306,11 +310,8 @@ class ListStreamsInputTypeDef(TypedDict):
|
|
|
306
310
|
NextToken: NotRequired[str]
|
|
307
311
|
|
|
308
312
|
|
|
309
|
-
class
|
|
310
|
-
|
|
311
|
-
ExclusiveStartTagKey: NotRequired[str]
|
|
312
|
-
Limit: NotRequired[int]
|
|
313
|
-
StreamARN: NotRequired[str]
|
|
313
|
+
class ListTagsForResourceInputTypeDef(TypedDict):
|
|
314
|
+
ResourceARN: NotRequired[str]
|
|
314
315
|
|
|
315
316
|
|
|
316
317
|
class TagTypeDef(TypedDict):
|
|
@@ -318,6 +319,13 @@ class TagTypeDef(TypedDict):
|
|
|
318
319
|
Value: NotRequired[str]
|
|
319
320
|
|
|
320
321
|
|
|
322
|
+
class ListTagsForStreamInputTypeDef(TypedDict):
|
|
323
|
+
StreamName: NotRequired[str]
|
|
324
|
+
ExclusiveStartTagKey: NotRequired[str]
|
|
325
|
+
Limit: NotRequired[int]
|
|
326
|
+
StreamARN: NotRequired[str]
|
|
327
|
+
|
|
328
|
+
|
|
321
329
|
class MergeShardsInputTypeDef(TypedDict):
|
|
322
330
|
ShardToMerge: str
|
|
323
331
|
AdjacentShardToMerge: str
|
|
@@ -340,6 +348,7 @@ class PutResourcePolicyInputTypeDef(TypedDict):
|
|
|
340
348
|
class RegisterStreamConsumerInputTypeDef(TypedDict):
|
|
341
349
|
StreamARN: str
|
|
342
350
|
ConsumerName: str
|
|
351
|
+
Tags: NotRequired[Mapping[str, str]]
|
|
343
352
|
|
|
344
353
|
|
|
345
354
|
class RemoveTagsFromStreamInputTypeDef(TypedDict):
|
|
@@ -382,6 +391,16 @@ class StopStreamEncryptionInputTypeDef(TypedDict):
|
|
|
382
391
|
StreamARN: NotRequired[str]
|
|
383
392
|
|
|
384
393
|
|
|
394
|
+
class TagResourceInputTypeDef(TypedDict):
|
|
395
|
+
Tags: Mapping[str, str]
|
|
396
|
+
ResourceARN: NotRequired[str]
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
class UntagResourceInputTypeDef(TypedDict):
|
|
400
|
+
TagKeys: Sequence[str]
|
|
401
|
+
ResourceARN: NotRequired[str]
|
|
402
|
+
|
|
403
|
+
|
|
385
404
|
class UpdateShardCountInputTypeDef(TypedDict):
|
|
386
405
|
TargetShardCount: int
|
|
387
406
|
ScalingType: Literal["UNIFORM_SCALING"]
|
|
@@ -572,6 +591,11 @@ StartingPositionTypeDef = TypedDict(
|
|
|
572
591
|
)
|
|
573
592
|
|
|
574
593
|
|
|
594
|
+
class ListTagsForResourceOutputTypeDef(TypedDict):
|
|
595
|
+
Tags: List[TagTypeDef]
|
|
596
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
597
|
+
|
|
598
|
+
|
|
575
599
|
class ListTagsForStreamOutputTypeDef(TypedDict):
|
|
576
600
|
Tags: List[TagTypeDef]
|
|
577
601
|
HasMoreTags: bool
|
|
@@ -94,6 +94,8 @@ __all__ = (
|
|
|
94
94
|
"ListStreamsInputPaginateTypeDef",
|
|
95
95
|
"ListStreamsInputTypeDef",
|
|
96
96
|
"ListStreamsOutputTypeDef",
|
|
97
|
+
"ListTagsForResourceInputTypeDef",
|
|
98
|
+
"ListTagsForResourceOutputTypeDef",
|
|
97
99
|
"ListTagsForStreamInputTypeDef",
|
|
98
100
|
"ListTagsForStreamOutputTypeDef",
|
|
99
101
|
"MergeShardsInputTypeDef",
|
|
@@ -127,8 +129,10 @@ __all__ = (
|
|
|
127
129
|
"SubscribeToShardEventTypeDef",
|
|
128
130
|
"SubscribeToShardInputTypeDef",
|
|
129
131
|
"SubscribeToShardOutputTypeDef",
|
|
132
|
+
"TagResourceInputTypeDef",
|
|
130
133
|
"TagTypeDef",
|
|
131
134
|
"TimestampTypeDef",
|
|
135
|
+
"UntagResourceInputTypeDef",
|
|
132
136
|
"UpdateShardCountInputTypeDef",
|
|
133
137
|
"UpdateShardCountOutputTypeDef",
|
|
134
138
|
"UpdateStreamModeInputTypeDef",
|
|
@@ -272,16 +276,19 @@ class ListStreamsInputTypeDef(TypedDict):
|
|
|
272
276
|
ExclusiveStartStreamName: NotRequired[str]
|
|
273
277
|
NextToken: NotRequired[str]
|
|
274
278
|
|
|
279
|
+
class ListTagsForResourceInputTypeDef(TypedDict):
|
|
280
|
+
ResourceARN: NotRequired[str]
|
|
281
|
+
|
|
282
|
+
class TagTypeDef(TypedDict):
|
|
283
|
+
Key: str
|
|
284
|
+
Value: NotRequired[str]
|
|
285
|
+
|
|
275
286
|
class ListTagsForStreamInputTypeDef(TypedDict):
|
|
276
287
|
StreamName: NotRequired[str]
|
|
277
288
|
ExclusiveStartTagKey: NotRequired[str]
|
|
278
289
|
Limit: NotRequired[int]
|
|
279
290
|
StreamARN: NotRequired[str]
|
|
280
291
|
|
|
281
|
-
class TagTypeDef(TypedDict):
|
|
282
|
-
Key: str
|
|
283
|
-
Value: NotRequired[str]
|
|
284
|
-
|
|
285
292
|
class MergeShardsInputTypeDef(TypedDict):
|
|
286
293
|
ShardToMerge: str
|
|
287
294
|
AdjacentShardToMerge: str
|
|
@@ -301,6 +308,7 @@ class PutResourcePolicyInputTypeDef(TypedDict):
|
|
|
301
308
|
class RegisterStreamConsumerInputTypeDef(TypedDict):
|
|
302
309
|
StreamARN: str
|
|
303
310
|
ConsumerName: str
|
|
311
|
+
Tags: NotRequired[Mapping[str, str]]
|
|
304
312
|
|
|
305
313
|
class RemoveTagsFromStreamInputTypeDef(TypedDict):
|
|
306
314
|
TagKeys: Sequence[str]
|
|
@@ -335,6 +343,14 @@ class StopStreamEncryptionInputTypeDef(TypedDict):
|
|
|
335
343
|
StreamName: NotRequired[str]
|
|
336
344
|
StreamARN: NotRequired[str]
|
|
337
345
|
|
|
346
|
+
class TagResourceInputTypeDef(TypedDict):
|
|
347
|
+
Tags: Mapping[str, str]
|
|
348
|
+
ResourceARN: NotRequired[str]
|
|
349
|
+
|
|
350
|
+
class UntagResourceInputTypeDef(TypedDict):
|
|
351
|
+
TagKeys: Sequence[str]
|
|
352
|
+
ResourceARN: NotRequired[str]
|
|
353
|
+
|
|
338
354
|
class UpdateShardCountInputTypeDef(TypedDict):
|
|
339
355
|
TargetShardCount: int
|
|
340
356
|
ScalingType: Literal["UNIFORM_SCALING"]
|
|
@@ -499,6 +515,10 @@ StartingPositionTypeDef = TypedDict(
|
|
|
499
515
|
},
|
|
500
516
|
)
|
|
501
517
|
|
|
518
|
+
class ListTagsForResourceOutputTypeDef(TypedDict):
|
|
519
|
+
Tags: List[TagTypeDef]
|
|
520
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
521
|
+
|
|
502
522
|
class ListTagsForStreamOutputTypeDef(TypedDict):
|
|
503
523
|
Tags: List[TagTypeDef]
|
|
504
524
|
HasMoreTags: bool
|
types_boto3_kinesis/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-kinesis
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 Kinesis 1.
|
|
3
|
+
Version: 1.38.5
|
|
4
|
+
Summary: Type annotations for boto3 Kinesis 1.38.5 service generated with mypy-boto3-builder 8.10.1
|
|
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
|
|
@@ -39,6 +39,7 @@ Dynamic: description-content-type
|
|
|
39
39
|
Dynamic: home-page
|
|
40
40
|
Dynamic: keywords
|
|
41
41
|
Dynamic: license
|
|
42
|
+
Dynamic: license-file
|
|
42
43
|
Dynamic: project-url
|
|
43
44
|
Dynamic: requires-dist
|
|
44
45
|
Dynamic: requires-python
|
|
@@ -55,7 +56,7 @@ Dynamic: summary
|
|
|
55
56
|
|
|
56
57
|

|
|
57
58
|
|
|
58
|
-
Type annotations for [boto3 Kinesis 1.
|
|
59
|
+
Type annotations for [boto3 Kinesis 1.38.5](https://pypi.org/project/boto3/)
|
|
59
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -64,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
64
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
65
66
|
|
|
66
67
|
Generated with
|
|
67
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
|
|
68
69
|
|
|
69
70
|
More information can be found on
|
|
70
71
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -118,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
118
119
|
isolation.
|
|
119
120
|
|
|
120
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.
|
|
122
|
+
`uvx --with 'boto3==1.38.5' mypy-boto3-builder`
|
|
122
123
|
2. Select `boto3` AWS SDK.
|
|
123
124
|
3. Add `Kinesis` service.
|
|
124
125
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
types_boto3_kinesis/__init__.py,sha256=dZibOr76dfPr5wCNANDykI0UyW9xMfDc7FIy9zGg6Yk,1629
|
|
2
|
+
types_boto3_kinesis/__init__.pyi,sha256=pw7BwtQjYyrjE-yxnkidlbq5kqFJ40aHk8Hqc3gAdjc,1628
|
|
3
|
+
types_boto3_kinesis/__main__.py,sha256=eAnTUqcy01cA9sje6wkwTn7YX6S7H-PvNUYWkhvvH9o,982
|
|
4
|
+
types_boto3_kinesis/client.py,sha256=KMJNUlhqFrq2ZShTQ-f3gWAgBGwxxQAKdDAT6dxNb54,26949
|
|
5
|
+
types_boto3_kinesis/client.pyi,sha256=p8Msga1z4KVzIgiVUh3m4LCiYMCl7fMp8qxiI-7SIdM,26946
|
|
6
|
+
types_boto3_kinesis/literals.py,sha256=wILXfR0ebSvUeJmS3ud5ivNqG246DNrksufTrxIfdNc,11179
|
|
7
|
+
types_boto3_kinesis/literals.pyi,sha256=sjv9ym-AIH1jOOpiOsS088eDhhDPd1yWTKvK8Kba7jQ,11177
|
|
8
|
+
types_boto3_kinesis/paginator.py,sha256=tMC0xMFFTj7jnmlqwVbXpDOSYATB8gxMvirWthVDEVc,5986
|
|
9
|
+
types_boto3_kinesis/paginator.pyi,sha256=h8U46TN6_yXBwm8b2leZaWuJbYu8xznqIQMaygMEmAY,5973
|
|
10
|
+
types_boto3_kinesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_kinesis/type_defs.py,sha256=BjEhyGVjKo_TFHcJT-sRd-SlinaI5fHoyFQsFH9hnDE,19516
|
|
12
|
+
types_boto3_kinesis/type_defs.pyi,sha256=qEzIKyse67h1T760-UfoljtYMdJhJ_Qki-eyy4IAa3o,19424
|
|
13
|
+
types_boto3_kinesis/version.py,sha256=4i2B9ueJp-52bvuabdvB0luelG6zsI-y4boXT0I5Z_w,92
|
|
14
|
+
types_boto3_kinesis/waiter.py,sha256=G_i6sGWuCOCa-Zctf6dxfBAZSVzIHppZFXO4Op5MI-U,2651
|
|
15
|
+
types_boto3_kinesis/waiter.pyi,sha256=htjYy9RXj6f6iSX8l0Pb6gIW_xsiFy9QPHRC9DzueHQ,2646
|
|
16
|
+
types_boto3_kinesis-1.38.5.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
types_boto3_kinesis-1.38.5.dist-info/METADATA,sha256=5kYSp1rUxYlqbN-oBRMyl4pOlNXZThmPZjPvr7Ea3pI,15978
|
|
18
|
+
types_boto3_kinesis-1.38.5.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
|
|
19
|
+
types_boto3_kinesis-1.38.5.dist-info/top_level.txt,sha256=QOBfHpTRND8MxYawOcHI9oTlGuMPIGXZybD8VDr23WE,20
|
|
20
|
+
types_boto3_kinesis-1.38.5.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
types_boto3_kinesis/__init__.py,sha256=dZibOr76dfPr5wCNANDykI0UyW9xMfDc7FIy9zGg6Yk,1629
|
|
2
|
-
types_boto3_kinesis/__init__.pyi,sha256=pw7BwtQjYyrjE-yxnkidlbq5kqFJ40aHk8Hqc3gAdjc,1628
|
|
3
|
-
types_boto3_kinesis/__main__.py,sha256=zf_CiP_teJIr5aMvZszv-jxlugr4yiAql9v4o2oJjgc,981
|
|
4
|
-
types_boto3_kinesis/client.py,sha256=yoXV8iWE2dzAkfpge5YLwKjdVQdBp_OsVo90HShNKeQ,25339
|
|
5
|
-
types_boto3_kinesis/client.pyi,sha256=t093bawAtFbxVEwn_opW0bitaW3HNsqyOvaNv3LGfPw,25336
|
|
6
|
-
types_boto3_kinesis/literals.py,sha256=rk9q-Wb-0drATuqkeba3ipuwSYcUiu7CiR9yLlAc1QM,11102
|
|
7
|
-
types_boto3_kinesis/literals.pyi,sha256=Kw6hKCAFqcbZ8jlHpl8Zbhq5OCgi5DVPTfx-lLE_iB4,11100
|
|
8
|
-
types_boto3_kinesis/paginator.py,sha256=tMC0xMFFTj7jnmlqwVbXpDOSYATB8gxMvirWthVDEVc,5986
|
|
9
|
-
types_boto3_kinesis/paginator.pyi,sha256=h8U46TN6_yXBwm8b2leZaWuJbYu8xznqIQMaygMEmAY,5973
|
|
10
|
-
types_boto3_kinesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_kinesis/type_defs.py,sha256=Rv1Xvnv5g6jl9H7fUXmTZC0a0r1zxJeiD8j0tesIyaA,18907
|
|
12
|
-
types_boto3_kinesis/type_defs.pyi,sha256=b-sYD8Ru-5n50u3TrOaX3WTpVuGxvkEGUSMFu11AMEs,18819
|
|
13
|
-
types_boto3_kinesis/version.py,sha256=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,92
|
|
14
|
-
types_boto3_kinesis/waiter.py,sha256=G_i6sGWuCOCa-Zctf6dxfBAZSVzIHppZFXO4Op5MI-U,2651
|
|
15
|
-
types_boto3_kinesis/waiter.pyi,sha256=htjYy9RXj6f6iSX8l0Pb6gIW_xsiFy9QPHRC9DzueHQ,2646
|
|
16
|
-
types_boto3_kinesis-1.37.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
types_boto3_kinesis-1.37.0.dist-info/METADATA,sha256=Gfo3cKpJviXGyoP1l4vbiHkFrL9U6YOyeQr_SkR6JrE,15954
|
|
18
|
-
types_boto3_kinesis-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
19
|
-
types_boto3_kinesis-1.37.0.dist-info/top_level.txt,sha256=QOBfHpTRND8MxYawOcHI9oTlGuMPIGXZybD8VDr23WE,20
|
|
20
|
-
types_boto3_kinesis-1.37.0.dist-info/RECORD,,
|
{types_boto3_kinesis-1.37.0.dist-info → types_boto3_kinesis-1.38.5.dist-info/licenses}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|