cribl-control-plane 0.0.15__py3-none-any.whl → 0.0.16__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 cribl-control-plane might be problematic. Click here for more details.
- cribl_control_plane/_version.py +3 -3
- cribl_control_plane/{outputs.py → destinations.py} +69 -71
- cribl_control_plane/models/__init__.py +5234 -2
- cribl_control_plane/models/createinputop.py +19253 -2
- cribl_control_plane/models/createoutputop.py +20578 -4
- cribl_control_plane/models/createoutputtestbyidop.py +2 -2
- cribl_control_plane/models/deleteoutputbyidop.py +2 -2
- cribl_control_plane/models/deleteoutputpqbyidop.py +2 -2
- cribl_control_plane/models/getoutputbyidop.py +2 -2
- cribl_control_plane/models/getoutputpqbyidop.py +2 -2
- cribl_control_plane/models/getoutputsamplesbyidop.py +2 -2
- cribl_control_plane/models/inputconfluentcloud.py +5 -3
- cribl_control_plane/models/inputcriblhttp.py +5 -3
- cribl_control_plane/models/inputcribllakehttp.py +5 -3
- cribl_control_plane/models/inputcribltcp.py +5 -3
- cribl_control_plane/models/inputdatadogagent.py +5 -3
- cribl_control_plane/models/inputedgeprometheus.py +5 -3
- cribl_control_plane/models/inputelastic.py +5 -3
- cribl_control_plane/models/inputeventhub.py +5 -3
- cribl_control_plane/models/inputfirehose.py +5 -3
- cribl_control_plane/models/inputgooglepubsub.py +5 -3
- cribl_control_plane/models/inputgrafana_union.py +10 -6
- cribl_control_plane/models/inputhttp.py +5 -3
- cribl_control_plane/models/inputhttpraw.py +5 -3
- cribl_control_plane/models/inputjournalfiles.py +5 -3
- cribl_control_plane/models/inputkafka.py +5 -3
- cribl_control_plane/models/inputkinesis.py +5 -3
- cribl_control_plane/models/inputloki.py +5 -3
- cribl_control_plane/models/inputmodeldriventelemetry.py +6 -5
- cribl_control_plane/models/inputmsk.py +5 -3
- cribl_control_plane/models/inputnetflow.py +5 -3
- cribl_control_plane/models/inputoffice365mgmt.py +5 -3
- cribl_control_plane/models/inputoffice365msgtrace.py +5 -5
- cribl_control_plane/models/inputoffice365service.py +5 -5
- cribl_control_plane/models/inputopentelemetry.py +5 -3
- cribl_control_plane/models/inputprometheus.py +5 -3
- cribl_control_plane/models/inputprometheusrw.py +5 -3
- cribl_control_plane/models/inputrawudp.py +5 -3
- cribl_control_plane/models/inputsnmp.py +5 -3
- cribl_control_plane/models/inputsplunk.py +5 -3
- cribl_control_plane/models/inputsplunkhec.py +5 -3
- cribl_control_plane/models/inputsplunksearch.py +5 -3
- cribl_control_plane/models/inputsqs.py +5 -3
- cribl_control_plane/models/inputtcp.py +5 -3
- cribl_control_plane/models/inputtcpjson.py +5 -3
- cribl_control_plane/models/inputwef.py +5 -3
- cribl_control_plane/models/inputwiz.py +5 -3
- cribl_control_plane/models/inputzscalerhec.py +5 -3
- cribl_control_plane/models/listoutputop.py +2 -2
- cribl_control_plane/models/updateoutputbyidop.py +4 -4
- cribl_control_plane/sdk.py +3 -5
- cribl_control_plane/sources.py +8 -10
- {cribl_control_plane-0.0.15.dist-info → cribl_control_plane-0.0.16.dist-info}/METADATA +13 -13
- {cribl_control_plane-0.0.15.dist-info → cribl_control_plane-0.0.16.dist-info}/RECORD +55 -55
- {cribl_control_plane-0.0.15.dist-info → cribl_control_plane-0.0.16.dist-info}/WHEEL +0 -0
|
@@ -8,7 +8,7 @@ from typing_extensions import NotRequired, TypedDict
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
class ListOutputResponseTypedDict(TypedDict):
|
|
11
|
-
r"""a list of
|
|
11
|
+
r"""a list of Destination objects"""
|
|
12
12
|
|
|
13
13
|
count: NotRequired[int]
|
|
14
14
|
r"""number of items present in the items array"""
|
|
@@ -16,7 +16,7 @@ class ListOutputResponseTypedDict(TypedDict):
|
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
class ListOutputResponse(BaseModel):
|
|
19
|
-
r"""a list of
|
|
19
|
+
r"""a list of Destination objects"""
|
|
20
20
|
|
|
21
21
|
count: Optional[int] = None
|
|
22
22
|
r"""number of items present in the items array"""
|
|
@@ -12,7 +12,7 @@ class UpdateOutputByIDRequestTypedDict(TypedDict):
|
|
|
12
12
|
id: str
|
|
13
13
|
r"""Unique ID to PATCH"""
|
|
14
14
|
output: OutputTypedDict
|
|
15
|
-
r"""
|
|
15
|
+
r"""Destination object to be updated"""
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
class UpdateOutputByIDRequest(BaseModel):
|
|
@@ -24,11 +24,11 @@ class UpdateOutputByIDRequest(BaseModel):
|
|
|
24
24
|
output: Annotated[
|
|
25
25
|
Output, FieldMetadata(request=RequestMetadata(media_type="application/json"))
|
|
26
26
|
]
|
|
27
|
-
r"""
|
|
27
|
+
r"""Destination object to be updated"""
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
class UpdateOutputByIDResponseTypedDict(TypedDict):
|
|
31
|
-
r"""a list of
|
|
31
|
+
r"""a list of Destination objects"""
|
|
32
32
|
|
|
33
33
|
count: NotRequired[int]
|
|
34
34
|
r"""number of items present in the items array"""
|
|
@@ -36,7 +36,7 @@ class UpdateOutputByIDResponseTypedDict(TypedDict):
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
class UpdateOutputByIDResponse(BaseModel):
|
|
39
|
-
r"""a list of
|
|
39
|
+
r"""a list of Destination objects"""
|
|
40
40
|
|
|
41
41
|
count: Optional[int] = None
|
|
42
42
|
r"""number of items present in the items array"""
|
cribl_control_plane/sdk.py
CHANGED
|
@@ -15,8 +15,8 @@ import weakref
|
|
|
15
15
|
|
|
16
16
|
if TYPE_CHECKING:
|
|
17
17
|
from cribl_control_plane.auth_sdk import AuthSDK
|
|
18
|
+
from cribl_control_plane.destinations import Destinations
|
|
18
19
|
from cribl_control_plane.health import Health
|
|
19
|
-
from cribl_control_plane.outputs import Outputs
|
|
20
20
|
from cribl_control_plane.pipelines import Pipelines
|
|
21
21
|
from cribl_control_plane.routes_sdk import RoutesSDK
|
|
22
22
|
from cribl_control_plane.sources import Sources
|
|
@@ -26,9 +26,7 @@ class CriblControlPlane(BaseSDK):
|
|
|
26
26
|
r"""Cribl API Reference: This API Reference lists available REST endpoints, along with their supported operations for accessing, creating, updating, or deleting resources. See our complementary product documentation at [docs.cribl.io](http://docs.cribl.io)."""
|
|
27
27
|
|
|
28
28
|
sources: "Sources"
|
|
29
|
-
|
|
30
|
-
outputs: "Outputs"
|
|
31
|
-
r"""Actions related to outputs"""
|
|
29
|
+
destinations: "Destinations"
|
|
32
30
|
pipelines: "Pipelines"
|
|
33
31
|
r"""Actions related to Pipelines"""
|
|
34
32
|
routes: "RoutesSDK"
|
|
@@ -39,7 +37,7 @@ class CriblControlPlane(BaseSDK):
|
|
|
39
37
|
r"""Actions related to REST server health"""
|
|
40
38
|
_sub_sdk_map = {
|
|
41
39
|
"sources": ("cribl_control_plane.sources", "Sources"),
|
|
42
|
-
"
|
|
40
|
+
"destinations": ("cribl_control_plane.destinations", "Destinations"),
|
|
43
41
|
"pipelines": ("cribl_control_plane.pipelines", "Pipelines"),
|
|
44
42
|
"routes": ("cribl_control_plane.routes_sdk", "RoutesSDK"),
|
|
45
43
|
"auth": ("cribl_control_plane.auth_sdk", "AuthSDK"),
|
cribl_control_plane/sources.py
CHANGED
|
@@ -10,8 +10,6 @@ from typing import Any, List, Mapping, Optional, Union, cast
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class Sources(BaseSDK):
|
|
13
|
-
r"""Actions related to Sources"""
|
|
14
|
-
|
|
15
13
|
def list_source(
|
|
16
14
|
self,
|
|
17
15
|
*,
|
|
@@ -175,7 +173,7 @@ class Sources(BaseSDK):
|
|
|
175
173
|
def create_source(
|
|
176
174
|
self,
|
|
177
175
|
*,
|
|
178
|
-
request: Union[models.
|
|
176
|
+
request: Union[models.CreateInputRequest, models.CreateInputRequestTypedDict],
|
|
179
177
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
180
178
|
server_url: Optional[str] = None,
|
|
181
179
|
timeout_ms: Optional[int] = None,
|
|
@@ -202,8 +200,8 @@ class Sources(BaseSDK):
|
|
|
202
200
|
base_url = self._get_url(base_url, url_variables)
|
|
203
201
|
|
|
204
202
|
if not isinstance(request, BaseModel):
|
|
205
|
-
request = utils.unmarshal(request, models.
|
|
206
|
-
request = cast(models.
|
|
203
|
+
request = utils.unmarshal(request, models.CreateInputRequest)
|
|
204
|
+
request = cast(models.CreateInputRequest, request)
|
|
207
205
|
|
|
208
206
|
req = self._build_request(
|
|
209
207
|
method="POST",
|
|
@@ -219,7 +217,7 @@ class Sources(BaseSDK):
|
|
|
219
217
|
http_headers=http_headers,
|
|
220
218
|
security=self.sdk_configuration.security,
|
|
221
219
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
222
|
-
request, False, False, "json", models.
|
|
220
|
+
request, False, False, "json", models.CreateInputRequest
|
|
223
221
|
),
|
|
224
222
|
timeout_ms=timeout_ms,
|
|
225
223
|
)
|
|
@@ -265,7 +263,7 @@ class Sources(BaseSDK):
|
|
|
265
263
|
async def create_source_async(
|
|
266
264
|
self,
|
|
267
265
|
*,
|
|
268
|
-
request: Union[models.
|
|
266
|
+
request: Union[models.CreateInputRequest, models.CreateInputRequestTypedDict],
|
|
269
267
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
270
268
|
server_url: Optional[str] = None,
|
|
271
269
|
timeout_ms: Optional[int] = None,
|
|
@@ -292,8 +290,8 @@ class Sources(BaseSDK):
|
|
|
292
290
|
base_url = self._get_url(base_url, url_variables)
|
|
293
291
|
|
|
294
292
|
if not isinstance(request, BaseModel):
|
|
295
|
-
request = utils.unmarshal(request, models.
|
|
296
|
-
request = cast(models.
|
|
293
|
+
request = utils.unmarshal(request, models.CreateInputRequest)
|
|
294
|
+
request = cast(models.CreateInputRequest, request)
|
|
297
295
|
|
|
298
296
|
req = self._build_request_async(
|
|
299
297
|
method="POST",
|
|
@@ -309,7 +307,7 @@ class Sources(BaseSDK):
|
|
|
309
307
|
http_headers=http_headers,
|
|
310
308
|
security=self.sdk_configuration.security,
|
|
311
309
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
312
|
-
request, False, False, "json", models.
|
|
310
|
+
request, False, False, "json", models.CreateInputRequest
|
|
313
311
|
),
|
|
314
312
|
timeout_ms=timeout_ms,
|
|
315
313
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.16
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -202,22 +202,22 @@ with CriblControlPlane(
|
|
|
202
202
|
* [login](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/authsdk/README.md#login) - Log in and obtain Auth token
|
|
203
203
|
|
|
204
204
|
|
|
205
|
+
### [destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
|
|
206
|
+
|
|
207
|
+
* [list_destination](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#list_destination) - Get a list of Destination objects
|
|
208
|
+
* [create_destination](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create_destination) - Create Destination
|
|
209
|
+
* [get_destination_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get_destination_by_id) - Get Destination by ID
|
|
210
|
+
* [update_destination_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#update_destination_by_id) - Update Destination
|
|
211
|
+
* [delete_destination_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#delete_destination_by_id) - Delete Destination
|
|
212
|
+
* [delete_destination_pq_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#delete_destination_pq_by_id) - Clears destination persistent queue
|
|
213
|
+
* [get_destination_pq_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get_destination_pq_by_id) - Retrieves status of latest clear PQ job for a destination
|
|
214
|
+
* [get_destination_samples_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get_destination_samples_by_id) - Retrieve samples data for the specified destination. Used to get sample data for the test action.
|
|
215
|
+
* [create_destination_test_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create_destination_test_by_id) - Send sample data to a destination to validate configuration or test connectivity
|
|
216
|
+
|
|
205
217
|
### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
|
|
206
218
|
|
|
207
219
|
* [get_health_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get_health_info) - Provides health info for REST server
|
|
208
220
|
|
|
209
|
-
### [outputs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/outputs/README.md)
|
|
210
|
-
|
|
211
|
-
* [list_output](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/outputs/README.md#list_output) - Get a list of Output objects
|
|
212
|
-
* [create_output](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/outputs/README.md#create_output) - Create Output
|
|
213
|
-
* [get_output_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/outputs/README.md#get_output_by_id) - Get Output by ID
|
|
214
|
-
* [update_output_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/outputs/README.md#update_output_by_id) - Update Output
|
|
215
|
-
* [delete_output_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/outputs/README.md#delete_output_by_id) - Delete Output
|
|
216
|
-
* [delete_output_pq_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/outputs/README.md#delete_output_pq_by_id) - Clears destination persistent queue
|
|
217
|
-
* [get_output_pq_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/outputs/README.md#get_output_pq_by_id) - Retrieves status of latest clear PQ job for an output
|
|
218
|
-
* [get_output_samples_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/outputs/README.md#get_output_samples_by_id) - Retrieve samples data for the specified output. Used to get sample data for the test action.
|
|
219
|
-
* [create_output_test_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/outputs/README.md#create_output_test_by_id) - Send sample data to an output to validate configuration or test connectivity
|
|
220
|
-
|
|
221
221
|
### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
|
|
222
222
|
|
|
223
223
|
* [list_pipeline](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list_pipeline) - Get a list of Pipeline objects
|
|
@@ -4,9 +4,10 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=gVQkktlv3q4-AHOdbQl5r8i-G
|
|
|
4
4
|
cribl_control_plane/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
|
5
5
|
cribl_control_plane/_hooks/sdkhooks.py,sha256=ggXjME1_Rdv8CVCg1XHqB83eYtbxzKyhXyfQ36Yc1gA,2816
|
|
6
6
|
cribl_control_plane/_hooks/types.py,sha256=Tw_C4zTZm01rW_89VDEUpvQ8KQr1WxN0Gu_-s_fYSPc,2998
|
|
7
|
-
cribl_control_plane/_version.py,sha256=
|
|
7
|
+
cribl_control_plane/_version.py,sha256=c0FrBBeWpFZGCLmF_QT46yc22NT4HitE02-RpiiPSLA,542
|
|
8
8
|
cribl_control_plane/auth_sdk.py,sha256=Jxw8hPHbBFay5eXcaRBtgdCC06mh5XHkRbZcIM0vvB8,7431
|
|
9
9
|
cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
|
|
10
|
+
cribl_control_plane/destinations.py,sha256=9L_VzqiAh8xAN4JNBsU7FT7ZFRiBuhtf-5mJBCbZj-g,65733
|
|
10
11
|
cribl_control_plane/errors/__init__.py,sha256=Xyh3WNPYYsJGQfGBLeaaK6eqwsJOtx-__zmvwwr4Mns,1833
|
|
11
12
|
cribl_control_plane/errors/apierror.py,sha256=Z3b3zk672zHljcdijGLJeJ2LiP1f3VpVDEqUuF7LDAA,1253
|
|
12
13
|
cribl_control_plane/errors/criblcontrolplaneerror.py,sha256=P9SU33LkmvyURdJbndHJxXu2KW_3u059peZJ8C80LfM,724
|
|
@@ -16,24 +17,24 @@ cribl_control_plane/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon
|
|
|
16
17
|
cribl_control_plane/errors/responsevalidationerror.py,sha256=TvZ9dOsy-oFBYA_wZCOOEXeGKMBQtzCVX-1-i7epQTE,720
|
|
17
18
|
cribl_control_plane/health.py,sha256=nK_Q4lDXi8zkfAqcIv9X4zBGi8BzomaBQWBD7TsSwLk,6743
|
|
18
19
|
cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
19
|
-
cribl_control_plane/models/__init__.py,sha256=
|
|
20
|
+
cribl_control_plane/models/__init__.py,sha256=Hjvfh49hQmjNQ-XQB7TqFMMQIRw_ltCw8quFsWq51tg,598550
|
|
20
21
|
cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
|
|
21
22
|
cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
|
|
22
23
|
cribl_control_plane/models/createinputhectokenbyidop.py,sha256=KfgOUUTbWqoDIPmwmFmKi-HzqRQFt_KpmKqkqXBzjAA,1438
|
|
23
|
-
cribl_control_plane/models/createinputop.py,sha256=
|
|
24
|
-
cribl_control_plane/models/createoutputop.py,sha256=
|
|
25
|
-
cribl_control_plane/models/createoutputtestbyidop.py,sha256=
|
|
24
|
+
cribl_control_plane/models/createinputop.py,sha256=whWdPCoE-ZpaK6niWx_7fmnzdvf76Zj3j6jk6Y2QMVU,922711
|
|
25
|
+
cribl_control_plane/models/createoutputop.py,sha256=2WEHAwAl7xhtaB8PLvwgiur_RFOcd15D3e6d3XbVvls,997762
|
|
26
|
+
cribl_control_plane/models/createoutputtestbyidop.py,sha256=2ll9hE3r0VTgyOD7U2obiQFQF4NlbrlEBG3lPXsI5Y8,1533
|
|
26
27
|
cribl_control_plane/models/createpipelineop.py,sha256=JNTwQf1nQk5kCYbAvSlLex2X9sTzjwIHoeMeIUbD-NE,726
|
|
27
28
|
cribl_control_plane/models/createroutesappendbyidop.py,sha256=_Fo5lDkv-lqPxS2R59cIBP9A9jnc9SpPjAwNg1dCLI8,1515
|
|
28
29
|
cribl_control_plane/models/criblevent.py,sha256=eT6WbxhOOCx5OQLkAfhwG6IeSUuUmF7hLTxeCHut4bo,361
|
|
29
30
|
cribl_control_plane/models/deleteinputbyidop.py,sha256=8mFzAyTUv6EJ-5Ivm4TSklARGQVim5busV7u51zHyzo,1067
|
|
30
|
-
cribl_control_plane/models/deleteoutputbyidop.py,sha256=
|
|
31
|
-
cribl_control_plane/models/deleteoutputpqbyidop.py,sha256=
|
|
31
|
+
cribl_control_plane/models/deleteoutputbyidop.py,sha256=1tNS3O5EK9V0DaWcvvUr-KOQhhpslk_aydhf36pyYfs,1086
|
|
32
|
+
cribl_control_plane/models/deleteoutputpqbyidop.py,sha256=jLy8wreVzCsTTifXL3rHPXnku3G97ZCnbHPGamw-t9g,1042
|
|
32
33
|
cribl_control_plane/models/deletepipelinebyidop.py,sha256=2TPgET3YUtlqvAjW-iZXcx0yQVBLqVf9UjjgGJzAZ9E,1098
|
|
33
34
|
cribl_control_plane/models/getinputbyidop.py,sha256=5V8AlcIjtaLkmBB1y9Aivng8TmM4CmfnfOUBIQ120_0,1049
|
|
34
|
-
cribl_control_plane/models/getoutputbyidop.py,sha256=
|
|
35
|
-
cribl_control_plane/models/getoutputpqbyidop.py,sha256=
|
|
36
|
-
cribl_control_plane/models/getoutputsamplesbyidop.py,sha256=
|
|
35
|
+
cribl_control_plane/models/getoutputbyidop.py,sha256=1PFQIUUaPB6jovQOiCe7iU0tKrW3PhtOyM7FntrGVRQ,1068
|
|
36
|
+
cribl_control_plane/models/getoutputpqbyidop.py,sha256=4YN2pdg-WpUi9nuBQTgFOp1wMOK79KBdC5fqNLuUQtA,1030
|
|
37
|
+
cribl_control_plane/models/getoutputsamplesbyidop.py,sha256=TB8iEYWYKhsK5CYaNPdjWo37y9TFvd9c6sSOJNlAM4o,1187
|
|
37
38
|
cribl_control_plane/models/getpipelinebyidop.py,sha256=ky8YvLZRrUCs4HTiAvMcQ-nfIWb8Ke7NeDJMw1xdEho,1080
|
|
38
39
|
cribl_control_plane/models/getroutesbyidop.py,sha256=9TeXnLc_WkHoAYbykYxlDP-I0AzsrlYi-iA28jhmpZ8,1058
|
|
39
40
|
cribl_control_plane/models/healthstatus.py,sha256=oGS-ntDNekMLdbjGQtGTDsFh7gDn_Fz9KUVyLix29m8,1056
|
|
@@ -41,63 +42,63 @@ cribl_control_plane/models/input.py,sha256=qJc9jqd52wQ1s5p76_ZgafxK7mQeuSoememiF
|
|
|
41
42
|
cribl_control_plane/models/inputappscope.py,sha256=2wnXaWUQbhy2KYtv6q90FKRaAo8t-dKE0UdsRy0FFcc,20813
|
|
42
43
|
cribl_control_plane/models/inputazureblob.py,sha256=EFuYfTsne00k5QY1LjqrQdJ_DGizSmZYmsqIfFMqGOk,15383
|
|
43
44
|
cribl_control_plane/models/inputcollection.py,sha256=pygumabZzxZ-ybk16_P8PNzUARaj84kMhAZarBUGAW8,9684
|
|
44
|
-
cribl_control_plane/models/inputconfluentcloud.py,sha256=
|
|
45
|
+
cribl_control_plane/models/inputconfluentcloud.py,sha256=UpazpclclvQrdBLYK1SMGFF9SbZOaprSxRFjUYtnIi4,29393
|
|
45
46
|
cribl_control_plane/models/inputcribl.py,sha256=vz4H0sHtWMgupqrEra5k9WkImZ5y1itpCC1mZPVNSUM,7356
|
|
46
|
-
cribl_control_plane/models/inputcriblhttp.py,sha256=
|
|
47
|
-
cribl_control_plane/models/inputcribllakehttp.py,sha256=
|
|
47
|
+
cribl_control_plane/models/inputcriblhttp.py,sha256=RXXsdt-ouhVYlwQP1WVbhw-30Yl1l--ufTOvRwWjqlM,16039
|
|
48
|
+
cribl_control_plane/models/inputcribllakehttp.py,sha256=Of0zMlrhclX7HXZSH9cfMfdjos1EOZKz2KRsw43Znj0,16198
|
|
48
49
|
cribl_control_plane/models/inputcriblmetrics.py,sha256=w_esxIPc1Wf2A7yWDfhmsGiPLvkEeuHZlTKRCfk5qAM,8549
|
|
49
|
-
cribl_control_plane/models/inputcribltcp.py,sha256=
|
|
50
|
+
cribl_control_plane/models/inputcribltcp.py,sha256=5wJg2nFG9UGR6m6WEAVDQTBH1JamiJsiU3aBTo9DUKc,13857
|
|
50
51
|
cribl_control_plane/models/inputcrowdstrike.py,sha256=1N4bhO4VUZjDv3bUvZJwV2xYgkUDNX6zYLwzt9CRzGQ,20700
|
|
51
|
-
cribl_control_plane/models/inputdatadogagent.py,sha256=
|
|
52
|
+
cribl_control_plane/models/inputdatadogagent.py,sha256=ybb9lZYfwGrOIGFtH0uXLGyFTUnh2e7R2z_H-nNLwEs,17634
|
|
52
53
|
cribl_control_plane/models/inputdatagen.py,sha256=vXuOcFGaij3_UjrwwSrwgAPhuTyn5RpnFboI23Mj7d8,7819
|
|
53
|
-
cribl_control_plane/models/inputedgeprometheus.py,sha256=
|
|
54
|
-
cribl_control_plane/models/inputelastic.py,sha256=
|
|
55
|
-
cribl_control_plane/models/inputeventhub.py,sha256=
|
|
54
|
+
cribl_control_plane/models/inputedgeprometheus.py,sha256=p2wruSsko4dEuQPW2HOoFFX88I6rChBubEDnO41SHXg,23126
|
|
55
|
+
cribl_control_plane/models/inputelastic.py,sha256=BanP9ppFb5nAM3npDbxwZfR0cV372SRghDegfYBa6Yw,22273
|
|
56
|
+
cribl_control_plane/models/inputeventhub.py,sha256=Zgck4cJGKlFktrSf-4XM9_rI28loU-PA4-TlS5PtpWw,20006
|
|
56
57
|
cribl_control_plane/models/inputexec.py,sha256=evY2BdOVKq0xxRxu8hkAUWiGDkUvIxD_8_bq-fBOW14,9636
|
|
57
58
|
cribl_control_plane/models/inputfile.py,sha256=tr3cV3fKiE9GBA5a-AZeavZA9htzPoxnkFlxElloWCU,12486
|
|
58
|
-
cribl_control_plane/models/inputfirehose.py,sha256=
|
|
59
|
-
cribl_control_plane/models/inputgooglepubsub.py,sha256=
|
|
60
|
-
cribl_control_plane/models/inputgrafana_union.py,sha256=
|
|
61
|
-
cribl_control_plane/models/inputhttp.py,sha256=
|
|
62
|
-
cribl_control_plane/models/inputhttpraw.py,sha256=
|
|
63
|
-
cribl_control_plane/models/inputjournalfiles.py,sha256=
|
|
64
|
-
cribl_control_plane/models/inputkafka.py,sha256=
|
|
65
|
-
cribl_control_plane/models/inputkinesis.py,sha256=
|
|
59
|
+
cribl_control_plane/models/inputfirehose.py,sha256=G12RmpvqPbPwakNQ3xc8bZKjUXQUo5MOcrPy4IRs2Vk,16000
|
|
60
|
+
cribl_control_plane/models/inputgooglepubsub.py,sha256=N5NMQeXZzTEgFTgpWNd8CURg5qBFyOfpcgmaap_py-o,12413
|
|
61
|
+
cribl_control_plane/models/inputgrafana_union.py,sha256=LxMZ8ObqCbn7uFk-Vhkfb1NpzviwsKTCuxMlTSCSZyA,57688
|
|
62
|
+
cribl_control_plane/models/inputhttp.py,sha256=HUd7f5-22KLsc7MDKAG5v4g5bE0CivCVm1zgvN_1hA4,18773
|
|
63
|
+
cribl_control_plane/models/inputhttpraw.py,sha256=rLsF2PE4EzI5Rj6_D4uJYAXVrNFUuMgkSmpx_1RLcYE,19148
|
|
64
|
+
cribl_control_plane/models/inputjournalfiles.py,sha256=GROgaQGuzpszQ7If25xMsnruOYYXyEPa_yPiFBuSRj0,9883
|
|
65
|
+
cribl_control_plane/models/inputkafka.py,sha256=P3qLuxyoqtdCso_pFyyLWjET0EQu-81SeuR4xeKQHbI,28971
|
|
66
|
+
cribl_control_plane/models/inputkinesis.py,sha256=tz9glYbcAFDBgDDx4JxEQmzm7hivQW1cSitST8EVBdk,16512
|
|
66
67
|
cribl_control_plane/models/inputkubeevents.py,sha256=G_mX5IenrGGZz-860J0gMU0wMSnyBcC4gwI8AJFNJco,8108
|
|
67
68
|
cribl_control_plane/models/inputkubelogs.py,sha256=AV2XUR_FhUW9hpm9BhO1Q1gA3TJgD27roxaCfIAbia8,12311
|
|
68
69
|
cribl_control_plane/models/inputkubemetrics.py,sha256=9R0qBf46_VyYspnxtAmYNo7FcV93zuqEzAOzoM6Tru4,10701
|
|
69
|
-
cribl_control_plane/models/inputloki.py,sha256=
|
|
70
|
+
cribl_control_plane/models/inputloki.py,sha256=9ZjX7GgqdWCSszycU90HgOpe4oVmHzksEaQ89V8tYW8,21388
|
|
70
71
|
cribl_control_plane/models/inputmetrics.py,sha256=UMEQ40uK7W21LuiBV5q2deLWDMFGHGJ0coAJZ2eEa_k,13223
|
|
71
|
-
cribl_control_plane/models/inputmodeldriventelemetry.py,sha256=
|
|
72
|
-
cribl_control_plane/models/inputmsk.py,sha256=
|
|
73
|
-
cribl_control_plane/models/inputnetflow.py,sha256=
|
|
74
|
-
cribl_control_plane/models/inputoffice365mgmt.py,sha256=
|
|
75
|
-
cribl_control_plane/models/inputoffice365msgtrace.py,sha256
|
|
76
|
-
cribl_control_plane/models/inputoffice365service.py,sha256=
|
|
77
|
-
cribl_control_plane/models/inputopentelemetry.py,sha256=
|
|
78
|
-
cribl_control_plane/models/inputprometheus.py,sha256=
|
|
79
|
-
cribl_control_plane/models/inputprometheusrw.py,sha256=
|
|
80
|
-
cribl_control_plane/models/inputrawudp.py,sha256=
|
|
72
|
+
cribl_control_plane/models/inputmodeldriventelemetry.py,sha256=QoxIBMkza04Ix7Kft3-zeFCmVkG_TWQ1j1WxGVmvJgQ,12036
|
|
73
|
+
cribl_control_plane/models/inputmsk.py,sha256=YozK52D7QOISnjHs7JRtgKIuFH-ylzSnHOD8015Ze0M,32108
|
|
74
|
+
cribl_control_plane/models/inputnetflow.py,sha256=GC8AOnWMXG874g0e6PM9hhSHv2-on-8TsnT1HjBJGik,11223
|
|
75
|
+
cribl_control_plane/models/inputoffice365mgmt.py,sha256=ovuDmD5bQWmcBnzaS2M_UgZM3HawtdmS95fv1MuH4YM,18627
|
|
76
|
+
cribl_control_plane/models/inputoffice365msgtrace.py,sha256=lmxX42wpnpbeUR850WMSa6F7idcv1mKQ1k6nbTV3mGk,21120
|
|
77
|
+
cribl_control_plane/models/inputoffice365service.py,sha256=7RZIG_508tVlu5oHEctZfrljNZKjy2L5dOlu2aNt9eM,17642
|
|
78
|
+
cribl_control_plane/models/inputopentelemetry.py,sha256=EdHTixS4Sd0AZS81c-29JwWuMhg1lxA-dd2l4Cx3z8Y,23104
|
|
79
|
+
cribl_control_plane/models/inputprometheus.py,sha256=x5l95sxiizK6NPzcdbDjrF8WqlrU9ZGD7ta3q3uH0lo,20751
|
|
80
|
+
cribl_control_plane/models/inputprometheusrw.py,sha256=x50RZSvqj1CoIMFnACpK3BtAsFtnNKRpNVkZ-02A0w8,21734
|
|
81
|
+
cribl_control_plane/models/inputrawudp.py,sha256=WXqeD4sGGWUAldOG-Fg1VF9gWHeaz1c626raxQuF80U,10002
|
|
81
82
|
cribl_control_plane/models/inputs3.py,sha256=ZCdLSxK3BApCK2lrTK8s0aRXz2UbQCpeVU86q4ojlR0,21007
|
|
82
83
|
cribl_control_plane/models/inputs3inventory.py,sha256=vbfb7xXeOtIzUxD12cGWI82pc-4CZgOGX-lF6m4GMss,22554
|
|
83
84
|
cribl_control_plane/models/inputsecuritylake.py,sha256=P2Dqvx87pp52tVhy66vEurUmRhxynYbTWLz7yJl5QQw,21512
|
|
84
|
-
cribl_control_plane/models/inputsnmp.py,sha256=
|
|
85
|
-
cribl_control_plane/models/inputsplunk.py,sha256=
|
|
86
|
-
cribl_control_plane/models/inputsplunkhec.py,sha256=
|
|
87
|
-
cribl_control_plane/models/inputsplunksearch.py,sha256=
|
|
88
|
-
cribl_control_plane/models/inputsqs.py,sha256=
|
|
85
|
+
cribl_control_plane/models/inputsnmp.py,sha256=7JtwiSlJPMusnGyBKQM2d1umNTzgXn3SSOQ4Im8TWrQ,12452
|
|
86
|
+
cribl_control_plane/models/inputsplunk.py,sha256=rtdlOnac64H1pZ5gIvBa0N1CBodP8LjBPVk_AjLgaGo,18237
|
|
87
|
+
cribl_control_plane/models/inputsplunkhec.py,sha256=MI15jiHqGAgYE5Vbi4napm1Ti_fDUiNz1olSJLKQeX8,23301
|
|
88
|
+
cribl_control_plane/models/inputsplunksearch.py,sha256=Wbiu9mpn4U5Vd5BIh9mhmHuL6PaEMncpXCT2sPVNfSA,25350
|
|
89
|
+
cribl_control_plane/models/inputsqs.py,sha256=JIvCMzbP76V6hP7ZHzKFbQ4nzDk9JeYiNQDcAcusuDE,15786
|
|
89
90
|
cribl_control_plane/models/inputsyslog_union.py,sha256=eqy6TtWWL8SE3gmBWnsBEVBOz0aEGXR0Ubb7cvw0qhw,37250
|
|
90
91
|
cribl_control_plane/models/inputsystemmetrics.py,sha256=mbV7oHF99NRhKA0extZgwV5xxumDHcTLfpDwt6hGeoE,20837
|
|
91
92
|
cribl_control_plane/models/inputsystemstate.py,sha256=Xs80TsCR8s20fIEIGYo8UYJ6JJAqtVADhwHIOy-cl8U,15871
|
|
92
|
-
cribl_control_plane/models/inputtcp.py,sha256=
|
|
93
|
-
cribl_control_plane/models/inputtcpjson.py,sha256=
|
|
94
|
-
cribl_control_plane/models/inputwef.py,sha256=
|
|
93
|
+
cribl_control_plane/models/inputtcp.py,sha256=NMD6Ydb03dN6P3Ko1teC5SFjx0h27JaTp-osNM7bpKU,17006
|
|
94
|
+
cribl_control_plane/models/inputtcpjson.py,sha256=kSAuCKQYhTda5Rfiv0iDjtl5AIcBwWnXz1RzGV7IWlk,15508
|
|
95
|
+
cribl_control_plane/models/inputwef.py,sha256=1HLmJc8pF1YWFm2VylQUOTt_LTWbOUKw4V5673IBtno,23106
|
|
95
96
|
cribl_control_plane/models/inputwindowsmetrics.py,sha256=T57U9K2nnMSDerTmb9lCGhA0819rOuTyd_K75wVvXOs,18112
|
|
96
97
|
cribl_control_plane/models/inputwineventlogs.py,sha256=mXHwVozyx6l2NvGL3zML0QYw1zWaR8XCtJhj9UUWxd4,10573
|
|
97
|
-
cribl_control_plane/models/inputwiz.py,sha256=
|
|
98
|
-
cribl_control_plane/models/inputzscalerhec.py,sha256=
|
|
98
|
+
cribl_control_plane/models/inputwiz.py,sha256=2vRVPgQF7S0u-cDaXUPNEPir0LisAXw1Q0vBGJoNURU,15211
|
|
99
|
+
cribl_control_plane/models/inputzscalerhec.py,sha256=Lc1LcAYrfGT-TXHBwnrHiHQ4wMILkqOfsWHXT6pChHk,21001
|
|
99
100
|
cribl_control_plane/models/listinputop.py,sha256=oj7CRRp7DTtHI3WKPKLoEL30a_JrMp48V33pRPgUMmE,697
|
|
100
|
-
cribl_control_plane/models/listoutputop.py,sha256=
|
|
101
|
+
cribl_control_plane/models/listoutputop.py,sha256=Gzm5NcwbyuJ3xacm_emZeKwVn2HNPV1fv9aCmDEw8sc,714
|
|
101
102
|
cribl_control_plane/models/listpipelineop.py,sha256=w-tyP0jqc3YKsSceTQJYuhJ7v-ZqgZWVVfO527YFGFg,722
|
|
102
103
|
cribl_control_plane/models/listroutesop.py,sha256=xqutne_6fjll4fIDk8uT7W7RVFB3dkIUealZLRUgDEA,704
|
|
103
104
|
cribl_control_plane/models/logininfo.py,sha256=LK3bou-rX4W9HBu2HrR1z6eGibrhwY_y7dy0Z60ygXE,338
|
|
@@ -181,16 +182,15 @@ cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D
|
|
|
181
182
|
cribl_control_plane/models/updatehectokenrequest.py,sha256=Pq0JnAZuDqdU_g6mmCvfxfMgeK9Pu3uVXfD9sFWfjKQ,787
|
|
182
183
|
cribl_control_plane/models/updateinputbyidop.py,sha256=DtufjoD9UEPnKT2QOggfMDB1Pv2rwj9cEVuAJKbv39U,1300
|
|
183
184
|
cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=-Q8ZP1yDmQmB9aylQNTs4zR1q6NH-Gi2fhlyiDyqWKI,1677
|
|
184
|
-
cribl_control_plane/models/updateoutputbyidop.py,sha256=
|
|
185
|
+
cribl_control_plane/models/updateoutputbyidop.py,sha256=odGoTLgvR_AEYizuVMKjcDeB4Uua3BX_U-7OHw7wHiU,1333
|
|
185
186
|
cribl_control_plane/models/updatepipelinebyidop.py,sha256=CPCiszliWVcewMyZ26_R8OvtbJA8RwrEj_XQFoZTSJg,1420
|
|
186
187
|
cribl_control_plane/models/updateroutesbyidop.py,sha256=k6vejvOHHqyfp1oR3aDXEXYIUu6NeRHBl7s9k-jcyiE,1440
|
|
187
|
-
cribl_control_plane/outputs.py,sha256=nwSb8cmvcJsDLqqBQH_l6BsqbGZj81B6tPgF9ib5jOw,65345
|
|
188
188
|
cribl_control_plane/pipelines.py,sha256=L-HbP4gyl05hxb4-HNvkFrk1w6xFccfNr4-AJy3Vjxo,36038
|
|
189
189
|
cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
190
190
|
cribl_control_plane/routes_sdk.py,sha256=bxL7KZKdw4Ot78Q3V4Ea5SWrhnEM0fHdRUwQRDeF0Oc,31227
|
|
191
|
-
cribl_control_plane/sdk.py,sha256=
|
|
191
|
+
cribl_control_plane/sdk.py,sha256=tHxMX5Mi24moDBFRZBs_79AllVtEWTpAj3Tko_Dk33s,6822
|
|
192
192
|
cribl_control_plane/sdkconfiguration.py,sha256=bit6SSOyHqvibdtgNad5_ZcgMotk8NJfgHpKsBK8HFg,1259
|
|
193
|
-
cribl_control_plane/sources.py,sha256=
|
|
193
|
+
cribl_control_plane/sources.py,sha256=X6irteRhZ-D44d2Ece7iWFcfeManP9bQGUZZLFHr-vg,54280
|
|
194
194
|
cribl_control_plane/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
195
195
|
cribl_control_plane/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
196
196
|
cribl_control_plane/utils/__init__.py,sha256=BQt6xIdX86A6mOHAnxAXBXaPgdUJtDy2-_4ymAsII_Y,5436
|
|
@@ -210,6 +210,6 @@ cribl_control_plane/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6
|
|
|
210
210
|
cribl_control_plane/utils/unmarshal_json_response.py,sha256=yxi3F_O3SCU0SrexiR3BvQS-E81pW2siLgpTXYegAyg,595
|
|
211
211
|
cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
212
212
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
213
|
-
cribl_control_plane-0.0.
|
|
214
|
-
cribl_control_plane-0.0.
|
|
215
|
-
cribl_control_plane-0.0.
|
|
213
|
+
cribl_control_plane-0.0.16.dist-info/METADATA,sha256=ver5cZnznzeqg5cj2oooOPmVp2as2YrVon9d_ACZ8cU,23280
|
|
214
|
+
cribl_control_plane-0.0.16.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
215
|
+
cribl_control_plane-0.0.16.dist-info/RECORD,,
|
|
File without changes
|