thousandeyes-sdk-streaming 1.0.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.
Files changed (30) hide show
  1. thousandeyes_sdk/streaming/__init__.py +40 -0
  2. thousandeyes_sdk/streaming/api/__init__.py +5 -0
  3. thousandeyes_sdk/streaming/api/streaming_api.py +1585 -0
  4. thousandeyes_sdk/streaming/models/__init__.py +35 -0
  5. thousandeyes_sdk/streaming/models/api_error.py +94 -0
  6. thousandeyes_sdk/streaming/models/api_error_integration_limits.py +94 -0
  7. thousandeyes_sdk/streaming/models/audit_operation.py +90 -0
  8. thousandeyes_sdk/streaming/models/audit_operation_with_update.py +104 -0
  9. thousandeyes_sdk/streaming/models/bad_request_error.py +94 -0
  10. thousandeyes_sdk/streaming/models/create_stream_response.py +134 -0
  11. thousandeyes_sdk/streaming/models/endpoint_type.py +37 -0
  12. thousandeyes_sdk/streaming/models/get_stream_response.py +134 -0
  13. thousandeyes_sdk/streaming/models/put_stream.py +110 -0
  14. thousandeyes_sdk/streaming/models/stream.py +118 -0
  15. thousandeyes_sdk/streaming/models/stream_links.py +92 -0
  16. thousandeyes_sdk/streaming/models/stream_response.py +100 -0
  17. thousandeyes_sdk/streaming/models/stream_self_link.py +88 -0
  18. thousandeyes_sdk/streaming/models/stream_type.py +37 -0
  19. thousandeyes_sdk/streaming/models/tag_match.py +93 -0
  20. thousandeyes_sdk/streaming/models/tag_match_object_type.py +36 -0
  21. thousandeyes_sdk/streaming/models/test_match.py +91 -0
  22. thousandeyes_sdk/streaming/models/test_match_domain.py +37 -0
  23. thousandeyes_sdk/streaming/models/unauthorized_error.py +90 -0
  24. thousandeyes_sdk/streaming/py.typed +0 -0
  25. thousandeyes_sdk_streaming-1.0.0.dist-info/LICENSE +176 -0
  26. thousandeyes_sdk_streaming-1.0.0.dist-info/METADATA +356 -0
  27. thousandeyes_sdk_streaming-1.0.0.dist-info/NOTICE +7 -0
  28. thousandeyes_sdk_streaming-1.0.0.dist-info/RECORD +30 -0
  29. thousandeyes_sdk_streaming-1.0.0.dist-info/WHEEL +5 -0
  30. thousandeyes_sdk_streaming-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ ThousandEyes for OpenTelemetry API
7
+
8
+ ThousandEyes for OpenTelemetry provides machine-to-machine integration between ThousandEyes and its customers. It allows you to export ThousandEyes telemetry data in OTel format, which is widely used in the industry. With ThousandEyes for OTel, you can leverage frameworks widely used in the observability domain - such as Splunk, Grafana, and Honeycomb - to capture and analyze ThousandEyes data. Any client that supports OTel can use ThousandEyes for OpenTelemetry. ThousandEyes for OTel is made up of the following components: * Data streaming APIs that you can use to configure and enable your ThousandEyes tests with OTel-compatible streams, in particular to configure how ThousandEyes telemetry data is exported to client integrations. * A set of streaming pipelines called _collectors_ that actively fetch ThousandEyes network test data, enrich the data with some additional detail, filter, and push the data to the customer-configured endpoints, depending on what you configure via the public APIs. * Third-party OTel collectors that receive, transform, filter, and export different metrics to client applications such as AppD, or any other OTel-capable client configuration. For more information about ThousandEyes for OpenTelemetry, see the [documentation](https://docs.thousandeyes.com/product-documentation/api/opentelemetry).
9
+
10
+ The version of the OpenAPI document: 7.0.8
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ # import apis into sdk package
18
+ from thousandeyes_sdk.streaming.api.streaming_api import StreamingApi
19
+
20
+
21
+ # import models into sdk package
22
+ from thousandeyes_sdk.streaming.models.api_error import ApiError
23
+ from thousandeyes_sdk.streaming.models.api_error_integration_limits import ApiErrorIntegrationLimits
24
+ from thousandeyes_sdk.streaming.models.audit_operation import AuditOperation
25
+ from thousandeyes_sdk.streaming.models.audit_operation_with_update import AuditOperationWithUpdate
26
+ from thousandeyes_sdk.streaming.models.bad_request_error import BadRequestError
27
+ from thousandeyes_sdk.streaming.models.create_stream_response import CreateStreamResponse
28
+ from thousandeyes_sdk.streaming.models.endpoint_type import EndpointType
29
+ from thousandeyes_sdk.streaming.models.get_stream_response import GetStreamResponse
30
+ from thousandeyes_sdk.streaming.models.put_stream import PutStream
31
+ from thousandeyes_sdk.streaming.models.stream import Stream
32
+ from thousandeyes_sdk.streaming.models.stream_links import StreamLinks
33
+ from thousandeyes_sdk.streaming.models.stream_response import StreamResponse
34
+ from thousandeyes_sdk.streaming.models.stream_self_link import StreamSelfLink
35
+ from thousandeyes_sdk.streaming.models.stream_type import StreamType
36
+ from thousandeyes_sdk.streaming.models.tag_match import TagMatch
37
+ from thousandeyes_sdk.streaming.models.tag_match_object_type import TagMatchObjectType
38
+ from thousandeyes_sdk.streaming.models.test_match import TestMatch
39
+ from thousandeyes_sdk.streaming.models.test_match_domain import TestMatchDomain
40
+ from thousandeyes_sdk.streaming.models.unauthorized_error import UnauthorizedError
@@ -0,0 +1,5 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from thousandeyes_sdk.streaming.api.streaming_api import StreamingApi
5
+