cribl-control-plane 0.0.26a1__py3-none-any.whl → 0.0.28__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 (132) hide show
  1. cribl_control_plane/_hooks/clientcredentials.py +22 -7
  2. cribl_control_plane/_version.py +4 -4
  3. cribl_control_plane/acl.py +203 -0
  4. cribl_control_plane/auth_sdk.py +9 -176
  5. cribl_control_plane/branches.py +335 -0
  6. cribl_control_plane/commits.py +1141 -0
  7. cribl_control_plane/commits_files.py +371 -0
  8. cribl_control_plane/configs_versions.py +189 -0
  9. cribl_control_plane/destinations.py +18 -729
  10. cribl_control_plane/destinations_pq.py +359 -0
  11. cribl_control_plane/errors/__init__.py +3 -2
  12. cribl_control_plane/errors/healthstatus_error.py +1 -1
  13. cribl_control_plane/groups_configs.py +17 -0
  14. cribl_control_plane/groups_sdk.py +18 -551
  15. cribl_control_plane/{healthinfo.py → health.py} +3 -1
  16. cribl_control_plane/hectokens.py +479 -0
  17. cribl_control_plane/models/__init__.py +6 -37
  18. cribl_control_plane/models/healthstatus.py +3 -3
  19. cribl_control_plane/models/inputappscope.py +5 -5
  20. cribl_control_plane/models/inputcollection.py +2 -2
  21. cribl_control_plane/models/inputconfluentcloud.py +3 -3
  22. cribl_control_plane/models/inputcribl.py +5 -5
  23. cribl_control_plane/models/inputcriblhttp.py +3 -3
  24. cribl_control_plane/models/inputcribllakehttp.py +3 -3
  25. cribl_control_plane/models/inputcriblmetrics.py +5 -5
  26. cribl_control_plane/models/inputcribltcp.py +3 -3
  27. cribl_control_plane/models/inputdatadogagent.py +3 -3
  28. cribl_control_plane/models/inputedgeprometheus.py +3 -3
  29. cribl_control_plane/models/inputelastic.py +3 -3
  30. cribl_control_plane/models/inputeventhub.py +3 -3
  31. cribl_control_plane/models/inputfile.py +5 -5
  32. cribl_control_plane/models/inputfirehose.py +3 -3
  33. cribl_control_plane/models/inputgooglepubsub.py +3 -3
  34. cribl_control_plane/models/inputgrafana.py +6 -6
  35. cribl_control_plane/models/inputhttp.py +3 -3
  36. cribl_control_plane/models/inputhttpraw.py +3 -3
  37. cribl_control_plane/models/inputjournalfiles.py +3 -3
  38. cribl_control_plane/models/inputkafka.py +3 -3
  39. cribl_control_plane/models/inputkinesis.py +3 -3
  40. cribl_control_plane/models/inputkubeevents.py +5 -5
  41. cribl_control_plane/models/inputkubelogs.py +5 -5
  42. cribl_control_plane/models/inputkubemetrics.py +5 -5
  43. cribl_control_plane/models/inputloki.py +3 -3
  44. cribl_control_plane/models/inputmodeldriventelemetry.py +3 -3
  45. cribl_control_plane/models/inputmsk.py +3 -3
  46. cribl_control_plane/models/inputnetflow.py +3 -3
  47. cribl_control_plane/models/inputoffice365mgmt.py +3 -3
  48. cribl_control_plane/models/inputoffice365msgtrace.py +3 -3
  49. cribl_control_plane/models/inputoffice365service.py +3 -3
  50. cribl_control_plane/models/inputopentelemetry.py +3 -3
  51. cribl_control_plane/models/inputprometheus.py +3 -3
  52. cribl_control_plane/models/inputprometheusrw.py +3 -3
  53. cribl_control_plane/models/inputrawudp.py +3 -3
  54. cribl_control_plane/models/inputsnmp.py +3 -3
  55. cribl_control_plane/models/inputsplunk.py +3 -3
  56. cribl_control_plane/models/inputsplunkhec.py +3 -3
  57. cribl_control_plane/models/inputsplunksearch.py +3 -3
  58. cribl_control_plane/models/inputsqs.py +3 -3
  59. cribl_control_plane/models/inputsystemmetrics.py +5 -5
  60. cribl_control_plane/models/inputsystemstate.py +5 -5
  61. cribl_control_plane/models/inputtcp.py +3 -3
  62. cribl_control_plane/models/inputtcpjson.py +3 -3
  63. cribl_control_plane/models/inputwef.py +3 -3
  64. cribl_control_plane/models/inputwindowsmetrics.py +5 -5
  65. cribl_control_plane/models/inputwiz.py +3 -3
  66. cribl_control_plane/models/inputzscalerhec.py +3 -3
  67. cribl_control_plane/models/outputazureblob.py +3 -3
  68. cribl_control_plane/models/outputazuredataexplorer.py +3 -3
  69. cribl_control_plane/models/outputazureeventhub.py +3 -3
  70. cribl_control_plane/models/outputclickhouse.py +3 -3
  71. cribl_control_plane/models/outputcloudwatch.py +3 -3
  72. cribl_control_plane/models/outputconfluentcloud.py +3 -3
  73. cribl_control_plane/models/outputcriblhttp.py +5 -5
  74. cribl_control_plane/models/outputcribllake.py +5 -5
  75. cribl_control_plane/models/outputcribltcp.py +5 -5
  76. cribl_control_plane/models/outputcrowdstrikenextgensiem.py +3 -3
  77. cribl_control_plane/models/outputdatadog.py +5 -5
  78. cribl_control_plane/models/outputdataset.py +5 -5
  79. cribl_control_plane/models/outputdevnull.py +5 -5
  80. cribl_control_plane/models/outputdiskspool.py +5 -5
  81. cribl_control_plane/models/outputdls3.py +3 -3
  82. cribl_control_plane/models/outputdynatracehttp.py +3 -3
  83. cribl_control_plane/models/outputdynatraceotlp.py +3 -3
  84. cribl_control_plane/models/outputelasticcloud.py +3 -3
  85. cribl_control_plane/models/outputexabeam.py +3 -3
  86. cribl_control_plane/models/outputgooglecloudlogging.py +3 -3
  87. cribl_control_plane/models/outputgooglecloudstorage.py +3 -3
  88. cribl_control_plane/models/outputgrafanacloud.py +10 -10
  89. cribl_control_plane/models/outputgraphite.py +3 -3
  90. cribl_control_plane/models/outputhumiohec.py +3 -3
  91. cribl_control_plane/models/outputkafka.py +3 -3
  92. cribl_control_plane/models/outputkinesis.py +3 -3
  93. cribl_control_plane/models/outputminio.py +3 -3
  94. cribl_control_plane/models/outputmsk.py +3 -3
  95. cribl_control_plane/models/outputnewrelic.py +5 -5
  96. cribl_control_plane/models/outputnewrelicevents.py +3 -3
  97. cribl_control_plane/models/outputring.py +5 -5
  98. cribl_control_plane/models/outputs3.py +3 -3
  99. cribl_control_plane/models/outputsecuritylake.py +3 -3
  100. cribl_control_plane/models/outputsentinel.py +3 -3
  101. cribl_control_plane/models/outputsentineloneaisiem.py +3 -3
  102. cribl_control_plane/models/outputservicenow.py +3 -3
  103. cribl_control_plane/models/outputsns.py +3 -3
  104. cribl_control_plane/models/outputsplunk.py +3 -3
  105. cribl_control_plane/models/outputsplunkhec.py +5 -5
  106. cribl_control_plane/models/outputsqs.py +3 -3
  107. cribl_control_plane/models/outputstatsd.py +3 -3
  108. cribl_control_plane/models/outputstatsdext.py +3 -3
  109. cribl_control_plane/models/outputsyslog.py +5 -5
  110. cribl_control_plane/models/outputtcpjson.py +5 -5
  111. cribl_control_plane/models/outputwebhook.py +5 -5
  112. cribl_control_plane/models/outputxsiam.py +5 -5
  113. cribl_control_plane/models/schemeclientoauth.py +5 -0
  114. cribl_control_plane/nodes.py +90 -68
  115. cribl_control_plane/samples.py +391 -0
  116. cribl_control_plane/sdk.py +11 -17
  117. cribl_control_plane/sources.py +15 -469
  118. cribl_control_plane/{workers_sdk.py → statuses.py} +23 -25
  119. cribl_control_plane/{deployments.py → summaries.py} +3 -3
  120. cribl_control_plane/teams.py +201 -0
  121. cribl_control_plane/tokens.py +182 -0
  122. cribl_control_plane/utils/__init__.py +3 -2
  123. cribl_control_plane/utils/security.py +5 -0
  124. cribl_control_plane/versions.py +26 -0
  125. cribl_control_plane/versions_configs.py +171 -0
  126. {cribl_control_plane-0.0.26a1.dist-info → cribl_control_plane-0.0.28.dist-info}/METADATA +77 -38
  127. {cribl_control_plane-0.0.26a1.dist-info → cribl_control_plane-0.0.28.dist-info}/RECORD +128 -119
  128. cribl_control_plane/models/createversionsyncop.py +0 -23
  129. cribl_control_plane/models/restartresponse.py +0 -26
  130. cribl_control_plane/models/updateworkersrestartop.py +0 -24
  131. cribl_control_plane/versioning.py +0 -2309
  132. {cribl_control_plane-0.0.26a1.dist-info → cribl_control_plane-0.0.28.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.26a1
3
+ Version: 0.0.28
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -47,7 +47,15 @@ Cribl API Reference: This API Reference lists available REST endpoints, along wi
47
47
  >
48
48
  > Once a Python version reaches its [official end of life date](https://devguide.python.org/versions/), a 3-month grace period is provided for users to upgrade. Following this grace period, the minimum python version supported in the SDK will be updated.
49
49
 
50
- The SDK can be installed with either *pip* or *poetry* package managers.
50
+ The SDK can be installed with *uv*, *pip*, or *poetry* package managers.
51
+
52
+ ### uv
53
+
54
+ *uv* is a fast Python package installer and resolver, designed as a drop-in replacement for pip and pip-tools. It's recommended for its speed and modern Python tooling capabilities.
55
+
56
+ ```bash
57
+ uv add cribl-control-plane
58
+ ```
51
59
 
52
60
  ### PIP
53
61
 
@@ -166,7 +174,7 @@ with CriblControlPlane(
166
174
 
167
175
  </br>
168
176
 
169
- The same SDK client can also be used to make asychronous requests by importing asyncio.
177
+ The same SDK client can also be used to make asynchronous requests by importing asyncio.
170
178
  ```python
171
179
  # Asynchronous Example
172
180
  import asyncio
@@ -298,12 +306,11 @@ with CriblControlPlane(
298
306
 
299
307
  ### [auth](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/authsdk/README.md)
300
308
 
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
309
 
310
+ #### [auth.tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
303
311
 
304
- ### [deployments](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/deployments/README.md)
312
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md#get) - Log in and fetch an authentication token
305
313
 
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
307
314
 
308
315
  ### [destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
309
316
 
@@ -312,26 +319,41 @@ with CriblControlPlane(
312
319
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get) - Retrieve a Destination
313
320
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#update) - Update a Destination
314
321
  * [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
322
+
323
+ #### [destinations.pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md)
324
+
325
+ * [clear](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md#clear) - Clear the persistent queue for a Destination
326
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md#get) - Retrieve information about the latest job to clear the persistent queue for a Destination
327
+
328
+ #### [destinations.samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
329
+
330
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#get) - Retrieve sample event data for a Destination
331
+ * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#create) - Send sample event data to a Destination
319
332
 
320
333
  ### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
321
334
 
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
335
+ * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create) - Create a Worker Group or Edge Fleet for the specified Cribl product
336
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#list) - List all Worker Groups or Edge Fleets for the specified Cribl product
325
337
  * [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
338
  * [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
339
  * [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
340
+ * [deploy](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#deploy) - Deploy commits to a Worker Group or Edge Fleet
341
+
342
+ #### [groups.acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
343
+
344
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md#get) - Retrieve the Access Control List (ACL) for a Worker Group or Edge Fleet
345
+
346
+ #### [groups.acl.teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
347
+
348
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md#get) - Retrieve the Access Control List (ACL) for teams with permissions on a Worker Group or Edge Fleet for the specified Cribl product
349
+
350
+ #### [groups.configs.versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
331
351
 
332
- ### [health_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/healthinfo/README.md)
352
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md#get) - Retrieve the configuration version for a Worker Group or Edge Fleet
333
353
 
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
354
+ ### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
355
+
356
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get) - Retrieve health status of the server
335
357
 
336
358
  ### [lake_datasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
337
359
 
@@ -343,8 +365,12 @@ with CriblControlPlane(
343
365
 
344
366
  ### [nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
345
367
 
368
+ * [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#count) - Retrieve a count of Worker and Edge Nodes
346
369
  * [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
370
+
371
+ #### [nodes.summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
372
+
373
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md#get) - Retrieve a summary of the Distributed deployment
348
374
 
349
375
  ### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
350
376
 
@@ -375,28 +401,41 @@ with CriblControlPlane(
375
401
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#get) - Retrieve a Source
376
402
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update) - Update a Source
377
403
  * [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
380
404
 
381
- ### [versioning](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md)
405
+ #### [sources.hec_tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
406
+
407
+ * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#create) - Add an HEC token and optional metadata to a Splunk HEC Source
408
+ * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#update) - Update metadata for an HEC token for a Splunk HEC Source
409
+
410
+ ### [versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versions/README.md)
411
+
412
+
413
+ #### [versions.branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
414
+
415
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md#list) - List all branches in the Git repository used for Cribl configuration
416
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md#get) - Retrieve the name of the Git branch that the Cribl configuration is checked out to
417
+
418
+ #### [versions.commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
419
+
420
+ * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#create) - Create a new commit for pending changes to the Cribl configuration
421
+ * [diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#diff) - Retrieve the diff for a commit
422
+ * [push](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#push) - Push a commit from the local repository to the remote repository
423
+ * [revert](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#revert) - Revert a commit in the local repository
424
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#get) - Retrieve the diff and log message for a commit
425
+ * [undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#undo) - Discard uncommitted (staged) changes
426
+
427
+ #### [versions.commits.files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md)
428
+
429
+ * [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md#count) - Retrieve a count of files that changed since a commit
430
+ * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md#list) - Retrieve the names and statuses of files that changed since a commit
431
+
432
+ #### [versions.configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
382
433
 
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
434
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md#get) - Retrieve the configuration and status for the Git integration
396
435
 
397
- ### [workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md)
436
+ #### [versions.statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
398
437
 
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
438
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md#get) - Retrieve the status of the current working tree
400
439
 
401
440
  </details>
402
441
  <!-- End Available Resources and Operations [operations] -->
@@ -614,7 +653,7 @@ with CriblControlPlane(
614
653
 
615
654
 
616
655
  **Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
617
- * [`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.*
656
+ * [`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 60 methods.*
618
657
  * [`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.
619
658
 
620
659
  </details>
@@ -1,26 +1,33 @@
1
1
  cribl_control_plane/__init__.py,sha256=w2u919V3Tzv4zEPQ-OYJ79gQ_4_SyW7GOFFoHtqXDFA,401
2
2
  cribl_control_plane/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
3
- cribl_control_plane/_hooks/clientcredentials.py,sha256=gVQkktlv3q4-AHOdbQl5r8i-GMv7TUY6nezBOx19JaQ,6713
3
+ cribl_control_plane/_hooks/clientcredentials.py,sha256=_scvqxVT_8CDEMWblZ02IQ9A1bMEI1B9Wq1L-UDkaZw,7237
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=8WnHxuAV0Leyn11vDFIPnKp2NQuN39edoOZTPCYSuHU,546
8
- cribl_control_plane/auth_sdk.py,sha256=4-cZmuGLihXpQTr3cI6cNo_MW3ucph8Dzq1DSijUZQk,7467
7
+ cribl_control_plane/_version.py,sha256=sEnRH9F7eXlNHYil--ldgwH5vRhI-foNafx8vnuFK2E,542
8
+ cribl_control_plane/acl.py,sha256=i5VLS1bV59xJtfyumzNXWCOd4TQJ5ULY5fYM4enlw-k,8185
9
+ cribl_control_plane/auth_sdk.py,sha256=FQZpAERAlpw6Xk-mkUdalUDSekftklv_Du4i2TLDilk,496
9
10
  cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
10
- cribl_control_plane/deployments.py,sha256=cYDu7W6IRec0-urpDXLNNUtoFdxsle2XV_i1cwB1aI4,7486
11
- cribl_control_plane/destinations.py,sha256=-jTXxdmKWCZZS030t5J1uoe09rOU_hUwPXJkueUQ4xY,65239
12
- cribl_control_plane/errors/__init__.py,sha256=Xyh3WNPYYsJGQfGBLeaaK6eqwsJOtx-__zmvwwr4Mns,1833
11
+ cribl_control_plane/branches.py,sha256=Iv6mEtn0hFq4tQvbaMOnlx7WwAwdsQcfpBAhkq76tDM,14083
12
+ cribl_control_plane/commits.py,sha256=odkE_abcm6_x-18FJq8HMePh-kK-U_6g9CewdtPlDsM,46126
13
+ cribl_control_plane/commits_files.py,sha256=maHYZmmJlz8RzsvFZElpbzukJcMXbxwGRFB8gOQp_js,14795
14
+ cribl_control_plane/configs_versions.py,sha256=hwLr0gKY6eyzbIWijvb_zNzWqF3Kas9nXXaU62Wgz2I,7650
15
+ cribl_control_plane/destinations.py,sha256=vb-omjGCOLJqdZKU-0TbDU6fdtOmj4RNngHXGMkn4ew,36309
16
+ cribl_control_plane/destinations_pq.py,sha256=XTEevuMoc0BXOej4j_eMI1mwiqDWWyJnHTL9WhIaQw8,14537
17
+ cribl_control_plane/errors/__init__.py,sha256=6d9IGiw8Z6n2sTijw-e11PthRPi-YUkLgzE6zV4MfFQ,1867
13
18
  cribl_control_plane/errors/apierror.py,sha256=Z3b3zk672zHljcdijGLJeJ2LiP1f3VpVDEqUuF7LDAA,1253
14
19
  cribl_control_plane/errors/criblcontrolplaneerror.py,sha256=P9SU33LkmvyURdJbndHJxXu2KW_3u059peZJ8C80LfM,724
15
20
  cribl_control_plane/errors/error.py,sha256=fZ72R_qeZ0-xd514dVqKKiqh7zzLmnkpPJfckpHOCj4,693
16
- cribl_control_plane/errors/healthstatus_error.py,sha256=euamtBp065afnXzeaBMjGlQGAN3ONZfDK-RR--FOIzo,962
21
+ cribl_control_plane/errors/healthstatus_error.py,sha256=Hgn36yszsiYPS3cG__-PKHDDbPn6tt_ybD_UNw5r9b4,950
17
22
  cribl_control_plane/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
18
23
  cribl_control_plane/errors/responsevalidationerror.py,sha256=TvZ9dOsy-oFBYA_wZCOOEXeGKMBQtzCVX-1-i7epQTE,720
19
- cribl_control_plane/groups_sdk.py,sha256=rkyVzmd9PJmCzipIIX-mbdtUJiPH35Raxxoo8S5WOW4,80527
20
- cribl_control_plane/healthinfo.py,sha256=R3WlFwiuXNcsITJEoAxLZGYwLJa7HYHosZDCb6LD6q8,6673
24
+ cribl_control_plane/groups_configs.py,sha256=Tp0DFJ-zCNF_fvtnxCxVSkmrDl1IP6bRF7Irg2CZXAM,543
25
+ cribl_control_plane/groups_sdk.py,sha256=q_uaswtYvtb28t0CWah76cYx27TUY9it-FM_v0D2o2g,58265
26
+ cribl_control_plane/health.py,sha256=mDYmC13IE_M9jTVKKBOr5aeZ5QArUURLT1PyPpvn5Ho,6719
27
+ cribl_control_plane/hectokens.py,sha256=Oe4_wjPk-UlWOaOmx5wxDteQReTsiCKvrjDopxPnHOM,18845
21
28
  cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
22
29
  cribl_control_plane/lakedatasets.py,sha256=Y0sEW-RZIbgKuDeAAhf7m4q8iNRJn1hg38sARR3eBfQ,46144
23
- cribl_control_plane/models/__init__.py,sha256=a10SQrnMo3fWgyrR0Ba3itLW9Y3dXZCJN7BC7aes1J0,353757
30
+ cribl_control_plane/models/__init__.py,sha256=uWNcOyt8ad8F8sINQaVcs-jSeJbVDhWXhVh1IdmNtk0,352684
24
31
  cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
25
32
  cribl_control_plane/models/appmode.py,sha256=5xRJz9oP5ah4b6dcay4Q1IbQ9irm6k6x2BrTNysIMY4,300
26
33
  cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
@@ -43,7 +50,6 @@ cribl_control_plane/models/createroutesappendbyidop.py,sha256=_Fo5lDkv-lqPxS2R59
43
50
  cribl_control_plane/models/createversioncommitop.py,sha256=Fez4Jsmqc7H8VJctK6UR-ay7ZihL7dNg5zPBLOeDK4E,792
44
51
  cribl_control_plane/models/createversionpushop.py,sha256=lWAZSdUEgwWEvXuo5I5yac1PYd9IOY6ZQTY0mRSo9Nc,686
45
52
  cribl_control_plane/models/createversionrevertop.py,sha256=C6d8MMyX6Yq5ZnDuKlxAsBN4RVYnSDw6WezZPNDoyzk,1523
46
- cribl_control_plane/models/createversionsyncop.py,sha256=pUDglj6QkJ7q-f4DEm1ooR-EfEK4mrOQmy5djmB1r8s,686
47
53
  cribl_control_plane/models/createversionundoop.py,sha256=e6sdpq275MNVE3r1T4rlvysvp4oNQTysfJNCQR0Hm4U,1044
48
54
  cribl_control_plane/models/criblevent.py,sha256=eT6WbxhOOCx5OQLkAfhwG6IeSUuUmF7hLTxeCHut4bo,361
49
55
  cribl_control_plane/models/cribllakedataset.py,sha256=4txRkDEkM-9fLG0my7Sl9IhEW0v6RYdH0FNW5gtUE-g,2303
@@ -94,67 +100,67 @@ cribl_control_plane/models/gitrevertresult.py,sha256=2GiUgUDfYGLoIARdaQIzW62vXPb
94
100
  cribl_control_plane/models/gitstatusresult.py,sha256=90WGASPqvR6g3e_IuFQ3QtpuKe-zeJkQZrmToR6RvcY,1203
95
101
  cribl_control_plane/models/hbcriblinfo.py,sha256=hA2OxTBrrdu2q5XH5UzfEQUQJ6OKEctujlMjFa4IEts,2262
96
102
  cribl_control_plane/models/hbleaderinfo.py,sha256=SU5iM_I4sqxoTOzAQsw-rpOMfXwKl1ymze9nUrw6z6U,503
97
- cribl_control_plane/models/healthstatus.py,sha256=8F56PM6Gu4eBCCOiz-hq_sL46mrDxy5F_sC0rBP2PXQ,771
103
+ cribl_control_plane/models/healthstatus.py,sha256=u4ePDejWSLI7yhfFxKyB5GVkihAG_z9PcHqCA2H9-e0,735
98
104
  cribl_control_plane/models/heartbeatmetadata.py,sha256=IlLu0BnjnwBeXQtZSk4YUj9gKiI8n95ipYJ2Og2x1IQ,2255
99
105
  cribl_control_plane/models/input.py,sha256=oiOgY4pg8Umfm9lnKn-sWtySYsIVD-F0r_ccKwgtq_U,7552
100
- cribl_control_plane/models/inputappscope.py,sha256=BNZCGeZpOoIzfDNoe5S6Lo80HSzvwz6u9KmY2f_tPD8,19905
106
+ cribl_control_plane/models/inputappscope.py,sha256=112rxjGeZtRPXnUiW6ZdFm3C32vO_BWsRRdH6Ckw3rg,19935
101
107
  cribl_control_plane/models/inputazureblob.py,sha256=Uc3rFKDNQfoywHkw9x-3-UxFypWLFBXBglp7ga5UiJA,14822
102
- cribl_control_plane/models/inputcollection.py,sha256=gt4yqEBcudPhV7pKmfeKtz9m9MtZ88sZ4ijZ4lTh870,9237
103
- cribl_control_plane/models/inputconfluentcloud.py,sha256=W9Poc7tGLLRltk6QKoY2TXcFslHMrPd4oqqXYc39hN8,28875
104
- cribl_control_plane/models/inputcribl.py,sha256=Tew5QUE2JA55MxiR5qM3ikEOY4fGW0um-JsFaIvO7qg,6923
105
- cribl_control_plane/models/inputcriblhttp.py,sha256=OGxyXQMK6A7odgsODhbNtsjYABGCzUe6cj7iJWCFI4E,15336
106
- cribl_control_plane/models/inputcribllakehttp.py,sha256=U_wxW88VOsQPXiB8rRUjYWxrLA54Ml8x7CMwd8WyUr0,15520
107
- cribl_control_plane/models/inputcriblmetrics.py,sha256=2_bGBIUO7wwVJpVWzEPJ5_J3XphTKchCs3E0n8luEOY,8107
108
- cribl_control_plane/models/inputcribltcp.py,sha256=2vhnRfLo1Rt7FSlDwm9KaJUjarkZ467i4OXE5HuQzfw,13154
108
+ cribl_control_plane/models/inputcollection.py,sha256=KzesuvW-qfuPeLygKp1peNx-hrIUeGqsYb2g-Ls8u2A,9267
109
+ cribl_control_plane/models/inputconfluentcloud.py,sha256=No-ub9LOj81_r8tkhYEu_3Zqf9HGVDYOm_3oTExtn2Y,28845
110
+ cribl_control_plane/models/inputcribl.py,sha256=tdt5OpWZN6MgHZiJt36X2gQOSYNcP2JiyySXHGoT-ms,6953
111
+ cribl_control_plane/models/inputcriblhttp.py,sha256=aN0ncENh1-hRgk9F2-DxzxD5fxyqGCEpKV8aVu2iEJ0,15306
112
+ cribl_control_plane/models/inputcribllakehttp.py,sha256=7vAwS4dyeawKRZAqS40paiN0SbwswJtYaGtl02rEyRQ,15490
113
+ cribl_control_plane/models/inputcriblmetrics.py,sha256=JL23J9LaC45yqQGPfQJYt9T1YxorsMD1eCu8HEI9rsI,8137
114
+ cribl_control_plane/models/inputcribltcp.py,sha256=Cah0ohHRubWJGuVJpYufwGaTKLTrjMCGhB1QvIO82fE,13124
109
115
  cribl_control_plane/models/inputcrowdstrike.py,sha256=pG6JyMftN8-7sEooaUegiUPfg9EeBNuUi4ZpKG_yOO0,19910
110
- cribl_control_plane/models/inputdatadogagent.py,sha256=UNWSxeKt1pzEjZZ7yJnWGO8vFE9QH7UVLqkJER7kBs4,16922
116
+ cribl_control_plane/models/inputdatadogagent.py,sha256=AoPicjgw6myp1K_G56uAnR-O7ajtmptGwKlsNsPevyk,16892
111
117
  cribl_control_plane/models/inputdatagen.py,sha256=bgm6NJZcUje88mFIu6KGmcNGEGmOFGn8JzrUZ7TLepg,7386
112
- cribl_control_plane/models/inputedgeprometheus.py,sha256=Ru8dZvF6El-DbKXFlzM8F87vMVPBWaLJO4O1KRCD6nA,21760
113
- cribl_control_plane/models/inputelastic.py,sha256=WMz39HmI7VvC26lmCg2b5hpF9Esp9I47cTzWoX2iGWM,21199
114
- cribl_control_plane/models/inputeventhub.py,sha256=zh01IUQiYBJibkE4O-tsoO-6DwETlZ5ajmeg8JUjdbA,19461
118
+ cribl_control_plane/models/inputedgeprometheus.py,sha256=mMbSdxopLC9xeuKoPCje1Xt0HJ4WY23XUKr_QP-GvEk,21730
119
+ cribl_control_plane/models/inputelastic.py,sha256=DADQRPgW_E__8qoShjDrNqpSt7B0H2mSSBjhjgQLM8s,21169
120
+ cribl_control_plane/models/inputeventhub.py,sha256=SzjZyjG8aUEdV-_U-u4XmgvU5TQCAafQu3igugKQrPo,19431
115
121
  cribl_control_plane/models/inputexec.py,sha256=rYwqSCjDjJ7NeoW11QO0hnThKWpcS2BtRIFQ2euSGxk,9110
116
- cribl_control_plane/models/inputfile.py,sha256=rubUETJnaNb3jiwQm2vd4uGNUaGlvm_Sxb6f9cYLVS4,11955
117
- cribl_control_plane/models/inputfirehose.py,sha256=Eq2IfH8NzMnhq1Z1wQXmOcjZZihMB5F9TnSLADgUVsI,15297
118
- cribl_control_plane/models/inputgooglepubsub.py,sha256=zudNdaR_Ek3NAGuX0oEeM85ix8mzQfhzQokKO7o_qr4,12641
119
- cribl_control_plane/models/inputgrafana.py,sha256=PAYmGaY_mUOsVohUVlcp0uj0QUf87rgsmxyqoVuSUEw,57088
120
- cribl_control_plane/models/inputhttp.py,sha256=g6oDpC5n-hGtBy7RKBY83nm6JSKfb9QmyXPJOUyKFcM,18070
121
- cribl_control_plane/models/inputhttpraw.py,sha256=HMPEbqn57eQr7XvJIudVo4cs88wJN-acQdLw9ImG14s,18445
122
- cribl_control_plane/models/inputjournalfiles.py,sha256=eXK8B2Ic4eNKq5-zPJx94xHtY_C0U5bcfLsrjiHlS-U,9427
123
- cribl_control_plane/models/inputkafka.py,sha256=5tcIXw_dlJwpMlppc9DJtVix8a_JC6gUuaGYrccow1U,28385
124
- cribl_control_plane/models/inputkinesis.py,sha256=szZRZXLCqR_yVvHdHWH_0mRnjtVLPJNnH865pm208DQ,15460
125
- cribl_control_plane/models/inputkubeevents.py,sha256=7b2a5F_BmUGzMMqbqnrH48IDVq3al-0Jagegnsvk3Lw,7675
126
- cribl_control_plane/models/inputkubelogs.py,sha256=BDCgOVlluC6tGNp6w63-C9YOdB4PDpsv56JfpTD2ZLw,11787
127
- cribl_control_plane/models/inputkubemetrics.py,sha256=gtO_Rq3jZ4KMrvtuuOCOivT8J2K4MyH0xaWKRTa3i_Q,10177
128
- cribl_control_plane/models/inputloki.py,sha256=fvmDUnd0Tzs_wKGeGoYMyW2ygEKRTud_ootNmLfx_rs,21107
122
+ cribl_control_plane/models/inputfile.py,sha256=GFWbovnbdBk6AnPOn8voxa3UIsg4rpaBeUtQ5l6OjNo,11985
123
+ cribl_control_plane/models/inputfirehose.py,sha256=KFKke5wUYsWG-lFeCAF4YBtNGH0Y09RRPkzPS807dgg,15267
124
+ cribl_control_plane/models/inputgooglepubsub.py,sha256=H-JuB17EhImTONWXHWNJuJL0VBcVPwlMYAJLi2Keznw,12611
125
+ cribl_control_plane/models/inputgrafana.py,sha256=d0Gnnj1CuSc-7r_2OJBmh786ZIIVVsO9rb8nSvMOrG8,57028
126
+ cribl_control_plane/models/inputhttp.py,sha256=4meVC8SB0Mh1fG2JYCty43MMsRXtR_NnSBYmQWobUW4,18040
127
+ cribl_control_plane/models/inputhttpraw.py,sha256=begqbeN0hlSuOc-pIHS1F7Zhs3D5l1z-FxQEI6zCcpg,18415
128
+ cribl_control_plane/models/inputjournalfiles.py,sha256=IF0wYDZarqbNs4aFaAtZjaeNDubdf-gtqDV1wG9CKvM,9397
129
+ cribl_control_plane/models/inputkafka.py,sha256=URO95SHefz3svZDbxDuueEqsL15p-_1KRD1ngNXUG3k,28355
130
+ cribl_control_plane/models/inputkinesis.py,sha256=Eseai6Yt-mSX7XhLgeeTEsMuXANiRyb3ZJTBzJLrNcs,15430
131
+ cribl_control_plane/models/inputkubeevents.py,sha256=rKD1enC_EkmO4YfiNn9EbHV5slUWcJq8HE4JUNvq-5s,7705
132
+ cribl_control_plane/models/inputkubelogs.py,sha256=36R_VZUR4id9fD_AxO3yIP31neDFlejHZkVVI-oCZSI,11817
133
+ cribl_control_plane/models/inputkubemetrics.py,sha256=KwPZYyWzdomHtythFY7xPj-msuM3C3ah7Pp0ULfaSk8,10207
134
+ cribl_control_plane/models/inputloki.py,sha256=f927OIPcjrtK7bhAofpTzU7MxCGW_wtSPor38sXPnKY,21077
129
135
  cribl_control_plane/models/inputmetrics.py,sha256=gvIOUKVG_LH-7-etEvb5l4HIRqi6ltfHrs69eNHecPY,12534
130
- cribl_control_plane/models/inputmodeldriventelemetry.py,sha256=kxrdrG3CdzEqjjIfzamszyWgf3LWtA8cN4hq2w86Ni0,11328
131
- cribl_control_plane/models/inputmsk.py,sha256=Dpl9MOijGJlSjgctF2e-czeo0MjBpF8gytghHE7ef-0,31365
132
- cribl_control_plane/models/inputnetflow.py,sha256=_iu6XN6dcTSPvw90pnsaHd2DAu476xvF_DKUFAFxH7U,10776
133
- cribl_control_plane/models/inputoffice365mgmt.py,sha256=Alwgwozuaax4PVmzWwRgXUWehZwZ4zkbYbE5P7PQvo8,17714
134
- cribl_control_plane/models/inputoffice365msgtrace.py,sha256=Eax_PEqWcSRzm6vWFkKa20mO3PfDyEn2y8_u2PbxrGE,20217
135
- cribl_control_plane/models/inputoffice365service.py,sha256=OeO8zkh3X9COy5yZ_OgcAgyUz7G1Tq-xEfX3XFdLnbs,16739
136
- cribl_control_plane/models/inputopentelemetry.py,sha256=m4MMHFsChKTjKIkXny6_OuvqN1ZuiigD3KiU2eT5G8E,22072
137
- cribl_control_plane/models/inputprometheus.py,sha256=vhtXcH91ATI7jrl2kHQZxVdlgNx3MiHjPmBBIa258BM,19471
138
- cribl_control_plane/models/inputprometheusrw.py,sha256=9uev6calw8U9aqXQ3VcRjiQPA7_7oUXJj33pqXNSBp0,20894
139
- cribl_control_plane/models/inputrawudp.py,sha256=BhJxYideVtUlui2FmqpGhPq-9wxqY3KvphFATDsX3S4,9555
136
+ cribl_control_plane/models/inputmodeldriventelemetry.py,sha256=DAOy3KSCqgArK6N26CDmeVKcSn7EnXW2GcczLQJck1A,11298
137
+ cribl_control_plane/models/inputmsk.py,sha256=wjvl9RTgQbVkq286_wDEGAcOzjW3-tkf85R1jfdMHiU,31335
138
+ cribl_control_plane/models/inputnetflow.py,sha256=GR2UY-PXl9rtm89IkJGimSqYkHwx32DbuVzCOUiTkhQ,10746
139
+ cribl_control_plane/models/inputoffice365mgmt.py,sha256=613rRWVpE9iuLGV5OkRGtFoyHKo1BUEcemUPpC5CzDU,17684
140
+ cribl_control_plane/models/inputoffice365msgtrace.py,sha256=C7HmR8PZbdZtX_Uq7U56-VKY8vtHyjxfxesXjhx0UFE,20187
141
+ cribl_control_plane/models/inputoffice365service.py,sha256=afMX4sINyqeTVVzc2tONJV3VMi_rlIw0I-gQZHSbOBk,16709
142
+ cribl_control_plane/models/inputopentelemetry.py,sha256=lWJ0_ztPq-esioxSbWka1U1e3z_bJvCqdb1JY7-nG-I,22042
143
+ cribl_control_plane/models/inputprometheus.py,sha256=EVHFBpI7sGABBsrtnM9Rf0Kl56ifUagesSkqrdc6das,19441
144
+ cribl_control_plane/models/inputprometheusrw.py,sha256=BhAljCnyEYN4cLWIUAzU12cUO-EMt1S0u80RK-dNjPY,20864
145
+ cribl_control_plane/models/inputrawudp.py,sha256=rPcPMUL2Wwg84T9Ru3962jmciWzF-wzmqdKgAg_bvFs,9525
140
146
  cribl_control_plane/models/inputs3.py,sha256=zbTqFNaDii7b_BS1NFKnNRG3-ajpiiCp2-Xs5ZHRGSU,20340
141
147
  cribl_control_plane/models/inputs3inventory.py,sha256=pziEmJtPMuZS2yuDjD44oxSlVOVhSjcDIzCeXtPs_lA,21764
142
148
  cribl_control_plane/models/inputsecuritylake.py,sha256=PvsYnpP1Nh8pygfaSFl4-elKf8BD_s0bb7dl6QTPwGw,20713
143
- cribl_control_plane/models/inputsnmp.py,sha256=XkcjrZuqAZ0iuOGBvq7vmMTtYWnds04GgYQ3I98qiPY,11890
144
- cribl_control_plane/models/inputsplunk.py,sha256=DPZ9-SPdAGjNYVhAZP5EAyFVp4oY8d-xqFs0R3fsRK4,17308
145
- cribl_control_plane/models/inputsplunkhec.py,sha256=MXvGKfxCb81uojyoYiAtrKM7RXDegrWtujoaPlEZCgQ,22470
146
- cribl_control_plane/models/inputsplunksearch.py,sha256=3WqE19WZp1flK2RwHgKpnyH3T3x6eAUHHMaRvAEVNnw,24449
147
- cribl_control_plane/models/inputsqs.py,sha256=frrFr7DwkJdVok3YuB8a0zC9UU_wUnnrRGNv2LvqKfE,14977
149
+ cribl_control_plane/models/inputsnmp.py,sha256=f4r7_-OC5EQsa__-iuh78F-Qd5fkmEIflN6-giDuHeo,11860
150
+ cribl_control_plane/models/inputsplunk.py,sha256=tBTnIiCGHqCUl7m4dkPdmMIlvadmzQLEJK95ulnUFYU,17278
151
+ cribl_control_plane/models/inputsplunkhec.py,sha256=LDA9Jrn6Fj1oQn72AwcDLXtHM1rwTj2qEh-GQiHCoCU,22440
152
+ cribl_control_plane/models/inputsplunksearch.py,sha256=gv4IxqpoRdMhL5v-nYDCLf2wU_DxsZlvLIUZdo7Hnps,24419
153
+ cribl_control_plane/models/inputsqs.py,sha256=0dY2TKi96KZKWp070ftpKZ8eRYLuCWCcMre2Xq_Vmv4,14947
148
154
  cribl_control_plane/models/inputsyslog.py,sha256=PWE2cQF4iqYbohjOh3eChb3g_u5huG5Pszhr5_J9aTg,36064
149
- cribl_control_plane/models/inputsystemmetrics.py,sha256=B6cFqyH7PViaLXPk4Kc9pgUeY9ktH0EcumySCMU4LZA,19607
150
- cribl_control_plane/models/inputsystemstate.py,sha256=6yDroswhDe_ZiRorhIqhYTBTSCk04tKirza8ZnQVMDY,15347
151
- cribl_control_plane/models/inputtcp.py,sha256=SDM7u8ru5Gma20X1wjLwOzQ5wVVKotX-Mstzol3F0LM,16175
152
- cribl_control_plane/models/inputtcpjson.py,sha256=XhSV1A2f7x5eOEmTgjOmAg9DH9-JrxZLqi1PUjhq8xo,14677
153
- cribl_control_plane/models/inputwef.py,sha256=fQxyfAYKksJfK1DMFTjOM8k_QHaybMYybsLfpyF5M9Q,22067
154
- cribl_control_plane/models/inputwindowsmetrics.py,sha256=b1UGA-jzIAbrsh4CQhHooA45H0IlJWWqox8Rj_P04p0,16996
155
+ cribl_control_plane/models/inputsystemmetrics.py,sha256=Y8yGRPatJquHGSChX7aGcf9nhNY7i8IDLZ7i3EkQCts,19637
156
+ cribl_control_plane/models/inputsystemstate.py,sha256=N3_7zVfAg6a69UCcG4gbTHZSkxGlMv5VGTPnZnPgmQk,15377
157
+ cribl_control_plane/models/inputtcp.py,sha256=JtWM3aP-qN08z6xPDllAxZuXV-K3tgVjWIj61L3-21I,16145
158
+ cribl_control_plane/models/inputtcpjson.py,sha256=c_jlHaVk2xYSXVCQasurhnH0dAqdVBSsNo9ra69rSHk,14647
159
+ cribl_control_plane/models/inputwef.py,sha256=tqoo8N7erQd-xbJGun5qoYi40Wn7_d-9H7N_eY02mZs,22037
160
+ cribl_control_plane/models/inputwindowsmetrics.py,sha256=c7Izs2mRg6QKR7m2_NoXM3iecCcV_anX5dIRhW27YUU,17026
155
161
  cribl_control_plane/models/inputwineventlogs.py,sha256=RzYw6fuROAoT8Gkw8NdXKamUhjVuCk5E8E25LCZh5LI,9947
156
- cribl_control_plane/models/inputwiz.py,sha256=k9ZILZ4jebJxtKoi7Nh68RXht9hcaroVejPcLVx4VjU,14538
157
- cribl_control_plane/models/inputzscalerhec.py,sha256=wNa77kbTElqM35KnWdkCN6rMglt_2JeDY7gWxl_hTWo,20170
162
+ cribl_control_plane/models/inputwiz.py,sha256=QidRJ_uRDP0TkYPM-Gi681GEMvHsiNK4k3N_Q9Bag_E,14508
163
+ cribl_control_plane/models/inputzscalerhec.py,sha256=fWXEs_RTlz8fxDlWuo0hxmZH-DjslyKbkLaxXksrcvc,20140
158
164
  cribl_control_plane/models/lakedatasetsearchconfig.py,sha256=R0zz0K1FQ3gxPx44ezINy9y2bEFBGIWyvniF25D7Ydw,591
159
165
  cribl_control_plane/models/lakehouseconnectiontype.py,sha256=W8X07YtfXxwYYkwugN9u65vXfL701NHj3cUWIYys7T0,223
160
166
  cribl_control_plane/models/listinputop.py,sha256=oj7CRRp7DTtHI3WKPKLoEL30a_JrMp48V33pRPgUMmE,697
@@ -171,73 +177,73 @@ cribl_control_plane/models/nodeskippedupgradestatus.py,sha256=wJYUEDcCTx6Mrivh_0
171
177
  cribl_control_plane/models/nodeupgradestate.py,sha256=8zbj0lofMbq89B3lv5gEIS7d1DKHINxQtdqptVE3sSQ,218
172
178
  cribl_control_plane/models/nodeupgradestatus.py,sha256=HlNRUmka5xuPdL-2UupJIe5q1_imCKHUWQQBTIpDCHM,966
173
179
  cribl_control_plane/models/output.py,sha256=9-O9fqEIT8BlvzDatQGcZzk6VGwpT3IJ4T1VSYm56s8,8695
174
- cribl_control_plane/models/outputazureblob.py,sha256=PLM3nsgDtSA16KafegaBvnkePhOGlFwvaOtyhzvDdYE,21958
175
- cribl_control_plane/models/outputazuredataexplorer.py,sha256=fAzRi-HYQ7rga1mD-pyK2gJUrfbOESRvW7aUd03NmuA,30084
176
- cribl_control_plane/models/outputazureeventhub.py,sha256=Z2eAov919aMO7zfvfQzDecZ9eLMEm-DyLiUE4zJkz0g,14797
180
+ cribl_control_plane/models/outputazureblob.py,sha256=3mOrHtABPHbwPdx36qjAIyyxbplfgSHSkjTdXXiqi9g,21928
181
+ cribl_control_plane/models/outputazuredataexplorer.py,sha256=BXSQBt04zbut9kK0OSrCMHDGONbnBZ9iLrlpBBACskM,30054
182
+ cribl_control_plane/models/outputazureeventhub.py,sha256=2-4l-5D5Q5UgKcAd_ZrlCyUipYboPPWRFMOV3dL9Vg8,14767
177
183
  cribl_control_plane/models/outputazurelogs.py,sha256=EIQA99AD9e1r-ht9QPDg3DZN0IN282_vRlcmQd1wNVA,19603
178
- cribl_control_plane/models/outputclickhouse.py,sha256=TVWnrm89OiZa3bvXtt6XeKciyECiBRgAOWNVvaH0idI,29151
179
- cribl_control_plane/models/outputcloudwatch.py,sha256=L13wzgObhFNGAa-fEcMOca7NQ86esX2FsCgzBTX53Fw,11954
180
- cribl_control_plane/models/outputconfluentcloud.py,sha256=1QyfQSbbjRSlzw9aAq_nFEzPwY7v7Wz6hnFQFphKyIo,26229
181
- cribl_control_plane/models/outputcriblhttp.py,sha256=3mPpN9os_JfD7N7WzHYk6O_8JTybiWRste0i5a4W5n0,22936
182
- cribl_control_plane/models/outputcribllake.py,sha256=cQmac8l4TsO7nudDHsqT_2hCBt_HyI-X3rY8ULpQR0s,16772
183
- cribl_control_plane/models/outputcribltcp.py,sha256=gahn1yiXbsIa_3oZh6MUqCFZyzXcFUa5n8usos4-6qE,16377
184
- cribl_control_plane/models/outputcrowdstrikenextgensiem.py,sha256=vjYPlDgbdd7FxzsaGKaF3avwdsnCtfjASPJBZS7SGA8,18869
185
- cribl_control_plane/models/outputdatadog.py,sha256=YmxXh_-ZpmhcEUWQ3DlMcfKowoFvgB-EJkBxxd6u3-8,22093
186
- cribl_control_plane/models/outputdataset.py,sha256=ll8Es74GsxXmdYgGOiIn6KezwfyLLOQAMCEo_NOKe94,20484
184
+ cribl_control_plane/models/outputclickhouse.py,sha256=kW8awWvrTcn4lSj1SZdFZwRTwkqFcB9VG8D2ENtQWVs,29121
185
+ cribl_control_plane/models/outputcloudwatch.py,sha256=ShVZ5c4FKiqy9pY0XKQH-fLIsWYUtAepdKy-ghoRaOQ,11924
186
+ cribl_control_plane/models/outputconfluentcloud.py,sha256=ztvqS-QMlNBjo9KSdu5uwKz2P_WjMhccA8UKEtgMosE,26199
187
+ cribl_control_plane/models/outputcriblhttp.py,sha256=R3IjucGHDhGorOrhNFH8SFefOLLkZQQ2HKfP1i8xbuQ,22966
188
+ cribl_control_plane/models/outputcribllake.py,sha256=SzZGDLCYwi7UPqI1QcdpaYVvrRbiqxJbR73r35-0FLI,16802
189
+ cribl_control_plane/models/outputcribltcp.py,sha256=AcPGSEQ97oTEEnrkFTloq0l057TZJxVOQmn5rxmA-wM,16407
190
+ cribl_control_plane/models/outputcrowdstrikenextgensiem.py,sha256=ZPWW_kX-AcUgmWhSc19EXOaS71A31ZzarwE2ofBHfIw,18839
191
+ cribl_control_plane/models/outputdatadog.py,sha256=JSVeEa_YUziiUq9eN2G0k9h9wuR91zO1kRoaJE8v38k,22123
192
+ cribl_control_plane/models/outputdataset.py,sha256=AL_GSZ8LIp4ibiHj0j0vXBpq3gFtBwlqGNJkmmkb4ek,20514
187
193
  cribl_control_plane/models/outputdefault.py,sha256=2tjMKYSksR-0qWLd_u3PPLXL0gZiSlUdj9JTPYeYMps,1952
188
- cribl_control_plane/models/outputdevnull.py,sha256=PouRAJtfSqvfS8J6LV1IyUytXeOMiyVMRsDtlpJrc08,1619
189
- cribl_control_plane/models/outputdiskspool.py,sha256=OEdMk_2LIGRP4ivm_z4pqy6SlfE0Dq4MRV26DXh7RHE,3673
190
- cribl_control_plane/models/outputdls3.py,sha256=SJ38OjJ68hODN75LzghTQEvJDSnK5oHva9_rMNaT47I,24682
191
- cribl_control_plane/models/outputdynatracehttp.py,sha256=ScEsEZ3tMEGvzbBmhoVm-t3YCmwWNePsyK8niONw34w,20506
192
- cribl_control_plane/models/outputdynatraceotlp.py,sha256=fzZj_CxmaYmjhy8jh7EDwT5XJoQA1KIyoZe7DJXd5v8,22527
194
+ cribl_control_plane/models/outputdevnull.py,sha256=OUts1fVfdGgN-gD9mOfSPSYtv-fz4Mk0UjjsXm749mI,1649
195
+ cribl_control_plane/models/outputdiskspool.py,sha256=HnpZ_PBSsevCz_075iibN1v8m0nMScz0OOUFnCJDfTI,3703
196
+ cribl_control_plane/models/outputdls3.py,sha256=oGRHw08vP2LymHdHJhhqk5DMRMBbc3IzQlMaZ6k9qyM,24652
197
+ cribl_control_plane/models/outputdynatracehttp.py,sha256=U4juy1nf9YFY16djpZI1FNGwd_E9JsDtt_MAyeDeD4E,20476
198
+ cribl_control_plane/models/outputdynatraceotlp.py,sha256=u2B8XfhnBA1IJPk5PMNQOun-D6D7v9Bkw3A-1gMB-X4,22497
193
199
  cribl_control_plane/models/outputelastic.py,sha256=qVaUCxsJdNAqoz9rzWTAofHXqRvZhsWlcWZQ0XmAyA4,22488
194
- cribl_control_plane/models/outputelasticcloud.py,sha256=c82Wk_oc_A2bxoK4Jt3FmY3i5ikX8VZB31pdHlHBzMU,18161
195
- cribl_control_plane/models/outputexabeam.py,sha256=c_4YbKzPhyz_x4ytSWnYpNDy8gn4y1m8lMXrdXOwO78,12655
200
+ cribl_control_plane/models/outputelasticcloud.py,sha256=xY39KdWY1JnxRd-bSKFgPpbpcH5_wQaPgFh7gQ8Q1HM,18131
201
+ cribl_control_plane/models/outputexabeam.py,sha256=YQu_ePcDsqQjM8l4gDnUotJLnMJBAv-cA46jH0t6CK8,12625
196
202
  cribl_control_plane/models/outputfilesystem.py,sha256=xlrWLUjsezob6NrN-UES8k1N_WfVJaANkqGVk7NtTOM,16433
197
203
  cribl_control_plane/models/outputgooglechronicle.py,sha256=V9WA5XukdQbqjSYEJXEcd30_aPYxlmIUE_uGjX6HsBY,22003
198
- cribl_control_plane/models/outputgooglecloudlogging.py,sha256=rWhDaRs6LcIuGbLx2HUsTW1lcje8RofgrVOTp9psZ-k,33615
199
- cribl_control_plane/models/outputgooglecloudstorage.py,sha256=s4Yf0U8KOes4oqKzrEZ-F8FbVRB0r9AAEAlFGk-vumE,22415
204
+ cribl_control_plane/models/outputgooglecloudlogging.py,sha256=8BVEEk4NsXPAIrzK087_DCJWREO6C36KpJs4SimVPWY,33585
205
+ cribl_control_plane/models/outputgooglecloudstorage.py,sha256=yJI9xSgu9XTsDtRBS_dMZdfLpKv2t4cyi4Px8hYuSM4,22385
200
206
  cribl_control_plane/models/outputgooglepubsub.py,sha256=TPTU3z6xXKd2MFIkViytHJU12WvnQnY-7rI-d4GbFPI,12231
201
- cribl_control_plane/models/outputgrafanacloud.py,sha256=IHoDDlEuNNpSxv3VZyQJ9W31NuMw_ao9-hSKpXmJ8U0,52877
202
- cribl_control_plane/models/outputgraphite.py,sha256=gqFTSyI3UCbzsbvG9wxUR96HAHWCTLOH4di8HvDwBz0,9800
207
+ cribl_control_plane/models/outputgrafanacloud.py,sha256=vnSpJFbY__rDU45urBD-3eVCrZ_yAfoql0pULwkFx4U,52937
208
+ cribl_control_plane/models/outputgraphite.py,sha256=96YvOtlivN9IxPvVerjj_30RNfnn9tKcvEWsH2nzMc4,9770
203
209
  cribl_control_plane/models/outputhoneycomb.py,sha256=-XgAb04SQ5Bg9W2ZeUH0RdMXptYS0fRFtCzhb7bRpvA,17091
204
- cribl_control_plane/models/outputhumiohec.py,sha256=gR7UikgJas0mjgvI3EmnUx8fip868jQyfpyaEQdUnYw,18330
210
+ cribl_control_plane/models/outputhumiohec.py,sha256=7A4gV6-6cyfW-PxFI6AmfG7Fu3LWPfpByaBcKLW8Iw0,18300
205
211
  cribl_control_plane/models/outputinfluxdb.py,sha256=_UfshiBXt3OE0VsJM8jQrC6IJDQVBGjkFpGEcka3npI,23740
206
- cribl_control_plane/models/outputkafka.py,sha256=ni-zUAoo10k-GGESXAxV4Zz14KnOIX0tz9Xhi_-9L9o,25575
207
- cribl_control_plane/models/outputkinesis.py,sha256=GMCXAozc85082FuxuTI2la8BlMziMXXrDp9F1ZTf0rs,13186
212
+ cribl_control_plane/models/outputkafka.py,sha256=1DqBcya7259tAXaOxuhduvbe03GUNe34At0U3zUB78g,25545
213
+ cribl_control_plane/models/outputkinesis.py,sha256=2B_r1WqTyBzQNutLM0kwBr0FQVzW9jGwpdKbFX7i_20,13156
208
214
  cribl_control_plane/models/outputloki.py,sha256=drGaSiaQ1RXrv0QS8ZsdHrRx2WO-OdMH08gtuHPJB-4,22443
209
- cribl_control_plane/models/outputminio.py,sha256=2jRAuxXH31FNe0-h_LPG4qzIpgy7S8_PvDRJLjCY4BY,22321
210
- cribl_control_plane/models/outputmsk.py,sha256=cs1n5Ws3NeXDrRGfxvJDXGfFWlJYC5z_LFgnSTyU8kU,28522
215
+ cribl_control_plane/models/outputminio.py,sha256=k2DCu82KnFRwtnnbAS4js_54jqJTDDrU8kaKFpp114U,22291
216
+ cribl_control_plane/models/outputmsk.py,sha256=tyg-An-de9-OyJWp77qJX2Ah3pcd4KV8cCv2bDl7aXs,28492
211
217
  cribl_control_plane/models/outputnetflow.py,sha256=xOBy2Q48SfhNT2ifAQU-bPVQ5nOpUqMJ5B40SlZ3-0o,2790
212
- cribl_control_plane/models/outputnewrelic.py,sha256=EOyEIlYmMZdfUyDR8tZd3N4ddn-K122BH4Fr3PcHcdw,19436
213
- cribl_control_plane/models/outputnewrelicevents.py,sha256=-8CAYjj6B7chxb3FUoy8buNGWrMbKiCe1zf3n7dNAG8,18543
218
+ cribl_control_plane/models/outputnewrelic.py,sha256=OX-C9yORHBo5I8gE83KLzpqEm6OBYNp-ctdgEkwB9yM,19466
219
+ cribl_control_plane/models/outputnewrelicevents.py,sha256=iFx4uRjq-fK58epups-i23yvc8CHJXyPH-uM7JIiqxE,18513
214
220
  cribl_control_plane/models/outputopentelemetry.py,sha256=y2PmeGkinPXLV84KcBYjP_sUYqOyUXpSyHNdQHka3J8,30293
215
221
  cribl_control_plane/models/outputprometheus.py,sha256=Oq3iZa1nnzYn9h7JzD015SPPNkSJ_LqhMgIV0JvGfFA,22994
216
- cribl_control_plane/models/outputring.py,sha256=jHg6wh2fXQvQAguqmb__fp0vo0ESlHbKOBpgIet5B00,4289
222
+ cribl_control_plane/models/outputring.py,sha256=ApRdBPc5cqdvJst81ORl7DKIPeiKr9U78FHiLIZD4TQ,4319
217
223
  cribl_control_plane/models/outputrouter.py,sha256=NFxnKjlI5v0m67qjiPDuQ_UYqoNQDTTNv5SQWlF3vrs,2686
218
- cribl_control_plane/models/outputs3.py,sha256=JRm4eMmjxyXJNBuCUvzfuiQrVqdWvohRUs39dkcxAEw,24729
224
+ cribl_control_plane/models/outputs3.py,sha256=_LJwZ0fPJTl-Qz90_dxuTHuZtDCk07nwmT_ObyqhV7c,24699
219
225
  cribl_control_plane/models/outputsamplesresponse.py,sha256=gQrDTmfvvYDoKPYyhl6qijUU8AksXxq2mPHahVPssAk,390
220
- cribl_control_plane/models/outputsecuritylake.py,sha256=EeuziQzI3Rs55wH6d7hejeCJ7R8YO2ubmY1HNsoVUIA,22716
221
- cribl_control_plane/models/outputsentinel.py,sha256=UWw3jpujaGvfUtFe5laW9HA48_a0sRxQeB8ssZCRgY8,24561
222
- cribl_control_plane/models/outputsentineloneaisiem.py,sha256=wqv6QuqhGrT_RLLBld8YAFdkjPA7CrVKXpE04l8OuBc,27496
223
- cribl_control_plane/models/outputservicenow.py,sha256=7OsHdEjjOkTubSyfTE8AQG0xznDH2cnOvIWbugsmlAA,24762
226
+ cribl_control_plane/models/outputsecuritylake.py,sha256=wHfbF34yTGqFDWaldzOnRb4bvhV4BDZJAQ14NDZ52ok,22686
227
+ cribl_control_plane/models/outputsentinel.py,sha256=sqCqMAtsh7r1yxde6NGE_QGvdNCxMaxmcaasqLKYm1A,24531
228
+ cribl_control_plane/models/outputsentineloneaisiem.py,sha256=Z7Oe4c9Z4IWItFBFd8ue9mqmYXlNKpwqWvnTRf4fKdU,27466
229
+ cribl_control_plane/models/outputservicenow.py,sha256=yaZtnSxDau3Nn3UJnzuHZi7qvg94dCz71jpd1VAUS_Y,24732
224
230
  cribl_control_plane/models/outputsignalfx.py,sha256=j4xGQBHD2fcqsBhv7qVnwabocs2Zr0qq-V7SZ0ase1M,17682
225
231
  cribl_control_plane/models/outputsnmp.py,sha256=TQK8zgga3LAuyp_YGhqobc7FYLBBJRciw2ZBFQPkU1Y,2738
226
- cribl_control_plane/models/outputsns.py,sha256=XSsfUHMry8FB8xRNV0FOA66Wiv9laGftWHMt-VlAlNE,12419
227
- cribl_control_plane/models/outputsplunk.py,sha256=ypGWkSAsYJ5JInxv9wFBTeqvFpMZxxStjVZIcJKFbig,16054
228
- cribl_control_plane/models/outputsplunkhec.py,sha256=VqxXfD7erTcBhc9AOPZ5YfQM5rwHy2Yfu45dHGq-Iig,20740
232
+ cribl_control_plane/models/outputsns.py,sha256=p0lELGksrgXocml37wLx6a1S6ab2ElOONNWKknH8LWY,12389
233
+ cribl_control_plane/models/outputsplunk.py,sha256=CcEWrdfKzZJLiwQG9cy2RdnXCM5OCE_Rze6ygh0sq9o,16024
234
+ cribl_control_plane/models/outputsplunkhec.py,sha256=unckAGMWf2-6kgoix39VENyBjTsC3v5CTZkwhqzXjyk,20770
229
235
  cribl_control_plane/models/outputsplunklb.py,sha256=ch5yAD1YCC2uRwg3WTzyiGRjSaq6aWeGJDOXWebxvVc,24722
230
- cribl_control_plane/models/outputsqs.py,sha256=A1Oswm0BdjW7UratIiURO_kR1MXSQmShdzsLMiCIZAA,14536
231
- cribl_control_plane/models/outputstatsd.py,sha256=8PyMXR8QYfuZl8U0nNtMGIzydTyhmxsSpxE3aTJLdro,9738
232
- cribl_control_plane/models/outputstatsdext.py,sha256=xyy5fuKkePfWPhibWUvOgfaxsNy4ha-ceU0sy5xYnbc,9831
236
+ cribl_control_plane/models/outputsqs.py,sha256=yU_s7HvbZrlS9gsNuOVZw2lLfPkcytmlzS-Lb7-uIjw,14506
237
+ cribl_control_plane/models/outputstatsd.py,sha256=9y5evh_vSTptkzztDxgVohP4WKiMgZQXKUN2-YjA3MU,9708
238
+ cribl_control_plane/models/outputstatsdext.py,sha256=BEHdxjGNVQ74WfBxk52UvBk1k7u-yQ0uIF_8_Oh4FUg,9801
233
239
  cribl_control_plane/models/outputsumologic.py,sha256=IHrIxdgjVKGwiQuE5kKjemPY7YapkXLX9d4NXACe8ss,18061
234
- cribl_control_plane/models/outputsyslog.py,sha256=ozRYpcuqMcoOJr4UJgnnsheG_jgbdRpj1e6HPitBxyM,16779
235
- cribl_control_plane/models/outputtcpjson.py,sha256=tQOXPTIU3UxSP6BFTY-ocBv8HPcSdvgnf_FMbKBq_QE,17460
240
+ cribl_control_plane/models/outputsyslog.py,sha256=38Tzcqc682yqZnuu5hepDJShUicB0pHabKTH3ENyAk4,16809
241
+ cribl_control_plane/models/outputtcpjson.py,sha256=7RY26QNjgawu2exy-GHftLpN97bTqfZOk9alDVBzQos,17490
236
242
  cribl_control_plane/models/outputtestrequest.py,sha256=UTUiu9WvmbQxqBQtwoBSMPjAynOvKPSrNcsjoGTjPp8,428
237
243
  cribl_control_plane/models/outputtestresponse.py,sha256=cKeXPvSpCzU6cWpXvHoujp-pmS-qVBoSkz3pb7MdV7M,775
238
244
  cribl_control_plane/models/outputwavefront.py,sha256=NDhLd0UM0zQ52Pmlg9fCNL8BOdRC0LYdOjRDK8hOrFk,17403
239
- cribl_control_plane/models/outputwebhook.py,sha256=IQyMiYjexOAvV2EN5BS_JnYtpWYZTbLzIhdugKX7HzI,32803
240
- cribl_control_plane/models/outputxsiam.py,sha256=tDb9XM9Q7KUkULypkAqXR5Mzh0T8lu2Z1zPhI_pIuTw,19523
245
+ cribl_control_plane/models/outputwebhook.py,sha256=Ljeeb4S4zwyKP-oWdWEWD7FLtBiKT7w_6dCxD5gbKMQ,32833
246
+ cribl_control_plane/models/outputxsiam.py,sha256=BaCAvUqmCnFIXv3vmUZJiM2aW2ebNZqJVTdBjWaroZE,19553
241
247
  cribl_control_plane/models/packinfo.py,sha256=HMron4as9lO-Upq5w5vQNaTy0WziZ6UueLZhLcpG7zU,1784
242
248
  cribl_control_plane/models/packinstallinfo.py,sha256=mrnU3uJDRabfGUHKP5tSS7VJ-PyQ5_gkoc0NUhd3Dms,1863
243
249
  cribl_control_plane/models/packrequestbody.py,sha256=xNPZ7fLLI4xzFh0dkOtpW9hsUxT7ymkL3-MNXf1KH2Y,1835
@@ -245,12 +251,11 @@ cribl_control_plane/models/pipeline.py,sha256=AaoC5euxac-fwul-LM1mNf03hCzrXmHQGZ
245
251
  cribl_control_plane/models/pipelinefunctionconf.py,sha256=X61RPaoYpa_UZWavnQiNSaXlXqS2EdUK51MQ02IvCeo,1646
246
252
  cribl_control_plane/models/rbacresource.py,sha256=Mj5b8UC2KjGIdEc0tmuWsPdXwDgkz4lQcv_vPvM2LpE,361
247
253
  cribl_control_plane/models/resourcepolicy.py,sha256=GxsEqA88OvvaCg016cBcauLeQ_5TjuygZxRLwQKj6R8,516
248
- cribl_control_plane/models/restartresponse.py,sha256=9s4pu4DHPwCHNiuMQKQw6bZ22WWNi_RUMuGhmVbNx0U,590
249
254
  cribl_control_plane/models/routecloneconf.py,sha256=ESvEj0vl58BGOwJB5kYu3vMAm88JizYHXU7qorGdw9M,293
250
255
  cribl_control_plane/models/routeconf.py,sha256=whFyvzWwmEqAo_0HoTFKJTZqQ2p8kdPKaZJIlh9nS58,1451
251
256
  cribl_control_plane/models/routes.py,sha256=2MRVmc4zvUjQw6moQmRYss_XaoGcaauj2Jpdb3VX8pA,2022
252
257
  cribl_control_plane/models/routesroute.py,sha256=7hFUWpgVDBj0N117IFxZRGkFqJntbe4NyBakVyMKsTY,2339
253
- cribl_control_plane/models/schemeclientoauth.py,sha256=MaZs9lOB3_y8uTZNTHIuAG_X66ZrEpRj0qZGAsBfXFM,712
258
+ cribl_control_plane/models/schemeclientoauth.py,sha256=cjePTTFIlKoYg8JZOOuvacOb1Zb5RqmgiqyQA9P3kvU,839
254
259
  cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D4kwRsAQvY,1097
255
260
  cribl_control_plane/models/teamaccesscontrollist.py,sha256=HLMck-wyuJYiKD-adSS5ti4yLbHE2snZaOAI0GwgfOI,483
256
261
  cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=q_bOMXSkfqyNSNFN-qsseimaFl9xfRsbvjdMfAPAERI,1852
@@ -263,19 +268,23 @@ cribl_control_plane/models/updateoutputbyidop.py,sha256=JMdnqmkiXN2tQj0VWfj9q0Cr
263
268
  cribl_control_plane/models/updatepacksbyidop.py,sha256=nQeRQF-NTOCRMWz_gXfYlN0-I2OMM8Rovh_vAq73wzw,1965
264
269
  cribl_control_plane/models/updatepipelinebyidop.py,sha256=B13h6gadw4NV7waH6yoDKCR2YCzVS8XZrzB_5PG9CmE,1410
265
270
  cribl_control_plane/models/updateroutesbyidop.py,sha256=CoEURdSBZ4-pp1WSncdT_oZCbx3o7MlmMSDY0D44D_o,1358
266
- cribl_control_plane/models/updateworkersrestartop.py,sha256=OwX1snIrUTfghc0Pb2PpI5IO6NS-aL0BOMzWqLl8GAA,787
267
271
  cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
268
- cribl_control_plane/nodes.py,sha256=TLs0z8kUcl7ohh-yyR51_zY3PBQoI5K91fd21dc7Ky8,15540
272
+ cribl_control_plane/nodes.py,sha256=XnIakBCj8yatvp2lqM8h4n9Ya0LAflHRj6rciFozbLw,16309
269
273
  cribl_control_plane/packs.py,sha256=Ka1zVuKCDO4Wi6Z8PWYh8KMdVoLSdO6_Mec2rgqg8Ao,31864
270
274
  cribl_control_plane/pipelines.py,sha256=gHyI9nwt_3cxBQ7gt6EPUPs9NuRC0iA_PoFRAE4Z-V8,35892
271
275
  cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
272
276
  cribl_control_plane/routes_sdk.py,sha256=Snb8Dmim7Fm9EsMqbyjuPnXKmqhJ10L_t1bujJUWTyM,31025
273
- cribl_control_plane/sdk.py,sha256=a8LJ56_Hck0_xpZNr7FOzMJHQm5rWK3ezwwzGw1UwzE,8006
277
+ cribl_control_plane/samples.py,sha256=1eBTiQ4dgHFN2-ZSxawJ9TpXufxZmbEJBxJQs69HFIE,15803
278
+ cribl_control_plane/sdk.py,sha256=UcM5PrBF5eQKCivl1WEPbIIZ5I6IPQLdi3K4GUxijbY,7463
274
279
  cribl_control_plane/sdkconfiguration.py,sha256=bit6SSOyHqvibdtgNad5_ZcgMotk8NJfgHpKsBK8HFg,1259
275
- cribl_control_plane/sources.py,sha256=Q1frEfitda-Xayiv4p6fHJmmZlKwm0daWt53hmhe8Sw,53982
280
+ cribl_control_plane/sources.py,sha256=h3TjlBzLcXSReBXLKUxr_cFgmASmeS2rcnHBIF-Sokk,35998
281
+ cribl_control_plane/statuses.py,sha256=kcNioEuIpmogvmQn_qeei-tJkf1vyEEO3aefmKFyChs,7461
282
+ cribl_control_plane/summaries.py,sha256=N86J6kQ8biZVarzFnEAO10XrbLHdumPs-fUhamQ-LIs,7468
283
+ cribl_control_plane/teams.py,sha256=uEUfjr56W7_lzFVYdWfG7QVXr_sALvmlWoVBE1Yv1sc,8538
284
+ cribl_control_plane/tokens.py,sha256=iP_0_Pl8LFgs_ektBTU-bvRjJq6JQ3q7qMWIeIIuXmc,7220
276
285
  cribl_control_plane/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
277
286
  cribl_control_plane/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
278
- cribl_control_plane/utils/__init__.py,sha256=BQt6xIdX86A6mOHAnxAXBXaPgdUJtDy2-_4ymAsII_Y,5436
287
+ cribl_control_plane/utils/__init__.py,sha256=f0z1dsfJtiN5V5w4AE1dZb6W0_hDyMzVaDVq18RCbiQ,5470
279
288
  cribl_control_plane/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
280
289
  cribl_control_plane/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
281
290
  cribl_control_plane/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
@@ -287,13 +296,13 @@ cribl_control_plane/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0n
287
296
  cribl_control_plane/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,5899
288
297
  cribl_control_plane/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
289
298
  cribl_control_plane/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
290
- cribl_control_plane/utils/security.py,sha256=quuubouAZskAohOFNQz5g-ZLwVayLG-3mY88Ah8isCM,6595
299
+ cribl_control_plane/utils/security.py,sha256=Pkd-6ntMV3j5YYzJ0mA2RKN-8Ajk2w2NATLtqPdIYS0,6773
291
300
  cribl_control_plane/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0HwvOE,5999
292
301
  cribl_control_plane/utils/unmarshal_json_response.py,sha256=yxi3F_O3SCU0SrexiR3BvQS-E81pW2siLgpTXYegAyg,595
293
302
  cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
294
303
  cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
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.26a1.dist-info/METADATA,sha256=KvXFpmUvwVsrLxC5EcplyhVw9qicVzz8mvtcTN2vKKk,38227
298
- cribl_control_plane-0.0.26a1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
299
- cribl_control_plane-0.0.26a1.dist-info/RECORD,,
304
+ cribl_control_plane/versions.py,sha256=Wdaxc2wZeEeD12wAh7SQ0RGG9KgwKaWQ7bc8qOQ8oAo,920
305
+ cribl_control_plane/versions_configs.py,sha256=nPgG2iQyehB4MuRSeNbY4KFWZSPW_oNlr2306Oks58k,7178
306
+ cribl_control_plane-0.0.28.dist-info/METADATA,sha256=v7F1z32dqcglhqR9sm7VKdIpZ8rm-J6c7X6xOVtylRY,38811
307
+ cribl_control_plane-0.0.28.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
308
+ cribl_control_plane-0.0.28.dist-info/RECORD,,
@@ -1,23 +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 typing import Any, Dict, List, Optional
6
- from typing_extensions import NotRequired, TypedDict
7
-
8
-
9
- class CreateVersionSyncResponseTypedDict(TypedDict):
10
- r"""a list of any objects"""
11
-
12
- count: NotRequired[int]
13
- r"""number of items present in the items array"""
14
- items: NotRequired[List[Dict[str, Any]]]
15
-
16
-
17
- class CreateVersionSyncResponse(BaseModel):
18
- r"""a list of any objects"""
19
-
20
- count: Optional[int] = None
21
- r"""number of items present in the items array"""
22
-
23
- items: Optional[List[Dict[str, Any]]] = None