cribl-control-plane 0.2.0b6__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.0b6 → cribl_control_plane-0.3.0b12}/PKG-INFO +28 -10
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/README-PYPI.md +27 -9
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/pyproject.toml +1 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_version.py +4 -4
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/__init__.py +8 -5
- cribl_control_plane-0.2.0b6/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.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/groups_sdk.py +54 -30
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/health.py +22 -16
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/lakedatasets.py +28 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/__init__.py +188 -34
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/authtoken.py +4 -7
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/cacheconnection.py +20 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/configgroup.py +52 -19
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/configgroupcloud.py +11 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createconfiggroupbyproductop.py +19 -7
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createroutesappendbyidop.py +2 -2
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/cribllakedataset.py +15 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/cribllakedatasetupdate.py +15 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/datasetmetadata.py +11 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +11 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deleteoutputpqbyidop.py +2 -2
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +20 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +20 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getconfiggroupbyproductandidop.py +11 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +11 -0
- {cribl_control_plane-0.2.0b6 → 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.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/hbcriblinfo.py +11 -1
- cribl_control_plane-0.2.0b6/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.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputappscope.py +76 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputazureblob.py +29 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcollection.py +20 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputconfluentcloud.py +188 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcribl.py +20 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcriblhttp.py +58 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcribllakehttp.py +58 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcriblmetrics.py +20 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcribltcp.py +58 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputcrowdstrike.py +47 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputdatadogagent.py +58 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputdatagen.py +20 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputedgeprometheus.py +138 -37
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputelastic.py +108 -27
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputeventhub.py +176 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputexec.py +29 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputfile.py +40 -7
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputfirehose.py +58 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputgooglepubsub.py +29 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputgrafana.py +149 -32
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputhttp.py +58 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputhttpraw.py +58 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputjournalfiles.py +20 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputkafka.py +182 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputkinesis.py +65 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputkubeevents.py +20 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputkubelogs.py +29 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputkubemetrics.py +29 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputloki.py +67 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputmetrics.py +58 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputmodeldriventelemetry.py +58 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputmsk.py +74 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputnetflow.py +20 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputoffice365mgmt.py +56 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputoffice365msgtrace.py +56 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputoffice365service.py +56 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputopentelemetry.py +84 -16
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputprometheus.py +131 -37
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputprometheusrw.py +67 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputrawudp.py +20 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputs3.py +38 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputs3inventory.py +47 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsecuritylake.py +47 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsnmp.py +29 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsplunk.py +76 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsplunkhec.py +66 -16
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsplunksearch.py +56 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsqs.py +47 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsyslog.py +113 -32
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsystemmetrics.py +110 -9
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputsystemstate.py +29 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputtcp.py +77 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputtcpjson.py +67 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputwef.py +65 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputwindowsmetrics.py +101 -9
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputwineventlogs.py +52 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputwiz.py +38 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputwizwebhook.py +58 -17
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/inputzscalerhec.py +66 -16
- {cribl_control_plane-0.2.0b6 → 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.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listconfiggroupbyproductop.py +11 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/masterworkerentry.py +11 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/nodeprovidedinfo.py +4 -0
- {cribl_control_plane-0.2.0b6 → 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.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputazureblob.py +90 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputazuredataexplorer.py +430 -93
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputazureeventhub.py +267 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputazurelogs.py +105 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputchronicle.py +105 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputclickhouse.py +141 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputcloudwatch.py +96 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputconfluentcloud.py +292 -23
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputcriblhttp.py +123 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputcribllake.py +76 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputcribltcp.py +123 -22
- {cribl_control_plane-0.2.0b6 → 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.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdatadog.py +132 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdataset.py +123 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdiskspool.py +11 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdls3.py +117 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdynatracehttp.py +141 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdynatraceotlp.py +141 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputelastic.py +148 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputelasticcloud.py +130 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputexabeam.py +47 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputfilesystem.py +72 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgooglechronicle.py +148 -23
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgooglecloudlogging.py +115 -23
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgooglecloudstorage.py +108 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgooglepubsub.py +96 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgrafanacloud.py +244 -43
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputgraphite.py +96 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputhoneycomb.py +105 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputhumiohec.py +114 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputinfluxdb.py +114 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputkafka.py +283 -20
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputkinesis.py +121 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputloki.py +112 -20
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputminio.py +117 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputmsk.py +175 -20
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputnewrelic.py +123 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputnewrelicevents.py +115 -23
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputopentelemetry.py +159 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputprometheus.py +105 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputring.py +29 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputs3.py +117 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsecuritylake.py +85 -1
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsentinel.py +123 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsentineloneaisiem.py +124 -23
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputservicenow.py +150 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsignalfx.py +105 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsns.py +103 -20
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsplunk.py +141 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsplunkhec.py +198 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsplunklb.py +170 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsqs.py +112 -20
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputstatsd.py +96 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputstatsdext.py +96 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsumologic.py +105 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsyslog.py +238 -99
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputtcpjson.py +132 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputwavefront.py +105 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputwebhook.py +141 -22
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputxsiam.py +103 -20
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/resourcepolicy.py +11 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/runnablejobcollection.py +68 -9
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/runnablejobexecutor.py +32 -9
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/runnablejobscheduledsearch.py +23 -9
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateconfiggroupbyproductandidop.py +11 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py +11 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updatepacksop.py +0 -2
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/packs.py +4 -4
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/routes_sdk.py +6 -6
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/tokens.py +23 -15
- cribl_control_plane-0.2.0b6/src/cribl_control_plane/models/error.py +0 -16
- cribl_control_plane-0.2.0b6/src/cribl_control_plane/models/gethealthinfoop.py +0 -17
- cribl_control_plane-0.2.0b6/src/cribl_control_plane/models/jobstatus.py +0 -17
- cribl_control_plane-0.2.0b6/src/cribl_control_plane/models/outputdatabricks.py +0 -291
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/py.typed +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/__init__.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_hooks/__init__.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_hooks/clientcredentials.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_hooks/registration.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_hooks/sdkhooks.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/_hooks/types.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/acl.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/auth_sdk.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/basesdk.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/branches.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/commits.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/commits_files.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/configs_versions.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/destinations.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/destinations_pq.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/apierror.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/criblcontrolplaneerror.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/error.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/no_response_error.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/errors/responsevalidationerror.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/groups_configs.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/hectokens.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/httpclient.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/addhectokenrequest.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/branchinfo.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/cacheconnectionbackfillstatus.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/cloudprovider.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/commit.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/configgrouplookups.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createcribllakedatasetbylakeidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createinputhectokenbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createinputop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createoutputop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createoutputtestbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createpacksop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createpipelineop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createversioncommitop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createversionpushop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createversionrevertop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/createversionundoop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/criblevent.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/currentbranchresult.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/datasetmetadataruninfo.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deleteinputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deleteoutputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deletepacksbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deletepipelinebyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deployrequest.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/deployrequestlookups.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/difffiles.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/distributedsummary.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getinputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getmasterworkerentryop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getoutputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getoutputsamplesbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getpacksbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getpacksop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getpipelinebyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getroutesbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversionbranchop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversioncountop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversiondiffop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversionfilesop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversioninfoop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversionop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversionshowop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/getversionstatusop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitcommitparams.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitcommitsummary.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitcountresult.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitdiffresult.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitfile.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitfilesresponse.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitinfo.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitlogresult.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitrevertparams.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitrevertresult.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitshowresult.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/gitstatusresult.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/hbleaderinfo.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/heartbeatmetadata.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/input.py +15 -15
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/lakedatasetsearchconfig.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/lakehouseconnectiontype.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listinputop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listmasterworkerentryop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listoutputop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listpipelineop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/listroutesop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/logininfo.py +3 -3
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/lookupversions.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/nodeactiveupgradestatus.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/nodefailedupgradestatus.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/nodeskippedupgradestatus.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/nodeupgradestate.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/output.py +21 -21
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdefault.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputdevnull.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputnetflow.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputrouter.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsamplesresponse.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputsnmp.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputtestrequest.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/outputtestresponse.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/packinfo.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/packinstallinfo.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/packrequestbody_union.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/packupgraderequest.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/pipeline.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/pipelinefunctionconf.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/productscore.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/rbacresource.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/routeconf.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/routes.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/routesroute.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/runnablejob.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/schemeclientoauth.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/security.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/teamaccesscontrollist.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updatehectokenrequest.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateinputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateoutputbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updatepacksbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updatepipelinebyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/updateroutesbyidop.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/uploadpackresponse.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/useraccesscontrollist.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/models/workertypes.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/nodes.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/pipelines.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/py.typed +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/samples.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/sdk.py +2 -2
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/sdkconfiguration.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/sources.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/statuses.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/summaries.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/teams.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/types/__init__.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/types/basemodel.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/__init__.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/annotations.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/datetimes.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/enums.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/eventstreaming.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/forms.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/headers.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/logger.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/metadata.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/queryparams.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/requestbodies.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/retries.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/security.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/serializers.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/unmarshal_json_response.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/url.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/utils/values.py +0 -0
- {cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/versions.py +0 -0
- {cribl_control_plane-0.2.0b6 → 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
|
|
@@ -149,7 +149,10 @@ with CriblControlPlane(
|
|
|
149
149
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
150
150
|
"migration_query_id": "<id>",
|
|
151
151
|
"retention_in_days": 1466.58,
|
|
152
|
-
}, 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={
|
|
153
156
|
"datatypes": [
|
|
154
157
|
"<value 1>",
|
|
155
158
|
],
|
|
@@ -207,7 +210,10 @@ async def main():
|
|
|
207
210
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
208
211
|
"migration_query_id": "<id>",
|
|
209
212
|
"retention_in_days": 1466.58,
|
|
210
|
-
}, 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={
|
|
211
217
|
"datatypes": [
|
|
212
218
|
"<value 1>",
|
|
213
219
|
],
|
|
@@ -274,7 +280,10 @@ with CriblControlPlane(
|
|
|
274
280
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
275
281
|
"migration_query_id": "<id>",
|
|
276
282
|
"retention_in_days": 1466.58,
|
|
277
|
-
}, 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={
|
|
278
287
|
"datatypes": [
|
|
279
288
|
"<value 1>",
|
|
280
289
|
],
|
|
@@ -393,7 +402,7 @@ with CriblControlPlane(
|
|
|
393
402
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - List all Routes
|
|
394
403
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get a Routing table
|
|
395
404
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update a Route
|
|
396
|
-
* [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
|
|
397
406
|
|
|
398
407
|
### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
|
|
399
408
|
|
|
@@ -502,7 +511,10 @@ with CriblControlPlane(
|
|
|
502
511
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
503
512
|
"migration_query_id": "<id>",
|
|
504
513
|
"retention_in_days": 1466.58,
|
|
505
|
-
}, 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={
|
|
506
518
|
"datatypes": [
|
|
507
519
|
"<value 1>",
|
|
508
520
|
],
|
|
@@ -558,7 +570,10 @@ with CriblControlPlane(
|
|
|
558
570
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
559
571
|
"migration_query_id": "<id>",
|
|
560
572
|
"retention_in_days": 1466.58,
|
|
561
|
-
}, 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={
|
|
562
577
|
"datatypes": [
|
|
563
578
|
"<value 1>",
|
|
564
579
|
],
|
|
@@ -628,7 +643,10 @@ with CriblControlPlane(
|
|
|
628
643
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
629
644
|
"migration_query_id": "<id>",
|
|
630
645
|
"retention_in_days": 1466.58,
|
|
631
|
-
}, 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={
|
|
632
650
|
"datatypes": [
|
|
633
651
|
"<value 1>",
|
|
634
652
|
],
|
|
@@ -669,7 +687,7 @@ with CriblControlPlane(
|
|
|
669
687
|
### Error Classes
|
|
670
688
|
**Primary errors:**
|
|
671
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.
|
|
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`.
|
|
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`.
|
|
673
691
|
|
|
674
692
|
<details><summary>Less common errors (6)</summary>
|
|
675
693
|
|
|
@@ -682,7 +700,7 @@ with CriblControlPlane(
|
|
|
682
700
|
|
|
683
701
|
|
|
684
702
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
685
|
-
* [`
|
|
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.*
|
|
686
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.
|
|
687
705
|
|
|
688
706
|
</details>
|
|
@@ -131,7 +131,10 @@ with CriblControlPlane(
|
|
|
131
131
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
132
132
|
"migration_query_id": "<id>",
|
|
133
133
|
"retention_in_days": 1466.58,
|
|
134
|
-
}, 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={
|
|
135
138
|
"datatypes": [
|
|
136
139
|
"<value 1>",
|
|
137
140
|
],
|
|
@@ -189,7 +192,10 @@ async def main():
|
|
|
189
192
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
190
193
|
"migration_query_id": "<id>",
|
|
191
194
|
"retention_in_days": 1466.58,
|
|
192
|
-
}, 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={
|
|
193
199
|
"datatypes": [
|
|
194
200
|
"<value 1>",
|
|
195
201
|
],
|
|
@@ -256,7 +262,10 @@ with CriblControlPlane(
|
|
|
256
262
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
257
263
|
"migration_query_id": "<id>",
|
|
258
264
|
"retention_in_days": 1466.58,
|
|
259
|
-
}, 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={
|
|
260
269
|
"datatypes": [
|
|
261
270
|
"<value 1>",
|
|
262
271
|
],
|
|
@@ -375,7 +384,7 @@ with CriblControlPlane(
|
|
|
375
384
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - List all Routes
|
|
376
385
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get a Routing table
|
|
377
386
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update a Route
|
|
378
|
-
* [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
|
|
379
388
|
|
|
380
389
|
### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
|
|
381
390
|
|
|
@@ -484,7 +493,10 @@ with CriblControlPlane(
|
|
|
484
493
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
485
494
|
"migration_query_id": "<id>",
|
|
486
495
|
"retention_in_days": 1466.58,
|
|
487
|
-
}, 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={
|
|
488
500
|
"datatypes": [
|
|
489
501
|
"<value 1>",
|
|
490
502
|
],
|
|
@@ -540,7 +552,10 @@ with CriblControlPlane(
|
|
|
540
552
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
541
553
|
"migration_query_id": "<id>",
|
|
542
554
|
"retention_in_days": 1466.58,
|
|
543
|
-
}, 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={
|
|
544
559
|
"datatypes": [
|
|
545
560
|
"<value 1>",
|
|
546
561
|
],
|
|
@@ -610,7 +625,10 @@ with CriblControlPlane(
|
|
|
610
625
|
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
611
626
|
"migration_query_id": "<id>",
|
|
612
627
|
"retention_in_days": 1466.58,
|
|
613
|
-
}, 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={
|
|
614
632
|
"datatypes": [
|
|
615
633
|
"<value 1>",
|
|
616
634
|
],
|
|
@@ -651,7 +669,7 @@ with CriblControlPlane(
|
|
|
651
669
|
### Error Classes
|
|
652
670
|
**Primary errors:**
|
|
653
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.
|
|
654
|
-
* [`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`.
|
|
655
673
|
|
|
656
674
|
<details><summary>Less common errors (6)</summary>
|
|
657
675
|
|
|
@@ -664,7 +682,7 @@ with CriblControlPlane(
|
|
|
664
682
|
|
|
665
683
|
|
|
666
684
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
667
|
-
* [`
|
|
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.*
|
|
668
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.
|
|
669
687
|
|
|
670
688
|
</details>
|
{cribl_control_plane-0.2.0b6 → 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
|
):
|
{cribl_control_plane-0.2.0b6 → cribl_control_plane-0.3.0b12}/src/cribl_control_plane/groups_sdk.py
RENAMED
|
@@ -221,11 +221,14 @@ class GroupsSDK(BaseSDK):
|
|
|
221
221
|
cloud: Optional[
|
|
222
222
|
Union[models.ConfigGroupCloud, models.ConfigGroupCloudTypedDict]
|
|
223
223
|
] = None,
|
|
224
|
-
config_version: Optional[str] = None,
|
|
225
224
|
deploying_worker_count: Optional[float] = None,
|
|
226
225
|
description: Optional[str] = None,
|
|
227
|
-
estimated_ingest_rate: Optional[
|
|
228
|
-
|
|
226
|
+
estimated_ingest_rate: Optional[
|
|
227
|
+
models.GroupCreateRequestEstimatedIngestRate
|
|
228
|
+
] = None,
|
|
229
|
+
git: Optional[
|
|
230
|
+
Union[models.GroupCreateRequestGit, models.GroupCreateRequestGitTypedDict]
|
|
231
|
+
] = None,
|
|
229
232
|
incompatible_worker_count: Optional[float] = None,
|
|
230
233
|
inherits: Optional[str] = None,
|
|
231
234
|
is_fleet: Optional[bool] = None,
|
|
@@ -240,9 +243,10 @@ class GroupsSDK(BaseSDK):
|
|
|
240
243
|
name: Optional[str] = None,
|
|
241
244
|
on_prem: Optional[bool] = None,
|
|
242
245
|
provisioned: Optional[bool] = None,
|
|
246
|
+
source_group_id: Optional[str] = None,
|
|
243
247
|
streamtags: Optional[List[str]] = None,
|
|
244
248
|
tags: Optional[str] = None,
|
|
245
|
-
type_: Optional[models.
|
|
249
|
+
type_: Optional[models.GroupCreateRequestType] = None,
|
|
246
250
|
upgrade_version: Optional[str] = None,
|
|
247
251
|
worker_count: Optional[float] = None,
|
|
248
252
|
worker_remote_access: Optional[bool] = None,
|
|
@@ -255,13 +259,12 @@ class GroupsSDK(BaseSDK):
|
|
|
255
259
|
|
|
256
260
|
Create a new Worker Group or Edge Fleet for the specified Cribl product.
|
|
257
261
|
|
|
258
|
-
:param product: Name of the Cribl product to add the Worker Group or Edge Fleet to.
|
|
262
|
+
:param product: required Name of the Cribl product to add the Worker Group or Edge Fleet to.
|
|
259
263
|
:param id:
|
|
260
264
|
:param cloud:
|
|
261
|
-
:param config_version:
|
|
262
265
|
:param deploying_worker_count:
|
|
263
266
|
:param description:
|
|
264
|
-
:param estimated_ingest_rate:
|
|
267
|
+
:param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
|
|
265
268
|
:param git:
|
|
266
269
|
:param incompatible_worker_count:
|
|
267
270
|
:param inherits:
|
|
@@ -272,6 +275,7 @@ class GroupsSDK(BaseSDK):
|
|
|
272
275
|
:param name:
|
|
273
276
|
:param on_prem:
|
|
274
277
|
:param provisioned:
|
|
278
|
+
:param source_group_id:
|
|
275
279
|
:param streamtags:
|
|
276
280
|
:param tags:
|
|
277
281
|
:param type:
|
|
@@ -295,15 +299,16 @@ class GroupsSDK(BaseSDK):
|
|
|
295
299
|
|
|
296
300
|
request = models.CreateConfigGroupByProductRequest(
|
|
297
301
|
product=product,
|
|
298
|
-
|
|
302
|
+
group_create_request=models.GroupCreateRequest(
|
|
299
303
|
cloud=utils.get_pydantic_model(
|
|
300
304
|
cloud, Optional[models.ConfigGroupCloud]
|
|
301
305
|
),
|
|
302
|
-
config_version=config_version,
|
|
303
306
|
deploying_worker_count=deploying_worker_count,
|
|
304
307
|
description=description,
|
|
305
308
|
estimated_ingest_rate=estimated_ingest_rate,
|
|
306
|
-
git=utils.get_pydantic_model(
|
|
309
|
+
git=utils.get_pydantic_model(
|
|
310
|
+
git, Optional[models.GroupCreateRequestGit]
|
|
311
|
+
),
|
|
307
312
|
id=id,
|
|
308
313
|
incompatible_worker_count=incompatible_worker_count,
|
|
309
314
|
inherits=inherits,
|
|
@@ -316,6 +321,7 @@ class GroupsSDK(BaseSDK):
|
|
|
316
321
|
name=name,
|
|
317
322
|
on_prem=on_prem,
|
|
318
323
|
provisioned=provisioned,
|
|
324
|
+
source_group_id=source_group_id,
|
|
319
325
|
streamtags=streamtags,
|
|
320
326
|
tags=tags,
|
|
321
327
|
type=type_,
|
|
@@ -339,7 +345,11 @@ class GroupsSDK(BaseSDK):
|
|
|
339
345
|
http_headers=http_headers,
|
|
340
346
|
security=self.sdk_configuration.security,
|
|
341
347
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
342
|
-
request.
|
|
348
|
+
request.group_create_request,
|
|
349
|
+
False,
|
|
350
|
+
False,
|
|
351
|
+
"json",
|
|
352
|
+
models.GroupCreateRequest,
|
|
343
353
|
),
|
|
344
354
|
timeout_ms=timeout_ms,
|
|
345
355
|
)
|
|
@@ -392,11 +402,14 @@ class GroupsSDK(BaseSDK):
|
|
|
392
402
|
cloud: Optional[
|
|
393
403
|
Union[models.ConfigGroupCloud, models.ConfigGroupCloudTypedDict]
|
|
394
404
|
] = None,
|
|
395
|
-
config_version: Optional[str] = None,
|
|
396
405
|
deploying_worker_count: Optional[float] = None,
|
|
397
406
|
description: Optional[str] = None,
|
|
398
|
-
estimated_ingest_rate: Optional[
|
|
399
|
-
|
|
407
|
+
estimated_ingest_rate: Optional[
|
|
408
|
+
models.GroupCreateRequestEstimatedIngestRate
|
|
409
|
+
] = None,
|
|
410
|
+
git: Optional[
|
|
411
|
+
Union[models.GroupCreateRequestGit, models.GroupCreateRequestGitTypedDict]
|
|
412
|
+
] = None,
|
|
400
413
|
incompatible_worker_count: Optional[float] = None,
|
|
401
414
|
inherits: Optional[str] = None,
|
|
402
415
|
is_fleet: Optional[bool] = None,
|
|
@@ -411,9 +424,10 @@ class GroupsSDK(BaseSDK):
|
|
|
411
424
|
name: Optional[str] = None,
|
|
412
425
|
on_prem: Optional[bool] = None,
|
|
413
426
|
provisioned: Optional[bool] = None,
|
|
427
|
+
source_group_id: Optional[str] = None,
|
|
414
428
|
streamtags: Optional[List[str]] = None,
|
|
415
429
|
tags: Optional[str] = None,
|
|
416
|
-
type_: Optional[models.
|
|
430
|
+
type_: Optional[models.GroupCreateRequestType] = None,
|
|
417
431
|
upgrade_version: Optional[str] = None,
|
|
418
432
|
worker_count: Optional[float] = None,
|
|
419
433
|
worker_remote_access: Optional[bool] = None,
|
|
@@ -426,13 +440,12 @@ class GroupsSDK(BaseSDK):
|
|
|
426
440
|
|
|
427
441
|
Create a new Worker Group or Edge Fleet for the specified Cribl product.
|
|
428
442
|
|
|
429
|
-
:param product: Name of the Cribl product to add the Worker Group or Edge Fleet to.
|
|
443
|
+
:param product: required Name of the Cribl product to add the Worker Group or Edge Fleet to.
|
|
430
444
|
:param id:
|
|
431
445
|
:param cloud:
|
|
432
|
-
:param config_version:
|
|
433
446
|
:param deploying_worker_count:
|
|
434
447
|
:param description:
|
|
435
|
-
:param estimated_ingest_rate:
|
|
448
|
+
:param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
|
|
436
449
|
:param git:
|
|
437
450
|
:param incompatible_worker_count:
|
|
438
451
|
:param inherits:
|
|
@@ -443,6 +456,7 @@ class GroupsSDK(BaseSDK):
|
|
|
443
456
|
:param name:
|
|
444
457
|
:param on_prem:
|
|
445
458
|
:param provisioned:
|
|
459
|
+
:param source_group_id:
|
|
446
460
|
:param streamtags:
|
|
447
461
|
:param tags:
|
|
448
462
|
:param type:
|
|
@@ -466,15 +480,16 @@ class GroupsSDK(BaseSDK):
|
|
|
466
480
|
|
|
467
481
|
request = models.CreateConfigGroupByProductRequest(
|
|
468
482
|
product=product,
|
|
469
|
-
|
|
483
|
+
group_create_request=models.GroupCreateRequest(
|
|
470
484
|
cloud=utils.get_pydantic_model(
|
|
471
485
|
cloud, Optional[models.ConfigGroupCloud]
|
|
472
486
|
),
|
|
473
|
-
config_version=config_version,
|
|
474
487
|
deploying_worker_count=deploying_worker_count,
|
|
475
488
|
description=description,
|
|
476
489
|
estimated_ingest_rate=estimated_ingest_rate,
|
|
477
|
-
git=utils.get_pydantic_model(
|
|
490
|
+
git=utils.get_pydantic_model(
|
|
491
|
+
git, Optional[models.GroupCreateRequestGit]
|
|
492
|
+
),
|
|
478
493
|
id=id,
|
|
479
494
|
incompatible_worker_count=incompatible_worker_count,
|
|
480
495
|
inherits=inherits,
|
|
@@ -487,6 +502,7 @@ class GroupsSDK(BaseSDK):
|
|
|
487
502
|
name=name,
|
|
488
503
|
on_prem=on_prem,
|
|
489
504
|
provisioned=provisioned,
|
|
505
|
+
source_group_id=source_group_id,
|
|
490
506
|
streamtags=streamtags,
|
|
491
507
|
tags=tags,
|
|
492
508
|
type=type_,
|
|
@@ -510,7 +526,11 @@ class GroupsSDK(BaseSDK):
|
|
|
510
526
|
http_headers=http_headers,
|
|
511
527
|
security=self.sdk_configuration.security,
|
|
512
528
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
513
|
-
request.
|
|
529
|
+
request.group_create_request,
|
|
530
|
+
False,
|
|
531
|
+
False,
|
|
532
|
+
"json",
|
|
533
|
+
models.GroupCreateRequest,
|
|
514
534
|
),
|
|
515
535
|
timeout_ms=timeout_ms,
|
|
516
536
|
)
|
|
@@ -757,8 +777,10 @@ class GroupsSDK(BaseSDK):
|
|
|
757
777
|
config_version: Optional[str] = None,
|
|
758
778
|
deploying_worker_count: Optional[float] = None,
|
|
759
779
|
description: Optional[str] = None,
|
|
760
|
-
estimated_ingest_rate: Optional[models.
|
|
761
|
-
git: Optional[
|
|
780
|
+
estimated_ingest_rate: Optional[models.ConfigGroupEstimatedIngestRate] = None,
|
|
781
|
+
git: Optional[
|
|
782
|
+
Union[models.ConfigGroupGit, models.ConfigGroupGitTypedDict]
|
|
783
|
+
] = None,
|
|
762
784
|
incompatible_worker_count: Optional[float] = None,
|
|
763
785
|
inherits: Optional[str] = None,
|
|
764
786
|
is_fleet: Optional[bool] = None,
|
|
@@ -795,7 +817,7 @@ class GroupsSDK(BaseSDK):
|
|
|
795
817
|
:param config_version:
|
|
796
818
|
:param deploying_worker_count:
|
|
797
819
|
:param description:
|
|
798
|
-
:param estimated_ingest_rate:
|
|
820
|
+
:param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
|
|
799
821
|
:param git:
|
|
800
822
|
:param incompatible_worker_count:
|
|
801
823
|
:param inherits:
|
|
@@ -838,7 +860,7 @@ class GroupsSDK(BaseSDK):
|
|
|
838
860
|
deploying_worker_count=deploying_worker_count,
|
|
839
861
|
description=description,
|
|
840
862
|
estimated_ingest_rate=estimated_ingest_rate,
|
|
841
|
-
git=utils.get_pydantic_model(git, Optional[models.
|
|
863
|
+
git=utils.get_pydantic_model(git, Optional[models.ConfigGroupGit]),
|
|
842
864
|
id=id,
|
|
843
865
|
incompatible_worker_count=incompatible_worker_count,
|
|
844
866
|
inherits=inherits,
|
|
@@ -931,8 +953,10 @@ class GroupsSDK(BaseSDK):
|
|
|
931
953
|
config_version: Optional[str] = None,
|
|
932
954
|
deploying_worker_count: Optional[float] = None,
|
|
933
955
|
description: Optional[str] = None,
|
|
934
|
-
estimated_ingest_rate: Optional[models.
|
|
935
|
-
git: Optional[
|
|
956
|
+
estimated_ingest_rate: Optional[models.ConfigGroupEstimatedIngestRate] = None,
|
|
957
|
+
git: Optional[
|
|
958
|
+
Union[models.ConfigGroupGit, models.ConfigGroupGitTypedDict]
|
|
959
|
+
] = None,
|
|
936
960
|
incompatible_worker_count: Optional[float] = None,
|
|
937
961
|
inherits: Optional[str] = None,
|
|
938
962
|
is_fleet: Optional[bool] = None,
|
|
@@ -969,7 +993,7 @@ class GroupsSDK(BaseSDK):
|
|
|
969
993
|
:param config_version:
|
|
970
994
|
:param deploying_worker_count:
|
|
971
995
|
:param description:
|
|
972
|
-
:param estimated_ingest_rate:
|
|
996
|
+
:param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
|
|
973
997
|
:param git:
|
|
974
998
|
:param incompatible_worker_count:
|
|
975
999
|
:param inherits:
|
|
@@ -1012,7 +1036,7 @@ class GroupsSDK(BaseSDK):
|
|
|
1012
1036
|
deploying_worker_count=deploying_worker_count,
|
|
1013
1037
|
description=description,
|
|
1014
1038
|
estimated_ingest_rate=estimated_ingest_rate,
|
|
1015
|
-
git=utils.get_pydantic_model(git, Optional[models.
|
|
1039
|
+
git=utils.get_pydantic_model(git, Optional[models.ConfigGroupGit]),
|
|
1016
1040
|
id=id,
|
|
1017
1041
|
incompatible_worker_count=incompatible_worker_count,
|
|
1018
1042
|
inherits=inherits,
|