cribl-control-plane 0.0.13__py3-none-any.whl → 0.0.14__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/models/__init__.py +97 -4
- cribl_control_plane/models/createroutesappendbyidop.py +45 -0
- cribl_control_plane/models/getroutesbyidop.py +37 -0
- cribl_control_plane/models/inputsystemstate.py +4 -4
- cribl_control_plane/models/listroutesop.py +24 -0
- cribl_control_plane/models/routecloneconf.py +13 -0
- cribl_control_plane/models/routeconf.py +56 -0
- cribl_control_plane/models/routes.py +97 -0
- cribl_control_plane/models/routesroute.py +70 -0
- cribl_control_plane/models/routesroute_input.py +67 -0
- cribl_control_plane/models/updateroutesbyidop.py +48 -0
- cribl_control_plane/routes_sdk.py +765 -0
- cribl_control_plane/sdk.py +4 -0
- {cribl_control_plane-0.0.13.dist-info → cribl_control_plane-0.0.14.dist-info}/METADATA +9 -2
- {cribl_control_plane-0.0.13.dist-info → cribl_control_plane-0.0.14.dist-info}/RECORD +17 -7
- {cribl_control_plane-0.0.13.dist-info → cribl_control_plane-0.0.14.dist-info}/WHEEL +0 -0
cribl_control_plane/sdk.py
CHANGED
|
@@ -17,6 +17,7 @@ if TYPE_CHECKING:
|
|
|
17
17
|
from cribl_control_plane.auth_sdk import AuthSDK
|
|
18
18
|
from cribl_control_plane.health import Health
|
|
19
19
|
from cribl_control_plane.outputs import Outputs
|
|
20
|
+
from cribl_control_plane.routes_sdk import RoutesSDK
|
|
20
21
|
from cribl_control_plane.sources import Sources
|
|
21
22
|
|
|
22
23
|
|
|
@@ -27,6 +28,8 @@ class CriblControlPlane(BaseSDK):
|
|
|
27
28
|
r"""Actions related to Sources"""
|
|
28
29
|
outputs: "Outputs"
|
|
29
30
|
r"""Actions related to outputs"""
|
|
31
|
+
routes: "RoutesSDK"
|
|
32
|
+
r"""Actions related to Routes"""
|
|
30
33
|
auth: "AuthSDK"
|
|
31
34
|
r"""Actions related to authentication. Do not use the /auth endpoints in Cribl.Cloud deployments. Instead, follow the instructions at https://docs.cribl.io/stream/api-tutorials/#criblcloud to authenticate for Cribl.Cloud."""
|
|
32
35
|
health: "Health"
|
|
@@ -34,6 +37,7 @@ class CriblControlPlane(BaseSDK):
|
|
|
34
37
|
_sub_sdk_map = {
|
|
35
38
|
"sources": ("cribl_control_plane.sources", "Sources"),
|
|
36
39
|
"outputs": ("cribl_control_plane.outputs", "Outputs"),
|
|
40
|
+
"routes": ("cribl_control_plane.routes_sdk", "RoutesSDK"),
|
|
37
41
|
"auth": ("cribl_control_plane.auth_sdk", "AuthSDK"),
|
|
38
42
|
"health": ("cribl_control_plane.health", "Health"),
|
|
39
43
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.14
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -218,6 +218,13 @@ with CriblControlPlane(
|
|
|
218
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
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
220
|
|
|
221
|
+
### [routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
|
|
222
|
+
|
|
223
|
+
* [list_routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list_routes) - Get a list of Routes objects
|
|
224
|
+
* [get_routes_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get_routes_by_id) - Get Routes by ID
|
|
225
|
+
* [update_routes_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update_routes_by_id) - Update Routes
|
|
226
|
+
* [create_routes_append_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#create_routes_append_by_id) - Appends routes to the end of the routing table
|
|
227
|
+
|
|
221
228
|
### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
|
|
222
229
|
|
|
223
230
|
* [list_source](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#list_source) - Get a list of Source objects
|
|
@@ -345,7 +352,7 @@ with CriblControlPlane(
|
|
|
345
352
|
|
|
346
353
|
|
|
347
354
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
348
|
-
* [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of
|
|
355
|
+
* [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 22 methods.*
|
|
349
356
|
* [`ResponseValidationError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
|
|
350
357
|
|
|
351
358
|
</details>
|
|
@@ -4,7 +4,7 @@ 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=51I686tKzWgfRIiD08ybFi84gtLMW06fvYEUTbeJIas,542
|
|
8
8
|
cribl_control_plane/auth_sdk.py,sha256=Jxw8hPHbBFay5eXcaRBtgdCC06mh5XHkRbZcIM0vvB8,7431
|
|
9
9
|
cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
|
|
10
10
|
cribl_control_plane/errors/__init__.py,sha256=Xyh3WNPYYsJGQfGBLeaaK6eqwsJOtx-__zmvwwr4Mns,1833
|
|
@@ -16,13 +16,14 @@ cribl_control_plane/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon
|
|
|
16
16
|
cribl_control_plane/errors/responsevalidationerror.py,sha256=TvZ9dOsy-oFBYA_wZCOOEXeGKMBQtzCVX-1-i7epQTE,720
|
|
17
17
|
cribl_control_plane/health.py,sha256=nK_Q4lDXi8zkfAqcIv9X4zBGi8BzomaBQWBD7TsSwLk,6743
|
|
18
18
|
cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
19
|
-
cribl_control_plane/models/__init__.py,sha256=
|
|
19
|
+
cribl_control_plane/models/__init__.py,sha256=Pyzpqk54hTkWjv2YmV6BcpZ-1SY5AW3Gn5T8c-4g_Sc,312629
|
|
20
20
|
cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
|
|
21
21
|
cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
|
|
22
22
|
cribl_control_plane/models/createinputhectokenbyidop.py,sha256=KfgOUUTbWqoDIPmwmFmKi-HzqRQFt_KpmKqkqXBzjAA,1438
|
|
23
23
|
cribl_control_plane/models/createinputop.py,sha256=l5Hz9ANzw4Gjh25FVf_okFzXxZWjA7GOx1tp8yWhKaI,701
|
|
24
24
|
cribl_control_plane/models/createoutputop.py,sha256=ICfFYevaHDMI9Y3YU6jJAncukiyf8qSsy7z5F0Nyszw,708
|
|
25
25
|
cribl_control_plane/models/createoutputtestbyidop.py,sha256=9ANFrcGZ16v-G_5yUt-K7TFgIkG2kIrDZeF2XkoI_SY,1523
|
|
26
|
+
cribl_control_plane/models/createroutesappendbyidop.py,sha256=_Fo5lDkv-lqPxS2R59cIBP9A9jnc9SpPjAwNg1dCLI8,1515
|
|
26
27
|
cribl_control_plane/models/criblevent.py,sha256=eT6WbxhOOCx5OQLkAfhwG6IeSUuUmF7hLTxeCHut4bo,361
|
|
27
28
|
cribl_control_plane/models/deleteinputbyidop.py,sha256=8mFzAyTUv6EJ-5Ivm4TSklARGQVim5busV7u51zHyzo,1067
|
|
28
29
|
cribl_control_plane/models/deleteoutputbyidop.py,sha256=jtuYImnwVzmfYLcB1UgSpoZlttJ3OQa_tzKFd4U7Xgo,1076
|
|
@@ -31,6 +32,7 @@ cribl_control_plane/models/getinputbyidop.py,sha256=5V8AlcIjtaLkmBB1y9Aivng8TmM4
|
|
|
31
32
|
cribl_control_plane/models/getoutputbyidop.py,sha256=H7vIyU-ODU0Lmh71v4FmNawU_mBMBksyzUC0WzwXRfQ,1058
|
|
32
33
|
cribl_control_plane/models/getoutputpqbyidop.py,sha256=H9Y416LFT2NMbucG16Xyzv48Gr4NhCxTclnPYv0mtLA,1020
|
|
33
34
|
cribl_control_plane/models/getoutputsamplesbyidop.py,sha256=D3dOQU5Ca66IJm-xdUITpvNic1ubY-R3zHUS2ILuNv0,1177
|
|
35
|
+
cribl_control_plane/models/getroutesbyidop.py,sha256=9TeXnLc_WkHoAYbykYxlDP-I0AzsrlYi-iA28jhmpZ8,1058
|
|
34
36
|
cribl_control_plane/models/healthstatus.py,sha256=oGS-ntDNekMLdbjGQtGTDsFh7gDn_Fz9KUVyLix29m8,1056
|
|
35
37
|
cribl_control_plane/models/input.py,sha256=qJc9jqd52wQ1s5p76_ZgafxK7mQeuSoememiF2go62U,7604
|
|
36
38
|
cribl_control_plane/models/inputappscope.py,sha256=2wnXaWUQbhy2KYtv6q90FKRaAo8t-dKE0UdsRy0FFcc,20813
|
|
@@ -83,7 +85,7 @@ cribl_control_plane/models/inputsplunksearch.py,sha256=HAWxi4aBNS25QqphFyRjI5YYi
|
|
|
83
85
|
cribl_control_plane/models/inputsqs.py,sha256=Lt_-c1BDI0xZmKPbF9mmHH8CnlHW4iLWd0xuDPNsU0M,15742
|
|
84
86
|
cribl_control_plane/models/inputsyslog_union.py,sha256=eqy6TtWWL8SE3gmBWnsBEVBOz0aEGXR0Ubb7cvw0qhw,37250
|
|
85
87
|
cribl_control_plane/models/inputsystemmetrics.py,sha256=mbV7oHF99NRhKA0extZgwV5xxumDHcTLfpDwt6hGeoE,20837
|
|
86
|
-
cribl_control_plane/models/inputsystemstate.py,sha256=
|
|
88
|
+
cribl_control_plane/models/inputsystemstate.py,sha256=Xs80TsCR8s20fIEIGYo8UYJ6JJAqtVADhwHIOy-cl8U,15871
|
|
87
89
|
cribl_control_plane/models/inputtcp.py,sha256=mb_f_SpiOJs4qVTeRqds9TZXm1AWn5Ho7BrlX8OHBgc,16962
|
|
88
90
|
cribl_control_plane/models/inputtcpjson.py,sha256=MFUovimrFYBLq_k_xylnyRljMFs3zMmp1K5OE0fEjdk,15464
|
|
89
91
|
cribl_control_plane/models/inputwef.py,sha256=VhDCyAQIbaQMiRp7WkEM4gs83KIsrEwcxqRXxW9X1zA,23062
|
|
@@ -93,6 +95,7 @@ cribl_control_plane/models/inputwiz.py,sha256=Qy2OI2OaNIWiO14VAR3KDLqr-qt3ocikEF
|
|
|
93
95
|
cribl_control_plane/models/inputzscalerhec.py,sha256=vzLUVG71NVZFRsMFThQmrwSv25azZkHc__UGD6QW0fQ,20957
|
|
94
96
|
cribl_control_plane/models/listinputop.py,sha256=oj7CRRp7DTtHI3WKPKLoEL30a_JrMp48V33pRPgUMmE,697
|
|
95
97
|
cribl_control_plane/models/listoutputop.py,sha256=MvTcC1BprDokYNU2xrTG4hkhS9jfhA-rAPkI1LLlTdw,704
|
|
98
|
+
cribl_control_plane/models/listroutesop.py,sha256=xqutne_6fjll4fIDk8uT7W7RVFB3dkIUealZLRUgDEA,704
|
|
96
99
|
cribl_control_plane/models/logininfo.py,sha256=LK3bou-rX4W9HBu2HrR1z6eGibrhwY_y7dy0Z60ygXE,338
|
|
97
100
|
cribl_control_plane/models/output.py,sha256=R38_AL1cRyZecwKBwJshPx-2Mif5sfKko_8udQVZP-k,8734
|
|
98
101
|
cribl_control_plane/models/outputazureblob.py,sha256=VQgwbKny91-nJxNMAvjxcJk4oFFj64Y5nUwEtcoNejk,23260
|
|
@@ -162,15 +165,22 @@ cribl_control_plane/models/outputtestresponse.py,sha256=cKeXPvSpCzU6cWpXvHoujp-p
|
|
|
162
165
|
cribl_control_plane/models/outputwavefront.py,sha256=jScBO-aQbsPWXOxdvFLc4sMS0r2jFCosg31Ui4M5Ch0,18368
|
|
163
166
|
cribl_control_plane/models/outputwebhook.py,sha256=w0G-YILMVuAO5hzs5xVtLgRpdmjFIOyYOlV9WLLoHUA,34235
|
|
164
167
|
cribl_control_plane/models/outputxsiam.py,sha256=cbawTY-Me8G_a6UhKgtdNoaw5MRQXEXqgiOquGS7R4k,20460
|
|
168
|
+
cribl_control_plane/models/routecloneconf.py,sha256=ESvEj0vl58BGOwJB5kYu3vMAm88JizYHXU7qorGdw9M,293
|
|
169
|
+
cribl_control_plane/models/routeconf.py,sha256=whFyvzWwmEqAo_0HoTFKJTZqQ2p8kdPKaZJIlh9nS58,1451
|
|
170
|
+
cribl_control_plane/models/routes.py,sha256=fo_y-kbgNg6AObXiYd8HQujMeAAOFdRav4904gNpKnI,2626
|
|
171
|
+
cribl_control_plane/models/routesroute.py,sha256=7hFUWpgVDBj0N117IFxZRGkFqJntbe4NyBakVyMKsTY,2339
|
|
172
|
+
cribl_control_plane/models/routesroute_input.py,sha256=VmRpoMuLE5_8yavR_Q8lpHEmEbF6t26Ck1Jp9KBPGqY,2294
|
|
165
173
|
cribl_control_plane/models/schemeclientoauth.py,sha256=MaZs9lOB3_y8uTZNTHIuAG_X66ZrEpRj0qZGAsBfXFM,712
|
|
166
174
|
cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D4kwRsAQvY,1097
|
|
167
175
|
cribl_control_plane/models/updatehectokenrequest.py,sha256=Pq0JnAZuDqdU_g6mmCvfxfMgeK9Pu3uVXfD9sFWfjKQ,787
|
|
168
176
|
cribl_control_plane/models/updateinputbyidop.py,sha256=DtufjoD9UEPnKT2QOggfMDB1Pv2rwj9cEVuAJKbv39U,1300
|
|
169
177
|
cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=-Q8ZP1yDmQmB9aylQNTs4zR1q6NH-Gi2fhlyiDyqWKI,1677
|
|
170
178
|
cribl_control_plane/models/updateoutputbyidop.py,sha256=n4AHGPZEw1a9Iox5jWx6xynXIHqYXQIkslU-mZ4LAFg,1313
|
|
179
|
+
cribl_control_plane/models/updateroutesbyidop.py,sha256=k6vejvOHHqyfp1oR3aDXEXYIUu6NeRHBl7s9k-jcyiE,1440
|
|
171
180
|
cribl_control_plane/outputs.py,sha256=nwSb8cmvcJsDLqqBQH_l6BsqbGZj81B6tPgF9ib5jOw,65345
|
|
172
181
|
cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
173
|
-
cribl_control_plane/
|
|
182
|
+
cribl_control_plane/routes_sdk.py,sha256=WP9AW-7J_8RN-ZtZgTQNLzMMnnyI6ve6VkbvbKVfWpA,31131
|
|
183
|
+
cribl_control_plane/sdk.py,sha256=Y7S1pgpxalQIbKqXC9zx-iNaKZc9IArN9aaUOfLEKPI,6671
|
|
174
184
|
cribl_control_plane/sdkconfiguration.py,sha256=bit6SSOyHqvibdtgNad5_ZcgMotk8NJfgHpKsBK8HFg,1259
|
|
175
185
|
cribl_control_plane/sources.py,sha256=fx1GpffRuVCDcln-qzpaGuYb1-6QWAZUtUWsc9w2LY4,54189
|
|
176
186
|
cribl_control_plane/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
@@ -192,6 +202,6 @@ cribl_control_plane/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6
|
|
|
192
202
|
cribl_control_plane/utils/unmarshal_json_response.py,sha256=yxi3F_O3SCU0SrexiR3BvQS-E81pW2siLgpTXYegAyg,595
|
|
193
203
|
cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
194
204
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
195
|
-
cribl_control_plane-0.0.
|
|
196
|
-
cribl_control_plane-0.0.
|
|
197
|
-
cribl_control_plane-0.0.
|
|
205
|
+
cribl_control_plane-0.0.14.dist-info/METADATA,sha256=TDzeTP6TxUMpttPWz0Uacgtx4b1OvJdOXCzJg7LzVrA,22159
|
|
206
|
+
cribl_control_plane-0.0.14.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
207
|
+
cribl_control_plane-0.0.14.dist-info/RECORD,,
|
|
File without changes
|