cribl-control-plane 0.0.17__tar.gz → 0.0.18__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cribl-control-plane might be problematic. Click here for more details.
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/PKG-INFO +18 -2
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/README-PYPI.md +17 -1
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/pyproject.toml +1 -1
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/_version.py +3 -3
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/__init__.py +241 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/createversioncommitop.py +24 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/createversionpushop.py +23 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/createversionrevertop.py +47 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/createversionsyncop.py +23 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/createversionundoop.py +37 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/getversionbranchop.py +23 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/getversioncountop.py +47 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/getversioncurrentbranchop.py +23 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/getversiondiffop.py +63 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/getversionfilesop.py +48 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/getversioninfoop.py +24 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/getversionshowop.py +63 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/getversionstatusop.py +38 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/gitcommitparams.py +23 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/gitcommitsummary.py +68 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/gitfile.py +20 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/gitfilesresponse.py +22 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/gitinfo.py +23 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/gitrevertparams.py +20 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/gitrevertresult.py +48 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/models/gitstatusresult.py +73 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/sdk.py +4 -0
- cribl_control_plane-0.0.18/src/cribl_control_plane/versioning.py +2309 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/py.typed +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/__init__.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/_hooks/__init__.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/_hooks/clientcredentials.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/_hooks/registration.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/_hooks/sdkhooks.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/_hooks/types.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/auth_sdk.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/basesdk.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/destinations.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/errors/__init__.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/errors/apierror.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/errors/criblcontrolplaneerror.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/errors/error.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/errors/healthstatus_error.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/errors/no_response_error.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/errors/responsevalidationerror.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/health.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/httpclient.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/addhectokenrequest.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/authtoken.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/createinputhectokenbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/createinputop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/createoutputop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/createoutputtestbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/createpipelineop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/createroutesappendbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/criblevent.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/deleteinputbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/deleteoutputbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/deleteoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/deletepipelinebyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/getinputbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/getoutputbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/getoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/getoutputsamplesbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/getpipelinebyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/getroutesbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/healthstatus.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/input.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputappscope.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputazureblob.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputcollection.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputconfluentcloud.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputcribl.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputcriblhttp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputcribllakehttp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputcriblmetrics.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputcribltcp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputcrowdstrike.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputdatadogagent.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputdatagen.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputedgeprometheus.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputelastic.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputeventhub.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputexec.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputfile.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputfirehose.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputgooglepubsub.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputgrafana_union.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputhttp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputhttpraw.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputjournalfiles.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputkafka.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputkinesis.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputkubeevents.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputkubelogs.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputkubemetrics.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputloki.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputmetrics.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputmodeldriventelemetry.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputmsk.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputnetflow.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputoffice365mgmt.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputoffice365msgtrace.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputoffice365service.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputopentelemetry.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputprometheus.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputprometheusrw.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputrawudp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputs3.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputs3inventory.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputsecuritylake.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputsnmp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputsplunk.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputsplunkhec.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputsplunksearch.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputsqs.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputsyslog_union.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputsystemmetrics.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputsystemstate.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputtcp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputtcpjson.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputwef.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputwindowsmetrics.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputwineventlogs.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputwiz.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/inputzscalerhec.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/listinputop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/listoutputop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/listpipelineop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/listroutesop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/logininfo.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/output.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputazureblob.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputazuredataexplorer.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputazureeventhub.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputazurelogs.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputclickhouse.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputcloudwatch.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputconfluentcloud.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputcriblhttp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputcribllake.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputcribltcp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputcrowdstrikenextgensiem.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputdatadog.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputdataset.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputdefault.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputdevnull.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputdiskspool.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputdls3.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputdynatracehttp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputdynatraceotlp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputelastic.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputelasticcloud.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputexabeam.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputfilesystem.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputgooglechronicle.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputgooglecloudlogging.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputgooglecloudstorage.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputgooglepubsub.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputgrafanacloud.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputgraphite.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputhoneycomb.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputhumiohec.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputinfluxdb.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputkafka.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputkinesis.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputloki.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputminio.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputmsk.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputnetflow.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputnewrelic.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputnewrelicevents.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputopentelemetry.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputprometheus.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputring.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputrouter.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputs3.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsamplesresponse.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsecuritylake.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsentinel.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsentineloneaisiem.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputservicenow.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsignalfx.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsnmp.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsns.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsplunk.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsplunkhec.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsplunklb.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsqs.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputstatsd.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputstatsdext.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsumologic.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputsyslog.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputtcpjson.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputtestrequest.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputtestresponse.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputwavefront.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputwebhook.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/outputxsiam.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/pipeline.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/pipelinefunctionconf.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/routecloneconf.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/routeconf.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/routes.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/routesroute.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/routesroute_input.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/schemeclientoauth.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/security.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/updatehectokenrequest.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/updateinputbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/updateoutputbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/updatepipelinebyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/updateroutesbyidop.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/pipelines.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/py.typed +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/routes_sdk.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/sdkconfiguration.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/sources.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/types/__init__.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/types/basemodel.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/__init__.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/annotations.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/datetimes.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/enums.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/eventstreaming.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/forms.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/headers.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/logger.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/metadata.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/queryparams.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/requestbodies.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/retries.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/security.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/serializers.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/unmarshal_json_response.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/url.py +0 -0
- {cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/utils/values.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.18
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -243,6 +243,22 @@ with CriblControlPlane(
|
|
|
243
243
|
* [create_source_hec_token_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create_source_hec_token_by_id) - Add token and optional metadata to an existing HEC Source
|
|
244
244
|
* [update_source_hec_token_by_id_and_token](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update_source_hec_token_by_id_and_token) - Update token metadata on existing HEC Source
|
|
245
245
|
|
|
246
|
+
### [versioning](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md)
|
|
247
|
+
|
|
248
|
+
* [get_version_branch](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_branch) - get the list of branches
|
|
249
|
+
* [create_version_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_commit) - create a new commit containing the current configs the given log message describing the changes.
|
|
250
|
+
* [get_version_count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_count) - get the count of files of changed
|
|
251
|
+
* [get_version_current_branch](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_current_branch) - returns git branch that the config is checked out to, if any
|
|
252
|
+
* [get_version_diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_diff) - get the textual diff for given commit
|
|
253
|
+
* [get_version_files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_files) - get the files changed
|
|
254
|
+
* [get_version_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_info) - Get info about versioning availability
|
|
255
|
+
* [create_version_push](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_push) - push the current configs to the remote repository.
|
|
256
|
+
* [create_version_revert](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_revert) - revert a commit
|
|
257
|
+
* [get_version_show](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_show) - get the log message and textual diff for given commit
|
|
258
|
+
* [get_version_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_status) - get the the working tree status
|
|
259
|
+
* [create_version_sync](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_sync) - syncs with remote repo via POST requests
|
|
260
|
+
* [create_version_undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_undo) - undo the last commit
|
|
261
|
+
|
|
246
262
|
</details>
|
|
247
263
|
<!-- End Available Resources and Operations [operations] -->
|
|
248
264
|
|
|
@@ -360,7 +376,7 @@ with CriblControlPlane(
|
|
|
360
376
|
|
|
361
377
|
|
|
362
378
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
363
|
-
* [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of
|
|
379
|
+
* [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 40 methods.*
|
|
364
380
|
* [`ResponseValidationError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
|
|
365
381
|
|
|
366
382
|
</details>
|
|
@@ -226,6 +226,22 @@ with CriblControlPlane(
|
|
|
226
226
|
* [create_source_hec_token_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create_source_hec_token_by_id) - Add token and optional metadata to an existing HEC Source
|
|
227
227
|
* [update_source_hec_token_by_id_and_token](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update_source_hec_token_by_id_and_token) - Update token metadata on existing HEC Source
|
|
228
228
|
|
|
229
|
+
### [versioning](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md)
|
|
230
|
+
|
|
231
|
+
* [get_version_branch](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_branch) - get the list of branches
|
|
232
|
+
* [create_version_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_commit) - create a new commit containing the current configs the given log message describing the changes.
|
|
233
|
+
* [get_version_count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_count) - get the count of files of changed
|
|
234
|
+
* [get_version_current_branch](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_current_branch) - returns git branch that the config is checked out to, if any
|
|
235
|
+
* [get_version_diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_diff) - get the textual diff for given commit
|
|
236
|
+
* [get_version_files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_files) - get the files changed
|
|
237
|
+
* [get_version_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_info) - Get info about versioning availability
|
|
238
|
+
* [create_version_push](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_push) - push the current configs to the remote repository.
|
|
239
|
+
* [create_version_revert](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_revert) - revert a commit
|
|
240
|
+
* [get_version_show](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_show) - get the log message and textual diff for given commit
|
|
241
|
+
* [get_version_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_version_status) - get the the working tree status
|
|
242
|
+
* [create_version_sync](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_sync) - syncs with remote repo via POST requests
|
|
243
|
+
* [create_version_undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_version_undo) - undo the last commit
|
|
244
|
+
|
|
229
245
|
</details>
|
|
230
246
|
<!-- End Available Resources and Operations [operations] -->
|
|
231
247
|
|
|
@@ -343,7 +359,7 @@ with CriblControlPlane(
|
|
|
343
359
|
|
|
344
360
|
|
|
345
361
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
346
|
-
* [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of
|
|
362
|
+
* [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 40 methods.*
|
|
347
363
|
* [`ResponseValidationError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
|
|
348
364
|
|
|
349
365
|
</details>
|
{cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/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.0.
|
|
7
|
-
__openapi_doc_version__: str = "4.14.0-alpha.
|
|
6
|
+
__version__: str = "0.0.18"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1753735749224-0a5d0b46"
|
|
8
8
|
__gen_version__: str = "2.660.0"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.0.18 2.660.0 4.14.0-alpha.1753735749224-0a5d0b46 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
{cribl_control_plane-0.0.17 → cribl_control_plane-0.0.18}/src/cribl_control_plane/models/__init__.py
RENAMED
|
@@ -1783,6 +1783,30 @@ if TYPE_CHECKING:
|
|
|
1783
1783
|
CreateRoutesAppendByIDResponse,
|
|
1784
1784
|
CreateRoutesAppendByIDResponseTypedDict,
|
|
1785
1785
|
)
|
|
1786
|
+
from .createversioncommitop import (
|
|
1787
|
+
CreateVersionCommitResponse,
|
|
1788
|
+
CreateVersionCommitResponseTypedDict,
|
|
1789
|
+
)
|
|
1790
|
+
from .createversionpushop import (
|
|
1791
|
+
CreateVersionPushResponse,
|
|
1792
|
+
CreateVersionPushResponseTypedDict,
|
|
1793
|
+
)
|
|
1794
|
+
from .createversionrevertop import (
|
|
1795
|
+
CreateVersionRevertRequest,
|
|
1796
|
+
CreateVersionRevertRequestTypedDict,
|
|
1797
|
+
CreateVersionRevertResponse,
|
|
1798
|
+
CreateVersionRevertResponseTypedDict,
|
|
1799
|
+
)
|
|
1800
|
+
from .createversionsyncop import (
|
|
1801
|
+
CreateVersionSyncResponse,
|
|
1802
|
+
CreateVersionSyncResponseTypedDict,
|
|
1803
|
+
)
|
|
1804
|
+
from .createversionundoop import (
|
|
1805
|
+
CreateVersionUndoRequest,
|
|
1806
|
+
CreateVersionUndoRequestTypedDict,
|
|
1807
|
+
CreateVersionUndoResponse,
|
|
1808
|
+
CreateVersionUndoResponseTypedDict,
|
|
1809
|
+
)
|
|
1786
1810
|
from .criblevent import CriblEvent, CriblEventTypedDict
|
|
1787
1811
|
from .deleteinputbyidop import (
|
|
1788
1812
|
DeleteInputByIDRequest,
|
|
@@ -1844,6 +1868,79 @@ if TYPE_CHECKING:
|
|
|
1844
1868
|
GetRoutesByIDResponse,
|
|
1845
1869
|
GetRoutesByIDResponseTypedDict,
|
|
1846
1870
|
)
|
|
1871
|
+
from .getversionbranchop import (
|
|
1872
|
+
GetVersionBranchResponse,
|
|
1873
|
+
GetVersionBranchResponseTypedDict,
|
|
1874
|
+
)
|
|
1875
|
+
from .getversioncountop import (
|
|
1876
|
+
GetVersionCountRequest,
|
|
1877
|
+
GetVersionCountRequestTypedDict,
|
|
1878
|
+
GetVersionCountResponse,
|
|
1879
|
+
GetVersionCountResponseTypedDict,
|
|
1880
|
+
)
|
|
1881
|
+
from .getversioncurrentbranchop import (
|
|
1882
|
+
GetVersionCurrentBranchResponse,
|
|
1883
|
+
GetVersionCurrentBranchResponseTypedDict,
|
|
1884
|
+
)
|
|
1885
|
+
from .getversiondiffop import (
|
|
1886
|
+
GetVersionDiffRequest,
|
|
1887
|
+
GetVersionDiffRequestTypedDict,
|
|
1888
|
+
GetVersionDiffResponse,
|
|
1889
|
+
GetVersionDiffResponseTypedDict,
|
|
1890
|
+
)
|
|
1891
|
+
from .getversionfilesop import (
|
|
1892
|
+
GetVersionFilesRequest,
|
|
1893
|
+
GetVersionFilesRequestTypedDict,
|
|
1894
|
+
GetVersionFilesResponse,
|
|
1895
|
+
GetVersionFilesResponseTypedDict,
|
|
1896
|
+
)
|
|
1897
|
+
from .getversioninfoop import (
|
|
1898
|
+
GetVersionInfoResponse,
|
|
1899
|
+
GetVersionInfoResponseTypedDict,
|
|
1900
|
+
)
|
|
1901
|
+
from .getversionshowop import (
|
|
1902
|
+
GetVersionShowRequest,
|
|
1903
|
+
GetVersionShowRequestTypedDict,
|
|
1904
|
+
GetVersionShowResponse,
|
|
1905
|
+
GetVersionShowResponseTypedDict,
|
|
1906
|
+
)
|
|
1907
|
+
from .getversionstatusop import (
|
|
1908
|
+
GetVersionStatusRequest,
|
|
1909
|
+
GetVersionStatusRequestTypedDict,
|
|
1910
|
+
GetVersionStatusResponse,
|
|
1911
|
+
GetVersionStatusResponseTypedDict,
|
|
1912
|
+
)
|
|
1913
|
+
from .gitcommitparams import GitCommitParams, GitCommitParamsTypedDict
|
|
1914
|
+
from .gitcommitsummary import (
|
|
1915
|
+
Author,
|
|
1916
|
+
AuthorTypedDict,
|
|
1917
|
+
GitCommitSummary,
|
|
1918
|
+
GitCommitSummaryFiles,
|
|
1919
|
+
GitCommitSummaryFilesTypedDict,
|
|
1920
|
+
GitCommitSummaryTypedDict,
|
|
1921
|
+
Summary,
|
|
1922
|
+
SummaryTypedDict,
|
|
1923
|
+
)
|
|
1924
|
+
from .gitfile import GitFile, GitFileTypedDict
|
|
1925
|
+
from .gitfilesresponse import GitFilesResponse, GitFilesResponseTypedDict
|
|
1926
|
+
from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteTypedDict
|
|
1927
|
+
from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
|
|
1928
|
+
from .gitrevertresult import (
|
|
1929
|
+
Audit,
|
|
1930
|
+
AuditTypedDict,
|
|
1931
|
+
GitRevertResult,
|
|
1932
|
+
GitRevertResultFiles,
|
|
1933
|
+
GitRevertResultFilesTypedDict,
|
|
1934
|
+
GitRevertResultTypedDict,
|
|
1935
|
+
)
|
|
1936
|
+
from .gitstatusresult import (
|
|
1937
|
+
File,
|
|
1938
|
+
FileTypedDict,
|
|
1939
|
+
GitStatusResult,
|
|
1940
|
+
GitStatusResultTypedDict,
|
|
1941
|
+
Renamed,
|
|
1942
|
+
RenamedTypedDict,
|
|
1943
|
+
)
|
|
1847
1944
|
from .healthstatus import HealthStatus, HealthStatusTypedDict, Role, Status
|
|
1848
1945
|
from .input import Input, InputTypedDict
|
|
1849
1946
|
from .inputappscope import (
|
|
@@ -4426,6 +4523,8 @@ __all__ = [
|
|
|
4426
4523
|
"AdditionalPropertyTypedDict",
|
|
4427
4524
|
"Allow",
|
|
4428
4525
|
"AllowTypedDict",
|
|
4526
|
+
"Audit",
|
|
4527
|
+
"AuditTypedDict",
|
|
4429
4528
|
"AuthAuthenticationMethodElastic",
|
|
4430
4529
|
"AuthElastic",
|
|
4431
4530
|
"AuthElasticCloud",
|
|
@@ -4495,6 +4594,8 @@ __all__ = [
|
|
|
4495
4594
|
"AuthenticationTypePrometheus",
|
|
4496
4595
|
"AuthenticationTypePrometheusRw",
|
|
4497
4596
|
"AuthenticationTypeSplunkSearch",
|
|
4597
|
+
"Author",
|
|
4598
|
+
"AuthorTypedDict",
|
|
4498
4599
|
"AwsAuthenticationMethod",
|
|
4499
4600
|
"AwsAuthenticationMethodAuthenticationMethodEdgePrometheus",
|
|
4500
4601
|
"AwsAuthenticationMethodAuthenticationMethodPrometheus",
|
|
@@ -5436,6 +5537,20 @@ __all__ = [
|
|
|
5436
5537
|
"CreateRoutesAppendByIDRequestTypedDict",
|
|
5437
5538
|
"CreateRoutesAppendByIDResponse",
|
|
5438
5539
|
"CreateRoutesAppendByIDResponseTypedDict",
|
|
5540
|
+
"CreateVersionCommitResponse",
|
|
5541
|
+
"CreateVersionCommitResponseTypedDict",
|
|
5542
|
+
"CreateVersionPushResponse",
|
|
5543
|
+
"CreateVersionPushResponseTypedDict",
|
|
5544
|
+
"CreateVersionRevertRequest",
|
|
5545
|
+
"CreateVersionRevertRequestTypedDict",
|
|
5546
|
+
"CreateVersionRevertResponse",
|
|
5547
|
+
"CreateVersionRevertResponseTypedDict",
|
|
5548
|
+
"CreateVersionSyncResponse",
|
|
5549
|
+
"CreateVersionSyncResponseTypedDict",
|
|
5550
|
+
"CreateVersionUndoRequest",
|
|
5551
|
+
"CreateVersionUndoRequestTypedDict",
|
|
5552
|
+
"CreateVersionUndoResponse",
|
|
5553
|
+
"CreateVersionUndoResponseTypedDict",
|
|
5439
5554
|
"CriblEvent",
|
|
5440
5555
|
"CriblEventTypedDict",
|
|
5441
5556
|
"CustomLabel",
|
|
@@ -5568,6 +5683,8 @@ __all__ = [
|
|
|
5568
5683
|
"FailedRequestLoggingModeSumoLogic",
|
|
5569
5684
|
"FailedRequestLoggingModeWavefront",
|
|
5570
5685
|
"FieldName",
|
|
5686
|
+
"File",
|
|
5687
|
+
"FileTypedDict",
|
|
5571
5688
|
"Firewall",
|
|
5572
5689
|
"FirewallTypedDict",
|
|
5573
5690
|
"FlushPeriodSec",
|
|
@@ -5602,6 +5719,52 @@ __all__ = [
|
|
|
5602
5719
|
"GetRoutesByIDRequestTypedDict",
|
|
5603
5720
|
"GetRoutesByIDResponse",
|
|
5604
5721
|
"GetRoutesByIDResponseTypedDict",
|
|
5722
|
+
"GetVersionBranchResponse",
|
|
5723
|
+
"GetVersionBranchResponseTypedDict",
|
|
5724
|
+
"GetVersionCountRequest",
|
|
5725
|
+
"GetVersionCountRequestTypedDict",
|
|
5726
|
+
"GetVersionCountResponse",
|
|
5727
|
+
"GetVersionCountResponseTypedDict",
|
|
5728
|
+
"GetVersionCurrentBranchResponse",
|
|
5729
|
+
"GetVersionCurrentBranchResponseTypedDict",
|
|
5730
|
+
"GetVersionDiffRequest",
|
|
5731
|
+
"GetVersionDiffRequestTypedDict",
|
|
5732
|
+
"GetVersionDiffResponse",
|
|
5733
|
+
"GetVersionDiffResponseTypedDict",
|
|
5734
|
+
"GetVersionFilesRequest",
|
|
5735
|
+
"GetVersionFilesRequestTypedDict",
|
|
5736
|
+
"GetVersionFilesResponse",
|
|
5737
|
+
"GetVersionFilesResponseTypedDict",
|
|
5738
|
+
"GetVersionInfoResponse",
|
|
5739
|
+
"GetVersionInfoResponseTypedDict",
|
|
5740
|
+
"GetVersionShowRequest",
|
|
5741
|
+
"GetVersionShowRequestTypedDict",
|
|
5742
|
+
"GetVersionShowResponse",
|
|
5743
|
+
"GetVersionShowResponseTypedDict",
|
|
5744
|
+
"GetVersionStatusRequest",
|
|
5745
|
+
"GetVersionStatusRequestTypedDict",
|
|
5746
|
+
"GetVersionStatusResponse",
|
|
5747
|
+
"GetVersionStatusResponseTypedDict",
|
|
5748
|
+
"GitCommitParams",
|
|
5749
|
+
"GitCommitParamsTypedDict",
|
|
5750
|
+
"GitCommitSummary",
|
|
5751
|
+
"GitCommitSummaryFiles",
|
|
5752
|
+
"GitCommitSummaryFilesTypedDict",
|
|
5753
|
+
"GitCommitSummaryTypedDict",
|
|
5754
|
+
"GitFile",
|
|
5755
|
+
"GitFileTypedDict",
|
|
5756
|
+
"GitFilesResponse",
|
|
5757
|
+
"GitFilesResponseTypedDict",
|
|
5758
|
+
"GitInfo",
|
|
5759
|
+
"GitInfoTypedDict",
|
|
5760
|
+
"GitRevertParams",
|
|
5761
|
+
"GitRevertParamsTypedDict",
|
|
5762
|
+
"GitRevertResult",
|
|
5763
|
+
"GitRevertResultFiles",
|
|
5764
|
+
"GitRevertResultFilesTypedDict",
|
|
5765
|
+
"GitRevertResultTypedDict",
|
|
5766
|
+
"GitStatusResult",
|
|
5767
|
+
"GitStatusResultTypedDict",
|
|
5605
5768
|
"GoogleAuthenticationMethodGoogleCloudLogging",
|
|
5606
5769
|
"HTTPCompressCompression131",
|
|
5607
5770
|
"HTTPCompressCompressionHTTP",
|
|
@@ -8289,6 +8452,10 @@ __all__ = [
|
|
|
8289
8452
|
"RecordTypePrometheus",
|
|
8290
8453
|
"RegionNewrelicEvents",
|
|
8291
8454
|
"RegionSentinelOneAiSiem",
|
|
8455
|
+
"Remote",
|
|
8456
|
+
"RemoteTypedDict",
|
|
8457
|
+
"Renamed",
|
|
8458
|
+
"RenamedTypedDict",
|
|
8292
8459
|
"ReportLevel",
|
|
8293
8460
|
"ReportMethod",
|
|
8294
8461
|
"RequestFormatCrowdstrikeNextGenSiem",
|
|
@@ -8416,6 +8583,8 @@ __all__ = [
|
|
|
8416
8583
|
"SubscriptionPlanOffice365MsgTrace",
|
|
8417
8584
|
"SubscriptionPlanOffice365Service",
|
|
8418
8585
|
"SubscriptionTypedDict",
|
|
8586
|
+
"Summary",
|
|
8587
|
+
"SummaryTypedDict",
|
|
8419
8588
|
"TLSSettingsClientSide131",
|
|
8420
8589
|
"TLSSettingsClientSide131TypedDict",
|
|
8421
8590
|
"TLSSettingsClientSideAzureEventhub",
|
|
@@ -10319,6 +10488,20 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10319
10488
|
"CreateRoutesAppendByIDRequestTypedDict": ".createroutesappendbyidop",
|
|
10320
10489
|
"CreateRoutesAppendByIDResponse": ".createroutesappendbyidop",
|
|
10321
10490
|
"CreateRoutesAppendByIDResponseTypedDict": ".createroutesappendbyidop",
|
|
10491
|
+
"CreateVersionCommitResponse": ".createversioncommitop",
|
|
10492
|
+
"CreateVersionCommitResponseTypedDict": ".createversioncommitop",
|
|
10493
|
+
"CreateVersionPushResponse": ".createversionpushop",
|
|
10494
|
+
"CreateVersionPushResponseTypedDict": ".createversionpushop",
|
|
10495
|
+
"CreateVersionRevertRequest": ".createversionrevertop",
|
|
10496
|
+
"CreateVersionRevertRequestTypedDict": ".createversionrevertop",
|
|
10497
|
+
"CreateVersionRevertResponse": ".createversionrevertop",
|
|
10498
|
+
"CreateVersionRevertResponseTypedDict": ".createversionrevertop",
|
|
10499
|
+
"CreateVersionSyncResponse": ".createversionsyncop",
|
|
10500
|
+
"CreateVersionSyncResponseTypedDict": ".createversionsyncop",
|
|
10501
|
+
"CreateVersionUndoRequest": ".createversionundoop",
|
|
10502
|
+
"CreateVersionUndoRequestTypedDict": ".createversionundoop",
|
|
10503
|
+
"CreateVersionUndoResponse": ".createversionundoop",
|
|
10504
|
+
"CreateVersionUndoResponseTypedDict": ".createversionundoop",
|
|
10322
10505
|
"CriblEvent": ".criblevent",
|
|
10323
10506
|
"CriblEventTypedDict": ".criblevent",
|
|
10324
10507
|
"DeleteInputByIDRequest": ".deleteinputbyidop",
|
|
@@ -10361,6 +10544,64 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10361
10544
|
"GetRoutesByIDRequestTypedDict": ".getroutesbyidop",
|
|
10362
10545
|
"GetRoutesByIDResponse": ".getroutesbyidop",
|
|
10363
10546
|
"GetRoutesByIDResponseTypedDict": ".getroutesbyidop",
|
|
10547
|
+
"GetVersionBranchResponse": ".getversionbranchop",
|
|
10548
|
+
"GetVersionBranchResponseTypedDict": ".getversionbranchop",
|
|
10549
|
+
"GetVersionCountRequest": ".getversioncountop",
|
|
10550
|
+
"GetVersionCountRequestTypedDict": ".getversioncountop",
|
|
10551
|
+
"GetVersionCountResponse": ".getversioncountop",
|
|
10552
|
+
"GetVersionCountResponseTypedDict": ".getversioncountop",
|
|
10553
|
+
"GetVersionCurrentBranchResponse": ".getversioncurrentbranchop",
|
|
10554
|
+
"GetVersionCurrentBranchResponseTypedDict": ".getversioncurrentbranchop",
|
|
10555
|
+
"GetVersionDiffRequest": ".getversiondiffop",
|
|
10556
|
+
"GetVersionDiffRequestTypedDict": ".getversiondiffop",
|
|
10557
|
+
"GetVersionDiffResponse": ".getversiondiffop",
|
|
10558
|
+
"GetVersionDiffResponseTypedDict": ".getversiondiffop",
|
|
10559
|
+
"GetVersionFilesRequest": ".getversionfilesop",
|
|
10560
|
+
"GetVersionFilesRequestTypedDict": ".getversionfilesop",
|
|
10561
|
+
"GetVersionFilesResponse": ".getversionfilesop",
|
|
10562
|
+
"GetVersionFilesResponseTypedDict": ".getversionfilesop",
|
|
10563
|
+
"GetVersionInfoResponse": ".getversioninfoop",
|
|
10564
|
+
"GetVersionInfoResponseTypedDict": ".getversioninfoop",
|
|
10565
|
+
"GetVersionShowRequest": ".getversionshowop",
|
|
10566
|
+
"GetVersionShowRequestTypedDict": ".getversionshowop",
|
|
10567
|
+
"GetVersionShowResponse": ".getversionshowop",
|
|
10568
|
+
"GetVersionShowResponseTypedDict": ".getversionshowop",
|
|
10569
|
+
"GetVersionStatusRequest": ".getversionstatusop",
|
|
10570
|
+
"GetVersionStatusRequestTypedDict": ".getversionstatusop",
|
|
10571
|
+
"GetVersionStatusResponse": ".getversionstatusop",
|
|
10572
|
+
"GetVersionStatusResponseTypedDict": ".getversionstatusop",
|
|
10573
|
+
"GitCommitParams": ".gitcommitparams",
|
|
10574
|
+
"GitCommitParamsTypedDict": ".gitcommitparams",
|
|
10575
|
+
"Author": ".gitcommitsummary",
|
|
10576
|
+
"AuthorTypedDict": ".gitcommitsummary",
|
|
10577
|
+
"GitCommitSummary": ".gitcommitsummary",
|
|
10578
|
+
"GitCommitSummaryFiles": ".gitcommitsummary",
|
|
10579
|
+
"GitCommitSummaryFilesTypedDict": ".gitcommitsummary",
|
|
10580
|
+
"GitCommitSummaryTypedDict": ".gitcommitsummary",
|
|
10581
|
+
"Summary": ".gitcommitsummary",
|
|
10582
|
+
"SummaryTypedDict": ".gitcommitsummary",
|
|
10583
|
+
"GitFile": ".gitfile",
|
|
10584
|
+
"GitFileTypedDict": ".gitfile",
|
|
10585
|
+
"GitFilesResponse": ".gitfilesresponse",
|
|
10586
|
+
"GitFilesResponseTypedDict": ".gitfilesresponse",
|
|
10587
|
+
"GitInfo": ".gitinfo",
|
|
10588
|
+
"GitInfoTypedDict": ".gitinfo",
|
|
10589
|
+
"Remote": ".gitinfo",
|
|
10590
|
+
"RemoteTypedDict": ".gitinfo",
|
|
10591
|
+
"GitRevertParams": ".gitrevertparams",
|
|
10592
|
+
"GitRevertParamsTypedDict": ".gitrevertparams",
|
|
10593
|
+
"Audit": ".gitrevertresult",
|
|
10594
|
+
"AuditTypedDict": ".gitrevertresult",
|
|
10595
|
+
"GitRevertResult": ".gitrevertresult",
|
|
10596
|
+
"GitRevertResultFiles": ".gitrevertresult",
|
|
10597
|
+
"GitRevertResultFilesTypedDict": ".gitrevertresult",
|
|
10598
|
+
"GitRevertResultTypedDict": ".gitrevertresult",
|
|
10599
|
+
"File": ".gitstatusresult",
|
|
10600
|
+
"FileTypedDict": ".gitstatusresult",
|
|
10601
|
+
"GitStatusResult": ".gitstatusresult",
|
|
10602
|
+
"GitStatusResultTypedDict": ".gitstatusresult",
|
|
10603
|
+
"Renamed": ".gitstatusresult",
|
|
10604
|
+
"RenamedTypedDict": ".gitstatusresult",
|
|
10364
10605
|
"HealthStatus": ".healthstatus",
|
|
10365
10606
|
"HealthStatusTypedDict": ".healthstatus",
|
|
10366
10607
|
"Role": ".healthstatus",
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .gitcommitsummary import GitCommitSummary, GitCommitSummaryTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from typing import List, Optional
|
|
7
|
+
from typing_extensions import NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class CreateVersionCommitResponseTypedDict(TypedDict):
|
|
11
|
+
r"""a list of GitCommitSummary objects"""
|
|
12
|
+
|
|
13
|
+
count: NotRequired[int]
|
|
14
|
+
r"""number of items present in the items array"""
|
|
15
|
+
items: NotRequired[List[GitCommitSummaryTypedDict]]
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class CreateVersionCommitResponse(BaseModel):
|
|
19
|
+
r"""a list of GitCommitSummary objects"""
|
|
20
|
+
|
|
21
|
+
count: Optional[int] = None
|
|
22
|
+
r"""number of items present in the items array"""
|
|
23
|
+
|
|
24
|
+
items: Optional[List[GitCommitSummary]] = None
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane.types import BaseModel
|
|
5
|
+
from typing import Any, Dict, List, Optional
|
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class CreateVersionPushResponseTypedDict(TypedDict):
|
|
10
|
+
r"""a list of any objects"""
|
|
11
|
+
|
|
12
|
+
count: NotRequired[int]
|
|
13
|
+
r"""number of items present in the items array"""
|
|
14
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class CreateVersionPushResponse(BaseModel):
|
|
18
|
+
r"""a list of any objects"""
|
|
19
|
+
|
|
20
|
+
count: Optional[int] = None
|
|
21
|
+
r"""number of items present in the items array"""
|
|
22
|
+
|
|
23
|
+
items: Optional[List[Dict[str, Any]]] = None
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
|
|
5
|
+
from .gitrevertresult import GitRevertResult, GitRevertResultTypedDict
|
|
6
|
+
from cribl_control_plane.types import BaseModel
|
|
7
|
+
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata, RequestMetadata
|
|
8
|
+
from typing import List, Optional
|
|
9
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class CreateVersionRevertRequestTypedDict(TypedDict):
|
|
13
|
+
git_revert_params: GitRevertParamsTypedDict
|
|
14
|
+
r"""GitRevertParams object"""
|
|
15
|
+
group: NotRequired[str]
|
|
16
|
+
r"""Group ID"""
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class CreateVersionRevertRequest(BaseModel):
|
|
20
|
+
git_revert_params: Annotated[
|
|
21
|
+
GitRevertParams,
|
|
22
|
+
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
|
23
|
+
]
|
|
24
|
+
r"""GitRevertParams object"""
|
|
25
|
+
|
|
26
|
+
group: Annotated[
|
|
27
|
+
Optional[str],
|
|
28
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
29
|
+
] = None
|
|
30
|
+
r"""Group ID"""
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class CreateVersionRevertResponseTypedDict(TypedDict):
|
|
34
|
+
r"""a list of GitRevertResult objects"""
|
|
35
|
+
|
|
36
|
+
count: NotRequired[int]
|
|
37
|
+
r"""number of items present in the items array"""
|
|
38
|
+
items: NotRequired[List[GitRevertResultTypedDict]]
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class CreateVersionRevertResponse(BaseModel):
|
|
42
|
+
r"""a list of GitRevertResult objects"""
|
|
43
|
+
|
|
44
|
+
count: Optional[int] = None
|
|
45
|
+
r"""number of items present in the items array"""
|
|
46
|
+
|
|
47
|
+
items: Optional[List[GitRevertResult]] = None
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane.types import BaseModel
|
|
5
|
+
from typing import Any, Dict, List, Optional
|
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class CreateVersionSyncResponseTypedDict(TypedDict):
|
|
10
|
+
r"""a list of any objects"""
|
|
11
|
+
|
|
12
|
+
count: NotRequired[int]
|
|
13
|
+
r"""number of items present in the items array"""
|
|
14
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class CreateVersionSyncResponse(BaseModel):
|
|
18
|
+
r"""a list of any objects"""
|
|
19
|
+
|
|
20
|
+
count: Optional[int] = None
|
|
21
|
+
r"""number of items present in the items array"""
|
|
22
|
+
|
|
23
|
+
items: Optional[List[Dict[str, Any]]] = None
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane.types import BaseModel
|
|
5
|
+
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
|
|
6
|
+
from typing import List, Optional
|
|
7
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class CreateVersionUndoRequestTypedDict(TypedDict):
|
|
11
|
+
group: NotRequired[str]
|
|
12
|
+
r"""Group ID"""
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class CreateVersionUndoRequest(BaseModel):
|
|
16
|
+
group: Annotated[
|
|
17
|
+
Optional[str],
|
|
18
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
19
|
+
] = None
|
|
20
|
+
r"""Group ID"""
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class CreateVersionUndoResponseTypedDict(TypedDict):
|
|
24
|
+
r"""a list of object objects"""
|
|
25
|
+
|
|
26
|
+
count: NotRequired[int]
|
|
27
|
+
r"""number of items present in the items array"""
|
|
28
|
+
items: NotRequired[List[str]]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class CreateVersionUndoResponse(BaseModel):
|
|
32
|
+
r"""a list of object objects"""
|
|
33
|
+
|
|
34
|
+
count: Optional[int] = None
|
|
35
|
+
r"""number of items present in the items array"""
|
|
36
|
+
|
|
37
|
+
items: Optional[List[str]] = None
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane.types import BaseModel
|
|
5
|
+
from typing import Any, Dict, List, Optional
|
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class GetVersionBranchResponseTypedDict(TypedDict):
|
|
10
|
+
r"""a list of any objects"""
|
|
11
|
+
|
|
12
|
+
count: NotRequired[int]
|
|
13
|
+
r"""number of items present in the items array"""
|
|
14
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class GetVersionBranchResponse(BaseModel):
|
|
18
|
+
r"""a list of any objects"""
|
|
19
|
+
|
|
20
|
+
count: Optional[int] = None
|
|
21
|
+
r"""number of items present in the items array"""
|
|
22
|
+
|
|
23
|
+
items: Optional[List[Dict[str, Any]]] = None
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane.types import BaseModel
|
|
5
|
+
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
|
|
6
|
+
import pydantic
|
|
7
|
+
from typing import Any, Dict, List, Optional
|
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class GetVersionCountRequestTypedDict(TypedDict):
|
|
12
|
+
group: NotRequired[str]
|
|
13
|
+
r"""Group ID"""
|
|
14
|
+
id: NotRequired[str]
|
|
15
|
+
r"""Commit ID"""
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class GetVersionCountRequest(BaseModel):
|
|
19
|
+
group: Annotated[
|
|
20
|
+
Optional[str],
|
|
21
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
22
|
+
] = None
|
|
23
|
+
r"""Group ID"""
|
|
24
|
+
|
|
25
|
+
id: Annotated[
|
|
26
|
+
Optional[str],
|
|
27
|
+
pydantic.Field(alias="ID"),
|
|
28
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
29
|
+
] = None
|
|
30
|
+
r"""Commit ID"""
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class GetVersionCountResponseTypedDict(TypedDict):
|
|
34
|
+
r"""a list of any objects"""
|
|
35
|
+
|
|
36
|
+
count: NotRequired[int]
|
|
37
|
+
r"""number of items present in the items array"""
|
|
38
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class GetVersionCountResponse(BaseModel):
|
|
42
|
+
r"""a list of any objects"""
|
|
43
|
+
|
|
44
|
+
count: Optional[int] = None
|
|
45
|
+
r"""number of items present in the items array"""
|
|
46
|
+
|
|
47
|
+
items: Optional[List[Dict[str, Any]]] = None
|