cribl-control-plane 0.3.0b14__tar.gz → 0.4.0__tar.gz

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.
Files changed (366) hide show
  1. cribl_control_plane-0.4.0/LICENSE +201 -0
  2. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/PKG-INFO +51 -79
  3. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/README-PYPI.md +49 -78
  4. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/pyproject.toml +2 -1
  5. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/_version.py +6 -4
  6. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/acl.py +6 -4
  7. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/basesdk.py +6 -0
  8. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/branches.py +8 -4
  9. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/commits.py +42 -28
  10. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/commits_files.py +12 -8
  11. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/configs_versions.py +10 -4
  12. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/destinations.py +30 -20
  13. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/destinations_pq.py +12 -8
  14. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/groups_sdk.py +60 -24
  15. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/health.py +2 -0
  16. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/hectokens.py +32 -8
  17. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/lakedatasets.py +86 -20
  18. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/__init__.py +512 -205
  19. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/addhectokenrequest.py +7 -1
  20. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/configgroup.py +0 -1
  21. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/createconfiggroupbyproductop.py +20 -1
  22. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/createcribllakedatasetbylakeidop.py +19 -1
  23. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/createinputhectokenbyidop.py +20 -1
  24. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedgitdiffresult.py → cribl_control_plane-0.4.0/src/cribl_control_plane/models/createinputop.py +9 -5
  25. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedgitshowresult.py → cribl_control_plane-0.4.0/src/cribl_control_plane/models/createoutputop.py +9 -5
  26. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/createoutputtestbyidop.py +20 -1
  27. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedpackinstallinfo.py → cribl_control_plane-0.4.0/src/cribl_control_plane/models/createpacksop.py +6 -2
  28. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedcribllakedataset.py → cribl_control_plane-0.4.0/src/cribl_control_plane/models/createpipelineop.py +9 -5
  29. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/createroutesappendbyidop.py +20 -2
  30. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/createversioncommitop.py +19 -1
  31. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedstring.py → cribl_control_plane-0.4.0/src/cribl_control_plane/models/createversionpushop.py +6 -2
  32. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/createversionrevertop.py +19 -1
  33. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/createversionundoop.py +18 -1
  34. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +20 -1
  35. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py +20 -1
  36. cribl_control_plane-0.4.0/src/cribl_control_plane/models/deleteinputbyidop.py +37 -0
  37. cribl_control_plane-0.4.0/src/cribl_control_plane/models/deleteoutputbyidop.py +37 -0
  38. cribl_control_plane-0.4.0/src/cribl_control_plane/models/deleteoutputpqbyidop.py +36 -0
  39. cribl_control_plane-0.4.0/src/cribl_control_plane/models/deletepacksbyidop.py +37 -0
  40. cribl_control_plane-0.4.0/src/cribl_control_plane/models/deletepipelinebyidop.py +37 -0
  41. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +19 -1
  42. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +19 -1
  43. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getconfiggroupbyproductandidop.py +19 -1
  44. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +19 -1
  45. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py +20 -1
  46. cribl_control_plane-0.4.0/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +98 -0
  47. cribl_control_plane-0.4.0/src/cribl_control_plane/models/getinputbyidop.py +37 -0
  48. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getmasterworkerentryop.py +18 -1
  49. cribl_control_plane-0.4.0/src/cribl_control_plane/models/getoutputbyidop.py +37 -0
  50. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getoutputpqbyidop.py +20 -1
  51. cribl_control_plane-0.4.0/src/cribl_control_plane/models/getoutputsamplesbyidop.py +37 -0
  52. cribl_control_plane-0.4.0/src/cribl_control_plane/models/getpacksbyidop.py +37 -0
  53. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getpacksop.py +19 -1
  54. cribl_control_plane-0.4.0/src/cribl_control_plane/models/getpipelinebyidop.py +37 -0
  55. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getroutesbyidop.py +20 -1
  56. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getsummaryop.py +19 -1
  57. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedbranchinfo.py → cribl_control_plane-0.4.0/src/cribl_control_plane/models/getversionbranchop.py +6 -2
  58. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getversioncountop.py +19 -1
  59. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getversiondiffop.py +19 -1
  60. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getversionfilesop.py +19 -1
  61. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedgitinfo.py → cribl_control_plane-0.4.0/src/cribl_control_plane/models/getversioninfoop.py +6 -2
  62. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getversionop.py +19 -1
  63. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getversionshowop.py +19 -1
  64. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/getversionstatusop.py +19 -1
  65. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/groupcreaterequest.py +0 -1
  66. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/input.py +18 -15
  67. cribl_control_plane-0.4.0/src/cribl_control_plane/models/inputcloudflarehec.py +513 -0
  68. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/listconfiggroupbyproductop.py +19 -1
  69. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedinput.py → cribl_control_plane-0.4.0/src/cribl_control_plane/models/listinputop.py +6 -2
  70. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/listmasterworkerentryop.py +19 -1
  71. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedoutput.py → cribl_control_plane-0.4.0/src/cribl_control_plane/models/listoutputop.py +6 -2
  72. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedpipeline.py → cribl_control_plane-0.4.0/src/cribl_control_plane/models/listpipelineop.py +6 -2
  73. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedroutes.py → cribl_control_plane-0.4.0/src/cribl_control_plane/models/listroutesop.py +6 -2
  74. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/output.py +22 -19
  75. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputazureblob.py +14 -0
  76. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputazuredataexplorer.py +7 -0
  77. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputchronicle.py +5 -0
  78. cribl_control_plane-0.4.0/src/cribl_control_plane/models/outputcloudflarer2.py +632 -0
  79. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputcriblhttp.py +7 -0
  80. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputcribllake.py +14 -0
  81. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputdatabricks.py +19 -0
  82. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputdls3.py +14 -0
  83. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputexabeam.py +7 -0
  84. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputfilesystem.py +14 -0
  85. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputgooglecloudstorage.py +14 -0
  86. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputmicrosoftfabric.py +2 -2
  87. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputminio.py +19 -4
  88. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputs3.py +14 -0
  89. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsecuritylake.py +14 -0
  90. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsyslog.py +7 -0
  91. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/runnablejobcollection.py +0 -8
  92. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/runnablejobexecutor.py +0 -4
  93. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/runnablejobscheduledsearch.py +0 -4
  94. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/updateconfiggroupbyproductandidop.py +19 -1
  95. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py +20 -1
  96. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +20 -1
  97. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/updatehectokenrequest.py +7 -1
  98. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/updateinputbyidop.py +19 -1
  99. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +20 -1
  100. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/updateoutputbyidop.py +19 -1
  101. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/updatepacksbyidop.py +20 -1
  102. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/updatepipelinebyidop.py +19 -1
  103. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/updateroutesbyidop.py +19 -1
  104. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/nodes.py +20 -8
  105. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/packs.py +32 -20
  106. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/pipelines.py +30 -20
  107. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/routes_sdk.py +28 -16
  108. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/samples.py +16 -8
  109. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/sources.py +30 -20
  110. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/statuses.py +6 -4
  111. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/summaries.py +6 -4
  112. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/teams.py +6 -4
  113. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/tokens.py +2 -0
  114. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/forms.py +21 -10
  115. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/queryparams.py +14 -2
  116. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/retries.py +69 -5
  117. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/unmarshal_json_response.py +15 -1
  118. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/versions_configs.py +6 -4
  119. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedconfiggroup.py +0 -20
  120. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/counteddistributedsummary.py +0 -20
  121. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedgitcommitsummary.py +0 -20
  122. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedgitcountresult.py +0 -20
  123. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedgitfilesresponse.py +0 -20
  124. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedgitlogresult.py +0 -20
  125. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedgitrevertresult.py +0 -20
  126. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedgitstatusresult.py +0 -20
  127. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedinputsplunkhec.py +0 -20
  128. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedjobinfo.py +0 -20
  129. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedmasterworkerentry.py +0 -20
  130. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countednumber.py +0 -19
  131. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedobject.py +0 -19
  132. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedoutputsamplesresponse.py +0 -20
  133. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedoutputtestresponse.py +0 -20
  134. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedpackinfo.py +0 -20
  135. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/countedteamaccesscontrollist.py +0 -20
  136. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/counteduseraccesscontrollist.py +0 -20
  137. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/deleteinputbyidop.py +0 -18
  138. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/deleteoutputbyidop.py +0 -18
  139. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/deleteoutputpqbyidop.py +0 -18
  140. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/deletepacksbyidop.py +0 -18
  141. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/deletepipelinebyidop.py +0 -18
  142. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +0 -21
  143. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/getinputbyidop.py +0 -18
  144. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/getoutputbyidop.py +0 -18
  145. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/getoutputsamplesbyidop.py +0 -18
  146. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/getpacksbyidop.py +0 -18
  147. cribl_control_plane-0.3.0b14/src/cribl_control_plane/models/getpipelinebyidop.py +0 -18
  148. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/py.typed +0 -0
  149. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/__init__.py +0 -0
  150. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/_hooks/__init__.py +0 -0
  151. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/_hooks/clientcredentials.py +0 -0
  152. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/_hooks/registration.py +0 -0
  153. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/_hooks/sdkhooks.py +0 -0
  154. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/_hooks/types.py +0 -0
  155. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/auth_sdk.py +0 -0
  156. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/errors/__init__.py +0 -0
  157. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/errors/apierror.py +0 -0
  158. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/errors/criblcontrolplaneerror.py +0 -0
  159. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/errors/error.py +0 -0
  160. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/errors/healthserverstatus_error.py +0 -0
  161. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/errors/no_response_error.py +0 -0
  162. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/errors/responsevalidationerror.py +0 -0
  163. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/groups_configs.py +0 -0
  164. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/httpclient.py +0 -0
  165. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/authtoken.py +0 -0
  166. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/branchinfo.py +0 -0
  167. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/cacheconnection.py +0 -0
  168. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/cacheconnectionbackfillstatus.py +0 -0
  169. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/cloudprovider.py +0 -0
  170. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/commit.py +0 -0
  171. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/configgroupcloud.py +0 -0
  172. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/configgrouplookups.py +0 -0
  173. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/criblevent.py +0 -0
  174. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/cribllakedataset.py +0 -0
  175. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/cribllakedatasetupdate.py +0 -0
  176. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/currentbranchresult.py +0 -0
  177. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/datasetmetadata.py +0 -0
  178. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/datasetmetadataruninfo.py +0 -0
  179. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/deployrequest.py +0 -0
  180. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/deployrequestlookups.py +0 -0
  181. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/difffiles.py +0 -0
  182. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/distributedsummary.py +0 -0
  183. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitcommitparams.py +0 -0
  184. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitcommitsummary.py +0 -0
  185. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitcountresult.py +0 -0
  186. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitdiffresult.py +0 -0
  187. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitfile.py +0 -0
  188. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitfilesresponse.py +0 -0
  189. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitinfo.py +0 -0
  190. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitlogresult.py +0 -0
  191. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitrevertparams.py +0 -0
  192. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitrevertresult.py +0 -0
  193. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitshowresult.py +0 -0
  194. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/gitstatusresult.py +0 -0
  195. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/hbcriblinfo.py +0 -0
  196. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/hbleaderinfo.py +0 -0
  197. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/healthserverstatus.py +0 -0
  198. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/heartbeatmetadata.py +0 -0
  199. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputappscope.py +0 -0
  200. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputazureblob.py +0 -0
  201. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputcollection.py +0 -0
  202. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputconfluentcloud.py +0 -0
  203. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputcribl.py +0 -0
  204. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputcriblhttp.py +0 -0
  205. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputcribllakehttp.py +0 -0
  206. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputcriblmetrics.py +0 -0
  207. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputcribltcp.py +0 -0
  208. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputcrowdstrike.py +0 -0
  209. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputdatadogagent.py +0 -0
  210. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputdatagen.py +0 -0
  211. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputedgeprometheus.py +0 -0
  212. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputelastic.py +0 -0
  213. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputeventhub.py +0 -0
  214. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputexec.py +0 -0
  215. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputfile.py +0 -0
  216. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputfirehose.py +0 -0
  217. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputgooglepubsub.py +0 -0
  218. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputgrafana.py +0 -0
  219. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputhttp.py +0 -0
  220. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputhttpraw.py +0 -0
  221. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputjournalfiles.py +0 -0
  222. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputkafka.py +0 -0
  223. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputkinesis.py +0 -0
  224. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputkubeevents.py +0 -0
  225. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputkubelogs.py +0 -0
  226. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputkubemetrics.py +0 -0
  227. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputloki.py +0 -0
  228. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputmetrics.py +0 -0
  229. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputmodeldriventelemetry.py +0 -0
  230. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputmsk.py +0 -0
  231. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputnetflow.py +0 -0
  232. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputoffice365mgmt.py +0 -0
  233. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputoffice365msgtrace.py +0 -0
  234. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputoffice365service.py +0 -0
  235. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputopentelemetry.py +0 -0
  236. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputprometheus.py +0 -0
  237. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputprometheusrw.py +0 -0
  238. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputrawudp.py +0 -0
  239. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputs3.py +0 -0
  240. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputs3inventory.py +0 -0
  241. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputsecuritylake.py +0 -0
  242. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputsnmp.py +0 -0
  243. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputsplunk.py +0 -0
  244. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputsplunkhec.py +0 -0
  245. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputsplunksearch.py +0 -0
  246. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputsqs.py +0 -0
  247. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputsyslog.py +0 -0
  248. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputsystemmetrics.py +0 -0
  249. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputsystemstate.py +0 -0
  250. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputtcp.py +0 -0
  251. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputtcpjson.py +0 -0
  252. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputwef.py +0 -0
  253. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputwindowsmetrics.py +0 -0
  254. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputwineventlogs.py +0 -0
  255. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputwiz.py +0 -0
  256. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputwizwebhook.py +0 -0
  257. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/inputzscalerhec.py +0 -0
  258. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/jobinfo.py +0 -0
  259. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/jobstatus.py +0 -0
  260. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/lakedatasetmetrics.py +0 -0
  261. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/lakedatasetsearchconfig.py +0 -0
  262. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/lakehouseconnectiontype.py +0 -0
  263. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/logininfo.py +0 -0
  264. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/lookupversions.py +0 -0
  265. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/masterworkerentry.py +0 -0
  266. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/nodeactiveupgradestatus.py +0 -0
  267. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/nodefailedupgradestatus.py +0 -0
  268. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/nodeprovidedinfo.py +0 -0
  269. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/nodeskippedupgradestatus.py +0 -0
  270. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/nodeupgradestate.py +0 -0
  271. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/nodeupgradestatus.py +0 -0
  272. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outpostnodeinfo.py +0 -0
  273. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputazureeventhub.py +0 -0
  274. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputazurelogs.py +0 -0
  275. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputclickhouse.py +0 -0
  276. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputcloudwatch.py +0 -0
  277. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputconfluentcloud.py +0 -0
  278. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputcribltcp.py +0 -0
  279. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputcrowdstrikenextgensiem.py +0 -0
  280. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputdatadog.py +0 -0
  281. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputdataset.py +0 -0
  282. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputdefault.py +0 -0
  283. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputdevnull.py +0 -0
  284. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputdiskspool.py +0 -0
  285. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputdynatracehttp.py +0 -0
  286. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputdynatraceotlp.py +0 -0
  287. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputelastic.py +0 -0
  288. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputelasticcloud.py +0 -0
  289. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputgooglechronicle.py +0 -0
  290. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputgooglecloudlogging.py +0 -0
  291. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputgooglepubsub.py +0 -0
  292. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputgrafanacloud.py +0 -0
  293. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputgraphite.py +0 -0
  294. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputhoneycomb.py +0 -0
  295. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputhumiohec.py +0 -0
  296. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputinfluxdb.py +0 -0
  297. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputkafka.py +0 -0
  298. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputkinesis.py +0 -0
  299. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputloki.py +0 -0
  300. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputmsk.py +0 -0
  301. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputnetflow.py +0 -0
  302. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputnewrelic.py +0 -0
  303. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputnewrelicevents.py +0 -0
  304. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputopentelemetry.py +0 -0
  305. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputprometheus.py +0 -0
  306. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputring.py +0 -0
  307. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputrouter.py +0 -0
  308. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsamplesresponse.py +0 -0
  309. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsentinel.py +0 -0
  310. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsentineloneaisiem.py +0 -0
  311. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputservicenow.py +0 -0
  312. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsignalfx.py +0 -0
  313. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsnmp.py +0 -0
  314. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsns.py +0 -0
  315. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsplunk.py +0 -0
  316. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsplunkhec.py +0 -0
  317. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsplunklb.py +0 -0
  318. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsqs.py +0 -0
  319. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputstatsd.py +0 -0
  320. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputstatsdext.py +0 -0
  321. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputsumologic.py +0 -0
  322. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputtcpjson.py +0 -0
  323. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputtestrequest.py +0 -0
  324. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputtestresponse.py +0 -0
  325. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputwavefront.py +0 -0
  326. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputwebhook.py +0 -0
  327. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/outputxsiam.py +0 -0
  328. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/packinfo.py +0 -0
  329. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/packinstallinfo.py +0 -0
  330. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/packrequestbody_union.py +0 -0
  331. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/packupgraderequest.py +0 -0
  332. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/pipeline.py +0 -0
  333. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/pipelinefunctionconf.py +0 -0
  334. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/productscore.py +0 -0
  335. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/rbacresource.py +0 -0
  336. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/resourcepolicy.py +0 -0
  337. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/routeconf.py +0 -0
  338. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/routes.py +0 -0
  339. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/routesroute.py +0 -0
  340. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/runnablejob.py +0 -0
  341. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/schemeclientoauth.py +0 -0
  342. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/security.py +0 -0
  343. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/teamaccesscontrollist.py +0 -0
  344. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/updatepacksop.py +0 -0
  345. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/uploadpackresponse.py +0 -0
  346. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/useraccesscontrollist.py +0 -0
  347. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/models/workertypes.py +0 -0
  348. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/py.typed +0 -0
  349. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/sdk.py +0 -0
  350. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/sdkconfiguration.py +0 -0
  351. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/types/__init__.py +0 -0
  352. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/types/basemodel.py +0 -0
  353. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/__init__.py +0 -0
  354. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/annotations.py +0 -0
  355. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/datetimes.py +0 -0
  356. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/enums.py +0 -0
  357. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/eventstreaming.py +0 -0
  358. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/headers.py +0 -0
  359. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/logger.py +0 -0
  360. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/metadata.py +0 -0
  361. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/requestbodies.py +0 -0
  362. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/security.py +0 -0
  363. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/serializers.py +0 -0
  364. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/url.py +0 -0
  365. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/utils/values.py +0 -0
  366. {cribl_control_plane-0.3.0b14 → cribl_control_plane-0.4.0}/src/cribl_control_plane/versions.py +0 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -1,7 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cribl-control-plane
3
- Version: 0.3.0b14
3
+ Version: 0.4.0
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
+ License-File: LICENSE
5
6
  Author: Speakeasy
6
7
  Requires-Python: >=3.9.2
7
8
  Classifier: Programming Language :: Python :: 3
@@ -17,11 +18,20 @@ Project-URL: Repository, https://github.com/criblio/cribl_control_plane_sdk_pyth
17
18
  Description-Content-Type: text/markdown
18
19
 
19
20
  # cribl_control_plane_sdk_python
20
- <!-- Start Summary [summary] -->
21
- ## Summary
22
21
 
23
- Cribl API Reference: This API Reference lists available REST endpoints, along with their supported operations for accessing, creating, updating, or deleting resources. See our complementary product documentation at [docs.cribl.io](http://docs.cribl.io).
24
- <!-- End Summary [summary] -->
22
+ The Cribl Python SDK for the control plane provides operational control over Cribl resources and helps streamline the process of integrating with Cribl.
23
+
24
+ In addition to the usage examples in this repository, the Cribl documentation includes [code examples for common use cases](https://docs.cribl.io/cribl-as-code/code-examples).
25
+
26
+ Complementary API reference documentation is available at https://docs.cribl.io/cribl-as-code/api-reference. Product documentation is available at https://docs.cribl.io.
27
+
28
+ > [!IMPORTANT]
29
+ > **Preview Feature**
30
+ > The Cribl SDKs are Preview features that are still being developed. We do not recommend using them in a production environment, because the features might not be fully tested or optimized for performance, and related documentation could be incomplete.
31
+ >
32
+ > Please continue to submit feedback through normal Cribl support channels, but assistance might be limited while the features remain in Preview.
33
+
34
+ <!-- No Summary [summary] -->
25
35
 
26
36
  <!-- Start Table of Contents [toc] -->
27
37
  ## Table of Contents
@@ -241,9 +251,14 @@ asyncio.run(main())
241
251
  ```
242
252
  <!-- End SDK Example Usage [usage] -->
243
253
 
244
- <!-- Start Authentication [security] -->
245
254
  ## Authentication
246
255
 
256
+ Except for the `health.get` and `auth.tokens.get` methods, all Cribl SDK requests require you to authenticate with a Bearer token. You must include a valid Bearer token in the configuration when initializing your SDK client. The Bearer token verifies your identity and ensures secure access to the requested resources. The SDK automatically manages the `Authorization` header for subsequent requests once properly authenticated.
257
+
258
+ For information about Bearer token expiration, see [Token Management](https://docs.cribl.io/cribl-as-code/sdks-auth/#sdks-token-mgmt) in the Cribl as Code documentation.
259
+
260
+ **Authentication happens once during SDK initialization**. After you initialize the SDK client with authentication as shown in the [authentication examples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#authentication-examples), the SDK automatically handles authentication for all subsequent API calls. You do not need to include authentication parameters in individual API requests. The [SDK Example Usage](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#sdk-example-usage) section shows how to initialize the SDK and make API calls, but if you've properly initialized your client as shown in the authentication examples, you only need to make the API method calls themselves without re-initializing.
261
+
247
262
  ### Per-Client Security Schemes
248
263
 
249
264
  This SDK supports the following security schemes globally:
@@ -253,62 +268,19 @@ This SDK supports the following security schemes globally:
253
268
  | `bearer_auth` | http | HTTP Bearer | `CRIBLCONTROLPLANE_BEARER_AUTH` |
254
269
  | `client_oauth` | oauth2 | OAuth2 token | `CRIBLCONTROLPLANE_CLIENT_OAUTH` |
255
270
 
256
- You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
257
- ```python
258
- from cribl_control_plane import CriblControlPlane, models
259
- import os
271
+ To configure authentication on Cribl.Cloud and in hybrid deployments, use the `client_oauth` security scheme. The SDK uses the OAuth credentials that you provide to obtain a Bearer token and refresh the token within its expiration window using the standard OAuth2 flow.
260
272
 
273
+ In on-prem deployments, use the `bearer_auth` security scheme. The SDK uses the username/password credentials that you provide to obtain a Bearer token. Automatically refreshing the Bearer token within its expiration window requires a callback function as shown in the [On-Prem Authentication Example](https://github.com/criblio/cribl_control_plane_sdk_python/blob/main/examples/example_onprem_auth.py).
261
274
 
262
- with CriblControlPlane(
263
- server_url="https://api.example.com",
264
- security=models.Security(
265
- bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
266
- ),
267
- ) as ccp_client:
275
+ Set the security scheme through the `security` optional parameter when initializing the SDK client instance. The SDK uses the selected scheme by default to authenticate with the API for all operations that support it.
268
276
 
269
- res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
270
- "<value 1>",
271
- "<value 2>",
272
- ], bucket_name="<value>", cache_connection={
273
- "accelerated_fields": [
274
- "<value 1>",
275
- "<value 2>",
276
- ],
277
- "backfill_status": models.CacheConnectionBackfillStatus.PENDING,
278
- "cache_ref": "<value>",
279
- "created_at": 7795.06,
280
- "lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
281
- "migration_query_id": "<id>",
282
- "retention_in_days": 1466.58,
283
- }, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
284
- "current_size_bytes": 6170.04,
285
- "metrics_date": "<value>",
286
- }, retention_period_in_days=456.37, search_config={
287
- "datatypes": [
288
- "<value 1>",
289
- ],
290
- "metadata": {
291
- "earliest": "<value>",
292
- "enable_acceleration": True,
293
- "field_list": [
294
- "<value 1>",
295
- "<value 2>",
296
- ],
297
- "latest_run_info": {
298
- "earliest_scanned_time": 4334.7,
299
- "finished_at": 6811.22,
300
- "latest_scanned_time": 5303.3,
301
- "object_count": 9489.04,
302
- },
303
- "scan_mode": models.ScanMode.DETAILED,
304
- },
305
- }, storage_location_id="<id>", view_name="<value>")
277
+ ### Authentication Examples
306
278
 
307
- # Handle response
308
- print(res)
279
+ The [Cribl.Cloud and Hybrid Authentication Example](https://github.com/criblio/cribl_control_plane_sdk_python/blob/main/examples/example_cloud_auth.py) demonstrates how to configure authentication on Cribl.Cloud and in hybrid deployments. To obtain the Client ID and Client Secret you'll need to initialize using the `client_oauth` security schema, follow the [instructions for creating an API Credential](https://docs.cribl.io/cribl-as-code/sdks-auth/#sdks-auth-cloud) in the Cribl as Code documentation.
309
280
 
310
- ```
311
- <!-- End Authentication [security] -->
281
+ The [On-Prem Authentication Example](https://github.com/criblio/cribl_control_plane_sdk_python/blob/main/examples/example_onprem_auth.py) demonstrates how to configure authentication in on-prem deployments using your username and password.
282
+
283
+ <!-- No Authentication [security] -->
312
284
 
313
285
  <!-- Start Available Resources and Operations [operations] -->
314
286
  ## Available Resources and Operations
@@ -316,11 +288,11 @@ with CriblControlPlane(
316
288
  <details open>
317
289
  <summary>Available methods</summary>
318
290
 
319
- #### [auth.tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
291
+ ### [Auth.Tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
320
292
 
321
293
  * [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
322
294
 
323
- ### [destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
295
+ ### [Destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
324
296
 
325
297
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#list) - List all Destinations
326
298
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create) - Create a Destination
@@ -328,17 +300,17 @@ with CriblControlPlane(
328
300
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#update) - Update a Destination
329
301
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#delete) - Delete a Destination
330
302
 
331
- #### [destinations.pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md)
303
+ #### [Destinations.Pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md)
332
304
 
333
305
  * [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
334
306
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md#get) - Get information about the latest job to clear the persistent queue for a Destination
335
307
 
336
- #### [destinations.samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
308
+ #### [Destinations.Samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
337
309
 
338
310
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#get) - Get sample event data for a Destination
339
311
  * [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
340
312
 
341
- ### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
313
+ ### [Groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
342
314
 
343
315
  * [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
344
316
  * [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
@@ -347,23 +319,23 @@ with CriblControlPlane(
347
319
  * [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
348
320
  * [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
349
321
 
350
- #### [groups.acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
322
+ #### [Groups.Acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
351
323
 
352
324
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md#get) - Get the Access Control List for a Worker Group or Edge Fleet
353
325
 
354
- #### [groups.acl.teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
326
+ ##### [Groups.Acl.Teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
355
327
 
356
328
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md#get) - Get the Access Control List for teams with permissions on a Worker Group or Edge Fleet for the specified Cribl product
357
329
 
358
- #### [groups.configs.versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
330
+ #### [Groups.Configs.Versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
359
331
 
360
332
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md#get) - Get the configuration version for a Worker Group or Edge Fleet
361
333
 
362
- ### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
334
+ ### [Health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
363
335
 
364
336
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get) - Retrieve health status of the server
365
337
 
366
- ### [lake_datasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
338
+ ### [LakeDatasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
367
339
 
368
340
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#create) - Create a Lake Dataset
369
341
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#list) - List all Lake Datasets
@@ -371,16 +343,16 @@ with CriblControlPlane(
371
343
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#get) - Get a Lake Dataset
372
344
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#update) - Update a Lake Dataset
373
345
 
374
- ### [nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
346
+ ### [Nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
375
347
 
376
348
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#list) - Get detailed metadata for Worker and Edge Nodes
377
349
  * [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#count) - Get a count of Worker and Edge Nodes
378
350
 
379
- #### [nodes.summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
351
+ #### [Nodes.Summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
380
352
 
381
353
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md#get) - Get a summary of the Distributed deployment
382
354
 
383
- ### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
355
+ ### [Packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
384
356
 
385
357
  * [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Install a Pack
386
358
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#list) - List all Packs
@@ -389,7 +361,7 @@ with CriblControlPlane(
389
361
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get) - Get a Pack
390
362
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update) - Upgrade a Pack
391
363
 
392
- ### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
364
+ ### [Pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
393
365
 
394
366
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list) - List all Pipelines
395
367
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#create) - Create a Pipeline
@@ -397,14 +369,14 @@ with CriblControlPlane(
397
369
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#update) - Update a Pipeline
398
370
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#delete) - Delete a Pipeline
399
371
 
400
- ### [routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
372
+ ### [Routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
401
373
 
402
374
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - List all Routes
403
375
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get a Routing table
404
376
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update a Route
405
377
  * [append](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#append) - Add a Route to the end of the Routing table
406
378
 
407
- ### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
379
+ ### [Sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
408
380
 
409
381
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#list) - List all Sources
410
382
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create) - Create a Source
@@ -412,17 +384,17 @@ with CriblControlPlane(
412
384
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update) - Update a Source
413
385
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#delete) - Delete a Source
414
386
 
415
- #### [sources.hec_tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
387
+ #### [Sources.HecTokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
416
388
 
417
389
  * [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
418
390
  * [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
419
391
 
420
- #### [versions.branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
392
+ ### [Versions.Branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
421
393
 
422
394
  * [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
423
395
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md#get) - Get the name of the Git branch that the Cribl configuration is checked out to
424
396
 
425
- #### [versions.commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
397
+ ### [Versions.Commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
426
398
 
427
399
  * [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
428
400
  * [diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#diff) - Get the diff for a commit
@@ -432,16 +404,16 @@ with CriblControlPlane(
432
404
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#get) - Get the diff and log message for a commit
433
405
  * [undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#undo) - Discard uncommitted (staged) changes
434
406
 
435
- #### [versions.commits.files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md)
407
+ #### [Versions.Commits.Files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md)
436
408
 
437
409
  * [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md#count) - Get a count of files that changed since a commit
438
410
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md#list) - Get the names and statuses of files that changed since a commit
439
411
 
440
- #### [versions.configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
412
+ ### [Versions.Configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
441
413
 
442
414
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md#get) - Get the configuration and status for the Git integration
443
415
 
444
- #### [versions.statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
416
+ ### [Versions.Statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
445
417
 
446
418
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md#get) - Get the status of the current working tree
447
419