cribl-control-plane 0.0.26a1__tar.gz → 0.0.27__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.26a1 → cribl_control_plane-0.0.27}/PKG-INFO +67 -36
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/README-PYPI.md +66 -35
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/pyproject.toml +1 -1
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/_version.py +3 -3
- cribl_control_plane-0.0.27/src/cribl_control_plane/acl.py +203 -0
- cribl_control_plane-0.0.27/src/cribl_control_plane/auth_sdk.py +17 -0
- cribl_control_plane-0.0.27/src/cribl_control_plane/branches.py +335 -0
- cribl_control_plane-0.0.26a1/src/cribl_control_plane/sources.py → cribl_control_plane-0.0.27/src/cribl_control_plane/commits.py +248 -460
- cribl_control_plane-0.0.27/src/cribl_control_plane/commits_files.py +371 -0
- cribl_control_plane-0.0.27/src/cribl_control_plane/configs_versions.py +189 -0
- cribl_control_plane-0.0.27/src/cribl_control_plane/destinations.py +902 -0
- cribl_control_plane-0.0.27/src/cribl_control_plane/destinations_pq.py +359 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/errors/healthstatus_error.py +1 -1
- cribl_control_plane-0.0.27/src/cribl_control_plane/groups_configs.py +17 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/groups_sdk.py +18 -551
- cribl_control_plane-0.0.26a1/src/cribl_control_plane/healthinfo.py → cribl_control_plane-0.0.27/src/cribl_control_plane/health.py +3 -1
- cribl_control_plane-0.0.27/src/cribl_control_plane/hectokens.py +479 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/__init__.py +3 -35
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/healthstatus.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputappscope.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputcollection.py +2 -2
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputconfluentcloud.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputcribl.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputcriblhttp.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputcribllakehttp.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputcriblmetrics.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputcribltcp.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputdatadogagent.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputedgeprometheus.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputelastic.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputeventhub.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputfile.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputfirehose.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputgooglepubsub.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputgrafana.py +6 -6
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputhttp.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputhttpraw.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputjournalfiles.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputkafka.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputkinesis.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputkubeevents.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputkubelogs.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputkubemetrics.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputloki.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputmodeldriventelemetry.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputmsk.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputnetflow.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputoffice365mgmt.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputoffice365msgtrace.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputoffice365service.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputopentelemetry.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputprometheus.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputprometheusrw.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputrawudp.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputsnmp.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputsplunk.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputsplunkhec.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputsplunksearch.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputsqs.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputsystemmetrics.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputsystemstate.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputtcp.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputtcpjson.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputwef.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputwindowsmetrics.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputwiz.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputzscalerhec.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputazureblob.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputazuredataexplorer.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputazureeventhub.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputclickhouse.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputcloudwatch.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputconfluentcloud.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputcriblhttp.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputcribllake.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputcribltcp.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputcrowdstrikenextgensiem.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputdatadog.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputdataset.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputdevnull.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputdiskspool.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputdls3.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputdynatracehttp.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputdynatraceotlp.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputelasticcloud.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputexabeam.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputgooglecloudlogging.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputgooglecloudstorage.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputgrafanacloud.py +10 -10
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputgraphite.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputhumiohec.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputkafka.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputkinesis.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputminio.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputmsk.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputnewrelic.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputnewrelicevents.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputring.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputs3.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsecuritylake.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsentinel.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsentineloneaisiem.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputservicenow.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsns.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsplunk.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsplunkhec.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsqs.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputstatsd.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputstatsdext.py +3 -3
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsyslog.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputtcpjson.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputwebhook.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputxsiam.py +5 -5
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/nodes.py +90 -68
- cribl_control_plane-0.0.27/src/cribl_control_plane/samples.py +391 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/sdk.py +11 -17
- cribl_control_plane-0.0.27/src/cribl_control_plane/sources.py +899 -0
- cribl_control_plane-0.0.26a1/src/cribl_control_plane/workers_sdk.py → cribl_control_plane-0.0.27/src/cribl_control_plane/statuses.py +23 -25
- cribl_control_plane-0.0.26a1/src/cribl_control_plane/deployments.py → cribl_control_plane-0.0.27/src/cribl_control_plane/summaries.py +3 -3
- cribl_control_plane-0.0.27/src/cribl_control_plane/teams.py +201 -0
- cribl_control_plane-0.0.26a1/src/cribl_control_plane/auth_sdk.py → cribl_control_plane-0.0.27/src/cribl_control_plane/tokens.py +3 -5
- cribl_control_plane-0.0.27/src/cribl_control_plane/versions.py +26 -0
- cribl_control_plane-0.0.27/src/cribl_control_plane/versions_configs.py +171 -0
- cribl_control_plane-0.0.26a1/src/cribl_control_plane/destinations.py +0 -1613
- cribl_control_plane-0.0.26a1/src/cribl_control_plane/models/createversionsyncop.py +0 -23
- cribl_control_plane-0.0.26a1/src/cribl_control_plane/models/restartresponse.py +0 -26
- cribl_control_plane-0.0.26a1/src/cribl_control_plane/models/updateworkersrestartop.py +0 -24
- cribl_control_plane-0.0.26a1/src/cribl_control_plane/versioning.py +0 -2309
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/py.typed +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/__init__.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/_hooks/__init__.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/_hooks/clientcredentials.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/_hooks/registration.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/_hooks/sdkhooks.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/_hooks/types.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/basesdk.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/errors/__init__.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/errors/apierror.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/errors/criblcontrolplaneerror.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/errors/error.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/errors/no_response_error.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/errors/responsevalidationerror.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/httpclient.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/lakedatasets.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/addhectokenrequest.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/appmode.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/authtoken.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/cacheconnection.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/cacheconnectionbackfillstatus.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/cloudprovider.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/commit.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/configgroup.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/configgroupcloud.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/configgrouplookups.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createcribllakedatasetbylakeidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createinputhectokenbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createinputop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createoutputop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createoutputtestbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createpacksop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createpipelineop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createproductsgroupsbyproductop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createroutesappendbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createversioncommitop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createversionpushop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createversionrevertop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/createversionundoop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/criblevent.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/cribllakedataset.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/datasetmetadata.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/datasetmetadataruninfo.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/deletegroupsbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/deleteinputbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/deleteoutputbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/deleteoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/deletepacksbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/deletepipelinebyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/deployrequest.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/deployrequestlookups.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/distributedsummary.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getgroupsaclbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getgroupsbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getgroupsconfigversionbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getinputbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getoutputbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getoutputsamplesbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getpacksop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getpipelinebyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getproductsgroupsaclteamsbyproductandidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getproductsgroupsbyproductop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getroutesbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getsummaryop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getsummaryworkersop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getversionbranchop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getversioncountop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getversioncurrentbranchop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getversiondiffop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getversionfilesop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getversioninfoop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getversionshowop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getversionstatusop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/getworkersop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/gitcommitparams.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/gitcommitsummary.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/gitfile.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/gitfilesresponse.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/gitinfo.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/gitrevertparams.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/gitrevertresult.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/gitstatusresult.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/hbcriblinfo.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/hbleaderinfo.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/heartbeatmetadata.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/input.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputazureblob.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputcrowdstrike.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputdatagen.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputexec.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputmetrics.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputs3.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputs3inventory.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputsecuritylake.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputsyslog.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/inputwineventlogs.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/lakedatasetsearchconfig.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/lakehouseconnectiontype.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/listinputop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/listoutputop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/listpipelineop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/listroutesop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/logininfo.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/lookupversions.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/masterworkerentry.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/nodeactiveupgradestatus.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/nodefailedupgradestatus.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/nodeprovidedinfo.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/nodeskippedupgradestatus.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/nodeupgradestate.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/nodeupgradestatus.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/output.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputazurelogs.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputdefault.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputelastic.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputfilesystem.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputgooglechronicle.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputgooglepubsub.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputhoneycomb.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputinfluxdb.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputloki.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputnetflow.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputopentelemetry.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputprometheus.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputrouter.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsamplesresponse.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsignalfx.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsnmp.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsplunklb.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputsumologic.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputtestrequest.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputtestresponse.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/outputwavefront.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/packinfo.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/packinstallinfo.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/packrequestbody.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/pipeline.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/pipelinefunctionconf.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/rbacresource.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/resourcepolicy.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/routecloneconf.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/routeconf.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/routes.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/routesroute.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/schemeclientoauth.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/security.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/teamaccesscontrollist.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/updategroupsbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/updategroupsdeploybyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/updatehectokenrequest.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/updateinputbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/updateoutputbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/updatepacksbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/updatepipelinebyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/updateroutesbyidop.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/models/useraccesscontrollist.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/packs.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/pipelines.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/py.typed +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/routes_sdk.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/sdkconfiguration.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/types/__init__.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/types/basemodel.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/__init__.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/annotations.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/datetimes.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/enums.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/eventstreaming.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/forms.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/headers.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/logger.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/metadata.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/queryparams.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/requestbodies.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/retries.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/security.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/serializers.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/unmarshal_json_response.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/src/cribl_control_plane/utils/url.py +0 -0
- {cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/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.27
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -298,12 +298,11 @@ with CriblControlPlane(
|
|
|
298
298
|
|
|
299
299
|
### [auth](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/authsdk/README.md)
|
|
300
300
|
|
|
301
|
-
* [fetch_token](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/authsdk/README.md#fetch_token) - Log in and fetch an authentication token
|
|
302
301
|
|
|
302
|
+
#### [auth.tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
|
|
303
303
|
|
|
304
|
-
|
|
304
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md#get) - Log in and fetch an authentication token
|
|
305
305
|
|
|
306
|
-
* [get_summary](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/deployments/README.md#get_summary) - Retrieve a summary of the Distributed deployment
|
|
307
306
|
|
|
308
307
|
### [destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
|
|
309
308
|
|
|
@@ -312,26 +311,41 @@ with CriblControlPlane(
|
|
|
312
311
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get) - Retrieve a Destination
|
|
313
312
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#update) - Update a Destination
|
|
314
313
|
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#delete) - Delete a Destination
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
* [
|
|
314
|
+
|
|
315
|
+
#### [destinations.pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md)
|
|
316
|
+
|
|
317
|
+
* [clear](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md#clear) - Clear the persistent queue for a Destination
|
|
318
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md#get) - Retrieve information about the latest job to clear the persistent queue for a Destination
|
|
319
|
+
|
|
320
|
+
#### [destinations.samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
|
|
321
|
+
|
|
322
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#get) - Retrieve sample event data for a Destination
|
|
323
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#create) - Send sample event data to a Destination
|
|
319
324
|
|
|
320
325
|
### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
|
|
321
326
|
|
|
322
|
-
* [
|
|
323
|
-
* [
|
|
324
|
-
* [get_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_by_product) - List all Worker Groups or Edge Fleets for the specified Cribl product
|
|
327
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create) - Create a Worker Group or Edge Fleet for the specified Cribl product
|
|
328
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#list) - List all Worker Groups or Edge Fleets for the specified Cribl product
|
|
325
329
|
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#delete) - Delete a Worker Group or Edge Fleet
|
|
326
330
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get) - Retrieve a Worker Group or Edge Fleet
|
|
327
331
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update) - Update a Worker Group or Edge Fleet
|
|
328
|
-
* [
|
|
329
|
-
|
|
330
|
-
|
|
332
|
+
* [deploy](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#deploy) - Deploy commits to a Worker Group or Edge Fleet
|
|
333
|
+
|
|
334
|
+
#### [groups.acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
|
|
335
|
+
|
|
336
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md#get) - Retrieve the Access Control List (ACL) for a Worker Group or Edge Fleet
|
|
331
337
|
|
|
332
|
-
|
|
338
|
+
#### [groups.acl.teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
|
|
333
339
|
|
|
334
|
-
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/
|
|
340
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md#get) - Retrieve the Access Control List (ACL) for teams with permissions on a Worker Group or Edge Fleet for the specified Cribl product
|
|
341
|
+
|
|
342
|
+
#### [groups.configs.versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
|
|
343
|
+
|
|
344
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md#get) - Retrieve the configuration version for a Worker Group or Edge Fleet
|
|
345
|
+
|
|
346
|
+
### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
|
|
347
|
+
|
|
348
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get) - Retrieve health status of the server
|
|
335
349
|
|
|
336
350
|
### [lake_datasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
|
|
337
351
|
|
|
@@ -343,8 +357,12 @@ with CriblControlPlane(
|
|
|
343
357
|
|
|
344
358
|
### [nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
|
|
345
359
|
|
|
360
|
+
* [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#count) - Retrieve a count of Worker and Edge Nodes
|
|
346
361
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#list) - Retrieve detailed metadata for Worker and Edge Nodes
|
|
347
|
-
|
|
362
|
+
|
|
363
|
+
#### [nodes.summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
|
|
364
|
+
|
|
365
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md#get) - Retrieve a summary of the Distributed deployment
|
|
348
366
|
|
|
349
367
|
### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
|
|
350
368
|
|
|
@@ -375,28 +393,41 @@ with CriblControlPlane(
|
|
|
375
393
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#get) - Retrieve a Source
|
|
376
394
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update) - Update a Source
|
|
377
395
|
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#delete) - Delete a Source
|
|
378
|
-
* [create_hec_token](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create_hec_token) - Add an HEC token and optional metadata to a Splunk HEC Source
|
|
379
|
-
* [update_hec_token_metadata](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update_hec_token_metadata) - Update metadata for an HEC token for a Splunk HEC Source
|
|
380
396
|
|
|
381
|
-
|
|
397
|
+
#### [sources.hec_tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
|
|
398
|
+
|
|
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
|
+
* [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
|
+
|
|
402
|
+
### [versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versions/README.md)
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
#### [versions.branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
|
|
406
|
+
|
|
407
|
+
* [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
|
|
408
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md#get) - Retrieve the name of the Git branch that the Cribl configuration is checked out to
|
|
409
|
+
|
|
410
|
+
#### [versions.commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
|
|
411
|
+
|
|
412
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#create) - Create a new commit for pending changes to the Cribl configuration
|
|
413
|
+
* [diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#diff) - Retrieve the diff for a commit
|
|
414
|
+
* [push](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#push) - Push a commit from the local repository to the remote repository
|
|
415
|
+
* [revert](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#revert) - Revert a commit in the local repository
|
|
416
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#get) - Retrieve the diff and log message for a commit
|
|
417
|
+
* [undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#undo) - Discard uncommitted (staged) changes
|
|
418
|
+
|
|
419
|
+
#### [versions.commits.files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md)
|
|
420
|
+
|
|
421
|
+
* [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md#count) - Retrieve a count of files that changed since a commit
|
|
422
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md#list) - Retrieve the names and statuses of files that changed since a commit
|
|
423
|
+
|
|
424
|
+
#### [versions.configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
|
|
382
425
|
|
|
383
|
-
* [
|
|
384
|
-
* [create_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_commit) - Create a new commit for pending changes to the Cribl configuration
|
|
385
|
-
* [get_file_count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_file_count) - Retrieve a count of files that changed since a commit
|
|
386
|
-
* [get_branch_name](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_branch_name) - Retrieve the name of the Git branch that the Cribl configuration is checked out to
|
|
387
|
-
* [get_diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_diff) - Retrieve the diff for a commit
|
|
388
|
-
* [get_file_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_file_info) - Retrieve the names and statuses of files that changed since a commit
|
|
389
|
-
* [get_config_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_config_status) - Retrieve the configuration and status for the Git integration
|
|
390
|
-
* [push_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#push_commit) - Push a commit from the local repository to the remote repository
|
|
391
|
-
* [revert_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#revert_commit) - Revert a commit in the local repository
|
|
392
|
-
* [show_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#show_commit) - Retrieve the diff and log message for a commit
|
|
393
|
-
* [get_current_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_current_status) - Retrieve the status of the current working tree
|
|
394
|
-
* [sync_local_remote](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#sync_local_remote) - Synchronize the local branch with the remote repository
|
|
395
|
-
* [clean_working_dir](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#clean_working_dir) - Discard uncommitted (staged) changes
|
|
426
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md#get) - Retrieve the configuration and status for the Git integration
|
|
396
427
|
|
|
397
|
-
|
|
428
|
+
#### [versions.statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
|
|
398
429
|
|
|
399
|
-
* [
|
|
430
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md#get) - Retrieve the status of the current working tree
|
|
400
431
|
|
|
401
432
|
</details>
|
|
402
433
|
<!-- End Available Resources and Operations [operations] -->
|
|
@@ -614,7 +645,7 @@ with CriblControlPlane(
|
|
|
614
645
|
|
|
615
646
|
|
|
616
647
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
617
|
-
* [`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
|
|
648
|
+
* [`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 60 methods.*
|
|
618
649
|
* [`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.
|
|
619
650
|
|
|
620
651
|
</details>
|
|
@@ -281,12 +281,11 @@ with CriblControlPlane(
|
|
|
281
281
|
|
|
282
282
|
### [auth](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/authsdk/README.md)
|
|
283
283
|
|
|
284
|
-
* [fetch_token](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/authsdk/README.md#fetch_token) - Log in and fetch an authentication token
|
|
285
284
|
|
|
285
|
+
#### [auth.tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
|
|
286
286
|
|
|
287
|
-
|
|
287
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md#get) - Log in and fetch an authentication token
|
|
288
288
|
|
|
289
|
-
* [get_summary](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/deployments/README.md#get_summary) - Retrieve a summary of the Distributed deployment
|
|
290
289
|
|
|
291
290
|
### [destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
|
|
292
291
|
|
|
@@ -295,26 +294,41 @@ with CriblControlPlane(
|
|
|
295
294
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get) - Retrieve a Destination
|
|
296
295
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#update) - Update a Destination
|
|
297
296
|
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#delete) - Delete a Destination
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
* [
|
|
297
|
+
|
|
298
|
+
#### [destinations.pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md)
|
|
299
|
+
|
|
300
|
+
* [clear](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md#clear) - Clear the persistent queue for a Destination
|
|
301
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md#get) - Retrieve information about the latest job to clear the persistent queue for a Destination
|
|
302
|
+
|
|
303
|
+
#### [destinations.samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
|
|
304
|
+
|
|
305
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#get) - Retrieve sample event data for a Destination
|
|
306
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#create) - Send sample event data to a Destination
|
|
302
307
|
|
|
303
308
|
### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
|
|
304
309
|
|
|
305
|
-
* [
|
|
306
|
-
* [
|
|
307
|
-
* [get_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_by_product) - List all Worker Groups or Edge Fleets for the specified Cribl product
|
|
310
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create) - Create a Worker Group or Edge Fleet for the specified Cribl product
|
|
311
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#list) - List all Worker Groups or Edge Fleets for the specified Cribl product
|
|
308
312
|
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#delete) - Delete a Worker Group or Edge Fleet
|
|
309
313
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get) - Retrieve a Worker Group or Edge Fleet
|
|
310
314
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update) - Update a Worker Group or Edge Fleet
|
|
311
|
-
* [
|
|
312
|
-
|
|
313
|
-
|
|
315
|
+
* [deploy](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#deploy) - Deploy commits to a Worker Group or Edge Fleet
|
|
316
|
+
|
|
317
|
+
#### [groups.acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
|
|
318
|
+
|
|
319
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md#get) - Retrieve the Access Control List (ACL) for a Worker Group or Edge Fleet
|
|
314
320
|
|
|
315
|
-
|
|
321
|
+
#### [groups.acl.teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
|
|
316
322
|
|
|
317
|
-
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/
|
|
323
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md#get) - Retrieve the Access Control List (ACL) for teams with permissions on a Worker Group or Edge Fleet for the specified Cribl product
|
|
324
|
+
|
|
325
|
+
#### [groups.configs.versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
|
|
326
|
+
|
|
327
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md#get) - Retrieve the configuration version for a Worker Group or Edge Fleet
|
|
328
|
+
|
|
329
|
+
### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
|
|
330
|
+
|
|
331
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get) - Retrieve health status of the server
|
|
318
332
|
|
|
319
333
|
### [lake_datasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
|
|
320
334
|
|
|
@@ -326,8 +340,12 @@ with CriblControlPlane(
|
|
|
326
340
|
|
|
327
341
|
### [nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
|
|
328
342
|
|
|
343
|
+
* [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#count) - Retrieve a count of Worker and Edge Nodes
|
|
329
344
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#list) - Retrieve detailed metadata for Worker and Edge Nodes
|
|
330
|
-
|
|
345
|
+
|
|
346
|
+
#### [nodes.summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
|
|
347
|
+
|
|
348
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md#get) - Retrieve a summary of the Distributed deployment
|
|
331
349
|
|
|
332
350
|
### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
|
|
333
351
|
|
|
@@ -358,28 +376,41 @@ with CriblControlPlane(
|
|
|
358
376
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#get) - Retrieve a Source
|
|
359
377
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update) - Update a Source
|
|
360
378
|
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#delete) - Delete a Source
|
|
361
|
-
* [create_hec_token](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create_hec_token) - Add an HEC token and optional metadata to a Splunk HEC Source
|
|
362
|
-
* [update_hec_token_metadata](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update_hec_token_metadata) - Update metadata for an HEC token for a Splunk HEC Source
|
|
363
379
|
|
|
364
|
-
|
|
380
|
+
#### [sources.hec_tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
|
|
381
|
+
|
|
382
|
+
* [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
|
|
383
|
+
* [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
|
|
384
|
+
|
|
385
|
+
### [versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versions/README.md)
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
#### [versions.branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
|
|
389
|
+
|
|
390
|
+
* [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
|
|
391
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md#get) - Retrieve the name of the Git branch that the Cribl configuration is checked out to
|
|
392
|
+
|
|
393
|
+
#### [versions.commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
|
|
394
|
+
|
|
395
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#create) - Create a new commit for pending changes to the Cribl configuration
|
|
396
|
+
* [diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#diff) - Retrieve the diff for a commit
|
|
397
|
+
* [push](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#push) - Push a commit from the local repository to the remote repository
|
|
398
|
+
* [revert](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#revert) - Revert a commit in the local repository
|
|
399
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#get) - Retrieve the diff and log message for a commit
|
|
400
|
+
* [undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#undo) - Discard uncommitted (staged) changes
|
|
401
|
+
|
|
402
|
+
#### [versions.commits.files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md)
|
|
403
|
+
|
|
404
|
+
* [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md#count) - Retrieve a count of files that changed since a commit
|
|
405
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md#list) - Retrieve the names and statuses of files that changed since a commit
|
|
406
|
+
|
|
407
|
+
#### [versions.configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
|
|
365
408
|
|
|
366
|
-
* [
|
|
367
|
-
* [create_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#create_commit) - Create a new commit for pending changes to the Cribl configuration
|
|
368
|
-
* [get_file_count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_file_count) - Retrieve a count of files that changed since a commit
|
|
369
|
-
* [get_branch_name](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_branch_name) - Retrieve the name of the Git branch that the Cribl configuration is checked out to
|
|
370
|
-
* [get_diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_diff) - Retrieve the diff for a commit
|
|
371
|
-
* [get_file_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_file_info) - Retrieve the names and statuses of files that changed since a commit
|
|
372
|
-
* [get_config_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_config_status) - Retrieve the configuration and status for the Git integration
|
|
373
|
-
* [push_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#push_commit) - Push a commit from the local repository to the remote repository
|
|
374
|
-
* [revert_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#revert_commit) - Revert a commit in the local repository
|
|
375
|
-
* [show_commit](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#show_commit) - Retrieve the diff and log message for a commit
|
|
376
|
-
* [get_current_status](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#get_current_status) - Retrieve the status of the current working tree
|
|
377
|
-
* [sync_local_remote](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#sync_local_remote) - Synchronize the local branch with the remote repository
|
|
378
|
-
* [clean_working_dir](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md#clean_working_dir) - Discard uncommitted (staged) changes
|
|
409
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md#get) - Retrieve the configuration and status for the Git integration
|
|
379
410
|
|
|
380
|
-
|
|
411
|
+
#### [versions.statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
|
|
381
412
|
|
|
382
|
-
* [
|
|
413
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md#get) - Retrieve the status of the current working tree
|
|
383
414
|
|
|
384
415
|
</details>
|
|
385
416
|
<!-- End Available Resources and Operations [operations] -->
|
|
@@ -597,7 +628,7 @@ with CriblControlPlane(
|
|
|
597
628
|
|
|
598
629
|
|
|
599
630
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
600
|
-
* [`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
|
|
631
|
+
* [`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 60 methods.*
|
|
601
632
|
* [`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.
|
|
602
633
|
|
|
603
634
|
</details>
|
{cribl_control_plane-0.0.26a1 → cribl_control_plane-0.0.27}/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.27"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1755179421376-c4612cd3"
|
|
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.27 2.660.0 4.14.0-alpha.1755179421376-c4612cd3 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from .basesdk import BaseSDK
|
|
4
|
+
from .sdkconfiguration import SDKConfiguration
|
|
5
|
+
from cribl_control_plane import errors, models, utils
|
|
6
|
+
from cribl_control_plane._hooks import HookContext
|
|
7
|
+
from cribl_control_plane.teams import Teams
|
|
8
|
+
from cribl_control_plane.types import OptionalNullable, UNSET
|
|
9
|
+
from cribl_control_plane.utils import get_security_from_env
|
|
10
|
+
from cribl_control_plane.utils.unmarshal_json_response import unmarshal_json_response
|
|
11
|
+
from typing import Any, Mapping, Optional
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class ACL(BaseSDK):
|
|
15
|
+
teams: Teams
|
|
16
|
+
|
|
17
|
+
def __init__(self, sdk_config: SDKConfiguration) -> None:
|
|
18
|
+
BaseSDK.__init__(self, sdk_config)
|
|
19
|
+
self.sdk_configuration = sdk_config
|
|
20
|
+
self._init_sdks()
|
|
21
|
+
|
|
22
|
+
def _init_sdks(self):
|
|
23
|
+
self.teams = Teams(self.sdk_configuration)
|
|
24
|
+
|
|
25
|
+
def get(
|
|
26
|
+
self,
|
|
27
|
+
*,
|
|
28
|
+
id: str,
|
|
29
|
+
type_: Optional[models.GetGroupsACLByIDType] = None,
|
|
30
|
+
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
31
|
+
server_url: Optional[str] = None,
|
|
32
|
+
timeout_ms: Optional[int] = None,
|
|
33
|
+
http_headers: Optional[Mapping[str, str]] = None,
|
|
34
|
+
) -> models.GetGroupsACLByIDResponse:
|
|
35
|
+
r"""Retrieve the Access Control List (ACL) for a Worker Group or Edge Fleet
|
|
36
|
+
|
|
37
|
+
ACL of members with permissions for resources in this Group
|
|
38
|
+
|
|
39
|
+
:param id: Group id
|
|
40
|
+
:param type: resource type by which to filter access levels
|
|
41
|
+
:param retries: Override the default retry configuration for this method
|
|
42
|
+
:param server_url: Override the default server URL for this method
|
|
43
|
+
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
44
|
+
:param http_headers: Additional headers to set or replace on requests.
|
|
45
|
+
"""
|
|
46
|
+
base_url = None
|
|
47
|
+
url_variables = None
|
|
48
|
+
if timeout_ms is None:
|
|
49
|
+
timeout_ms = self.sdk_configuration.timeout_ms
|
|
50
|
+
|
|
51
|
+
if server_url is not None:
|
|
52
|
+
base_url = server_url
|
|
53
|
+
else:
|
|
54
|
+
base_url = self._get_url(base_url, url_variables)
|
|
55
|
+
|
|
56
|
+
request = models.GetGroupsACLByIDRequest(
|
|
57
|
+
id=id,
|
|
58
|
+
type=type_,
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
req = self._build_request(
|
|
62
|
+
method="GET",
|
|
63
|
+
path="/master/groups/{id}/acl",
|
|
64
|
+
base_url=base_url,
|
|
65
|
+
url_variables=url_variables,
|
|
66
|
+
request=request,
|
|
67
|
+
request_body_required=False,
|
|
68
|
+
request_has_path_params=True,
|
|
69
|
+
request_has_query_params=True,
|
|
70
|
+
user_agent_header="user-agent",
|
|
71
|
+
accept_header_value="application/json",
|
|
72
|
+
http_headers=http_headers,
|
|
73
|
+
security=self.sdk_configuration.security,
|
|
74
|
+
timeout_ms=timeout_ms,
|
|
75
|
+
)
|
|
76
|
+
|
|
77
|
+
if retries == UNSET:
|
|
78
|
+
if self.sdk_configuration.retry_config is not UNSET:
|
|
79
|
+
retries = self.sdk_configuration.retry_config
|
|
80
|
+
|
|
81
|
+
retry_config = None
|
|
82
|
+
if isinstance(retries, utils.RetryConfig):
|
|
83
|
+
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
84
|
+
|
|
85
|
+
http_res = self.do_request(
|
|
86
|
+
hook_ctx=HookContext(
|
|
87
|
+
config=self.sdk_configuration,
|
|
88
|
+
base_url=base_url or "",
|
|
89
|
+
operation_id="getGroupsAclById",
|
|
90
|
+
oauth2_scopes=[],
|
|
91
|
+
security_source=get_security_from_env(
|
|
92
|
+
self.sdk_configuration.security, models.Security
|
|
93
|
+
),
|
|
94
|
+
),
|
|
95
|
+
request=req,
|
|
96
|
+
error_status_codes=["401", "4XX", "500", "5XX"],
|
|
97
|
+
retry_config=retry_config,
|
|
98
|
+
)
|
|
99
|
+
|
|
100
|
+
response_data: Any = None
|
|
101
|
+
if utils.match_response(http_res, "200", "application/json"):
|
|
102
|
+
return unmarshal_json_response(models.GetGroupsACLByIDResponse, http_res)
|
|
103
|
+
if utils.match_response(http_res, "500", "application/json"):
|
|
104
|
+
response_data = unmarshal_json_response(errors.ErrorData, http_res)
|
|
105
|
+
raise errors.Error(response_data, http_res)
|
|
106
|
+
if utils.match_response(http_res, ["401", "4XX"], "*"):
|
|
107
|
+
http_res_text = utils.stream_to_text(http_res)
|
|
108
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
109
|
+
if utils.match_response(http_res, "5XX", "*"):
|
|
110
|
+
http_res_text = utils.stream_to_text(http_res)
|
|
111
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
112
|
+
|
|
113
|
+
raise errors.APIError("Unexpected response received", http_res)
|
|
114
|
+
|
|
115
|
+
async def get_async(
|
|
116
|
+
self,
|
|
117
|
+
*,
|
|
118
|
+
id: str,
|
|
119
|
+
type_: Optional[models.GetGroupsACLByIDType] = None,
|
|
120
|
+
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
121
|
+
server_url: Optional[str] = None,
|
|
122
|
+
timeout_ms: Optional[int] = None,
|
|
123
|
+
http_headers: Optional[Mapping[str, str]] = None,
|
|
124
|
+
) -> models.GetGroupsACLByIDResponse:
|
|
125
|
+
r"""Retrieve the Access Control List (ACL) for a Worker Group or Edge Fleet
|
|
126
|
+
|
|
127
|
+
ACL of members with permissions for resources in this Group
|
|
128
|
+
|
|
129
|
+
:param id: Group id
|
|
130
|
+
:param type: resource type by which to filter access levels
|
|
131
|
+
:param retries: Override the default retry configuration for this method
|
|
132
|
+
:param server_url: Override the default server URL for this method
|
|
133
|
+
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
134
|
+
:param http_headers: Additional headers to set or replace on requests.
|
|
135
|
+
"""
|
|
136
|
+
base_url = None
|
|
137
|
+
url_variables = None
|
|
138
|
+
if timeout_ms is None:
|
|
139
|
+
timeout_ms = self.sdk_configuration.timeout_ms
|
|
140
|
+
|
|
141
|
+
if server_url is not None:
|
|
142
|
+
base_url = server_url
|
|
143
|
+
else:
|
|
144
|
+
base_url = self._get_url(base_url, url_variables)
|
|
145
|
+
|
|
146
|
+
request = models.GetGroupsACLByIDRequest(
|
|
147
|
+
id=id,
|
|
148
|
+
type=type_,
|
|
149
|
+
)
|
|
150
|
+
|
|
151
|
+
req = self._build_request_async(
|
|
152
|
+
method="GET",
|
|
153
|
+
path="/master/groups/{id}/acl",
|
|
154
|
+
base_url=base_url,
|
|
155
|
+
url_variables=url_variables,
|
|
156
|
+
request=request,
|
|
157
|
+
request_body_required=False,
|
|
158
|
+
request_has_path_params=True,
|
|
159
|
+
request_has_query_params=True,
|
|
160
|
+
user_agent_header="user-agent",
|
|
161
|
+
accept_header_value="application/json",
|
|
162
|
+
http_headers=http_headers,
|
|
163
|
+
security=self.sdk_configuration.security,
|
|
164
|
+
timeout_ms=timeout_ms,
|
|
165
|
+
)
|
|
166
|
+
|
|
167
|
+
if retries == UNSET:
|
|
168
|
+
if self.sdk_configuration.retry_config is not UNSET:
|
|
169
|
+
retries = self.sdk_configuration.retry_config
|
|
170
|
+
|
|
171
|
+
retry_config = None
|
|
172
|
+
if isinstance(retries, utils.RetryConfig):
|
|
173
|
+
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
174
|
+
|
|
175
|
+
http_res = await self.do_request_async(
|
|
176
|
+
hook_ctx=HookContext(
|
|
177
|
+
config=self.sdk_configuration,
|
|
178
|
+
base_url=base_url or "",
|
|
179
|
+
operation_id="getGroupsAclById",
|
|
180
|
+
oauth2_scopes=[],
|
|
181
|
+
security_source=get_security_from_env(
|
|
182
|
+
self.sdk_configuration.security, models.Security
|
|
183
|
+
),
|
|
184
|
+
),
|
|
185
|
+
request=req,
|
|
186
|
+
error_status_codes=["401", "4XX", "500", "5XX"],
|
|
187
|
+
retry_config=retry_config,
|
|
188
|
+
)
|
|
189
|
+
|
|
190
|
+
response_data: Any = None
|
|
191
|
+
if utils.match_response(http_res, "200", "application/json"):
|
|
192
|
+
return unmarshal_json_response(models.GetGroupsACLByIDResponse, http_res)
|
|
193
|
+
if utils.match_response(http_res, "500", "application/json"):
|
|
194
|
+
response_data = unmarshal_json_response(errors.ErrorData, http_res)
|
|
195
|
+
raise errors.Error(response_data, http_res)
|
|
196
|
+
if utils.match_response(http_res, ["401", "4XX"], "*"):
|
|
197
|
+
http_res_text = await utils.stream_to_text_async(http_res)
|
|
198
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
199
|
+
if utils.match_response(http_res, "5XX", "*"):
|
|
200
|
+
http_res_text = await utils.stream_to_text_async(http_res)
|
|
201
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
202
|
+
|
|
203
|
+
raise errors.APIError("Unexpected response received", http_res)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from .basesdk import BaseSDK
|
|
4
|
+
from .sdkconfiguration import SDKConfiguration
|
|
5
|
+
from cribl_control_plane.tokens import Tokens
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class AuthSDK(BaseSDK):
|
|
9
|
+
tokens: Tokens
|
|
10
|
+
|
|
11
|
+
def __init__(self, sdk_config: SDKConfiguration) -> None:
|
|
12
|
+
BaseSDK.__init__(self, sdk_config)
|
|
13
|
+
self.sdk_configuration = sdk_config
|
|
14
|
+
self._init_sdks()
|
|
15
|
+
|
|
16
|
+
def _init_sdks(self):
|
|
17
|
+
self.tokens = Tokens(self.sdk_configuration)
|