moose-lib 0.4.216__tar.gz → 0.4.218__tar.gz
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.
- {moose_lib-0.4.216 → moose_lib-0.4.218}/PKG-INFO +1 -1
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/dmv2.py +13 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib.egg-info/PKG-INFO +1 -1
- {moose_lib-0.4.216 → moose_lib-0.4.218}/README.md +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/__init__.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/blocks.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/clients/__init__.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/clients/redis_client.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/commons.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/data_models.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/dmv2-serializer.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/internal.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/main.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/query_param.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/streaming/__init__.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/streaming/streaming_function_runner.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib/tasks.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib.egg-info/SOURCES.txt +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib.egg-info/dependency_links.txt +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib.egg-info/requires.txt +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/moose_lib.egg-info/top_level.txt +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/setup.cfg +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/setup.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/tests/__init__.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/tests/conftest.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/tests/test_moose.py +0 -0
- {moose_lib-0.4.216 → moose_lib-0.4.218}/tests/test_redis_client.py +0 -0
@@ -543,6 +543,19 @@ class IngestPipeline(TypedMooseResource, Generic[T]):
|
|
543
543
|
raise ValueError("Stream was not configured for this pipeline")
|
544
544
|
return self.stream
|
545
545
|
|
546
|
+
def get_dead_letter_queue(self) -> Stream[T]:
|
547
|
+
"""Retrieves the pipeline's dead letter queue.
|
548
|
+
|
549
|
+
Raises:
|
550
|
+
ValueError: If the dead letter queue was not configured for this pipeline.
|
551
|
+
|
552
|
+
Returns:
|
553
|
+
The `Stream` instance.
|
554
|
+
"""
|
555
|
+
if self.dead_letter_queue is None:
|
556
|
+
raise ValueError("DLQ was not configured for this pipeline")
|
557
|
+
return self.dead_letter_queue
|
558
|
+
|
546
559
|
def get_ingest_api(self) -> IngestApi[T]:
|
547
560
|
"""Retrieves the pipeline's Ingestion API component.
|
548
561
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|