cribl-control-plane 0.0.22__py3-none-any.whl → 0.0.24__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.

Files changed (36) hide show
  1. cribl_control_plane/_version.py +3 -3
  2. cribl_control_plane/auth_sdk.py +4 -4
  3. cribl_control_plane/{distributed.py → deployments.py} +3 -5
  4. cribl_control_plane/destinations.py +46 -46
  5. cribl_control_plane/groups_sdk.py +222 -32
  6. cribl_control_plane/{health.py → healthinfo.py} +5 -7
  7. cribl_control_plane/{lake.py → lakedatasets.py} +21 -23
  8. cribl_control_plane/models/__init__.py +125 -5382
  9. cribl_control_plane/models/createinputop.py +2 -18216
  10. cribl_control_plane/models/createoutputop.py +2 -18415
  11. cribl_control_plane/models/createpipelineop.py +2 -2
  12. cribl_control_plane/models/input.py +6 -6
  13. cribl_control_plane/models/inputedgeprometheus.py +7 -10
  14. cribl_control_plane/models/{inputgrafana_union.py → inputgrafana.py} +4 -4
  15. cribl_control_plane/models/{inputsyslog_union.py → inputsyslog.py} +4 -4
  16. cribl_control_plane/models/inputwef.py +4 -4
  17. cribl_control_plane/models/outputgooglepubsub.py +3 -3
  18. cribl_control_plane/models/outputsplunklb.py +8 -8
  19. cribl_control_plane/models/routes.py +0 -24
  20. cribl_control_plane/models/updateinputbyidop.py +2 -2
  21. cribl_control_plane/models/updateoutputbyidop.py +2 -2
  22. cribl_control_plane/models/updatepipelinebyidop.py +2 -2
  23. cribl_control_plane/models/updateroutesbyidop.py +5 -6
  24. cribl_control_plane/{workers_sdk.py → nodes.py} +13 -15
  25. cribl_control_plane/packs.py +16 -190
  26. cribl_control_plane/pipelines.py +10 -10
  27. cribl_control_plane/routes_sdk.py +18 -22
  28. cribl_control_plane/sdk.py +12 -20
  29. cribl_control_plane/sources.py +38 -38
  30. cribl_control_plane/versioning.py +52 -52
  31. {cribl_control_plane-0.0.22.dist-info → cribl_control_plane-0.0.24.dist-info}/METADATA +74 -78
  32. {cribl_control_plane-0.0.22.dist-info → cribl_control_plane-0.0.24.dist-info}/RECORD +33 -36
  33. cribl_control_plane/models/routesroute_input.py +0 -67
  34. cribl_control_plane/models/updatepacksop.py +0 -37
  35. cribl_control_plane/teams.py +0 -203
  36. {cribl_control_plane-0.0.22.dist-info → cribl_control_plane-0.0.24.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: cribl-control-plane
3
- Version: 0.0.22
3
+ Version: 0.0.24
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -125,7 +125,7 @@ with CriblControlPlane(
125
125
  ),
126
126
  ) as ccp_client:
127
127
 
128
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
128
+ res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
129
129
  "<value 1>",
130
130
  "<value 2>",
131
131
  ], bucket_name="<value>", cache_connection={
@@ -182,7 +182,7 @@ async def main():
182
182
  ),
183
183
  ) as ccp_client:
184
184
 
185
- res = await ccp_client.lake.create_cribl_lake_dataset_by_lake_id_async(lake_id="<id>", id="<id>", accelerated_fields=[
185
+ res = await ccp_client.lake_datasets.create_async(lake_id="<id>", id="<id>", accelerated_fields=[
186
186
  "<value 1>",
187
187
  "<value 2>",
188
188
  ], bucket_name="<value>", cache_connection={
@@ -249,7 +249,7 @@ with CriblControlPlane(
249
249
  ),
250
250
  ) as ccp_client:
251
251
 
252
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
252
+ res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
253
253
  "<value 1>",
254
254
  "<value 2>",
255
255
  ], bucket_name="<value>", cache_connection={
@@ -298,106 +298,102 @@ with CriblControlPlane(
298
298
 
299
299
  ### [auth](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/authsdk/README.md)
300
300
 
301
- * [login](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/authsdk/README.md#login) - Log in and obtain Auth token
301
+ * [fetch_token](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/authsdk/README.md#fetch_token) - Log in and fetch an authentication token
302
302
 
303
303
 
304
- ### [destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
304
+ ### [deployments](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/deployments/README.md)
305
305
 
306
- * [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
307
- * [create_destination](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create_destination) - Create Destination
308
- * [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
309
- * [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
310
- * [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
311
- * [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
312
- * [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
313
- * [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.
314
- * [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
306
+ * [get_summary](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/deployments/README.md#get_summary) - Retrieve a summary of the Distributed deployment
315
307
 
316
- ### [distributed](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/distributed/README.md)
308
+ ### [destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
317
309
 
318
- * [get_summary](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/distributed/README.md#get_summary) - Get summary of Distributed deployment
310
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#list) - List all Destinations
311
+ * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create) - Create a Destination
312
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get) - Retrieve a Destination
313
+ * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#update) - Update a Destination
314
+ * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#delete) - Delete a Destination
315
+ * [clear_persistent_queue](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#clear_persistent_queue) - Clear the persistent queue for a Destination
316
+ * [get_persistent_queue_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get_persistent_queue_status) - Retrieve information about the latest job to clear the persistent queue for a Destination
317
+ * [get_sample_data](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get_sample_data) - Retrieve sample event data for a Destination
318
+ * [create_sample_data](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create_sample_data) - Send sample event data to a Destination
319
319
 
320
320
  ### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
321
321
 
322
- * [get_groups_config_version_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_config_version_by_id) - Get effective bundle version for given Group
323
- * [create_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create_products_groups_by_product) - Create a Fleet or Worker Group
324
- * [get_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_products_groups_by_product) - Get a list of ConfigGroup objects
325
- * [delete_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#delete_groups_by_id) - Delete a Fleet or Worker Group
326
- * [get_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_by_id) - Get a specific ConfigGroup object
327
- * [update_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update_groups_by_id) - Update a Fleet or Worker Group
328
- * [update_groups_deploy_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update_groups_deploy_by_id) - Deploy commits for a Fleet or Worker Group
329
- * [get_groups_acl_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_acl_by_id) - ACL of members with permissions for resources in this Group
322
+ * [get_config_version](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_config_version) - Retrieve the configuration version for a Worker Group or Edge Fleet
323
+ * [create_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create_by_product) - Create a Worker Group or Edge Fleet for the specified Cribl product
324
+ * [get_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_by_product) - List all Worker Groups or Edge Fleets for the specified Cribl product
325
+ * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#delete) - Delete a Worker Group or Edge Fleet
326
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get) - Retrieve a Worker Group or Edge Fleet
327
+ * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update) - Update a Worker Group or Edge Fleet
328
+ * [deploy_commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#deploy_commits) - Deploy commits to a Worker Group or Edge Fleet
329
+ * [get_team_access_control_list_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_team_access_control_list_by_product) - Retrieve the Access Control List (ACL) for teams with permissions on a Worker Group or Edge Fleet for the specified Cribl product
330
+ * [get_access_control_list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_access_control_list) - Retrieve the Access Control List (ACL) for a Worker Group or Edge Fleet
331
+
332
+ ### [health_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/healthinfo/README.md)
330
333
 
331
- ### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
334
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/healthinfo/README.md#get) - Retrieve health status of the server
332
335
 
333
- * [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
336
+ ### [lake_datasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
334
337
 
335
- ### [lake](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md)
338
+ * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#create) - Create a Lake Dataset in the specified Lake
339
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#list) - List all Lake Datasets in the specified Lake
340
+ * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#delete) - Delete a Lake Dataset in the specified Lake
341
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#get) - Retrieve a Lake Dataset in the specified Lake
342
+ * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#update) - Update a Lake Dataset in the specified Lake
336
343
 
337
- * [create_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#create_cribl_lake_dataset_by_lake_id) - Create a Dataset in the specified Lake
338
- * [get_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#get_cribl_lake_dataset_by_lake_id) - Get the list of Dataset contained in the specified Lake
339
- * [delete_cribl_lake_dataset_by_lake_id_and_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#delete_cribl_lake_dataset_by_lake_id_and_id) - Delete a Dataset in the specified Lake
340
- * [get_cribl_lake_dataset_by_lake_id_and_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#get_cribl_lake_dataset_by_lake_id_and_id) - Get a Dataset in the specified Lake
341
- * [update_cribl_lake_dataset_by_lake_id_and_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#update_cribl_lake_dataset_by_lake_id_and_id) - Update a Dataset in the specified Lake
344
+ ### [nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
345
+
346
+ * [get_count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#get_count) - Retrieve a count of Worker and Edge Nodes
347
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#list) - Retrieve detailed metadata for Worker and Edge Nodes
348
+ * [restart](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#restart) - Restart Worker and Edge Nodes
342
349
 
343
350
  ### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
344
351
 
345
- * [create_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#create_packs) - Install Pack
346
- * [get_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get_packs) - Get info on packs
347
- * [update_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update_packs) - Upload Pack
348
- * [delete_packs_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#delete_packs_by_id) - Uninstall Pack from the system
349
- * [update_packs_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update_packs_by_id) - Upgrade Pack
352
+ * [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Install a Pack
353
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#list) - List all Packs
354
+ * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#delete) - Uninstall a Pack
355
+ * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update) - Update a Pack
350
356
 
351
357
  ### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
352
358
 
353
359
  * [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
354
- * [create_pipeline](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#create_pipeline) - Create Pipeline
360
+ * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#create) - Create a Pipeline
355
361
  * [get_pipeline_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#get_pipeline_by_id) - Get Pipeline by ID
356
- * [update_pipeline_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#update_pipeline_by_id) - Update Pipeline
362
+ * [update_pipeline_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#update_pipeline_by_id) - Update a Pipeline
357
363
  * [delete_pipeline_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#delete_pipeline_by_id) - Delete Pipeline
358
364
 
359
365
  ### [routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
360
366
 
361
- * [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
362
- * [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
363
- * [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
364
- * [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
367
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - Get a list of Routes objects
368
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get Routes by ID
369
+ * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update Routes
370
+ * [append](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#append) - Append Routes to the end of the Routing table
365
371
 
366
372
  ### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
367
373
 
368
- * [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
369
- * [create_source](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create_source) - Create Source
370
- * [get_source_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#get_source_by_id) - Get Source by ID
371
- * [update_source_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update_source_by_id) - Update Source
372
- * [delete_source_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#delete_source_by_id) - Delete Source
373
- * [create_source_hec_token_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create_source_hec_token_by_id) - Add token and optional metadata to an existing HEC Source
374
- * [update_source_hec_token_by_id_and_token](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update_source_hec_token_by_id_and_token) - Update token metadata on existing HEC Source
375
-
376
- ### [teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
377
-
378
- * [get_products_groups_acl_teams_by_product_and_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md#get_products_groups_acl_teams_by_product_and_id) - ACL of team with permissions for resources in this Group
374
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#list) - List all Sources
375
+ * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create) - Create a Source
376
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#get) - Retrieve a Source
377
+ * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update) - Update a Source
378
+ * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#delete) - Delete a Source
379
+ * [create_hec_token](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create_hec_token) - Add an HEC token and optional metadata to a Splunk HEC Source
380
+ * [update_hec_token_metadata](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update_hec_token_metadata) - Update metadata for an HEC token for a Splunk HEC Source
379
381
 
380
382
  ### [versioning](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md)
381
383
 
382
- * [get_version_branch](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_branch) - get the list of branches
383
- * [create_version_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_commit) - create a new commit containing the current configs the given log message describing the changes.
384
- * [get_version_count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_count) - get the count of files of changed
385
- * [get_version_current_branch](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_current_branch) - returns git branch that the config is checked out to, if any
386
- * [get_version_diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_diff) - get the textual diff for given commit
387
- * [get_version_files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_files) - get the files changed
388
- * [get_version_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_info) - Get info about versioning availability
389
- * [create_version_push](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_push) - push the current configs to the remote repository.
390
- * [create_version_revert](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_revert) - revert a commit
391
- * [get_version_show](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_show) - get the log message and textual diff for given commit
392
- * [get_version_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_status) - get the the working tree status
393
- * [create_version_sync](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_sync) - syncs with remote repo via POST requests
394
- * [create_version_undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_undo) - undo the last commit
395
-
396
- ### [workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md)
397
-
398
- * [get_summary_workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#get_summary_workers) - get worker and edge nodes count
399
- * [get_workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#get_workers) - get worker and edge nodes
400
- * [update_workers_restart](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#update_workers_restart) - restarts worker nodes
384
+ * [get_branch](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_branch) - List all branches in the Git repository used for Cribl configuration
385
+ * [create_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_commit) - Create a new commit for pending changes to the Cribl configuration
386
+ * [get_file_count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_file_count) - Retrieve a count of files that changed since a commit
387
+ * [get_branch_name](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_branch_name) - Retrieve the name of the Git branch that the Cribl configuration is checked out to
388
+ * [get_diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_diff) - Retrieve the diff for a commit
389
+ * [get_file_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_file_info) - Retrieve the names and statuses of files that changed since a commit
390
+ * [get_config_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_config_status) - Retrieve the configuration and status for the Git integration
391
+ * [push_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#push_commit) - Push a commit from the local repository to the remote repository
392
+ * [revert_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#revert_commit) - Revert a commit in the local repository
393
+ * [show_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#show_commit) - Retrieve the diff and log message for a commit
394
+ * [get_current_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_current_status) - Retrieve the status of the current working tree
395
+ * [sync_local_remote](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#sync_local_remote) - Synchronize the local branch with the remote repository
396
+ * [clean_working_dir](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#clean_working_dir) - Undo the most recent commit and restore the local repository to the previous commit
401
397
 
402
398
  </details>
403
399
  <!-- End Available Resources and Operations [operations] -->
@@ -421,7 +417,7 @@ with CriblControlPlane(
421
417
  ),
422
418
  ) as ccp_client:
423
419
 
424
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
420
+ res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
425
421
  "<value 1>",
426
422
  "<value 2>",
427
423
  ], bucket_name="<value>", cache_connection={
@@ -477,7 +473,7 @@ with CriblControlPlane(
477
473
  ),
478
474
  ) as ccp_client:
479
475
 
480
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
476
+ res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
481
477
  "<value 1>",
482
478
  "<value 2>",
483
479
  ], bucket_name="<value>", cache_connection={
@@ -547,7 +543,7 @@ with CriblControlPlane(
547
543
  res = None
548
544
  try:
549
545
 
550
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
546
+ res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
551
547
  "<value 1>",
552
548
  "<value 2>",
553
549
  ], bucket_name="<value>", cache_connection={
@@ -615,7 +611,7 @@ with CriblControlPlane(
615
611
 
616
612
 
617
613
  **Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
618
- * [`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 63 methods.*
614
+ * [`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 62 methods.*
619
615
  * [`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.
620
616
 
621
617
  </details>
@@ -4,11 +4,11 @@ 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=zhDl3FkZY3vMkJdwbg6CrbWUyeyEbCRmzX4FfsOo2qE,542
8
- cribl_control_plane/auth_sdk.py,sha256=Jxw8hPHbBFay5eXcaRBtgdCC06mh5XHkRbZcIM0vvB8,7431
7
+ cribl_control_plane/_version.py,sha256=LTLOFLxsK0EM3ArhsGTujhND6g8XYsC9WU3tJ9DQC8I,542
8
+ cribl_control_plane/auth_sdk.py,sha256=4-cZmuGLihXpQTr3cI6cNo_MW3ucph8Dzq1DSijUZQk,7467
9
9
  cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
10
- cribl_control_plane/destinations.py,sha256=9L_VzqiAh8xAN4JNBsU7FT7ZFRiBuhtf-5mJBCbZj-g,65733
11
- cribl_control_plane/distributed.py,sha256=l_XY710__p9Ghju9CTYT9fYBGvfoitqbStY3gC9cayE,7507
10
+ cribl_control_plane/deployments.py,sha256=cYDu7W6IRec0-urpDXLNNUtoFdxsle2XV_i1cwB1aI4,7486
11
+ cribl_control_plane/destinations.py,sha256=-jTXxdmKWCZZS030t5J1uoe09rOU_hUwPXJkueUQ4xY,65239
12
12
  cribl_control_plane/errors/__init__.py,sha256=Xyh3WNPYYsJGQfGBLeaaK6eqwsJOtx-__zmvwwr4Mns,1833
13
13
  cribl_control_plane/errors/apierror.py,sha256=Z3b3zk672zHljcdijGLJeJ2LiP1f3VpVDEqUuF7LDAA,1253
14
14
  cribl_control_plane/errors/criblcontrolplaneerror.py,sha256=P9SU33LkmvyURdJbndHJxXu2KW_3u059peZJ8C80LfM,724
@@ -16,11 +16,11 @@ cribl_control_plane/errors/error.py,sha256=fZ72R_qeZ0-xd514dVqKKiqh7zzLmnkpPJfck
16
16
  cribl_control_plane/errors/healthstatus_error.py,sha256=euamtBp065afnXzeaBMjGlQGAN3ONZfDK-RR--FOIzo,962
17
17
  cribl_control_plane/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
18
18
  cribl_control_plane/errors/responsevalidationerror.py,sha256=TvZ9dOsy-oFBYA_wZCOOEXeGKMBQtzCVX-1-i7epQTE,720
19
- cribl_control_plane/groups_sdk.py,sha256=VHmHxqR66luhwZlEaz5EfOdmpc8elKjK8j3UYcOkFAg,72331
20
- cribl_control_plane/health.py,sha256=nK_Q4lDXi8zkfAqcIv9X4zBGi8BzomaBQWBD7TsSwLk,6743
19
+ cribl_control_plane/groups_sdk.py,sha256=rkyVzmd9PJmCzipIIX-mbdtUJiPH35Raxxoo8S5WOW4,80527
20
+ cribl_control_plane/healthinfo.py,sha256=R3WlFwiuXNcsITJEoAxLZGYwLJa7HYHosZDCb6LD6q8,6673
21
21
  cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
22
- cribl_control_plane/lake.py,sha256=dHWnoO4KKOO8fncrdOqnc2sN4nGAWc6nX4UdNP4kx40,46484
23
- cribl_control_plane/models/__init__.py,sha256=vWKq7UvlGJ_acwtZoOMEBqGZT0L_ooe6udtiY_EPYhU,578873
22
+ cribl_control_plane/lakedatasets.py,sha256=Y0sEW-RZIbgKuDeAAhf7m4q8iNRJn1hg38sARR3eBfQ,46144
23
+ cribl_control_plane/models/__init__.py,sha256=_BNkonhbdD1yPYE4Yh8qza0kSiYxgDGC5dfXraN7Ck8,353083
24
24
  cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
25
25
  cribl_control_plane/models/appmode.py,sha256=5xRJz9oP5ah4b6dcay4Q1IbQ9irm6k6x2BrTNysIMY4,300
26
26
  cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
@@ -33,11 +33,11 @@ cribl_control_plane/models/configgroupcloud.py,sha256=l9e1E-JyZGu4JANlU8SIzaXcsZ
33
33
  cribl_control_plane/models/configgrouplookups.py,sha256=1z1DlvlVehqfD6hZMXG0XedZTfoCIpYd0cHav45tiRw,830
34
34
  cribl_control_plane/models/createcribllakedatasetbylakeidop.py,sha256=IMR6uAsZDiK3bVbb9Nnz96XgzPdRVulI9v-MAlg7ur8,1591
35
35
  cribl_control_plane/models/createinputhectokenbyidop.py,sha256=KfgOUUTbWqoDIPmwmFmKi-HzqRQFt_KpmKqkqXBzjAA,1438
36
- cribl_control_plane/models/createinputop.py,sha256=9G6EOCekm30Z_e9UV2e5EdtRdT2ig8h_rA1iRuU2OJo,867541
37
- cribl_control_plane/models/createoutputop.py,sha256=BVIypGl2lzz60gseySEiBJ7wPSYpmCtk2HjOjB4i6P8,911422
36
+ cribl_control_plane/models/createinputop.py,sha256=l5Hz9ANzw4Gjh25FVf_okFzXxZWjA7GOx1tp8yWhKaI,701
37
+ cribl_control_plane/models/createoutputop.py,sha256=lWgs9T_pZR5bHcA0SZndbLuUPjVa_D_uFpqTuM7JiPc,718
38
38
  cribl_control_plane/models/createoutputtestbyidop.py,sha256=2ll9hE3r0VTgyOD7U2obiQFQF4NlbrlEBG3lPXsI5Y8,1533
39
39
  cribl_control_plane/models/createpacksop.py,sha256=ZWmUQ9KU6XbSh_oL7-txQw-7esp-yLexHQvgL2Aw9Mw,769
40
- cribl_control_plane/models/createpipelineop.py,sha256=JNTwQf1nQk5kCYbAvSlLex2X9sTzjwIHoeMeIUbD-NE,726
40
+ cribl_control_plane/models/createpipelineop.py,sha256=vUHkNhYvYqhSAte_1jeBqry7tUL7W6T_s1M7vivuKwg,728
41
41
  cribl_control_plane/models/createproductsgroupsbyproductop.py,sha256=PfVpkgs9imEG2udLXoLB7kTaD2dzOLtI8Ao5MDWyGJE,1633
42
42
  cribl_control_plane/models/createroutesappendbyidop.py,sha256=_Fo5lDkv-lqPxS2R59cIBP9A9jnc9SpPjAwNg1dCLI8,1515
43
43
  cribl_control_plane/models/createversioncommitop.py,sha256=Fez4Jsmqc7H8VJctK6UR-ay7ZihL7dNg5zPBLOeDK4E,792
@@ -96,7 +96,7 @@ cribl_control_plane/models/hbcriblinfo.py,sha256=hA2OxTBrrdu2q5XH5UzfEQUQJ6OKEct
96
96
  cribl_control_plane/models/hbleaderinfo.py,sha256=SU5iM_I4sqxoTOzAQsw-rpOMfXwKl1ymze9nUrw6z6U,503
97
97
  cribl_control_plane/models/healthstatus.py,sha256=8F56PM6Gu4eBCCOiz-hq_sL46mrDxy5F_sC0rBP2PXQ,771
98
98
  cribl_control_plane/models/heartbeatmetadata.py,sha256=IlLu0BnjnwBeXQtZSk4YUj9gKiI8n95ipYJ2Og2x1IQ,2255
99
- cribl_control_plane/models/input.py,sha256=qJc9jqd52wQ1s5p76_ZgafxK7mQeuSoememiF2go62U,7604
99
+ cribl_control_plane/models/input.py,sha256=rShZbzBNp1296YKQuu10DRzkf9bniw5zEd_5bCiHTRI,7552
100
100
  cribl_control_plane/models/inputappscope.py,sha256=BNZCGeZpOoIzfDNoe5S6Lo80HSzvwz6u9KmY2f_tPD8,19905
101
101
  cribl_control_plane/models/inputazureblob.py,sha256=Uc3rFKDNQfoywHkw9x-3-UxFypWLFBXBglp7ga5UiJA,14822
102
102
  cribl_control_plane/models/inputcollection.py,sha256=gt4yqEBcudPhV7pKmfeKtz9m9MtZ88sZ4ijZ4lTh870,9237
@@ -109,14 +109,14 @@ cribl_control_plane/models/inputcribltcp.py,sha256=2vhnRfLo1Rt7FSlDwm9KaJUjarkZ4
109
109
  cribl_control_plane/models/inputcrowdstrike.py,sha256=pG6JyMftN8-7sEooaUegiUPfg9EeBNuUi4ZpKG_yOO0,19910
110
110
  cribl_control_plane/models/inputdatadogagent.py,sha256=UNWSxeKt1pzEjZZ7yJnWGO8vFE9QH7UVLqkJER7kBs4,16922
111
111
  cribl_control_plane/models/inputdatagen.py,sha256=bgm6NJZcUje88mFIu6KGmcNGEGmOFGn8JzrUZ7TLepg,7386
112
- cribl_control_plane/models/inputedgeprometheus.py,sha256=UI2zWFaETX5XXiJF90FOjtxLS7THHkqe8HodRvRZ2Cc,21937
112
+ cribl_control_plane/models/inputedgeprometheus.py,sha256=Ru8dZvF6El-DbKXFlzM8F87vMVPBWaLJO4O1KRCD6nA,21760
113
113
  cribl_control_plane/models/inputelastic.py,sha256=WMz39HmI7VvC26lmCg2b5hpF9Esp9I47cTzWoX2iGWM,21199
114
114
  cribl_control_plane/models/inputeventhub.py,sha256=zh01IUQiYBJibkE4O-tsoO-6DwETlZ5ajmeg8JUjdbA,19461
115
115
  cribl_control_plane/models/inputexec.py,sha256=rYwqSCjDjJ7NeoW11QO0hnThKWpcS2BtRIFQ2euSGxk,9110
116
116
  cribl_control_plane/models/inputfile.py,sha256=rubUETJnaNb3jiwQm2vd4uGNUaGlvm_Sxb6f9cYLVS4,11955
117
117
  cribl_control_plane/models/inputfirehose.py,sha256=Eq2IfH8NzMnhq1Z1wQXmOcjZZihMB5F9TnSLADgUVsI,15297
118
118
  cribl_control_plane/models/inputgooglepubsub.py,sha256=J9ww_mjodvFHs7HLoWTLhykPohIYeaYllwpyiiIrJLg,11832
119
- cribl_control_plane/models/inputgrafana_union.py,sha256=WOq_21eaJs0fGl7E1G6pHU6yXohRj2Ji5vzqTLAq4yU,56008
119
+ cribl_control_plane/models/inputgrafana.py,sha256=RvmbNIsHc5xRjF1mSgUBdEwVJv2fiX_c6yoN78iCeP4,55988
120
120
  cribl_control_plane/models/inputhttp.py,sha256=g6oDpC5n-hGtBy7RKBY83nm6JSKfb9QmyXPJOUyKFcM,18070
121
121
  cribl_control_plane/models/inputhttpraw.py,sha256=HMPEbqn57eQr7XvJIudVo4cs88wJN-acQdLw9ImG14s,18445
122
122
  cribl_control_plane/models/inputjournalfiles.py,sha256=eXK8B2Ic4eNKq5-zPJx94xHtY_C0U5bcfLsrjiHlS-U,9427
@@ -145,12 +145,12 @@ cribl_control_plane/models/inputsplunk.py,sha256=DPZ9-SPdAGjNYVhAZP5EAyFVp4oY8d-
145
145
  cribl_control_plane/models/inputsplunkhec.py,sha256=MXvGKfxCb81uojyoYiAtrKM7RXDegrWtujoaPlEZCgQ,22470
146
146
  cribl_control_plane/models/inputsplunksearch.py,sha256=3WqE19WZp1flK2RwHgKpnyH3T3x6eAUHHMaRvAEVNnw,24449
147
147
  cribl_control_plane/models/inputsqs.py,sha256=frrFr7DwkJdVok3YuB8a0zC9UU_wUnnrRGNv2LvqKfE,14977
148
- cribl_control_plane/models/inputsyslog_union.py,sha256=GLopKRHsp9wgdtK2ReSHh2jI_sDYFOzf4j1RaBZbjn0,36084
148
+ cribl_control_plane/models/inputsyslog.py,sha256=PWE2cQF4iqYbohjOh3eChb3g_u5huG5Pszhr5_J9aTg,36064
149
149
  cribl_control_plane/models/inputsystemmetrics.py,sha256=B6cFqyH7PViaLXPk4Kc9pgUeY9ktH0EcumySCMU4LZA,19607
150
150
  cribl_control_plane/models/inputsystemstate.py,sha256=6yDroswhDe_ZiRorhIqhYTBTSCk04tKirza8ZnQVMDY,15347
151
151
  cribl_control_plane/models/inputtcp.py,sha256=SDM7u8ru5Gma20X1wjLwOzQ5wVVKotX-Mstzol3F0LM,16175
152
152
  cribl_control_plane/models/inputtcpjson.py,sha256=XhSV1A2f7x5eOEmTgjOmAg9DH9-JrxZLqi1PUjhq8xo,14677
153
- cribl_control_plane/models/inputwef.py,sha256=9GXPb73u4pTpaiZ1H_l1vNRR3L9EyK5bAG5oNroUZh4,22099
153
+ cribl_control_plane/models/inputwef.py,sha256=fQxyfAYKksJfK1DMFTjOM8k_QHaybMYybsLfpyF5M9Q,22067
154
154
  cribl_control_plane/models/inputwindowsmetrics.py,sha256=b1UGA-jzIAbrsh4CQhHooA45H0IlJWWqox8Rj_P04p0,16996
155
155
  cribl_control_plane/models/inputwineventlogs.py,sha256=RzYw6fuROAoT8Gkw8NdXKamUhjVuCk5E8E25LCZh5LI,9947
156
156
  cribl_control_plane/models/inputwiz.py,sha256=k9ZILZ4jebJxtKoi7Nh68RXht9hcaroVejPcLVx4VjU,14538
@@ -197,7 +197,7 @@ cribl_control_plane/models/outputfilesystem.py,sha256=xlrWLUjsezob6NrN-UES8k1N_W
197
197
  cribl_control_plane/models/outputgooglechronicle.py,sha256=V9WA5XukdQbqjSYEJXEcd30_aPYxlmIUE_uGjX6HsBY,22003
198
198
  cribl_control_plane/models/outputgooglecloudlogging.py,sha256=rWhDaRs6LcIuGbLx2HUsTW1lcje8RofgrVOTp9psZ-k,33615
199
199
  cribl_control_plane/models/outputgooglecloudstorage.py,sha256=AKppKI1XiNmnkSi-GzC0o_wMEx6vLZixqxB-2uq-tcw,22413
200
- cribl_control_plane/models/outputgooglepubsub.py,sha256=1bn8l-TufrMPqsHCT_o8W14hfjTeJ108UThEXL_ncZw,12285
200
+ cribl_control_plane/models/outputgooglepubsub.py,sha256=TPTU3z6xXKd2MFIkViytHJU12WvnQnY-7rI-d4GbFPI,12231
201
201
  cribl_control_plane/models/outputgrafanacloud.py,sha256=7sYwhaoHuLUQf2klfIJOxzehmnZCNvfbHodITEpyBLc,52071
202
202
  cribl_control_plane/models/outputgraphite.py,sha256=gqFTSyI3UCbzsbvG9wxUR96HAHWCTLOH4di8HvDwBz0,9800
203
203
  cribl_control_plane/models/outputhoneycomb.py,sha256=-XgAb04SQ5Bg9W2ZeUH0RdMXptYS0fRFtCzhb7bRpvA,17091
@@ -226,7 +226,7 @@ cribl_control_plane/models/outputsnmp.py,sha256=TQK8zgga3LAuyp_YGhqobc7FYLBBJRci
226
226
  cribl_control_plane/models/outputsns.py,sha256=XSsfUHMry8FB8xRNV0FOA66Wiv9laGftWHMt-VlAlNE,12419
227
227
  cribl_control_plane/models/outputsplunk.py,sha256=ypGWkSAsYJ5JInxv9wFBTeqvFpMZxxStjVZIcJKFbig,16054
228
228
  cribl_control_plane/models/outputsplunkhec.py,sha256=VqxXfD7erTcBhc9AOPZ5YfQM5rwHy2Yfu45dHGq-Iig,20740
229
- cribl_control_plane/models/outputsplunklb.py,sha256=I-nzhge_uCFEqrOjc-kvbRRnSs1857GhhtuHPx654js,24742
229
+ cribl_control_plane/models/outputsplunklb.py,sha256=ch5yAD1YCC2uRwg3WTzyiGRjSaq6aWeGJDOXWebxvVc,24722
230
230
  cribl_control_plane/models/outputsqs.py,sha256=A1Oswm0BdjW7UratIiURO_kR1MXSQmShdzsLMiCIZAA,14536
231
231
  cribl_control_plane/models/outputstatsd.py,sha256=8PyMXR8QYfuZl8U0nNtMGIzydTyhmxsSpxE3aTJLdro,9738
232
232
  cribl_control_plane/models/outputstatsdext.py,sha256=xyy5fuKkePfWPhibWUvOgfaxsNy4ha-ceU0sy5xYnbc,9831
@@ -248,9 +248,8 @@ cribl_control_plane/models/resourcepolicy.py,sha256=GxsEqA88OvvaCg016cBcauLeQ_5T
248
248
  cribl_control_plane/models/restartresponse.py,sha256=9s4pu4DHPwCHNiuMQKQw6bZ22WWNi_RUMuGhmVbNx0U,590
249
249
  cribl_control_plane/models/routecloneconf.py,sha256=ESvEj0vl58BGOwJB5kYu3vMAm88JizYHXU7qorGdw9M,293
250
250
  cribl_control_plane/models/routeconf.py,sha256=whFyvzWwmEqAo_0HoTFKJTZqQ2p8kdPKaZJIlh9nS58,1451
251
- cribl_control_plane/models/routes.py,sha256=MT7A6fAVe8p5z6-3OufZ7ThChapmxEpdhhXUPTcUXbs,2662
251
+ cribl_control_plane/models/routes.py,sha256=2MRVmc4zvUjQw6moQmRYss_XaoGcaauj2Jpdb3VX8pA,2022
252
252
  cribl_control_plane/models/routesroute.py,sha256=7hFUWpgVDBj0N117IFxZRGkFqJntbe4NyBakVyMKsTY,2339
253
- cribl_control_plane/models/routesroute_input.py,sha256=VmRpoMuLE5_8yavR_Q8lpHEmEbF6t26Ck1Jp9KBPGqY,2294
254
253
  cribl_control_plane/models/schemeclientoauth.py,sha256=MaZs9lOB3_y8uTZNTHIuAG_X66ZrEpRj0qZGAsBfXFM,712
255
254
  cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D4kwRsAQvY,1097
256
255
  cribl_control_plane/models/teamaccesscontrollist.py,sha256=HLMck-wyuJYiKD-adSS5ti4yLbHE2snZaOAI0GwgfOI,483
@@ -258,23 +257,22 @@ cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=q_bOM
258
257
  cribl_control_plane/models/updategroupsbyidop.py,sha256=iJZCyyzoSm_Ha_qTxSiaj4_7Nz-_L3U6_Uk5r9v1BqM,1414
259
258
  cribl_control_plane/models/updategroupsdeploybyidop.py,sha256=BUuemFukk3IdNR31zi3vFhT6YZr8_9JYV_nJoaLRfp8,1442
260
259
  cribl_control_plane/models/updatehectokenrequest.py,sha256=Pq0JnAZuDqdU_g6mmCvfxfMgeK9Pu3uVXfD9sFWfjKQ,787
261
- cribl_control_plane/models/updateinputbyidop.py,sha256=DtufjoD9UEPnKT2QOggfMDB1Pv2rwj9cEVuAJKbv39U,1300
260
+ cribl_control_plane/models/updateinputbyidop.py,sha256=RgxKN5ev3gImWuRZGHFXOE9nAS3O1WvbsDl8z6xnylg,1270
262
261
  cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=-Q8ZP1yDmQmB9aylQNTs4zR1q6NH-Gi2fhlyiDyqWKI,1677
263
- cribl_control_plane/models/updateoutputbyidop.py,sha256=odGoTLgvR_AEYizuVMKjcDeB4Uua3BX_U-7OHw7wHiU,1333
262
+ cribl_control_plane/models/updateoutputbyidop.py,sha256=JMdnqmkiXN2tQj0VWfj9q0CrsJXqI452KD-mdg6wPdQ,1295
264
263
  cribl_control_plane/models/updatepacksbyidop.py,sha256=nQeRQF-NTOCRMWz_gXfYlN0-I2OMM8Rovh_vAq73wzw,1965
265
- cribl_control_plane/models/updatepacksop.py,sha256=jXP_MUAh4cf9u7vo_cJ_zS7Ssv0kd-ZfCCe4yG3b3Zo,1073
266
- cribl_control_plane/models/updatepipelinebyidop.py,sha256=CPCiszliWVcewMyZ26_R8OvtbJA8RwrEj_XQFoZTSJg,1420
267
- cribl_control_plane/models/updateroutesbyidop.py,sha256=k6vejvOHHqyfp1oR3aDXEXYIUu6NeRHBl7s9k-jcyiE,1440
264
+ cribl_control_plane/models/updatepipelinebyidop.py,sha256=B13h6gadw4NV7waH6yoDKCR2YCzVS8XZrzB_5PG9CmE,1410
265
+ cribl_control_plane/models/updateroutesbyidop.py,sha256=CoEURdSBZ4-pp1WSncdT_oZCbx3o7MlmMSDY0D44D_o,1358
268
266
  cribl_control_plane/models/updateworkersrestartop.py,sha256=OwX1snIrUTfghc0Pb2PpI5IO6NS-aL0BOMzWqLl8GAA,787
269
267
  cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
270
- cribl_control_plane/packs.py,sha256=pIW3stXJ7gdJHkYDJ7LF-_I23g3v5E02iNWOnD1tTs8,38830
271
- cribl_control_plane/pipelines.py,sha256=L-HbP4gyl05hxb4-HNvkFrk1w6xFccfNr4-AJy3Vjxo,36038
268
+ cribl_control_plane/nodes.py,sha256=UDrbXsAMTm2b_xvlmaL0lyj2nL2EEHYYnWuE98GOhfs,22648
269
+ cribl_control_plane/packs.py,sha256=Ka1zVuKCDO4Wi6Z8PWYh8KMdVoLSdO6_Mec2rgqg8Ao,31864
270
+ cribl_control_plane/pipelines.py,sha256=BCmw0DylPH4o-4wcRqfPhJdTsFwvw5UTG-ZMtkqwKi0,36036
272
271
  cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
273
- cribl_control_plane/routes_sdk.py,sha256=bxL7KZKdw4Ot78Q3V4Ea5SWrhnEM0fHdRUwQRDeF0Oc,31227
274
- cribl_control_plane/sdk.py,sha256=KETenTkN2K1Z_0HLjbxKW27vF6MOU7dVDbBan1VsiMI,8080
272
+ cribl_control_plane/routes_sdk.py,sha256=Snb8Dmim7Fm9EsMqbyjuPnXKmqhJ10L_t1bujJUWTyM,31025
273
+ cribl_control_plane/sdk.py,sha256=ReApgzvqf_k4lhUwPwHaFd4XCxFIpgHgxcqAlyIGfJw,7813
275
274
  cribl_control_plane/sdkconfiguration.py,sha256=bit6SSOyHqvibdtgNad5_ZcgMotk8NJfgHpKsBK8HFg,1259
276
- cribl_control_plane/sources.py,sha256=X6irteRhZ-D44d2Ece7iWFcfeManP9bQGUZZLFHr-vg,54280
277
- cribl_control_plane/teams.py,sha256=nE97lQfpbbjJ12TbEir1B7swkhXOz5bj7aFVSImyry0,8517
275
+ cribl_control_plane/sources.py,sha256=Q1frEfitda-Xayiv4p6fHJmmZlKwm0daWt53hmhe8Sw,53982
278
276
  cribl_control_plane/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
279
277
  cribl_control_plane/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
280
278
  cribl_control_plane/utils/__init__.py,sha256=BQt6xIdX86A6mOHAnxAXBXaPgdUJtDy2-_4ymAsII_Y,5436
@@ -294,8 +292,7 @@ cribl_control_plane/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6
294
292
  cribl_control_plane/utils/unmarshal_json_response.py,sha256=yxi3F_O3SCU0SrexiR3BvQS-E81pW2siLgpTXYegAyg,595
295
293
  cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
296
294
  cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
297
- cribl_control_plane/versioning.py,sha256=-bUutXEf__ewPHzgZshBImZZyQILigzXp1H8ZBCFBbQ,93847
298
- cribl_control_plane/workers_sdk.py,sha256=qEt_s-Zfg8zyzWEHnOtqYzTiNzFSwEalG-1lSYzVJWc,22666
299
- cribl_control_plane-0.0.22.dist-info/METADATA,sha256=NGCkvFnbuGEVOz_QKfiUJlwbwrCR95xOFPIxILNoBg4,39417
300
- cribl_control_plane-0.0.22.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
301
- cribl_control_plane-0.0.22.dist-info/RECORD,,
295
+ cribl_control_plane/versioning.py,sha256=ZbIdPT5o0vG40_LlhB6aLC9eJYkY7t0BfObSIEJNNRU,94203
296
+ cribl_control_plane-0.0.24.dist-info/METADATA,sha256=ueVUzW9MW5F_2NktXNbamkX5a9mgypa1NFB9Xh35Oek,38246
297
+ cribl_control_plane-0.0.24.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
298
+ cribl_control_plane-0.0.24.dist-info/RECORD,,
@@ -1,67 +0,0 @@
1
- """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
-
3
- from __future__ import annotations
4
- from cribl_control_plane.types import BaseModel
5
- import pydantic
6
- from pydantic import ConfigDict
7
- from typing import Any, Dict, Optional
8
- from typing_extensions import Annotated, NotRequired, TypedDict
9
-
10
-
11
- class RoutesRouteInputTypedDict(TypedDict):
12
- name: str
13
- pipeline: str
14
- r"""Pipeline to send the matching data to"""
15
- disabled: NotRequired[bool]
16
- r"""Disable this routing rule"""
17
- filter_: NotRequired[str]
18
- r"""JavaScript expression to select data to route"""
19
- enable_output_expression: NotRequired[bool]
20
- r"""Enable to use a JavaScript expression that evaluates to the name of the Description below"""
21
- output: NotRequired[Any]
22
- output_expression: NotRequired[Any]
23
- description: NotRequired[str]
24
- final: NotRequired[bool]
25
- r"""Flag to control whether the event gets consumed by this Route (Final), or cloned into it"""
26
-
27
-
28
- class RoutesRouteInput(BaseModel):
29
- model_config = ConfigDict(
30
- populate_by_name=True, arbitrary_types_allowed=True, extra="allow"
31
- )
32
- __pydantic_extra__: Dict[str, Any] = pydantic.Field(init=False)
33
-
34
- name: str
35
-
36
- pipeline: str
37
- r"""Pipeline to send the matching data to"""
38
-
39
- disabled: Optional[bool] = None
40
- r"""Disable this routing rule"""
41
-
42
- filter_: Annotated[Optional[str], pydantic.Field(alias="filter")] = "true"
43
- r"""JavaScript expression to select data to route"""
44
-
45
- enable_output_expression: Annotated[
46
- Optional[bool], pydantic.Field(alias="enableOutputExpression")
47
- ] = False
48
- r"""Enable to use a JavaScript expression that evaluates to the name of the Description below"""
49
-
50
- output: Optional[Any] = None
51
-
52
- output_expression: Annotated[
53
- Optional[Any], pydantic.Field(alias="outputExpression")
54
- ] = None
55
-
56
- description: Optional[str] = None
57
-
58
- final: Optional[bool] = True
59
- r"""Flag to control whether the event gets consumed by this Route (Final), or cloned into it"""
60
-
61
- @property
62
- def additional_properties(self):
63
- return self.__pydantic_extra__
64
-
65
- @additional_properties.setter
66
- def additional_properties(self, value):
67
- self.__pydantic_extra__ = value # pyright: ignore[reportIncompatibleVariableOverride]
@@ -1,37 +0,0 @@
1
- """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
-
3
- from __future__ import annotations
4
- from cribl_control_plane.types import BaseModel
5
- from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
6
- from typing import Any, Dict, List, Optional
7
- from typing_extensions import Annotated, NotRequired, TypedDict
8
-
9
-
10
- class UpdatePacksRequestTypedDict(TypedDict):
11
- filename: NotRequired[str]
12
- r"""the file to upload"""
13
-
14
-
15
- class UpdatePacksRequest(BaseModel):
16
- filename: Annotated[
17
- Optional[str],
18
- FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
19
- ] = None
20
- r"""the file to upload"""
21
-
22
-
23
- class UpdatePacksResponseTypedDict(TypedDict):
24
- r"""a list of any objects"""
25
-
26
- count: NotRequired[int]
27
- r"""number of items present in the items array"""
28
- items: NotRequired[List[Dict[str, Any]]]
29
-
30
-
31
- class UpdatePacksResponse(BaseModel):
32
- r"""a list of any objects"""
33
-
34
- count: Optional[int] = None
35
- r"""number of items present in the items array"""
36
-
37
- items: Optional[List[Dict[str, Any]]] = None