cribl-control-plane 0.4.0b3__tar.gz → 0.4.0b18__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.4.0b18/LICENSE +201 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/PKG-INFO +8 -2
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/README-PYPI.md +6 -1
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/pyproject.toml +1 -1
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/_version.py +4 -4
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/acl.py +12 -2
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/basesdk.py +6 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/branches.py +24 -4
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/commits.py +84 -14
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/commits_files.py +36 -16
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/configs_versions.py +12 -2
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/cribl.py +495 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/destinations.py +60 -10
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/destinations_pq.py +24 -4
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/groups_sdk.py +76 -16
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/health.py +12 -2
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/hectokens.py +36 -4
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/lakedatasets.py +96 -10
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/__init__.py +255 -24
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/addhectokenrequest.py +7 -1
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/backupssettings_union.py +37 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/configgroup.py +1 -1
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/countedsystemsettingsconf.py +20 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/createauthloginop.py +18 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/createconfiggroupbyproductop.py +2 -2
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/criblevent.py +29 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/difffiles.py +5 -46
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/diffline.py +26 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/difflinecontext.py +28 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/difflinedelete.py +25 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/difflineinsert.py +25 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +80 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getversioncountop.py +2 -3
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getversionfilesop.py +2 -3
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/groupcreaterequest.py +1 -1
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputconfluentcloud.py +4 -2
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputkafka.py +4 -2
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputmsk.py +4 -2
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputwiz.py +5 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/masterworkerentry.py +2 -2
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputcriblhttp.py +1 -1
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputnetflow.py +7 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/piisettings_union.py +31 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/rollbacksettings_union.py +44 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/runnablejobcollection.py +28 -72
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/runnablejobexecutor.py +28 -40
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/runnablejobscheduledsearch.py +29 -40
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/snisettings_union.py +31 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/systemsettingsconf.py +291 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/tlssettings_union.py +43 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/updatehectokenrequest.py +7 -1
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/upgradegroupsettings_union.py +43 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/upgradepackageurls.py +20 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/models/upgradesettings.py +38 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/nodes.py +24 -4
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/packs.py +72 -12
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/pipelines.py +60 -10
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/routes_sdk.py +48 -8
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/samples.py +24 -4
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/sdk.py +3 -0
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/settings.py +20 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/sources.py +60 -10
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/statuses.py +12 -2
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/summaries.py +12 -2
- cribl_control_plane-0.4.0b18/src/cribl_control_plane/system_sdk.py +20 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/teams.py +12 -2
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/tokens.py +28 -8
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/forms.py +21 -10
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/queryparams.py +14 -2
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/retries.py +69 -5
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/versions_configs.py +12 -2
- cribl_control_plane-0.4.0b3/src/cribl_control_plane/models/criblevent.py +0 -14
- cribl_control_plane-0.4.0b3/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +0 -21
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/py.typed +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/__init__.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/_hooks/__init__.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/_hooks/clientcredentials.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/_hooks/registration.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/_hooks/sdkhooks.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/_hooks/types.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/auth_sdk.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/errors/__init__.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/errors/apierror.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/errors/criblcontrolplaneerror.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/errors/error.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/errors/healthserverstatus_error.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/errors/no_response_error.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/errors/responsevalidationerror.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/groups_configs.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/httpclient.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/authtoken.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/branchinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/cacheconnection.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/cacheconnectionbackfillstatus.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/cloudprovider.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/commit.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/configgroupcloud.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/configgrouplookups.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedbranchinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedconfiggroup.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedcribllakedataset.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/counteddistributedsummary.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedgitcommitsummary.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedgitcountresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedgitdiffresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedgitfilesresponse.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedgitinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedgitlogresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedgitrevertresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedgitshowresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedgitstatusresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedinput.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedinputsplunkhec.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedjobinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedmasterworkerentry.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countednumber.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedobject.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedoutput.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedoutputsamplesresponse.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedoutputtestresponse.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedpackinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedpackinstallinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedpipeline.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedroutes.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedstring.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/countedteamaccesscontrollist.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/counteduseraccesscontrollist.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/createcribllakedatasetbylakeidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/createinputhectokenbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/createoutputtestbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/createroutesappendbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/createversioncommitop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/createversionrevertop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/createversionundoop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/cribllakedataset.py +1 -1
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/cribllakedatasetupdate.py +1 -1
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/currentbranchresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/datasetmetadata.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/datasetmetadataruninfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/deleteinputbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/deleteoutputbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/deleteoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/deletepacksbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/deletepipelinebyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/deployrequest.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/deployrequestlookups.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/distributedsummary.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getconfiggroupbyproductandidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getinputbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getmasterworkerentryop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getoutputbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getoutputsamplesbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getpacksbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getpacksop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getpipelinebyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getroutesbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getsummaryop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getversiondiffop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getversionop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getversionshowop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/getversionstatusop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitcommitparams.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitcommitsummary.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitcountresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitdiffresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitfile.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitfilesresponse.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitlogresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitrevertparams.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitrevertresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitshowresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/gitstatusresult.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/hbcriblinfo.py +2 -2
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/hbleaderinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/healthserverstatus.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/heartbeatmetadata.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/input.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputappscope.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputazureblob.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputcloudflarehec.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputcollection.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputcribl.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputcriblhttp.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputcribllakehttp.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputcriblmetrics.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputcribltcp.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputcrowdstrike.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputdatadogagent.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputdatagen.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputedgeprometheus.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputelastic.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputeventhub.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputexec.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputfile.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputfirehose.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputgooglepubsub.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputgrafana.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputhttp.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputhttpraw.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputjournalfiles.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputkinesis.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputkubeevents.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputkubelogs.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputkubemetrics.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputloki.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputmetrics.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputmodeldriventelemetry.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputnetflow.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputoffice365mgmt.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputoffice365msgtrace.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputoffice365service.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputopentelemetry.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputprometheus.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputprometheusrw.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputrawudp.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputs3.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputs3inventory.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputsecuritylake.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputsnmp.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputsplunk.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputsplunkhec.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputsplunksearch.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputsqs.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputsyslog.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputsystemmetrics.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputsystemstate.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputtcp.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputtcpjson.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputwef.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputwindowsmetrics.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputwineventlogs.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputwizwebhook.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/inputzscalerhec.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/jobinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/jobstatus.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/lakedatasetmetrics.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/lakedatasetsearchconfig.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/lakehouseconnectiontype.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/listconfiggroupbyproductop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/listmasterworkerentryop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/logininfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/nodeactiveupgradestatus.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/nodefailedupgradestatus.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/nodeprovidedinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/nodeskippedupgradestatus.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/nodeupgradestate.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/nodeupgradestatus.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outpostnodeinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/output.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputazureblob.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputazuredataexplorer.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputazureeventhub.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputazurelogs.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputchronicle.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputclickhouse.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputcloudflarer2.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputcloudwatch.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputconfluentcloud.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputcribllake.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputcribltcp.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputcrowdstrikenextgensiem.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputdatabricks.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputdatadog.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputdataset.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputdefault.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputdevnull.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputdiskspool.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputdls3.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputdynatracehttp.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputdynatraceotlp.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputelastic.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputelasticcloud.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputexabeam.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputfilesystem.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputgooglechronicle.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputgooglecloudlogging.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputgooglecloudstorage.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputgooglepubsub.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputgrafanacloud.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputgraphite.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputhoneycomb.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputhumiohec.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputinfluxdb.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputkafka.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputkinesis.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputloki.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputmicrosoftfabric.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputminio.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputmsk.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputnewrelic.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputnewrelicevents.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputopentelemetry.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputprometheus.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputring.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputrouter.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputs3.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsamplesresponse.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsecuritylake.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsentinel.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsentineloneaisiem.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputservicenow.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsignalfx.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsnmp.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsns.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsplunk.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsplunkhec.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsplunklb.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsqs.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputstatsd.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputstatsdext.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsumologic.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputsyslog.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputtcpjson.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputtestrequest.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputtestresponse.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputwavefront.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputwebhook.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/outputxsiam.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/packinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/packinstallinfo.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/packrequestbody_union.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/packupgraderequest.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/pipeline.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/pipelinefunctionconf.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/productscore.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/rbacresource.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/resourcepolicy.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/routeconf.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/routes.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/routesroute.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/runnablejob.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/schemeclientoauth.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/security.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/teamaccesscontrollist.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/updateconfiggroupbyproductandidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/updateinputbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/updateoutputbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/updatepacksbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/updatepacksop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/updatepipelinebyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/updateroutesbyidop.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/uploadpackresponse.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/useraccesscontrollist.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/models/workertypes.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/py.typed +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/sdkconfiguration.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/types/__init__.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/types/basemodel.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/__init__.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/annotations.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/datetimes.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/enums.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/eventstreaming.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/headers.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/logger.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/metadata.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/requestbodies.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/security.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/serializers.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/unmarshal_json_response.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/url.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/utils/values.py +0 -0
- {cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/versions.py +0 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.0b18
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
|
+
License-File: LICENSE
|
|
5
6
|
Author: Speakeasy
|
|
6
7
|
Requires-Python: >=3.9.2
|
|
7
8
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -417,6 +418,11 @@ with CriblControlPlane(
|
|
|
417
418
|
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#create) - Add an HEC token and optional metadata to a Splunk HEC Source
|
|
418
419
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#update) - Update metadata for an HEC token for a Splunk HEC Source
|
|
419
420
|
|
|
421
|
+
#### [system.settings.cribl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md)
|
|
422
|
+
|
|
423
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md#list) - Get Cribl system settings
|
|
424
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md#update) - Update Cribl system settings
|
|
425
|
+
|
|
420
426
|
#### [versions.branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
|
|
421
427
|
|
|
422
428
|
* [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
|
|
@@ -700,7 +706,7 @@ with CriblControlPlane(
|
|
|
700
706
|
|
|
701
707
|
|
|
702
708
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
703
|
-
* [`HealthServerStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthserverstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of
|
|
709
|
+
* [`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 65 methods.*
|
|
704
710
|
* [`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.
|
|
705
711
|
|
|
706
712
|
</details>
|
|
@@ -399,6 +399,11 @@ with CriblControlPlane(
|
|
|
399
399
|
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#create) - Add an HEC token and optional metadata to a Splunk HEC Source
|
|
400
400
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#update) - Update metadata for an HEC token for a Splunk HEC Source
|
|
401
401
|
|
|
402
|
+
#### [system.settings.cribl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md)
|
|
403
|
+
|
|
404
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md#list) - Get Cribl system settings
|
|
405
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md#update) - Update Cribl system settings
|
|
406
|
+
|
|
402
407
|
#### [versions.branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
|
|
403
408
|
|
|
404
409
|
* [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
|
|
@@ -682,7 +687,7 @@ with CriblControlPlane(
|
|
|
682
687
|
|
|
683
688
|
|
|
684
689
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
685
|
-
* [`HealthServerStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthserverstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of
|
|
690
|
+
* [`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 65 methods.*
|
|
686
691
|
* [`ResponseValidationError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
|
|
687
692
|
|
|
688
693
|
</details>
|
{cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/_version.py
RENAMED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "cribl-control-plane"
|
|
6
|
-
__version__: str = "0.4.
|
|
7
|
-
__openapi_doc_version__: str = "4.16.0-alpha.
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.4.
|
|
6
|
+
__version__: str = "0.4.0b18"
|
|
7
|
+
__openapi_doc_version__: str = "4.16.0-alpha.1765234963760-e3e85e6f"
|
|
8
|
+
__gen_version__: str = "2.767.2"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.4.0b18 2.767.2 4.16.0-alpha.1765234963760-e3e85e6f cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -76,16 +76,21 @@ class ACL(BaseSDK):
|
|
|
76
76
|
accept_header_value="application/json",
|
|
77
77
|
http_headers=http_headers,
|
|
78
78
|
security=self.sdk_configuration.security,
|
|
79
|
+
allow_empty_value=None,
|
|
79
80
|
timeout_ms=timeout_ms,
|
|
80
81
|
)
|
|
81
82
|
|
|
82
83
|
if retries == UNSET:
|
|
83
84
|
if self.sdk_configuration.retry_config is not UNSET:
|
|
84
85
|
retries = self.sdk_configuration.retry_config
|
|
86
|
+
else:
|
|
87
|
+
retries = utils.RetryConfig(
|
|
88
|
+
"backoff", utils.BackoffStrategy(500, 60000, 1.5, 3600000), True
|
|
89
|
+
)
|
|
85
90
|
|
|
86
91
|
retry_config = None
|
|
87
92
|
if isinstance(retries, utils.RetryConfig):
|
|
88
|
-
retry_config = (retries, ["429"
|
|
93
|
+
retry_config = (retries, ["429"])
|
|
89
94
|
|
|
90
95
|
http_res = self.do_request(
|
|
91
96
|
hook_ctx=HookContext(
|
|
@@ -171,16 +176,21 @@ class ACL(BaseSDK):
|
|
|
171
176
|
accept_header_value="application/json",
|
|
172
177
|
http_headers=http_headers,
|
|
173
178
|
security=self.sdk_configuration.security,
|
|
179
|
+
allow_empty_value=None,
|
|
174
180
|
timeout_ms=timeout_ms,
|
|
175
181
|
)
|
|
176
182
|
|
|
177
183
|
if retries == UNSET:
|
|
178
184
|
if self.sdk_configuration.retry_config is not UNSET:
|
|
179
185
|
retries = self.sdk_configuration.retry_config
|
|
186
|
+
else:
|
|
187
|
+
retries = utils.RetryConfig(
|
|
188
|
+
"backoff", utils.BackoffStrategy(500, 60000, 1.5, 3600000), True
|
|
189
|
+
)
|
|
180
190
|
|
|
181
191
|
retry_config = None
|
|
182
192
|
if isinstance(retries, utils.RetryConfig):
|
|
183
|
-
retry_config = (retries, ["429"
|
|
193
|
+
retry_config = (retries, ["429"])
|
|
184
194
|
|
|
185
195
|
http_res = await self.do_request_async(
|
|
186
196
|
hook_ctx=HookContext(
|
{cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/basesdk.py
RENAMED
|
@@ -64,6 +64,7 @@ class BaseSDK:
|
|
|
64
64
|
] = None,
|
|
65
65
|
url_override: Optional[str] = None,
|
|
66
66
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
67
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
67
68
|
) -> httpx.Request:
|
|
68
69
|
client = self.sdk_configuration.async_client
|
|
69
70
|
return self._build_request_with_client(
|
|
@@ -84,6 +85,7 @@ class BaseSDK:
|
|
|
84
85
|
get_serialized_body,
|
|
85
86
|
url_override,
|
|
86
87
|
http_headers,
|
|
88
|
+
allow_empty_value,
|
|
87
89
|
)
|
|
88
90
|
|
|
89
91
|
def _build_request(
|
|
@@ -106,6 +108,7 @@ class BaseSDK:
|
|
|
106
108
|
] = None,
|
|
107
109
|
url_override: Optional[str] = None,
|
|
108
110
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
111
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
109
112
|
) -> httpx.Request:
|
|
110
113
|
client = self.sdk_configuration.client
|
|
111
114
|
return self._build_request_with_client(
|
|
@@ -126,6 +129,7 @@ class BaseSDK:
|
|
|
126
129
|
get_serialized_body,
|
|
127
130
|
url_override,
|
|
128
131
|
http_headers,
|
|
132
|
+
allow_empty_value,
|
|
129
133
|
)
|
|
130
134
|
|
|
131
135
|
def _build_request_with_client(
|
|
@@ -149,6 +153,7 @@ class BaseSDK:
|
|
|
149
153
|
] = None,
|
|
150
154
|
url_override: Optional[str] = None,
|
|
151
155
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
156
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
152
157
|
) -> httpx.Request:
|
|
153
158
|
query_params = {}
|
|
154
159
|
|
|
@@ -164,6 +169,7 @@ class BaseSDK:
|
|
|
164
169
|
query_params = utils.get_query_params(
|
|
165
170
|
request if request_has_query_params else None,
|
|
166
171
|
_globals if request_has_query_params else None,
|
|
172
|
+
allow_empty_value,
|
|
167
173
|
)
|
|
168
174
|
else:
|
|
169
175
|
# Pick up the query parameter from the override so they can be
|
{cribl_control_plane-0.4.0b3 → cribl_control_plane-0.4.0b18}/src/cribl_control_plane/branches.py
RENAMED
|
@@ -49,16 +49,21 @@ class Branches(BaseSDK):
|
|
|
49
49
|
accept_header_value="application/json",
|
|
50
50
|
http_headers=http_headers,
|
|
51
51
|
security=self.sdk_configuration.security,
|
|
52
|
+
allow_empty_value=None,
|
|
52
53
|
timeout_ms=timeout_ms,
|
|
53
54
|
)
|
|
54
55
|
|
|
55
56
|
if retries == UNSET:
|
|
56
57
|
if self.sdk_configuration.retry_config is not UNSET:
|
|
57
58
|
retries = self.sdk_configuration.retry_config
|
|
59
|
+
else:
|
|
60
|
+
retries = utils.RetryConfig(
|
|
61
|
+
"backoff", utils.BackoffStrategy(500, 60000, 1.5, 3600000), True
|
|
62
|
+
)
|
|
58
63
|
|
|
59
64
|
retry_config = None
|
|
60
65
|
if isinstance(retries, utils.RetryConfig):
|
|
61
|
-
retry_config = (retries, ["429"
|
|
66
|
+
retry_config = (retries, ["429"])
|
|
62
67
|
|
|
63
68
|
http_res = self.do_request(
|
|
64
69
|
hook_ctx=HookContext(
|
|
@@ -129,16 +134,21 @@ class Branches(BaseSDK):
|
|
|
129
134
|
accept_header_value="application/json",
|
|
130
135
|
http_headers=http_headers,
|
|
131
136
|
security=self.sdk_configuration.security,
|
|
137
|
+
allow_empty_value=None,
|
|
132
138
|
timeout_ms=timeout_ms,
|
|
133
139
|
)
|
|
134
140
|
|
|
135
141
|
if retries == UNSET:
|
|
136
142
|
if self.sdk_configuration.retry_config is not UNSET:
|
|
137
143
|
retries = self.sdk_configuration.retry_config
|
|
144
|
+
else:
|
|
145
|
+
retries = utils.RetryConfig(
|
|
146
|
+
"backoff", utils.BackoffStrategy(500, 60000, 1.5, 3600000), True
|
|
147
|
+
)
|
|
138
148
|
|
|
139
149
|
retry_config = None
|
|
140
150
|
if isinstance(retries, utils.RetryConfig):
|
|
141
|
-
retry_config = (retries, ["429"
|
|
151
|
+
retry_config = (retries, ["429"])
|
|
142
152
|
|
|
143
153
|
http_res = await self.do_request_async(
|
|
144
154
|
hook_ctx=HookContext(
|
|
@@ -209,16 +219,21 @@ class Branches(BaseSDK):
|
|
|
209
219
|
accept_header_value="application/json",
|
|
210
220
|
http_headers=http_headers,
|
|
211
221
|
security=self.sdk_configuration.security,
|
|
222
|
+
allow_empty_value=None,
|
|
212
223
|
timeout_ms=timeout_ms,
|
|
213
224
|
)
|
|
214
225
|
|
|
215
226
|
if retries == UNSET:
|
|
216
227
|
if self.sdk_configuration.retry_config is not UNSET:
|
|
217
228
|
retries = self.sdk_configuration.retry_config
|
|
229
|
+
else:
|
|
230
|
+
retries = utils.RetryConfig(
|
|
231
|
+
"backoff", utils.BackoffStrategy(500, 60000, 1.5, 3600000), True
|
|
232
|
+
)
|
|
218
233
|
|
|
219
234
|
retry_config = None
|
|
220
235
|
if isinstance(retries, utils.RetryConfig):
|
|
221
|
-
retry_config = (retries, ["429"
|
|
236
|
+
retry_config = (retries, ["429"])
|
|
222
237
|
|
|
223
238
|
http_res = self.do_request(
|
|
224
239
|
hook_ctx=HookContext(
|
|
@@ -289,16 +304,21 @@ class Branches(BaseSDK):
|
|
|
289
304
|
accept_header_value="application/json",
|
|
290
305
|
http_headers=http_headers,
|
|
291
306
|
security=self.sdk_configuration.security,
|
|
307
|
+
allow_empty_value=None,
|
|
292
308
|
timeout_ms=timeout_ms,
|
|
293
309
|
)
|
|
294
310
|
|
|
295
311
|
if retries == UNSET:
|
|
296
312
|
if self.sdk_configuration.retry_config is not UNSET:
|
|
297
313
|
retries = self.sdk_configuration.retry_config
|
|
314
|
+
else:
|
|
315
|
+
retries = utils.RetryConfig(
|
|
316
|
+
"backoff", utils.BackoffStrategy(500, 60000, 1.5, 3600000), True
|
|
317
|
+
)
|
|
298
318
|
|
|
299
319
|
retry_config = None
|
|
300
320
|
if isinstance(retries, utils.RetryConfig):
|
|
301
|
-
retry_config = (retries, ["429"
|
|
321
|
+
retry_config = (retries, ["429"])
|
|
302
322
|
|
|
303
323
|
http_res = await self.do_request_async(
|
|
304
324
|
hook_ctx=HookContext(
|