cribl-control-plane 0.3.0b17__tar.gz → 0.4.0a12__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.0a12/LICENSE +201 -0
  2. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/PKG-INFO +24 -23
  3. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/README-PYPI.md +22 -22
  4. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/pyproject.toml +2 -1
  5. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/_version.py +4 -4
  6. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/acl.py +6 -4
  7. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/basesdk.py +6 -0
  8. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/branches.py +8 -4
  9. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/commits.py +42 -28
  10. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/commits_files.py +12 -8
  11. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/configs_versions.py +10 -4
  12. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/destinations.py +30 -20
  13. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/destinations_pq.py +12 -8
  14. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/groups_sdk.py +60 -24
  15. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/health.py +2 -0
  16. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/hectokens.py +32 -8
  17. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/lakedatasets.py +86 -20
  18. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/__init__.py +414 -202
  19. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/addhectokenrequest.py +7 -1
  20. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/configgroup.py +0 -1
  21. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/createconfiggroupbyproductop.py +20 -1
  22. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/createcribllakedatasetbylakeidop.py +19 -1
  23. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/createinputhectokenbyidop.py +20 -1
  24. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedgitdiffresult.py → cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/createinputop.py +9 -5
  25. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedgitshowresult.py → cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/createoutputop.py +9 -5
  26. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/createoutputtestbyidop.py +20 -1
  27. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedpackinstallinfo.py → cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/createpacksop.py +6 -2
  28. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedcribllakedataset.py → cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/createpipelineop.py +9 -5
  29. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/createroutesappendbyidop.py +20 -2
  30. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/createversioncommitop.py +19 -1
  31. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedstring.py → cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/createversionpushop.py +6 -2
  32. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/createversionrevertop.py +19 -1
  33. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/createversionundoop.py +18 -1
  34. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +20 -1
  35. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py +20 -1
  36. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/deleteinputbyidop.py +37 -0
  37. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/deleteoutputbyidop.py +37 -0
  38. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/deleteoutputpqbyidop.py +36 -0
  39. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/deletepacksbyidop.py +37 -0
  40. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/deletepipelinebyidop.py +37 -0
  41. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +19 -1
  42. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +19 -1
  43. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getconfiggroupbyproductandidop.py +19 -1
  44. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +19 -1
  45. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py +20 -1
  46. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +98 -0
  47. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/getinputbyidop.py +37 -0
  48. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getmasterworkerentryop.py +18 -1
  49. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/getoutputbyidop.py +37 -0
  50. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getoutputpqbyidop.py +20 -1
  51. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/getoutputsamplesbyidop.py +37 -0
  52. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/getpacksbyidop.py +37 -0
  53. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getpacksop.py +19 -1
  54. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/getpipelinebyidop.py +37 -0
  55. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getroutesbyidop.py +20 -1
  56. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getsummaryop.py +19 -1
  57. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedbranchinfo.py → cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/getversionbranchop.py +6 -2
  58. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getversioncountop.py +19 -1
  59. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getversiondiffop.py +19 -1
  60. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getversionfilesop.py +19 -1
  61. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedgitinfo.py → cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/getversioninfoop.py +6 -2
  62. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getversionop.py +19 -1
  63. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getversionshowop.py +19 -1
  64. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/getversionstatusop.py +19 -1
  65. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/groupcreaterequest.py +0 -1
  66. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/hbcriblinfo.py +4 -3
  67. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/heartbeatmetadata.py +11 -3
  68. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/listconfiggroupbyproductop.py +19 -1
  69. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedinput.py → cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/listinputop.py +6 -2
  70. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/listmasterworkerentryop.py +19 -1
  71. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedoutput.py → cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/listoutputop.py +6 -2
  72. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedpipeline.py → cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/listpipelineop.py +6 -2
  73. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedroutes.py → cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/listroutesop.py +6 -2
  74. cribl_control_plane-0.4.0a12/src/cribl_control_plane/models/lookupversions.py +13 -0
  75. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/masterworkerentry.py +11 -3
  76. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/nodeprovidedinfo.py +10 -2
  77. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputnetflow.py +7 -0
  78. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/runnablejobcollection.py +0 -8
  79. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/runnablejobexecutor.py +0 -4
  80. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/runnablejobscheduledsearch.py +0 -4
  81. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/updateconfiggroupbyproductandidop.py +19 -1
  82. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py +20 -1
  83. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +20 -1
  84. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/updatehectokenrequest.py +7 -1
  85. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/updateinputbyidop.py +19 -1
  86. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +20 -1
  87. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/updateoutputbyidop.py +19 -1
  88. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/updatepacksbyidop.py +20 -1
  89. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/updatepipelinebyidop.py +19 -1
  90. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/updateroutesbyidop.py +19 -1
  91. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/nodes.py +20 -8
  92. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/packs.py +32 -20
  93. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/pipelines.py +30 -20
  94. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/routes_sdk.py +28 -16
  95. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/samples.py +16 -8
  96. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/sources.py +30 -20
  97. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/statuses.py +6 -4
  98. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/summaries.py +6 -4
  99. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/teams.py +6 -4
  100. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/tokens.py +2 -0
  101. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/forms.py +21 -10
  102. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/queryparams.py +14 -2
  103. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/retries.py +69 -5
  104. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/unmarshal_json_response.py +15 -1
  105. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/versions_configs.py +6 -4
  106. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedconfiggroup.py +0 -20
  107. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/counteddistributedsummary.py +0 -20
  108. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedgitcommitsummary.py +0 -20
  109. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedgitcountresult.py +0 -20
  110. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedgitfilesresponse.py +0 -20
  111. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedgitlogresult.py +0 -20
  112. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedgitrevertresult.py +0 -20
  113. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedgitstatusresult.py +0 -20
  114. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedinputsplunkhec.py +0 -20
  115. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedjobinfo.py +0 -20
  116. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedmasterworkerentry.py +0 -20
  117. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countednumber.py +0 -19
  118. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedobject.py +0 -19
  119. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedoutputsamplesresponse.py +0 -20
  120. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedoutputtestresponse.py +0 -20
  121. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedpackinfo.py +0 -20
  122. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/countedteamaccesscontrollist.py +0 -20
  123. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/counteduseraccesscontrollist.py +0 -20
  124. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/deleteinputbyidop.py +0 -18
  125. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/deleteoutputbyidop.py +0 -18
  126. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/deleteoutputpqbyidop.py +0 -18
  127. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/deletepacksbyidop.py +0 -18
  128. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/deletepipelinebyidop.py +0 -18
  129. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +0 -21
  130. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/getinputbyidop.py +0 -18
  131. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/getoutputbyidop.py +0 -18
  132. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/getoutputsamplesbyidop.py +0 -18
  133. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/getpacksbyidop.py +0 -18
  134. cribl_control_plane-0.3.0b17/src/cribl_control_plane/models/getpipelinebyidop.py +0 -18
  135. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/py.typed +0 -0
  136. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/__init__.py +0 -0
  137. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/_hooks/__init__.py +0 -0
  138. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/_hooks/clientcredentials.py +0 -0
  139. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/_hooks/registration.py +0 -0
  140. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/_hooks/sdkhooks.py +0 -0
  141. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/_hooks/types.py +0 -0
  142. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/auth_sdk.py +0 -0
  143. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/errors/__init__.py +0 -0
  144. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/errors/apierror.py +0 -0
  145. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/errors/criblcontrolplaneerror.py +0 -0
  146. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/errors/error.py +0 -0
  147. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/errors/healthserverstatus_error.py +0 -0
  148. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/errors/no_response_error.py +0 -0
  149. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/errors/responsevalidationerror.py +0 -0
  150. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/groups_configs.py +0 -0
  151. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/httpclient.py +0 -0
  152. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/authtoken.py +0 -0
  153. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/branchinfo.py +0 -0
  154. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/cacheconnection.py +0 -0
  155. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/cacheconnectionbackfillstatus.py +0 -0
  156. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/cloudprovider.py +0 -0
  157. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/commit.py +0 -0
  158. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/configgroupcloud.py +0 -0
  159. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/configgrouplookups.py +0 -0
  160. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/criblevent.py +0 -0
  161. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/cribllakedataset.py +0 -0
  162. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/cribllakedatasetupdate.py +0 -0
  163. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/currentbranchresult.py +0 -0
  164. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/datasetmetadata.py +0 -0
  165. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/datasetmetadataruninfo.py +0 -0
  166. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/deployrequest.py +0 -0
  167. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/deployrequestlookups.py +0 -0
  168. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/difffiles.py +0 -0
  169. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/distributedsummary.py +0 -0
  170. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitcommitparams.py +0 -0
  171. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitcommitsummary.py +0 -0
  172. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitcountresult.py +0 -0
  173. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitdiffresult.py +0 -0
  174. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitfile.py +0 -0
  175. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitfilesresponse.py +0 -0
  176. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitinfo.py +0 -0
  177. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitlogresult.py +0 -0
  178. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitrevertparams.py +0 -0
  179. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitrevertresult.py +0 -0
  180. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitshowresult.py +0 -0
  181. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/gitstatusresult.py +0 -0
  182. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/hbleaderinfo.py +0 -0
  183. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/healthserverstatus.py +0 -0
  184. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/input.py +0 -0
  185. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputappscope.py +0 -0
  186. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputazureblob.py +0 -0
  187. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputcloudflarehec.py +0 -0
  188. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputcollection.py +0 -0
  189. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputconfluentcloud.py +0 -0
  190. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputcribl.py +0 -0
  191. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputcriblhttp.py +0 -0
  192. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputcribllakehttp.py +0 -0
  193. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputcriblmetrics.py +0 -0
  194. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputcribltcp.py +0 -0
  195. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputcrowdstrike.py +0 -0
  196. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputdatadogagent.py +0 -0
  197. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputdatagen.py +0 -0
  198. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputedgeprometheus.py +0 -0
  199. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputelastic.py +0 -0
  200. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputeventhub.py +0 -0
  201. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputexec.py +0 -0
  202. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputfile.py +0 -0
  203. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputfirehose.py +0 -0
  204. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputgooglepubsub.py +0 -0
  205. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputgrafana.py +0 -0
  206. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputhttp.py +0 -0
  207. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputhttpraw.py +0 -0
  208. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputjournalfiles.py +0 -0
  209. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputkafka.py +0 -0
  210. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputkinesis.py +0 -0
  211. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputkubeevents.py +0 -0
  212. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputkubelogs.py +0 -0
  213. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputkubemetrics.py +0 -0
  214. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputloki.py +0 -0
  215. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputmetrics.py +0 -0
  216. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputmodeldriventelemetry.py +0 -0
  217. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputmsk.py +0 -0
  218. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputnetflow.py +0 -0
  219. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputoffice365mgmt.py +0 -0
  220. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputoffice365msgtrace.py +0 -0
  221. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputoffice365service.py +0 -0
  222. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputopentelemetry.py +0 -0
  223. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputprometheus.py +0 -0
  224. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputprometheusrw.py +0 -0
  225. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputrawudp.py +0 -0
  226. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputs3.py +0 -0
  227. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputs3inventory.py +0 -0
  228. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputsecuritylake.py +0 -0
  229. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputsnmp.py +0 -0
  230. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputsplunk.py +0 -0
  231. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputsplunkhec.py +0 -0
  232. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputsplunksearch.py +0 -0
  233. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputsqs.py +0 -0
  234. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputsyslog.py +0 -0
  235. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputsystemmetrics.py +0 -0
  236. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputsystemstate.py +0 -0
  237. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputtcp.py +0 -0
  238. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputtcpjson.py +0 -0
  239. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputwef.py +0 -0
  240. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputwindowsmetrics.py +0 -0
  241. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputwineventlogs.py +0 -0
  242. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputwiz.py +0 -0
  243. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputwizwebhook.py +0 -0
  244. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/inputzscalerhec.py +0 -0
  245. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/jobinfo.py +0 -0
  246. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/jobstatus.py +0 -0
  247. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/lakedatasetmetrics.py +0 -0
  248. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/lakedatasetsearchconfig.py +0 -0
  249. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/lakehouseconnectiontype.py +0 -0
  250. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/logininfo.py +0 -0
  251. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/nodeactiveupgradestatus.py +0 -0
  252. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/nodefailedupgradestatus.py +0 -0
  253. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/nodeskippedupgradestatus.py +0 -0
  254. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/nodeupgradestate.py +0 -0
  255. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/nodeupgradestatus.py +0 -0
  256. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outpostnodeinfo.py +0 -0
  257. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/output.py +0 -0
  258. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputazureblob.py +0 -0
  259. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputazuredataexplorer.py +0 -0
  260. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputazureeventhub.py +0 -0
  261. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputazurelogs.py +0 -0
  262. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputchronicle.py +0 -0
  263. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputclickhouse.py +0 -0
  264. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputcloudflarer2.py +0 -0
  265. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputcloudwatch.py +0 -0
  266. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputconfluentcloud.py +0 -0
  267. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputcriblhttp.py +0 -0
  268. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputcribllake.py +0 -0
  269. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputcribltcp.py +0 -0
  270. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputcrowdstrikenextgensiem.py +0 -0
  271. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputdatabricks.py +0 -0
  272. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputdatadog.py +0 -0
  273. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputdataset.py +0 -0
  274. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputdefault.py +0 -0
  275. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputdevnull.py +0 -0
  276. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputdiskspool.py +0 -0
  277. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputdls3.py +0 -0
  278. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputdynatracehttp.py +0 -0
  279. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputdynatraceotlp.py +0 -0
  280. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputelastic.py +0 -0
  281. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputelasticcloud.py +0 -0
  282. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputexabeam.py +0 -0
  283. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputfilesystem.py +0 -0
  284. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputgooglechronicle.py +0 -0
  285. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputgooglecloudlogging.py +0 -0
  286. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputgooglecloudstorage.py +0 -0
  287. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputgooglepubsub.py +0 -0
  288. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputgrafanacloud.py +0 -0
  289. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputgraphite.py +0 -0
  290. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputhoneycomb.py +0 -0
  291. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputhumiohec.py +0 -0
  292. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputinfluxdb.py +0 -0
  293. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputkafka.py +0 -0
  294. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputkinesis.py +0 -0
  295. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputloki.py +0 -0
  296. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputmicrosoftfabric.py +0 -0
  297. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputminio.py +0 -0
  298. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputmsk.py +0 -0
  299. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputnewrelic.py +0 -0
  300. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputnewrelicevents.py +0 -0
  301. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputopentelemetry.py +0 -0
  302. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputprometheus.py +0 -0
  303. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputring.py +0 -0
  304. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputrouter.py +0 -0
  305. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputs3.py +0 -0
  306. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsamplesresponse.py +0 -0
  307. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsecuritylake.py +0 -0
  308. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsentinel.py +0 -0
  309. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsentineloneaisiem.py +0 -0
  310. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputservicenow.py +0 -0
  311. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsignalfx.py +0 -0
  312. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsnmp.py +0 -0
  313. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsns.py +0 -0
  314. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsplunk.py +0 -0
  315. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsplunkhec.py +0 -0
  316. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsplunklb.py +0 -0
  317. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsqs.py +0 -0
  318. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputstatsd.py +0 -0
  319. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputstatsdext.py +0 -0
  320. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsumologic.py +0 -0
  321. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputsyslog.py +0 -0
  322. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputtcpjson.py +0 -0
  323. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputtestrequest.py +0 -0
  324. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputtestresponse.py +0 -0
  325. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputwavefront.py +0 -0
  326. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputwebhook.py +0 -0
  327. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/outputxsiam.py +0 -0
  328. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/packinfo.py +0 -0
  329. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/packinstallinfo.py +0 -0
  330. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/packrequestbody_union.py +0 -0
  331. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/packupgraderequest.py +0 -0
  332. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/pipeline.py +0 -0
  333. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/pipelinefunctionconf.py +0 -0
  334. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/productscore.py +0 -0
  335. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/rbacresource.py +0 -0
  336. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/resourcepolicy.py +0 -0
  337. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/routeconf.py +0 -0
  338. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/routes.py +0 -0
  339. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/routesroute.py +0 -0
  340. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/runnablejob.py +0 -0
  341. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/schemeclientoauth.py +0 -0
  342. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/security.py +0 -0
  343. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/teamaccesscontrollist.py +0 -0
  344. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/updatepacksop.py +0 -0
  345. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/uploadpackresponse.py +0 -0
  346. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/useraccesscontrollist.py +0 -0
  347. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/models/workertypes.py +0 -0
  348. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/py.typed +0 -0
  349. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/sdk.py +0 -0
  350. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/sdkconfiguration.py +0 -0
  351. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/types/__init__.py +0 -0
  352. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/types/basemodel.py +0 -0
  353. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/__init__.py +0 -0
  354. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/annotations.py +0 -0
  355. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/datetimes.py +0 -0
  356. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/enums.py +0 -0
  357. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/eventstreaming.py +0 -0
  358. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/headers.py +0 -0
  359. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/logger.py +0 -0
  360. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/metadata.py +0 -0
  361. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/requestbodies.py +0 -0
  362. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/security.py +0 -0
  363. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/serializers.py +0 -0
  364. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/url.py +0 -0
  365. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/src/cribl_control_plane/utils/values.py +0 -0
  366. {cribl_control_plane-0.3.0b17 → cribl_control_plane-0.4.0a12}/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.0b17
3
+ Version: 0.4.0a12
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
@@ -316,11 +317,11 @@ with CriblControlPlane(
316
317
  <details open>
317
318
  <summary>Available methods</summary>
318
319
 
319
- #### [auth.tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
320
+ ### [Auth.Tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
320
321
 
321
322
  * [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
323
 
323
- ### [destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
324
+ ### [Destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
324
325
 
325
326
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#list) - List all Destinations
326
327
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create) - Create a Destination
@@ -328,17 +329,17 @@ with CriblControlPlane(
328
329
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#update) - Update a Destination
329
330
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#delete) - Delete a Destination
330
331
 
331
- #### [destinations.pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md)
332
+ #### [Destinations.Pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md)
332
333
 
333
334
  * [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
335
  * [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
336
 
336
- #### [destinations.samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
337
+ #### [Destinations.Samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
337
338
 
338
339
  * [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
340
  * [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
341
 
341
- ### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
342
+ ### [Groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
342
343
 
343
344
  * [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
345
  * [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 +348,23 @@ with CriblControlPlane(
347
348
  * [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
349
  * [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
350
 
350
- #### [groups.acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
351
+ #### [Groups.Acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
351
352
 
352
353
  * [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
354
 
354
- #### [groups.acl.teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
355
+ ##### [Groups.Acl.Teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
355
356
 
356
357
  * [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
358
 
358
- #### [groups.configs.versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
359
+ #### [Groups.Configs.Versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
359
360
 
360
361
  * [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
362
 
362
- ### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
363
+ ### [Health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
363
364
 
364
365
  * [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
366
 
366
- ### [lake_datasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
367
+ ### [LakeDatasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
367
368
 
368
369
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#create) - Create a Lake Dataset
369
370
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#list) - List all Lake Datasets
@@ -371,16 +372,16 @@ with CriblControlPlane(
371
372
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#get) - Get a Lake Dataset
372
373
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#update) - Update a Lake Dataset
373
374
 
374
- ### [nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
375
+ ### [Nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
375
376
 
376
377
  * [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
378
  * [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
379
 
379
- #### [nodes.summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
380
+ #### [Nodes.Summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
380
381
 
381
382
  * [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
383
 
383
- ### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
384
+ ### [Packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
384
385
 
385
386
  * [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Install a Pack
386
387
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#list) - List all Packs
@@ -389,7 +390,7 @@ with CriblControlPlane(
389
390
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get) - Get a Pack
390
391
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update) - Upgrade a Pack
391
392
 
392
- ### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
393
+ ### [Pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
393
394
 
394
395
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list) - List all Pipelines
395
396
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#create) - Create a Pipeline
@@ -397,14 +398,14 @@ with CriblControlPlane(
397
398
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#update) - Update a Pipeline
398
399
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#delete) - Delete a Pipeline
399
400
 
400
- ### [routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
401
+ ### [Routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
401
402
 
402
403
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - List all Routes
403
404
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get a Routing table
404
405
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update a Route
405
406
  * [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
407
 
407
- ### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
408
+ ### [Sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
408
409
 
409
410
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#list) - List all Sources
410
411
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create) - Create a Source
@@ -412,17 +413,17 @@ with CriblControlPlane(
412
413
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update) - Update a Source
413
414
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#delete) - Delete a Source
414
415
 
415
- #### [sources.hec_tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
416
+ #### [Sources.HecTokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
416
417
 
417
418
  * [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
419
  * [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
420
 
420
- #### [versions.branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
421
+ ### [Versions.Branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
421
422
 
422
423
  * [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
424
  * [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
425
 
425
- #### [versions.commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
426
+ ### [Versions.Commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
426
427
 
427
428
  * [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
429
  * [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 +433,16 @@ with CriblControlPlane(
432
433
  * [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
434
  * [undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#undo) - Discard uncommitted (staged) changes
434
435
 
435
- #### [versions.commits.files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md)
436
+ #### [Versions.Commits.Files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md)
436
437
 
437
438
  * [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
439
  * [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
440
 
440
- #### [versions.configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
441
+ ### [Versions.Configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
441
442
 
442
443
  * [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
444
 
444
- #### [versions.statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
445
+ ### [Versions.Statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
445
446
 
446
447
  * [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
448
 
@@ -298,11 +298,11 @@ with CriblControlPlane(
298
298
  <details open>
299
299
  <summary>Available methods</summary>
300
300
 
301
- #### [auth.tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
301
+ ### [Auth.Tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
302
302
 
303
303
  * [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
304
304
 
305
- ### [destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
305
+ ### [Destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
306
306
 
307
307
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#list) - List all Destinations
308
308
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create) - Create a Destination
@@ -310,17 +310,17 @@ with CriblControlPlane(
310
310
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#update) - Update a Destination
311
311
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#delete) - Delete a Destination
312
312
 
313
- #### [destinations.pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md)
313
+ #### [Destinations.Pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md)
314
314
 
315
315
  * [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
316
316
  * [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
317
317
 
318
- #### [destinations.samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
318
+ #### [Destinations.Samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
319
319
 
320
320
  * [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
321
321
  * [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
322
322
 
323
- ### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
323
+ ### [Groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
324
324
 
325
325
  * [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
326
326
  * [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
@@ -329,23 +329,23 @@ with CriblControlPlane(
329
329
  * [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
330
330
  * [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
331
331
 
332
- #### [groups.acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
332
+ #### [Groups.Acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
333
333
 
334
334
  * [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
335
335
 
336
- #### [groups.acl.teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
336
+ ##### [Groups.Acl.Teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
337
337
 
338
338
  * [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
339
339
 
340
- #### [groups.configs.versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
340
+ #### [Groups.Configs.Versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
341
341
 
342
342
  * [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
343
343
 
344
- ### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
344
+ ### [Health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
345
345
 
346
346
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get) - Retrieve health status of the server
347
347
 
348
- ### [lake_datasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
348
+ ### [LakeDatasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
349
349
 
350
350
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#create) - Create a Lake Dataset
351
351
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#list) - List all Lake Datasets
@@ -353,16 +353,16 @@ with CriblControlPlane(
353
353
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#get) - Get a Lake Dataset
354
354
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#update) - Update a Lake Dataset
355
355
 
356
- ### [nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
356
+ ### [Nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
357
357
 
358
358
  * [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
359
359
  * [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
360
360
 
361
- #### [nodes.summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
361
+ #### [Nodes.Summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
362
362
 
363
363
  * [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
364
364
 
365
- ### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
365
+ ### [Packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
366
366
 
367
367
  * [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Install a Pack
368
368
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#list) - List all Packs
@@ -371,7 +371,7 @@ with CriblControlPlane(
371
371
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get) - Get a Pack
372
372
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update) - Upgrade a Pack
373
373
 
374
- ### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
374
+ ### [Pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
375
375
 
376
376
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list) - List all Pipelines
377
377
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#create) - Create a Pipeline
@@ -379,14 +379,14 @@ with CriblControlPlane(
379
379
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#update) - Update a Pipeline
380
380
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#delete) - Delete a Pipeline
381
381
 
382
- ### [routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
382
+ ### [Routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
383
383
 
384
384
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - List all Routes
385
385
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get a Routing table
386
386
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update a Route
387
387
  * [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
388
388
 
389
- ### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
389
+ ### [Sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
390
390
 
391
391
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#list) - List all Sources
392
392
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create) - Create a Source
@@ -394,17 +394,17 @@ with CriblControlPlane(
394
394
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update) - Update a Source
395
395
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#delete) - Delete a Source
396
396
 
397
- #### [sources.hec_tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
397
+ #### [Sources.HecTokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
398
398
 
399
399
  * [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
400
400
  * [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
401
401
 
402
- #### [versions.branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
402
+ ### [Versions.Branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
403
403
 
404
404
  * [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
405
405
  * [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
406
406
 
407
- #### [versions.commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
407
+ ### [Versions.Commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
408
408
 
409
409
  * [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
410
410
  * [diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#diff) - Get the diff for a commit
@@ -414,16 +414,16 @@ with CriblControlPlane(
414
414
  * [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
415
415
  * [undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#undo) - Discard uncommitted (staged) changes
416
416
 
417
- #### [versions.commits.files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md)
417
+ #### [Versions.Commits.Files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md)
418
418
 
419
419
  * [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
420
420
  * [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
421
421
 
422
- #### [versions.configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
422
+ ### [Versions.Configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
423
423
 
424
424
  * [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
425
425
 
426
- #### [versions.statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
426
+ ### [Versions.Statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
427
427
 
428
428
  * [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
429
429
 
@@ -1,7 +1,7 @@
1
1
 
2
2
  [project]
3
3
  name = "cribl-control-plane"
4
- version = "0.3.0b17"
4
+ version = "0.4.0a12"
5
5
  description = "Python Client SDK Generated by Speakeasy."
6
6
  authors = [{ name = "Speakeasy" },]
7
7
  readme = "README-PYPI.md"
@@ -28,6 +28,7 @@ in-project = true
28
28
  [tool.poetry.group.dev.dependencies]
29
29
  mypy = "==1.15.0"
30
30
  pylint = "==3.2.3"
31
+ pyright = "==1.1.398"
31
32
 
32
33
  [build-system]
33
34
  requires = ["poetry-core"]
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "cribl-control-plane"
6
- __version__: str = "0.3.0b17"
7
- __openapi_doc_version__: str = "4.16.0-alpha.1763161384714-3f229248"
8
- __gen_version__: str = "2.743.2"
9
- __user_agent__: str = "speakeasy-sdk/python 0.3.0b17 2.743.2 4.16.0-alpha.1763161384714-3f229248 cribl-control-plane"
6
+ __version__: str = "0.4.0a12"
7
+ __openapi_doc_version__: str = "4.15.1-alpha.1764975753193-67dd5070"
8
+ __gen_version__: str = "2.778.0"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.4.0a12 2.778.0 4.15.1-alpha.1764975753193-67dd5070 cribl-control-plane"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -34,7 +34,7 @@ class ACL(BaseSDK):
34
34
  server_url: Optional[str] = None,
35
35
  timeout_ms: Optional[int] = None,
36
36
  http_headers: Optional[Mapping[str, str]] = None,
37
- ) -> models.CountedUserAccessControlList:
37
+ ) -> models.GetConfigGroupACLByProductAndIDResponse:
38
38
  r"""Get the Access Control List for a Worker Group or Edge Fleet
39
39
 
40
40
  Get the Access Control List (ACL) for the specified Worker Group or Edge Fleet.
@@ -76,6 +76,7 @@ class ACL(BaseSDK):
76
76
  accept_header_value="application/json",
77
77
  http_headers=http_headers,
78
78
  security=self.sdk_configuration.security,
79
+ allow_empty_value=None,
79
80
  timeout_ms=timeout_ms,
80
81
  )
81
82
 
@@ -105,7 +106,7 @@ class ACL(BaseSDK):
105
106
  response_data: Any = None
106
107
  if utils.match_response(http_res, "200", "application/json"):
107
108
  return unmarshal_json_response(
108
- models.CountedUserAccessControlList, http_res
109
+ models.GetConfigGroupACLByProductAndIDResponse, http_res
109
110
  )
110
111
  if utils.match_response(http_res, "500", "application/json"):
111
112
  response_data = unmarshal_json_response(errors.ErrorData, http_res)
@@ -129,7 +130,7 @@ class ACL(BaseSDK):
129
130
  server_url: Optional[str] = None,
130
131
  timeout_ms: Optional[int] = None,
131
132
  http_headers: Optional[Mapping[str, str]] = None,
132
- ) -> models.CountedUserAccessControlList:
133
+ ) -> models.GetConfigGroupACLByProductAndIDResponse:
133
134
  r"""Get the Access Control List for a Worker Group or Edge Fleet
134
135
 
135
136
  Get the Access Control List (ACL) for the specified Worker Group or Edge Fleet.
@@ -171,6 +172,7 @@ class ACL(BaseSDK):
171
172
  accept_header_value="application/json",
172
173
  http_headers=http_headers,
173
174
  security=self.sdk_configuration.security,
175
+ allow_empty_value=None,
174
176
  timeout_ms=timeout_ms,
175
177
  )
176
178
 
@@ -200,7 +202,7 @@ class ACL(BaseSDK):
200
202
  response_data: Any = None
201
203
  if utils.match_response(http_res, "200", "application/json"):
202
204
  return unmarshal_json_response(
203
- models.CountedUserAccessControlList, http_res
205
+ models.GetConfigGroupACLByProductAndIDResponse, http_res
204
206
  )
205
207
  if utils.match_response(http_res, "500", "application/json"):
206
208
  response_data = unmarshal_json_response(errors.ErrorData, http_res)