cribl-control-plane 0.0.23__py3-none-any.whl → 0.0.25__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 (39) 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 +36 -36
  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 +18 -0
  9. cribl_control_plane/models/createpipelineop.py +2 -2
  10. cribl_control_plane/models/input.py +4 -4
  11. cribl_control_plane/models/inputconfluentcloud.py +14 -0
  12. cribl_control_plane/models/inputgooglepubsub.py +14 -7
  13. cribl_control_plane/models/inputgrafana.py +14 -0
  14. cribl_control_plane/models/inputkafka.py +14 -0
  15. cribl_control_plane/models/inputloki.py +7 -0
  16. cribl_control_plane/models/inputmsk.py +14 -0
  17. cribl_control_plane/models/output.py +14 -14
  18. cribl_control_plane/models/outputconfluentcloud.py +14 -0
  19. cribl_control_plane/models/outputdls3.py +2 -2
  20. cribl_control_plane/models/outputgooglecloudstorage.py +2 -2
  21. cribl_control_plane/models/outputgrafanacloud.py +14 -0
  22. cribl_control_plane/models/outputkafka.py +14 -0
  23. cribl_control_plane/models/outputloki.py +14 -0
  24. cribl_control_plane/models/outputmsk.py +14 -0
  25. cribl_control_plane/models/outputs3.py +2 -2
  26. cribl_control_plane/models/updatepipelinebyidop.py +2 -2
  27. cribl_control_plane/models/updateroutesbyidop.py +2 -2
  28. cribl_control_plane/nodes.py +379 -0
  29. cribl_control_plane/packs.py +16 -16
  30. cribl_control_plane/pipelines.py +30 -30
  31. cribl_control_plane/routes_sdk.py +10 -10
  32. cribl_control_plane/sdk.py +15 -19
  33. cribl_control_plane/sources.py +28 -28
  34. cribl_control_plane/versioning.py +54 -54
  35. cribl_control_plane/workers_sdk.py +2 -370
  36. {cribl_control_plane-0.0.23.dist-info → cribl_control_plane-0.0.25.dist-info}/METADATA +76 -76
  37. {cribl_control_plane-0.0.23.dist-info → cribl_control_plane-0.0.25.dist-info}/RECORD +38 -38
  38. cribl_control_plane/teams.py +0 -203
  39. {cribl_control_plane-0.0.23.dist-info → cribl_control_plane-0.0.25.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.23
3
+ Version: 0.0.25
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,105 +298,105 @@ 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
+ * [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
347
+ * [restart](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#restart) - Restart Worker and Edge Nodes
342
348
 
343
349
  ### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
344
350
 
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
- * [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
348
- * [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
351
+ * [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Install a Pack
352
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#list) - List all Packs
353
+ * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#delete) - Uninstall a Pack
354
+ * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update) - Update a Pack
349
355
 
350
356
  ### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
351
357
 
352
- * [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
353
- * [create_pipeline](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#create_pipeline) - Create Pipeline
354
- * [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
355
- * [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
356
- * [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
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list) - List all Pipelines
359
+ * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#create) - Create a Pipeline
360
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#get) - Retrieve a Pipeline
361
+ * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#update) - Update a Pipeline
362
+ * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#delete) - Delete a Pipeline
357
363
 
358
364
  ### [routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
359
365
 
360
- * [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
361
- * [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
362
- * [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
363
- * [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
366
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - Get a list of Routes objects
367
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get Routes by ID
368
+ * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update Routes
369
+ * [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
364
370
 
365
371
  ### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
366
372
 
367
- * [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
368
- * [create_source](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create_source) - Create Source
369
- * [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
370
- * [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
371
- * [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
372
- * [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
373
- * [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
374
-
375
- ### [teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
376
-
377
- * [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
373
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#list) - List all Sources
374
+ * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create) - Create a Source
375
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#get) - Retrieve a Source
376
+ * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update) - Update a Source
377
+ * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#delete) - Delete a Source
378
+ * [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
379
+ * [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
378
380
 
379
381
  ### [versioning](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md)
380
382
 
381
- * [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
382
- * [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.
383
- * [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
384
- * [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
385
- * [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
386
- * [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
387
- * [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
388
- * [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.
389
- * [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
390
- * [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
391
- * [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
392
- * [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
393
- * [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
383
+ * [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
384
+ * [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
385
+ * [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
386
+ * [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
387
+ * [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
388
+ * [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
389
+ * [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
390
+ * [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
391
+ * [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
392
+ * [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
393
+ * [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
394
+ * [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
395
+ * [clean_working_dir](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#clean_working_dir) - Discard uncommitted (staged) changes
394
396
 
395
397
  ### [workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md)
396
398
 
397
- * [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
398
- * [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
399
- * [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
399
+ * [get_summary_workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#get_summary_workers) - Retrieve a count of Worker and Edge Nodes
400
400
 
401
401
  </details>
402
402
  <!-- End Available Resources and Operations [operations] -->
@@ -420,7 +420,7 @@ with CriblControlPlane(
420
420
  ),
421
421
  ) as ccp_client:
422
422
 
423
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
423
+ res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
424
424
  "<value 1>",
425
425
  "<value 2>",
426
426
  ], bucket_name="<value>", cache_connection={
@@ -476,7 +476,7 @@ with CriblControlPlane(
476
476
  ),
477
477
  ) as ccp_client:
478
478
 
479
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
479
+ res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
480
480
  "<value 1>",
481
481
  "<value 2>",
482
482
  ], bucket_name="<value>", cache_connection={
@@ -546,7 +546,7 @@ with CriblControlPlane(
546
546
  res = None
547
547
  try:
548
548
 
549
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
549
+ res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
550
550
  "<value 1>",
551
551
  "<value 2>",
552
552
  ], bucket_name="<value>", cache_connection={
@@ -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=cgVLQJDNQmrSJ7JHZ5Lxo7mPea-mdceK4-EeszQwAnw,542
8
- cribl_control_plane/auth_sdk.py,sha256=Jxw8hPHbBFay5eXcaRBtgdCC06mh5XHkRbZcIM0vvB8,7431
7
+ cribl_control_plane/_version.py,sha256=F7w-yw8RgJzNStrI5a9fv8AyVaXcJzaofuw5cesg1RI,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=T-jyMaiocU9pCzBymc4K7lxlx3LH2XKKNxR17fi1ixg,65565
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=_BNkonhbdD1yPYE4Yh8qza0kSiYxgDGC5dfXraN7Ck8,353083
22
+ cribl_control_plane/lakedatasets.py,sha256=Y0sEW-RZIbgKuDeAAhf7m4q8iNRJn1hg38sARR3eBfQ,46144
23
+ cribl_control_plane/models/__init__.py,sha256=a10SQrnMo3fWgyrR0Ba3itLW9Y3dXZCJN7BC7aes1J0,353757
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
@@ -37,7 +37,7 @@ cribl_control_plane/models/createinputop.py,sha256=l5Hz9ANzw4Gjh25FVf_okFzXxZWjA
37
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,11 +96,11 @@ 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=rShZbzBNp1296YKQuu10DRzkf9bniw5zEd_5bCiHTRI,7552
99
+ cribl_control_plane/models/input.py,sha256=oiOgY4pg8Umfm9lnKn-sWtySYsIVD-F0r_ccKwgtq_U,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
103
- cribl_control_plane/models/inputconfluentcloud.py,sha256=wqSD0feXi--q1It_8YkSFsUp5CnMp1PnvcLjY7dM4z4,28374
103
+ cribl_control_plane/models/inputconfluentcloud.py,sha256=W9Poc7tGLLRltk6QKoY2TXcFslHMrPd4oqqXYc39hN8,28875
104
104
  cribl_control_plane/models/inputcribl.py,sha256=Tew5QUE2JA55MxiR5qM3ikEOY4fGW0um-JsFaIvO7qg,6923
105
105
  cribl_control_plane/models/inputcriblhttp.py,sha256=OGxyXQMK6A7odgsODhbNtsjYABGCzUe6cj7iJWCFI4E,15336
106
106
  cribl_control_plane/models/inputcribllakehttp.py,sha256=U_wxW88VOsQPXiB8rRUjYWxrLA54Ml8x7CMwd8WyUr0,15520
@@ -115,20 +115,20 @@ cribl_control_plane/models/inputeventhub.py,sha256=zh01IUQiYBJibkE4O-tsoO-6DwETl
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
- cribl_control_plane/models/inputgooglepubsub.py,sha256=J9ww_mjodvFHs7HLoWTLhykPohIYeaYllwpyiiIrJLg,11832
119
- cribl_control_plane/models/inputgrafana.py,sha256=RvmbNIsHc5xRjF1mSgUBdEwVJv2fiX_c6yoN78iCeP4,55988
118
+ cribl_control_plane/models/inputgooglepubsub.py,sha256=zudNdaR_Ek3NAGuX0oEeM85ix8mzQfhzQokKO7o_qr4,12641
119
+ cribl_control_plane/models/inputgrafana.py,sha256=PAYmGaY_mUOsVohUVlcp0uj0QUf87rgsmxyqoVuSUEw,57088
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
123
- cribl_control_plane/models/inputkafka.py,sha256=Y3Yf_IGIyrs2UTVL_hDKD-6hPP5GqMW9XLdqP7lLeGY,27920
123
+ cribl_control_plane/models/inputkafka.py,sha256=5tcIXw_dlJwpMlppc9DJtVix8a_JC6gUuaGYrccow1U,28385
124
124
  cribl_control_plane/models/inputkinesis.py,sha256=szZRZXLCqR_yVvHdHWH_0mRnjtVLPJNnH865pm208DQ,15460
125
125
  cribl_control_plane/models/inputkubeevents.py,sha256=7b2a5F_BmUGzMMqbqnrH48IDVq3al-0Jagegnsvk3Lw,7675
126
126
  cribl_control_plane/models/inputkubelogs.py,sha256=BDCgOVlluC6tGNp6w63-C9YOdB4PDpsv56JfpTD2ZLw,11787
127
127
  cribl_control_plane/models/inputkubemetrics.py,sha256=gtO_Rq3jZ4KMrvtuuOCOivT8J2K4MyH0xaWKRTa3i_Q,10177
128
- cribl_control_plane/models/inputloki.py,sha256=35jToqilr_-jamrl-K8WcwqT-u9KTrhMQOuR3N9PcTY,20557
128
+ cribl_control_plane/models/inputloki.py,sha256=fvmDUnd0Tzs_wKGeGoYMyW2ygEKRTud_ootNmLfx_rs,21107
129
129
  cribl_control_plane/models/inputmetrics.py,sha256=gvIOUKVG_LH-7-etEvb5l4HIRqi6ltfHrs69eNHecPY,12534
130
130
  cribl_control_plane/models/inputmodeldriventelemetry.py,sha256=kxrdrG3CdzEqjjIfzamszyWgf3LWtA8cN4hq2w86Ni0,11328
131
- cribl_control_plane/models/inputmsk.py,sha256=cG1tSwIdjfd6RxW-OIHq_9cOaI5IaxvevVEpYRxPIy0,30908
131
+ cribl_control_plane/models/inputmsk.py,sha256=Dpl9MOijGJlSjgctF2e-czeo0MjBpF8gytghHE7ef-0,31365
132
132
  cribl_control_plane/models/inputnetflow.py,sha256=_iu6XN6dcTSPvw90pnsaHd2DAu476xvF_DKUFAFxH7U,10776
133
133
  cribl_control_plane/models/inputoffice365mgmt.py,sha256=Alwgwozuaax4PVmzWwRgXUWehZwZ4zkbYbE5P7PQvo8,17714
134
134
  cribl_control_plane/models/inputoffice365msgtrace.py,sha256=Eax_PEqWcSRzm6vWFkKa20mO3PfDyEn2y8_u2PbxrGE,20217
@@ -170,14 +170,14 @@ cribl_control_plane/models/nodeprovidedinfo.py,sha256=lw5JFVcnoetmbF0XSxX4Cyw0_Q
170
170
  cribl_control_plane/models/nodeskippedupgradestatus.py,sha256=wJYUEDcCTx6Mrivh_0uEGspLenHKueWE9mVcjTycaL8,226
171
171
  cribl_control_plane/models/nodeupgradestate.py,sha256=8zbj0lofMbq89B3lv5gEIS7d1DKHINxQtdqptVE3sSQ,218
172
172
  cribl_control_plane/models/nodeupgradestatus.py,sha256=HlNRUmka5xuPdL-2UupJIe5q1_imCKHUWQQBTIpDCHM,966
173
- cribl_control_plane/models/output.py,sha256=4dz6DHqu2ygAYHLcSwv95lnk9tsoQN99c8_M0kscp6U,8695
173
+ cribl_control_plane/models/output.py,sha256=9-O9fqEIT8BlvzDatQGcZzk6VGwpT3IJ4T1VSYm56s8,8695
174
174
  cribl_control_plane/models/outputazureblob.py,sha256=PLM3nsgDtSA16KafegaBvnkePhOGlFwvaOtyhzvDdYE,21958
175
175
  cribl_control_plane/models/outputazuredataexplorer.py,sha256=fAzRi-HYQ7rga1mD-pyK2gJUrfbOESRvW7aUd03NmuA,30084
176
176
  cribl_control_plane/models/outputazureeventhub.py,sha256=Z2eAov919aMO7zfvfQzDecZ9eLMEm-DyLiUE4zJkz0g,14797
177
177
  cribl_control_plane/models/outputazurelogs.py,sha256=EIQA99AD9e1r-ht9QPDg3DZN0IN282_vRlcmQd1wNVA,19603
178
178
  cribl_control_plane/models/outputclickhouse.py,sha256=TVWnrm89OiZa3bvXtt6XeKciyECiBRgAOWNVvaH0idI,29151
179
179
  cribl_control_plane/models/outputcloudwatch.py,sha256=L13wzgObhFNGAa-fEcMOca7NQ86esX2FsCgzBTX53Fw,11954
180
- cribl_control_plane/models/outputconfluentcloud.py,sha256=jKVV2tvKlOYY0YpMhF83p9YVVDP5cBQELGGbp1fHxYE,25724
180
+ cribl_control_plane/models/outputconfluentcloud.py,sha256=1QyfQSbbjRSlzw9aAq_nFEzPwY7v7Wz6hnFQFphKyIo,26229
181
181
  cribl_control_plane/models/outputcriblhttp.py,sha256=3mPpN9os_JfD7N7WzHYk6O_8JTybiWRste0i5a4W5n0,22936
182
182
  cribl_control_plane/models/outputcribllake.py,sha256=cQmac8l4TsO7nudDHsqT_2hCBt_HyI-X3rY8ULpQR0s,16772
183
183
  cribl_control_plane/models/outputcribltcp.py,sha256=gahn1yiXbsIa_3oZh6MUqCFZyzXcFUa5n8usos4-6qE,16377
@@ -187,7 +187,7 @@ cribl_control_plane/models/outputdataset.py,sha256=ll8Es74GsxXmdYgGOiIn6KezwfyLL
187
187
  cribl_control_plane/models/outputdefault.py,sha256=2tjMKYSksR-0qWLd_u3PPLXL0gZiSlUdj9JTPYeYMps,1952
188
188
  cribl_control_plane/models/outputdevnull.py,sha256=PouRAJtfSqvfS8J6LV1IyUytXeOMiyVMRsDtlpJrc08,1619
189
189
  cribl_control_plane/models/outputdiskspool.py,sha256=OEdMk_2LIGRP4ivm_z4pqy6SlfE0Dq4MRV26DXh7RHE,3673
190
- cribl_control_plane/models/outputdls3.py,sha256=mmyfiChgTpkC_V0TGB-ztA4vUBiODGs_0nVjiCGb0nY,24680
190
+ cribl_control_plane/models/outputdls3.py,sha256=SJ38OjJ68hODN75LzghTQEvJDSnK5oHva9_rMNaT47I,24682
191
191
  cribl_control_plane/models/outputdynatracehttp.py,sha256=ScEsEZ3tMEGvzbBmhoVm-t3YCmwWNePsyK8niONw34w,20506
192
192
  cribl_control_plane/models/outputdynatraceotlp.py,sha256=fzZj_CxmaYmjhy8jh7EDwT5XJoQA1KIyoZe7DJXd5v8,22527
193
193
  cribl_control_plane/models/outputelastic.py,sha256=qVaUCxsJdNAqoz9rzWTAofHXqRvZhsWlcWZQ0XmAyA4,22488
@@ -196,18 +196,18 @@ cribl_control_plane/models/outputexabeam.py,sha256=c_4YbKzPhyz_x4ytSWnYpNDy8gn4y
196
196
  cribl_control_plane/models/outputfilesystem.py,sha256=xlrWLUjsezob6NrN-UES8k1N_WfVJaANkqGVk7NtTOM,16433
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
- cribl_control_plane/models/outputgooglecloudstorage.py,sha256=AKppKI1XiNmnkSi-GzC0o_wMEx6vLZixqxB-2uq-tcw,22413
199
+ cribl_control_plane/models/outputgooglecloudstorage.py,sha256=s4Yf0U8KOes4oqKzrEZ-F8FbVRB0r9AAEAlFGk-vumE,22415
200
200
  cribl_control_plane/models/outputgooglepubsub.py,sha256=TPTU3z6xXKd2MFIkViytHJU12WvnQnY-7rI-d4GbFPI,12231
201
- cribl_control_plane/models/outputgrafanacloud.py,sha256=7sYwhaoHuLUQf2klfIJOxzehmnZCNvfbHodITEpyBLc,52071
201
+ cribl_control_plane/models/outputgrafanacloud.py,sha256=IHoDDlEuNNpSxv3VZyQJ9W31NuMw_ao9-hSKpXmJ8U0,52877
202
202
  cribl_control_plane/models/outputgraphite.py,sha256=gqFTSyI3UCbzsbvG9wxUR96HAHWCTLOH4di8HvDwBz0,9800
203
203
  cribl_control_plane/models/outputhoneycomb.py,sha256=-XgAb04SQ5Bg9W2ZeUH0RdMXptYS0fRFtCzhb7bRpvA,17091
204
204
  cribl_control_plane/models/outputhumiohec.py,sha256=gR7UikgJas0mjgvI3EmnUx8fip868jQyfpyaEQdUnYw,18330
205
205
  cribl_control_plane/models/outputinfluxdb.py,sha256=_UfshiBXt3OE0VsJM8jQrC6IJDQVBGjkFpGEcka3npI,23740
206
- cribl_control_plane/models/outputkafka.py,sha256=CHxctXto5JWROvltg9rGMNLV-ggNUc_HHx-h343X06Q,25106
206
+ cribl_control_plane/models/outputkafka.py,sha256=ni-zUAoo10k-GGESXAxV4Zz14KnOIX0tz9Xhi_-9L9o,25575
207
207
  cribl_control_plane/models/outputkinesis.py,sha256=GMCXAozc85082FuxuTI2la8BlMziMXXrDp9F1ZTf0rs,13186
208
- cribl_control_plane/models/outputloki.py,sha256=4deo8p_uF9DZfnQQPT-YOH7QzUPva6e8kEzR6YTjrYA,21575
208
+ cribl_control_plane/models/outputloki.py,sha256=drGaSiaQ1RXrv0QS8ZsdHrRx2WO-OdMH08gtuHPJB-4,22443
209
209
  cribl_control_plane/models/outputminio.py,sha256=2jRAuxXH31FNe0-h_LPG4qzIpgy7S8_PvDRJLjCY4BY,22321
210
- cribl_control_plane/models/outputmsk.py,sha256=_ATyGa0yl1liWl_2LJXocZzZbGbPWL0RaHNnmX7WpUc,28061
210
+ cribl_control_plane/models/outputmsk.py,sha256=cs1n5Ws3NeXDrRGfxvJDXGfFWlJYC5z_LFgnSTyU8kU,28522
211
211
  cribl_control_plane/models/outputnetflow.py,sha256=xOBy2Q48SfhNT2ifAQU-bPVQ5nOpUqMJ5B40SlZ3-0o,2790
212
212
  cribl_control_plane/models/outputnewrelic.py,sha256=EOyEIlYmMZdfUyDR8tZd3N4ddn-K122BH4Fr3PcHcdw,19436
213
213
  cribl_control_plane/models/outputnewrelicevents.py,sha256=-8CAYjj6B7chxb3FUoy8buNGWrMbKiCe1zf3n7dNAG8,18543
@@ -215,7 +215,7 @@ cribl_control_plane/models/outputopentelemetry.py,sha256=y2PmeGkinPXLV84KcBYjP_s
215
215
  cribl_control_plane/models/outputprometheus.py,sha256=Oq3iZa1nnzYn9h7JzD015SPPNkSJ_LqhMgIV0JvGfFA,22994
216
216
  cribl_control_plane/models/outputring.py,sha256=jHg6wh2fXQvQAguqmb__fp0vo0ESlHbKOBpgIet5B00,4289
217
217
  cribl_control_plane/models/outputrouter.py,sha256=NFxnKjlI5v0m67qjiPDuQ_UYqoNQDTTNv5SQWlF3vrs,2686
218
- cribl_control_plane/models/outputs3.py,sha256=i5S39mNQ4dYHlDHkj4bkI4JcoHyBjpo3ghfnhqpIu-w,24727
218
+ cribl_control_plane/models/outputs3.py,sha256=JRm4eMmjxyXJNBuCUvzfuiQrVqdWvohRUs39dkcxAEw,24729
219
219
  cribl_control_plane/models/outputsamplesresponse.py,sha256=gQrDTmfvvYDoKPYyhl6qijUU8AksXxq2mPHahVPssAk,390
220
220
  cribl_control_plane/models/outputsecuritylake.py,sha256=EeuziQzI3Rs55wH6d7hejeCJ7R8YO2ubmY1HNsoVUIA,22716
221
221
  cribl_control_plane/models/outputsentinel.py,sha256=UWw3jpujaGvfUtFe5laW9HA48_a0sRxQeB8ssZCRgY8,24561
@@ -261,18 +261,18 @@ cribl_control_plane/models/updateinputbyidop.py,sha256=RgxKN5ev3gImWuRZGHFXOE9nA
261
261
  cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=-Q8ZP1yDmQmB9aylQNTs4zR1q6NH-Gi2fhlyiDyqWKI,1677
262
262
  cribl_control_plane/models/updateoutputbyidop.py,sha256=JMdnqmkiXN2tQj0VWfj9q0CrsJXqI452KD-mdg6wPdQ,1295
263
263
  cribl_control_plane/models/updatepacksbyidop.py,sha256=nQeRQF-NTOCRMWz_gXfYlN0-I2OMM8Rovh_vAq73wzw,1965
264
- cribl_control_plane/models/updatepipelinebyidop.py,sha256=CPCiszliWVcewMyZ26_R8OvtbJA8RwrEj_XQFoZTSJg,1420
265
- cribl_control_plane/models/updateroutesbyidop.py,sha256=JwhFyXiq36Fcu6hyU0U1gF2N9dcLLX8iXjg-7njSPxQ,1386
264
+ cribl_control_plane/models/updatepipelinebyidop.py,sha256=B13h6gadw4NV7waH6yoDKCR2YCzVS8XZrzB_5PG9CmE,1410
265
+ cribl_control_plane/models/updateroutesbyidop.py,sha256=CoEURdSBZ4-pp1WSncdT_oZCbx3o7MlmMSDY0D44D_o,1358
266
266
  cribl_control_plane/models/updateworkersrestartop.py,sha256=OwX1snIrUTfghc0Pb2PpI5IO6NS-aL0BOMzWqLl8GAA,787
267
267
  cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
268
- cribl_control_plane/packs.py,sha256=N9j_Y4kb-ncuUFUTt174L4V-2edU-UnYJyEpQUFzdA0,31960
269
- cribl_control_plane/pipelines.py,sha256=L-HbP4gyl05hxb4-HNvkFrk1w6xFccfNr4-AJy3Vjxo,36038
268
+ cribl_control_plane/nodes.py,sha256=TLs0z8kUcl7ohh-yyR51_zY3PBQoI5K91fd21dc7Ky8,15540
269
+ cribl_control_plane/packs.py,sha256=Ka1zVuKCDO4Wi6Z8PWYh8KMdVoLSdO6_Mec2rgqg8Ao,31864
270
+ cribl_control_plane/pipelines.py,sha256=gHyI9nwt_3cxBQ7gt6EPUPs9NuRC0iA_PoFRAE4Z-V8,35892
270
271
  cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
271
- cribl_control_plane/routes_sdk.py,sha256=MI8jeyMT7DHXqktzpmgvsKmFSkm9luYcYySPXYsdzX0,31133
272
- 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=a8LJ56_Hck0_xpZNr7FOzMJHQm5rWK3ezwwzGw1UwzE,8006
273
274
  cribl_control_plane/sdkconfiguration.py,sha256=bit6SSOyHqvibdtgNad5_ZcgMotk8NJfgHpKsBK8HFg,1259
274
- cribl_control_plane/sources.py,sha256=xRjphI7sdE9v8bWPX8AThbRq-Bl3N6oTDEV9d8-EWek,54120
275
- cribl_control_plane/teams.py,sha256=nE97lQfpbbjJ12TbEir1B7swkhXOz5bj7aFVSImyry0,8517
275
+ cribl_control_plane/sources.py,sha256=Q1frEfitda-Xayiv4p6fHJmmZlKwm0daWt53hmhe8Sw,53982
276
276
  cribl_control_plane/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
277
277
  cribl_control_plane/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
278
278
  cribl_control_plane/utils/__init__.py,sha256=BQt6xIdX86A6mOHAnxAXBXaPgdUJtDy2-_4ymAsII_Y,5436
@@ -292,8 +292,8 @@ cribl_control_plane/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6
292
292
  cribl_control_plane/utils/unmarshal_json_response.py,sha256=yxi3F_O3SCU0SrexiR3BvQS-E81pW2siLgpTXYegAyg,595
293
293
  cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
294
294
  cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
295
- cribl_control_plane/versioning.py,sha256=-bUutXEf__ewPHzgZshBImZZyQILigzXp1H8ZBCFBbQ,93847
296
- cribl_control_plane/workers_sdk.py,sha256=qEt_s-Zfg8zyzWEHnOtqYzTiNzFSwEalG-1lSYzVJWc,22666
297
- cribl_control_plane-0.0.23.dist-info/METADATA,sha256=dilK3c7wuEhD7V1IiLiH2_czuUMUInjZ_UTnTFtTfVM,39276
298
- cribl_control_plane-0.0.23.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
299
- cribl_control_plane-0.0.23.dist-info/RECORD,,
295
+ cribl_control_plane/versioning.py,sha256=QdZqy3b55C6cRLx-FAIbsyPgO2UkBvhojmyv80lio9o,94303
296
+ cribl_control_plane/workers_sdk.py,sha256=ems9SdyCmD5zFPZFZlsYRR7xp62DUCPT5CUyvpcUC_M,7652
297
+ cribl_control_plane-0.0.25.dist-info/METADATA,sha256=m6WQAIQ1A99pkaZcp5McAc9MkDa0lvDIC2bkCVfUkGc,38225
298
+ cribl_control_plane-0.0.25.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
299
+ cribl_control_plane-0.0.25.dist-info/RECORD,,