cribl-control-plane 0.0.17__tar.gz → 0.0.19__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.

Potentially problematic release.


This version of cribl-control-plane might be problematic. Click here for more details.

Files changed (295) hide show
  1. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/PKG-INFO +58 -8
  2. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/README-PYPI.md +57 -7
  3. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/pyproject.toml +1 -1
  4. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_version.py +3 -3
  5. cribl_control_plane-0.0.19/src/cribl_control_plane/distributed.py +187 -0
  6. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/healthstatus_error.py +1 -1
  7. cribl_control_plane-0.0.19/src/cribl_control_plane/groups_sdk.py +1291 -0
  8. cribl_control_plane-0.0.19/src/cribl_control_plane/lake.py +479 -0
  9. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/__init__.py +843 -3
  10. cribl_control_plane-0.0.19/src/cribl_control_plane/models/appmode.py +13 -0
  11. cribl_control_plane-0.0.19/src/cribl_control_plane/models/cacheconnection.py +44 -0
  12. cribl_control_plane-0.0.19/src/cribl_control_plane/models/cacheconnectionbackfillstatus.py +12 -0
  13. cribl_control_plane-0.0.19/src/cribl_control_plane/models/cloudprovider.py +9 -0
  14. cribl_control_plane-0.0.19/src/cribl_control_plane/models/commit.py +30 -0
  15. cribl_control_plane-0.0.19/src/cribl_control_plane/models/configgroup.py +116 -0
  16. cribl_control_plane-0.0.19/src/cribl_control_plane/models/configgroupcloud.py +48 -0
  17. cribl_control_plane-0.0.19/src/cribl_control_plane/models/configgrouplookups.py +34 -0
  18. cribl_control_plane-0.0.19/src/cribl_control_plane/models/createcribllakedatasetbylakeidop.py +48 -0
  19. cribl_control_plane-0.0.19/src/cribl_control_plane/models/createpacksop.py +24 -0
  20. cribl_control_plane-0.0.19/src/cribl_control_plane/models/createproductsgroupsbyproductop.py +54 -0
  21. cribl_control_plane-0.0.19/src/cribl_control_plane/models/createversioncommitop.py +24 -0
  22. cribl_control_plane-0.0.19/src/cribl_control_plane/models/createversionpushop.py +23 -0
  23. cribl_control_plane-0.0.19/src/cribl_control_plane/models/createversionrevertop.py +47 -0
  24. cribl_control_plane-0.0.19/src/cribl_control_plane/models/createversionsyncop.py +23 -0
  25. cribl_control_plane-0.0.19/src/cribl_control_plane/models/createversionundoop.py +37 -0
  26. cribl_control_plane-0.0.19/src/cribl_control_plane/models/cribllakedataset.py +74 -0
  27. cribl_control_plane-0.0.19/src/cribl_control_plane/models/datasetmetadata.py +39 -0
  28. cribl_control_plane-0.0.19/src/cribl_control_plane/models/datasetmetadataruninfo.py +28 -0
  29. cribl_control_plane-0.0.19/src/cribl_control_plane/models/deployrequest.py +18 -0
  30. cribl_control_plane-0.0.19/src/cribl_control_plane/models/deployrequestlookups.py +28 -0
  31. cribl_control_plane-0.0.19/src/cribl_control_plane/models/distributedsummary.py +63 -0
  32. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +40 -0
  33. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getgroupsaclbyidop.py +63 -0
  34. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getgroupsbyidop.py +49 -0
  35. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getgroupsconfigversionbyidop.py +36 -0
  36. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getpacksop.py +40 -0
  37. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getproductsgroupsaclteamsbyproductandidop.py +78 -0
  38. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getproductsgroupsbyproductop.py +58 -0
  39. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getsummaryop.py +46 -0
  40. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getsummaryworkersop.py +39 -0
  41. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getversionbranchop.py +23 -0
  42. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getversioncountop.py +47 -0
  43. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getversioncurrentbranchop.py +23 -0
  44. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getversiondiffop.py +63 -0
  45. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getversionfilesop.py +48 -0
  46. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getversioninfoop.py +24 -0
  47. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getversionshowop.py +63 -0
  48. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getversionstatusop.py +38 -0
  49. cribl_control_plane-0.0.19/src/cribl_control_plane/models/getworkersop.py +82 -0
  50. cribl_control_plane-0.0.19/src/cribl_control_plane/models/gitcommitparams.py +23 -0
  51. cribl_control_plane-0.0.19/src/cribl_control_plane/models/gitcommitsummary.py +68 -0
  52. cribl_control_plane-0.0.19/src/cribl_control_plane/models/gitfile.py +20 -0
  53. cribl_control_plane-0.0.19/src/cribl_control_plane/models/gitfilesresponse.py +22 -0
  54. cribl_control_plane-0.0.19/src/cribl_control_plane/models/gitinfo.py +23 -0
  55. cribl_control_plane-0.0.19/src/cribl_control_plane/models/gitrevertparams.py +20 -0
  56. cribl_control_plane-0.0.19/src/cribl_control_plane/models/gitrevertresult.py +48 -0
  57. cribl_control_plane-0.0.19/src/cribl_control_plane/models/gitstatusresult.py +73 -0
  58. cribl_control_plane-0.0.19/src/cribl_control_plane/models/hbcriblinfo.py +80 -0
  59. cribl_control_plane-0.0.19/src/cribl_control_plane/models/hbleaderinfo.py +23 -0
  60. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/healthstatus.py +3 -3
  61. cribl_control_plane-0.0.19/src/cribl_control_plane/models/heartbeatmetadata.py +122 -0
  62. cribl_control_plane-0.0.19/src/cribl_control_plane/models/lakedatasetsearchconfig.py +18 -0
  63. cribl_control_plane-0.0.19/src/cribl_control_plane/models/lakehouseconnectiontype.py +9 -0
  64. cribl_control_plane-0.0.19/src/cribl_control_plane/models/lookupversions.py +13 -0
  65. cribl_control_plane-0.0.19/src/cribl_control_plane/models/masterworkerentry.py +84 -0
  66. cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodeactiveupgradestatus.py +10 -0
  67. cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodefailedupgradestatus.py +9 -0
  68. cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodeprovidedinfo.py +184 -0
  69. cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodeskippedupgradestatus.py +11 -0
  70. cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodeupgradestate.py +11 -0
  71. cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodeupgradestatus.py +30 -0
  72. cribl_control_plane-0.0.19/src/cribl_control_plane/models/packinfo.py +73 -0
  73. cribl_control_plane-0.0.19/src/cribl_control_plane/models/packinstallinfo.py +76 -0
  74. cribl_control_plane-0.0.19/src/cribl_control_plane/models/packrequestbody.py +75 -0
  75. cribl_control_plane-0.0.19/src/cribl_control_plane/models/rbacresource.py +14 -0
  76. cribl_control_plane-0.0.19/src/cribl_control_plane/models/resourcepolicy.py +24 -0
  77. cribl_control_plane-0.0.19/src/cribl_control_plane/models/restartresponse.py +26 -0
  78. cribl_control_plane-0.0.19/src/cribl_control_plane/models/teamaccesscontrollist.py +18 -0
  79. cribl_control_plane-0.0.19/src/cribl_control_plane/models/updategroupsdeploybyidop.py +46 -0
  80. cribl_control_plane-0.0.19/src/cribl_control_plane/models/updatepacksop.py +37 -0
  81. cribl_control_plane-0.0.19/src/cribl_control_plane/models/updateworkersrestartop.py +24 -0
  82. cribl_control_plane-0.0.19/src/cribl_control_plane/models/useraccesscontrollist.py +18 -0
  83. cribl_control_plane-0.0.19/src/cribl_control_plane/packs.py +623 -0
  84. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/sdk.py +28 -0
  85. cribl_control_plane-0.0.19/src/cribl_control_plane/teams.py +203 -0
  86. cribl_control_plane-0.0.19/src/cribl_control_plane/versioning.py +2309 -0
  87. cribl_control_plane-0.0.19/src/cribl_control_plane/workers_sdk.py +555 -0
  88. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/py.typed +0 -0
  89. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/__init__.py +0 -0
  90. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_hooks/__init__.py +0 -0
  91. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_hooks/clientcredentials.py +0 -0
  92. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_hooks/registration.py +0 -0
  93. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_hooks/sdkhooks.py +0 -0
  94. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_hooks/types.py +0 -0
  95. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/auth_sdk.py +0 -0
  96. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/basesdk.py +0 -0
  97. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/destinations.py +0 -0
  98. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/__init__.py +0 -0
  99. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/apierror.py +0 -0
  100. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/criblcontrolplaneerror.py +0 -0
  101. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/error.py +0 -0
  102. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/no_response_error.py +0 -0
  103. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/responsevalidationerror.py +0 -0
  104. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/health.py +0 -0
  105. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/httpclient.py +0 -0
  106. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/addhectokenrequest.py +0 -0
  107. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/authtoken.py +0 -0
  108. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createinputhectokenbyidop.py +0 -0
  109. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createinputop.py +0 -0
  110. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createoutputop.py +0 -0
  111. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createoutputtestbyidop.py +0 -0
  112. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createpipelineop.py +0 -0
  113. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createroutesappendbyidop.py +0 -0
  114. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/criblevent.py +0 -0
  115. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/deleteinputbyidop.py +0 -0
  116. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/deleteoutputbyidop.py +0 -0
  117. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/deleteoutputpqbyidop.py +0 -0
  118. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/deletepipelinebyidop.py +0 -0
  119. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getinputbyidop.py +0 -0
  120. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getoutputbyidop.py +0 -0
  121. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getoutputpqbyidop.py +0 -0
  122. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getoutputsamplesbyidop.py +0 -0
  123. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getpipelinebyidop.py +0 -0
  124. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getroutesbyidop.py +0 -0
  125. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/input.py +0 -0
  126. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputappscope.py +0 -0
  127. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputazureblob.py +0 -0
  128. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcollection.py +0 -0
  129. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputconfluentcloud.py +0 -0
  130. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcribl.py +0 -0
  131. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcriblhttp.py +0 -0
  132. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcribllakehttp.py +0 -0
  133. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcriblmetrics.py +0 -0
  134. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcribltcp.py +0 -0
  135. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcrowdstrike.py +0 -0
  136. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputdatadogagent.py +0 -0
  137. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputdatagen.py +0 -0
  138. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputedgeprometheus.py +0 -0
  139. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputelastic.py +0 -0
  140. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputeventhub.py +0 -0
  141. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputexec.py +0 -0
  142. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputfile.py +0 -0
  143. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputfirehose.py +0 -0
  144. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputgooglepubsub.py +0 -0
  145. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputgrafana_union.py +0 -0
  146. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputhttp.py +0 -0
  147. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputhttpraw.py +0 -0
  148. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputjournalfiles.py +0 -0
  149. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputkafka.py +0 -0
  150. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputkinesis.py +0 -0
  151. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputkubeevents.py +0 -0
  152. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputkubelogs.py +0 -0
  153. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputkubemetrics.py +0 -0
  154. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputloki.py +0 -0
  155. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputmetrics.py +0 -0
  156. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputmodeldriventelemetry.py +0 -0
  157. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputmsk.py +0 -0
  158. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputnetflow.py +0 -0
  159. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputoffice365mgmt.py +0 -0
  160. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputoffice365msgtrace.py +0 -0
  161. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputoffice365service.py +0 -0
  162. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputopentelemetry.py +0 -0
  163. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputprometheus.py +0 -0
  164. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputprometheusrw.py +0 -0
  165. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputrawudp.py +0 -0
  166. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputs3.py +0 -0
  167. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputs3inventory.py +0 -0
  168. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsecuritylake.py +0 -0
  169. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsnmp.py +0 -0
  170. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsplunk.py +0 -0
  171. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsplunkhec.py +0 -0
  172. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsplunksearch.py +0 -0
  173. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsqs.py +0 -0
  174. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsyslog_union.py +0 -0
  175. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsystemmetrics.py +0 -0
  176. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsystemstate.py +0 -0
  177. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputtcp.py +0 -0
  178. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputtcpjson.py +0 -0
  179. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputwef.py +0 -0
  180. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputwindowsmetrics.py +0 -0
  181. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputwineventlogs.py +0 -0
  182. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputwiz.py +0 -0
  183. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputzscalerhec.py +0 -0
  184. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/listinputop.py +0 -0
  185. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/listoutputop.py +0 -0
  186. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/listpipelineop.py +0 -0
  187. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/listroutesop.py +0 -0
  188. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/logininfo.py +0 -0
  189. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/output.py +0 -0
  190. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputazureblob.py +0 -0
  191. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputazuredataexplorer.py +0 -0
  192. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputazureeventhub.py +0 -0
  193. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputazurelogs.py +0 -0
  194. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputclickhouse.py +0 -0
  195. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputcloudwatch.py +0 -0
  196. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputconfluentcloud.py +0 -0
  197. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputcriblhttp.py +0 -0
  198. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputcribllake.py +0 -0
  199. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputcribltcp.py +0 -0
  200. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputcrowdstrikenextgensiem.py +0 -0
  201. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdatadog.py +0 -0
  202. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdataset.py +0 -0
  203. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdefault.py +0 -0
  204. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdevnull.py +0 -0
  205. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdiskspool.py +0 -0
  206. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdls3.py +0 -0
  207. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdynatracehttp.py +0 -0
  208. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdynatraceotlp.py +0 -0
  209. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputelastic.py +0 -0
  210. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputelasticcloud.py +0 -0
  211. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputexabeam.py +0 -0
  212. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputfilesystem.py +0 -0
  213. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgooglechronicle.py +0 -0
  214. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgooglecloudlogging.py +0 -0
  215. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgooglecloudstorage.py +0 -0
  216. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgooglepubsub.py +0 -0
  217. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgrafanacloud.py +0 -0
  218. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgraphite.py +0 -0
  219. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputhoneycomb.py +0 -0
  220. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputhumiohec.py +0 -0
  221. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputinfluxdb.py +0 -0
  222. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputkafka.py +0 -0
  223. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputkinesis.py +0 -0
  224. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputloki.py +0 -0
  225. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputminio.py +0 -0
  226. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputmsk.py +0 -0
  227. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputnetflow.py +0 -0
  228. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputnewrelic.py +0 -0
  229. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputnewrelicevents.py +0 -0
  230. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputopentelemetry.py +0 -0
  231. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputprometheus.py +0 -0
  232. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputring.py +0 -0
  233. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputrouter.py +0 -0
  234. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputs3.py +0 -0
  235. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsamplesresponse.py +0 -0
  236. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsecuritylake.py +0 -0
  237. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsentinel.py +0 -0
  238. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsentineloneaisiem.py +0 -0
  239. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputservicenow.py +0 -0
  240. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsignalfx.py +0 -0
  241. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsnmp.py +0 -0
  242. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsns.py +0 -0
  243. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsplunk.py +0 -0
  244. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsplunkhec.py +0 -0
  245. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsplunklb.py +0 -0
  246. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsqs.py +0 -0
  247. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputstatsd.py +0 -0
  248. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputstatsdext.py +0 -0
  249. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsumologic.py +0 -0
  250. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsyslog.py +0 -0
  251. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputtcpjson.py +0 -0
  252. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputtestrequest.py +0 -0
  253. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputtestresponse.py +0 -0
  254. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputwavefront.py +0 -0
  255. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputwebhook.py +0 -0
  256. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputxsiam.py +0 -0
  257. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/pipeline.py +0 -0
  258. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/pipelinefunctionconf.py +0 -0
  259. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/routecloneconf.py +0 -0
  260. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/routeconf.py +0 -0
  261. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/routes.py +0 -0
  262. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/routesroute.py +0 -0
  263. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/routesroute_input.py +0 -0
  264. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/schemeclientoauth.py +0 -0
  265. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/security.py +0 -0
  266. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updatehectokenrequest.py +0 -0
  267. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updateinputbyidop.py +0 -0
  268. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +0 -0
  269. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updateoutputbyidop.py +0 -0
  270. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updatepipelinebyidop.py +0 -0
  271. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updateroutesbyidop.py +0 -0
  272. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/pipelines.py +0 -0
  273. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/py.typed +0 -0
  274. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/routes_sdk.py +0 -0
  275. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/sdkconfiguration.py +0 -0
  276. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/sources.py +0 -0
  277. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/types/__init__.py +0 -0
  278. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/types/basemodel.py +0 -0
  279. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/__init__.py +0 -0
  280. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/annotations.py +0 -0
  281. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/datetimes.py +0 -0
  282. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/enums.py +0 -0
  283. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/eventstreaming.py +0 -0
  284. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/forms.py +0 -0
  285. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/headers.py +0 -0
  286. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/logger.py +0 -0
  287. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/metadata.py +0 -0
  288. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/queryparams.py +0 -0
  289. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/requestbodies.py +0 -0
  290. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/retries.py +0 -0
  291. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/security.py +0 -0
  292. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/serializers.py +0 -0
  293. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/unmarshal_json_response.py +0 -0
  294. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/url.py +0 -0
  295. {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/values.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: cribl-control-plane
3
- Version: 0.0.17
3
+ Version: 0.0.19
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -125,7 +125,7 @@ with CriblControlPlane(
125
125
  ),
126
126
  ) as ccp_client:
127
127
 
128
- res = ccp_client.sources.list_source()
128
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
129
129
 
130
130
  # Handle response
131
131
  print(res)
@@ -149,7 +149,7 @@ async def main():
149
149
  ),
150
150
  ) as ccp_client:
151
151
 
152
- res = await ccp_client.sources.list_source_async()
152
+ res = await ccp_client.lake.create_cribl_lake_dataset_by_lake_id_async(lake_id="<id>", id="<id>")
153
153
 
154
154
  # Handle response
155
155
  print(res)
@@ -183,7 +183,7 @@ with CriblControlPlane(
183
183
  ),
184
184
  ) as ccp_client:
185
185
 
186
- res = ccp_client.sources.list_source()
186
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
187
187
 
188
188
  # Handle response
189
189
  print(res)
@@ -214,10 +214,34 @@ with CriblControlPlane(
214
214
  * [get_destination_samples_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get_destination_samples_by_id) - Retrieve samples data for the specified destination. Used to get sample data for the test action.
215
215
  * [create_destination_test_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create_destination_test_by_id) - Send sample data to a destination to validate configuration or test connectivity
216
216
 
217
+ ### [distributed](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/distributed/README.md)
218
+
219
+ * [get_summary](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/distributed/README.md#get_summary) - Get summary of Distributed deployment
220
+
221
+ ### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
222
+
223
+ * [get_groups_config_version_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_config_version_by_id) - Get effective bundle version for given Group
224
+ * [create_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create_products_groups_by_product) - Create a Fleet or Worker Group
225
+ * [get_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_products_groups_by_product) - Get a list of ConfigGroup objects
226
+ * [update_groups_deploy_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update_groups_deploy_by_id) - Deploy commits for a Fleet or Worker Group
227
+ * [get_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_by_id) - Get a specific ConfigGroup object
228
+ * [get_groups_acl_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_acl_by_id) - ACL of members with permissions for resources in this Group
229
+
217
230
  ### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
218
231
 
219
232
  * [get_health_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get_health_info) - Provides health info for REST server
220
233
 
234
+ ### [lake](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md)
235
+
236
+ * [create_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#create_cribl_lake_dataset_by_lake_id) - Create a Dataset in the specified Lake
237
+ * [get_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#get_cribl_lake_dataset_by_lake_id) - Get the list of Dataset contained in the specified Lake
238
+
239
+ ### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
240
+
241
+ * [create_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#create_packs) - Install Pack
242
+ * [get_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get_packs) - Get info on packs
243
+ * [update_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update_packs) - Upload Pack
244
+
221
245
  ### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
222
246
 
223
247
  * [list_pipeline](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list_pipeline) - Get a list of Pipeline objects
@@ -243,6 +267,32 @@ with CriblControlPlane(
243
267
  * [create_source_hec_token_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create_source_hec_token_by_id) - Add token and optional metadata to an existing HEC Source
244
268
  * [update_source_hec_token_by_id_and_token](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update_source_hec_token_by_id_and_token) - Update token metadata on existing HEC Source
245
269
 
270
+ ### [teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
271
+
272
+ * [get_products_groups_acl_teams_by_product_and_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md#get_products_groups_acl_teams_by_product_and_id) - ACL of team with permissions for resources in this Group
273
+
274
+ ### [versioning](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md)
275
+
276
+ * [get_version_branch](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_branch) - get the list of branches
277
+ * [create_version_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_commit) - create a new commit containing the current configs the given log message describing the changes.
278
+ * [get_version_count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_count) - get the count of files of changed
279
+ * [get_version_current_branch](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_current_branch) - returns git branch that the config is checked out to, if any
280
+ * [get_version_diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_diff) - get the textual diff for given commit
281
+ * [get_version_files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_files) - get the files changed
282
+ * [get_version_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_info) - Get info about versioning availability
283
+ * [create_version_push](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_push) - push the current configs to the remote repository.
284
+ * [create_version_revert](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_revert) - revert a commit
285
+ * [get_version_show](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_show) - get the log message and textual diff for given commit
286
+ * [get_version_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_status) - get the the working tree status
287
+ * [create_version_sync](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_sync) - syncs with remote repo via POST requests
288
+ * [create_version_undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_undo) - undo the last commit
289
+
290
+ ### [workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md)
291
+
292
+ * [get_summary_workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#get_summary_workers) - get worker and edge nodes count
293
+ * [get_workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#get_workers) - get worker and edge nodes
294
+ * [update_workers_restart](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#update_workers_restart) - restarts worker nodes
295
+
246
296
  </details>
247
297
  <!-- End Available Resources and Operations [operations] -->
248
298
 
@@ -265,7 +315,7 @@ with CriblControlPlane(
265
315
  ),
266
316
  ) as ccp_client:
267
317
 
268
- res = ccp_client.sources.list_source(,
318
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>",
269
319
  RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
270
320
 
271
321
  # Handle response
@@ -288,7 +338,7 @@ with CriblControlPlane(
288
338
  ),
289
339
  ) as ccp_client:
290
340
 
291
- res = ccp_client.sources.list_source()
341
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
292
342
 
293
343
  # Handle response
294
344
  print(res)
@@ -325,7 +375,7 @@ with CriblControlPlane(
325
375
  res = None
326
376
  try:
327
377
 
328
- res = ccp_client.sources.list_source()
378
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
329
379
 
330
380
  # Handle response
331
381
  print(res)
@@ -360,7 +410,7 @@ with CriblControlPlane(
360
410
 
361
411
 
362
412
  **Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
363
- * [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 27 methods.*
413
+ * [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 56 methods.*
364
414
  * [`ResponseValidationError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
365
415
 
366
416
  </details>
@@ -108,7 +108,7 @@ with CriblControlPlane(
108
108
  ),
109
109
  ) as ccp_client:
110
110
 
111
- res = ccp_client.sources.list_source()
111
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
112
112
 
113
113
  # Handle response
114
114
  print(res)
@@ -132,7 +132,7 @@ async def main():
132
132
  ),
133
133
  ) as ccp_client:
134
134
 
135
- res = await ccp_client.sources.list_source_async()
135
+ res = await ccp_client.lake.create_cribl_lake_dataset_by_lake_id_async(lake_id="<id>", id="<id>")
136
136
 
137
137
  # Handle response
138
138
  print(res)
@@ -166,7 +166,7 @@ with CriblControlPlane(
166
166
  ),
167
167
  ) as ccp_client:
168
168
 
169
- res = ccp_client.sources.list_source()
169
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
170
170
 
171
171
  # Handle response
172
172
  print(res)
@@ -197,10 +197,34 @@ with CriblControlPlane(
197
197
  * [get_destination_samples_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get_destination_samples_by_id) - Retrieve samples data for the specified destination. Used to get sample data for the test action.
198
198
  * [create_destination_test_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create_destination_test_by_id) - Send sample data to a destination to validate configuration or test connectivity
199
199
 
200
+ ### [distributed](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/distributed/README.md)
201
+
202
+ * [get_summary](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/distributed/README.md#get_summary) - Get summary of Distributed deployment
203
+
204
+ ### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
205
+
206
+ * [get_groups_config_version_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_config_version_by_id) - Get effective bundle version for given Group
207
+ * [create_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create_products_groups_by_product) - Create a Fleet or Worker Group
208
+ * [get_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_products_groups_by_product) - Get a list of ConfigGroup objects
209
+ * [update_groups_deploy_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update_groups_deploy_by_id) - Deploy commits for a Fleet or Worker Group
210
+ * [get_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_by_id) - Get a specific ConfigGroup object
211
+ * [get_groups_acl_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_acl_by_id) - ACL of members with permissions for resources in this Group
212
+
200
213
  ### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
201
214
 
202
215
  * [get_health_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get_health_info) - Provides health info for REST server
203
216
 
217
+ ### [lake](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md)
218
+
219
+ * [create_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#create_cribl_lake_dataset_by_lake_id) - Create a Dataset in the specified Lake
220
+ * [get_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#get_cribl_lake_dataset_by_lake_id) - Get the list of Dataset contained in the specified Lake
221
+
222
+ ### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
223
+
224
+ * [create_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#create_packs) - Install Pack
225
+ * [get_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get_packs) - Get info on packs
226
+ * [update_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update_packs) - Upload Pack
227
+
204
228
  ### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
205
229
 
206
230
  * [list_pipeline](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list_pipeline) - Get a list of Pipeline objects
@@ -226,6 +250,32 @@ with CriblControlPlane(
226
250
  * [create_source_hec_token_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create_source_hec_token_by_id) - Add token and optional metadata to an existing HEC Source
227
251
  * [update_source_hec_token_by_id_and_token](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update_source_hec_token_by_id_and_token) - Update token metadata on existing HEC Source
228
252
 
253
+ ### [teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
254
+
255
+ * [get_products_groups_acl_teams_by_product_and_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md#get_products_groups_acl_teams_by_product_and_id) - ACL of team with permissions for resources in this Group
256
+
257
+ ### [versioning](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md)
258
+
259
+ * [get_version_branch](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_branch) - get the list of branches
260
+ * [create_version_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_commit) - create a new commit containing the current configs the given log message describing the changes.
261
+ * [get_version_count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_count) - get the count of files of changed
262
+ * [get_version_current_branch](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_current_branch) - returns git branch that the config is checked out to, if any
263
+ * [get_version_diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_diff) - get the textual diff for given commit
264
+ * [get_version_files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_files) - get the files changed
265
+ * [get_version_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_info) - Get info about versioning availability
266
+ * [create_version_push](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_push) - push the current configs to the remote repository.
267
+ * [create_version_revert](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_revert) - revert a commit
268
+ * [get_version_show](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_show) - get the log message and textual diff for given commit
269
+ * [get_version_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_status) - get the the working tree status
270
+ * [create_version_sync](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_sync) - syncs with remote repo via POST requests
271
+ * [create_version_undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_undo) - undo the last commit
272
+
273
+ ### [workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md)
274
+
275
+ * [get_summary_workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#get_summary_workers) - get worker and edge nodes count
276
+ * [get_workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#get_workers) - get worker and edge nodes
277
+ * [update_workers_restart](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#update_workers_restart) - restarts worker nodes
278
+
229
279
  </details>
230
280
  <!-- End Available Resources and Operations [operations] -->
231
281
 
@@ -248,7 +298,7 @@ with CriblControlPlane(
248
298
  ),
249
299
  ) as ccp_client:
250
300
 
251
- res = ccp_client.sources.list_source(,
301
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>",
252
302
  RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
253
303
 
254
304
  # Handle response
@@ -271,7 +321,7 @@ with CriblControlPlane(
271
321
  ),
272
322
  ) as ccp_client:
273
323
 
274
- res = ccp_client.sources.list_source()
324
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
275
325
 
276
326
  # Handle response
277
327
  print(res)
@@ -308,7 +358,7 @@ with CriblControlPlane(
308
358
  res = None
309
359
  try:
310
360
 
311
- res = ccp_client.sources.list_source()
361
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
312
362
 
313
363
  # Handle response
314
364
  print(res)
@@ -343,7 +393,7 @@ with CriblControlPlane(
343
393
 
344
394
 
345
395
  **Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
346
- * [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 27 methods.*
396
+ * [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 56 methods.*
347
397
  * [`ResponseValidationError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
348
398
 
349
399
  </details>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "cribl-control-plane"
3
- version = "0.0.17"
3
+ version = "0.0.19"
4
4
  description = "Python Client SDK Generated by Speakeasy."
5
5
  authors = [{ name = "Speakeasy" },]
6
6
  readme = "README-PYPI.md"
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "cribl-control-plane"
6
- __version__: str = "0.0.17"
7
- __openapi_doc_version__: str = "4.14.0-alpha.1753474119310-0fc52c1b"
6
+ __version__: str = "0.0.19"
7
+ __openapi_doc_version__: str = "4.14.0-alpha.1753854543129-e0f06d67"
8
8
  __gen_version__: str = "2.660.0"
9
- __user_agent__: str = "speakeasy-sdk/python 0.0.17 2.660.0 4.14.0-alpha.1753474119310-0fc52c1b cribl-control-plane"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.0.19 2.660.0 4.14.0-alpha.1753854543129-e0f06d67 cribl-control-plane"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -0,0 +1,187 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from .basesdk import BaseSDK
4
+ from cribl_control_plane import errors, models, utils
5
+ from cribl_control_plane._hooks import HookContext
6
+ from cribl_control_plane.types import OptionalNullable, UNSET
7
+ from cribl_control_plane.utils import get_security_from_env
8
+ from cribl_control_plane.utils.unmarshal_json_response import unmarshal_json_response
9
+ from typing import Any, Mapping, Optional
10
+
11
+
12
+ class Distributed(BaseSDK):
13
+ r"""Actions related to Distributed"""
14
+
15
+ def get_summary(
16
+ self,
17
+ *,
18
+ mode: Optional[models.GetSummaryMode] = None,
19
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
20
+ server_url: Optional[str] = None,
21
+ timeout_ms: Optional[int] = None,
22
+ http_headers: Optional[Mapping[str, str]] = None,
23
+ ) -> models.GetSummaryResponse:
24
+ r"""Get summary of Distributed deployment
25
+
26
+ Get summary of Distributed deployment
27
+
28
+ :param mode: product filter
29
+ :param retries: Override the default retry configuration for this method
30
+ :param server_url: Override the default server URL for this method
31
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
32
+ :param http_headers: Additional headers to set or replace on requests.
33
+ """
34
+ base_url = None
35
+ url_variables = None
36
+ if timeout_ms is None:
37
+ timeout_ms = self.sdk_configuration.timeout_ms
38
+
39
+ if server_url is not None:
40
+ base_url = server_url
41
+ else:
42
+ base_url = self._get_url(base_url, url_variables)
43
+
44
+ request = models.GetSummaryRequest(
45
+ mode=mode,
46
+ )
47
+
48
+ req = self._build_request(
49
+ method="GET",
50
+ path="/master/summary",
51
+ base_url=base_url,
52
+ url_variables=url_variables,
53
+ request=request,
54
+ request_body_required=False,
55
+ request_has_path_params=False,
56
+ request_has_query_params=True,
57
+ user_agent_header="user-agent",
58
+ accept_header_value="application/json",
59
+ http_headers=http_headers,
60
+ security=self.sdk_configuration.security,
61
+ timeout_ms=timeout_ms,
62
+ )
63
+
64
+ if retries == UNSET:
65
+ if self.sdk_configuration.retry_config is not UNSET:
66
+ retries = self.sdk_configuration.retry_config
67
+
68
+ retry_config = None
69
+ if isinstance(retries, utils.RetryConfig):
70
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
71
+
72
+ http_res = self.do_request(
73
+ hook_ctx=HookContext(
74
+ config=self.sdk_configuration,
75
+ base_url=base_url or "",
76
+ operation_id="getSummary",
77
+ oauth2_scopes=[],
78
+ security_source=get_security_from_env(
79
+ self.sdk_configuration.security, models.Security
80
+ ),
81
+ ),
82
+ request=req,
83
+ error_status_codes=["401", "4XX", "500", "5XX"],
84
+ retry_config=retry_config,
85
+ )
86
+
87
+ response_data: Any = None
88
+ if utils.match_response(http_res, "200", "application/json"):
89
+ return unmarshal_json_response(models.GetSummaryResponse, http_res)
90
+ if utils.match_response(http_res, "500", "application/json"):
91
+ response_data = unmarshal_json_response(errors.ErrorData, http_res)
92
+ raise errors.Error(response_data, http_res)
93
+ if utils.match_response(http_res, ["401", "4XX"], "*"):
94
+ http_res_text = utils.stream_to_text(http_res)
95
+ raise errors.APIError("API error occurred", http_res, http_res_text)
96
+ if utils.match_response(http_res, "5XX", "*"):
97
+ http_res_text = utils.stream_to_text(http_res)
98
+ raise errors.APIError("API error occurred", http_res, http_res_text)
99
+
100
+ raise errors.APIError("Unexpected response received", http_res)
101
+
102
+ async def get_summary_async(
103
+ self,
104
+ *,
105
+ mode: Optional[models.GetSummaryMode] = None,
106
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
107
+ server_url: Optional[str] = None,
108
+ timeout_ms: Optional[int] = None,
109
+ http_headers: Optional[Mapping[str, str]] = None,
110
+ ) -> models.GetSummaryResponse:
111
+ r"""Get summary of Distributed deployment
112
+
113
+ Get summary of Distributed deployment
114
+
115
+ :param mode: product filter
116
+ :param retries: Override the default retry configuration for this method
117
+ :param server_url: Override the default server URL for this method
118
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
119
+ :param http_headers: Additional headers to set or replace on requests.
120
+ """
121
+ base_url = None
122
+ url_variables = None
123
+ if timeout_ms is None:
124
+ timeout_ms = self.sdk_configuration.timeout_ms
125
+
126
+ if server_url is not None:
127
+ base_url = server_url
128
+ else:
129
+ base_url = self._get_url(base_url, url_variables)
130
+
131
+ request = models.GetSummaryRequest(
132
+ mode=mode,
133
+ )
134
+
135
+ req = self._build_request_async(
136
+ method="GET",
137
+ path="/master/summary",
138
+ base_url=base_url,
139
+ url_variables=url_variables,
140
+ request=request,
141
+ request_body_required=False,
142
+ request_has_path_params=False,
143
+ request_has_query_params=True,
144
+ user_agent_header="user-agent",
145
+ accept_header_value="application/json",
146
+ http_headers=http_headers,
147
+ security=self.sdk_configuration.security,
148
+ timeout_ms=timeout_ms,
149
+ )
150
+
151
+ if retries == UNSET:
152
+ if self.sdk_configuration.retry_config is not UNSET:
153
+ retries = self.sdk_configuration.retry_config
154
+
155
+ retry_config = None
156
+ if isinstance(retries, utils.RetryConfig):
157
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
158
+
159
+ http_res = await self.do_request_async(
160
+ hook_ctx=HookContext(
161
+ config=self.sdk_configuration,
162
+ base_url=base_url or "",
163
+ operation_id="getSummary",
164
+ oauth2_scopes=[],
165
+ security_source=get_security_from_env(
166
+ self.sdk_configuration.security, models.Security
167
+ ),
168
+ ),
169
+ request=req,
170
+ error_status_codes=["401", "4XX", "500", "5XX"],
171
+ retry_config=retry_config,
172
+ )
173
+
174
+ response_data: Any = None
175
+ if utils.match_response(http_res, "200", "application/json"):
176
+ return unmarshal_json_response(models.GetSummaryResponse, http_res)
177
+ if utils.match_response(http_res, "500", "application/json"):
178
+ response_data = unmarshal_json_response(errors.ErrorData, http_res)
179
+ raise errors.Error(response_data, http_res)
180
+ if utils.match_response(http_res, ["401", "4XX"], "*"):
181
+ http_res_text = await utils.stream_to_text_async(http_res)
182
+ raise errors.APIError("API error occurred", http_res, http_res_text)
183
+ if utils.match_response(http_res, "5XX", "*"):
184
+ http_res_text = await utils.stream_to_text_async(http_res)
185
+ raise errors.APIError("API error occurred", http_res, http_res_text)
186
+
187
+ raise errors.APIError("Unexpected response received", http_res)
@@ -11,7 +11,7 @@ from typing_extensions import Annotated
11
11
 
12
12
 
13
13
  class HealthStatusErrorData(BaseModel):
14
- status: models_healthstatus.Status
14
+ status: models_healthstatus.HealthStatusStatus
15
15
 
16
16
  start_time: Annotated[float, pydantic.Field(alias="startTime")]
17
17