cribl-control-plane 0.0.39__py3-none-any.whl → 0.4.0b23__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cribl_control_plane/_hooks/clientcredentials.py +92 -42
- cribl_control_plane/_version.py +4 -4
- cribl_control_plane/acl.py +21 -9
- cribl_control_plane/auth_sdk.py +6 -3
- cribl_control_plane/basesdk.py +17 -1
- cribl_control_plane/branches.py +28 -8
- cribl_control_plane/commits.py +119 -47
- cribl_control_plane/commits_files.py +44 -24
- cribl_control_plane/configs_versions.py +16 -10
- cribl_control_plane/cribl.py +495 -0
- cribl_control_plane/destinations.py +86 -34
- cribl_control_plane/destinations_pq.py +34 -14
- cribl_control_plane/errors/__init__.py +23 -8
- cribl_control_plane/errors/apierror.py +2 -0
- cribl_control_plane/errors/criblcontrolplaneerror.py +11 -7
- cribl_control_plane/errors/error.py +4 -2
- cribl_control_plane/errors/healthserverstatus_error.py +41 -0
- cribl_control_plane/errors/no_response_error.py +5 -1
- cribl_control_plane/errors/responsevalidationerror.py +2 -0
- cribl_control_plane/functions.py +367 -0
- cribl_control_plane/groups_configs.py +8 -3
- cribl_control_plane/groups_sdk.py +156 -94
- cribl_control_plane/health.py +34 -14
- cribl_control_plane/hectokens.py +44 -20
- cribl_control_plane/httpclient.py +0 -1
- cribl_control_plane/lakedatasets.py +156 -62
- cribl_control_plane/models/__init__.py +3298 -479
- cribl_control_plane/models/addhectokenrequest.py +7 -1
- cribl_control_plane/models/authtoken.py +5 -1
- cribl_control_plane/models/backupssettings_union.py +37 -0
- cribl_control_plane/models/{lookupversions.py → branchinfo.py} +4 -4
- cribl_control_plane/models/cacheconnection.py +30 -2
- cribl_control_plane/models/cacheconnectionbackfillstatus.py +2 -1
- cribl_control_plane/models/cloudprovider.py +2 -1
- cribl_control_plane/models/collectorazureblob.py +130 -0
- cribl_control_plane/models/collectorconf.py +56 -0
- cribl_control_plane/models/collectorcribllake.py +27 -0
- cribl_control_plane/models/collectordatabase.py +92 -0
- cribl_control_plane/models/collectorfilesystem.py +66 -0
- cribl_control_plane/models/collectorgooglecloudstorage.py +131 -0
- cribl_control_plane/models/collectorhealthcheck.py +269 -0
- cribl_control_plane/models/collectorrest.py +340 -0
- cribl_control_plane/models/collectors3.py +239 -0
- cribl_control_plane/models/collectorscript.py +59 -0
- cribl_control_plane/models/collectorsplunk.py +253 -0
- cribl_control_plane/models/configgroup.py +62 -8
- cribl_control_plane/models/configgroupcloud.py +17 -3
- cribl_control_plane/models/countedbranchinfo.py +20 -0
- cribl_control_plane/models/countedconfiggroup.py +20 -0
- cribl_control_plane/models/countedcribllakedataset.py +20 -0
- cribl_control_plane/models/counteddistributedsummary.py +20 -0
- cribl_control_plane/models/countedfunctionresponse.py +20 -0
- cribl_control_plane/models/countedgitcommitsummary.py +20 -0
- cribl_control_plane/models/countedgitcountresult.py +20 -0
- cribl_control_plane/models/{createinputop.py → countedgitdiffresult.py} +5 -9
- cribl_control_plane/models/countedgitfilesresponse.py +20 -0
- cribl_control_plane/models/{getversioninfoop.py → countedgitinfo.py} +2 -6
- cribl_control_plane/models/countedgitlogresult.py +20 -0
- cribl_control_plane/models/countedgitrevertresult.py +20 -0
- cribl_control_plane/models/countedgitshowresult.py +20 -0
- cribl_control_plane/models/countedgitstatusresult.py +20 -0
- cribl_control_plane/models/{listinputop.py → countedinput.py} +2 -6
- cribl_control_plane/models/countedinputsplunkhec.py +20 -0
- cribl_control_plane/models/countedjobinfo.py +20 -0
- cribl_control_plane/models/countedmasterworkerentry.py +20 -0
- cribl_control_plane/models/countednumber.py +19 -0
- cribl_control_plane/models/{getversionbranchop.py → countedobject.py} +2 -6
- cribl_control_plane/models/{listoutputop.py → countedoutput.py} +2 -6
- cribl_control_plane/models/{createoutputop.py → countedoutputsamplesresponse.py} +5 -9
- cribl_control_plane/models/countedoutputtestresponse.py +20 -0
- cribl_control_plane/models/countedpackinfo.py +20 -0
- cribl_control_plane/models/{createpacksop.py → countedpackinstallinfo.py} +2 -6
- cribl_control_plane/models/{listpipelineop.py → countedpipeline.py} +2 -6
- cribl_control_plane/models/{listroutesop.py → countedroutes.py} +2 -6
- cribl_control_plane/models/countedstring.py +19 -0
- cribl_control_plane/models/countedsystemsettingsconf.py +20 -0
- cribl_control_plane/models/countedteamaccesscontrollist.py +20 -0
- cribl_control_plane/models/counteduseraccesscontrollist.py +20 -0
- cribl_control_plane/models/createauthloginop.py +18 -0
- cribl_control_plane/models/createconfiggroupbyproductop.py +26 -27
- cribl_control_plane/models/createcribllakedatasetbylakeidop.py +1 -19
- cribl_control_plane/models/createinputhectokenbyidop.py +1 -19
- cribl_control_plane/models/createoutputtestbyidop.py +1 -20
- cribl_control_plane/models/createroutesappendbyidop.py +4 -22
- cribl_control_plane/models/createversioncommitop.py +1 -19
- cribl_control_plane/models/createversionrevertop.py +3 -21
- cribl_control_plane/models/createversionundoop.py +1 -18
- cribl_control_plane/models/criblevent.py +15 -0
- cribl_control_plane/models/cribllakedataset.py +23 -3
- cribl_control_plane/models/cribllakedatasetupdate.py +95 -0
- cribl_control_plane/models/datasetmetadata.py +18 -2
- cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +18 -21
- cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py +1 -20
- cribl_control_plane/models/deleteinputbyidop.py +1 -20
- cribl_control_plane/models/deleteoutputbyidop.py +1 -20
- cribl_control_plane/models/deleteoutputpqbyidop.py +1 -19
- cribl_control_plane/models/deletepacksbyidop.py +1 -20
- cribl_control_plane/models/deletepipelinebyidop.py +3 -22
- cribl_control_plane/models/difffiles.py +130 -0
- cribl_control_plane/models/diffline.py +26 -0
- cribl_control_plane/models/difflinecontext.py +28 -0
- cribl_control_plane/models/difflinedelete.py +25 -0
- cribl_control_plane/models/difflineinsert.py +25 -0
- cribl_control_plane/models/distributedsummary.py +6 -0
- cribl_control_plane/models/functionaggregatemetrics.py +206 -0
- cribl_control_plane/models/functionaggregation.py +172 -0
- cribl_control_plane/models/functionautotimestamp.py +173 -0
- cribl_control_plane/models/functioncef.py +111 -0
- cribl_control_plane/models/functionchain.py +75 -0
- cribl_control_plane/models/functionclone.py +75 -0
- cribl_control_plane/models/functioncode.py +96 -0
- cribl_control_plane/models/functioncomment.py +75 -0
- cribl_control_plane/models/functiondistinct.py +99 -0
- cribl_control_plane/models/functiondnslookup.py +250 -0
- cribl_control_plane/models/functiondrop.py +73 -0
- cribl_control_plane/models/functiondropdimensions.py +87 -0
- cribl_control_plane/models/functiondynamicsampling.py +121 -0
- cribl_control_plane/models/functioneval.py +103 -0
- cribl_control_plane/models/functioneventbreaker.py +103 -0
- cribl_control_plane/models/functioneventstats.py +92 -0
- cribl_control_plane/models/functionexternaldata.py +73 -0
- cribl_control_plane/models/functionflatten.py +90 -0
- cribl_control_plane/models/functionfoldkeys.py +89 -0
- cribl_control_plane/models/functiongenstats.py +73 -0
- cribl_control_plane/models/functiongeoip.py +120 -0
- cribl_control_plane/models/functiongrok.py +95 -0
- cribl_control_plane/models/functionhandlebar.py +112 -0
- cribl_control_plane/models/functionjoin.py +112 -0
- cribl_control_plane/models/functionjsonunroll.py +80 -0
- cribl_control_plane/models/functionlakeexport.py +102 -0
- cribl_control_plane/models/functionlimit.py +75 -0
- cribl_control_plane/models/functionlocalsearchdatatypeparser.py +76 -0
- cribl_control_plane/models/functionlocalsearchrulesetrunner.py +97 -0
- cribl_control_plane/models/functionlookup.py +148 -0
- cribl_control_plane/models/functionmask.py +121 -0
- cribl_control_plane/models/functionmvexpand.py +128 -0
- cribl_control_plane/models/functionmvpull.py +99 -0
- cribl_control_plane/models/functionnotificationpolicies.py +186 -0
- cribl_control_plane/models/functionnotifications.py +85 -0
- cribl_control_plane/models/functionnotify.py +196 -0
- cribl_control_plane/models/functionnumerify.py +119 -0
- cribl_control_plane/models/functionotlplogs.py +82 -0
- cribl_control_plane/models/functionotlpmetrics.py +118 -0
- cribl_control_plane/models/functionotlptraces.py +111 -0
- cribl_control_plane/models/functionpack.py +80 -0
- cribl_control_plane/models/functionpivot.py +85 -0
- cribl_control_plane/models/functionpublishmetrics.py +153 -0
- cribl_control_plane/models/functionredis.py +173 -0
- cribl_control_plane/models/functionregexextract.py +112 -0
- cribl_control_plane/models/functionregexfilter.py +95 -0
- cribl_control_plane/models/functionrename.py +107 -0
- cribl_control_plane/models/functionresponse.py +242 -0
- cribl_control_plane/models/functionrollupmetrics.py +114 -0
- cribl_control_plane/models/functionsampling.py +90 -0
- cribl_control_plane/models/functionsend.py +141 -0
- cribl_control_plane/models/functionsensitivedatascanner.py +128 -0
- cribl_control_plane/models/functionserde.py +161 -0
- cribl_control_plane/models/functionserialize.py +134 -0
- cribl_control_plane/models/functionsidlookup.py +93 -0
- cribl_control_plane/models/functionsnmptrapserialize.py +144 -0
- cribl_control_plane/models/functionsort.py +97 -0
- cribl_control_plane/models/functionstore.py +132 -0
- cribl_control_plane/models/functionsuppress.py +115 -0
- cribl_control_plane/models/functiontee.py +90 -0
- cribl_control_plane/models/functiontrimtimestamp.py +75 -0
- cribl_control_plane/models/functionunion.py +80 -0
- cribl_control_plane/models/functionunroll.py +80 -0
- cribl_control_plane/models/functionwindow.py +96 -0
- cribl_control_plane/models/functionxmlunroll.py +92 -0
- cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +24 -20
- cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +24 -20
- cribl_control_plane/models/getconfiggroupbyproductandidop.py +14 -19
- cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +18 -20
- cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py +1 -20
- cribl_control_plane/models/getcribllakedatasetbylakeidop.py +54 -14
- cribl_control_plane/models/getfunctionsbyidop.py +18 -0
- cribl_control_plane/models/getinputbyidop.py +1 -20
- cribl_control_plane/models/getmasterworkerentryop.py +1 -18
- cribl_control_plane/models/getoutputbyidop.py +1 -20
- cribl_control_plane/models/getoutputpqbyidop.py +1 -19
- cribl_control_plane/models/getoutputsamplesbyidop.py +1 -20
- cribl_control_plane/models/getpacksbyidop.py +1 -20
- cribl_control_plane/models/getpacksop.py +1 -19
- cribl_control_plane/models/getpipelinebyidop.py +3 -22
- cribl_control_plane/models/getroutesbyidop.py +3 -22
- cribl_control_plane/models/getsummaryop.py +18 -20
- cribl_control_plane/models/getversioncountop.py +3 -21
- cribl_control_plane/models/getversiondiffop.py +1 -18
- cribl_control_plane/models/getversionfilesop.py +3 -22
- cribl_control_plane/models/getversionop.py +1 -19
- cribl_control_plane/models/getversionshowop.py +1 -18
- cribl_control_plane/models/getversionstatusop.py +1 -19
- cribl_control_plane/models/{routecloneconf.py → gitcountresult.py} +4 -4
- cribl_control_plane/models/gitdiffresult.py +16 -0
- cribl_control_plane/models/gitinfo.py +14 -3
- cribl_control_plane/models/gitshowresult.py +19 -0
- cribl_control_plane/models/groupcreaterequest.py +172 -0
- cribl_control_plane/models/hbcriblinfo.py +42 -7
- cribl_control_plane/models/healthserverstatus.py +55 -0
- cribl_control_plane/models/heartbeatmetadata.py +6 -11
- cribl_control_plane/models/input.py +83 -78
- cribl_control_plane/models/inputappscope.py +126 -30
- cribl_control_plane/models/inputazureblob.py +62 -6
- cribl_control_plane/models/inputcloudflarehec.py +518 -0
- cribl_control_plane/models/inputcollection.py +47 -4
- cribl_control_plane/models/inputconfluentcloud.py +258 -32
- cribl_control_plane/models/inputcribl.py +47 -4
- cribl_control_plane/models/inputcriblhttp.py +121 -30
- cribl_control_plane/models/inputcribllakehttp.py +136 -30
- cribl_control_plane/models/inputcriblmetrics.py +48 -4
- cribl_control_plane/models/inputcribltcp.py +122 -24
- cribl_control_plane/models/inputcrowdstrike.py +92 -10
- cribl_control_plane/models/inputdatadogagent.py +98 -24
- cribl_control_plane/models/inputdatagen.py +47 -4
- cribl_control_plane/models/inputedgeprometheus.py +210 -50
- cribl_control_plane/models/inputelastic.py +167 -36
- cribl_control_plane/models/inputeventhub.py +209 -6
- cribl_control_plane/models/inputexec.py +59 -6
- cribl_control_plane/models/inputfile.py +78 -10
- cribl_control_plane/models/inputfirehose.py +97 -24
- cribl_control_plane/models/inputgooglepubsub.py +67 -6
- cribl_control_plane/models/inputgrafana.py +251 -71
- cribl_control_plane/models/inputhttp.py +97 -24
- cribl_control_plane/models/inputhttpraw.py +97 -24
- cribl_control_plane/models/inputjournalfiles.py +48 -4
- cribl_control_plane/models/inputkafka.py +252 -28
- cribl_control_plane/models/inputkinesis.py +130 -14
- cribl_control_plane/models/inputkubeevents.py +47 -4
- cribl_control_plane/models/inputkubelogs.py +61 -8
- cribl_control_plane/models/inputkubemetrics.py +61 -8
- cribl_control_plane/models/inputloki.py +113 -34
- cribl_control_plane/models/inputmetrics.py +97 -24
- cribl_control_plane/models/inputmodeldriventelemetry.py +107 -26
- cribl_control_plane/models/inputmsk.py +145 -32
- cribl_control_plane/models/inputnetflow.py +47 -4
- cribl_control_plane/models/inputoffice365mgmt.py +112 -14
- cribl_control_plane/models/inputoffice365msgtrace.py +114 -16
- cribl_control_plane/models/inputoffice365service.py +114 -16
- cribl_control_plane/models/inputopentelemetry.py +143 -32
- cribl_control_plane/models/inputprometheus.py +193 -44
- cribl_control_plane/models/inputprometheusrw.py +114 -27
- cribl_control_plane/models/inputrawudp.py +47 -4
- cribl_control_plane/models/inputs3.py +78 -8
- cribl_control_plane/models/inputs3inventory.py +92 -10
- cribl_control_plane/models/inputsecuritylake.py +93 -10
- cribl_control_plane/models/inputsnmp.py +112 -21
- cribl_control_plane/models/inputsplunk.py +130 -28
- cribl_control_plane/models/inputsplunkhec.py +119 -29
- cribl_control_plane/models/inputsplunksearch.py +112 -15
- cribl_control_plane/models/inputsqs.py +99 -16
- cribl_control_plane/models/inputsyslog.py +189 -47
- cribl_control_plane/models/inputsystemmetrics.py +202 -32
- cribl_control_plane/models/inputsystemstate.py +61 -8
- cribl_control_plane/models/inputtcp.py +122 -26
- cribl_control_plane/models/inputtcpjson.py +112 -26
- cribl_control_plane/models/inputwef.py +144 -15
- cribl_control_plane/models/inputwindowsmetrics.py +186 -33
- cribl_control_plane/models/inputwineventlogs.py +93 -11
- cribl_control_plane/models/inputwiz.py +173 -8
- cribl_control_plane/models/inputwizwebhook.py +97 -24
- cribl_control_plane/models/inputzscalerhec.py +119 -29
- cribl_control_plane/models/jobinfo.py +34 -0
- cribl_control_plane/models/jobstatus.py +48 -0
- cribl_control_plane/models/lakedatasetmetrics.py +17 -0
- cribl_control_plane/models/lakehouseconnectiontype.py +2 -1
- cribl_control_plane/models/listconfiggroupbyproductop.py +14 -19
- cribl_control_plane/models/listmasterworkerentryop.py +1 -19
- cribl_control_plane/models/logininfo.py +3 -3
- cribl_control_plane/models/masterworkerentry.py +20 -13
- cribl_control_plane/models/nodeactiveupgradestatus.py +2 -1
- cribl_control_plane/models/nodefailedupgradestatus.py +2 -1
- cribl_control_plane/models/nodeprovidedinfo.py +13 -11
- cribl_control_plane/models/nodeskippedupgradestatus.py +2 -1
- cribl_control_plane/models/nodeupgradestate.py +2 -1
- cribl_control_plane/models/nodeupgradestatus.py +51 -5
- cribl_control_plane/models/outpostnodeinfo.py +16 -0
- cribl_control_plane/models/output.py +104 -90
- cribl_control_plane/models/outputazureblob.py +171 -18
- cribl_control_plane/models/outputazuredataexplorer.py +514 -90
- cribl_control_plane/models/outputazureeventhub.py +315 -31
- cribl_control_plane/models/outputazurelogs.py +145 -26
- cribl_control_plane/models/outputchronicle.py +532 -0
- cribl_control_plane/models/outputclickhouse.py +205 -34
- cribl_control_plane/models/outputcloudflarer2.py +632 -0
- cribl_control_plane/models/outputcloudwatch.py +129 -23
- cribl_control_plane/models/outputconfluentcloud.py +384 -57
- cribl_control_plane/models/outputcriblhttp.py +198 -31
- cribl_control_plane/models/outputcribllake.py +156 -16
- cribl_control_plane/models/outputcribltcp.py +194 -29
- cribl_control_plane/models/outputcrowdstrikenextgensiem.py +172 -28
- cribl_control_plane/models/outputdatabricks.py +501 -0
- cribl_control_plane/models/outputdatadog.py +199 -31
- cribl_control_plane/models/outputdataset.py +181 -29
- cribl_control_plane/models/outputdiskspool.py +17 -2
- cribl_control_plane/models/outputdls3.py +233 -24
- cribl_control_plane/models/outputdynatracehttp.py +208 -34
- cribl_control_plane/models/outputdynatraceotlp.py +210 -36
- cribl_control_plane/models/outputelastic.py +199 -30
- cribl_control_plane/models/outputelasticcloud.py +171 -26
- cribl_control_plane/models/outputexabeam.py +96 -10
- cribl_control_plane/models/outputfilesystem.py +139 -14
- cribl_control_plane/models/outputgooglechronicle.py +216 -35
- cribl_control_plane/models/outputgooglecloudlogging.py +174 -31
- cribl_control_plane/models/outputgooglecloudstorage.py +215 -24
- cribl_control_plane/models/outputgooglepubsub.py +131 -23
- cribl_control_plane/models/outputgrafanacloud.py +376 -74
- cribl_control_plane/models/outputgraphite.py +128 -25
- cribl_control_plane/models/outputhoneycomb.py +145 -26
- cribl_control_plane/models/outputhumiohec.py +162 -28
- cribl_control_plane/models/outputinfluxdb.py +165 -28
- cribl_control_plane/models/outputkafka.py +375 -52
- cribl_control_plane/models/outputkinesis.py +165 -27
- cribl_control_plane/models/outputloki.py +164 -34
- cribl_control_plane/models/outputmicrosoftfabric.py +540 -0
- cribl_control_plane/models/outputminio.py +225 -25
- cribl_control_plane/models/outputmsk.py +267 -54
- cribl_control_plane/models/outputnewrelic.py +171 -29
- cribl_control_plane/models/outputnewrelicevents.py +163 -28
- cribl_control_plane/models/outputopentelemetry.py +240 -40
- cribl_control_plane/models/outputprometheus.py +145 -26
- cribl_control_plane/models/outputring.py +49 -8
- cribl_control_plane/models/outputs3.py +233 -26
- cribl_control_plane/models/outputsecuritylake.py +179 -18
- cribl_control_plane/models/outputsentinel.py +172 -29
- cribl_control_plane/models/outputsentineloneaisiem.py +178 -32
- cribl_control_plane/models/outputservicenow.py +223 -38
- cribl_control_plane/models/outputsignalfx.py +145 -26
- cribl_control_plane/models/outputsns.py +143 -25
- cribl_control_plane/models/outputsplunk.py +206 -36
- cribl_control_plane/models/outputsplunkhec.py +238 -26
- cribl_control_plane/models/outputsplunklb.py +262 -42
- cribl_control_plane/models/outputsqs.py +163 -33
- cribl_control_plane/models/outputstatsd.py +127 -25
- cribl_control_plane/models/outputstatsdext.py +128 -25
- cribl_control_plane/models/outputsumologic.py +146 -25
- cribl_control_plane/models/outputsyslog.py +318 -46
- cribl_control_plane/models/outputtcpjson.py +186 -32
- cribl_control_plane/models/outputwavefront.py +145 -26
- cribl_control_plane/models/outputwebhook.py +211 -33
- cribl_control_plane/models/outputxsiam.py +143 -26
- cribl_control_plane/models/packinfo.py +8 -5
- cribl_control_plane/models/packinstallinfo.py +11 -8
- cribl_control_plane/models/piisettings_union.py +31 -0
- cribl_control_plane/models/productscore.py +2 -1
- cribl_control_plane/models/rbacresource.py +2 -1
- cribl_control_plane/models/resourcepolicy.py +15 -2
- cribl_control_plane/models/rollbacksettings_union.py +44 -0
- cribl_control_plane/models/routeconf.py +3 -4
- cribl_control_plane/models/runnablejob.py +27 -0
- cribl_control_plane/models/runnablejobcollection.py +628 -0
- cribl_control_plane/models/runnablejobexecutor.py +360 -0
- cribl_control_plane/models/runnablejobscheduledsearch.py +279 -0
- cribl_control_plane/models/snisettings_union.py +31 -0
- cribl_control_plane/models/systemsettingsconf.py +291 -0
- cribl_control_plane/models/tlssettings_union.py +43 -0
- cribl_control_plane/models/updateconfiggroupbyproductandidop.py +19 -20
- cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py +19 -21
- cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +10 -25
- cribl_control_plane/models/updatehectokenrequest.py +7 -1
- cribl_control_plane/models/updateinputbyidop.py +1 -19
- cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +1 -19
- cribl_control_plane/models/updateoutputbyidop.py +1 -19
- cribl_control_plane/models/updatepacksbyidop.py +1 -20
- cribl_control_plane/models/updatepacksop.py +25 -0
- cribl_control_plane/models/updatepipelinebyidop.py +5 -23
- cribl_control_plane/models/updateroutesbyidop.py +3 -21
- cribl_control_plane/models/upgradegroupsettings_union.py +43 -0
- cribl_control_plane/models/upgradepackageurls.py +20 -0
- cribl_control_plane/models/upgradesettings.py +38 -0
- cribl_control_plane/models/uploadpackresponse.py +13 -0
- cribl_control_plane/models/workertypes.py +2 -1
- cribl_control_plane/nodes.py +37 -23
- cribl_control_plane/packs.py +292 -37
- cribl_control_plane/pipelines.py +98 -48
- cribl_control_plane/routes_sdk.py +86 -50
- cribl_control_plane/samples.py +32 -16
- cribl_control_plane/sdk.py +26 -6
- cribl_control_plane/settings.py +20 -0
- cribl_control_plane/sources.py +85 -33
- cribl_control_plane/statuses.py +16 -6
- cribl_control_plane/summaries.py +16 -6
- cribl_control_plane/system_sdk.py +20 -0
- cribl_control_plane/teams.py +16 -6
- cribl_control_plane/tokens.py +49 -21
- cribl_control_plane/utils/__init__.py +15 -3
- cribl_control_plane/utils/annotations.py +32 -8
- cribl_control_plane/utils/eventstreaming.py +10 -0
- cribl_control_plane/utils/forms.py +21 -10
- cribl_control_plane/utils/queryparams.py +14 -2
- cribl_control_plane/utils/retries.py +69 -5
- cribl_control_plane/utils/unmarshal_json_response.py +15 -1
- cribl_control_plane/versions.py +11 -6
- cribl_control_plane/versions_configs.py +16 -6
- {cribl_control_plane-0.0.39.dist-info → cribl_control_plane-0.4.0b23.dist-info}/METADATA +99 -43
- cribl_control_plane-0.4.0b23.dist-info/RECORD +450 -0
- {cribl_control_plane-0.0.39.dist-info → cribl_control_plane-0.4.0b23.dist-info}/WHEEL +1 -1
- cribl_control_plane-0.4.0b23.dist-info/licenses/LICENSE +201 -0
- cribl_control_plane/errors/healthstatus_error.py +0 -32
- cribl_control_plane/models/appmode.py +0 -13
- cribl_control_plane/models/createpipelineop.py +0 -24
- cribl_control_plane/models/createversionpushop.py +0 -23
- cribl_control_plane/models/healthstatus.py +0 -33
- cribl_control_plane-0.0.39.dist-info/RECORD +0 -315
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .commit import Commit, CommitTypedDict
|
|
5
|
+
from .configgroupcloud import ConfigGroupCloud, ConfigGroupCloudTypedDict
|
|
6
|
+
from .configgrouplookups import ConfigGroupLookups, ConfigGroupLookupsTypedDict
|
|
7
|
+
from cribl_control_plane import models, utils
|
|
8
|
+
from cribl_control_plane.types import BaseModel
|
|
9
|
+
from cribl_control_plane.utils import validate_open_enum
|
|
10
|
+
from enum import Enum
|
|
11
|
+
import pydantic
|
|
12
|
+
from pydantic import field_serializer
|
|
13
|
+
from pydantic.functional_validators import PlainValidator
|
|
14
|
+
from typing import List, Optional
|
|
15
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class GroupCreateRequestEstimatedIngestRate(int, Enum, metaclass=utils.OpenEnumMeta):
|
|
19
|
+
r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
|
|
20
|
+
|
|
21
|
+
# 12 MB/sec
|
|
22
|
+
RATE12_MB_PER_SEC = 1024
|
|
23
|
+
# 24 MB/sec
|
|
24
|
+
RATE24_MB_PER_SEC = 2048
|
|
25
|
+
# 36 MB/sec
|
|
26
|
+
RATE36_MB_PER_SEC = 3072
|
|
27
|
+
# 48 MB/sec
|
|
28
|
+
RATE48_MB_PER_SEC = 4096
|
|
29
|
+
# 60 MB/sec
|
|
30
|
+
RATE60_MB_PER_SEC = 5120
|
|
31
|
+
# 84 MB/sec
|
|
32
|
+
RATE84_MB_PER_SEC = 7168
|
|
33
|
+
# 120 MB/sec
|
|
34
|
+
RATE120_MB_PER_SEC = 10240
|
|
35
|
+
# 156 MB/sec
|
|
36
|
+
RATE156_MB_PER_SEC = 13312
|
|
37
|
+
# 180 MB/sec
|
|
38
|
+
RATE180_MB_PER_SEC = 15360
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class GroupCreateRequestGitTypedDict(TypedDict):
|
|
42
|
+
commit: NotRequired[str]
|
|
43
|
+
local_changes: NotRequired[float]
|
|
44
|
+
log: NotRequired[List[CommitTypedDict]]
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class GroupCreateRequestGit(BaseModel):
|
|
48
|
+
commit: Optional[str] = None
|
|
49
|
+
|
|
50
|
+
local_changes: Annotated[Optional[float], pydantic.Field(alias="localChanges")] = (
|
|
51
|
+
None
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
log: Optional[List[Commit]] = None
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
class GroupCreateRequestType(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
58
|
+
LAKE_ACCESS = "lake_access"
|
|
59
|
+
LOCAL_SEARCH = "local_search"
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
class GroupCreateRequestTypedDict(TypedDict):
|
|
63
|
+
id: str
|
|
64
|
+
cloud: NotRequired[ConfigGroupCloudTypedDict]
|
|
65
|
+
deploying_worker_count: NotRequired[float]
|
|
66
|
+
description: NotRequired[str]
|
|
67
|
+
estimated_ingest_rate: NotRequired[GroupCreateRequestEstimatedIngestRate]
|
|
68
|
+
r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
|
|
69
|
+
git: NotRequired[GroupCreateRequestGitTypedDict]
|
|
70
|
+
incompatible_worker_count: NotRequired[float]
|
|
71
|
+
inherits: NotRequired[str]
|
|
72
|
+
is_fleet: NotRequired[bool]
|
|
73
|
+
is_search: NotRequired[bool]
|
|
74
|
+
lookup_deployments: NotRequired[List[ConfigGroupLookupsTypedDict]]
|
|
75
|
+
max_worker_age: NotRequired[str]
|
|
76
|
+
name: NotRequired[str]
|
|
77
|
+
on_prem: NotRequired[bool]
|
|
78
|
+
provisioned: NotRequired[bool]
|
|
79
|
+
source_group_id: NotRequired[str]
|
|
80
|
+
streamtags: NotRequired[List[str]]
|
|
81
|
+
tags: NotRequired[str]
|
|
82
|
+
type: NotRequired[GroupCreateRequestType]
|
|
83
|
+
upgrade_version: NotRequired[str]
|
|
84
|
+
worker_count: NotRequired[float]
|
|
85
|
+
worker_remote_access: NotRequired[bool]
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
class GroupCreateRequest(BaseModel):
|
|
89
|
+
id: str
|
|
90
|
+
|
|
91
|
+
cloud: Optional[ConfigGroupCloud] = None
|
|
92
|
+
|
|
93
|
+
deploying_worker_count: Annotated[
|
|
94
|
+
Optional[float], pydantic.Field(alias="deployingWorkerCount")
|
|
95
|
+
] = None
|
|
96
|
+
|
|
97
|
+
description: Optional[str] = None
|
|
98
|
+
|
|
99
|
+
estimated_ingest_rate: Annotated[
|
|
100
|
+
Annotated[
|
|
101
|
+
Optional[GroupCreateRequestEstimatedIngestRate],
|
|
102
|
+
PlainValidator(validate_open_enum(True)),
|
|
103
|
+
],
|
|
104
|
+
pydantic.Field(alias="estimatedIngestRate"),
|
|
105
|
+
] = None
|
|
106
|
+
r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
|
|
107
|
+
|
|
108
|
+
git: Optional[GroupCreateRequestGit] = None
|
|
109
|
+
|
|
110
|
+
incompatible_worker_count: Annotated[
|
|
111
|
+
Optional[float], pydantic.Field(alias="incompatibleWorkerCount")
|
|
112
|
+
] = None
|
|
113
|
+
|
|
114
|
+
inherits: Optional[str] = None
|
|
115
|
+
|
|
116
|
+
is_fleet: Annotated[Optional[bool], pydantic.Field(alias="isFleet")] = None
|
|
117
|
+
|
|
118
|
+
is_search: Annotated[Optional[bool], pydantic.Field(alias="isSearch")] = None
|
|
119
|
+
|
|
120
|
+
lookup_deployments: Annotated[
|
|
121
|
+
Optional[List[ConfigGroupLookups]], pydantic.Field(alias="lookupDeployments")
|
|
122
|
+
] = None
|
|
123
|
+
|
|
124
|
+
max_worker_age: Annotated[Optional[str], pydantic.Field(alias="maxWorkerAge")] = (
|
|
125
|
+
None
|
|
126
|
+
)
|
|
127
|
+
|
|
128
|
+
name: Optional[str] = None
|
|
129
|
+
|
|
130
|
+
on_prem: Annotated[Optional[bool], pydantic.Field(alias="onPrem")] = None
|
|
131
|
+
|
|
132
|
+
provisioned: Optional[bool] = None
|
|
133
|
+
|
|
134
|
+
source_group_id: Annotated[Optional[str], pydantic.Field(alias="sourceGroupId")] = (
|
|
135
|
+
None
|
|
136
|
+
)
|
|
137
|
+
|
|
138
|
+
streamtags: Optional[List[str]] = None
|
|
139
|
+
|
|
140
|
+
tags: Optional[str] = None
|
|
141
|
+
|
|
142
|
+
type: Annotated[
|
|
143
|
+
Optional[GroupCreateRequestType], PlainValidator(validate_open_enum(False))
|
|
144
|
+
] = None
|
|
145
|
+
|
|
146
|
+
upgrade_version: Annotated[
|
|
147
|
+
Optional[str], pydantic.Field(alias="upgradeVersion")
|
|
148
|
+
] = None
|
|
149
|
+
|
|
150
|
+
worker_count: Annotated[Optional[float], pydantic.Field(alias="workerCount")] = None
|
|
151
|
+
|
|
152
|
+
worker_remote_access: Annotated[
|
|
153
|
+
Optional[bool], pydantic.Field(alias="workerRemoteAccess")
|
|
154
|
+
] = None
|
|
155
|
+
|
|
156
|
+
@field_serializer("estimated_ingest_rate")
|
|
157
|
+
def serialize_estimated_ingest_rate(self, value):
|
|
158
|
+
if isinstance(value, str):
|
|
159
|
+
try:
|
|
160
|
+
return models.GroupCreateRequestEstimatedIngestRate(value)
|
|
161
|
+
except ValueError:
|
|
162
|
+
return value
|
|
163
|
+
return value
|
|
164
|
+
|
|
165
|
+
@field_serializer("type")
|
|
166
|
+
def serialize_type(self, value):
|
|
167
|
+
if isinstance(value, str):
|
|
168
|
+
try:
|
|
169
|
+
return models.GroupCreateRequestType(value)
|
|
170
|
+
except ValueError:
|
|
171
|
+
return value
|
|
172
|
+
return value
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
-
from .appmode import AppMode
|
|
5
4
|
from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
|
|
6
|
-
from
|
|
5
|
+
from cribl_control_plane import models, utils
|
|
7
6
|
from cribl_control_plane.types import BaseModel
|
|
7
|
+
from cribl_control_plane.utils import validate_open_enum
|
|
8
|
+
from enum import Enum
|
|
8
9
|
import pydantic
|
|
9
|
-
from
|
|
10
|
+
from pydantic import field_serializer
|
|
11
|
+
from pydantic.functional_validators import PlainValidator
|
|
12
|
+
from typing import Dict, List, Optional
|
|
10
13
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
11
14
|
|
|
12
15
|
|
|
@@ -34,26 +37,41 @@ class Config(BaseModel):
|
|
|
34
37
|
version: Optional[str] = None
|
|
35
38
|
|
|
36
39
|
|
|
40
|
+
class DistMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
41
|
+
SINGLE = "single"
|
|
42
|
+
MASTER = "master"
|
|
43
|
+
WORKER = "worker"
|
|
44
|
+
EDGE = "edge"
|
|
45
|
+
MANAGED_EDGE = "managed-edge"
|
|
46
|
+
OUTPOST = "outpost"
|
|
47
|
+
SEARCH_SUPERVISOR = "search-supervisor"
|
|
48
|
+
|
|
49
|
+
|
|
37
50
|
class HBCriblInfoTypedDict(TypedDict):
|
|
38
51
|
config: ConfigTypedDict
|
|
39
|
-
dist_mode:
|
|
52
|
+
dist_mode: DistMode
|
|
40
53
|
group: str
|
|
41
54
|
guid: str
|
|
42
55
|
start_time: float
|
|
43
56
|
tags: List[str]
|
|
44
57
|
deployment_id: NotRequired[str]
|
|
58
|
+
disable_sni_routing: NotRequired[bool]
|
|
45
59
|
edge_nodes: NotRequired[float]
|
|
46
60
|
install_type: NotRequired[str]
|
|
47
|
-
lookup_versions: NotRequired[
|
|
61
|
+
lookup_versions: NotRequired[Dict[str, Dict[str, str]]]
|
|
48
62
|
master: NotRequired[HBLeaderInfoTypedDict]
|
|
49
63
|
pid: NotRequired[float]
|
|
64
|
+
socks_enabled: NotRequired[bool]
|
|
50
65
|
version: NotRequired[str]
|
|
51
66
|
|
|
52
67
|
|
|
53
68
|
class HBCriblInfo(BaseModel):
|
|
54
69
|
config: Config
|
|
55
70
|
|
|
56
|
-
dist_mode: Annotated[
|
|
71
|
+
dist_mode: Annotated[
|
|
72
|
+
Annotated[DistMode, PlainValidator(validate_open_enum(False))],
|
|
73
|
+
pydantic.Field(alias="distMode"),
|
|
74
|
+
]
|
|
57
75
|
|
|
58
76
|
group: str
|
|
59
77
|
|
|
@@ -65,16 +83,33 @@ class HBCriblInfo(BaseModel):
|
|
|
65
83
|
|
|
66
84
|
deployment_id: Annotated[Optional[str], pydantic.Field(alias="deploymentId")] = None
|
|
67
85
|
|
|
86
|
+
disable_sni_routing: Annotated[
|
|
87
|
+
Optional[bool], pydantic.Field(alias="disableSNIRouting")
|
|
88
|
+
] = None
|
|
89
|
+
|
|
68
90
|
edge_nodes: Annotated[Optional[float], pydantic.Field(alias="edgeNodes")] = None
|
|
69
91
|
|
|
70
92
|
install_type: Annotated[Optional[str], pydantic.Field(alias="installType")] = None
|
|
71
93
|
|
|
72
94
|
lookup_versions: Annotated[
|
|
73
|
-
Optional[
|
|
95
|
+
Optional[Dict[str, Dict[str, str]]], pydantic.Field(alias="lookupVersions")
|
|
74
96
|
] = None
|
|
75
97
|
|
|
76
98
|
master: Optional[HBLeaderInfo] = None
|
|
77
99
|
|
|
78
100
|
pid: Optional[float] = None
|
|
79
101
|
|
|
102
|
+
socks_enabled: Annotated[Optional[bool], pydantic.Field(alias="socksEnabled")] = (
|
|
103
|
+
None
|
|
104
|
+
)
|
|
105
|
+
|
|
80
106
|
version: Optional[str] = None
|
|
107
|
+
|
|
108
|
+
@field_serializer("dist_mode")
|
|
109
|
+
def serialize_dist_mode(self, value):
|
|
110
|
+
if isinstance(value, str):
|
|
111
|
+
try:
|
|
112
|
+
return models.DistMode(value)
|
|
113
|
+
except ValueError:
|
|
114
|
+
return value
|
|
115
|
+
return value
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane import models, utils
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import validate_open_enum
|
|
7
|
+
from enum import Enum
|
|
8
|
+
import pydantic
|
|
9
|
+
from pydantic import field_serializer
|
|
10
|
+
from pydantic.functional_validators import PlainValidator
|
|
11
|
+
from typing import Optional
|
|
12
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class Role(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
16
|
+
STANDBY = "standby"
|
|
17
|
+
PRIMARY = "primary"
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class Status(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
21
|
+
SHUTTING_DOWN = "shutting down"
|
|
22
|
+
HEALTHY = "healthy"
|
|
23
|
+
STANDBY = "standby"
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class HealthServerStatusTypedDict(TypedDict):
|
|
27
|
+
start_time: float
|
|
28
|
+
status: Status
|
|
29
|
+
role: NotRequired[Role]
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class HealthServerStatus(BaseModel):
|
|
33
|
+
start_time: Annotated[float, pydantic.Field(alias="startTime")]
|
|
34
|
+
|
|
35
|
+
status: Annotated[Status, PlainValidator(validate_open_enum(False))]
|
|
36
|
+
|
|
37
|
+
role: Annotated[Optional[Role], PlainValidator(validate_open_enum(False))] = None
|
|
38
|
+
|
|
39
|
+
@field_serializer("role")
|
|
40
|
+
def serialize_role(self, value):
|
|
41
|
+
if isinstance(value, str):
|
|
42
|
+
try:
|
|
43
|
+
return models.Role(value)
|
|
44
|
+
except ValueError:
|
|
45
|
+
return value
|
|
46
|
+
return value
|
|
47
|
+
|
|
48
|
+
@field_serializer("status")
|
|
49
|
+
def serialize_status(self, value):
|
|
50
|
+
if isinstance(value, str):
|
|
51
|
+
try:
|
|
52
|
+
return models.Status(value)
|
|
53
|
+
except ValueError:
|
|
54
|
+
return value
|
|
55
|
+
return value
|
|
@@ -3,36 +3,31 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from cribl_control_plane.types import BaseModel
|
|
5
5
|
import pydantic
|
|
6
|
-
from typing import List, Optional
|
|
6
|
+
from typing import Dict, List, Optional
|
|
7
7
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class HeartbeatMetadataTagsTypedDict(TypedDict):
|
|
11
|
-
pass
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class HeartbeatMetadataTags(BaseModel):
|
|
15
|
-
pass
|
|
16
|
-
|
|
17
|
-
|
|
18
10
|
class HeartbeatMetadataAwsTypedDict(TypedDict):
|
|
19
11
|
enabled: bool
|
|
12
|
+
instance_id: str
|
|
20
13
|
region: str
|
|
21
14
|
type: str
|
|
22
15
|
zone: str
|
|
23
|
-
tags: NotRequired[
|
|
16
|
+
tags: NotRequired[Dict[str, str]]
|
|
24
17
|
|
|
25
18
|
|
|
26
19
|
class HeartbeatMetadataAws(BaseModel):
|
|
27
20
|
enabled: bool
|
|
28
21
|
|
|
22
|
+
instance_id: Annotated[str, pydantic.Field(alias="instanceId")]
|
|
23
|
+
|
|
29
24
|
region: str
|
|
30
25
|
|
|
31
26
|
type: str
|
|
32
27
|
|
|
33
28
|
zone: str
|
|
34
29
|
|
|
35
|
-
tags: Optional[
|
|
30
|
+
tags: Optional[Dict[str, str]] = None
|
|
36
31
|
|
|
37
32
|
|
|
38
33
|
class HeartbeatMetadataHostOsTypedDict(TypedDict):
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from .inputappscope import InputAppscope, InputAppscopeTypedDict
|
|
5
5
|
from .inputazureblob import InputAzureBlob, InputAzureBlobTypedDict
|
|
6
|
+
from .inputcloudflarehec import InputCloudflareHec, InputCloudflareHecTypedDict
|
|
6
7
|
from .inputcollection import InputCollection, InputCollectionTypedDict
|
|
7
8
|
from .inputconfluentcloud import InputConfluentCloud, InputConfluentCloudTypedDict
|
|
8
9
|
from .inputcribl import InputCribl, InputCriblTypedDict
|
|
@@ -66,65 +67,68 @@ from .inputwineventlogs import InputWinEventLogs, InputWinEventLogsTypedDict
|
|
|
66
67
|
from .inputwiz import InputWiz, InputWizTypedDict
|
|
67
68
|
from .inputwizwebhook import InputWizWebhook, InputWizWebhookTypedDict
|
|
68
69
|
from .inputzscalerhec import InputZscalerHec, InputZscalerHecTypedDict
|
|
70
|
+
from cribl_control_plane.utils import get_discriminator
|
|
71
|
+
from pydantic import Discriminator, Tag
|
|
69
72
|
from typing import Union
|
|
70
|
-
from typing_extensions import TypeAliasType
|
|
73
|
+
from typing_extensions import Annotated, TypeAliasType
|
|
71
74
|
|
|
72
75
|
|
|
73
76
|
InputTypedDict = TypeAliasType(
|
|
74
77
|
"InputTypedDict",
|
|
75
78
|
Union[
|
|
76
|
-
InputDatagenTypedDict,
|
|
77
|
-
InputKubeEventsTypedDict,
|
|
78
79
|
InputCriblTypedDict,
|
|
80
|
+
InputKubeEventsTypedDict,
|
|
81
|
+
InputDatagenTypedDict,
|
|
79
82
|
InputCriblmetricsTypedDict,
|
|
80
83
|
InputKubeMetricsTypedDict,
|
|
81
|
-
InputCollectionTypedDict,
|
|
82
84
|
InputSystemStateTypedDict,
|
|
85
|
+
InputCollectionTypedDict,
|
|
83
86
|
InputModelDrivenTelemetryTypedDict,
|
|
84
|
-
InputSystemMetricsTypedDict,
|
|
85
87
|
InputWindowsMetricsTypedDict,
|
|
88
|
+
InputSystemMetricsTypedDict,
|
|
86
89
|
InputJournalFilesTypedDict,
|
|
87
|
-
InputWinEventLogsTypedDict,
|
|
88
90
|
InputRawUDPTypedDict,
|
|
89
|
-
InputExecTypedDict,
|
|
90
91
|
InputKubeLogsTypedDict,
|
|
92
|
+
InputExecTypedDict,
|
|
91
93
|
InputMetricsTypedDict,
|
|
92
94
|
InputSnmpTypedDict,
|
|
95
|
+
InputWinEventLogsTypedDict,
|
|
93
96
|
InputCriblTCPTypedDict,
|
|
94
97
|
InputNetflowTypedDict,
|
|
95
|
-
InputTcpjsonTypedDict,
|
|
96
98
|
InputGooglePubsubTypedDict,
|
|
99
|
+
InputTcpjsonTypedDict,
|
|
97
100
|
InputOffice365ServiceTypedDict,
|
|
98
101
|
InputWizTypedDict,
|
|
99
|
-
InputTCPTypedDict,
|
|
100
102
|
InputFirehoseTypedDict,
|
|
101
103
|
InputCriblHTTPTypedDict,
|
|
102
|
-
InputDatadogAgentTypedDict,
|
|
103
104
|
InputOffice365MgmtTypedDict,
|
|
104
|
-
|
|
105
|
+
InputDatadogAgentTypedDict,
|
|
106
|
+
InputTCPTypedDict,
|
|
105
107
|
InputSplunkTypedDict,
|
|
108
|
+
InputFileTypedDict,
|
|
106
109
|
InputWefTypedDict,
|
|
107
110
|
InputAppscopeTypedDict,
|
|
108
|
-
InputHTTPRawTypedDict,
|
|
109
111
|
InputWizWebhookTypedDict,
|
|
110
112
|
InputHTTPTypedDict,
|
|
113
|
+
InputHTTPRawTypedDict,
|
|
111
114
|
InputCriblLakeHTTPTypedDict,
|
|
112
115
|
InputAzureBlobTypedDict,
|
|
113
|
-
InputSqsTypedDict,
|
|
114
116
|
InputZscalerHecTypedDict,
|
|
115
|
-
|
|
117
|
+
InputSqsTypedDict,
|
|
118
|
+
InputCloudflareHecTypedDict,
|
|
116
119
|
InputConfluentCloudTypedDict,
|
|
117
|
-
InputEventhubTypedDict,
|
|
118
120
|
InputKafkaTypedDict,
|
|
121
|
+
InputEventhubTypedDict,
|
|
122
|
+
InputKinesisTypedDict,
|
|
119
123
|
InputElasticTypedDict,
|
|
120
124
|
InputOffice365MsgTraceTypedDict,
|
|
121
125
|
InputSplunkHecTypedDict,
|
|
122
126
|
InputPrometheusRwTypedDict,
|
|
123
127
|
InputLokiTypedDict,
|
|
124
|
-
InputPrometheusTypedDict,
|
|
125
128
|
InputCrowdstrikeTypedDict,
|
|
126
129
|
InputEdgePrometheusTypedDict,
|
|
127
130
|
InputOpenTelemetryTypedDict,
|
|
131
|
+
InputPrometheusTypedDict,
|
|
128
132
|
InputS3TypedDict,
|
|
129
133
|
InputSecurityLakeTypedDict,
|
|
130
134
|
InputMskTypedDict,
|
|
@@ -136,67 +140,68 @@ InputTypedDict = TypeAliasType(
|
|
|
136
140
|
)
|
|
137
141
|
|
|
138
142
|
|
|
139
|
-
Input =
|
|
140
|
-
"Input",
|
|
143
|
+
Input = Annotated[
|
|
141
144
|
Union[
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
145
|
+
Annotated[InputCollection, Tag("collection")],
|
|
146
|
+
Annotated[InputKafka, Tag("kafka")],
|
|
147
|
+
Annotated[InputMsk, Tag("msk")],
|
|
148
|
+
Annotated[InputHTTP, Tag("http")],
|
|
149
|
+
Annotated[InputSplunk, Tag("splunk")],
|
|
150
|
+
Annotated[InputSplunkSearch, Tag("splunk_search")],
|
|
151
|
+
Annotated[InputSplunkHec, Tag("splunk_hec")],
|
|
152
|
+
Annotated[InputAzureBlob, Tag("azure_blob")],
|
|
153
|
+
Annotated[InputElastic, Tag("elastic")],
|
|
154
|
+
Annotated[InputConfluentCloud, Tag("confluent_cloud")],
|
|
155
|
+
Annotated[InputGrafana, Tag("grafana")],
|
|
156
|
+
Annotated[InputLoki, Tag("loki")],
|
|
157
|
+
Annotated[InputPrometheusRw, Tag("prometheus_rw")],
|
|
158
|
+
Annotated[InputPrometheus, Tag("prometheus")],
|
|
159
|
+
Annotated[InputEdgePrometheus, Tag("edge_prometheus")],
|
|
160
|
+
Annotated[InputOffice365Mgmt, Tag("office365_mgmt")],
|
|
161
|
+
Annotated[InputOffice365Service, Tag("office365_service")],
|
|
162
|
+
Annotated[InputOffice365MsgTrace, Tag("office365_msg_trace")],
|
|
163
|
+
Annotated[InputEventhub, Tag("eventhub")],
|
|
164
|
+
Annotated[InputExec, Tag("exec")],
|
|
165
|
+
Annotated[InputFirehose, Tag("firehose")],
|
|
166
|
+
Annotated[InputGooglePubsub, Tag("google_pubsub")],
|
|
167
|
+
Annotated[InputCribl, Tag("cribl")],
|
|
168
|
+
Annotated[InputCriblTCP, Tag("cribl_tcp")],
|
|
169
|
+
Annotated[InputCriblHTTP, Tag("cribl_http")],
|
|
170
|
+
Annotated[InputCriblLakeHTTP, Tag("cribl_lake_http")],
|
|
171
|
+
Annotated[InputTcpjson, Tag("tcpjson")],
|
|
172
|
+
Annotated[InputSystemMetrics, Tag("system_metrics")],
|
|
173
|
+
Annotated[InputSystemState, Tag("system_state")],
|
|
174
|
+
Annotated[InputKubeMetrics, Tag("kube_metrics")],
|
|
175
|
+
Annotated[InputKubeLogs, Tag("kube_logs")],
|
|
176
|
+
Annotated[InputKubeEvents, Tag("kube_events")],
|
|
177
|
+
Annotated[InputWindowsMetrics, Tag("windows_metrics")],
|
|
178
|
+
Annotated[InputCrowdstrike, Tag("crowdstrike")],
|
|
179
|
+
Annotated[InputDatadogAgent, Tag("datadog_agent")],
|
|
180
|
+
Annotated[InputDatagen, Tag("datagen")],
|
|
181
|
+
Annotated[InputHTTPRaw, Tag("http_raw")],
|
|
182
|
+
Annotated[InputKinesis, Tag("kinesis")],
|
|
183
|
+
Annotated[InputCriblmetrics, Tag("criblmetrics")],
|
|
184
|
+
Annotated[InputMetrics, Tag("metrics")],
|
|
185
|
+
Annotated[InputS3, Tag("s3")],
|
|
186
|
+
Annotated[InputS3Inventory, Tag("s3_inventory")],
|
|
187
|
+
Annotated[InputSnmp, Tag("snmp")],
|
|
188
|
+
Annotated[InputOpenTelemetry, Tag("open_telemetry")],
|
|
189
|
+
Annotated[InputModelDrivenTelemetry, Tag("model_driven_telemetry")],
|
|
190
|
+
Annotated[InputSqs, Tag("sqs")],
|
|
191
|
+
Annotated[InputSyslog, Tag("syslog")],
|
|
192
|
+
Annotated[InputFile, Tag("file")],
|
|
193
|
+
Annotated[InputTCP, Tag("tcp")],
|
|
194
|
+
Annotated[InputAppscope, Tag("appscope")],
|
|
195
|
+
Annotated[InputWef, Tag("wef")],
|
|
196
|
+
Annotated[InputWinEventLogs, Tag("win_event_logs")],
|
|
197
|
+
Annotated[InputRawUDP, Tag("raw_udp")],
|
|
198
|
+
Annotated[InputJournalFiles, Tag("journal_files")],
|
|
199
|
+
Annotated[InputWiz, Tag("wiz")],
|
|
200
|
+
Annotated[InputWizWebhook, Tag("wiz_webhook")],
|
|
201
|
+
Annotated[InputNetflow, Tag("netflow")],
|
|
202
|
+
Annotated[InputSecurityLake, Tag("security_lake")],
|
|
203
|
+
Annotated[InputZscalerHec, Tag("zscaler_hec")],
|
|
204
|
+
Annotated[InputCloudflareHec, Tag("cloudflare_hec")],
|
|
201
205
|
],
|
|
202
|
-
)
|
|
206
|
+
Discriminator(lambda m: get_discriminator(m, "type", "type")),
|
|
207
|
+
]
|