cribl-control-plane 0.2.0b2__tar.gz → 0.3.0b12__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.
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/PKG-INFO +61 -11
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/README-PYPI.md +60 -10
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/pyproject.toml +1 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_version.py +4 -4
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/__init__.py +8 -5
- cribl_control_plane-0.2.0b2/src/cribl_control_plane/errors/healthstatus_error.py → cribl_control_plane-0.3.0b12/src/cribl_control_plane/errors/healthserverstatus_error.py +10 -9
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/groups_sdk.py +54 -30
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/health.py +22 -16
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/lakedatasets.py +28 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/__init__.py +198 -34
- cribl_control_plane-0.3.0b12/src/cribl_control_plane/models/authtoken.py +17 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/cacheconnection.py +20 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/configgroup.py +52 -19
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/configgroupcloud.py +11 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createconfiggroupbyproductop.py +19 -7
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createroutesappendbyidop.py +2 -2
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/cribllakedataset.py +15 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/cribllakedatasetupdate.py +15 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/datasetmetadata.py +11 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +11 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deleteoutputpqbyidop.py +2 -2
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +20 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +20 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getconfiggroupbyproductandidop.py +11 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +11 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getsummaryop.py +11 -0
- cribl_control_plane-0.3.0b12/src/cribl_control_plane/models/groupcreaterequest.py +171 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/hbcriblinfo.py +11 -1
- cribl_control_plane-0.2.0b2/src/cribl_control_plane/models/healthstatus.py → cribl_control_plane-0.3.0b12/src/cribl_control_plane/models/healthserverstatus.py +27 -8
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputappscope.py +76 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputazureblob.py +29 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcollection.py +20 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputconfluentcloud.py +188 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcribl.py +20 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcriblhttp.py +58 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcribllakehttp.py +58 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcriblmetrics.py +20 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcribltcp.py +58 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcrowdstrike.py +47 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputdatadogagent.py +58 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputdatagen.py +20 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputedgeprometheus.py +138 -37
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputelastic.py +108 -27
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputeventhub.py +176 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputexec.py +29 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputfile.py +40 -7
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputfirehose.py +58 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputgooglepubsub.py +29 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputgrafana.py +149 -32
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputhttp.py +58 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputhttpraw.py +58 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputjournalfiles.py +20 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputkafka.py +182 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputkinesis.py +65 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputkubeevents.py +20 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputkubelogs.py +29 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputkubemetrics.py +29 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputloki.py +67 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputmetrics.py +58 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputmodeldriventelemetry.py +58 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputmsk.py +74 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputnetflow.py +20 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputoffice365mgmt.py +56 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputoffice365msgtrace.py +56 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputoffice365service.py +56 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputopentelemetry.py +84 -16
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputprometheus.py +131 -37
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputprometheusrw.py +67 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputrawudp.py +20 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputs3.py +38 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputs3inventory.py +47 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsecuritylake.py +47 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsnmp.py +29 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsplunk.py +76 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsplunkhec.py +66 -16
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsplunksearch.py +56 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsqs.py +47 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsyslog.py +113 -32
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsystemmetrics.py +110 -9
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsystemstate.py +29 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputtcp.py +77 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputtcpjson.py +67 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputwef.py +65 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputwindowsmetrics.py +101 -9
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputwineventlogs.py +52 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputwiz.py +38 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputwizwebhook.py +58 -17
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputzscalerhec.py +66 -16
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/jobinfo.py +10 -4
- cribl_control_plane-0.3.0b12/src/cribl_control_plane/models/jobstatus.py +48 -0
- cribl_control_plane-0.3.0b12/src/cribl_control_plane/models/lakedatasetmetrics.py +17 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listconfiggroupbyproductop.py +11 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/masterworkerentry.py +11 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/nodeprovidedinfo.py +4 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/nodeupgradestatus.py +38 -0
- cribl_control_plane-0.3.0b12/src/cribl_control_plane/models/outpostnodeinfo.py +16 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputazureblob.py +90 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputazuredataexplorer.py +430 -93
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputazureeventhub.py +267 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputazurelogs.py +105 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputchronicle.py +105 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputclickhouse.py +141 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputcloudwatch.py +96 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputconfluentcloud.py +292 -23
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputcriblhttp.py +123 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputcribllake.py +76 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputcribltcp.py +123 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputcrowdstrikenextgensiem.py +117 -23
- cribl_control_plane-0.3.0b12/src/cribl_control_plane/models/outputdatabricks.py +482 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdatadog.py +132 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdataset.py +123 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdiskspool.py +11 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdls3.py +117 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdynatracehttp.py +141 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdynatraceotlp.py +141 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputelastic.py +148 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputelasticcloud.py +130 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputexabeam.py +47 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputfilesystem.py +72 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgooglechronicle.py +148 -23
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgooglecloudlogging.py +115 -23
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgooglecloudstorage.py +108 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgooglepubsub.py +96 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgrafanacloud.py +244 -43
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgraphite.py +96 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputhoneycomb.py +105 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputhumiohec.py +114 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputinfluxdb.py +114 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputkafka.py +283 -20
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputkinesis.py +121 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputloki.py +112 -20
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputminio.py +117 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputmsk.py +175 -20
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputnewrelic.py +123 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputnewrelicevents.py +115 -23
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputopentelemetry.py +159 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputprometheus.py +105 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputring.py +29 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputs3.py +117 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsecuritylake.py +85 -1
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsentinel.py +123 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsentineloneaisiem.py +124 -23
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputservicenow.py +150 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsignalfx.py +105 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsns.py +103 -20
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsplunk.py +141 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsplunkhec.py +198 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsplunklb.py +170 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsqs.py +112 -20
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputstatsd.py +96 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputstatsdext.py +96 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsumologic.py +105 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsyslog.py +238 -99
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputtcpjson.py +132 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputwavefront.py +105 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputwebhook.py +141 -22
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputxsiam.py +103 -20
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/packinfo.py +5 -5
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/packinstallinfo.py +5 -5
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/resourcepolicy.py +11 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/runnablejobcollection.py +68 -9
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/runnablejobexecutor.py +32 -9
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/runnablejobscheduledsearch.py +23 -9
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateconfiggroupbyproductandidop.py +11 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py +11 -0
- cribl_control_plane-0.3.0b12/src/cribl_control_plane/models/updatepacksop.py +25 -0
- cribl_control_plane-0.2.0b2/src/cribl_control_plane/models/authtoken.py → cribl_control_plane-0.3.0b12/src/cribl_control_plane/models/uploadpackresponse.py +4 -4
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/packs.py +202 -7
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/routes_sdk.py +6 -6
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/tokens.py +23 -15
- cribl_control_plane-0.2.0b2/src/cribl_control_plane/models/error.py +0 -16
- cribl_control_plane-0.2.0b2/src/cribl_control_plane/models/gethealthinfoop.py +0 -17
- cribl_control_plane-0.2.0b2/src/cribl_control_plane/models/jobstatus.py +0 -17
- cribl_control_plane-0.2.0b2/src/cribl_control_plane/models/outputdatabricks.py +0 -291
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/py.typed +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/__init__.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_hooks/__init__.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_hooks/clientcredentials.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_hooks/registration.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_hooks/sdkhooks.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_hooks/types.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/acl.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/auth_sdk.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/basesdk.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/branches.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/commits.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/commits_files.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/configs_versions.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/destinations.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/destinations_pq.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/apierror.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/criblcontrolplaneerror.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/error.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/no_response_error.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/responsevalidationerror.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/groups_configs.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/hectokens.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/httpclient.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/addhectokenrequest.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/branchinfo.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/cacheconnectionbackfillstatus.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/cloudprovider.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/commit.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/configgrouplookups.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createcribllakedatasetbylakeidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createinputhectokenbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createinputop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createoutputop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createoutputtestbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createpacksop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createpipelineop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createversioncommitop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createversionpushop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createversionrevertop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createversionundoop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/criblevent.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/currentbranchresult.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/datasetmetadataruninfo.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deleteinputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deleteoutputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deletepacksbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deletepipelinebyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deployrequest.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deployrequestlookups.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/difffiles.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/distributedsummary.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getinputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getmasterworkerentryop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getoutputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getoutputsamplesbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getpacksbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getpacksop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getpipelinebyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getroutesbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversionbranchop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversioncountop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversiondiffop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversionfilesop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversioninfoop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversionop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversionshowop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversionstatusop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitcommitparams.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitcommitsummary.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitcountresult.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitdiffresult.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitfile.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitfilesresponse.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitinfo.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitlogresult.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitrevertparams.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitrevertresult.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitshowresult.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitstatusresult.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/hbleaderinfo.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/heartbeatmetadata.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/input.py +15 -15
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/lakedatasetsearchconfig.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/lakehouseconnectiontype.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listinputop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listmasterworkerentryop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listoutputop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listpipelineop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listroutesop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/logininfo.py +3 -3
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/lookupversions.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/nodeactiveupgradestatus.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/nodefailedupgradestatus.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/nodeskippedupgradestatus.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/nodeupgradestate.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/output.py +21 -21
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdefault.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdevnull.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputnetflow.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputrouter.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsamplesresponse.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsnmp.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputtestrequest.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputtestresponse.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/packrequestbody_union.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/packupgraderequest.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/pipeline.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/pipelinefunctionconf.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/productscore.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/rbacresource.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/routeconf.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/routes.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/routesroute.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/runnablejob.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/schemeclientoauth.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/security.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/teamaccesscontrollist.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updatehectokenrequest.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateinputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateoutputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updatepacksbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updatepipelinebyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateroutesbyidop.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/useraccesscontrollist.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/workertypes.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/nodes.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/pipelines.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/py.typed +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/samples.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/sdk.py +2 -2
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/sdkconfiguration.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/sources.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/statuses.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/summaries.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/teams.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/types/__init__.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/types/basemodel.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/__init__.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/annotations.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/datetimes.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/enums.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/eventstreaming.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/forms.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/headers.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/logger.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/metadata.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/queryparams.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/requestbodies.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/retries.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/security.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/serializers.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/unmarshal_json_response.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/url.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/values.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/versions.py +0 -0
- {cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/versions_configs.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0b12
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -32,6 +32,7 @@ Cribl API Reference: This API Reference lists available REST endpoints, along wi
|
|
|
32
32
|
* [SDK Example Usage](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#sdk-example-usage)
|
|
33
33
|
* [Authentication](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#authentication)
|
|
34
34
|
* [Available Resources and Operations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#available-resources-and-operations)
|
|
35
|
+
* [File uploads](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#file-uploads)
|
|
35
36
|
* [Retries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#retries)
|
|
36
37
|
* [Error Handling](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#error-handling)
|
|
37
38
|
* [Custom HTTP Client](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#custom-http-client)
|
|
@@ -148,7 +149,10 @@ with CriblControlPlane(
|
|
|
148
149
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
149
150
|
"migration_query_id": "<id>",
|
|
150
151
|
"retention_in_days": 1466.58,
|
|
151
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
152
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
153
|
+
"current_size_bytes": 6170.04,
|
|
154
|
+
"metrics_date": "<value>",
|
|
155
|
+
}, retention_period_in_days=456.37, search_config={
|
|
152
156
|
"datatypes": [
|
|
153
157
|
"<value 1>",
|
|
154
158
|
],
|
|
@@ -206,7 +210,10 @@ async def main():
|
|
|
206
210
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
207
211
|
"migration_query_id": "<id>",
|
|
208
212
|
"retention_in_days": 1466.58,
|
|
209
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
213
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
214
|
+
"current_size_bytes": 6170.04,
|
|
215
|
+
"metrics_date": "<value>",
|
|
216
|
+
}, retention_period_in_days=456.37, search_config={
|
|
210
217
|
"datatypes": [
|
|
211
218
|
"<value 1>",
|
|
212
219
|
],
|
|
@@ -273,7 +280,10 @@ with CriblControlPlane(
|
|
|
273
280
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
274
281
|
"migration_query_id": "<id>",
|
|
275
282
|
"retention_in_days": 1466.58,
|
|
276
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
283
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
284
|
+
"current_size_bytes": 6170.04,
|
|
285
|
+
"metrics_date": "<value>",
|
|
286
|
+
}, retention_period_in_days=456.37, search_config={
|
|
277
287
|
"datatypes": [
|
|
278
288
|
"<value 1>",
|
|
279
289
|
],
|
|
@@ -372,8 +382,9 @@ with CriblControlPlane(
|
|
|
372
382
|
|
|
373
383
|
### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
|
|
374
384
|
|
|
375
|
-
* [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) -
|
|
385
|
+
* [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Install a Pack
|
|
376
386
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#list) - List all Packs
|
|
387
|
+
* [upload](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#upload) - Upload a Pack file
|
|
377
388
|
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#delete) - Uninstall a Pack
|
|
378
389
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get) - Get a Pack
|
|
379
390
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update) - Upgrade a Pack
|
|
@@ -391,7 +402,7 @@ with CriblControlPlane(
|
|
|
391
402
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - List all Routes
|
|
392
403
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get a Routing table
|
|
393
404
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update a Route
|
|
394
|
-
* [append](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#append) -
|
|
405
|
+
* [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
|
|
395
406
|
|
|
396
407
|
### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
|
|
397
408
|
|
|
@@ -437,6 +448,36 @@ with CriblControlPlane(
|
|
|
437
448
|
</details>
|
|
438
449
|
<!-- End Available Resources and Operations [operations] -->
|
|
439
450
|
|
|
451
|
+
<!-- Start File uploads [file-upload] -->
|
|
452
|
+
## File uploads
|
|
453
|
+
|
|
454
|
+
Certain SDK methods accept file objects as part of a request body or multi-part request. It is possible and typically recommended to upload files as a stream rather than reading the entire contents into memory. This avoids excessive memory consumption and potentially crashing with out-of-memory errors when working with very large files. The following example demonstrates how to attach a file stream to a request.
|
|
455
|
+
|
|
456
|
+
> [!TIP]
|
|
457
|
+
>
|
|
458
|
+
> For endpoints that handle file uploads bytes arrays can also be used. However, using streams is recommended for large files.
|
|
459
|
+
>
|
|
460
|
+
|
|
461
|
+
```python
|
|
462
|
+
from cribl_control_plane import CriblControlPlane, models
|
|
463
|
+
import os
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
with CriblControlPlane(
|
|
467
|
+
server_url="https://api.example.com",
|
|
468
|
+
security=models.Security(
|
|
469
|
+
bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
|
|
470
|
+
),
|
|
471
|
+
) as ccp_client:
|
|
472
|
+
|
|
473
|
+
res = ccp_client.packs.upload(filename="example.file", request_body=open("example.file", "rb"))
|
|
474
|
+
|
|
475
|
+
# Handle response
|
|
476
|
+
print(res)
|
|
477
|
+
|
|
478
|
+
```
|
|
479
|
+
<!-- End File uploads [file-upload] -->
|
|
480
|
+
|
|
440
481
|
<!-- Start Retries [retries] -->
|
|
441
482
|
## Retries
|
|
442
483
|
|
|
@@ -470,7 +511,10 @@ with CriblControlPlane(
|
|
|
470
511
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
471
512
|
"migration_query_id": "<id>",
|
|
472
513
|
"retention_in_days": 1466.58,
|
|
473
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
514
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
515
|
+
"current_size_bytes": 6170.04,
|
|
516
|
+
"metrics_date": "<value>",
|
|
517
|
+
}, retention_period_in_days=456.37, search_config={
|
|
474
518
|
"datatypes": [
|
|
475
519
|
"<value 1>",
|
|
476
520
|
],
|
|
@@ -526,7 +570,10 @@ with CriblControlPlane(
|
|
|
526
570
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
527
571
|
"migration_query_id": "<id>",
|
|
528
572
|
"retention_in_days": 1466.58,
|
|
529
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
573
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
574
|
+
"current_size_bytes": 6170.04,
|
|
575
|
+
"metrics_date": "<value>",
|
|
576
|
+
}, retention_period_in_days=456.37, search_config={
|
|
530
577
|
"datatypes": [
|
|
531
578
|
"<value 1>",
|
|
532
579
|
],
|
|
@@ -596,7 +643,10 @@ with CriblControlPlane(
|
|
|
596
643
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
597
644
|
"migration_query_id": "<id>",
|
|
598
645
|
"retention_in_days": 1466.58,
|
|
599
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
646
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
647
|
+
"current_size_bytes": 6170.04,
|
|
648
|
+
"metrics_date": "<value>",
|
|
649
|
+
}, retention_period_in_days=456.37, search_config={
|
|
600
650
|
"datatypes": [
|
|
601
651
|
"<value 1>",
|
|
602
652
|
],
|
|
@@ -637,7 +687,7 @@ with CriblControlPlane(
|
|
|
637
687
|
### Error Classes
|
|
638
688
|
**Primary errors:**
|
|
639
689
|
* [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py): The base class for HTTP error responses.
|
|
640
|
-
* [`Error`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/error.py): Unexpected error. Status code `500`.
|
|
690
|
+
* [`Error`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/error.py): Unexpected error. Status code `500`.
|
|
641
691
|
|
|
642
692
|
<details><summary>Less common errors (6)</summary>
|
|
643
693
|
|
|
@@ -650,7 +700,7 @@ with CriblControlPlane(
|
|
|
650
700
|
|
|
651
701
|
|
|
652
702
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
653
|
-
* [`
|
|
703
|
+
* [`HealthServerStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthserverstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 63 methods.*
|
|
654
704
|
* [`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.
|
|
655
705
|
|
|
656
706
|
</details>
|
|
@@ -14,6 +14,7 @@ Cribl API Reference: This API Reference lists available REST endpoints, along wi
|
|
|
14
14
|
* [SDK Example Usage](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#sdk-example-usage)
|
|
15
15
|
* [Authentication](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#authentication)
|
|
16
16
|
* [Available Resources and Operations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#available-resources-and-operations)
|
|
17
|
+
* [File uploads](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#file-uploads)
|
|
17
18
|
* [Retries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#retries)
|
|
18
19
|
* [Error Handling](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#error-handling)
|
|
19
20
|
* [Custom HTTP Client](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#custom-http-client)
|
|
@@ -130,7 +131,10 @@ with CriblControlPlane(
|
|
|
130
131
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
131
132
|
"migration_query_id": "<id>",
|
|
132
133
|
"retention_in_days": 1466.58,
|
|
133
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
134
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
135
|
+
"current_size_bytes": 6170.04,
|
|
136
|
+
"metrics_date": "<value>",
|
|
137
|
+
}, retention_period_in_days=456.37, search_config={
|
|
134
138
|
"datatypes": [
|
|
135
139
|
"<value 1>",
|
|
136
140
|
],
|
|
@@ -188,7 +192,10 @@ async def main():
|
|
|
188
192
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
189
193
|
"migration_query_id": "<id>",
|
|
190
194
|
"retention_in_days": 1466.58,
|
|
191
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
195
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
196
|
+
"current_size_bytes": 6170.04,
|
|
197
|
+
"metrics_date": "<value>",
|
|
198
|
+
}, retention_period_in_days=456.37, search_config={
|
|
192
199
|
"datatypes": [
|
|
193
200
|
"<value 1>",
|
|
194
201
|
],
|
|
@@ -255,7 +262,10 @@ with CriblControlPlane(
|
|
|
255
262
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
256
263
|
"migration_query_id": "<id>",
|
|
257
264
|
"retention_in_days": 1466.58,
|
|
258
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
265
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
266
|
+
"current_size_bytes": 6170.04,
|
|
267
|
+
"metrics_date": "<value>",
|
|
268
|
+
}, retention_period_in_days=456.37, search_config={
|
|
259
269
|
"datatypes": [
|
|
260
270
|
"<value 1>",
|
|
261
271
|
],
|
|
@@ -354,8 +364,9 @@ with CriblControlPlane(
|
|
|
354
364
|
|
|
355
365
|
### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
|
|
356
366
|
|
|
357
|
-
* [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) -
|
|
367
|
+
* [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Install a Pack
|
|
358
368
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#list) - List all Packs
|
|
369
|
+
* [upload](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#upload) - Upload a Pack file
|
|
359
370
|
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#delete) - Uninstall a Pack
|
|
360
371
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get) - Get a Pack
|
|
361
372
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update) - Upgrade a Pack
|
|
@@ -373,7 +384,7 @@ with CriblControlPlane(
|
|
|
373
384
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - List all Routes
|
|
374
385
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get a Routing table
|
|
375
386
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update a Route
|
|
376
|
-
* [append](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#append) -
|
|
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
|
|
377
388
|
|
|
378
389
|
### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
|
|
379
390
|
|
|
@@ -419,6 +430,36 @@ with CriblControlPlane(
|
|
|
419
430
|
</details>
|
|
420
431
|
<!-- End Available Resources and Operations [operations] -->
|
|
421
432
|
|
|
433
|
+
<!-- Start File uploads [file-upload] -->
|
|
434
|
+
## File uploads
|
|
435
|
+
|
|
436
|
+
Certain SDK methods accept file objects as part of a request body or multi-part request. It is possible and typically recommended to upload files as a stream rather than reading the entire contents into memory. This avoids excessive memory consumption and potentially crashing with out-of-memory errors when working with very large files. The following example demonstrates how to attach a file stream to a request.
|
|
437
|
+
|
|
438
|
+
> [!TIP]
|
|
439
|
+
>
|
|
440
|
+
> For endpoints that handle file uploads bytes arrays can also be used. However, using streams is recommended for large files.
|
|
441
|
+
>
|
|
442
|
+
|
|
443
|
+
```python
|
|
444
|
+
from cribl_control_plane import CriblControlPlane, models
|
|
445
|
+
import os
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
with CriblControlPlane(
|
|
449
|
+
server_url="https://api.example.com",
|
|
450
|
+
security=models.Security(
|
|
451
|
+
bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
|
|
452
|
+
),
|
|
453
|
+
) as ccp_client:
|
|
454
|
+
|
|
455
|
+
res = ccp_client.packs.upload(filename="example.file", request_body=open("example.file", "rb"))
|
|
456
|
+
|
|
457
|
+
# Handle response
|
|
458
|
+
print(res)
|
|
459
|
+
|
|
460
|
+
```
|
|
461
|
+
<!-- End File uploads [file-upload] -->
|
|
462
|
+
|
|
422
463
|
<!-- Start Retries [retries] -->
|
|
423
464
|
## Retries
|
|
424
465
|
|
|
@@ -452,7 +493,10 @@ with CriblControlPlane(
|
|
|
452
493
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
453
494
|
"migration_query_id": "<id>",
|
|
454
495
|
"retention_in_days": 1466.58,
|
|
455
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
496
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
497
|
+
"current_size_bytes": 6170.04,
|
|
498
|
+
"metrics_date": "<value>",
|
|
499
|
+
}, retention_period_in_days=456.37, search_config={
|
|
456
500
|
"datatypes": [
|
|
457
501
|
"<value 1>",
|
|
458
502
|
],
|
|
@@ -508,7 +552,10 @@ with CriblControlPlane(
|
|
|
508
552
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
509
553
|
"migration_query_id": "<id>",
|
|
510
554
|
"retention_in_days": 1466.58,
|
|
511
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
555
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
556
|
+
"current_size_bytes": 6170.04,
|
|
557
|
+
"metrics_date": "<value>",
|
|
558
|
+
}, retention_period_in_days=456.37, search_config={
|
|
512
559
|
"datatypes": [
|
|
513
560
|
"<value 1>",
|
|
514
561
|
],
|
|
@@ -578,7 +625,10 @@ with CriblControlPlane(
|
|
|
578
625
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
579
626
|
"migration_query_id": "<id>",
|
|
580
627
|
"retention_in_days": 1466.58,
|
|
581
|
-
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True,
|
|
628
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, metrics={
|
|
629
|
+
"current_size_bytes": 6170.04,
|
|
630
|
+
"metrics_date": "<value>",
|
|
631
|
+
}, retention_period_in_days=456.37, search_config={
|
|
582
632
|
"datatypes": [
|
|
583
633
|
"<value 1>",
|
|
584
634
|
],
|
|
@@ -619,7 +669,7 @@ with CriblControlPlane(
|
|
|
619
669
|
### Error Classes
|
|
620
670
|
**Primary errors:**
|
|
621
671
|
* [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py): The base class for HTTP error responses.
|
|
622
|
-
* [`Error`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/error.py): Unexpected error. Status code `500`.
|
|
672
|
+
* [`Error`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/error.py): Unexpected error. Status code `500`.
|
|
623
673
|
|
|
624
674
|
<details><summary>Less common errors (6)</summary>
|
|
625
675
|
|
|
@@ -632,7 +682,7 @@ with CriblControlPlane(
|
|
|
632
682
|
|
|
633
683
|
|
|
634
684
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
635
|
-
* [`
|
|
685
|
+
* [`HealthServerStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthserverstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 63 methods.*
|
|
636
686
|
* [`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.
|
|
637
687
|
|
|
638
688
|
</details>
|
{cribl_control_plane-0.2.0b2 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_version.py
RENAMED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "cribl-control-plane"
|
|
6
|
-
__version__: str = "0.
|
|
7
|
-
__openapi_doc_version__: str = "4.15.0-alpha.
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.
|
|
6
|
+
__version__: str = "0.3.0b12"
|
|
7
|
+
__openapi_doc_version__: str = "4.15.0-alpha.1762383805913-2ea53e6b"
|
|
8
|
+
__gen_version__: str = "2.743.2"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.3.0b12 2.743.2 4.15.0-alpha.1762383805913-2ea53e6b cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -9,7 +9,10 @@ import sys
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
10
|
from .apierror import APIError
|
|
11
11
|
from .error import Error, ErrorData
|
|
12
|
-
from .
|
|
12
|
+
from .healthserverstatus_error import (
|
|
13
|
+
HealthServerStatusError,
|
|
14
|
+
HealthServerStatusErrorData,
|
|
15
|
+
)
|
|
13
16
|
from .no_response_error import NoResponseError
|
|
14
17
|
from .responsevalidationerror import ResponseValidationError
|
|
15
18
|
|
|
@@ -18,8 +21,8 @@ __all__ = [
|
|
|
18
21
|
"CriblControlPlaneError",
|
|
19
22
|
"Error",
|
|
20
23
|
"ErrorData",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
24
|
+
"HealthServerStatusError",
|
|
25
|
+
"HealthServerStatusErrorData",
|
|
23
26
|
"NoResponseError",
|
|
24
27
|
"ResponseValidationError",
|
|
25
28
|
]
|
|
@@ -28,8 +31,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
28
31
|
"APIError": ".apierror",
|
|
29
32
|
"Error": ".error",
|
|
30
33
|
"ErrorData": ".error",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
34
|
+
"HealthServerStatusError": ".healthserverstatus_error",
|
|
35
|
+
"HealthServerStatusErrorData": ".healthserverstatus_error",
|
|
33
36
|
"NoResponseError": ".no_response_error",
|
|
34
37
|
"ResponseValidationError": ".responsevalidationerror",
|
|
35
38
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from cribl_control_plane.errors import CriblControlPlaneError
|
|
5
|
-
from cribl_control_plane.models import
|
|
5
|
+
from cribl_control_plane.models import healthserverstatus as models_healthserverstatus
|
|
6
6
|
from cribl_control_plane.types import BaseModel
|
|
7
7
|
from cribl_control_plane.utils import validate_open_enum
|
|
8
8
|
from dataclasses import dataclass, field
|
|
@@ -13,25 +13,26 @@ from typing import Optional
|
|
|
13
13
|
from typing_extensions import Annotated
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
class
|
|
16
|
+
class HealthServerStatusErrorData(BaseModel):
|
|
17
|
+
start_time: Annotated[float, pydantic.Field(alias="startTime")]
|
|
18
|
+
|
|
17
19
|
status: Annotated[
|
|
18
|
-
|
|
20
|
+
models_healthserverstatus.Status, PlainValidator(validate_open_enum(False))
|
|
19
21
|
]
|
|
20
22
|
|
|
21
|
-
start_time: Annotated[float, pydantic.Field(alias="startTime")]
|
|
22
|
-
|
|
23
23
|
role: Annotated[
|
|
24
|
-
Optional[
|
|
24
|
+
Optional[models_healthserverstatus.Role],
|
|
25
|
+
PlainValidator(validate_open_enum(False)),
|
|
25
26
|
] = None
|
|
26
27
|
|
|
27
28
|
|
|
28
29
|
@dataclass(unsafe_hash=True)
|
|
29
|
-
class
|
|
30
|
-
data:
|
|
30
|
+
class HealthServerStatusError(CriblControlPlaneError):
|
|
31
|
+
data: HealthServerStatusErrorData = field(hash=False)
|
|
31
32
|
|
|
32
33
|
def __init__(
|
|
33
34
|
self,
|
|
34
|
-
data:
|
|
35
|
+
data: HealthServerStatusErrorData,
|
|
35
36
|
raw_response: httpx.Response,
|
|
36
37
|
body: Optional[str] = None,
|
|
37
38
|
):
|