cribl-control-plane 0.0.18__tar.gz → 0.0.19__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.18 → cribl_control_plane-0.0.19}/PKG-INFO +42 -8
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/README-PYPI.md +41 -7
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/pyproject.toml +1 -1
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_version.py +3 -3
- cribl_control_plane-0.0.19/src/cribl_control_plane/distributed.py +187 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/healthstatus_error.py +1 -1
- cribl_control_plane-0.0.19/src/cribl_control_plane/groups_sdk.py +1291 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/lake.py +479 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/__init__.py +602 -3
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/appmode.py +13 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/cacheconnection.py +44 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/cacheconnectionbackfillstatus.py +12 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/cloudprovider.py +9 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/commit.py +30 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/configgroup.py +116 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/configgroupcloud.py +48 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/configgrouplookups.py +34 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/createcribllakedatasetbylakeidop.py +48 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/createpacksop.py +24 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/createproductsgroupsbyproductop.py +54 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/cribllakedataset.py +74 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/datasetmetadata.py +39 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/datasetmetadataruninfo.py +28 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/deployrequest.py +18 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/deployrequestlookups.py +28 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/distributedsummary.py +63 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/getcribllakedatasetbylakeidop.py +40 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/getgroupsaclbyidop.py +63 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/getgroupsbyidop.py +49 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/getgroupsconfigversionbyidop.py +36 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/getpacksop.py +40 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/getproductsgroupsaclteamsbyproductandidop.py +78 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/getproductsgroupsbyproductop.py +58 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/getsummaryop.py +46 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/getsummaryworkersop.py +39 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/getworkersop.py +82 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/hbcriblinfo.py +80 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/hbleaderinfo.py +23 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/healthstatus.py +3 -3
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/heartbeatmetadata.py +122 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/lakedatasetsearchconfig.py +18 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/lakehouseconnectiontype.py +9 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/lookupversions.py +13 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/masterworkerentry.py +84 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodeactiveupgradestatus.py +10 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodefailedupgradestatus.py +9 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodeprovidedinfo.py +184 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodeskippedupgradestatus.py +11 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodeupgradestate.py +11 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/nodeupgradestatus.py +30 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/packinfo.py +73 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/packinstallinfo.py +76 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/packrequestbody.py +75 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/rbacresource.py +14 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/resourcepolicy.py +24 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/restartresponse.py +26 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/teamaccesscontrollist.py +18 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/updategroupsdeploybyidop.py +46 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/updatepacksop.py +37 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/updateworkersrestartop.py +24 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/models/useraccesscontrollist.py +18 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/packs.py +623 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/sdk.py +24 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/teams.py +203 -0
- cribl_control_plane-0.0.19/src/cribl_control_plane/workers_sdk.py +555 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/py.typed +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/__init__.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_hooks/__init__.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_hooks/clientcredentials.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_hooks/registration.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_hooks/sdkhooks.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/_hooks/types.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/auth_sdk.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/basesdk.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/destinations.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/__init__.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/apierror.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/criblcontrolplaneerror.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/error.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/no_response_error.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/errors/responsevalidationerror.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/health.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/httpclient.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/addhectokenrequest.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/authtoken.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createinputhectokenbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createinputop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createoutputop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createoutputtestbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createpipelineop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createroutesappendbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createversioncommitop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createversionpushop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createversionrevertop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createversionsyncop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/createversionundoop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/criblevent.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/deleteinputbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/deleteoutputbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/deleteoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/deletepipelinebyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getinputbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getoutputbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getoutputpqbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getoutputsamplesbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getpipelinebyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getroutesbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getversionbranchop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getversioncountop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getversioncurrentbranchop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getversiondiffop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getversionfilesop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getversioninfoop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getversionshowop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/getversionstatusop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/gitcommitparams.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/gitcommitsummary.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/gitfile.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/gitfilesresponse.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/gitinfo.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/gitrevertparams.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/gitrevertresult.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/gitstatusresult.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/input.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputappscope.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputazureblob.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcollection.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputconfluentcloud.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcribl.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcriblhttp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcribllakehttp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcriblmetrics.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcribltcp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputcrowdstrike.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputdatadogagent.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputdatagen.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputedgeprometheus.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputelastic.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputeventhub.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputexec.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputfile.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputfirehose.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputgooglepubsub.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputgrafana_union.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputhttp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputhttpraw.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputjournalfiles.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputkafka.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputkinesis.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputkubeevents.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputkubelogs.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputkubemetrics.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputloki.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputmetrics.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputmodeldriventelemetry.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputmsk.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputnetflow.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputoffice365mgmt.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputoffice365msgtrace.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputoffice365service.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputopentelemetry.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputprometheus.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputprometheusrw.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputrawudp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputs3.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputs3inventory.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsecuritylake.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsnmp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsplunk.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsplunkhec.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsplunksearch.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsqs.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsyslog_union.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsystemmetrics.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputsystemstate.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputtcp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputtcpjson.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputwef.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputwindowsmetrics.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputwineventlogs.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputwiz.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/inputzscalerhec.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/listinputop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/listoutputop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/listpipelineop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/listroutesop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/logininfo.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/output.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputazureblob.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputazuredataexplorer.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputazureeventhub.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputazurelogs.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputclickhouse.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputcloudwatch.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputconfluentcloud.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputcriblhttp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputcribllake.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputcribltcp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputcrowdstrikenextgensiem.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdatadog.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdataset.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdefault.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdevnull.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdiskspool.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdls3.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdynatracehttp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputdynatraceotlp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputelastic.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputelasticcloud.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputexabeam.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputfilesystem.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgooglechronicle.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgooglecloudlogging.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgooglecloudstorage.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgooglepubsub.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgrafanacloud.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputgraphite.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputhoneycomb.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputhumiohec.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputinfluxdb.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputkafka.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputkinesis.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputloki.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputminio.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputmsk.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputnetflow.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputnewrelic.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputnewrelicevents.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputopentelemetry.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputprometheus.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputring.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputrouter.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputs3.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsamplesresponse.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsecuritylake.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsentinel.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsentineloneaisiem.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputservicenow.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsignalfx.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsnmp.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsns.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsplunk.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsplunkhec.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsplunklb.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsqs.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputstatsd.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputstatsdext.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsumologic.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputsyslog.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputtcpjson.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputtestrequest.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputtestresponse.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputwavefront.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputwebhook.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/outputxsiam.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/pipeline.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/pipelinefunctionconf.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/routecloneconf.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/routeconf.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/routes.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/routesroute.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/routesroute_input.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/schemeclientoauth.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/security.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updatehectokenrequest.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updateinputbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updateoutputbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updatepipelinebyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/models/updateroutesbyidop.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/pipelines.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/py.typed +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/routes_sdk.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/sdkconfiguration.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/sources.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/types/__init__.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/types/basemodel.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/__init__.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/annotations.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/datetimes.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/enums.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/eventstreaming.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/forms.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/headers.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/logger.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/metadata.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/queryparams.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/requestbodies.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/retries.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/security.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/serializers.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/unmarshal_json_response.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/url.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/utils/values.py +0 -0
- {cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/src/cribl_control_plane/versioning.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.19
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -125,7 +125,7 @@ with CriblControlPlane(
|
|
|
125
125
|
),
|
|
126
126
|
) as ccp_client:
|
|
127
127
|
|
|
128
|
-
res = ccp_client.
|
|
128
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
|
|
129
129
|
|
|
130
130
|
# Handle response
|
|
131
131
|
print(res)
|
|
@@ -149,7 +149,7 @@ async def main():
|
|
|
149
149
|
),
|
|
150
150
|
) as ccp_client:
|
|
151
151
|
|
|
152
|
-
res = await ccp_client.
|
|
152
|
+
res = await ccp_client.lake.create_cribl_lake_dataset_by_lake_id_async(lake_id="<id>", id="<id>")
|
|
153
153
|
|
|
154
154
|
# Handle response
|
|
155
155
|
print(res)
|
|
@@ -183,7 +183,7 @@ with CriblControlPlane(
|
|
|
183
183
|
),
|
|
184
184
|
) as ccp_client:
|
|
185
185
|
|
|
186
|
-
res = ccp_client.
|
|
186
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
|
|
187
187
|
|
|
188
188
|
# Handle response
|
|
189
189
|
print(res)
|
|
@@ -214,10 +214,34 @@ with CriblControlPlane(
|
|
|
214
214
|
* [get_destination_samples_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get_destination_samples_by_id) - Retrieve samples data for the specified destination. Used to get sample data for the test action.
|
|
215
215
|
* [create_destination_test_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create_destination_test_by_id) - Send sample data to a destination to validate configuration or test connectivity
|
|
216
216
|
|
|
217
|
+
### [distributed](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/distributed/README.md)
|
|
218
|
+
|
|
219
|
+
* [get_summary](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/distributed/README.md#get_summary) - Get summary of Distributed deployment
|
|
220
|
+
|
|
221
|
+
### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
|
|
222
|
+
|
|
223
|
+
* [get_groups_config_version_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_config_version_by_id) - Get effective bundle version for given Group
|
|
224
|
+
* [create_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create_products_groups_by_product) - Create a Fleet or Worker Group
|
|
225
|
+
* [get_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_products_groups_by_product) - Get a list of ConfigGroup objects
|
|
226
|
+
* [update_groups_deploy_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update_groups_deploy_by_id) - Deploy commits for a Fleet or Worker Group
|
|
227
|
+
* [get_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_by_id) - Get a specific ConfigGroup object
|
|
228
|
+
* [get_groups_acl_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_acl_by_id) - ACL of members with permissions for resources in this Group
|
|
229
|
+
|
|
217
230
|
### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
|
|
218
231
|
|
|
219
232
|
* [get_health_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get_health_info) - Provides health info for REST server
|
|
220
233
|
|
|
234
|
+
### [lake](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md)
|
|
235
|
+
|
|
236
|
+
* [create_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#create_cribl_lake_dataset_by_lake_id) - Create a Dataset in the specified Lake
|
|
237
|
+
* [get_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#get_cribl_lake_dataset_by_lake_id) - Get the list of Dataset contained in the specified Lake
|
|
238
|
+
|
|
239
|
+
### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
|
|
240
|
+
|
|
241
|
+
* [create_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#create_packs) - Install Pack
|
|
242
|
+
* [get_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get_packs) - Get info on packs
|
|
243
|
+
* [update_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update_packs) - Upload Pack
|
|
244
|
+
|
|
221
245
|
### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
|
|
222
246
|
|
|
223
247
|
* [list_pipeline](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list_pipeline) - Get a list of Pipeline objects
|
|
@@ -243,6 +267,10 @@ with CriblControlPlane(
|
|
|
243
267
|
* [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
268
|
* [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
269
|
|
|
270
|
+
### [teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
|
|
271
|
+
|
|
272
|
+
* [get_products_groups_acl_teams_by_product_and_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md#get_products_groups_acl_teams_by_product_and_id) - ACL of team with permissions for resources in this Group
|
|
273
|
+
|
|
246
274
|
### [versioning](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md)
|
|
247
275
|
|
|
248
276
|
* [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
|
|
@@ -259,6 +287,12 @@ with CriblControlPlane(
|
|
|
259
287
|
* [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
288
|
* [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
289
|
|
|
290
|
+
### [workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md)
|
|
291
|
+
|
|
292
|
+
* [get_summary_workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#get_summary_workers) - get worker and edge nodes count
|
|
293
|
+
* [get_workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#get_workers) - get worker and edge nodes
|
|
294
|
+
* [update_workers_restart](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#update_workers_restart) - restarts worker nodes
|
|
295
|
+
|
|
262
296
|
</details>
|
|
263
297
|
<!-- End Available Resources and Operations [operations] -->
|
|
264
298
|
|
|
@@ -281,7 +315,7 @@ with CriblControlPlane(
|
|
|
281
315
|
),
|
|
282
316
|
) as ccp_client:
|
|
283
317
|
|
|
284
|
-
res = ccp_client.
|
|
318
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>",
|
|
285
319
|
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
|
|
286
320
|
|
|
287
321
|
# Handle response
|
|
@@ -304,7 +338,7 @@ with CriblControlPlane(
|
|
|
304
338
|
),
|
|
305
339
|
) as ccp_client:
|
|
306
340
|
|
|
307
|
-
res = ccp_client.
|
|
341
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
|
|
308
342
|
|
|
309
343
|
# Handle response
|
|
310
344
|
print(res)
|
|
@@ -341,7 +375,7 @@ with CriblControlPlane(
|
|
|
341
375
|
res = None
|
|
342
376
|
try:
|
|
343
377
|
|
|
344
|
-
res = ccp_client.
|
|
378
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
|
|
345
379
|
|
|
346
380
|
# Handle response
|
|
347
381
|
print(res)
|
|
@@ -376,7 +410,7 @@ with CriblControlPlane(
|
|
|
376
410
|
|
|
377
411
|
|
|
378
412
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
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
|
|
413
|
+
* [`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 56 methods.*
|
|
380
414
|
* [`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.
|
|
381
415
|
|
|
382
416
|
</details>
|
|
@@ -108,7 +108,7 @@ with CriblControlPlane(
|
|
|
108
108
|
),
|
|
109
109
|
) as ccp_client:
|
|
110
110
|
|
|
111
|
-
res = ccp_client.
|
|
111
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
|
|
112
112
|
|
|
113
113
|
# Handle response
|
|
114
114
|
print(res)
|
|
@@ -132,7 +132,7 @@ async def main():
|
|
|
132
132
|
),
|
|
133
133
|
) as ccp_client:
|
|
134
134
|
|
|
135
|
-
res = await ccp_client.
|
|
135
|
+
res = await ccp_client.lake.create_cribl_lake_dataset_by_lake_id_async(lake_id="<id>", id="<id>")
|
|
136
136
|
|
|
137
137
|
# Handle response
|
|
138
138
|
print(res)
|
|
@@ -166,7 +166,7 @@ with CriblControlPlane(
|
|
|
166
166
|
),
|
|
167
167
|
) as ccp_client:
|
|
168
168
|
|
|
169
|
-
res = ccp_client.
|
|
169
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
|
|
170
170
|
|
|
171
171
|
# Handle response
|
|
172
172
|
print(res)
|
|
@@ -197,10 +197,34 @@ with CriblControlPlane(
|
|
|
197
197
|
* [get_destination_samples_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#get_destination_samples_by_id) - Retrieve samples data for the specified destination. Used to get sample data for the test action.
|
|
198
198
|
* [create_destination_test_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create_destination_test_by_id) - Send sample data to a destination to validate configuration or test connectivity
|
|
199
199
|
|
|
200
|
+
### [distributed](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/distributed/README.md)
|
|
201
|
+
|
|
202
|
+
* [get_summary](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/distributed/README.md#get_summary) - Get summary of Distributed deployment
|
|
203
|
+
|
|
204
|
+
### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
|
|
205
|
+
|
|
206
|
+
* [get_groups_config_version_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_config_version_by_id) - Get effective bundle version for given Group
|
|
207
|
+
* [create_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create_products_groups_by_product) - Create a Fleet or Worker Group
|
|
208
|
+
* [get_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_products_groups_by_product) - Get a list of ConfigGroup objects
|
|
209
|
+
* [update_groups_deploy_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update_groups_deploy_by_id) - Deploy commits for a Fleet or Worker Group
|
|
210
|
+
* [get_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_by_id) - Get a specific ConfigGroup object
|
|
211
|
+
* [get_groups_acl_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_acl_by_id) - ACL of members with permissions for resources in this Group
|
|
212
|
+
|
|
200
213
|
### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
|
|
201
214
|
|
|
202
215
|
* [get_health_info](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get_health_info) - Provides health info for REST server
|
|
203
216
|
|
|
217
|
+
### [lake](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md)
|
|
218
|
+
|
|
219
|
+
* [create_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#create_cribl_lake_dataset_by_lake_id) - Create a Dataset in the specified Lake
|
|
220
|
+
* [get_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#get_cribl_lake_dataset_by_lake_id) - Get the list of Dataset contained in the specified Lake
|
|
221
|
+
|
|
222
|
+
### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
|
|
223
|
+
|
|
224
|
+
* [create_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#create_packs) - Install Pack
|
|
225
|
+
* [get_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get_packs) - Get info on packs
|
|
226
|
+
* [update_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update_packs) - Upload Pack
|
|
227
|
+
|
|
204
228
|
### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
|
|
205
229
|
|
|
206
230
|
* [list_pipeline](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list_pipeline) - Get a list of Pipeline objects
|
|
@@ -226,6 +250,10 @@ with CriblControlPlane(
|
|
|
226
250
|
* [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
251
|
* [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
252
|
|
|
253
|
+
### [teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
|
|
254
|
+
|
|
255
|
+
* [get_products_groups_acl_teams_by_product_and_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md#get_products_groups_acl_teams_by_product_and_id) - ACL of team with permissions for resources in this Group
|
|
256
|
+
|
|
229
257
|
### [versioning](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versioning/README.md)
|
|
230
258
|
|
|
231
259
|
* [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
|
|
@@ -242,6 +270,12 @@ with CriblControlPlane(
|
|
|
242
270
|
* [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
271
|
* [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
272
|
|
|
273
|
+
### [workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md)
|
|
274
|
+
|
|
275
|
+
* [get_summary_workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#get_summary_workers) - get worker and edge nodes count
|
|
276
|
+
* [get_workers](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#get_workers) - get worker and edge nodes
|
|
277
|
+
* [update_workers_restart](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/workerssdk/README.md#update_workers_restart) - restarts worker nodes
|
|
278
|
+
|
|
245
279
|
</details>
|
|
246
280
|
<!-- End Available Resources and Operations [operations] -->
|
|
247
281
|
|
|
@@ -264,7 +298,7 @@ with CriblControlPlane(
|
|
|
264
298
|
),
|
|
265
299
|
) as ccp_client:
|
|
266
300
|
|
|
267
|
-
res = ccp_client.
|
|
301
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>",
|
|
268
302
|
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
|
|
269
303
|
|
|
270
304
|
# Handle response
|
|
@@ -287,7 +321,7 @@ with CriblControlPlane(
|
|
|
287
321
|
),
|
|
288
322
|
) as ccp_client:
|
|
289
323
|
|
|
290
|
-
res = ccp_client.
|
|
324
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
|
|
291
325
|
|
|
292
326
|
# Handle response
|
|
293
327
|
print(res)
|
|
@@ -324,7 +358,7 @@ with CriblControlPlane(
|
|
|
324
358
|
res = None
|
|
325
359
|
try:
|
|
326
360
|
|
|
327
|
-
res = ccp_client.
|
|
361
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
|
|
328
362
|
|
|
329
363
|
# Handle response
|
|
330
364
|
print(res)
|
|
@@ -359,7 +393,7 @@ with CriblControlPlane(
|
|
|
359
393
|
|
|
360
394
|
|
|
361
395
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
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
|
|
396
|
+
* [`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 56 methods.*
|
|
363
397
|
* [`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.
|
|
364
398
|
|
|
365
399
|
</details>
|
{cribl_control_plane-0.0.18 → cribl_control_plane-0.0.19}/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.19"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1753854543129-e0f06d67"
|
|
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.19 2.660.0 4.14.0-alpha.1753854543129-e0f06d67 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from .basesdk import BaseSDK
|
|
4
|
+
from cribl_control_plane import errors, models, utils
|
|
5
|
+
from cribl_control_plane._hooks import HookContext
|
|
6
|
+
from cribl_control_plane.types import OptionalNullable, UNSET
|
|
7
|
+
from cribl_control_plane.utils import get_security_from_env
|
|
8
|
+
from cribl_control_plane.utils.unmarshal_json_response import unmarshal_json_response
|
|
9
|
+
from typing import Any, Mapping, Optional
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Distributed(BaseSDK):
|
|
13
|
+
r"""Actions related to Distributed"""
|
|
14
|
+
|
|
15
|
+
def get_summary(
|
|
16
|
+
self,
|
|
17
|
+
*,
|
|
18
|
+
mode: Optional[models.GetSummaryMode] = None,
|
|
19
|
+
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
20
|
+
server_url: Optional[str] = None,
|
|
21
|
+
timeout_ms: Optional[int] = None,
|
|
22
|
+
http_headers: Optional[Mapping[str, str]] = None,
|
|
23
|
+
) -> models.GetSummaryResponse:
|
|
24
|
+
r"""Get summary of Distributed deployment
|
|
25
|
+
|
|
26
|
+
Get summary of Distributed deployment
|
|
27
|
+
|
|
28
|
+
:param mode: product filter
|
|
29
|
+
:param retries: Override the default retry configuration for this method
|
|
30
|
+
:param server_url: Override the default server URL for this method
|
|
31
|
+
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
32
|
+
:param http_headers: Additional headers to set or replace on requests.
|
|
33
|
+
"""
|
|
34
|
+
base_url = None
|
|
35
|
+
url_variables = None
|
|
36
|
+
if timeout_ms is None:
|
|
37
|
+
timeout_ms = self.sdk_configuration.timeout_ms
|
|
38
|
+
|
|
39
|
+
if server_url is not None:
|
|
40
|
+
base_url = server_url
|
|
41
|
+
else:
|
|
42
|
+
base_url = self._get_url(base_url, url_variables)
|
|
43
|
+
|
|
44
|
+
request = models.GetSummaryRequest(
|
|
45
|
+
mode=mode,
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
req = self._build_request(
|
|
49
|
+
method="GET",
|
|
50
|
+
path="/master/summary",
|
|
51
|
+
base_url=base_url,
|
|
52
|
+
url_variables=url_variables,
|
|
53
|
+
request=request,
|
|
54
|
+
request_body_required=False,
|
|
55
|
+
request_has_path_params=False,
|
|
56
|
+
request_has_query_params=True,
|
|
57
|
+
user_agent_header="user-agent",
|
|
58
|
+
accept_header_value="application/json",
|
|
59
|
+
http_headers=http_headers,
|
|
60
|
+
security=self.sdk_configuration.security,
|
|
61
|
+
timeout_ms=timeout_ms,
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
if retries == UNSET:
|
|
65
|
+
if self.sdk_configuration.retry_config is not UNSET:
|
|
66
|
+
retries = self.sdk_configuration.retry_config
|
|
67
|
+
|
|
68
|
+
retry_config = None
|
|
69
|
+
if isinstance(retries, utils.RetryConfig):
|
|
70
|
+
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
71
|
+
|
|
72
|
+
http_res = self.do_request(
|
|
73
|
+
hook_ctx=HookContext(
|
|
74
|
+
config=self.sdk_configuration,
|
|
75
|
+
base_url=base_url or "",
|
|
76
|
+
operation_id="getSummary",
|
|
77
|
+
oauth2_scopes=[],
|
|
78
|
+
security_source=get_security_from_env(
|
|
79
|
+
self.sdk_configuration.security, models.Security
|
|
80
|
+
),
|
|
81
|
+
),
|
|
82
|
+
request=req,
|
|
83
|
+
error_status_codes=["401", "4XX", "500", "5XX"],
|
|
84
|
+
retry_config=retry_config,
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
response_data: Any = None
|
|
88
|
+
if utils.match_response(http_res, "200", "application/json"):
|
|
89
|
+
return unmarshal_json_response(models.GetSummaryResponse, http_res)
|
|
90
|
+
if utils.match_response(http_res, "500", "application/json"):
|
|
91
|
+
response_data = unmarshal_json_response(errors.ErrorData, http_res)
|
|
92
|
+
raise errors.Error(response_data, http_res)
|
|
93
|
+
if utils.match_response(http_res, ["401", "4XX"], "*"):
|
|
94
|
+
http_res_text = utils.stream_to_text(http_res)
|
|
95
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
96
|
+
if utils.match_response(http_res, "5XX", "*"):
|
|
97
|
+
http_res_text = utils.stream_to_text(http_res)
|
|
98
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
99
|
+
|
|
100
|
+
raise errors.APIError("Unexpected response received", http_res)
|
|
101
|
+
|
|
102
|
+
async def get_summary_async(
|
|
103
|
+
self,
|
|
104
|
+
*,
|
|
105
|
+
mode: Optional[models.GetSummaryMode] = None,
|
|
106
|
+
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
107
|
+
server_url: Optional[str] = None,
|
|
108
|
+
timeout_ms: Optional[int] = None,
|
|
109
|
+
http_headers: Optional[Mapping[str, str]] = None,
|
|
110
|
+
) -> models.GetSummaryResponse:
|
|
111
|
+
r"""Get summary of Distributed deployment
|
|
112
|
+
|
|
113
|
+
Get summary of Distributed deployment
|
|
114
|
+
|
|
115
|
+
:param mode: product filter
|
|
116
|
+
:param retries: Override the default retry configuration for this method
|
|
117
|
+
:param server_url: Override the default server URL for this method
|
|
118
|
+
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
119
|
+
:param http_headers: Additional headers to set or replace on requests.
|
|
120
|
+
"""
|
|
121
|
+
base_url = None
|
|
122
|
+
url_variables = None
|
|
123
|
+
if timeout_ms is None:
|
|
124
|
+
timeout_ms = self.sdk_configuration.timeout_ms
|
|
125
|
+
|
|
126
|
+
if server_url is not None:
|
|
127
|
+
base_url = server_url
|
|
128
|
+
else:
|
|
129
|
+
base_url = self._get_url(base_url, url_variables)
|
|
130
|
+
|
|
131
|
+
request = models.GetSummaryRequest(
|
|
132
|
+
mode=mode,
|
|
133
|
+
)
|
|
134
|
+
|
|
135
|
+
req = self._build_request_async(
|
|
136
|
+
method="GET",
|
|
137
|
+
path="/master/summary",
|
|
138
|
+
base_url=base_url,
|
|
139
|
+
url_variables=url_variables,
|
|
140
|
+
request=request,
|
|
141
|
+
request_body_required=False,
|
|
142
|
+
request_has_path_params=False,
|
|
143
|
+
request_has_query_params=True,
|
|
144
|
+
user_agent_header="user-agent",
|
|
145
|
+
accept_header_value="application/json",
|
|
146
|
+
http_headers=http_headers,
|
|
147
|
+
security=self.sdk_configuration.security,
|
|
148
|
+
timeout_ms=timeout_ms,
|
|
149
|
+
)
|
|
150
|
+
|
|
151
|
+
if retries == UNSET:
|
|
152
|
+
if self.sdk_configuration.retry_config is not UNSET:
|
|
153
|
+
retries = self.sdk_configuration.retry_config
|
|
154
|
+
|
|
155
|
+
retry_config = None
|
|
156
|
+
if isinstance(retries, utils.RetryConfig):
|
|
157
|
+
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
158
|
+
|
|
159
|
+
http_res = await self.do_request_async(
|
|
160
|
+
hook_ctx=HookContext(
|
|
161
|
+
config=self.sdk_configuration,
|
|
162
|
+
base_url=base_url or "",
|
|
163
|
+
operation_id="getSummary",
|
|
164
|
+
oauth2_scopes=[],
|
|
165
|
+
security_source=get_security_from_env(
|
|
166
|
+
self.sdk_configuration.security, models.Security
|
|
167
|
+
),
|
|
168
|
+
),
|
|
169
|
+
request=req,
|
|
170
|
+
error_status_codes=["401", "4XX", "500", "5XX"],
|
|
171
|
+
retry_config=retry_config,
|
|
172
|
+
)
|
|
173
|
+
|
|
174
|
+
response_data: Any = None
|
|
175
|
+
if utils.match_response(http_res, "200", "application/json"):
|
|
176
|
+
return unmarshal_json_response(models.GetSummaryResponse, http_res)
|
|
177
|
+
if utils.match_response(http_res, "500", "application/json"):
|
|
178
|
+
response_data = unmarshal_json_response(errors.ErrorData, http_res)
|
|
179
|
+
raise errors.Error(response_data, http_res)
|
|
180
|
+
if utils.match_response(http_res, ["401", "4XX"], "*"):
|
|
181
|
+
http_res_text = await utils.stream_to_text_async(http_res)
|
|
182
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
183
|
+
if utils.match_response(http_res, "5XX", "*"):
|
|
184
|
+
http_res_text = await utils.stream_to_text_async(http_res)
|
|
185
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
186
|
+
|
|
187
|
+
raise errors.APIError("Unexpected response received", http_res)
|