cribl-control-plane 0.4.0rc16__tar.gz → 0.5.0rc14__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.5.0rc14/PKG-INFO +834 -0
- cribl_control_plane-0.5.0rc14/README-PYPI.md +814 -0
- cribl_control_plane-0.5.0rc14/pyproject.toml +58 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/_version.py +15 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/collectors_sdk.py +993 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/commits.py +1403 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/cribl.py +561 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/destinations.py +954 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/errors/healthserverstatus_error.py +32 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/files.py +391 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/functions.py +367 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/groups_sdk.py +1558 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/hectokens.py +503 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/lakedatasets.py +1233 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/__init__.py +14368 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/acknowledgmentsoptions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/acknowledgmentsoptions1.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/addhectokenrequest.py +33 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/additionalpropertiestypejobinfostats.py +15 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/additionalpropertiestypepipelineconfgroups.py +24 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/apitypesystemsettingsconf.py +75 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationmethodoptions.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationmethodoptions1.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationmethodoptions2.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationmethodoptionsauth.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationmethodoptionsauthtokensitems.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationmethodoptionss3collectorconf.py +18 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationmethodoptionssasl.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationmethodoptionssasl1.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationmethodoptionssasl2.py +11 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationprotocoloptionsv3user.py +22 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationtype.py +135 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationtype1.py +145 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationtypeoptions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationtypeoptionslokiauth.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationtypeoptionsprometheusauth.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authenticationtypeoptionsprometheusauth1.py +18 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/authtypekafkaschemaregistry.py +26 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/awstypeheartbeatmetadata.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/azureblobcollectorconf.py +533 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/azuretypeheartbeatmetadata.py +49 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/backpressurebehavioroptions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/backpressurebehavioroptions1.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/cacheconnection.py +64 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/certificatetypeazureblobauthtypeclientcert.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/checkpointingtype.py +21 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/collector.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/collectorazureblob.py +33 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/collectorcribllake.py +33 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/collectordatabase.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/collectorfilesystem.py +33 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/collectorgooglecloudstorage.py +33 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/collectorhealthcheck.py +33 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/collectorrest.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/collectors3.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/collectorscript.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/collectorsplunk.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/compressionleveloptions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/compressionoptions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/compressionoptions1.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/compressionoptions2.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/compressionoptions3.py +20 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/compressionoptions4.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/compressionoptions5.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/compressionoptionspersistence.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/compressionoptionspq.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/configgroup.py +122 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/configgroupcloud.py +58 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/countedfunctionresponse.py +20 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/countedpackuninstallinfo.py +20 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/countedsavedjob.py +20 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/createconfiggroupbyproductop.py +40 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/createinputop.py +46535 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/createoutputop.py +25052 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/createsavedjobop.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/cribllakecollectorconf.py +15 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/cribllakedataset.py +83 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/cribllakedatasetupdate.py +83 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/customlogotypesystemsettingsconf.py +23 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/databasecollectorconf.py +75 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/datacompressionformatoptionspersistence.py +10 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/dataformatoptions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/datapageversionoptions.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/datasetmetadata.py +50 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +38 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/deletesavedjobbyidop.py +42 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/destinationprotocoloptions.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/diskspaceprotectionoptions.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/diskspoolingtype.py +51 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/distributedsummary.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/estimatedingestrateoptionsconfiggroup.py +28 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/eventbreakerrulefields.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/executorspecificsettingstypesavedjobexecutorexecutor.py +13 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/executortypesavedjobexecutor.py +31 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/failedrequestloggingmodeoptions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/filestypegitcommitsummary.py +23 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/filesystemcollectorconf.py +54 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/formatoptionscribllakedataset.py +11 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionaggregatemetrics.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionaggregation.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionautotimestamp.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functioncef.py +66 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionchain.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionclone.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functioncode.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functioncomment.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaaggregatemetrics.py +148 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaaggregation.py +102 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaautotimestamp.py +113 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemacef.py +83 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemachain.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaclone.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemacode.py +38 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemacomment.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemadistinct.py +41 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemadnslookup.py +184 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemadrop.py +13 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemadropdimensions.py +31 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemadynamicsampling.py +64 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaeval.py +44 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaeventbreaker.py +46 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaeventstats.py +34 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaexternaldata.py +13 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaflatten.py +31 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemafoldkeys.py +31 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemagenstats.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemageoip.py +66 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemagrok.py +38 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemahandlebars.py +61 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemajoin.py +55 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemajsonunroll.py +21 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemalakeexport.py +44 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemalimit.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemalocalsearchdatatypeparser.py +13 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemalocalsearchrulesetrunner.py +61 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemalookup.py +92 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemamask.py +51 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemamvexpand.py +71 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemamvpull.py +45 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemanotificationpolicies.py +122 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemanotifications.py +26 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemanotify.py +141 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemanumerify.py +57 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaotlplogs.py +24 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaotlpmetrics.py +48 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaotlptraces.py +41 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemapack.py +24 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemapivot.py +31 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemapublishmetrics.py +93 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaredis.py +113 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaregexextract.py +55 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaregexfilter.py +38 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemarename.py +49 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemarollupmetrics.py +54 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemasampling.py +32 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemasend.py +80 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemasensitivedatascanner.py +75 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaserde.py +80 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaserialize.py +75 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemasidlookup.py +34 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemasnmptrapserialize.py +64 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemasort.py +41 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemastore.py +75 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemasuppress.py +57 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschematee.py +32 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschematrimtimestamp.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaunion.py +22 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaunroll.py +22 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemawindow.py +40 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionconfschemaxmlunroll.py +34 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functiondistinct.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functiondnslookup.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functiondrop.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functiondropdimensions.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functiondynamicsampling.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functioneval.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functioneventbreaker.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functioneventstats.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionexternaldata.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionflatten.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionfoldkeys.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functiongenstats.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functiongeoip.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functiongrok.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionhandlebars.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionjoin.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionjsonunroll.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionlakeexport.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionlimit.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionlocalsearchdatatypeparser.py +70 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionlocalsearchrulesetrunner.py +70 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionlookup.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionmask.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionmvexpand.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionmvpull.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionnotificationpolicies.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionnotifications.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionnotify.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionnumerify.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionotlplogs.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionotlpmetrics.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionotlptraces.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionpack.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionpivot.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionpublishmetrics.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionredis.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionregexextract.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionregexfilter.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionrename.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionresponse.py +242 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionrollupmetrics.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionsampling.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionsend.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionsensitivedatascanner.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionserde.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionserialize.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionsidlookup.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionsnmptrapserialize.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionsort.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionstore.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionsuppress.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functiontee.py +66 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functiontrimtimestamp.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionunion.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionunroll.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionwindow.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/functionxmlunroll.py +69 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +61 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +61 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/getconfiggroupbyproductandidop.py +51 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +38 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +80 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/getfunctionsbyidop.py +18 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/getsavedjobbyidop.py +33 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/getsavedjobop.py +40 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/getsummaryop.py +32 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/getversioncountop.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/getversionfilesop.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/gitcommitsummary.py +55 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/gitinfo.py +29 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/gitrevertresult.py +35 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/gittypeconfiggroup.py +24 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/googleauthenticationmethodoptions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/googlecloudstoragecollectorconf.py +362 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/groupcreaterequest.py +122 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/hbcriblinfo.py +102 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/healthcheckcollectorconf.py +2534 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/healthserverstatus.py +53 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/heartbeatmetadata.py +45 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/hiddendefaultbreakersoptionsdatabasecollectorconf.py +11 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/hostostypeheartbeatmetadata.py +23 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/input.py +207 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputappscope.py +869 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputazureblob.py +819 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputcloudflarehec.py +907 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputcollection.py +384 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputconfluentcloud.py +941 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputcribl.py +288 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputcriblhttp.py +669 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputcribllakehttp.py +841 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputcriblmetrics.py +324 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputcribltcp.py +529 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputcrowdstrike.py +1166 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputdatadogagent.py +705 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputdatagen.py +303 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputedgeprometheus.py +1434 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputelastic.py +1039 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputeventhub.py +925 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputexec.py +530 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputfile.py +762 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputfirehose.py +668 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputgooglepubsub.py +627 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputgrafana_union.py +773 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputhttp.py +796 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputhttpraw.py +812 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputjournalfiles.py +468 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputkafka.py +941 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputkinesis.py +1077 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputkubeevents.py +297 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputkubelogs.py +448 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputkubemetrics.py +380 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputloki.py +1037 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputmetrics.py +464 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputmodeldriventelemetry.py +388 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputmsk.py +1318 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputnetflow.py +524 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputoffice365mgmt.py +771 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputoffice365msgtrace.py +1049 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputoffice365service.py +723 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputopentelemetry.py +1227 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputprometheus.py +1428 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputprometheusrw.py +1043 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputrawudp.py +456 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputs3.py +1193 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputs3inventory.py +1286 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputsecuritylake.py +1222 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputsnmp.py +571 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputsplunk.py +823 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputsplunkhec.py +1025 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputsplunksearch.py +1320 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputsqs.py +895 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputsyslog_union.py +429 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputsystemmetrics.py +752 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputsystemstate.py +593 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputtcp.py +713 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputtcpjson.py +641 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputtypesavedjobcollection.py +83 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputwef.py +1033 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputwindowsmetrics.py +679 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputwineventlogs.py +596 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputwiz.py +754 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputwizwebhook.py +812 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/inputzscalerhec.py +875 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypeadd.py +19 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypeauthtokens.py +25 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypeauthtokens1.py +23 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypeauthtokensext.py +28 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypeconnections.py +17 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypeextrahttpheaders.py +17 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypehealthcheckauthenticationloginauthrequestheaders.py +20 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypehealthcheckauthenticationoauthauthrequestheaders.py +20 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypehealthcheckauthenticationoauthauthrequestparams.py +20 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypehosts.py +48 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypekeyvaluemetadata.py +17 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypelabels.py +17 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypeloglabels.py +21 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypenotificationmetadata.py +18 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypeoauthheaders.py +20 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypeoauthparams.py +20 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypepoliciesitemstemplatetargetpairs.py +21 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypeprocesssets.py +23 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstyperesponseretrysettings.py +34 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstyperestcollectmethodgetcollectrequestparams.py +18 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstyperules.py +22 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypesasloauthparams.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypesaslsaslextensions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypesearchfilter.py +22 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypesystemsettingsconfsupportfeatureflagoverrides.py +17 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/itemstypeurls.py +21 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/jobinfo.py +32 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/jobstatus.py +46 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/jobtypeoptionssavedjobcollection.py +11 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/kafkaschemaregistryauthenticationtype.py +57 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/kafkaschemaregistryauthenticationtype1.py +71 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/kubetypeheartbeatmetadata.py +33 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/listconfiggroupbyproductop.py +44 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/logleveloptionscontentconfigitems.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/logleveloptionssavedjobcollectionschedulerun.py +17 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/masterworkerentry.py +87 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/maximumtlsversionoptionskafkaschemaregistrytls.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/maxs2sversionoptions.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/messageformatoptions.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/methodoptions.py +13 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/metricsstore.py +13 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/microsoftentraidauthenticationendpointoptionssasl.py +15 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/minimumtlsversionoptionskafkaschemaregistrytls.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/modeoptions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/modeoptionshost.py +18 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/modeoptionsinstancesettingsschema.py +15 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/modeoptionspq.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/nestedfieldserializationoptions.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/nodeprovidedinfo.py +118 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/nodeupgradestatus.py +68 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/objectacloptions.py +24 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/objectacloptions1.py +22 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/otlpversionoptions.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/otlpversionoptions1.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/output.py +249 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputazureblob.py +481 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputazuredataexplorer.py +819 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputazureeventhub.py +306 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputazurelogs.py +356 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputchronicle.py +407 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputclickhouse.py +570 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputcloudflarer2.py +503 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputcloudwatch.py +294 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputconfluentcloud.py +345 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputcriblhttp.py +382 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputcribllake.py +405 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputcriblsearchengine.py +382 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputcribltcp.py +340 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputcrowdstrikenextgensiem.py +356 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputdatabricks.py +407 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputdatadog.py +475 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputdataset.py +424 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputdiskspool.py +91 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputdls3.py +557 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputdynatracehttp.py +446 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputdynatraceotlp.py +450 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputelastic.py +495 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputelasticcloud.py +382 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputexabeam.py +292 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputfilesystem.py +363 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputgooglechronicle.py +491 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputgooglecloudlogging.py +566 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputgooglecloudstorage.py +495 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputgooglepubsub.py +270 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputgrafanacloud_union.py +701 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputgraphite.py +245 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputhoneycomb.py +333 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputhumiohec.py +353 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputinfluxdb.py +477 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputkafka.py +345 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputkinesis.py +348 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputloki.py +402 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputmicrosoftfabric.py +420 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputminio.py +514 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputmodeoptionssplunkcollectorconf.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputmsk.py +441 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputnetflow.py +91 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputnewrelic.py +397 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputnewrelicevents.py +356 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputopentelemetry.py +516 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputprometheus.py +419 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputring.py +131 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputs3.py +557 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputsecuritylake.py +499 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputsentinel.py +472 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputsentineloneaisiem.py +472 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputservicenow.py +424 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputsignalfx.py +336 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputsns.py +303 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputsplunk.py +323 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputsplunkhec.py +408 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputsplunklb.py +505 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputsqs.py +357 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputstatsd.py +245 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputstatsdext.py +245 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputsumologic.py +350 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputsyslog.py +446 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputtcpjson.py +321 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputtestrequest.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputwavefront.py +336 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputwebhook.py +579 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/outputxsiam.py +390 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/ownertypeheartbeatmetadatakube.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/packinfo.py +63 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/packinstallinfo.py +66 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/packrequestbody_union.py +110 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/packuninstallinfo.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/parquetversionoptions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipeline.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipeline_input.py +59 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionaggregatemetrics.py +190 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionaggregation.py +147 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionautotimestamp.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctioncef.py +96 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionchain.py +62 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionclone.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctioncode.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctioncomment.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionconf.py +350 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionconf_input.py +353 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctiondistinct.py +86 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctiondnslookup.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctiondrop.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctiondropdimensions.py +74 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctiondynamicsampling.py +108 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctioneval.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctioneventbreaker.py +90 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctioneventstats.py +79 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionexternaldata.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionflatten.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionfoldkeys.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctiongenstats.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctiongeoip.py +109 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctiongrok.py +83 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionhandlebars.py +104 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionjoin.py +100 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionjsonunroll.py +67 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionlakeexport.py +89 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionlimit.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionlocalsearchdatatypeparser.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionlocalsearchrulesetrunner.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionlookup.py +136 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionmask.py +96 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionmvexpand.py +111 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionmvpull.py +86 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionnotificationpolicies.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionnotifications.py +72 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionnotify.py +180 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionnumerify.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionotlplogs.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionotlpmetrics.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionotlptraces.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionpack.py +67 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionpivot.py +72 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionpublishmetrics.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionredis.py +157 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionregexextract.py +100 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionregexfilter.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionrename.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionrollupmetrics.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionsampling.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionsend.py +124 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionsensitivedatascanner.py +120 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionserde.py +124 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionserialize.py +117 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionsidlookup.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionsnmptrapserialize.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionsort.py +84 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionstore.py +120 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionsuppress.py +102 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctiontee.py +77 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctiontrimtimestamp.py +56 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionunion.py +67 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionunroll.py +67 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionwindow.py +83 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pipelinefunctionxmlunroll.py +79 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/pqtype.py +88 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/preprocesstypesavedjobcollectioninput.py +24 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/processtype.py +17 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/prometheusauthtype.py +59 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/protocoloptions.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/protocoloptionstargetsitems.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/proxytypesystemsettingsconf.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/queuefullbehavioroptions.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/recorddataformatoptions.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/recorddataformatoptions1.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/recordtypeoptions.py +13 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/regionoptions.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/requestformatoptions.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/resourcepolicy.py +35 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/restcollectorconf.py +5351 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/retryrulestype.py +74 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/retryrulestype1.py +74 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/retrytypeoptionshealthcheckcollectorconfretryrules.py +18 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/routes.py +59 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/runnablejobcollection.py +293 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/runnablejobexecutor.py +134 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/runnablejobscheduledsearch.py +85 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/s3collectorconf.py +1020 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/saslmechanismoptionssasl.py +16 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/saslmechanismoptionssasl1.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/savedjob.py +26 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/savedjobcollection.py +100 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/savedjobexecutor.py +87 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/savedjobscheduledsearch.py +85 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/scheduletyperunnablejobcollection.py +177 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/scheduletypesavedjobcollection.py +191 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/scriptcollectorconf.py +47 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/serversideencryptionforuploadedobjectsoptions.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/serversideencryptionoptions.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/shutdowntypesystemsettingsconf.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/signatureversionoptions.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/signatureversionoptions1.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/signatureversionoptions2.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/signatureversionoptions3.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/signatureversionoptions4.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/signatureversionoptions5.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/signatureversionoptionss3collectorconf.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/socketstypesystemsettingsconf.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/splunkcollectorconf.py +1614 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/ssltypesystemsettingsconfapi.py +27 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/storageclassoptions.py +26 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/storageclassoptions1.py +18 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/storageclassoptions2.py +14 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/subscriptionplanoptions.py +18 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/supporttypesystemsettingsconf.py +24 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/systemsettingsconf.py +108 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/systemtypesystemsettingsconf.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/tagafterprocessingoptions.py +10 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/tagstypepackinstallinfo.py +24 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/timeoutretrysettingstype.py +34 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/tlsoptionshostsitems.py +12 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/tlssettingsclientsidetype.py +22 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/tlssettingsclientsidetype1.py +96 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/tlssettingsclientsidetype2.py +85 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/tlssettingsclientsidetype3.py +91 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/tlssettingsclientsidetypekafkaschemaregistry.py +96 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/tlssettingsserversidetype.py +99 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/typeoptions.py +26 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/typeoptionsconfiggroup.py +13 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/typeoptionssavedjobcollectioninput.py +9 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/updateconfiggroupbyproductandidop.py +50 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py +47 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/updatehectokenrequest.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/updatepipelinebyidop.py +30 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/updatesavedjobbyidop.py +42 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/upgradeoptionssystemsettingsconfsystem.py +10 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/models/workerstypesystemsettingsconf.py +46 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/packs.py +1190 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/pipelines.py +953 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/pq.py +379 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/routes_sdk.py +809 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/samples.py +407 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/sdk.py +212 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/sources.py +951 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/types/basemodel.py +77 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/utils/__init__.py +197 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/utils/enums.py +134 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/utils/requestbodies.py +66 -0
- cribl_control_plane-0.5.0rc14/src/cribl_control_plane/utils/serializers.py +229 -0
- cribl_control_plane-0.4.0rc16/PKG-INFO +0 -821
- cribl_control_plane-0.4.0rc16/README-PYPI.md +0 -801
- cribl_control_plane-0.4.0rc16/pyproject.toml +0 -58
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/_version.py +0 -17
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/commits.py +0 -1403
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/commits_files.py +0 -391
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/cribl.py +0 -487
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/destinations.py +0 -954
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/destinations_pq.py +0 -379
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/errors/healthserverstatus_error.py +0 -41
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/groups_sdk.py +0 -1558
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/hectokens.py +0 -491
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/lakedatasets.py +0 -1197
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/__init__.py +0 -9659
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/addhectokenrequest.py +0 -34
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/cacheconnection.py +0 -72
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/configgroup.py +0 -172
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/configgroupcloud.py +0 -62
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/createconfiggroupbyproductop.py +0 -46
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/criblevent.py +0 -29
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/cribllakedataset.py +0 -94
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/cribllakedatasetupdate.py +0 -95
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/datasetmetadata.py +0 -55
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +0 -43
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/distributedsummary.py +0 -69
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +0 -63
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +0 -63
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/getconfiggroupbyproductandidop.py +0 -53
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +0 -43
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +0 -21
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/getsummaryop.py +0 -37
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/getversioncountop.py +0 -31
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/getversionfilesop.py +0 -31
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/gitcommitsummary.py +0 -68
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/gitinfo.py +0 -34
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/gitrevertresult.py +0 -48
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/groupcreaterequest.py +0 -172
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/hbcriblinfo.py +0 -115
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/healthserverstatus.py +0 -55
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/heartbeatmetadata.py +0 -117
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/input.py +0 -207
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputappscope.py +0 -524
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputazureblob.py +0 -353
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputcloudflarehec.py +0 -518
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputcollection.py +0 -242
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputconfluentcloud.py +0 -802
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputcribl.py +0 -201
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputcriblhttp.py +0 -417
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputcribllakehttp.py +0 -500
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputcriblmetrics.py +0 -211
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputcribltcp.py +0 -382
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputcrowdstrike.py +0 -483
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputdatadogagent.py +0 -422
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputdatagen.py +0 -216
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputedgeprometheus.py +0 -677
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputelastic.py +0 -599
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputeventhub.py +0 -554
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputexec.py +0 -258
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputfile.py +0 -318
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputfirehose.py +0 -399
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputgooglepubsub.py +0 -302
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputgrafana.py +0 -1399
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputhttp.py +0 -461
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputhttpraw.py +0 -465
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputjournalfiles.py +0 -244
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputkafka.py +0 -792
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputkinesis.py +0 -455
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputkubeevents.py +0 -218
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputkubelogs.py +0 -301
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputkubemetrics.py +0 -278
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputloki.py +0 -535
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputmetrics.py +0 -348
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputmodeldriventelemetry.py +0 -336
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputmsk.py +0 -749
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputnetflow.py +0 -260
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputoffice365mgmt.py +0 -463
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputoffice365msgtrace.py +0 -526
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputoffice365service.py +0 -454
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputopentelemetry.py +0 -605
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputprometheus.py +0 -581
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputprometheusrw.py +0 -537
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputrawudp.py +0 -243
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputs3.py +0 -480
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputs3inventory.py +0 -513
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputsecuritylake.py +0 -498
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputsnmp.py +0 -352
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputsplunk.py +0 -468
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputsplunkhec.py +0 -549
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputsplunksearch.py +0 -612
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputsqs.py +0 -386
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputsyslog.py +0 -877
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputsystemmetrics.py +0 -679
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputsystemstate.py +0 -462
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputtcp.py +0 -436
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputtcpjson.py +0 -401
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputwef.py +0 -604
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputwindowsmetrics.py +0 -590
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputwineventlogs.py +0 -294
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputwiz.py +0 -486
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputwizwebhook.py +0 -466
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/inputzscalerhec.py +0 -510
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/jobinfo.py +0 -34
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/jobstatus.py +0 -48
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/listconfiggroupbyproductop.py +0 -46
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/masterworkerentry.py +0 -91
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/nodeprovidedinfo.py +0 -186
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/nodeupgradestatus.py +0 -76
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/output.py +0 -240
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputazureblob.py +0 -592
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputazuredataexplorer.py +0 -1037
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputazureeventhub.py +0 -581
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputazurelogs.py +0 -482
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputchronicle.py +0 -532
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputclickhouse.py +0 -784
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputcloudflarer2.py +0 -632
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputcloudwatch.py +0 -358
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputconfluentcloud.py +0 -889
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputcriblhttp.py +0 -633
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputcribllake.py +0 -506
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputcribltcp.py +0 -525
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputcrowdstrikenextgensiem.py +0 -516
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputdatabricks.py +0 -501
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputdatadog.py +0 -612
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputdataset.py +0 -561
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputdiskspool.py +0 -99
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputdls3.py +0 -723
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputdynatracehttp.py +0 -593
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputdynatraceotlp.py +0 -625
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputelastic.py +0 -638
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputelasticcloud.py +0 -526
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputexabeam.py +0 -362
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputfilesystem.py +0 -457
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputgooglechronicle.py +0 -631
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputgooglecloudlogging.py +0 -670
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputgooglecloudstorage.py +0 -645
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputgooglepubsub.py +0 -338
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputgrafanacloud.py +0 -1279
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputgraphite.py +0 -309
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputhoneycomb.py +0 -465
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputhumiohec.py +0 -494
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputinfluxdb.py +0 -634
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputkafka.py +0 -873
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputkinesis.py +0 -424
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputloki.py +0 -544
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputmicrosoftfabric.py +0 -540
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputminio.py +0 -669
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputmsk.py +0 -830
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputnetflow.py +0 -77
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputnewrelic.py +0 -541
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputnewrelicevents.py +0 -507
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputopentelemetry.py +0 -828
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputprometheus.py +0 -581
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputring.py +0 -151
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputs3.py +0 -719
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputsecuritylake.py +0 -630
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputsentinel.py +0 -602
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputsentineloneaisiem.py +0 -617
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputservicenow.py +0 -690
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputsignalfx.py +0 -465
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputsns.py +0 -368
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputsplunk.py +0 -515
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputsplunkhec.py +0 -623
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputsplunklb.py +0 -731
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputsqs.py +0 -431
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputstatsd.py +0 -308
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputstatsdext.py +0 -309
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputsumologic.py +0 -476
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputsyslog.py +0 -653
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputtcpjson.py +0 -535
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputtestrequest.py +0 -15
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputwavefront.py +0 -465
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputwebhook.py +0 -831
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/outputxsiam.py +0 -511
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/packinfo.py +0 -76
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/packinstallinfo.py +0 -79
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/packrequestbody_union.py +0 -140
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/pipeline.py +0 -70
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/pipelinefunctionconf.py +0 -53
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/resourcepolicy.py +0 -37
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/routes.py +0 -73
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/runnablejobcollection.py +0 -613
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/runnablejobexecutor.py +0 -340
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/runnablejobscheduledsearch.py +0 -258
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/systemsettingsconf.py +0 -289
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/updateconfiggroupbyproductandidop.py +0 -56
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py +0 -53
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/updatehectokenrequest.py +0 -31
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/models/updatepipelinebyidop.py +0 -29
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/packs.py +0 -1190
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/pipelines.py +0 -953
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/routes_sdk.py +0 -801
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/samples.py +0 -407
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/sdk.py +0 -204
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/sources.py +0 -951
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/types/basemodel.py +0 -39
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/utils/__init__.py +0 -200
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/utils/enums.py +0 -74
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/utils/requestbodies.py +0 -66
- cribl_control_plane-0.4.0rc16/src/cribl_control_plane/utils/serializers.py +0 -249
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/LICENSE +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/py.typed +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/__init__.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/_hooks/__init__.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/_hooks/clientcredentials.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/_hooks/registration.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/_hooks/sdkhooks.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/_hooks/types.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/acl.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/auth_sdk.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/basesdk.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/branches.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/configs_versions.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/errors/__init__.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/errors/apierror.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/errors/criblcontrolplaneerror.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/errors/error.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/errors/no_response_error.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/errors/responsevalidationerror.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/groups_configs.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/health.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/httpclient.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/authtoken.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/backupssettings_union.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/branchinfo.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/cacheconnectionbackfillstatus.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/cloudprovider.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/commit.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/configgrouplookups.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedbranchinfo.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedconfiggroup.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedcribllakedataset.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/counteddistributedsummary.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedgitcommitsummary.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedgitcountresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedgitdiffresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedgitfilesresponse.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedgitinfo.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedgitlogresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedgitrevertresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedgitshowresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedgitstatusresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedinput.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedinputsplunkhec.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedjobinfo.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedmasterworkerentry.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countednumber.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedobject.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedoutput.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedoutputsamplesresponse.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedoutputtestresponse.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedpackinfo.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedpackinstallinfo.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedpipeline.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedroutes.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedstring.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedsystemsettingsconf.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/countedteamaccesscontrollist.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/counteduseraccesscontrollist.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/createauthloginop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/createcribllakedatasetbylakeidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/createinputhectokenbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/createoutputtestbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/createroutesappendbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/createversioncommitop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/createversionrevertop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/createversionundoop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/currentbranchresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/datasetmetadataruninfo.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/deleteinputbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/deleteoutputbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/deleteoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/deletepacksbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/deletepipelinebyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/deployrequest.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/deployrequestlookups.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/difffiles.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/diffline.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/difflinecontext.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/difflinedelete.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/difflineinsert.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getinputbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getmasterworkerentryop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getoutputbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getoutputsamplesbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getpacksbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getpacksop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getpipelinebyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getroutesbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getversiondiffop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getversionop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getversionshowop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/getversionstatusop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/gitcommitparams.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/gitcountresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/gitdiffresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/gitfile.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/gitfilesresponse.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/gitlogresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/gitrevertparams.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/gitshowresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/gitstatusresult.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/hbleaderinfo.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/lakedatasetmetrics.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/lakedatasetsearchconfig.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/lakehouseconnectiontype.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/listmasterworkerentryop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/logininfo.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/nodeactiveupgradestatus.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/nodefailedupgradestatus.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/nodeskippedupgradestatus.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/nodeupgradestate.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/outpostnodeinfo.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/outputdefault.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/outputdevnull.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/outputrouter.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/outputsamplesresponse.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/outputsnmp.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/outputtestresponse.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/packupgraderequest.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/piisettings_union.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/productscore.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/rbacresource.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/rollbacksettings_union.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/routeconf.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/routesroute.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/runnablejob.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/schemeclientoauth.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/security.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/snisettings_union.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/teamaccesscontrollist.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/tlssettings_union.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/updateinputbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/updateoutputbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/updatepacksbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/updatepacksop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/updateroutesbyidop.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/upgradegroupsettings_union.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/upgradepackageurls.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/upgradesettings.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/uploadpackresponse.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/useraccesscontrollist.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/models/workertypes.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/nodes.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/py.typed +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/sdkconfiguration.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/settings.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/statuses.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/summaries.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/system_sdk.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/teams.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/tokens.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/types/__init__.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/annotations.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/datetimes.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/eventstreaming.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/forms.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/headers.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/logger.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/metadata.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/queryparams.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/retries.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/security.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/unmarshal_json_response.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/url.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/utils/values.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/versions.py +0 -0
- {cribl_control_plane-0.4.0rc16 → cribl_control_plane-0.5.0rc14}/src/cribl_control_plane/versions_configs.py +0 -0
|
@@ -0,0 +1,834 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cribl-control-plane
|
|
3
|
+
Version: 0.5.0rc14
|
|
4
|
+
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
|
+
License-File: LICENSE
|
|
6
|
+
Author: Speakeasy
|
|
7
|
+
Requires-Python: >=3.9.2
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
|
+
Requires-Dist: httpcore (>=1.0.9)
|
|
15
|
+
Requires-Dist: httpx (>=0.28.1)
|
|
16
|
+
Requires-Dist: pydantic (>=2.11.2)
|
|
17
|
+
Project-URL: Repository, https://github.com/criblio/cribl_control_plane_sdk_python.git
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# cribl_control_plane_sdk_python
|
|
21
|
+
|
|
22
|
+
The Cribl Python SDK for the control plane provides operational control over Cribl resources and helps streamline the process of integrating with Cribl.
|
|
23
|
+
|
|
24
|
+
In addition to the usage examples in this repository, the Cribl documentation includes [code examples for common use cases](https://docs.cribl.io/cribl-as-code/code-examples).
|
|
25
|
+
|
|
26
|
+
Complementary API reference documentation is available at https://docs.cribl.io/cribl-as-code/api-reference. Product documentation is available at https://docs.cribl.io.
|
|
27
|
+
|
|
28
|
+
> [!IMPORTANT]
|
|
29
|
+
> **Preview Feature**
|
|
30
|
+
> The Cribl SDKs are Preview features that are still being developed. We do not recommend using them in a production environment, because the features might not be fully tested or optimized for performance, and related documentation could be incomplete.
|
|
31
|
+
>
|
|
32
|
+
> Please continue to submit feedback through normal Cribl support channels, but assistance might be limited while the features remain in Preview.
|
|
33
|
+
|
|
34
|
+
<!-- No Summary [summary] -->
|
|
35
|
+
|
|
36
|
+
<!-- Start Table of Contents [toc] -->
|
|
37
|
+
## Table of Contents
|
|
38
|
+
<!-- $toc-max-depth=2 -->
|
|
39
|
+
* [cribl_control_plane_sdk_python](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#criblcontrolplanesdkpython)
|
|
40
|
+
* [SDK Installation](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#sdk-installation)
|
|
41
|
+
* [IDE Support](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#ide-support)
|
|
42
|
+
* [SDK Example Usage](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#sdk-example-usage)
|
|
43
|
+
* [Authentication](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#authentication)
|
|
44
|
+
* [Available Resources and Operations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#available-resources-and-operations)
|
|
45
|
+
* [File uploads](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#file-uploads)
|
|
46
|
+
* [Retries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#retries)
|
|
47
|
+
* [Error Handling](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#error-handling)
|
|
48
|
+
* [Custom HTTP Client](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#custom-http-client)
|
|
49
|
+
* [Resource Management](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#resource-management)
|
|
50
|
+
* [Debugging](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#debugging)
|
|
51
|
+
|
|
52
|
+
<!-- End Table of Contents [toc] -->
|
|
53
|
+
|
|
54
|
+
<!-- Start SDK Installation [installation] -->
|
|
55
|
+
## SDK Installation
|
|
56
|
+
|
|
57
|
+
> [!NOTE]
|
|
58
|
+
> **Python version upgrade policy**
|
|
59
|
+
>
|
|
60
|
+
> Once a Python version reaches its [official end of life date](https://devguide.python.org/versions/), a 3-month grace period is provided for users to upgrade. Following this grace period, the minimum python version supported in the SDK will be updated.
|
|
61
|
+
|
|
62
|
+
The SDK can be installed with *uv*, *pip*, or *poetry* package managers.
|
|
63
|
+
|
|
64
|
+
### uv
|
|
65
|
+
|
|
66
|
+
*uv* is a fast Python package installer and resolver, designed as a drop-in replacement for pip and pip-tools. It's recommended for its speed and modern Python tooling capabilities.
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
uv add cribl-control-plane
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
### PIP
|
|
73
|
+
|
|
74
|
+
*PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
pip install cribl-control-plane
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### Poetry
|
|
81
|
+
|
|
82
|
+
*Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
poetry add cribl-control-plane
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
### Shell and script usage with `uv`
|
|
89
|
+
|
|
90
|
+
You can use this SDK in a Python shell with [uv](https://docs.astral.sh/uv/) and the `uvx` command that comes with it like so:
|
|
91
|
+
|
|
92
|
+
```shell
|
|
93
|
+
uvx --from cribl-control-plane python
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
It's also possible to write a standalone Python script without needing to set up a whole project like so:
|
|
97
|
+
|
|
98
|
+
```python
|
|
99
|
+
#!/usr/bin/env -S uv run --script
|
|
100
|
+
# /// script
|
|
101
|
+
# requires-python = ">=3.9"
|
|
102
|
+
# dependencies = [
|
|
103
|
+
# "cribl-control-plane",
|
|
104
|
+
# ]
|
|
105
|
+
# ///
|
|
106
|
+
|
|
107
|
+
from cribl_control_plane import CriblControlPlane
|
|
108
|
+
|
|
109
|
+
sdk = CriblControlPlane(
|
|
110
|
+
# SDK arguments
|
|
111
|
+
)
|
|
112
|
+
|
|
113
|
+
# Rest of script here...
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
Once that is saved to a file, you can run it with `uv run script.py` where
|
|
117
|
+
`script.py` can be replaced with the actual file name.
|
|
118
|
+
<!-- End SDK Installation [installation] -->
|
|
119
|
+
|
|
120
|
+
<!-- Start IDE Support [idesupport] -->
|
|
121
|
+
## IDE Support
|
|
122
|
+
|
|
123
|
+
### PyCharm
|
|
124
|
+
|
|
125
|
+
Generally, the SDK will work well with most IDEs out of the box. However, when using PyCharm, you can enjoy much better integration with Pydantic by installing an additional plugin.
|
|
126
|
+
|
|
127
|
+
- [PyCharm Pydantic Plugin](https://docs.pydantic.dev/latest/integrations/pycharm/)
|
|
128
|
+
<!-- End IDE Support [idesupport] -->
|
|
129
|
+
|
|
130
|
+
<!-- Start SDK Example Usage [usage] -->
|
|
131
|
+
## SDK Example Usage
|
|
132
|
+
|
|
133
|
+
### Example
|
|
134
|
+
|
|
135
|
+
```python
|
|
136
|
+
# Synchronous Example
|
|
137
|
+
from cribl_control_plane import CriblControlPlane, models
|
|
138
|
+
import os
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
with CriblControlPlane(
|
|
142
|
+
server_url="https://api.example.com",
|
|
143
|
+
security=models.Security(
|
|
144
|
+
bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
|
|
145
|
+
),
|
|
146
|
+
) as ccp_client:
|
|
147
|
+
|
|
148
|
+
res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
|
|
149
|
+
"<value 1>",
|
|
150
|
+
"<value 2>",
|
|
151
|
+
], bucket_name="<value>", cache_connection={
|
|
152
|
+
"accelerated_fields": [
|
|
153
|
+
"<value 1>",
|
|
154
|
+
"<value 2>",
|
|
155
|
+
],
|
|
156
|
+
"backfill_status": models.CacheConnectionBackfillStatus.PENDING,
|
|
157
|
+
"cache_ref": "<value>",
|
|
158
|
+
"created_at": 7795.06,
|
|
159
|
+
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
160
|
+
"migration_query_id": "<id>",
|
|
161
|
+
"retention_in_days": 1466.58,
|
|
162
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.FormatOptionsCriblLakeDataset.DDSS, http_da_used=True, metrics={
|
|
163
|
+
"current_size_bytes": 6170.04,
|
|
164
|
+
"metrics_date": "<value>",
|
|
165
|
+
}, retention_period_in_days=456.37, search_config={
|
|
166
|
+
"datatypes": [
|
|
167
|
+
"<value 1>",
|
|
168
|
+
],
|
|
169
|
+
"metadata": {
|
|
170
|
+
"earliest": "<value>",
|
|
171
|
+
"enable_acceleration": True,
|
|
172
|
+
"field_list": [
|
|
173
|
+
"<value 1>",
|
|
174
|
+
"<value 2>",
|
|
175
|
+
],
|
|
176
|
+
"latest_run_info": {
|
|
177
|
+
"earliest_scanned_time": 4334.7,
|
|
178
|
+
"finished_at": 6811.22,
|
|
179
|
+
"latest_scanned_time": 5303.3,
|
|
180
|
+
"object_count": 9489.04,
|
|
181
|
+
},
|
|
182
|
+
"scan_mode": models.ScanMode.DETAILED,
|
|
183
|
+
},
|
|
184
|
+
}, storage_location_id="<id>", view_name="<value>")
|
|
185
|
+
|
|
186
|
+
# Handle response
|
|
187
|
+
print(res)
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
</br>
|
|
191
|
+
|
|
192
|
+
The same SDK client can also be used to make asynchronous requests by importing asyncio.
|
|
193
|
+
|
|
194
|
+
```python
|
|
195
|
+
# Asynchronous Example
|
|
196
|
+
import asyncio
|
|
197
|
+
from cribl_control_plane import CriblControlPlane, models
|
|
198
|
+
import os
|
|
199
|
+
|
|
200
|
+
async def main():
|
|
201
|
+
|
|
202
|
+
async with CriblControlPlane(
|
|
203
|
+
server_url="https://api.example.com",
|
|
204
|
+
security=models.Security(
|
|
205
|
+
bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
|
|
206
|
+
),
|
|
207
|
+
) as ccp_client:
|
|
208
|
+
|
|
209
|
+
res = await ccp_client.lake_datasets.create_async(lake_id="<id>", id="<id>", accelerated_fields=[
|
|
210
|
+
"<value 1>",
|
|
211
|
+
"<value 2>",
|
|
212
|
+
], bucket_name="<value>", cache_connection={
|
|
213
|
+
"accelerated_fields": [
|
|
214
|
+
"<value 1>",
|
|
215
|
+
"<value 2>",
|
|
216
|
+
],
|
|
217
|
+
"backfill_status": models.CacheConnectionBackfillStatus.PENDING,
|
|
218
|
+
"cache_ref": "<value>",
|
|
219
|
+
"created_at": 7795.06,
|
|
220
|
+
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
221
|
+
"migration_query_id": "<id>",
|
|
222
|
+
"retention_in_days": 1466.58,
|
|
223
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.FormatOptionsCriblLakeDataset.DDSS, http_da_used=True, metrics={
|
|
224
|
+
"current_size_bytes": 6170.04,
|
|
225
|
+
"metrics_date": "<value>",
|
|
226
|
+
}, retention_period_in_days=456.37, search_config={
|
|
227
|
+
"datatypes": [
|
|
228
|
+
"<value 1>",
|
|
229
|
+
],
|
|
230
|
+
"metadata": {
|
|
231
|
+
"earliest": "<value>",
|
|
232
|
+
"enable_acceleration": True,
|
|
233
|
+
"field_list": [
|
|
234
|
+
"<value 1>",
|
|
235
|
+
"<value 2>",
|
|
236
|
+
],
|
|
237
|
+
"latest_run_info": {
|
|
238
|
+
"earliest_scanned_time": 4334.7,
|
|
239
|
+
"finished_at": 6811.22,
|
|
240
|
+
"latest_scanned_time": 5303.3,
|
|
241
|
+
"object_count": 9489.04,
|
|
242
|
+
},
|
|
243
|
+
"scan_mode": models.ScanMode.DETAILED,
|
|
244
|
+
},
|
|
245
|
+
}, storage_location_id="<id>", view_name="<value>")
|
|
246
|
+
|
|
247
|
+
# Handle response
|
|
248
|
+
print(res)
|
|
249
|
+
|
|
250
|
+
asyncio.run(main())
|
|
251
|
+
```
|
|
252
|
+
<!-- End SDK Example Usage [usage] -->
|
|
253
|
+
|
|
254
|
+
## Authentication
|
|
255
|
+
|
|
256
|
+
Except for the `health.get` and `auth.tokens.get` methods, all Cribl SDK requests require you to authenticate with a Bearer token. You must include a valid Bearer token in the configuration when initializing your SDK client. The Bearer token verifies your identity and ensures secure access to the requested resources. The SDK automatically manages the `Authorization` header for subsequent requests once properly authenticated.
|
|
257
|
+
|
|
258
|
+
For information about Bearer token expiration, see [Token Management](https://docs.cribl.io/cribl-as-code/sdks-auth/#sdks-token-mgmt) in the Cribl as Code documentation.
|
|
259
|
+
|
|
260
|
+
**Authentication happens once during SDK initialization**. After you initialize the SDK client with authentication as shown in the [authentication examples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#authentication-examples), the SDK automatically handles authentication for all subsequent API calls. You do not need to include authentication parameters in individual API requests. The [SDK Example Usage](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#sdk-example-usage) section shows how to initialize the SDK and make API calls, but if you've properly initialized your client as shown in the authentication examples, you only need to make the API method calls themselves without re-initializing.
|
|
261
|
+
|
|
262
|
+
### Per-Client Security Schemes
|
|
263
|
+
|
|
264
|
+
This SDK supports the following security schemes globally:
|
|
265
|
+
|
|
266
|
+
| Name | Type | Scheme | Environment Variable |
|
|
267
|
+
| -------------- | ------ | ------------ | -------------------------------- |
|
|
268
|
+
| `bearer_auth` | http | HTTP Bearer | `CRIBLCONTROLPLANE_BEARER_AUTH` |
|
|
269
|
+
| `client_oauth` | oauth2 | OAuth2 token | `CRIBLCONTROLPLANE_CLIENT_OAUTH` |
|
|
270
|
+
|
|
271
|
+
To configure authentication on Cribl.Cloud and in hybrid deployments, use the `client_oauth` security scheme. The SDK uses the OAuth credentials that you provide to obtain a Bearer token and refresh the token within its expiration window using the standard OAuth2 flow.
|
|
272
|
+
|
|
273
|
+
In on-prem deployments, use the `bearer_auth` security scheme. The SDK uses the username/password credentials that you provide to obtain a Bearer token. Automatically refreshing the Bearer token within its expiration window requires a callback function as shown in the [On-Prem Authentication Example](https://github.com/criblio/cribl_control_plane_sdk_python/blob/main/examples/example_onprem_auth.py).
|
|
274
|
+
|
|
275
|
+
Set the security scheme through the `security` optional parameter when initializing the SDK client instance. The SDK uses the selected scheme by default to authenticate with the API for all operations that support it.
|
|
276
|
+
|
|
277
|
+
### Authentication Examples
|
|
278
|
+
|
|
279
|
+
The [Cribl.Cloud and Hybrid Authentication Example](https://github.com/criblio/cribl_control_plane_sdk_python/blob/main/examples/example_cloud_auth.py) demonstrates how to configure authentication on Cribl.Cloud and in hybrid deployments. To obtain the Client ID and Client Secret you'll need to initialize using the `client_oauth` security schema, follow the [instructions for creating an API Credential](https://docs.cribl.io/cribl-as-code/sdks-auth/#sdks-auth-cloud) in the Cribl as Code documentation.
|
|
280
|
+
|
|
281
|
+
The [On-Prem Authentication Example](https://github.com/criblio/cribl_control_plane_sdk_python/blob/main/examples/example_onprem_auth.py) demonstrates how to configure authentication in on-prem deployments using your username and password.
|
|
282
|
+
|
|
283
|
+
<!-- No Authentication [security] -->
|
|
284
|
+
|
|
285
|
+
<!-- Start Available Resources and Operations [operations] -->
|
|
286
|
+
## Available Resources and Operations
|
|
287
|
+
|
|
288
|
+
<details open>
|
|
289
|
+
<summary>Available methods</summary>
|
|
290
|
+
|
|
291
|
+
### [Auth.Tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
|
|
292
|
+
|
|
293
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md#get) - Log in and fetch an authentication token
|
|
294
|
+
|
|
295
|
+
### [Collectors](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/collectorssdk/README.md)
|
|
296
|
+
|
|
297
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/collectorssdk/README.md#create) - Create a Collector
|
|
298
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/collectorssdk/README.md#list) - List all Collectors
|
|
299
|
+
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/collectorssdk/README.md#delete) - Delete a Collector
|
|
300
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/collectorssdk/README.md#get) - Get a Collector
|
|
301
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/collectorssdk/README.md#update) - Update a Collector
|
|
302
|
+
|
|
303
|
+
### [Destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
|
|
304
|
+
|
|
305
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#list) - List all Destinations
|
|
306
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create) - Create a Destination
|
|
307
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get) - Get a Destination
|
|
308
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#update) - Update a Destination
|
|
309
|
+
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#delete) - Delete a Destination
|
|
310
|
+
|
|
311
|
+
#### [Destinations.Pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pq/README.md)
|
|
312
|
+
|
|
313
|
+
* [clear](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pq/README.md#clear) - Clear the persistent queue for a Destination
|
|
314
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pq/README.md#get) - Get information about the latest job to clear the persistent queue for a Destination
|
|
315
|
+
|
|
316
|
+
#### [Destinations.Samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
|
|
317
|
+
|
|
318
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#get) - Get sample event data for a Destination
|
|
319
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#create) - Send sample event data to a Destination
|
|
320
|
+
|
|
321
|
+
### [Functions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/functions/README.md)
|
|
322
|
+
|
|
323
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/functions/README.md#get) - Get a Function
|
|
324
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/functions/README.md#list) - List all Functions
|
|
325
|
+
|
|
326
|
+
### [Groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
|
|
327
|
+
|
|
328
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#list) - List all Worker Groups or Edge Fleets for the specified Cribl product
|
|
329
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create) - Create a Worker Group or Edge Fleet for the specified Cribl product
|
|
330
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get) - Get a Worker Group or Edge Fleet
|
|
331
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update) - Update a Worker Group or Edge Fleet
|
|
332
|
+
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#delete) - Delete a Worker Group or Edge Fleet
|
|
333
|
+
* [deploy](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#deploy) - Deploy commits to a Worker Group or Edge Fleet
|
|
334
|
+
|
|
335
|
+
#### [Groups.Acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
|
|
336
|
+
|
|
337
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md#get) - Get the Access Control List for a Worker Group or Edge Fleet
|
|
338
|
+
|
|
339
|
+
##### [Groups.Acl.Teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
|
|
340
|
+
|
|
341
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md#get) - Get the Access Control List for teams with permissions on a Worker Group or Edge Fleet for the specified Cribl product
|
|
342
|
+
|
|
343
|
+
#### [Groups.Configs.Versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
|
|
344
|
+
|
|
345
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md#get) - Get the configuration version for a Worker Group or Edge Fleet
|
|
346
|
+
|
|
347
|
+
### [Health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
|
|
348
|
+
|
|
349
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get) - Retrieve health status of the server
|
|
350
|
+
|
|
351
|
+
### [LakeDatasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
|
|
352
|
+
|
|
353
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#create) - Create a Lake Dataset
|
|
354
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#list) - List all Lake Datasets
|
|
355
|
+
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#delete) - Delete a Lake Dataset
|
|
356
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#get) - Get a Lake Dataset
|
|
357
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#update) - Update a Lake Dataset
|
|
358
|
+
|
|
359
|
+
### [Nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
|
|
360
|
+
|
|
361
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#list) - Get detailed metadata for Worker and Edge Nodes
|
|
362
|
+
* [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#count) - Get a count of Worker and Edge Nodes
|
|
363
|
+
|
|
364
|
+
#### [Nodes.Summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
|
|
365
|
+
|
|
366
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md#get) - Get a summary of the Distributed deployment
|
|
367
|
+
|
|
368
|
+
### [Packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
|
|
369
|
+
|
|
370
|
+
* [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Install a Pack
|
|
371
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#list) - List all Packs
|
|
372
|
+
* [upload](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#upload) - Upload a Pack file
|
|
373
|
+
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#delete) - Uninstall a Pack
|
|
374
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get) - Get a Pack
|
|
375
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update) - Upgrade a Pack
|
|
376
|
+
|
|
377
|
+
### [Pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
|
|
378
|
+
|
|
379
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list) - List all Pipelines
|
|
380
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#create) - Create a Pipeline
|
|
381
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#get) - Get a Pipeline
|
|
382
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#update) - Update a Pipeline
|
|
383
|
+
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#delete) - Delete a Pipeline
|
|
384
|
+
|
|
385
|
+
### [Routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
|
|
386
|
+
|
|
387
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - List all Routes
|
|
388
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get a Routing table
|
|
389
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update a Route
|
|
390
|
+
* [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
|
|
391
|
+
|
|
392
|
+
### [Sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
|
|
393
|
+
|
|
394
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#list) - List all Sources
|
|
395
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create) - Create a Source
|
|
396
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#get) - Get a Source
|
|
397
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update) - Update a Source
|
|
398
|
+
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#delete) - Delete a Source
|
|
399
|
+
|
|
400
|
+
#### [Sources.HecTokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
|
|
401
|
+
|
|
402
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#create) - Add an HEC token and optional metadata to a Splunk HEC Source
|
|
403
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#update) - Update metadata for an HEC token for a Splunk HEC Source
|
|
404
|
+
|
|
405
|
+
### [System.Settings.Cribl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md)
|
|
406
|
+
|
|
407
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md#list) - Get Cribl system settings
|
|
408
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md#update) - Update Cribl system settings
|
|
409
|
+
|
|
410
|
+
### [Versions.Branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
|
|
411
|
+
|
|
412
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md#list) - List all branches in the Git repository used for Cribl configuration
|
|
413
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md#get) - Get the name of the Git branch that the Cribl configuration is checked out to
|
|
414
|
+
|
|
415
|
+
### [Versions.Commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
|
|
416
|
+
|
|
417
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#create) - Create a new commit for pending changes to the Cribl configuration
|
|
418
|
+
* [diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#diff) - Get the diff for a commit
|
|
419
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#list) - List the commit history
|
|
420
|
+
* [push](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#push) - Push local commits to the remote repository
|
|
421
|
+
* [revert](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#revert) - Revert a commit in the local repository
|
|
422
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#get) - Get the diff and log message for a commit
|
|
423
|
+
* [undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#undo) - Discard uncommitted (staged) changes
|
|
424
|
+
|
|
425
|
+
#### [Versions.Commits.Files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/files/README.md)
|
|
426
|
+
|
|
427
|
+
* [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/files/README.md#count) - Get a count of files that changed since a commit
|
|
428
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/files/README.md#list) - Get the names and statuses of files that changed since a commit
|
|
429
|
+
|
|
430
|
+
### [Versions.Configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
|
|
431
|
+
|
|
432
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md#get) - Get the configuration and status for the Git integration
|
|
433
|
+
|
|
434
|
+
### [Versions.Statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
|
|
435
|
+
|
|
436
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md#get) - Get the status of the current working tree
|
|
437
|
+
|
|
438
|
+
</details>
|
|
439
|
+
<!-- End Available Resources and Operations [operations] -->
|
|
440
|
+
|
|
441
|
+
<!-- Start File uploads [file-upload] -->
|
|
442
|
+
## File uploads
|
|
443
|
+
|
|
444
|
+
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.
|
|
445
|
+
|
|
446
|
+
> [!TIP]
|
|
447
|
+
>
|
|
448
|
+
> For endpoints that handle file uploads bytes arrays can also be used. However, using streams is recommended for large files.
|
|
449
|
+
>
|
|
450
|
+
|
|
451
|
+
```python
|
|
452
|
+
from cribl_control_plane import CriblControlPlane, models
|
|
453
|
+
import os
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
with CriblControlPlane(
|
|
457
|
+
server_url="https://api.example.com",
|
|
458
|
+
security=models.Security(
|
|
459
|
+
bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
|
|
460
|
+
),
|
|
461
|
+
) as ccp_client:
|
|
462
|
+
|
|
463
|
+
res = ccp_client.packs.upload(filename="example.file", request_body=open("example.file", "rb"))
|
|
464
|
+
|
|
465
|
+
# Handle response
|
|
466
|
+
print(res)
|
|
467
|
+
|
|
468
|
+
```
|
|
469
|
+
<!-- End File uploads [file-upload] -->
|
|
470
|
+
|
|
471
|
+
<!-- Start Retries [retries] -->
|
|
472
|
+
## Retries
|
|
473
|
+
|
|
474
|
+
Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.
|
|
475
|
+
|
|
476
|
+
To change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call:
|
|
477
|
+
```python
|
|
478
|
+
from cribl_control_plane import CriblControlPlane, models
|
|
479
|
+
from cribl_control_plane.utils import BackoffStrategy, RetryConfig
|
|
480
|
+
import os
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
with CriblControlPlane(
|
|
484
|
+
server_url="https://api.example.com",
|
|
485
|
+
security=models.Security(
|
|
486
|
+
bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
|
|
487
|
+
),
|
|
488
|
+
) as ccp_client:
|
|
489
|
+
|
|
490
|
+
res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
|
|
491
|
+
"<value 1>",
|
|
492
|
+
"<value 2>",
|
|
493
|
+
], bucket_name="<value>", cache_connection={
|
|
494
|
+
"accelerated_fields": [
|
|
495
|
+
"<value 1>",
|
|
496
|
+
"<value 2>",
|
|
497
|
+
],
|
|
498
|
+
"backfill_status": models.CacheConnectionBackfillStatus.PENDING,
|
|
499
|
+
"cache_ref": "<value>",
|
|
500
|
+
"created_at": 7795.06,
|
|
501
|
+
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
502
|
+
"migration_query_id": "<id>",
|
|
503
|
+
"retention_in_days": 1466.58,
|
|
504
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.FormatOptionsCriblLakeDataset.DDSS, http_da_used=True, metrics={
|
|
505
|
+
"current_size_bytes": 6170.04,
|
|
506
|
+
"metrics_date": "<value>",
|
|
507
|
+
}, retention_period_in_days=456.37, search_config={
|
|
508
|
+
"datatypes": [
|
|
509
|
+
"<value 1>",
|
|
510
|
+
],
|
|
511
|
+
"metadata": {
|
|
512
|
+
"earliest": "<value>",
|
|
513
|
+
"enable_acceleration": True,
|
|
514
|
+
"field_list": [
|
|
515
|
+
"<value 1>",
|
|
516
|
+
"<value 2>",
|
|
517
|
+
],
|
|
518
|
+
"latest_run_info": {
|
|
519
|
+
"earliest_scanned_time": 4334.7,
|
|
520
|
+
"finished_at": 6811.22,
|
|
521
|
+
"latest_scanned_time": 5303.3,
|
|
522
|
+
"object_count": 9489.04,
|
|
523
|
+
},
|
|
524
|
+
"scan_mode": models.ScanMode.DETAILED,
|
|
525
|
+
},
|
|
526
|
+
}, storage_location_id="<id>", view_name="<value>",
|
|
527
|
+
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
|
|
528
|
+
|
|
529
|
+
# Handle response
|
|
530
|
+
print(res)
|
|
531
|
+
|
|
532
|
+
```
|
|
533
|
+
|
|
534
|
+
If you'd like to override the default retry strategy for all operations that support retries, you can use the `retry_config` optional parameter when initializing the SDK:
|
|
535
|
+
```python
|
|
536
|
+
from cribl_control_plane import CriblControlPlane, models
|
|
537
|
+
from cribl_control_plane.utils import BackoffStrategy, RetryConfig
|
|
538
|
+
import os
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
with CriblControlPlane(
|
|
542
|
+
server_url="https://api.example.com",
|
|
543
|
+
retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
|
|
544
|
+
security=models.Security(
|
|
545
|
+
bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
|
|
546
|
+
),
|
|
547
|
+
) as ccp_client:
|
|
548
|
+
|
|
549
|
+
res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
|
|
550
|
+
"<value 1>",
|
|
551
|
+
"<value 2>",
|
|
552
|
+
], bucket_name="<value>", cache_connection={
|
|
553
|
+
"accelerated_fields": [
|
|
554
|
+
"<value 1>",
|
|
555
|
+
"<value 2>",
|
|
556
|
+
],
|
|
557
|
+
"backfill_status": models.CacheConnectionBackfillStatus.PENDING,
|
|
558
|
+
"cache_ref": "<value>",
|
|
559
|
+
"created_at": 7795.06,
|
|
560
|
+
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
561
|
+
"migration_query_id": "<id>",
|
|
562
|
+
"retention_in_days": 1466.58,
|
|
563
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.FormatOptionsCriblLakeDataset.DDSS, http_da_used=True, metrics={
|
|
564
|
+
"current_size_bytes": 6170.04,
|
|
565
|
+
"metrics_date": "<value>",
|
|
566
|
+
}, retention_period_in_days=456.37, search_config={
|
|
567
|
+
"datatypes": [
|
|
568
|
+
"<value 1>",
|
|
569
|
+
],
|
|
570
|
+
"metadata": {
|
|
571
|
+
"earliest": "<value>",
|
|
572
|
+
"enable_acceleration": True,
|
|
573
|
+
"field_list": [
|
|
574
|
+
"<value 1>",
|
|
575
|
+
"<value 2>",
|
|
576
|
+
],
|
|
577
|
+
"latest_run_info": {
|
|
578
|
+
"earliest_scanned_time": 4334.7,
|
|
579
|
+
"finished_at": 6811.22,
|
|
580
|
+
"latest_scanned_time": 5303.3,
|
|
581
|
+
"object_count": 9489.04,
|
|
582
|
+
},
|
|
583
|
+
"scan_mode": models.ScanMode.DETAILED,
|
|
584
|
+
},
|
|
585
|
+
}, storage_location_id="<id>", view_name="<value>")
|
|
586
|
+
|
|
587
|
+
# Handle response
|
|
588
|
+
print(res)
|
|
589
|
+
|
|
590
|
+
```
|
|
591
|
+
<!-- End Retries [retries] -->
|
|
592
|
+
|
|
593
|
+
<!-- Start Error Handling [errors] -->
|
|
594
|
+
## Error Handling
|
|
595
|
+
|
|
596
|
+
[`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py) is the base class for all HTTP error responses. It has the following properties:
|
|
597
|
+
|
|
598
|
+
| Property | Type | Description |
|
|
599
|
+
| ------------------ | ---------------- | --------------------------------------------------------------------------------------- |
|
|
600
|
+
| `err.message` | `str` | Error message |
|
|
601
|
+
| `err.status_code` | `int` | HTTP response status code eg `404` |
|
|
602
|
+
| `err.headers` | `httpx.Headers` | HTTP response headers |
|
|
603
|
+
| `err.body` | `str` | HTTP body. Can be empty string if no body is returned. |
|
|
604
|
+
| `err.raw_response` | `httpx.Response` | Raw HTTP response |
|
|
605
|
+
| `err.data` | | Optional. Some errors may contain structured data. [See Error Classes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#error-classes). |
|
|
606
|
+
|
|
607
|
+
### Example
|
|
608
|
+
```python
|
|
609
|
+
from cribl_control_plane import CriblControlPlane, errors, models
|
|
610
|
+
import os
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
with CriblControlPlane(
|
|
614
|
+
server_url="https://api.example.com",
|
|
615
|
+
security=models.Security(
|
|
616
|
+
bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
|
|
617
|
+
),
|
|
618
|
+
) as ccp_client:
|
|
619
|
+
res = None
|
|
620
|
+
try:
|
|
621
|
+
|
|
622
|
+
res = ccp_client.lake_datasets.create(lake_id="<id>", id="<id>", accelerated_fields=[
|
|
623
|
+
"<value 1>",
|
|
624
|
+
"<value 2>",
|
|
625
|
+
], bucket_name="<value>", cache_connection={
|
|
626
|
+
"accelerated_fields": [
|
|
627
|
+
"<value 1>",
|
|
628
|
+
"<value 2>",
|
|
629
|
+
],
|
|
630
|
+
"backfill_status": models.CacheConnectionBackfillStatus.PENDING,
|
|
631
|
+
"cache_ref": "<value>",
|
|
632
|
+
"created_at": 7795.06,
|
|
633
|
+
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
634
|
+
"migration_query_id": "<id>",
|
|
635
|
+
"retention_in_days": 1466.58,
|
|
636
|
+
}, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.FormatOptionsCriblLakeDataset.DDSS, http_da_used=True, metrics={
|
|
637
|
+
"current_size_bytes": 6170.04,
|
|
638
|
+
"metrics_date": "<value>",
|
|
639
|
+
}, retention_period_in_days=456.37, search_config={
|
|
640
|
+
"datatypes": [
|
|
641
|
+
"<value 1>",
|
|
642
|
+
],
|
|
643
|
+
"metadata": {
|
|
644
|
+
"earliest": "<value>",
|
|
645
|
+
"enable_acceleration": True,
|
|
646
|
+
"field_list": [
|
|
647
|
+
"<value 1>",
|
|
648
|
+
"<value 2>",
|
|
649
|
+
],
|
|
650
|
+
"latest_run_info": {
|
|
651
|
+
"earliest_scanned_time": 4334.7,
|
|
652
|
+
"finished_at": 6811.22,
|
|
653
|
+
"latest_scanned_time": 5303.3,
|
|
654
|
+
"object_count": 9489.04,
|
|
655
|
+
},
|
|
656
|
+
"scan_mode": models.ScanMode.DETAILED,
|
|
657
|
+
},
|
|
658
|
+
}, storage_location_id="<id>", view_name="<value>")
|
|
659
|
+
|
|
660
|
+
# Handle response
|
|
661
|
+
print(res)
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
except errors.CriblControlPlaneError as e:
|
|
665
|
+
# The base class for HTTP error responses
|
|
666
|
+
print(e.message)
|
|
667
|
+
print(e.status_code)
|
|
668
|
+
print(e.body)
|
|
669
|
+
print(e.headers)
|
|
670
|
+
print(e.raw_response)
|
|
671
|
+
|
|
672
|
+
# Depending on the method different errors may be thrown
|
|
673
|
+
if isinstance(e, errors.Error):
|
|
674
|
+
print(e.data.message) # Optional[str]
|
|
675
|
+
```
|
|
676
|
+
|
|
677
|
+
### Error Classes
|
|
678
|
+
**Primary errors:**
|
|
679
|
+
* [`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.
|
|
680
|
+
* [`Error`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/error.py): Unexpected error. Status code `500`.
|
|
681
|
+
|
|
682
|
+
<details><summary>Less common errors (6)</summary>
|
|
683
|
+
|
|
684
|
+
<br />
|
|
685
|
+
|
|
686
|
+
**Network errors:**
|
|
687
|
+
* [`httpx.RequestError`](https://www.python-httpx.org/exceptions/#httpx.RequestError): Base class for request errors.
|
|
688
|
+
* [`httpx.ConnectError`](https://www.python-httpx.org/exceptions/#httpx.ConnectError): HTTP client was unable to make a request to a server.
|
|
689
|
+
* [`httpx.TimeoutException`](https://www.python-httpx.org/exceptions/#httpx.TimeoutException): HTTP request timed out.
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
693
|
+
* [`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 72 methods.*
|
|
694
|
+
* [`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.
|
|
695
|
+
|
|
696
|
+
</details>
|
|
697
|
+
|
|
698
|
+
\* Check [the method documentation](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#available-resources-and-operations) to see if the error is applicable.
|
|
699
|
+
<!-- End Error Handling [errors] -->
|
|
700
|
+
|
|
701
|
+
<!-- Start Custom HTTP Client [http-client] -->
|
|
702
|
+
## Custom HTTP Client
|
|
703
|
+
|
|
704
|
+
The Python SDK makes API calls using the [httpx](https://www.python-httpx.org/) HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with your own HTTP client instance.
|
|
705
|
+
Depending on whether you are using the sync or async version of the SDK, you can pass an instance of `HttpClient` or `AsyncHttpClient` respectively, which are Protocol's ensuring that the client has the necessary methods to make API calls.
|
|
706
|
+
This allows you to wrap the client with your own custom logic, such as adding custom headers, logging, or error handling, or you can just pass an instance of `httpx.Client` or `httpx.AsyncClient` directly.
|
|
707
|
+
|
|
708
|
+
For example, you could specify a header for every request that this sdk makes as follows:
|
|
709
|
+
```python
|
|
710
|
+
from cribl_control_plane import CriblControlPlane
|
|
711
|
+
import httpx
|
|
712
|
+
|
|
713
|
+
http_client = httpx.Client(headers={"x-custom-header": "someValue"})
|
|
714
|
+
s = CriblControlPlane(client=http_client)
|
|
715
|
+
```
|
|
716
|
+
|
|
717
|
+
or you could wrap the client with your own custom logic:
|
|
718
|
+
```python
|
|
719
|
+
from cribl_control_plane import CriblControlPlane
|
|
720
|
+
from cribl_control_plane.httpclient import AsyncHttpClient
|
|
721
|
+
import httpx
|
|
722
|
+
|
|
723
|
+
class CustomClient(AsyncHttpClient):
|
|
724
|
+
client: AsyncHttpClient
|
|
725
|
+
|
|
726
|
+
def __init__(self, client: AsyncHttpClient):
|
|
727
|
+
self.client = client
|
|
728
|
+
|
|
729
|
+
async def send(
|
|
730
|
+
self,
|
|
731
|
+
request: httpx.Request,
|
|
732
|
+
*,
|
|
733
|
+
stream: bool = False,
|
|
734
|
+
auth: Union[
|
|
735
|
+
httpx._types.AuthTypes, httpx._client.UseClientDefault, None
|
|
736
|
+
] = httpx.USE_CLIENT_DEFAULT,
|
|
737
|
+
follow_redirects: Union[
|
|
738
|
+
bool, httpx._client.UseClientDefault
|
|
739
|
+
] = httpx.USE_CLIENT_DEFAULT,
|
|
740
|
+
) -> httpx.Response:
|
|
741
|
+
request.headers["Client-Level-Header"] = "added by client"
|
|
742
|
+
|
|
743
|
+
return await self.client.send(
|
|
744
|
+
request, stream=stream, auth=auth, follow_redirects=follow_redirects
|
|
745
|
+
)
|
|
746
|
+
|
|
747
|
+
def build_request(
|
|
748
|
+
self,
|
|
749
|
+
method: str,
|
|
750
|
+
url: httpx._types.URLTypes,
|
|
751
|
+
*,
|
|
752
|
+
content: Optional[httpx._types.RequestContent] = None,
|
|
753
|
+
data: Optional[httpx._types.RequestData] = None,
|
|
754
|
+
files: Optional[httpx._types.RequestFiles] = None,
|
|
755
|
+
json: Optional[Any] = None,
|
|
756
|
+
params: Optional[httpx._types.QueryParamTypes] = None,
|
|
757
|
+
headers: Optional[httpx._types.HeaderTypes] = None,
|
|
758
|
+
cookies: Optional[httpx._types.CookieTypes] = None,
|
|
759
|
+
timeout: Union[
|
|
760
|
+
httpx._types.TimeoutTypes, httpx._client.UseClientDefault
|
|
761
|
+
] = httpx.USE_CLIENT_DEFAULT,
|
|
762
|
+
extensions: Optional[httpx._types.RequestExtensions] = None,
|
|
763
|
+
) -> httpx.Request:
|
|
764
|
+
return self.client.build_request(
|
|
765
|
+
method,
|
|
766
|
+
url,
|
|
767
|
+
content=content,
|
|
768
|
+
data=data,
|
|
769
|
+
files=files,
|
|
770
|
+
json=json,
|
|
771
|
+
params=params,
|
|
772
|
+
headers=headers,
|
|
773
|
+
cookies=cookies,
|
|
774
|
+
timeout=timeout,
|
|
775
|
+
extensions=extensions,
|
|
776
|
+
)
|
|
777
|
+
|
|
778
|
+
s = CriblControlPlane(async_client=CustomClient(httpx.AsyncClient()))
|
|
779
|
+
```
|
|
780
|
+
<!-- End Custom HTTP Client [http-client] -->
|
|
781
|
+
|
|
782
|
+
<!-- Start Resource Management [resource-management] -->
|
|
783
|
+
## Resource Management
|
|
784
|
+
|
|
785
|
+
The `CriblControlPlane` class implements the context manager protocol and registers a finalizer function to close the underlying sync and async HTTPX clients it uses under the hood. This will close HTTP connections, release memory and free up other resources held by the SDK. In short-lived Python programs and notebooks that make a few SDK method calls, resource management may not be a concern. However, in longer-lived programs, it is beneficial to create a single SDK instance via a [context manager][context-manager] and reuse it across the application.
|
|
786
|
+
|
|
787
|
+
[context-manager]: https://docs.python.org/3/reference/datamodel.html#context-managers
|
|
788
|
+
|
|
789
|
+
```python
|
|
790
|
+
from cribl_control_plane import CriblControlPlane, models
|
|
791
|
+
import os
|
|
792
|
+
def main():
|
|
793
|
+
|
|
794
|
+
with CriblControlPlane(
|
|
795
|
+
server_url="https://api.example.com",
|
|
796
|
+
security=models.Security(
|
|
797
|
+
bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
|
|
798
|
+
),
|
|
799
|
+
) as ccp_client:
|
|
800
|
+
# Rest of application here...
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
# Or when using async:
|
|
804
|
+
async def amain():
|
|
805
|
+
|
|
806
|
+
async with CriblControlPlane(
|
|
807
|
+
server_url="https://api.example.com",
|
|
808
|
+
security=models.Security(
|
|
809
|
+
bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
|
|
810
|
+
),
|
|
811
|
+
) as ccp_client:
|
|
812
|
+
# Rest of application here...
|
|
813
|
+
```
|
|
814
|
+
<!-- End Resource Management [resource-management] -->
|
|
815
|
+
|
|
816
|
+
<!-- Start Debugging [debug] -->
|
|
817
|
+
## Debugging
|
|
818
|
+
|
|
819
|
+
You can setup your SDK to emit debug logs for SDK requests and responses.
|
|
820
|
+
|
|
821
|
+
You can pass your own logger class directly into your SDK.
|
|
822
|
+
```python
|
|
823
|
+
from cribl_control_plane import CriblControlPlane
|
|
824
|
+
import logging
|
|
825
|
+
|
|
826
|
+
logging.basicConfig(level=logging.DEBUG)
|
|
827
|
+
s = CriblControlPlane(server_url="https://example.com", debug_logger=logging.getLogger("cribl_control_plane"))
|
|
828
|
+
```
|
|
829
|
+
|
|
830
|
+
You can also enable a default debug logger by setting an environment variable `CRIBLCONTROLPLANE_DEBUG` to true.
|
|
831
|
+
<!-- End Debugging [debug] -->
|
|
832
|
+
|
|
833
|
+
<!-- Placeholder for Future Speakeasy SDK Sections -->
|
|
834
|
+
|