cribl-control-plane 0.0.38__py3-none-any.whl → 0.4.0a6__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.
Potentially problematic release.
This version of cribl-control-plane might be problematic. Click here for more details.
- cribl_control_plane/_hooks/clientcredentials.py +92 -42
- cribl_control_plane/_version.py +4 -4
- cribl_control_plane/acl.py +5 -3
- cribl_control_plane/auth_sdk.py +6 -3
- cribl_control_plane/basesdk.py +11 -1
- cribl_control_plane/commits.py +7 -5
- cribl_control_plane/destinations.py +6 -4
- cribl_control_plane/destinations_pq.py +2 -2
- 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/groups_configs.py +8 -3
- cribl_control_plane/groups_sdk.py +64 -38
- cribl_control_plane/health.py +22 -12
- cribl_control_plane/httpclient.py +0 -1
- cribl_control_plane/lakedatasets.py +40 -12
- cribl_control_plane/models/__init__.py +1180 -54
- cribl_control_plane/models/authtoken.py +5 -1
- cribl_control_plane/models/{routecloneconf.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/configgroup.py +66 -11
- cribl_control_plane/models/configgroupcloud.py +17 -3
- cribl_control_plane/models/createconfiggroupbyproductop.py +27 -9
- cribl_control_plane/models/createinputhectokenbyidop.py +6 -5
- cribl_control_plane/models/createroutesappendbyidop.py +2 -2
- cribl_control_plane/models/createversionpushop.py +5 -5
- cribl_control_plane/models/createversionrevertop.py +2 -2
- cribl_control_plane/models/createversionundoop.py +3 -3
- cribl_control_plane/models/cribllakedataset.py +22 -2
- cribl_control_plane/models/cribllakedatasetupdate.py +95 -0
- cribl_control_plane/models/datasetmetadata.py +18 -2
- cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +18 -2
- cribl_control_plane/models/deleteoutputpqbyidop.py +5 -5
- cribl_control_plane/models/deletepipelinebyidop.py +2 -2
- cribl_control_plane/models/difffiles.py +171 -0
- cribl_control_plane/models/distributedsummary.py +6 -0
- cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +24 -2
- cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +24 -2
- cribl_control_plane/models/getconfiggroupbyproductandidop.py +14 -1
- cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +18 -2
- cribl_control_plane/models/getoutputpqbyidop.py +6 -5
- cribl_control_plane/models/getpipelinebyidop.py +2 -2
- cribl_control_plane/models/getroutesbyidop.py +2 -2
- cribl_control_plane/models/getsummaryop.py +18 -2
- cribl_control_plane/models/getversionbranchop.py +6 -5
- cribl_control_plane/models/getversioncountop.py +6 -5
- cribl_control_plane/models/getversiondiffop.py +6 -5
- cribl_control_plane/models/getversionshowop.py +6 -5
- cribl_control_plane/models/gitcountresult.py +13 -0
- 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 +171 -0
- cribl_control_plane/models/hbcriblinfo.py +39 -3
- cribl_control_plane/models/healthserverstatus.py +55 -0
- cribl_control_plane/models/heartbeatmetadata.py +3 -0
- 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 +513 -0
- cribl_control_plane/models/inputcollection.py +47 -4
- cribl_control_plane/models/inputconfluentcloud.py +254 -30
- cribl_control_plane/models/inputcribl.py +47 -4
- cribl_control_plane/models/inputcriblhttp.py +121 -30
- cribl_control_plane/models/inputcribllakehttp.py +122 -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 +248 -26
- 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 +141 -30
- 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 +68 -6
- cribl_control_plane/models/inputsplunk.py +130 -28
- cribl_control_plane/models/inputsplunkhec.py +111 -25
- cribl_control_plane/models/inputsplunksearch.py +108 -14
- 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 +121 -15
- cribl_control_plane/models/inputwindowsmetrics.py +186 -33
- cribl_control_plane/models/inputwineventlogs.py +93 -11
- cribl_control_plane/models/inputwiz.py +78 -8
- cribl_control_plane/models/inputwizwebhook.py +97 -24
- cribl_control_plane/models/inputzscalerhec.py +111 -25
- 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 -1
- cribl_control_plane/models/logininfo.py +3 -3
- cribl_control_plane/models/masterworkerentry.py +17 -2
- cribl_control_plane/models/nodeactiveupgradestatus.py +2 -1
- cribl_control_plane/models/nodefailedupgradestatus.py +2 -1
- cribl_control_plane/models/nodeprovidedinfo.py +11 -1
- 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 +199 -32
- 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 +181 -35
- 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 +253 -43
- 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/productscore.py +2 -1
- cribl_control_plane/models/rbacresource.py +2 -1
- cribl_control_plane/models/resourcepolicy.py +15 -2
- cribl_control_plane/models/routeconf.py +3 -4
- cribl_control_plane/models/runnablejob.py +27 -0
- cribl_control_plane/models/runnablejobcollection.py +669 -0
- cribl_control_plane/models/runnablejobexecutor.py +368 -0
- cribl_control_plane/models/runnablejobscheduledsearch.py +286 -0
- cribl_control_plane/models/updateconfiggroupbyproductandidop.py +19 -2
- cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py +19 -2
- cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +9 -5
- cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +6 -5
- cribl_control_plane/models/updatepacksop.py +25 -0
- cribl_control_plane/models/updatepipelinebyidop.py +6 -6
- cribl_control_plane/models/updateroutesbyidop.py +2 -2
- cribl_control_plane/models/uploadpackresponse.py +13 -0
- cribl_control_plane/models/workertypes.py +2 -1
- cribl_control_plane/nodes.py +5 -3
- cribl_control_plane/packs.py +202 -7
- cribl_control_plane/pipelines.py +18 -18
- cribl_control_plane/routes_sdk.py +22 -22
- cribl_control_plane/sdk.py +19 -6
- cribl_control_plane/sources.py +5 -3
- cribl_control_plane/tokens.py +23 -15
- 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/retries.py +69 -5
- cribl_control_plane/utils/unmarshal_json_response.py +15 -1
- cribl_control_plane/versions.py +11 -6
- {cribl_control_plane-0.0.38.dist-info → cribl_control_plane-0.4.0a6.dist-info}/METADATA +69 -23
- cribl_control_plane-0.4.0a6.dist-info/RECORD +336 -0
- {cribl_control_plane-0.0.38.dist-info → cribl_control_plane-0.4.0a6.dist-info}/WHEEL +1 -1
- cribl_control_plane-0.4.0a6.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/healthstatus.py +0 -33
- cribl_control_plane-0.0.38.dist-info/RECORD +0 -315
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
from typing import TYPE_CHECKING
|
|
4
4
|
from importlib import import_module
|
|
5
5
|
import builtins
|
|
6
|
+
import sys
|
|
6
7
|
|
|
7
8
|
if TYPE_CHECKING:
|
|
8
9
|
from .addhectokenrequest import (
|
|
@@ -11,18 +12,19 @@ if TYPE_CHECKING:
|
|
|
11
12
|
AddHecTokenRequestMetadatumTypedDict,
|
|
12
13
|
AddHecTokenRequestTypedDict,
|
|
13
14
|
)
|
|
14
|
-
from .appmode import AppMode
|
|
15
15
|
from .authtoken import AuthToken, AuthTokenTypedDict
|
|
16
|
+
from .branchinfo import BranchInfo, BranchInfoTypedDict
|
|
16
17
|
from .cacheconnection import CacheConnection, CacheConnectionTypedDict
|
|
17
18
|
from .cacheconnectionbackfillstatus import CacheConnectionBackfillStatus
|
|
18
19
|
from .cloudprovider import CloudProvider
|
|
19
20
|
from .commit import Commit, CommitTypedDict
|
|
20
21
|
from .configgroup import (
|
|
21
22
|
ConfigGroup,
|
|
23
|
+
ConfigGroupEstimatedIngestRate,
|
|
24
|
+
ConfigGroupGit,
|
|
25
|
+
ConfigGroupGitTypedDict,
|
|
22
26
|
ConfigGroupType,
|
|
23
27
|
ConfigGroupTypedDict,
|
|
24
|
-
Git,
|
|
25
|
-
GitTypedDict,
|
|
26
28
|
)
|
|
27
29
|
from .configgroupcloud import ConfigGroupCloud, ConfigGroupCloudTypedDict
|
|
28
30
|
from .configgrouplookups import (
|
|
@@ -96,6 +98,11 @@ if TYPE_CHECKING:
|
|
|
96
98
|
CriblLakeDatasetFormat,
|
|
97
99
|
CriblLakeDatasetTypedDict,
|
|
98
100
|
)
|
|
101
|
+
from .cribllakedatasetupdate import (
|
|
102
|
+
CriblLakeDatasetUpdate,
|
|
103
|
+
CriblLakeDatasetUpdateFormat,
|
|
104
|
+
CriblLakeDatasetUpdateTypedDict,
|
|
105
|
+
)
|
|
99
106
|
from .currentbranchresult import CurrentBranchResult, CurrentBranchResultTypedDict
|
|
100
107
|
from .datasetmetadata import DatasetMetadata, DatasetMetadataTypedDict, ScanMode
|
|
101
108
|
from .datasetmetadataruninfo import (
|
|
@@ -151,6 +158,24 @@ if TYPE_CHECKING:
|
|
|
151
158
|
DeployRequestLookupsLookupTypedDict,
|
|
152
159
|
DeployRequestLookupsTypedDict,
|
|
153
160
|
)
|
|
161
|
+
from .difffiles import (
|
|
162
|
+
Block,
|
|
163
|
+
BlockTypedDict,
|
|
164
|
+
ChecksumBefore,
|
|
165
|
+
ChecksumBeforeTypedDict,
|
|
166
|
+
DiffFiles,
|
|
167
|
+
DiffFilesTypedDict,
|
|
168
|
+
Line1,
|
|
169
|
+
Line1TypedDict,
|
|
170
|
+
Line2,
|
|
171
|
+
Line2TypedDict,
|
|
172
|
+
Line3,
|
|
173
|
+
Line3TypedDict,
|
|
174
|
+
LineUnion,
|
|
175
|
+
LineUnionTypedDict,
|
|
176
|
+
OldMode,
|
|
177
|
+
OldModeTypedDict,
|
|
178
|
+
)
|
|
154
179
|
from .distributedsummary import (
|
|
155
180
|
DistributedSummary,
|
|
156
181
|
DistributedSummaryGroups,
|
|
@@ -310,9 +335,11 @@ if TYPE_CHECKING:
|
|
|
310
335
|
Summary,
|
|
311
336
|
SummaryTypedDict,
|
|
312
337
|
)
|
|
338
|
+
from .gitcountresult import GitCountResult, GitCountResultTypedDict
|
|
339
|
+
from .gitdiffresult import GitDiffResult, GitDiffResultTypedDict
|
|
313
340
|
from .gitfile import GitFile, GitFileTypedDict
|
|
314
341
|
from .gitfilesresponse import GitFilesResponse, GitFilesResponseTypedDict
|
|
315
|
-
from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteTypedDict
|
|
342
|
+
from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteEnum, RemoteTypedDict
|
|
316
343
|
from .gitlogresult import GitLogResult, GitLogResultTypedDict
|
|
317
344
|
from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
|
|
318
345
|
from .gitrevertresult import (
|
|
@@ -323,6 +350,7 @@ if TYPE_CHECKING:
|
|
|
323
350
|
GitRevertResultFilesTypedDict,
|
|
324
351
|
GitRevertResultTypedDict,
|
|
325
352
|
)
|
|
353
|
+
from .gitshowresult import GitShowResult, GitShowResultTypedDict
|
|
326
354
|
from .gitstatusresult import (
|
|
327
355
|
File,
|
|
328
356
|
FileTypedDict,
|
|
@@ -331,9 +359,28 @@ if TYPE_CHECKING:
|
|
|
331
359
|
Renamed,
|
|
332
360
|
RenamedTypedDict,
|
|
333
361
|
)
|
|
334
|
-
from .
|
|
362
|
+
from .groupcreaterequest import (
|
|
363
|
+
GroupCreateRequest,
|
|
364
|
+
GroupCreateRequestEstimatedIngestRate,
|
|
365
|
+
GroupCreateRequestGit,
|
|
366
|
+
GroupCreateRequestGitTypedDict,
|
|
367
|
+
GroupCreateRequestType,
|
|
368
|
+
GroupCreateRequestTypedDict,
|
|
369
|
+
)
|
|
370
|
+
from .hbcriblinfo import (
|
|
371
|
+
Config,
|
|
372
|
+
ConfigTypedDict,
|
|
373
|
+
DistMode,
|
|
374
|
+
HBCriblInfo,
|
|
375
|
+
HBCriblInfoTypedDict,
|
|
376
|
+
)
|
|
335
377
|
from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
|
|
336
|
-
from .
|
|
378
|
+
from .healthserverstatus import (
|
|
379
|
+
HealthServerStatus,
|
|
380
|
+
HealthServerStatusTypedDict,
|
|
381
|
+
Role,
|
|
382
|
+
Status,
|
|
383
|
+
)
|
|
337
384
|
from .heartbeatmetadata import (
|
|
338
385
|
HeartbeatMetadata,
|
|
339
386
|
HeartbeatMetadataAws,
|
|
@@ -370,6 +417,8 @@ if TYPE_CHECKING:
|
|
|
370
417
|
InputAppscopePersistence,
|
|
371
418
|
InputAppscopePersistenceTypedDict,
|
|
372
419
|
InputAppscopePq,
|
|
420
|
+
InputAppscopePqControls,
|
|
421
|
+
InputAppscopePqControlsTypedDict,
|
|
373
422
|
InputAppscopePqTypedDict,
|
|
374
423
|
InputAppscopeTLSSettingsServerSide,
|
|
375
424
|
InputAppscopeTLSSettingsServerSideTypedDict,
|
|
@@ -388,10 +437,36 @@ if TYPE_CHECKING:
|
|
|
388
437
|
InputAzureBlobMetadatumTypedDict,
|
|
389
438
|
InputAzureBlobMode,
|
|
390
439
|
InputAzureBlobPq,
|
|
440
|
+
InputAzureBlobPqControls,
|
|
441
|
+
InputAzureBlobPqControlsTypedDict,
|
|
391
442
|
InputAzureBlobPqTypedDict,
|
|
392
443
|
InputAzureBlobType,
|
|
393
444
|
InputAzureBlobTypedDict,
|
|
394
445
|
)
|
|
446
|
+
from .inputcloudflarehec import (
|
|
447
|
+
InputCloudflareHec,
|
|
448
|
+
InputCloudflareHecAuthToken,
|
|
449
|
+
InputCloudflareHecAuthTokenMetadatum,
|
|
450
|
+
InputCloudflareHecAuthTokenMetadatumTypedDict,
|
|
451
|
+
InputCloudflareHecAuthTokenTypedDict,
|
|
452
|
+
InputCloudflareHecAuthenticationMethod,
|
|
453
|
+
InputCloudflareHecCompression,
|
|
454
|
+
InputCloudflareHecConnection,
|
|
455
|
+
InputCloudflareHecConnectionTypedDict,
|
|
456
|
+
InputCloudflareHecMaximumTLSVersion,
|
|
457
|
+
InputCloudflareHecMetadatum,
|
|
458
|
+
InputCloudflareHecMetadatumTypedDict,
|
|
459
|
+
InputCloudflareHecMinimumTLSVersion,
|
|
460
|
+
InputCloudflareHecMode,
|
|
461
|
+
InputCloudflareHecPq,
|
|
462
|
+
InputCloudflareHecPqControls,
|
|
463
|
+
InputCloudflareHecPqControlsTypedDict,
|
|
464
|
+
InputCloudflareHecPqTypedDict,
|
|
465
|
+
InputCloudflareHecTLSSettingsServerSide,
|
|
466
|
+
InputCloudflareHecTLSSettingsServerSideTypedDict,
|
|
467
|
+
InputCloudflareHecType,
|
|
468
|
+
InputCloudflareHecTypedDict,
|
|
469
|
+
)
|
|
395
470
|
from .inputcollection import (
|
|
396
471
|
InputCollection,
|
|
397
472
|
InputCollectionCompression,
|
|
@@ -401,6 +476,8 @@ if TYPE_CHECKING:
|
|
|
401
476
|
InputCollectionMetadatumTypedDict,
|
|
402
477
|
InputCollectionMode,
|
|
403
478
|
InputCollectionPq,
|
|
479
|
+
InputCollectionPqControls,
|
|
480
|
+
InputCollectionPqControlsTypedDict,
|
|
404
481
|
InputCollectionPqTypedDict,
|
|
405
482
|
InputCollectionPreprocess,
|
|
406
483
|
InputCollectionPreprocessTypedDict,
|
|
@@ -412,6 +489,7 @@ if TYPE_CHECKING:
|
|
|
412
489
|
InputConfluentCloudAuth,
|
|
413
490
|
InputConfluentCloudAuthTypedDict,
|
|
414
491
|
InputConfluentCloudAuthentication,
|
|
492
|
+
InputConfluentCloudAuthenticationMethod,
|
|
415
493
|
InputConfluentCloudAuthenticationTypedDict,
|
|
416
494
|
InputConfluentCloudCompression,
|
|
417
495
|
InputConfluentCloudConnection,
|
|
@@ -427,10 +505,15 @@ if TYPE_CHECKING:
|
|
|
427
505
|
InputConfluentCloudMetadatumTypedDict,
|
|
428
506
|
InputConfluentCloudMinimumTLSVersion,
|
|
429
507
|
InputConfluentCloudMode,
|
|
508
|
+
InputConfluentCloudOauthParam,
|
|
509
|
+
InputConfluentCloudOauthParamTypedDict,
|
|
430
510
|
InputConfluentCloudPq,
|
|
511
|
+
InputConfluentCloudPqControls,
|
|
512
|
+
InputConfluentCloudPqControlsTypedDict,
|
|
431
513
|
InputConfluentCloudPqTypedDict,
|
|
432
514
|
InputConfluentCloudSASLMechanism,
|
|
433
|
-
|
|
515
|
+
InputConfluentCloudSaslExtension,
|
|
516
|
+
InputConfluentCloudSaslExtensionTypedDict,
|
|
434
517
|
InputConfluentCloudTLSSettingsClientSide,
|
|
435
518
|
InputConfluentCloudTLSSettingsClientSideTypedDict,
|
|
436
519
|
InputConfluentCloudType,
|
|
@@ -445,12 +528,16 @@ if TYPE_CHECKING:
|
|
|
445
528
|
InputCriblMetadatumTypedDict,
|
|
446
529
|
InputCriblMode,
|
|
447
530
|
InputCriblPq,
|
|
531
|
+
InputCriblPqControls,
|
|
532
|
+
InputCriblPqControlsTypedDict,
|
|
448
533
|
InputCriblPqTypedDict,
|
|
449
534
|
InputCriblType,
|
|
450
535
|
InputCriblTypedDict,
|
|
451
536
|
)
|
|
452
537
|
from .inputcriblhttp import (
|
|
453
538
|
InputCriblHTTP,
|
|
539
|
+
InputCriblHTTPAuthToken,
|
|
540
|
+
InputCriblHTTPAuthTokenTypedDict,
|
|
454
541
|
InputCriblHTTPCompression,
|
|
455
542
|
InputCriblHTTPConnection,
|
|
456
543
|
InputCriblHTTPConnectionTypedDict,
|
|
@@ -460,6 +547,8 @@ if TYPE_CHECKING:
|
|
|
460
547
|
InputCriblHTTPMinimumTLSVersion,
|
|
461
548
|
InputCriblHTTPMode,
|
|
462
549
|
InputCriblHTTPPq,
|
|
550
|
+
InputCriblHTTPPqControls,
|
|
551
|
+
InputCriblHTTPPqControlsTypedDict,
|
|
463
552
|
InputCriblHTTPPqTypedDict,
|
|
464
553
|
InputCriblHTTPTLSSettingsServerSide,
|
|
465
554
|
InputCriblHTTPTLSSettingsServerSideTypedDict,
|
|
@@ -467,6 +556,8 @@ if TYPE_CHECKING:
|
|
|
467
556
|
InputCriblHTTPTypedDict,
|
|
468
557
|
)
|
|
469
558
|
from .inputcribllakehttp import (
|
|
559
|
+
ElasticsearchMetadata,
|
|
560
|
+
ElasticsearchMetadataTypedDict,
|
|
470
561
|
InputCriblLakeHTTP,
|
|
471
562
|
InputCriblLakeHTTPAuthTokensExt,
|
|
472
563
|
InputCriblLakeHTTPAuthTokensExtMetadatum,
|
|
@@ -481,11 +572,15 @@ if TYPE_CHECKING:
|
|
|
481
572
|
InputCriblLakeHTTPMinimumTLSVersion,
|
|
482
573
|
InputCriblLakeHTTPMode,
|
|
483
574
|
InputCriblLakeHTTPPq,
|
|
575
|
+
InputCriblLakeHTTPPqControls,
|
|
576
|
+
InputCriblLakeHTTPPqControlsTypedDict,
|
|
484
577
|
InputCriblLakeHTTPPqTypedDict,
|
|
485
578
|
InputCriblLakeHTTPTLSSettingsServerSide,
|
|
486
579
|
InputCriblLakeHTTPTLSSettingsServerSideTypedDict,
|
|
487
580
|
InputCriblLakeHTTPType,
|
|
488
581
|
InputCriblLakeHTTPTypedDict,
|
|
582
|
+
SplunkHecMetadata,
|
|
583
|
+
SplunkHecMetadataTypedDict,
|
|
489
584
|
)
|
|
490
585
|
from .inputcriblmetrics import (
|
|
491
586
|
InputCriblmetrics,
|
|
@@ -496,12 +591,16 @@ if TYPE_CHECKING:
|
|
|
496
591
|
InputCriblmetricsMetadatumTypedDict,
|
|
497
592
|
InputCriblmetricsMode,
|
|
498
593
|
InputCriblmetricsPq,
|
|
594
|
+
InputCriblmetricsPqControls,
|
|
595
|
+
InputCriblmetricsPqControlsTypedDict,
|
|
499
596
|
InputCriblmetricsPqTypedDict,
|
|
500
597
|
InputCriblmetricsType,
|
|
501
598
|
InputCriblmetricsTypedDict,
|
|
502
599
|
)
|
|
503
600
|
from .inputcribltcp import (
|
|
504
601
|
InputCriblTCP,
|
|
602
|
+
InputCriblTCPAuthToken,
|
|
603
|
+
InputCriblTCPAuthTokenTypedDict,
|
|
505
604
|
InputCriblTCPCompression,
|
|
506
605
|
InputCriblTCPConnection,
|
|
507
606
|
InputCriblTCPConnectionTypedDict,
|
|
@@ -511,6 +610,8 @@ if TYPE_CHECKING:
|
|
|
511
610
|
InputCriblTCPMinimumTLSVersion,
|
|
512
611
|
InputCriblTCPMode,
|
|
513
612
|
InputCriblTCPPq,
|
|
613
|
+
InputCriblTCPPqControls,
|
|
614
|
+
InputCriblTCPPqControlsTypedDict,
|
|
514
615
|
InputCriblTCPPqTypedDict,
|
|
515
616
|
InputCriblTCPTLSSettingsServerSide,
|
|
516
617
|
InputCriblTCPTLSSettingsServerSideTypedDict,
|
|
@@ -529,6 +630,8 @@ if TYPE_CHECKING:
|
|
|
529
630
|
InputCrowdstrikeMetadatumTypedDict,
|
|
530
631
|
InputCrowdstrikeMode,
|
|
531
632
|
InputCrowdstrikePq,
|
|
633
|
+
InputCrowdstrikePqControls,
|
|
634
|
+
InputCrowdstrikePqControlsTypedDict,
|
|
532
635
|
InputCrowdstrikePqTypedDict,
|
|
533
636
|
InputCrowdstrikePreprocess,
|
|
534
637
|
InputCrowdstrikePreprocessTypedDict,
|
|
@@ -548,6 +651,8 @@ if TYPE_CHECKING:
|
|
|
548
651
|
InputDatadogAgentMinimumTLSVersion,
|
|
549
652
|
InputDatadogAgentMode,
|
|
550
653
|
InputDatadogAgentPq,
|
|
654
|
+
InputDatadogAgentPqControls,
|
|
655
|
+
InputDatadogAgentPqControlsTypedDict,
|
|
551
656
|
InputDatadogAgentPqTypedDict,
|
|
552
657
|
InputDatadogAgentProxyMode,
|
|
553
658
|
InputDatadogAgentProxyModeTypedDict,
|
|
@@ -565,6 +670,8 @@ if TYPE_CHECKING:
|
|
|
565
670
|
InputDatagenMetadatumTypedDict,
|
|
566
671
|
InputDatagenMode,
|
|
567
672
|
InputDatagenPq,
|
|
673
|
+
InputDatagenPqControls,
|
|
674
|
+
InputDatagenPqControlsTypedDict,
|
|
568
675
|
InputDatagenPqTypedDict,
|
|
569
676
|
InputDatagenType,
|
|
570
677
|
InputDatagenTypedDict,
|
|
@@ -586,6 +693,8 @@ if TYPE_CHECKING:
|
|
|
586
693
|
InputEdgePrometheusPersistenceCompression,
|
|
587
694
|
InputEdgePrometheusPq,
|
|
588
695
|
InputEdgePrometheusPqCompression,
|
|
696
|
+
InputEdgePrometheusPqControls,
|
|
697
|
+
InputEdgePrometheusPqControlsTypedDict,
|
|
589
698
|
InputEdgePrometheusPqTypedDict,
|
|
590
699
|
InputEdgePrometheusRecordType,
|
|
591
700
|
InputEdgePrometheusSearchFilter,
|
|
@@ -616,6 +725,8 @@ if TYPE_CHECKING:
|
|
|
616
725
|
InputElasticMinimumTLSVersion,
|
|
617
726
|
InputElasticMode,
|
|
618
727
|
InputElasticPq,
|
|
728
|
+
InputElasticPqControls,
|
|
729
|
+
InputElasticPqControlsTypedDict,
|
|
619
730
|
InputElasticPqTypedDict,
|
|
620
731
|
InputElasticProxyMode,
|
|
621
732
|
InputElasticProxyModeTypedDict,
|
|
@@ -626,15 +737,20 @@ if TYPE_CHECKING:
|
|
|
626
737
|
)
|
|
627
738
|
from .inputeventhub import (
|
|
628
739
|
InputEventhub,
|
|
740
|
+
InputEventhubAuthTypeAuthenticationMethod,
|
|
629
741
|
InputEventhubAuthentication,
|
|
630
742
|
InputEventhubAuthenticationTypedDict,
|
|
743
|
+
InputEventhubClientSecretAuthTypeAuthenticationMethod,
|
|
631
744
|
InputEventhubCompression,
|
|
632
745
|
InputEventhubConnection,
|
|
633
746
|
InputEventhubConnectionTypedDict,
|
|
634
747
|
InputEventhubMetadatum,
|
|
635
748
|
InputEventhubMetadatumTypedDict,
|
|
749
|
+
InputEventhubMicrosoftEntraIDAuthenticationEndpoint,
|
|
636
750
|
InputEventhubMode,
|
|
637
751
|
InputEventhubPq,
|
|
752
|
+
InputEventhubPqControls,
|
|
753
|
+
InputEventhubPqControlsTypedDict,
|
|
638
754
|
InputEventhubPqTypedDict,
|
|
639
755
|
InputEventhubSASLMechanism,
|
|
640
756
|
InputEventhubTLSSettingsClientSide,
|
|
@@ -651,6 +767,8 @@ if TYPE_CHECKING:
|
|
|
651
767
|
InputExecMetadatumTypedDict,
|
|
652
768
|
InputExecMode,
|
|
653
769
|
InputExecPq,
|
|
770
|
+
InputExecPqControls,
|
|
771
|
+
InputExecPqControlsTypedDict,
|
|
654
772
|
InputExecPqTypedDict,
|
|
655
773
|
InputExecType,
|
|
656
774
|
InputExecTypedDict,
|
|
@@ -665,6 +783,8 @@ if TYPE_CHECKING:
|
|
|
665
783
|
InputFileMetadatumTypedDict,
|
|
666
784
|
InputFileMode,
|
|
667
785
|
InputFilePq,
|
|
786
|
+
InputFilePqControls,
|
|
787
|
+
InputFilePqControlsTypedDict,
|
|
668
788
|
InputFilePqMode,
|
|
669
789
|
InputFilePqTypedDict,
|
|
670
790
|
InputFileType,
|
|
@@ -681,6 +801,8 @@ if TYPE_CHECKING:
|
|
|
681
801
|
InputFirehoseMinimumTLSVersion,
|
|
682
802
|
InputFirehoseMode,
|
|
683
803
|
InputFirehosePq,
|
|
804
|
+
InputFirehosePqControls,
|
|
805
|
+
InputFirehosePqControlsTypedDict,
|
|
684
806
|
InputFirehosePqTypedDict,
|
|
685
807
|
InputFirehoseTLSSettingsServerSide,
|
|
686
808
|
InputFirehoseTLSSettingsServerSideTypedDict,
|
|
@@ -697,6 +819,8 @@ if TYPE_CHECKING:
|
|
|
697
819
|
InputGooglePubsubMetadatumTypedDict,
|
|
698
820
|
InputGooglePubsubMode,
|
|
699
821
|
InputGooglePubsubPq,
|
|
822
|
+
InputGooglePubsubPqControls,
|
|
823
|
+
InputGooglePubsubPqControlsTypedDict,
|
|
700
824
|
InputGooglePubsubPqTypedDict,
|
|
701
825
|
InputGooglePubsubType,
|
|
702
826
|
InputGooglePubsubTypedDict,
|
|
@@ -733,6 +857,10 @@ if TYPE_CHECKING:
|
|
|
733
857
|
InputGrafanaPq1TypedDict,
|
|
734
858
|
InputGrafanaPq2,
|
|
735
859
|
InputGrafanaPq2TypedDict,
|
|
860
|
+
InputGrafanaPqControls1,
|
|
861
|
+
InputGrafanaPqControls1TypedDict,
|
|
862
|
+
InputGrafanaPqControls2,
|
|
863
|
+
InputGrafanaPqControls2TypedDict,
|
|
736
864
|
InputGrafanaPrometheusAuth1,
|
|
737
865
|
InputGrafanaPrometheusAuth1TypedDict,
|
|
738
866
|
InputGrafanaPrometheusAuth2,
|
|
@@ -778,6 +906,8 @@ if TYPE_CHECKING:
|
|
|
778
906
|
InputHTTPMinimumTLSVersion,
|
|
779
907
|
InputHTTPMode,
|
|
780
908
|
InputHTTPPq,
|
|
909
|
+
InputHTTPPqControls,
|
|
910
|
+
InputHTTPPqControlsTypedDict,
|
|
781
911
|
InputHTTPPqTypedDict,
|
|
782
912
|
InputHTTPTLSSettingsServerSide,
|
|
783
913
|
InputHTTPTLSSettingsServerSideTypedDict,
|
|
@@ -799,6 +929,8 @@ if TYPE_CHECKING:
|
|
|
799
929
|
InputHTTPRawMinimumTLSVersion,
|
|
800
930
|
InputHTTPRawMode,
|
|
801
931
|
InputHTTPRawPq,
|
|
932
|
+
InputHTTPRawPqControls,
|
|
933
|
+
InputHTTPRawPqControlsTypedDict,
|
|
802
934
|
InputHTTPRawPqTypedDict,
|
|
803
935
|
InputHTTPRawTLSSettingsServerSide,
|
|
804
936
|
InputHTTPRawTLSSettingsServerSideTypedDict,
|
|
@@ -814,6 +946,8 @@ if TYPE_CHECKING:
|
|
|
814
946
|
InputJournalFilesMetadatumTypedDict,
|
|
815
947
|
InputJournalFilesMode,
|
|
816
948
|
InputJournalFilesPq,
|
|
949
|
+
InputJournalFilesPqControls,
|
|
950
|
+
InputJournalFilesPqControlsTypedDict,
|
|
817
951
|
InputJournalFilesPqTypedDict,
|
|
818
952
|
InputJournalFilesRule,
|
|
819
953
|
InputJournalFilesRuleTypedDict,
|
|
@@ -825,6 +959,7 @@ if TYPE_CHECKING:
|
|
|
825
959
|
InputKafkaAuth,
|
|
826
960
|
InputKafkaAuthTypedDict,
|
|
827
961
|
InputKafkaAuthentication,
|
|
962
|
+
InputKafkaAuthenticationMethod,
|
|
828
963
|
InputKafkaAuthenticationTypedDict,
|
|
829
964
|
InputKafkaCompression,
|
|
830
965
|
InputKafkaConnection,
|
|
@@ -840,10 +975,15 @@ if TYPE_CHECKING:
|
|
|
840
975
|
InputKafkaMetadatumTypedDict,
|
|
841
976
|
InputKafkaMinimumTLSVersion,
|
|
842
977
|
InputKafkaMode,
|
|
978
|
+
InputKafkaOauthParam,
|
|
979
|
+
InputKafkaOauthParamTypedDict,
|
|
843
980
|
InputKafkaPq,
|
|
981
|
+
InputKafkaPqControls,
|
|
982
|
+
InputKafkaPqControlsTypedDict,
|
|
844
983
|
InputKafkaPqTypedDict,
|
|
845
984
|
InputKafkaSASLMechanism,
|
|
846
|
-
|
|
985
|
+
InputKafkaSaslExtension,
|
|
986
|
+
InputKafkaSaslExtensionTypedDict,
|
|
847
987
|
InputKafkaTLSSettingsClientSide,
|
|
848
988
|
InputKafkaTLSSettingsClientSideTypedDict,
|
|
849
989
|
InputKafkaType,
|
|
@@ -859,6 +999,8 @@ if TYPE_CHECKING:
|
|
|
859
999
|
InputKinesisMetadatumTypedDict,
|
|
860
1000
|
InputKinesisMode,
|
|
861
1001
|
InputKinesisPq,
|
|
1002
|
+
InputKinesisPqControls,
|
|
1003
|
+
InputKinesisPqControlsTypedDict,
|
|
862
1004
|
InputKinesisPqTypedDict,
|
|
863
1005
|
InputKinesisRecordDataFormat,
|
|
864
1006
|
InputKinesisSignatureVersion,
|
|
@@ -876,6 +1018,8 @@ if TYPE_CHECKING:
|
|
|
876
1018
|
InputKubeEventsMetadatumTypedDict,
|
|
877
1019
|
InputKubeEventsMode,
|
|
878
1020
|
InputKubeEventsPq,
|
|
1021
|
+
InputKubeEventsPqControls,
|
|
1022
|
+
InputKubeEventsPqControlsTypedDict,
|
|
879
1023
|
InputKubeEventsPqTypedDict,
|
|
880
1024
|
InputKubeEventsRule,
|
|
881
1025
|
InputKubeEventsRuleTypedDict,
|
|
@@ -894,6 +1038,8 @@ if TYPE_CHECKING:
|
|
|
894
1038
|
InputKubeLogsPersistenceCompression,
|
|
895
1039
|
InputKubeLogsPq,
|
|
896
1040
|
InputKubeLogsPqCompression,
|
|
1041
|
+
InputKubeLogsPqControls,
|
|
1042
|
+
InputKubeLogsPqControlsTypedDict,
|
|
897
1043
|
InputKubeLogsPqTypedDict,
|
|
898
1044
|
InputKubeLogsRule,
|
|
899
1045
|
InputKubeLogsRuleTypedDict,
|
|
@@ -912,6 +1058,8 @@ if TYPE_CHECKING:
|
|
|
912
1058
|
InputKubeMetricsPersistence,
|
|
913
1059
|
InputKubeMetricsPersistenceTypedDict,
|
|
914
1060
|
InputKubeMetricsPq,
|
|
1061
|
+
InputKubeMetricsPqControls,
|
|
1062
|
+
InputKubeMetricsPqControlsTypedDict,
|
|
915
1063
|
InputKubeMetricsPqTypedDict,
|
|
916
1064
|
InputKubeMetricsRule,
|
|
917
1065
|
InputKubeMetricsRuleTypedDict,
|
|
@@ -934,6 +1082,8 @@ if TYPE_CHECKING:
|
|
|
934
1082
|
InputLokiOauthParam,
|
|
935
1083
|
InputLokiOauthParamTypedDict,
|
|
936
1084
|
InputLokiPq,
|
|
1085
|
+
InputLokiPqControls,
|
|
1086
|
+
InputLokiPqControlsTypedDict,
|
|
937
1087
|
InputLokiPqTypedDict,
|
|
938
1088
|
InputLokiTLSSettingsServerSide,
|
|
939
1089
|
InputLokiTLSSettingsServerSideTypedDict,
|
|
@@ -951,6 +1101,8 @@ if TYPE_CHECKING:
|
|
|
951
1101
|
InputMetricsMinimumTLSVersion,
|
|
952
1102
|
InputMetricsMode,
|
|
953
1103
|
InputMetricsPq,
|
|
1104
|
+
InputMetricsPqControls,
|
|
1105
|
+
InputMetricsPqControlsTypedDict,
|
|
954
1106
|
InputMetricsPqTypedDict,
|
|
955
1107
|
InputMetricsTLSSettingsServerSide,
|
|
956
1108
|
InputMetricsTLSSettingsServerSideTypedDict,
|
|
@@ -968,6 +1120,8 @@ if TYPE_CHECKING:
|
|
|
968
1120
|
InputModelDrivenTelemetryMinimumTLSVersion,
|
|
969
1121
|
InputModelDrivenTelemetryMode,
|
|
970
1122
|
InputModelDrivenTelemetryPq,
|
|
1123
|
+
InputModelDrivenTelemetryPqControls,
|
|
1124
|
+
InputModelDrivenTelemetryPqControlsTypedDict,
|
|
971
1125
|
InputModelDrivenTelemetryPqTypedDict,
|
|
972
1126
|
InputModelDrivenTelemetryTLSSettingsServerSide,
|
|
973
1127
|
InputModelDrivenTelemetryTLSSettingsServerSideTypedDict,
|
|
@@ -994,8 +1148,9 @@ if TYPE_CHECKING:
|
|
|
994
1148
|
InputMskMinimumTLSVersion,
|
|
995
1149
|
InputMskMode,
|
|
996
1150
|
InputMskPq,
|
|
1151
|
+
InputMskPqControls,
|
|
1152
|
+
InputMskPqControlsTypedDict,
|
|
997
1153
|
InputMskPqTypedDict,
|
|
998
|
-
InputMskSchemaType,
|
|
999
1154
|
InputMskSignatureVersion,
|
|
1000
1155
|
InputMskTLSSettingsClientSide,
|
|
1001
1156
|
InputMskTLSSettingsClientSideTypedDict,
|
|
@@ -1011,6 +1166,8 @@ if TYPE_CHECKING:
|
|
|
1011
1166
|
InputNetflowMetadatumTypedDict,
|
|
1012
1167
|
InputNetflowMode,
|
|
1013
1168
|
InputNetflowPq,
|
|
1169
|
+
InputNetflowPqControls,
|
|
1170
|
+
InputNetflowPqControlsTypedDict,
|
|
1014
1171
|
InputNetflowPqTypedDict,
|
|
1015
1172
|
InputNetflowType,
|
|
1016
1173
|
InputNetflowTypedDict,
|
|
@@ -1028,6 +1185,8 @@ if TYPE_CHECKING:
|
|
|
1028
1185
|
InputOffice365MgmtMetadatumTypedDict,
|
|
1029
1186
|
InputOffice365MgmtMode,
|
|
1030
1187
|
InputOffice365MgmtPq,
|
|
1188
|
+
InputOffice365MgmtPqControls,
|
|
1189
|
+
InputOffice365MgmtPqControlsTypedDict,
|
|
1031
1190
|
InputOffice365MgmtPqTypedDict,
|
|
1032
1191
|
InputOffice365MgmtRetryRules,
|
|
1033
1192
|
InputOffice365MgmtRetryRulesTypedDict,
|
|
@@ -1049,6 +1208,8 @@ if TYPE_CHECKING:
|
|
|
1049
1208
|
InputOffice365MsgTraceMetadatumTypedDict,
|
|
1050
1209
|
InputOffice365MsgTraceMode,
|
|
1051
1210
|
InputOffice365MsgTracePq,
|
|
1211
|
+
InputOffice365MsgTracePqControls,
|
|
1212
|
+
InputOffice365MsgTracePqControlsTypedDict,
|
|
1052
1213
|
InputOffice365MsgTracePqTypedDict,
|
|
1053
1214
|
InputOffice365MsgTraceRetryRules,
|
|
1054
1215
|
InputOffice365MsgTraceRetryRulesTypedDict,
|
|
@@ -1070,6 +1231,8 @@ if TYPE_CHECKING:
|
|
|
1070
1231
|
InputOffice365ServiceMetadatumTypedDict,
|
|
1071
1232
|
InputOffice365ServiceMode,
|
|
1072
1233
|
InputOffice365ServicePq,
|
|
1234
|
+
InputOffice365ServicePqControls,
|
|
1235
|
+
InputOffice365ServicePqControlsTypedDict,
|
|
1073
1236
|
InputOffice365ServicePqTypedDict,
|
|
1074
1237
|
InputOffice365ServiceRetryRules,
|
|
1075
1238
|
InputOffice365ServiceRetryRulesTypedDict,
|
|
@@ -1095,6 +1258,8 @@ if TYPE_CHECKING:
|
|
|
1095
1258
|
InputOpenTelemetryOauthParam,
|
|
1096
1259
|
InputOpenTelemetryOauthParamTypedDict,
|
|
1097
1260
|
InputOpenTelemetryPq,
|
|
1261
|
+
InputOpenTelemetryPqControls,
|
|
1262
|
+
InputOpenTelemetryPqControlsTypedDict,
|
|
1098
1263
|
InputOpenTelemetryPqTypedDict,
|
|
1099
1264
|
InputOpenTelemetryProtocol,
|
|
1100
1265
|
InputOpenTelemetryTLSSettingsServerSide,
|
|
@@ -1115,6 +1280,8 @@ if TYPE_CHECKING:
|
|
|
1115
1280
|
InputPrometheusMetadatumTypedDict,
|
|
1116
1281
|
InputPrometheusMode,
|
|
1117
1282
|
InputPrometheusPq,
|
|
1283
|
+
InputPrometheusPqControls,
|
|
1284
|
+
InputPrometheusPqControlsTypedDict,
|
|
1118
1285
|
InputPrometheusPqTypedDict,
|
|
1119
1286
|
InputPrometheusRecordType,
|
|
1120
1287
|
InputPrometheusSearchFilter,
|
|
@@ -1140,6 +1307,8 @@ if TYPE_CHECKING:
|
|
|
1140
1307
|
InputPrometheusRwOauthParam,
|
|
1141
1308
|
InputPrometheusRwOauthParamTypedDict,
|
|
1142
1309
|
InputPrometheusRwPq,
|
|
1310
|
+
InputPrometheusRwPqControls,
|
|
1311
|
+
InputPrometheusRwPqControlsTypedDict,
|
|
1143
1312
|
InputPrometheusRwPqTypedDict,
|
|
1144
1313
|
InputPrometheusRwTLSSettingsServerSide,
|
|
1145
1314
|
InputPrometheusRwTLSSettingsServerSideTypedDict,
|
|
@@ -1155,6 +1324,8 @@ if TYPE_CHECKING:
|
|
|
1155
1324
|
InputRawUDPMetadatumTypedDict,
|
|
1156
1325
|
InputRawUDPMode,
|
|
1157
1326
|
InputRawUDPPq,
|
|
1327
|
+
InputRawUDPPqControls,
|
|
1328
|
+
InputRawUDPPqControlsTypedDict,
|
|
1158
1329
|
InputRawUDPPqTypedDict,
|
|
1159
1330
|
InputRawUDPType,
|
|
1160
1331
|
InputRawUDPTypedDict,
|
|
@@ -1171,6 +1342,8 @@ if TYPE_CHECKING:
|
|
|
1171
1342
|
InputS3MetadatumTypedDict,
|
|
1172
1343
|
InputS3Mode,
|
|
1173
1344
|
InputS3Pq,
|
|
1345
|
+
InputS3PqControls,
|
|
1346
|
+
InputS3PqControlsTypedDict,
|
|
1174
1347
|
InputS3PqTypedDict,
|
|
1175
1348
|
InputS3Preprocess,
|
|
1176
1349
|
InputS3PreprocessTypedDict,
|
|
@@ -1190,6 +1363,8 @@ if TYPE_CHECKING:
|
|
|
1190
1363
|
InputS3InventoryMetadatumTypedDict,
|
|
1191
1364
|
InputS3InventoryMode,
|
|
1192
1365
|
InputS3InventoryPq,
|
|
1366
|
+
InputS3InventoryPqControls,
|
|
1367
|
+
InputS3InventoryPqControlsTypedDict,
|
|
1193
1368
|
InputS3InventoryPqTypedDict,
|
|
1194
1369
|
InputS3InventoryPreprocess,
|
|
1195
1370
|
InputS3InventoryPreprocessTypedDict,
|
|
@@ -1210,6 +1385,8 @@ if TYPE_CHECKING:
|
|
|
1210
1385
|
InputSecurityLakeMetadatumTypedDict,
|
|
1211
1386
|
InputSecurityLakeMode,
|
|
1212
1387
|
InputSecurityLakePq,
|
|
1388
|
+
InputSecurityLakePqControls,
|
|
1389
|
+
InputSecurityLakePqControlsTypedDict,
|
|
1213
1390
|
InputSecurityLakePqTypedDict,
|
|
1214
1391
|
InputSecurityLakePreprocess,
|
|
1215
1392
|
InputSecurityLakePreprocessTypedDict,
|
|
@@ -1228,6 +1405,8 @@ if TYPE_CHECKING:
|
|
|
1228
1405
|
InputSnmpMetadatumTypedDict,
|
|
1229
1406
|
InputSnmpMode,
|
|
1230
1407
|
InputSnmpPq,
|
|
1408
|
+
InputSnmpPqControls,
|
|
1409
|
+
InputSnmpPqControlsTypedDict,
|
|
1231
1410
|
InputSnmpPqTypedDict,
|
|
1232
1411
|
InputSnmpType,
|
|
1233
1412
|
InputSnmpTypedDict,
|
|
@@ -1251,6 +1430,8 @@ if TYPE_CHECKING:
|
|
|
1251
1430
|
InputSplunkMode,
|
|
1252
1431
|
InputSplunkPq,
|
|
1253
1432
|
InputSplunkPqCompression,
|
|
1433
|
+
InputSplunkPqControls,
|
|
1434
|
+
InputSplunkPqControlsTypedDict,
|
|
1254
1435
|
InputSplunkPqTypedDict,
|
|
1255
1436
|
InputSplunkTLSSettingsServerSide,
|
|
1256
1437
|
InputSplunkTLSSettingsServerSideTypedDict,
|
|
@@ -1273,6 +1454,8 @@ if TYPE_CHECKING:
|
|
|
1273
1454
|
InputSplunkHecMinimumTLSVersion,
|
|
1274
1455
|
InputSplunkHecMode,
|
|
1275
1456
|
InputSplunkHecPq,
|
|
1457
|
+
InputSplunkHecPqControls,
|
|
1458
|
+
InputSplunkHecPqControlsTypedDict,
|
|
1276
1459
|
InputSplunkHecPqTypedDict,
|
|
1277
1460
|
InputSplunkHecTLSSettingsServerSide,
|
|
1278
1461
|
InputSplunkHecTLSSettingsServerSideTypedDict,
|
|
@@ -1298,6 +1481,8 @@ if TYPE_CHECKING:
|
|
|
1298
1481
|
InputSplunkSearchOauthParam,
|
|
1299
1482
|
InputSplunkSearchOauthParamTypedDict,
|
|
1300
1483
|
InputSplunkSearchPq,
|
|
1484
|
+
InputSplunkSearchPqControls,
|
|
1485
|
+
InputSplunkSearchPqControlsTypedDict,
|
|
1301
1486
|
InputSplunkSearchPqTypedDict,
|
|
1302
1487
|
InputSplunkSearchRetryRules,
|
|
1303
1488
|
InputSplunkSearchRetryRulesTypedDict,
|
|
@@ -1316,6 +1501,8 @@ if TYPE_CHECKING:
|
|
|
1316
1501
|
InputSqsMetadatumTypedDict,
|
|
1317
1502
|
InputSqsMode,
|
|
1318
1503
|
InputSqsPq,
|
|
1504
|
+
InputSqsPqControls,
|
|
1505
|
+
InputSqsPqControlsTypedDict,
|
|
1319
1506
|
InputSqsPqTypedDict,
|
|
1320
1507
|
InputSqsQueueType,
|
|
1321
1508
|
InputSqsSignatureVersion,
|
|
@@ -1344,6 +1531,10 @@ if TYPE_CHECKING:
|
|
|
1344
1531
|
InputSyslogPq1TypedDict,
|
|
1345
1532
|
InputSyslogPq2,
|
|
1346
1533
|
InputSyslogPq2TypedDict,
|
|
1534
|
+
InputSyslogPqControls1,
|
|
1535
|
+
InputSyslogPqControls1TypedDict,
|
|
1536
|
+
InputSyslogPqControls2,
|
|
1537
|
+
InputSyslogPqControls2TypedDict,
|
|
1347
1538
|
InputSyslogSyslog1,
|
|
1348
1539
|
InputSyslogSyslog1TypedDict,
|
|
1349
1540
|
InputSyslogSyslog2,
|
|
@@ -1389,6 +1580,8 @@ if TYPE_CHECKING:
|
|
|
1389
1580
|
InputSystemMetricsPersistence,
|
|
1390
1581
|
InputSystemMetricsPersistenceTypedDict,
|
|
1391
1582
|
InputSystemMetricsPq,
|
|
1583
|
+
InputSystemMetricsPqControls,
|
|
1584
|
+
InputSystemMetricsPqControlsTypedDict,
|
|
1392
1585
|
InputSystemMetricsPqMode,
|
|
1393
1586
|
InputSystemMetricsPqTypedDict,
|
|
1394
1587
|
InputSystemMetricsProcess,
|
|
@@ -1425,6 +1618,8 @@ if TYPE_CHECKING:
|
|
|
1425
1618
|
InputSystemStatePersistence,
|
|
1426
1619
|
InputSystemStatePersistenceTypedDict,
|
|
1427
1620
|
InputSystemStatePq,
|
|
1621
|
+
InputSystemStatePqControls,
|
|
1622
|
+
InputSystemStatePqControlsTypedDict,
|
|
1428
1623
|
InputSystemStatePqTypedDict,
|
|
1429
1624
|
InputSystemStateRoutes,
|
|
1430
1625
|
InputSystemStateRoutesTypedDict,
|
|
@@ -1453,6 +1648,8 @@ if TYPE_CHECKING:
|
|
|
1453
1648
|
InputTCPMinimumTLSVersion,
|
|
1454
1649
|
InputTCPMode,
|
|
1455
1650
|
InputTCPPq,
|
|
1651
|
+
InputTCPPqControls,
|
|
1652
|
+
InputTCPPqControlsTypedDict,
|
|
1456
1653
|
InputTCPPqTypedDict,
|
|
1457
1654
|
InputTCPPreprocess,
|
|
1458
1655
|
InputTCPPreprocessTypedDict,
|
|
@@ -1473,6 +1670,8 @@ if TYPE_CHECKING:
|
|
|
1473
1670
|
InputTcpjsonMinimumTLSVersion,
|
|
1474
1671
|
InputTcpjsonMode,
|
|
1475
1672
|
InputTcpjsonPq,
|
|
1673
|
+
InputTcpjsonPqControls,
|
|
1674
|
+
InputTcpjsonPqControlsTypedDict,
|
|
1476
1675
|
InputTcpjsonPqTypedDict,
|
|
1477
1676
|
InputTcpjsonTLSSettingsServerSide,
|
|
1478
1677
|
InputTcpjsonTLSSettingsServerSideTypedDict,
|
|
@@ -1492,6 +1691,8 @@ if TYPE_CHECKING:
|
|
|
1492
1691
|
InputWefMinimumTLSVersion,
|
|
1493
1692
|
InputWefMode,
|
|
1494
1693
|
InputWefPq,
|
|
1694
|
+
InputWefPqControls,
|
|
1695
|
+
InputWefPqControlsTypedDict,
|
|
1495
1696
|
InputWefPqTypedDict,
|
|
1496
1697
|
InputWefType,
|
|
1497
1698
|
InputWefTypedDict,
|
|
@@ -1531,6 +1732,8 @@ if TYPE_CHECKING:
|
|
|
1531
1732
|
InputWindowsMetricsPersistence,
|
|
1532
1733
|
InputWindowsMetricsPersistenceTypedDict,
|
|
1533
1734
|
InputWindowsMetricsPq,
|
|
1735
|
+
InputWindowsMetricsPqControls,
|
|
1736
|
+
InputWindowsMetricsPqControlsTypedDict,
|
|
1534
1737
|
InputWindowsMetricsPqMode,
|
|
1535
1738
|
InputWindowsMetricsPqTypedDict,
|
|
1536
1739
|
InputWindowsMetricsProcess,
|
|
@@ -1553,6 +1756,8 @@ if TYPE_CHECKING:
|
|
|
1553
1756
|
InputWinEventLogsMetadatumTypedDict,
|
|
1554
1757
|
InputWinEventLogsMode,
|
|
1555
1758
|
InputWinEventLogsPq,
|
|
1759
|
+
InputWinEventLogsPqControls,
|
|
1760
|
+
InputWinEventLogsPqControlsTypedDict,
|
|
1556
1761
|
InputWinEventLogsPqTypedDict,
|
|
1557
1762
|
InputWinEventLogsType,
|
|
1558
1763
|
InputWinEventLogsTypedDict,
|
|
@@ -1570,6 +1775,8 @@ if TYPE_CHECKING:
|
|
|
1570
1775
|
InputWizMetadatumTypedDict,
|
|
1571
1776
|
InputWizMode,
|
|
1572
1777
|
InputWizPq,
|
|
1778
|
+
InputWizPqControls,
|
|
1779
|
+
InputWizPqControlsTypedDict,
|
|
1573
1780
|
InputWizPqTypedDict,
|
|
1574
1781
|
InputWizRetryRules,
|
|
1575
1782
|
InputWizRetryRulesTypedDict,
|
|
@@ -1592,6 +1799,8 @@ if TYPE_CHECKING:
|
|
|
1592
1799
|
InputWizWebhookMinimumTLSVersion,
|
|
1593
1800
|
InputWizWebhookMode,
|
|
1594
1801
|
InputWizWebhookPq,
|
|
1802
|
+
InputWizWebhookPqControls,
|
|
1803
|
+
InputWizWebhookPqControlsTypedDict,
|
|
1595
1804
|
InputWizWebhookPqTypedDict,
|
|
1596
1805
|
InputWizWebhookTLSSettingsServerSide,
|
|
1597
1806
|
InputWizWebhookTLSSettingsServerSideTypedDict,
|
|
@@ -1614,12 +1823,17 @@ if TYPE_CHECKING:
|
|
|
1614
1823
|
InputZscalerHecMinimumTLSVersion,
|
|
1615
1824
|
InputZscalerHecMode,
|
|
1616
1825
|
InputZscalerHecPq,
|
|
1826
|
+
InputZscalerHecPqControls,
|
|
1827
|
+
InputZscalerHecPqControlsTypedDict,
|
|
1617
1828
|
InputZscalerHecPqTypedDict,
|
|
1618
1829
|
InputZscalerHecTLSSettingsServerSide,
|
|
1619
1830
|
InputZscalerHecTLSSettingsServerSideTypedDict,
|
|
1620
1831
|
InputZscalerHecType,
|
|
1621
1832
|
InputZscalerHecTypedDict,
|
|
1622
1833
|
)
|
|
1834
|
+
from .jobinfo import JobInfo, JobInfoTypedDict, Stats, StatsTypedDict
|
|
1835
|
+
from .jobstatus import JobStatus, JobStatusTypedDict, State
|
|
1836
|
+
from .lakedatasetmetrics import LakeDatasetMetrics, LakeDatasetMetricsTypedDict
|
|
1623
1837
|
from .lakedatasetsearchconfig import (
|
|
1624
1838
|
LakeDatasetSearchConfig,
|
|
1625
1839
|
LakeDatasetSearchConfigTypedDict,
|
|
@@ -1677,6 +1891,7 @@ if TYPE_CHECKING:
|
|
|
1677
1891
|
from .nodeskippedupgradestatus import NodeSkippedUpgradeStatus
|
|
1678
1892
|
from .nodeupgradestate import NodeUpgradeState
|
|
1679
1893
|
from .nodeupgradestatus import NodeUpgradeStatus, NodeUpgradeStatusTypedDict
|
|
1894
|
+
from .outpostnodeinfo import OutpostNodeInfo, OutpostNodeInfoTypedDict
|
|
1680
1895
|
from .output import Output, OutputTypedDict
|
|
1681
1896
|
from .outputazureblob import (
|
|
1682
1897
|
BlobAccessTier,
|
|
@@ -1704,16 +1919,21 @@ if TYPE_CHECKING:
|
|
|
1704
1919
|
IngestIfNotExist,
|
|
1705
1920
|
IngestIfNotExistTypedDict,
|
|
1706
1921
|
IngestionMode,
|
|
1707
|
-
MicrosoftEntraIDAuthenticationEndpoint,
|
|
1708
1922
|
OutputAzureDataExplorer,
|
|
1709
1923
|
OutputAzureDataExplorerAuthenticationMethod,
|
|
1710
1924
|
OutputAzureDataExplorerBackpressureBehavior,
|
|
1711
1925
|
OutputAzureDataExplorerCertificate,
|
|
1712
1926
|
OutputAzureDataExplorerCertificateTypedDict,
|
|
1713
1927
|
OutputAzureDataExplorerCompressCompression,
|
|
1928
|
+
OutputAzureDataExplorerCompressionLevel,
|
|
1714
1929
|
OutputAzureDataExplorerDataFormat,
|
|
1930
|
+
OutputAzureDataExplorerDataPageVersion,
|
|
1715
1931
|
OutputAzureDataExplorerDiskSpaceProtection,
|
|
1932
|
+
OutputAzureDataExplorerKeyValueMetadatum,
|
|
1933
|
+
OutputAzureDataExplorerKeyValueMetadatumTypedDict,
|
|
1934
|
+
OutputAzureDataExplorerMicrosoftEntraIDAuthenticationEndpoint,
|
|
1716
1935
|
OutputAzureDataExplorerMode,
|
|
1936
|
+
OutputAzureDataExplorerParquetVersion,
|
|
1717
1937
|
OutputAzureDataExplorerPqCompressCompression,
|
|
1718
1938
|
OutputAzureDataExplorerPqControls,
|
|
1719
1939
|
OutputAzureDataExplorerPqControlsTypedDict,
|
|
@@ -1731,10 +1951,13 @@ if TYPE_CHECKING:
|
|
|
1731
1951
|
from .outputazureeventhub import (
|
|
1732
1952
|
OutputAzureEventhub,
|
|
1733
1953
|
OutputAzureEventhubAcknowledgments,
|
|
1954
|
+
OutputAzureEventhubAuthTypeAuthenticationMethod,
|
|
1734
1955
|
OutputAzureEventhubAuthentication,
|
|
1735
1956
|
OutputAzureEventhubAuthenticationTypedDict,
|
|
1736
1957
|
OutputAzureEventhubBackpressureBehavior,
|
|
1958
|
+
OutputAzureEventhubClientSecretAuthTypeAuthenticationMethod,
|
|
1737
1959
|
OutputAzureEventhubCompression,
|
|
1960
|
+
OutputAzureEventhubMicrosoftEntraIDAuthenticationEndpoint,
|
|
1738
1961
|
OutputAzureEventhubMode,
|
|
1739
1962
|
OutputAzureEventhubPqControls,
|
|
1740
1963
|
OutputAzureEventhubPqControlsTypedDict,
|
|
@@ -1765,6 +1988,27 @@ if TYPE_CHECKING:
|
|
|
1765
1988
|
OutputAzureLogsType,
|
|
1766
1989
|
OutputAzureLogsTypedDict,
|
|
1767
1990
|
)
|
|
1991
|
+
from .outputchronicle import (
|
|
1992
|
+
OutputChronicle,
|
|
1993
|
+
OutputChronicleAuthenticationMethod,
|
|
1994
|
+
OutputChronicleBackpressureBehavior,
|
|
1995
|
+
OutputChronicleCompression,
|
|
1996
|
+
OutputChronicleCustomLabel,
|
|
1997
|
+
OutputChronicleCustomLabelTypedDict,
|
|
1998
|
+
OutputChronicleExtraHTTPHeader,
|
|
1999
|
+
OutputChronicleExtraHTTPHeaderTypedDict,
|
|
2000
|
+
OutputChronicleFailedRequestLoggingMode,
|
|
2001
|
+
OutputChronicleMode,
|
|
2002
|
+
OutputChroniclePqControls,
|
|
2003
|
+
OutputChroniclePqControlsTypedDict,
|
|
2004
|
+
OutputChronicleQueueFullBehavior,
|
|
2005
|
+
OutputChronicleResponseRetrySetting,
|
|
2006
|
+
OutputChronicleResponseRetrySettingTypedDict,
|
|
2007
|
+
OutputChronicleTimeoutRetrySettings,
|
|
2008
|
+
OutputChronicleTimeoutRetrySettingsTypedDict,
|
|
2009
|
+
OutputChronicleType,
|
|
2010
|
+
OutputChronicleTypedDict,
|
|
2011
|
+
)
|
|
1768
2012
|
from .outputclickhouse import (
|
|
1769
2013
|
ColumnMapping,
|
|
1770
2014
|
ColumnMappingTypedDict,
|
|
@@ -1796,6 +2040,24 @@ if TYPE_CHECKING:
|
|
|
1796
2040
|
OutputClickHouseType,
|
|
1797
2041
|
OutputClickHouseTypedDict,
|
|
1798
2042
|
)
|
|
2043
|
+
from .outputcloudflarer2 import (
|
|
2044
|
+
OutputCloudflareR2,
|
|
2045
|
+
OutputCloudflareR2AuthenticationMethod,
|
|
2046
|
+
OutputCloudflareR2BackpressureBehavior,
|
|
2047
|
+
OutputCloudflareR2Compression,
|
|
2048
|
+
OutputCloudflareR2CompressionLevel,
|
|
2049
|
+
OutputCloudflareR2DataFormat,
|
|
2050
|
+
OutputCloudflareR2DataPageVersion,
|
|
2051
|
+
OutputCloudflareR2DiskSpaceProtection,
|
|
2052
|
+
OutputCloudflareR2KeyValueMetadatum,
|
|
2053
|
+
OutputCloudflareR2KeyValueMetadatumTypedDict,
|
|
2054
|
+
OutputCloudflareR2ParquetVersion,
|
|
2055
|
+
OutputCloudflareR2ServerSideEncryption,
|
|
2056
|
+
OutputCloudflareR2SignatureVersion,
|
|
2057
|
+
OutputCloudflareR2StorageClass,
|
|
2058
|
+
OutputCloudflareR2Type,
|
|
2059
|
+
OutputCloudflareR2TypedDict,
|
|
2060
|
+
)
|
|
1799
2061
|
from .outputcloudwatch import (
|
|
1800
2062
|
OutputCloudwatch,
|
|
1801
2063
|
OutputCloudwatchAuthenticationMethod,
|
|
@@ -1814,6 +2076,7 @@ if TYPE_CHECKING:
|
|
|
1814
2076
|
OutputConfluentCloudAuth,
|
|
1815
2077
|
OutputConfluentCloudAuthTypedDict,
|
|
1816
2078
|
OutputConfluentCloudAuthentication,
|
|
2079
|
+
OutputConfluentCloudAuthenticationMethod,
|
|
1817
2080
|
OutputConfluentCloudAuthenticationTypedDict,
|
|
1818
2081
|
OutputConfluentCloudBackpressureBehavior,
|
|
1819
2082
|
OutputConfluentCloudCompression,
|
|
@@ -1826,13 +2089,16 @@ if TYPE_CHECKING:
|
|
|
1826
2089
|
OutputConfluentCloudMaximumTLSVersion,
|
|
1827
2090
|
OutputConfluentCloudMinimumTLSVersion,
|
|
1828
2091
|
OutputConfluentCloudMode,
|
|
2092
|
+
OutputConfluentCloudOauthParam,
|
|
2093
|
+
OutputConfluentCloudOauthParamTypedDict,
|
|
1829
2094
|
OutputConfluentCloudPqCompressCompression,
|
|
1830
2095
|
OutputConfluentCloudPqControls,
|
|
1831
2096
|
OutputConfluentCloudPqControlsTypedDict,
|
|
1832
2097
|
OutputConfluentCloudQueueFullBehavior,
|
|
1833
2098
|
OutputConfluentCloudRecordDataFormat,
|
|
1834
2099
|
OutputConfluentCloudSASLMechanism,
|
|
1835
|
-
|
|
2100
|
+
OutputConfluentCloudSaslExtension,
|
|
2101
|
+
OutputConfluentCloudSaslExtensionTypedDict,
|
|
1836
2102
|
OutputConfluentCloudTLSSettingsClientSide,
|
|
1837
2103
|
OutputConfluentCloudTLSSettingsClientSideTypedDict,
|
|
1838
2104
|
OutputConfluentCloudType,
|
|
@@ -1840,6 +2106,8 @@ if TYPE_CHECKING:
|
|
|
1840
2106
|
)
|
|
1841
2107
|
from .outputcriblhttp import (
|
|
1842
2108
|
OutputCriblHTTP,
|
|
2109
|
+
OutputCriblHTTPAuthToken,
|
|
2110
|
+
OutputCriblHTTPAuthTokenTypedDict,
|
|
1843
2111
|
OutputCriblHTTPBackpressureBehavior,
|
|
1844
2112
|
OutputCriblHTTPCompression,
|
|
1845
2113
|
OutputCriblHTTPExtraHTTPHeader,
|
|
@@ -1878,6 +2146,8 @@ if TYPE_CHECKING:
|
|
|
1878
2146
|
)
|
|
1879
2147
|
from .outputcribltcp import (
|
|
1880
2148
|
OutputCriblTCP,
|
|
2149
|
+
OutputCriblTCPAuthToken,
|
|
2150
|
+
OutputCriblTCPAuthTokenTypedDict,
|
|
1881
2151
|
OutputCriblTCPBackpressureBehavior,
|
|
1882
2152
|
OutputCriblTCPCompression,
|
|
1883
2153
|
OutputCriblTCPHost,
|
|
@@ -1915,6 +2185,20 @@ if TYPE_CHECKING:
|
|
|
1915
2185
|
OutputCrowdstrikeNextGenSiemType,
|
|
1916
2186
|
OutputCrowdstrikeNextGenSiemTypedDict,
|
|
1917
2187
|
)
|
|
2188
|
+
from .outputdatabricks import (
|
|
2189
|
+
OutputDatabricks,
|
|
2190
|
+
OutputDatabricksBackpressureBehavior,
|
|
2191
|
+
OutputDatabricksCompression,
|
|
2192
|
+
OutputDatabricksCompressionLevel,
|
|
2193
|
+
OutputDatabricksDataFormat,
|
|
2194
|
+
OutputDatabricksDataPageVersion,
|
|
2195
|
+
OutputDatabricksDiskSpaceProtection,
|
|
2196
|
+
OutputDatabricksKeyValueMetadatum,
|
|
2197
|
+
OutputDatabricksKeyValueMetadatumTypedDict,
|
|
2198
|
+
OutputDatabricksParquetVersion,
|
|
2199
|
+
OutputDatabricksType,
|
|
2200
|
+
OutputDatabricksTypedDict,
|
|
2201
|
+
)
|
|
1918
2202
|
from .outputdatadog import (
|
|
1919
2203
|
DatadogSite,
|
|
1920
2204
|
OutputDatadog,
|
|
@@ -2108,8 +2392,6 @@ if TYPE_CHECKING:
|
|
|
2108
2392
|
OutputFilesystemTypedDict,
|
|
2109
2393
|
)
|
|
2110
2394
|
from .outputgooglechronicle import (
|
|
2111
|
-
CustomLabel,
|
|
2112
|
-
CustomLabelTypedDict,
|
|
2113
2395
|
ExtraLogType,
|
|
2114
2396
|
ExtraLogTypeTypedDict,
|
|
2115
2397
|
OutputGoogleChronicle,
|
|
@@ -2117,6 +2399,8 @@ if TYPE_CHECKING:
|
|
|
2117
2399
|
OutputGoogleChronicleAuthenticationMethod,
|
|
2118
2400
|
OutputGoogleChronicleBackpressureBehavior,
|
|
2119
2401
|
OutputGoogleChronicleCompression,
|
|
2402
|
+
OutputGoogleChronicleCustomLabel,
|
|
2403
|
+
OutputGoogleChronicleCustomLabelTypedDict,
|
|
2120
2404
|
OutputGoogleChronicleExtraHTTPHeader,
|
|
2121
2405
|
OutputGoogleChronicleExtraHTTPHeaderTypedDict,
|
|
2122
2406
|
OutputGoogleChronicleFailedRequestLoggingMode,
|
|
@@ -2131,6 +2415,7 @@ if TYPE_CHECKING:
|
|
|
2131
2415
|
OutputGoogleChronicleType,
|
|
2132
2416
|
OutputGoogleChronicleTypedDict,
|
|
2133
2417
|
SendEventsAs,
|
|
2418
|
+
UDMType,
|
|
2134
2419
|
)
|
|
2135
2420
|
from .outputgooglecloudlogging import (
|
|
2136
2421
|
LogLabel,
|
|
@@ -2315,6 +2600,7 @@ if TYPE_CHECKING:
|
|
|
2315
2600
|
OutputKafkaAuth,
|
|
2316
2601
|
OutputKafkaAuthTypedDict,
|
|
2317
2602
|
OutputKafkaAuthentication,
|
|
2603
|
+
OutputKafkaAuthenticationMethod,
|
|
2318
2604
|
OutputKafkaAuthenticationTypedDict,
|
|
2319
2605
|
OutputKafkaBackpressureBehavior,
|
|
2320
2606
|
OutputKafkaCompression,
|
|
@@ -2327,13 +2613,16 @@ if TYPE_CHECKING:
|
|
|
2327
2613
|
OutputKafkaMaximumTLSVersion,
|
|
2328
2614
|
OutputKafkaMinimumTLSVersion,
|
|
2329
2615
|
OutputKafkaMode,
|
|
2616
|
+
OutputKafkaOauthParam,
|
|
2617
|
+
OutputKafkaOauthParamTypedDict,
|
|
2330
2618
|
OutputKafkaPqCompressCompression,
|
|
2331
2619
|
OutputKafkaPqControls,
|
|
2332
2620
|
OutputKafkaPqControlsTypedDict,
|
|
2333
2621
|
OutputKafkaQueueFullBehavior,
|
|
2334
2622
|
OutputKafkaRecordDataFormat,
|
|
2335
2623
|
OutputKafkaSASLMechanism,
|
|
2336
|
-
|
|
2624
|
+
OutputKafkaSaslExtension,
|
|
2625
|
+
OutputKafkaSaslExtensionTypedDict,
|
|
2337
2626
|
OutputKafkaTLSSettingsClientSide,
|
|
2338
2627
|
OutputKafkaTLSSettingsClientSideTypedDict,
|
|
2339
2628
|
OutputKafkaType,
|
|
@@ -2375,6 +2664,26 @@ if TYPE_CHECKING:
|
|
|
2375
2664
|
OutputLokiType,
|
|
2376
2665
|
OutputLokiTypedDict,
|
|
2377
2666
|
)
|
|
2667
|
+
from .outputmicrosoftfabric import (
|
|
2668
|
+
OutputMicrosoftFabric,
|
|
2669
|
+
OutputMicrosoftFabricAcknowledgments,
|
|
2670
|
+
OutputMicrosoftFabricAuthentication,
|
|
2671
|
+
OutputMicrosoftFabricAuthenticationMethod,
|
|
2672
|
+
OutputMicrosoftFabricAuthenticationTypedDict,
|
|
2673
|
+
OutputMicrosoftFabricBackpressureBehavior,
|
|
2674
|
+
OutputMicrosoftFabricCompression,
|
|
2675
|
+
OutputMicrosoftFabricMicrosoftEntraIDAuthenticationEndpoint,
|
|
2676
|
+
OutputMicrosoftFabricMode,
|
|
2677
|
+
OutputMicrosoftFabricPqControls,
|
|
2678
|
+
OutputMicrosoftFabricPqControlsTypedDict,
|
|
2679
|
+
OutputMicrosoftFabricQueueFullBehavior,
|
|
2680
|
+
OutputMicrosoftFabricRecordDataFormat,
|
|
2681
|
+
OutputMicrosoftFabricSASLMechanism,
|
|
2682
|
+
OutputMicrosoftFabricTLSSettingsClientSide,
|
|
2683
|
+
OutputMicrosoftFabricTLSSettingsClientSideTypedDict,
|
|
2684
|
+
OutputMicrosoftFabricType,
|
|
2685
|
+
OutputMicrosoftFabricTypedDict,
|
|
2686
|
+
)
|
|
2378
2687
|
from .outputminio import (
|
|
2379
2688
|
OutputMinio,
|
|
2380
2689
|
OutputMinioAuthenticationMethod,
|
|
@@ -2388,11 +2697,11 @@ if TYPE_CHECKING:
|
|
|
2388
2697
|
OutputMinioKeyValueMetadatumTypedDict,
|
|
2389
2698
|
OutputMinioObjectACL,
|
|
2390
2699
|
OutputMinioParquetVersion,
|
|
2700
|
+
OutputMinioServerSideEncryption,
|
|
2391
2701
|
OutputMinioSignatureVersion,
|
|
2392
2702
|
OutputMinioStorageClass,
|
|
2393
2703
|
OutputMinioType,
|
|
2394
2704
|
OutputMinioTypedDict,
|
|
2395
|
-
ServerSideEncryption,
|
|
2396
2705
|
)
|
|
2397
2706
|
from .outputmsk import (
|
|
2398
2707
|
OutputMsk,
|
|
@@ -2416,7 +2725,6 @@ if TYPE_CHECKING:
|
|
|
2416
2725
|
OutputMskPqControlsTypedDict,
|
|
2417
2726
|
OutputMskQueueFullBehavior,
|
|
2418
2727
|
OutputMskRecordDataFormat,
|
|
2419
|
-
OutputMskSchemaType,
|
|
2420
2728
|
OutputMskSignatureVersion,
|
|
2421
2729
|
OutputMskTLSSettingsClientSide,
|
|
2422
2730
|
OutputMskTLSSettingsClientSideTypedDict,
|
|
@@ -2719,12 +3027,16 @@ if TYPE_CHECKING:
|
|
|
2719
3027
|
OutputSplunkHecExtraHTTPHeader,
|
|
2720
3028
|
OutputSplunkHecExtraHTTPHeaderTypedDict,
|
|
2721
3029
|
OutputSplunkHecFailedRequestLoggingMode,
|
|
3030
|
+
OutputSplunkHecMaximumTLSVersion,
|
|
3031
|
+
OutputSplunkHecMinimumTLSVersion,
|
|
2722
3032
|
OutputSplunkHecMode,
|
|
2723
3033
|
OutputSplunkHecPqControls,
|
|
2724
3034
|
OutputSplunkHecPqControlsTypedDict,
|
|
2725
3035
|
OutputSplunkHecQueueFullBehavior,
|
|
2726
3036
|
OutputSplunkHecResponseRetrySetting,
|
|
2727
3037
|
OutputSplunkHecResponseRetrySettingTypedDict,
|
|
3038
|
+
OutputSplunkHecTLSSettingsClientSide,
|
|
3039
|
+
OutputSplunkHecTLSSettingsClientSideTypedDict,
|
|
2728
3040
|
OutputSplunkHecTimeoutRetrySettings,
|
|
2729
3041
|
OutputSplunkHecTimeoutRetrySettingsTypedDict,
|
|
2730
3042
|
OutputSplunkHecType,
|
|
@@ -2822,6 +3134,8 @@ if TYPE_CHECKING:
|
|
|
2822
3134
|
OutputSyslog,
|
|
2823
3135
|
OutputSyslogBackpressureBehavior,
|
|
2824
3136
|
OutputSyslogCompression,
|
|
3137
|
+
OutputSyslogHost,
|
|
3138
|
+
OutputSyslogHostTypedDict,
|
|
2825
3139
|
OutputSyslogMaximumTLSVersion,
|
|
2826
3140
|
OutputSyslogMessageFormat,
|
|
2827
3141
|
OutputSyslogMinimumTLSVersion,
|
|
@@ -2831,6 +3145,7 @@ if TYPE_CHECKING:
|
|
|
2831
3145
|
OutputSyslogProtocol,
|
|
2832
3146
|
OutputSyslogQueueFullBehavior,
|
|
2833
3147
|
OutputSyslogSeverity,
|
|
3148
|
+
OutputSyslogTLS,
|
|
2834
3149
|
OutputSyslogTLSSettingsClientSide,
|
|
2835
3150
|
OutputSyslogTLSSettingsClientSideTypedDict,
|
|
2836
3151
|
OutputSyslogType,
|
|
@@ -2972,7 +3287,6 @@ if TYPE_CHECKING:
|
|
|
2972
3287
|
from .productscore import ProductsCore
|
|
2973
3288
|
from .rbacresource import RbacResource
|
|
2974
3289
|
from .resourcepolicy import ResourcePolicy, ResourcePolicyTypedDict
|
|
2975
|
-
from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
|
|
2976
3290
|
from .routeconf import RouteConf, RouteConfTypedDict
|
|
2977
3291
|
from .routes import (
|
|
2978
3292
|
Comment,
|
|
@@ -2983,6 +3297,74 @@ if TYPE_CHECKING:
|
|
|
2983
3297
|
RoutesTypedDict,
|
|
2984
3298
|
)
|
|
2985
3299
|
from .routesroute import RoutesRoute, RoutesRouteTypedDict
|
|
3300
|
+
from .runnablejob import RunnableJob, RunnableJobTypedDict
|
|
3301
|
+
from .runnablejobcollection import (
|
|
3302
|
+
CaptureSettings,
|
|
3303
|
+
CaptureSettingsTypedDict,
|
|
3304
|
+
Collector,
|
|
3305
|
+
CollectorSpecificSettings,
|
|
3306
|
+
CollectorSpecificSettingsTypedDict,
|
|
3307
|
+
CollectorTypedDict,
|
|
3308
|
+
InputType,
|
|
3309
|
+
RunnableJobCollection,
|
|
3310
|
+
RunnableJobCollectionInput,
|
|
3311
|
+
RunnableJobCollectionInputTypedDict,
|
|
3312
|
+
RunnableJobCollectionJobType,
|
|
3313
|
+
RunnableJobCollectionLogLevel,
|
|
3314
|
+
RunnableJobCollectionMetadatum,
|
|
3315
|
+
RunnableJobCollectionMetadatumTypedDict,
|
|
3316
|
+
RunnableJobCollectionMode,
|
|
3317
|
+
RunnableJobCollectionPreprocess,
|
|
3318
|
+
RunnableJobCollectionPreprocessTypedDict,
|
|
3319
|
+
RunnableJobCollectionRun,
|
|
3320
|
+
RunnableJobCollectionRunSettings,
|
|
3321
|
+
RunnableJobCollectionRunSettingsTypedDict,
|
|
3322
|
+
RunnableJobCollectionRunType,
|
|
3323
|
+
RunnableJobCollectionRunTypedDict,
|
|
3324
|
+
RunnableJobCollectionSchedule,
|
|
3325
|
+
RunnableJobCollectionScheduleLogLevel,
|
|
3326
|
+
RunnableJobCollectionScheduleTimeWarning,
|
|
3327
|
+
RunnableJobCollectionScheduleTimeWarningTypedDict,
|
|
3328
|
+
RunnableJobCollectionScheduleTypedDict,
|
|
3329
|
+
RunnableJobCollectionTimeWarning,
|
|
3330
|
+
RunnableJobCollectionTimeWarningTypedDict,
|
|
3331
|
+
RunnableJobCollectionTypedDict,
|
|
3332
|
+
TimeRange,
|
|
3333
|
+
WhereToCapture,
|
|
3334
|
+
)
|
|
3335
|
+
from .runnablejobexecutor import (
|
|
3336
|
+
Executor,
|
|
3337
|
+
ExecutorSpecificSettings,
|
|
3338
|
+
ExecutorSpecificSettingsTypedDict,
|
|
3339
|
+
ExecutorTypedDict,
|
|
3340
|
+
RunnableJobExecutor,
|
|
3341
|
+
RunnableJobExecutorJobType,
|
|
3342
|
+
RunnableJobExecutorLogLevel,
|
|
3343
|
+
RunnableJobExecutorRun,
|
|
3344
|
+
RunnableJobExecutorRunSettings,
|
|
3345
|
+
RunnableJobExecutorRunSettingsTypedDict,
|
|
3346
|
+
RunnableJobExecutorRunTypedDict,
|
|
3347
|
+
RunnableJobExecutorSchedule,
|
|
3348
|
+
RunnableJobExecutorScheduleLogLevel,
|
|
3349
|
+
RunnableJobExecutorScheduleTypedDict,
|
|
3350
|
+
RunnableJobExecutorTimeWarning,
|
|
3351
|
+
RunnableJobExecutorTimeWarningTypedDict,
|
|
3352
|
+
RunnableJobExecutorType,
|
|
3353
|
+
RunnableJobExecutorTypedDict,
|
|
3354
|
+
)
|
|
3355
|
+
from .runnablejobscheduledsearch import (
|
|
3356
|
+
RunnableJobScheduledSearch,
|
|
3357
|
+
RunnableJobScheduledSearchJobType,
|
|
3358
|
+
RunnableJobScheduledSearchLogLevel,
|
|
3359
|
+
RunnableJobScheduledSearchRunSettings,
|
|
3360
|
+
RunnableJobScheduledSearchRunSettingsTypedDict,
|
|
3361
|
+
RunnableJobScheduledSearchSchedule,
|
|
3362
|
+
RunnableJobScheduledSearchScheduleTypedDict,
|
|
3363
|
+
RunnableJobScheduledSearchTimeWarning,
|
|
3364
|
+
RunnableJobScheduledSearchTimeWarningTypedDict,
|
|
3365
|
+
RunnableJobScheduledSearchType,
|
|
3366
|
+
RunnableJobScheduledSearchTypedDict,
|
|
3367
|
+
)
|
|
2986
3368
|
from .schemeclientoauth import SchemeClientOauth, SchemeClientOauthTypedDict
|
|
2987
3369
|
from .security import Security, SecurityTypedDict
|
|
2988
3370
|
from .teamaccesscontrollist import (
|
|
@@ -3037,6 +3419,7 @@ if TYPE_CHECKING:
|
|
|
3037
3419
|
UpdatePacksByIDResponse,
|
|
3038
3420
|
UpdatePacksByIDResponseTypedDict,
|
|
3039
3421
|
)
|
|
3422
|
+
from .updatepacksop import UpdatePacksRequest, UpdatePacksRequestTypedDict
|
|
3040
3423
|
from .updatepipelinebyidop import (
|
|
3041
3424
|
UpdatePipelineByIDRequest,
|
|
3042
3425
|
UpdatePipelineByIDRequestTypedDict,
|
|
@@ -3049,6 +3432,7 @@ if TYPE_CHECKING:
|
|
|
3049
3432
|
UpdateRoutesByIDResponse,
|
|
3050
3433
|
UpdateRoutesByIDResponseTypedDict,
|
|
3051
3434
|
)
|
|
3435
|
+
from .uploadpackresponse import UploadPackResponse, UploadPackResponseTypedDict
|
|
3052
3436
|
from .useraccesscontrollist import (
|
|
3053
3437
|
UserAccessControlList,
|
|
3054
3438
|
UserAccessControlListTypedDict,
|
|
@@ -3065,7 +3449,6 @@ __all__ = [
|
|
|
3065
3449
|
"AdditionalPropertyTypedDict",
|
|
3066
3450
|
"Allow",
|
|
3067
3451
|
"AllowTypedDict",
|
|
3068
|
-
"AppMode",
|
|
3069
3452
|
"Audit",
|
|
3070
3453
|
"AuditTypedDict",
|
|
3071
3454
|
"AuthToken",
|
|
@@ -3076,12 +3459,24 @@ __all__ = [
|
|
|
3076
3459
|
"AuthorTypedDict",
|
|
3077
3460
|
"AwsAuthenticationMethod",
|
|
3078
3461
|
"BlobAccessTier",
|
|
3462
|
+
"Block",
|
|
3463
|
+
"BlockTypedDict",
|
|
3464
|
+
"BranchInfo",
|
|
3465
|
+
"BranchInfoTypedDict",
|
|
3079
3466
|
"CacheConnection",
|
|
3080
3467
|
"CacheConnectionBackfillStatus",
|
|
3081
3468
|
"CacheConnectionTypedDict",
|
|
3469
|
+
"CaptureSettings",
|
|
3470
|
+
"CaptureSettingsTypedDict",
|
|
3082
3471
|
"CertOptions",
|
|
3083
3472
|
"CertOptionsTypedDict",
|
|
3473
|
+
"ChecksumBefore",
|
|
3474
|
+
"ChecksumBeforeTypedDict",
|
|
3084
3475
|
"CloudProvider",
|
|
3476
|
+
"Collector",
|
|
3477
|
+
"CollectorSpecificSettings",
|
|
3478
|
+
"CollectorSpecificSettingsTypedDict",
|
|
3479
|
+
"CollectorTypedDict",
|
|
3085
3480
|
"Collectors",
|
|
3086
3481
|
"CollectorsTypedDict",
|
|
3087
3482
|
"ColumnMapping",
|
|
@@ -3096,6 +3491,9 @@ __all__ = [
|
|
|
3096
3491
|
"ConfigGroup",
|
|
3097
3492
|
"ConfigGroupCloud",
|
|
3098
3493
|
"ConfigGroupCloudTypedDict",
|
|
3494
|
+
"ConfigGroupEstimatedIngestRate",
|
|
3495
|
+
"ConfigGroupGit",
|
|
3496
|
+
"ConfigGroupGitTypedDict",
|
|
3099
3497
|
"ConfigGroupLookups",
|
|
3100
3498
|
"ConfigGroupLookupsLookup",
|
|
3101
3499
|
"ConfigGroupLookupsLookupTypedDict",
|
|
@@ -3153,10 +3551,11 @@ __all__ = [
|
|
|
3153
3551
|
"CriblLakeDataset",
|
|
3154
3552
|
"CriblLakeDatasetFormat",
|
|
3155
3553
|
"CriblLakeDatasetTypedDict",
|
|
3554
|
+
"CriblLakeDatasetUpdate",
|
|
3555
|
+
"CriblLakeDatasetUpdateFormat",
|
|
3556
|
+
"CriblLakeDatasetUpdateTypedDict",
|
|
3156
3557
|
"CurrentBranchResult",
|
|
3157
3558
|
"CurrentBranchResultTypedDict",
|
|
3158
|
-
"CustomLabel",
|
|
3159
|
-
"CustomLabelTypedDict",
|
|
3160
3559
|
"DNS",
|
|
3161
3560
|
"DNSTypedDict",
|
|
3162
3561
|
"DataSetSite",
|
|
@@ -3199,8 +3598,11 @@ __all__ = [
|
|
|
3199
3598
|
"DeployRequestLookupsLookupTypedDict",
|
|
3200
3599
|
"DeployRequestLookupsTypedDict",
|
|
3201
3600
|
"DeployRequestTypedDict",
|
|
3601
|
+
"DiffFiles",
|
|
3602
|
+
"DiffFilesTypedDict",
|
|
3202
3603
|
"DisksAndFileSystems",
|
|
3203
3604
|
"DisksAndFileSystemsTypedDict",
|
|
3605
|
+
"DistMode",
|
|
3204
3606
|
"DistributedSummary",
|
|
3205
3607
|
"DistributedSummaryGroups",
|
|
3206
3608
|
"DistributedSummaryGroupsTypedDict",
|
|
@@ -3208,6 +3610,8 @@ __all__ = [
|
|
|
3208
3610
|
"DistributedSummaryWorkers",
|
|
3209
3611
|
"DistributedSummaryWorkersTypedDict",
|
|
3210
3612
|
"ElasticVersion",
|
|
3613
|
+
"ElasticsearchMetadata",
|
|
3614
|
+
"ElasticsearchMetadataTypedDict",
|
|
3211
3615
|
"Endpoint",
|
|
3212
3616
|
"EndpointConfiguration",
|
|
3213
3617
|
"EndpointHeader",
|
|
@@ -3216,6 +3620,10 @@ __all__ = [
|
|
|
3216
3620
|
"EndpointParamTypedDict",
|
|
3217
3621
|
"EndpointType",
|
|
3218
3622
|
"EventFormat",
|
|
3623
|
+
"Executor",
|
|
3624
|
+
"ExecutorSpecificSettings",
|
|
3625
|
+
"ExecutorSpecificSettingsTypedDict",
|
|
3626
|
+
"ExecutorTypedDict",
|
|
3219
3627
|
"ExtentTag",
|
|
3220
3628
|
"ExtentTagTypedDict",
|
|
3221
3629
|
"ExtraLogType",
|
|
@@ -3320,13 +3728,16 @@ __all__ = [
|
|
|
3320
3728
|
"GetVersionStatusRequestTypedDict",
|
|
3321
3729
|
"GetVersionStatusResponse",
|
|
3322
3730
|
"GetVersionStatusResponseTypedDict",
|
|
3323
|
-
"Git",
|
|
3324
3731
|
"GitCommitParams",
|
|
3325
3732
|
"GitCommitParamsTypedDict",
|
|
3326
3733
|
"GitCommitSummary",
|
|
3327
3734
|
"GitCommitSummaryFiles",
|
|
3328
3735
|
"GitCommitSummaryFilesTypedDict",
|
|
3329
3736
|
"GitCommitSummaryTypedDict",
|
|
3737
|
+
"GitCountResult",
|
|
3738
|
+
"GitCountResultTypedDict",
|
|
3739
|
+
"GitDiffResult",
|
|
3740
|
+
"GitDiffResultTypedDict",
|
|
3330
3741
|
"GitFile",
|
|
3331
3742
|
"GitFileTypedDict",
|
|
3332
3743
|
"GitFilesResponse",
|
|
@@ -3341,15 +3752,22 @@ __all__ = [
|
|
|
3341
3752
|
"GitRevertResultFiles",
|
|
3342
3753
|
"GitRevertResultFilesTypedDict",
|
|
3343
3754
|
"GitRevertResultTypedDict",
|
|
3755
|
+
"GitShowResult",
|
|
3756
|
+
"GitShowResultTypedDict",
|
|
3344
3757
|
"GitStatusResult",
|
|
3345
3758
|
"GitStatusResultTypedDict",
|
|
3346
|
-
"
|
|
3759
|
+
"GroupCreateRequest",
|
|
3760
|
+
"GroupCreateRequestEstimatedIngestRate",
|
|
3761
|
+
"GroupCreateRequestGit",
|
|
3762
|
+
"GroupCreateRequestGitTypedDict",
|
|
3763
|
+
"GroupCreateRequestType",
|
|
3764
|
+
"GroupCreateRequestTypedDict",
|
|
3347
3765
|
"HBCriblInfo",
|
|
3348
3766
|
"HBCriblInfoTypedDict",
|
|
3349
3767
|
"HBLeaderInfo",
|
|
3350
3768
|
"HBLeaderInfoTypedDict",
|
|
3351
|
-
"
|
|
3352
|
-
"
|
|
3769
|
+
"HealthServerStatus",
|
|
3770
|
+
"HealthServerStatusTypedDict",
|
|
3353
3771
|
"HeartbeatMetadata",
|
|
3354
3772
|
"HeartbeatMetadataAws",
|
|
3355
3773
|
"HeartbeatMetadataAwsTypedDict",
|
|
@@ -3392,6 +3810,8 @@ __all__ = [
|
|
|
3392
3810
|
"InputAppscopePersistence",
|
|
3393
3811
|
"InputAppscopePersistenceTypedDict",
|
|
3394
3812
|
"InputAppscopePq",
|
|
3813
|
+
"InputAppscopePqControls",
|
|
3814
|
+
"InputAppscopePqControlsTypedDict",
|
|
3395
3815
|
"InputAppscopePqTypedDict",
|
|
3396
3816
|
"InputAppscopeTLSSettingsServerSide",
|
|
3397
3817
|
"InputAppscopeTLSSettingsServerSideTypedDict",
|
|
@@ -3408,9 +3828,33 @@ __all__ = [
|
|
|
3408
3828
|
"InputAzureBlobMetadatumTypedDict",
|
|
3409
3829
|
"InputAzureBlobMode",
|
|
3410
3830
|
"InputAzureBlobPq",
|
|
3831
|
+
"InputAzureBlobPqControls",
|
|
3832
|
+
"InputAzureBlobPqControlsTypedDict",
|
|
3411
3833
|
"InputAzureBlobPqTypedDict",
|
|
3412
3834
|
"InputAzureBlobType",
|
|
3413
3835
|
"InputAzureBlobTypedDict",
|
|
3836
|
+
"InputCloudflareHec",
|
|
3837
|
+
"InputCloudflareHecAuthToken",
|
|
3838
|
+
"InputCloudflareHecAuthTokenMetadatum",
|
|
3839
|
+
"InputCloudflareHecAuthTokenMetadatumTypedDict",
|
|
3840
|
+
"InputCloudflareHecAuthTokenTypedDict",
|
|
3841
|
+
"InputCloudflareHecAuthenticationMethod",
|
|
3842
|
+
"InputCloudflareHecCompression",
|
|
3843
|
+
"InputCloudflareHecConnection",
|
|
3844
|
+
"InputCloudflareHecConnectionTypedDict",
|
|
3845
|
+
"InputCloudflareHecMaximumTLSVersion",
|
|
3846
|
+
"InputCloudflareHecMetadatum",
|
|
3847
|
+
"InputCloudflareHecMetadatumTypedDict",
|
|
3848
|
+
"InputCloudflareHecMinimumTLSVersion",
|
|
3849
|
+
"InputCloudflareHecMode",
|
|
3850
|
+
"InputCloudflareHecPq",
|
|
3851
|
+
"InputCloudflareHecPqControls",
|
|
3852
|
+
"InputCloudflareHecPqControlsTypedDict",
|
|
3853
|
+
"InputCloudflareHecPqTypedDict",
|
|
3854
|
+
"InputCloudflareHecTLSSettingsServerSide",
|
|
3855
|
+
"InputCloudflareHecTLSSettingsServerSideTypedDict",
|
|
3856
|
+
"InputCloudflareHecType",
|
|
3857
|
+
"InputCloudflareHecTypedDict",
|
|
3414
3858
|
"InputCollection",
|
|
3415
3859
|
"InputCollectionCompression",
|
|
3416
3860
|
"InputCollectionConnection",
|
|
@@ -3419,6 +3863,8 @@ __all__ = [
|
|
|
3419
3863
|
"InputCollectionMetadatumTypedDict",
|
|
3420
3864
|
"InputCollectionMode",
|
|
3421
3865
|
"InputCollectionPq",
|
|
3866
|
+
"InputCollectionPqControls",
|
|
3867
|
+
"InputCollectionPqControlsTypedDict",
|
|
3422
3868
|
"InputCollectionPqTypedDict",
|
|
3423
3869
|
"InputCollectionPreprocess",
|
|
3424
3870
|
"InputCollectionPreprocessTypedDict",
|
|
@@ -3428,6 +3874,7 @@ __all__ = [
|
|
|
3428
3874
|
"InputConfluentCloudAuth",
|
|
3429
3875
|
"InputConfluentCloudAuthTypedDict",
|
|
3430
3876
|
"InputConfluentCloudAuthentication",
|
|
3877
|
+
"InputConfluentCloudAuthenticationMethod",
|
|
3431
3878
|
"InputConfluentCloudAuthenticationTypedDict",
|
|
3432
3879
|
"InputConfluentCloudCompression",
|
|
3433
3880
|
"InputConfluentCloudConnection",
|
|
@@ -3443,10 +3890,15 @@ __all__ = [
|
|
|
3443
3890
|
"InputConfluentCloudMetadatumTypedDict",
|
|
3444
3891
|
"InputConfluentCloudMinimumTLSVersion",
|
|
3445
3892
|
"InputConfluentCloudMode",
|
|
3893
|
+
"InputConfluentCloudOauthParam",
|
|
3894
|
+
"InputConfluentCloudOauthParamTypedDict",
|
|
3446
3895
|
"InputConfluentCloudPq",
|
|
3896
|
+
"InputConfluentCloudPqControls",
|
|
3897
|
+
"InputConfluentCloudPqControlsTypedDict",
|
|
3447
3898
|
"InputConfluentCloudPqTypedDict",
|
|
3448
3899
|
"InputConfluentCloudSASLMechanism",
|
|
3449
|
-
"
|
|
3900
|
+
"InputConfluentCloudSaslExtension",
|
|
3901
|
+
"InputConfluentCloudSaslExtensionTypedDict",
|
|
3450
3902
|
"InputConfluentCloudTLSSettingsClientSide",
|
|
3451
3903
|
"InputConfluentCloudTLSSettingsClientSideTypedDict",
|
|
3452
3904
|
"InputConfluentCloudType",
|
|
@@ -3456,6 +3908,8 @@ __all__ = [
|
|
|
3456
3908
|
"InputCriblConnection",
|
|
3457
3909
|
"InputCriblConnectionTypedDict",
|
|
3458
3910
|
"InputCriblHTTP",
|
|
3911
|
+
"InputCriblHTTPAuthToken",
|
|
3912
|
+
"InputCriblHTTPAuthTokenTypedDict",
|
|
3459
3913
|
"InputCriblHTTPCompression",
|
|
3460
3914
|
"InputCriblHTTPConnection",
|
|
3461
3915
|
"InputCriblHTTPConnectionTypedDict",
|
|
@@ -3465,6 +3919,8 @@ __all__ = [
|
|
|
3465
3919
|
"InputCriblHTTPMinimumTLSVersion",
|
|
3466
3920
|
"InputCriblHTTPMode",
|
|
3467
3921
|
"InputCriblHTTPPq",
|
|
3922
|
+
"InputCriblHTTPPqControls",
|
|
3923
|
+
"InputCriblHTTPPqControlsTypedDict",
|
|
3468
3924
|
"InputCriblHTTPPqTypedDict",
|
|
3469
3925
|
"InputCriblHTTPTLSSettingsServerSide",
|
|
3470
3926
|
"InputCriblHTTPTLSSettingsServerSideTypedDict",
|
|
@@ -3484,6 +3940,8 @@ __all__ = [
|
|
|
3484
3940
|
"InputCriblLakeHTTPMinimumTLSVersion",
|
|
3485
3941
|
"InputCriblLakeHTTPMode",
|
|
3486
3942
|
"InputCriblLakeHTTPPq",
|
|
3943
|
+
"InputCriblLakeHTTPPqControls",
|
|
3944
|
+
"InputCriblLakeHTTPPqControlsTypedDict",
|
|
3487
3945
|
"InputCriblLakeHTTPPqTypedDict",
|
|
3488
3946
|
"InputCriblLakeHTTPTLSSettingsServerSide",
|
|
3489
3947
|
"InputCriblLakeHTTPTLSSettingsServerSideTypedDict",
|
|
@@ -3493,8 +3951,12 @@ __all__ = [
|
|
|
3493
3951
|
"InputCriblMetadatumTypedDict",
|
|
3494
3952
|
"InputCriblMode",
|
|
3495
3953
|
"InputCriblPq",
|
|
3954
|
+
"InputCriblPqControls",
|
|
3955
|
+
"InputCriblPqControlsTypedDict",
|
|
3496
3956
|
"InputCriblPqTypedDict",
|
|
3497
3957
|
"InputCriblTCP",
|
|
3958
|
+
"InputCriblTCPAuthToken",
|
|
3959
|
+
"InputCriblTCPAuthTokenTypedDict",
|
|
3498
3960
|
"InputCriblTCPCompression",
|
|
3499
3961
|
"InputCriblTCPConnection",
|
|
3500
3962
|
"InputCriblTCPConnectionTypedDict",
|
|
@@ -3504,6 +3966,8 @@ __all__ = [
|
|
|
3504
3966
|
"InputCriblTCPMinimumTLSVersion",
|
|
3505
3967
|
"InputCriblTCPMode",
|
|
3506
3968
|
"InputCriblTCPPq",
|
|
3969
|
+
"InputCriblTCPPqControls",
|
|
3970
|
+
"InputCriblTCPPqControlsTypedDict",
|
|
3507
3971
|
"InputCriblTCPPqTypedDict",
|
|
3508
3972
|
"InputCriblTCPTLSSettingsServerSide",
|
|
3509
3973
|
"InputCriblTCPTLSSettingsServerSideTypedDict",
|
|
@@ -3519,6 +3983,8 @@ __all__ = [
|
|
|
3519
3983
|
"InputCriblmetricsMetadatumTypedDict",
|
|
3520
3984
|
"InputCriblmetricsMode",
|
|
3521
3985
|
"InputCriblmetricsPq",
|
|
3986
|
+
"InputCriblmetricsPqControls",
|
|
3987
|
+
"InputCriblmetricsPqControlsTypedDict",
|
|
3522
3988
|
"InputCriblmetricsPqTypedDict",
|
|
3523
3989
|
"InputCriblmetricsType",
|
|
3524
3990
|
"InputCriblmetricsTypedDict",
|
|
@@ -3533,6 +3999,8 @@ __all__ = [
|
|
|
3533
3999
|
"InputCrowdstrikeMetadatumTypedDict",
|
|
3534
4000
|
"InputCrowdstrikeMode",
|
|
3535
4001
|
"InputCrowdstrikePq",
|
|
4002
|
+
"InputCrowdstrikePqControls",
|
|
4003
|
+
"InputCrowdstrikePqControlsTypedDict",
|
|
3536
4004
|
"InputCrowdstrikePqTypedDict",
|
|
3537
4005
|
"InputCrowdstrikePreprocess",
|
|
3538
4006
|
"InputCrowdstrikePreprocessTypedDict",
|
|
@@ -3550,6 +4018,8 @@ __all__ = [
|
|
|
3550
4018
|
"InputDatadogAgentMinimumTLSVersion",
|
|
3551
4019
|
"InputDatadogAgentMode",
|
|
3552
4020
|
"InputDatadogAgentPq",
|
|
4021
|
+
"InputDatadogAgentPqControls",
|
|
4022
|
+
"InputDatadogAgentPqControlsTypedDict",
|
|
3553
4023
|
"InputDatadogAgentPqTypedDict",
|
|
3554
4024
|
"InputDatadogAgentProxyMode",
|
|
3555
4025
|
"InputDatadogAgentProxyModeTypedDict",
|
|
@@ -3565,6 +4035,8 @@ __all__ = [
|
|
|
3565
4035
|
"InputDatagenMetadatumTypedDict",
|
|
3566
4036
|
"InputDatagenMode",
|
|
3567
4037
|
"InputDatagenPq",
|
|
4038
|
+
"InputDatagenPqControls",
|
|
4039
|
+
"InputDatagenPqControlsTypedDict",
|
|
3568
4040
|
"InputDatagenPqTypedDict",
|
|
3569
4041
|
"InputDatagenType",
|
|
3570
4042
|
"InputDatagenTypedDict",
|
|
@@ -3582,6 +4054,8 @@ __all__ = [
|
|
|
3582
4054
|
"InputEdgePrometheusPersistenceCompression",
|
|
3583
4055
|
"InputEdgePrometheusPq",
|
|
3584
4056
|
"InputEdgePrometheusPqCompression",
|
|
4057
|
+
"InputEdgePrometheusPqControls",
|
|
4058
|
+
"InputEdgePrometheusPqControlsTypedDict",
|
|
3585
4059
|
"InputEdgePrometheusPqTypedDict",
|
|
3586
4060
|
"InputEdgePrometheusRecordType",
|
|
3587
4061
|
"InputEdgePrometheusSearchFilter",
|
|
@@ -3604,6 +4078,8 @@ __all__ = [
|
|
|
3604
4078
|
"InputElasticMinimumTLSVersion",
|
|
3605
4079
|
"InputElasticMode",
|
|
3606
4080
|
"InputElasticPq",
|
|
4081
|
+
"InputElasticPqControls",
|
|
4082
|
+
"InputElasticPqControlsTypedDict",
|
|
3607
4083
|
"InputElasticPqTypedDict",
|
|
3608
4084
|
"InputElasticProxyMode",
|
|
3609
4085
|
"InputElasticProxyModeTypedDict",
|
|
@@ -3612,15 +4088,20 @@ __all__ = [
|
|
|
3612
4088
|
"InputElasticType",
|
|
3613
4089
|
"InputElasticTypedDict",
|
|
3614
4090
|
"InputEventhub",
|
|
4091
|
+
"InputEventhubAuthTypeAuthenticationMethod",
|
|
3615
4092
|
"InputEventhubAuthentication",
|
|
3616
4093
|
"InputEventhubAuthenticationTypedDict",
|
|
4094
|
+
"InputEventhubClientSecretAuthTypeAuthenticationMethod",
|
|
3617
4095
|
"InputEventhubCompression",
|
|
3618
4096
|
"InputEventhubConnection",
|
|
3619
4097
|
"InputEventhubConnectionTypedDict",
|
|
3620
4098
|
"InputEventhubMetadatum",
|
|
3621
4099
|
"InputEventhubMetadatumTypedDict",
|
|
4100
|
+
"InputEventhubMicrosoftEntraIDAuthenticationEndpoint",
|
|
3622
4101
|
"InputEventhubMode",
|
|
3623
4102
|
"InputEventhubPq",
|
|
4103
|
+
"InputEventhubPqControls",
|
|
4104
|
+
"InputEventhubPqControlsTypedDict",
|
|
3624
4105
|
"InputEventhubPqTypedDict",
|
|
3625
4106
|
"InputEventhubSASLMechanism",
|
|
3626
4107
|
"InputEventhubTLSSettingsClientSide",
|
|
@@ -3635,6 +4116,8 @@ __all__ = [
|
|
|
3635
4116
|
"InputExecMetadatumTypedDict",
|
|
3636
4117
|
"InputExecMode",
|
|
3637
4118
|
"InputExecPq",
|
|
4119
|
+
"InputExecPqControls",
|
|
4120
|
+
"InputExecPqControlsTypedDict",
|
|
3638
4121
|
"InputExecPqTypedDict",
|
|
3639
4122
|
"InputExecType",
|
|
3640
4123
|
"InputExecTypedDict",
|
|
@@ -3646,6 +4129,8 @@ __all__ = [
|
|
|
3646
4129
|
"InputFileMetadatumTypedDict",
|
|
3647
4130
|
"InputFileMode",
|
|
3648
4131
|
"InputFilePq",
|
|
4132
|
+
"InputFilePqControls",
|
|
4133
|
+
"InputFilePqControlsTypedDict",
|
|
3649
4134
|
"InputFilePqMode",
|
|
3650
4135
|
"InputFilePqTypedDict",
|
|
3651
4136
|
"InputFileType",
|
|
@@ -3660,6 +4145,8 @@ __all__ = [
|
|
|
3660
4145
|
"InputFirehoseMinimumTLSVersion",
|
|
3661
4146
|
"InputFirehoseMode",
|
|
3662
4147
|
"InputFirehosePq",
|
|
4148
|
+
"InputFirehosePqControls",
|
|
4149
|
+
"InputFirehosePqControlsTypedDict",
|
|
3663
4150
|
"InputFirehosePqTypedDict",
|
|
3664
4151
|
"InputFirehoseTLSSettingsServerSide",
|
|
3665
4152
|
"InputFirehoseTLSSettingsServerSideTypedDict",
|
|
@@ -3674,6 +4161,8 @@ __all__ = [
|
|
|
3674
4161
|
"InputGooglePubsubMetadatumTypedDict",
|
|
3675
4162
|
"InputGooglePubsubMode",
|
|
3676
4163
|
"InputGooglePubsubPq",
|
|
4164
|
+
"InputGooglePubsubPqControls",
|
|
4165
|
+
"InputGooglePubsubPqControlsTypedDict",
|
|
3677
4166
|
"InputGooglePubsubPqTypedDict",
|
|
3678
4167
|
"InputGooglePubsubType",
|
|
3679
4168
|
"InputGooglePubsubTypedDict",
|
|
@@ -3708,6 +4197,10 @@ __all__ = [
|
|
|
3708
4197
|
"InputGrafanaPq1TypedDict",
|
|
3709
4198
|
"InputGrafanaPq2",
|
|
3710
4199
|
"InputGrafanaPq2TypedDict",
|
|
4200
|
+
"InputGrafanaPqControls1",
|
|
4201
|
+
"InputGrafanaPqControls1TypedDict",
|
|
4202
|
+
"InputGrafanaPqControls2",
|
|
4203
|
+
"InputGrafanaPqControls2TypedDict",
|
|
3711
4204
|
"InputGrafanaPrometheusAuth1",
|
|
3712
4205
|
"InputGrafanaPrometheusAuth1TypedDict",
|
|
3713
4206
|
"InputGrafanaPrometheusAuth2",
|
|
@@ -3735,6 +4228,8 @@ __all__ = [
|
|
|
3735
4228
|
"InputHTTPMinimumTLSVersion",
|
|
3736
4229
|
"InputHTTPMode",
|
|
3737
4230
|
"InputHTTPPq",
|
|
4231
|
+
"InputHTTPPqControls",
|
|
4232
|
+
"InputHTTPPqControlsTypedDict",
|
|
3738
4233
|
"InputHTTPPqTypedDict",
|
|
3739
4234
|
"InputHTTPRaw",
|
|
3740
4235
|
"InputHTTPRawAuthTokensExt",
|
|
@@ -3750,6 +4245,8 @@ __all__ = [
|
|
|
3750
4245
|
"InputHTTPRawMinimumTLSVersion",
|
|
3751
4246
|
"InputHTTPRawMode",
|
|
3752
4247
|
"InputHTTPRawPq",
|
|
4248
|
+
"InputHTTPRawPqControls",
|
|
4249
|
+
"InputHTTPRawPqControlsTypedDict",
|
|
3753
4250
|
"InputHTTPRawPqTypedDict",
|
|
3754
4251
|
"InputHTTPRawTLSSettingsServerSide",
|
|
3755
4252
|
"InputHTTPRawTLSSettingsServerSideTypedDict",
|
|
@@ -3767,6 +4264,8 @@ __all__ = [
|
|
|
3767
4264
|
"InputJournalFilesMetadatumTypedDict",
|
|
3768
4265
|
"InputJournalFilesMode",
|
|
3769
4266
|
"InputJournalFilesPq",
|
|
4267
|
+
"InputJournalFilesPqControls",
|
|
4268
|
+
"InputJournalFilesPqControlsTypedDict",
|
|
3770
4269
|
"InputJournalFilesPqTypedDict",
|
|
3771
4270
|
"InputJournalFilesRule",
|
|
3772
4271
|
"InputJournalFilesRuleTypedDict",
|
|
@@ -3776,6 +4275,7 @@ __all__ = [
|
|
|
3776
4275
|
"InputKafkaAuth",
|
|
3777
4276
|
"InputKafkaAuthTypedDict",
|
|
3778
4277
|
"InputKafkaAuthentication",
|
|
4278
|
+
"InputKafkaAuthenticationMethod",
|
|
3779
4279
|
"InputKafkaAuthenticationTypedDict",
|
|
3780
4280
|
"InputKafkaCompression",
|
|
3781
4281
|
"InputKafkaConnection",
|
|
@@ -3791,10 +4291,15 @@ __all__ = [
|
|
|
3791
4291
|
"InputKafkaMetadatumTypedDict",
|
|
3792
4292
|
"InputKafkaMinimumTLSVersion",
|
|
3793
4293
|
"InputKafkaMode",
|
|
4294
|
+
"InputKafkaOauthParam",
|
|
4295
|
+
"InputKafkaOauthParamTypedDict",
|
|
3794
4296
|
"InputKafkaPq",
|
|
4297
|
+
"InputKafkaPqControls",
|
|
4298
|
+
"InputKafkaPqControlsTypedDict",
|
|
3795
4299
|
"InputKafkaPqTypedDict",
|
|
3796
4300
|
"InputKafkaSASLMechanism",
|
|
3797
|
-
"
|
|
4301
|
+
"InputKafkaSaslExtension",
|
|
4302
|
+
"InputKafkaSaslExtensionTypedDict",
|
|
3798
4303
|
"InputKafkaTLSSettingsClientSide",
|
|
3799
4304
|
"InputKafkaTLSSettingsClientSideTypedDict",
|
|
3800
4305
|
"InputKafkaType",
|
|
@@ -3808,6 +4313,8 @@ __all__ = [
|
|
|
3808
4313
|
"InputKinesisMetadatumTypedDict",
|
|
3809
4314
|
"InputKinesisMode",
|
|
3810
4315
|
"InputKinesisPq",
|
|
4316
|
+
"InputKinesisPqControls",
|
|
4317
|
+
"InputKinesisPqControlsTypedDict",
|
|
3811
4318
|
"InputKinesisPqTypedDict",
|
|
3812
4319
|
"InputKinesisRecordDataFormat",
|
|
3813
4320
|
"InputKinesisSignatureVersion",
|
|
@@ -3821,6 +4328,8 @@ __all__ = [
|
|
|
3821
4328
|
"InputKubeEventsMetadatumTypedDict",
|
|
3822
4329
|
"InputKubeEventsMode",
|
|
3823
4330
|
"InputKubeEventsPq",
|
|
4331
|
+
"InputKubeEventsPqControls",
|
|
4332
|
+
"InputKubeEventsPqControlsTypedDict",
|
|
3824
4333
|
"InputKubeEventsPqTypedDict",
|
|
3825
4334
|
"InputKubeEventsRule",
|
|
3826
4335
|
"InputKubeEventsRuleTypedDict",
|
|
@@ -3837,6 +4346,8 @@ __all__ = [
|
|
|
3837
4346
|
"InputKubeLogsPersistenceCompression",
|
|
3838
4347
|
"InputKubeLogsPq",
|
|
3839
4348
|
"InputKubeLogsPqCompression",
|
|
4349
|
+
"InputKubeLogsPqControls",
|
|
4350
|
+
"InputKubeLogsPqControlsTypedDict",
|
|
3840
4351
|
"InputKubeLogsPqTypedDict",
|
|
3841
4352
|
"InputKubeLogsRule",
|
|
3842
4353
|
"InputKubeLogsRuleTypedDict",
|
|
@@ -3853,6 +4364,8 @@ __all__ = [
|
|
|
3853
4364
|
"InputKubeMetricsPersistence",
|
|
3854
4365
|
"InputKubeMetricsPersistenceTypedDict",
|
|
3855
4366
|
"InputKubeMetricsPq",
|
|
4367
|
+
"InputKubeMetricsPqControls",
|
|
4368
|
+
"InputKubeMetricsPqControlsTypedDict",
|
|
3856
4369
|
"InputKubeMetricsPqTypedDict",
|
|
3857
4370
|
"InputKubeMetricsRule",
|
|
3858
4371
|
"InputKubeMetricsRuleTypedDict",
|
|
@@ -3873,6 +4386,8 @@ __all__ = [
|
|
|
3873
4386
|
"InputLokiOauthParam",
|
|
3874
4387
|
"InputLokiOauthParamTypedDict",
|
|
3875
4388
|
"InputLokiPq",
|
|
4389
|
+
"InputLokiPqControls",
|
|
4390
|
+
"InputLokiPqControlsTypedDict",
|
|
3876
4391
|
"InputLokiPqTypedDict",
|
|
3877
4392
|
"InputLokiTLSSettingsServerSide",
|
|
3878
4393
|
"InputLokiTLSSettingsServerSideTypedDict",
|
|
@@ -3888,6 +4403,8 @@ __all__ = [
|
|
|
3888
4403
|
"InputMetricsMinimumTLSVersion",
|
|
3889
4404
|
"InputMetricsMode",
|
|
3890
4405
|
"InputMetricsPq",
|
|
4406
|
+
"InputMetricsPqControls",
|
|
4407
|
+
"InputMetricsPqControlsTypedDict",
|
|
3891
4408
|
"InputMetricsPqTypedDict",
|
|
3892
4409
|
"InputMetricsTLSSettingsServerSide",
|
|
3893
4410
|
"InputMetricsTLSSettingsServerSideTypedDict",
|
|
@@ -3903,6 +4420,8 @@ __all__ = [
|
|
|
3903
4420
|
"InputModelDrivenTelemetryMinimumTLSVersion",
|
|
3904
4421
|
"InputModelDrivenTelemetryMode",
|
|
3905
4422
|
"InputModelDrivenTelemetryPq",
|
|
4423
|
+
"InputModelDrivenTelemetryPqControls",
|
|
4424
|
+
"InputModelDrivenTelemetryPqControlsTypedDict",
|
|
3906
4425
|
"InputModelDrivenTelemetryPqTypedDict",
|
|
3907
4426
|
"InputModelDrivenTelemetryTLSSettingsServerSide",
|
|
3908
4427
|
"InputModelDrivenTelemetryTLSSettingsServerSideTypedDict",
|
|
@@ -3927,8 +4446,9 @@ __all__ = [
|
|
|
3927
4446
|
"InputMskMinimumTLSVersion",
|
|
3928
4447
|
"InputMskMode",
|
|
3929
4448
|
"InputMskPq",
|
|
4449
|
+
"InputMskPqControls",
|
|
4450
|
+
"InputMskPqControlsTypedDict",
|
|
3930
4451
|
"InputMskPqTypedDict",
|
|
3931
|
-
"InputMskSchemaType",
|
|
3932
4452
|
"InputMskSignatureVersion",
|
|
3933
4453
|
"InputMskTLSSettingsClientSide",
|
|
3934
4454
|
"InputMskTLSSettingsClientSideTypedDict",
|
|
@@ -3942,6 +4462,8 @@ __all__ = [
|
|
|
3942
4462
|
"InputNetflowMetadatumTypedDict",
|
|
3943
4463
|
"InputNetflowMode",
|
|
3944
4464
|
"InputNetflowPq",
|
|
4465
|
+
"InputNetflowPqControls",
|
|
4466
|
+
"InputNetflowPqControlsTypedDict",
|
|
3945
4467
|
"InputNetflowPqTypedDict",
|
|
3946
4468
|
"InputNetflowType",
|
|
3947
4469
|
"InputNetflowTypedDict",
|
|
@@ -3957,6 +4479,8 @@ __all__ = [
|
|
|
3957
4479
|
"InputOffice365MgmtMetadatumTypedDict",
|
|
3958
4480
|
"InputOffice365MgmtMode",
|
|
3959
4481
|
"InputOffice365MgmtPq",
|
|
4482
|
+
"InputOffice365MgmtPqControls",
|
|
4483
|
+
"InputOffice365MgmtPqControlsTypedDict",
|
|
3960
4484
|
"InputOffice365MgmtPqTypedDict",
|
|
3961
4485
|
"InputOffice365MgmtRetryRules",
|
|
3962
4486
|
"InputOffice365MgmtRetryRulesTypedDict",
|
|
@@ -3974,6 +4498,8 @@ __all__ = [
|
|
|
3974
4498
|
"InputOffice365MsgTraceMetadatumTypedDict",
|
|
3975
4499
|
"InputOffice365MsgTraceMode",
|
|
3976
4500
|
"InputOffice365MsgTracePq",
|
|
4501
|
+
"InputOffice365MsgTracePqControls",
|
|
4502
|
+
"InputOffice365MsgTracePqControlsTypedDict",
|
|
3977
4503
|
"InputOffice365MsgTracePqTypedDict",
|
|
3978
4504
|
"InputOffice365MsgTraceRetryRules",
|
|
3979
4505
|
"InputOffice365MsgTraceRetryRulesTypedDict",
|
|
@@ -3993,6 +4519,8 @@ __all__ = [
|
|
|
3993
4519
|
"InputOffice365ServiceMetadatumTypedDict",
|
|
3994
4520
|
"InputOffice365ServiceMode",
|
|
3995
4521
|
"InputOffice365ServicePq",
|
|
4522
|
+
"InputOffice365ServicePqControls",
|
|
4523
|
+
"InputOffice365ServicePqControlsTypedDict",
|
|
3996
4524
|
"InputOffice365ServicePqTypedDict",
|
|
3997
4525
|
"InputOffice365ServiceRetryRules",
|
|
3998
4526
|
"InputOffice365ServiceRetryRulesTypedDict",
|
|
@@ -4016,6 +4544,8 @@ __all__ = [
|
|
|
4016
4544
|
"InputOpenTelemetryOauthParam",
|
|
4017
4545
|
"InputOpenTelemetryOauthParamTypedDict",
|
|
4018
4546
|
"InputOpenTelemetryPq",
|
|
4547
|
+
"InputOpenTelemetryPqControls",
|
|
4548
|
+
"InputOpenTelemetryPqControlsTypedDict",
|
|
4019
4549
|
"InputOpenTelemetryPqTypedDict",
|
|
4020
4550
|
"InputOpenTelemetryProtocol",
|
|
4021
4551
|
"InputOpenTelemetryTLSSettingsServerSide",
|
|
@@ -4034,6 +4564,8 @@ __all__ = [
|
|
|
4034
4564
|
"InputPrometheusMetadatumTypedDict",
|
|
4035
4565
|
"InputPrometheusMode",
|
|
4036
4566
|
"InputPrometheusPq",
|
|
4567
|
+
"InputPrometheusPqControls",
|
|
4568
|
+
"InputPrometheusPqControlsTypedDict",
|
|
4037
4569
|
"InputPrometheusPqTypedDict",
|
|
4038
4570
|
"InputPrometheusRecordType",
|
|
4039
4571
|
"InputPrometheusRw",
|
|
@@ -4051,6 +4583,8 @@ __all__ = [
|
|
|
4051
4583
|
"InputPrometheusRwOauthParam",
|
|
4052
4584
|
"InputPrometheusRwOauthParamTypedDict",
|
|
4053
4585
|
"InputPrometheusRwPq",
|
|
4586
|
+
"InputPrometheusRwPqControls",
|
|
4587
|
+
"InputPrometheusRwPqControlsTypedDict",
|
|
4054
4588
|
"InputPrometheusRwPqTypedDict",
|
|
4055
4589
|
"InputPrometheusRwTLSSettingsServerSide",
|
|
4056
4590
|
"InputPrometheusRwTLSSettingsServerSideTypedDict",
|
|
@@ -4069,6 +4603,8 @@ __all__ = [
|
|
|
4069
4603
|
"InputRawUDPMetadatumTypedDict",
|
|
4070
4604
|
"InputRawUDPMode",
|
|
4071
4605
|
"InputRawUDPPq",
|
|
4606
|
+
"InputRawUDPPqControls",
|
|
4607
|
+
"InputRawUDPPqControlsTypedDict",
|
|
4072
4608
|
"InputRawUDPPqTypedDict",
|
|
4073
4609
|
"InputRawUDPType",
|
|
4074
4610
|
"InputRawUDPTypedDict",
|
|
@@ -4090,6 +4626,8 @@ __all__ = [
|
|
|
4090
4626
|
"InputS3InventoryMetadatumTypedDict",
|
|
4091
4627
|
"InputS3InventoryMode",
|
|
4092
4628
|
"InputS3InventoryPq",
|
|
4629
|
+
"InputS3InventoryPqControls",
|
|
4630
|
+
"InputS3InventoryPqControlsTypedDict",
|
|
4093
4631
|
"InputS3InventoryPqTypedDict",
|
|
4094
4632
|
"InputS3InventoryPreprocess",
|
|
4095
4633
|
"InputS3InventoryPreprocessTypedDict",
|
|
@@ -4101,6 +4639,8 @@ __all__ = [
|
|
|
4101
4639
|
"InputS3MetadatumTypedDict",
|
|
4102
4640
|
"InputS3Mode",
|
|
4103
4641
|
"InputS3Pq",
|
|
4642
|
+
"InputS3PqControls",
|
|
4643
|
+
"InputS3PqControlsTypedDict",
|
|
4104
4644
|
"InputS3PqTypedDict",
|
|
4105
4645
|
"InputS3Preprocess",
|
|
4106
4646
|
"InputS3PreprocessTypedDict",
|
|
@@ -4118,6 +4658,8 @@ __all__ = [
|
|
|
4118
4658
|
"InputSecurityLakeMetadatumTypedDict",
|
|
4119
4659
|
"InputSecurityLakeMode",
|
|
4120
4660
|
"InputSecurityLakePq",
|
|
4661
|
+
"InputSecurityLakePqControls",
|
|
4662
|
+
"InputSecurityLakePqControlsTypedDict",
|
|
4121
4663
|
"InputSecurityLakePqTypedDict",
|
|
4122
4664
|
"InputSecurityLakePreprocess",
|
|
4123
4665
|
"InputSecurityLakePreprocessTypedDict",
|
|
@@ -4133,6 +4675,8 @@ __all__ = [
|
|
|
4133
4675
|
"InputSnmpMetadatumTypedDict",
|
|
4134
4676
|
"InputSnmpMode",
|
|
4135
4677
|
"InputSnmpPq",
|
|
4678
|
+
"InputSnmpPqControls",
|
|
4679
|
+
"InputSnmpPqControlsTypedDict",
|
|
4136
4680
|
"InputSnmpPqTypedDict",
|
|
4137
4681
|
"InputSnmpType",
|
|
4138
4682
|
"InputSnmpTypedDict",
|
|
@@ -4157,6 +4701,8 @@ __all__ = [
|
|
|
4157
4701
|
"InputSplunkHecMinimumTLSVersion",
|
|
4158
4702
|
"InputSplunkHecMode",
|
|
4159
4703
|
"InputSplunkHecPq",
|
|
4704
|
+
"InputSplunkHecPqControls",
|
|
4705
|
+
"InputSplunkHecPqControlsTypedDict",
|
|
4160
4706
|
"InputSplunkHecPqTypedDict",
|
|
4161
4707
|
"InputSplunkHecTLSSettingsServerSide",
|
|
4162
4708
|
"InputSplunkHecTLSSettingsServerSideTypedDict",
|
|
@@ -4170,6 +4716,8 @@ __all__ = [
|
|
|
4170
4716
|
"InputSplunkMode",
|
|
4171
4717
|
"InputSplunkPq",
|
|
4172
4718
|
"InputSplunkPqCompression",
|
|
4719
|
+
"InputSplunkPqControls",
|
|
4720
|
+
"InputSplunkPqControlsTypedDict",
|
|
4173
4721
|
"InputSplunkPqTypedDict",
|
|
4174
4722
|
"InputSplunkSearch",
|
|
4175
4723
|
"InputSplunkSearchAuthenticationType",
|
|
@@ -4185,6 +4733,8 @@ __all__ = [
|
|
|
4185
4733
|
"InputSplunkSearchOauthParam",
|
|
4186
4734
|
"InputSplunkSearchOauthParamTypedDict",
|
|
4187
4735
|
"InputSplunkSearchPq",
|
|
4736
|
+
"InputSplunkSearchPqControls",
|
|
4737
|
+
"InputSplunkSearchPqControlsTypedDict",
|
|
4188
4738
|
"InputSplunkSearchPqTypedDict",
|
|
4189
4739
|
"InputSplunkSearchRetryRules",
|
|
4190
4740
|
"InputSplunkSearchRetryRulesTypedDict",
|
|
@@ -4204,6 +4754,8 @@ __all__ = [
|
|
|
4204
4754
|
"InputSqsMetadatumTypedDict",
|
|
4205
4755
|
"InputSqsMode",
|
|
4206
4756
|
"InputSqsPq",
|
|
4757
|
+
"InputSqsPqControls",
|
|
4758
|
+
"InputSqsPqControlsTypedDict",
|
|
4207
4759
|
"InputSqsPqTypedDict",
|
|
4208
4760
|
"InputSqsQueueType",
|
|
4209
4761
|
"InputSqsSignatureVersion",
|
|
@@ -4230,6 +4782,10 @@ __all__ = [
|
|
|
4230
4782
|
"InputSyslogPq1TypedDict",
|
|
4231
4783
|
"InputSyslogPq2",
|
|
4232
4784
|
"InputSyslogPq2TypedDict",
|
|
4785
|
+
"InputSyslogPqControls1",
|
|
4786
|
+
"InputSyslogPqControls1TypedDict",
|
|
4787
|
+
"InputSyslogPqControls2",
|
|
4788
|
+
"InputSyslogPqControls2TypedDict",
|
|
4233
4789
|
"InputSyslogSyslog1",
|
|
4234
4790
|
"InputSyslogSyslog1TypedDict",
|
|
4235
4791
|
"InputSyslogSyslog2",
|
|
@@ -4270,6 +4826,8 @@ __all__ = [
|
|
|
4270
4826
|
"InputSystemMetricsPersistence",
|
|
4271
4827
|
"InputSystemMetricsPersistenceTypedDict",
|
|
4272
4828
|
"InputSystemMetricsPq",
|
|
4829
|
+
"InputSystemMetricsPqControls",
|
|
4830
|
+
"InputSystemMetricsPqControlsTypedDict",
|
|
4273
4831
|
"InputSystemMetricsPqMode",
|
|
4274
4832
|
"InputSystemMetricsPqTypedDict",
|
|
4275
4833
|
"InputSystemMetricsProcess",
|
|
@@ -4292,6 +4850,8 @@ __all__ = [
|
|
|
4292
4850
|
"InputSystemStatePersistence",
|
|
4293
4851
|
"InputSystemStatePersistenceTypedDict",
|
|
4294
4852
|
"InputSystemStatePq",
|
|
4853
|
+
"InputSystemStatePqControls",
|
|
4854
|
+
"InputSystemStatePqControlsTypedDict",
|
|
4295
4855
|
"InputSystemStatePqTypedDict",
|
|
4296
4856
|
"InputSystemStateRoutes",
|
|
4297
4857
|
"InputSystemStateRoutesTypedDict",
|
|
@@ -4308,6 +4868,8 @@ __all__ = [
|
|
|
4308
4868
|
"InputTCPMinimumTLSVersion",
|
|
4309
4869
|
"InputTCPMode",
|
|
4310
4870
|
"InputTCPPq",
|
|
4871
|
+
"InputTCPPqControls",
|
|
4872
|
+
"InputTCPPqControlsTypedDict",
|
|
4311
4873
|
"InputTCPPqTypedDict",
|
|
4312
4874
|
"InputTCPPreprocess",
|
|
4313
4875
|
"InputTCPPreprocessTypedDict",
|
|
@@ -4326,11 +4888,14 @@ __all__ = [
|
|
|
4326
4888
|
"InputTcpjsonMinimumTLSVersion",
|
|
4327
4889
|
"InputTcpjsonMode",
|
|
4328
4890
|
"InputTcpjsonPq",
|
|
4891
|
+
"InputTcpjsonPqControls",
|
|
4892
|
+
"InputTcpjsonPqControlsTypedDict",
|
|
4329
4893
|
"InputTcpjsonPqTypedDict",
|
|
4330
4894
|
"InputTcpjsonTLSSettingsServerSide",
|
|
4331
4895
|
"InputTcpjsonTLSSettingsServerSideTypedDict",
|
|
4332
4896
|
"InputTcpjsonType",
|
|
4333
4897
|
"InputTcpjsonTypedDict",
|
|
4898
|
+
"InputType",
|
|
4334
4899
|
"InputTypedDict",
|
|
4335
4900
|
"InputWef",
|
|
4336
4901
|
"InputWefAuthenticationMethod",
|
|
@@ -4344,6 +4909,8 @@ __all__ = [
|
|
|
4344
4909
|
"InputWefMinimumTLSVersion",
|
|
4345
4910
|
"InputWefMode",
|
|
4346
4911
|
"InputWefPq",
|
|
4912
|
+
"InputWefPqControls",
|
|
4913
|
+
"InputWefPqControlsTypedDict",
|
|
4347
4914
|
"InputWefPqTypedDict",
|
|
4348
4915
|
"InputWefType",
|
|
4349
4916
|
"InputWefTypedDict",
|
|
@@ -4355,6 +4922,8 @@ __all__ = [
|
|
|
4355
4922
|
"InputWinEventLogsMetadatumTypedDict",
|
|
4356
4923
|
"InputWinEventLogsMode",
|
|
4357
4924
|
"InputWinEventLogsPq",
|
|
4925
|
+
"InputWinEventLogsPqControls",
|
|
4926
|
+
"InputWinEventLogsPqControlsTypedDict",
|
|
4358
4927
|
"InputWinEventLogsPqTypedDict",
|
|
4359
4928
|
"InputWinEventLogsType",
|
|
4360
4929
|
"InputWinEventLogsTypedDict",
|
|
@@ -4385,6 +4954,8 @@ __all__ = [
|
|
|
4385
4954
|
"InputWindowsMetricsPersistence",
|
|
4386
4955
|
"InputWindowsMetricsPersistenceTypedDict",
|
|
4387
4956
|
"InputWindowsMetricsPq",
|
|
4957
|
+
"InputWindowsMetricsPqControls",
|
|
4958
|
+
"InputWindowsMetricsPqControlsTypedDict",
|
|
4388
4959
|
"InputWindowsMetricsPqMode",
|
|
4389
4960
|
"InputWindowsMetricsPqTypedDict",
|
|
4390
4961
|
"InputWindowsMetricsProcess",
|
|
@@ -4407,6 +4978,8 @@ __all__ = [
|
|
|
4407
4978
|
"InputWizMetadatumTypedDict",
|
|
4408
4979
|
"InputWizMode",
|
|
4409
4980
|
"InputWizPq",
|
|
4981
|
+
"InputWizPqControls",
|
|
4982
|
+
"InputWizPqControlsTypedDict",
|
|
4410
4983
|
"InputWizPqTypedDict",
|
|
4411
4984
|
"InputWizRetryRules",
|
|
4412
4985
|
"InputWizRetryRulesTypedDict",
|
|
@@ -4427,6 +5000,8 @@ __all__ = [
|
|
|
4427
5000
|
"InputWizWebhookMinimumTLSVersion",
|
|
4428
5001
|
"InputWizWebhookMode",
|
|
4429
5002
|
"InputWizWebhookPq",
|
|
5003
|
+
"InputWizWebhookPqControls",
|
|
5004
|
+
"InputWizWebhookPqControlsTypedDict",
|
|
4430
5005
|
"InputWizWebhookPqTypedDict",
|
|
4431
5006
|
"InputWizWebhookTLSSettingsServerSide",
|
|
4432
5007
|
"InputWizWebhookTLSSettingsServerSideTypedDict",
|
|
@@ -4447,6 +5022,8 @@ __all__ = [
|
|
|
4447
5022
|
"InputZscalerHecMinimumTLSVersion",
|
|
4448
5023
|
"InputZscalerHecMode",
|
|
4449
5024
|
"InputZscalerHecPq",
|
|
5025
|
+
"InputZscalerHecPqControls",
|
|
5026
|
+
"InputZscalerHecPqControlsTypedDict",
|
|
4450
5027
|
"InputZscalerHecPqTypedDict",
|
|
4451
5028
|
"InputZscalerHecTLSSettingsServerSide",
|
|
4452
5029
|
"InputZscalerHecTLSSettingsServerSideTypedDict",
|
|
@@ -4454,11 +5031,25 @@ __all__ = [
|
|
|
4454
5031
|
"InputZscalerHecTypedDict",
|
|
4455
5032
|
"Interfaces",
|
|
4456
5033
|
"InterfacesTypedDict",
|
|
5034
|
+
"JobInfo",
|
|
5035
|
+
"JobInfoTypedDict",
|
|
5036
|
+
"JobStatus",
|
|
5037
|
+
"JobStatusTypedDict",
|
|
5038
|
+
"LakeDatasetMetrics",
|
|
5039
|
+
"LakeDatasetMetricsTypedDict",
|
|
4457
5040
|
"LakeDatasetSearchConfig",
|
|
4458
5041
|
"LakeDatasetSearchConfigTypedDict",
|
|
4459
5042
|
"LakehouseConnectionType",
|
|
4460
5043
|
"LastMetrics",
|
|
4461
5044
|
"LastMetricsTypedDict",
|
|
5045
|
+
"Line1",
|
|
5046
|
+
"Line1TypedDict",
|
|
5047
|
+
"Line2",
|
|
5048
|
+
"Line2TypedDict",
|
|
5049
|
+
"Line3",
|
|
5050
|
+
"Line3TypedDict",
|
|
5051
|
+
"LineUnion",
|
|
5052
|
+
"LineUnionTypedDict",
|
|
4462
5053
|
"ListConfigGroupByProductRequest",
|
|
4463
5054
|
"ListConfigGroupByProductRequestTypedDict",
|
|
4464
5055
|
"ListConfigGroupByProductResponse",
|
|
@@ -4503,7 +5094,6 @@ __all__ = [
|
|
|
4503
5094
|
"MasterWorkerEntryWorkers",
|
|
4504
5095
|
"MasterWorkerEntryWorkersTypedDict",
|
|
4505
5096
|
"MetricsProtocol",
|
|
4506
|
-
"MicrosoftEntraIDAuthenticationEndpoint",
|
|
4507
5097
|
"NodeActiveUpgradeStatus",
|
|
4508
5098
|
"NodeFailedUpgradeStatus",
|
|
4509
5099
|
"NodeProvidedInfo",
|
|
@@ -4526,8 +5116,12 @@ __all__ = [
|
|
|
4526
5116
|
"NodeUpgradeState",
|
|
4527
5117
|
"NodeUpgradeStatus",
|
|
4528
5118
|
"NodeUpgradeStatusTypedDict",
|
|
5119
|
+
"OldMode",
|
|
5120
|
+
"OldModeTypedDict",
|
|
4529
5121
|
"Os",
|
|
4530
5122
|
"OsTypedDict",
|
|
5123
|
+
"OutpostNodeInfo",
|
|
5124
|
+
"OutpostNodeInfoTypedDict",
|
|
4531
5125
|
"Output",
|
|
4532
5126
|
"OutputAzureBlob",
|
|
4533
5127
|
"OutputAzureBlobAuthenticationMethod",
|
|
@@ -4550,9 +5144,15 @@ __all__ = [
|
|
|
4550
5144
|
"OutputAzureDataExplorerCertificate",
|
|
4551
5145
|
"OutputAzureDataExplorerCertificateTypedDict",
|
|
4552
5146
|
"OutputAzureDataExplorerCompressCompression",
|
|
5147
|
+
"OutputAzureDataExplorerCompressionLevel",
|
|
4553
5148
|
"OutputAzureDataExplorerDataFormat",
|
|
5149
|
+
"OutputAzureDataExplorerDataPageVersion",
|
|
4554
5150
|
"OutputAzureDataExplorerDiskSpaceProtection",
|
|
5151
|
+
"OutputAzureDataExplorerKeyValueMetadatum",
|
|
5152
|
+
"OutputAzureDataExplorerKeyValueMetadatumTypedDict",
|
|
5153
|
+
"OutputAzureDataExplorerMicrosoftEntraIDAuthenticationEndpoint",
|
|
4555
5154
|
"OutputAzureDataExplorerMode",
|
|
5155
|
+
"OutputAzureDataExplorerParquetVersion",
|
|
4556
5156
|
"OutputAzureDataExplorerPqCompressCompression",
|
|
4557
5157
|
"OutputAzureDataExplorerPqControls",
|
|
4558
5158
|
"OutputAzureDataExplorerPqControlsTypedDict",
|
|
@@ -4565,10 +5165,13 @@ __all__ = [
|
|
|
4565
5165
|
"OutputAzureDataExplorerTypedDict",
|
|
4566
5166
|
"OutputAzureEventhub",
|
|
4567
5167
|
"OutputAzureEventhubAcknowledgments",
|
|
5168
|
+
"OutputAzureEventhubAuthTypeAuthenticationMethod",
|
|
4568
5169
|
"OutputAzureEventhubAuthentication",
|
|
4569
5170
|
"OutputAzureEventhubAuthenticationTypedDict",
|
|
4570
5171
|
"OutputAzureEventhubBackpressureBehavior",
|
|
5172
|
+
"OutputAzureEventhubClientSecretAuthTypeAuthenticationMethod",
|
|
4571
5173
|
"OutputAzureEventhubCompression",
|
|
5174
|
+
"OutputAzureEventhubMicrosoftEntraIDAuthenticationEndpoint",
|
|
4572
5175
|
"OutputAzureEventhubMode",
|
|
4573
5176
|
"OutputAzureEventhubPqControls",
|
|
4574
5177
|
"OutputAzureEventhubPqControlsTypedDict",
|
|
@@ -4596,6 +5199,25 @@ __all__ = [
|
|
|
4596
5199
|
"OutputAzureLogsTimeoutRetrySettingsTypedDict",
|
|
4597
5200
|
"OutputAzureLogsType",
|
|
4598
5201
|
"OutputAzureLogsTypedDict",
|
|
5202
|
+
"OutputChronicle",
|
|
5203
|
+
"OutputChronicleAuthenticationMethod",
|
|
5204
|
+
"OutputChronicleBackpressureBehavior",
|
|
5205
|
+
"OutputChronicleCompression",
|
|
5206
|
+
"OutputChronicleCustomLabel",
|
|
5207
|
+
"OutputChronicleCustomLabelTypedDict",
|
|
5208
|
+
"OutputChronicleExtraHTTPHeader",
|
|
5209
|
+
"OutputChronicleExtraHTTPHeaderTypedDict",
|
|
5210
|
+
"OutputChronicleFailedRequestLoggingMode",
|
|
5211
|
+
"OutputChronicleMode",
|
|
5212
|
+
"OutputChroniclePqControls",
|
|
5213
|
+
"OutputChroniclePqControlsTypedDict",
|
|
5214
|
+
"OutputChronicleQueueFullBehavior",
|
|
5215
|
+
"OutputChronicleResponseRetrySetting",
|
|
5216
|
+
"OutputChronicleResponseRetrySettingTypedDict",
|
|
5217
|
+
"OutputChronicleTimeoutRetrySettings",
|
|
5218
|
+
"OutputChronicleTimeoutRetrySettingsTypedDict",
|
|
5219
|
+
"OutputChronicleType",
|
|
5220
|
+
"OutputChronicleTypedDict",
|
|
4599
5221
|
"OutputClickHouse",
|
|
4600
5222
|
"OutputClickHouseAuthenticationType",
|
|
4601
5223
|
"OutputClickHouseBackpressureBehavior",
|
|
@@ -4622,6 +5244,22 @@ __all__ = [
|
|
|
4622
5244
|
"OutputClickHouseTimeoutRetrySettingsTypedDict",
|
|
4623
5245
|
"OutputClickHouseType",
|
|
4624
5246
|
"OutputClickHouseTypedDict",
|
|
5247
|
+
"OutputCloudflareR2",
|
|
5248
|
+
"OutputCloudflareR2AuthenticationMethod",
|
|
5249
|
+
"OutputCloudflareR2BackpressureBehavior",
|
|
5250
|
+
"OutputCloudflareR2Compression",
|
|
5251
|
+
"OutputCloudflareR2CompressionLevel",
|
|
5252
|
+
"OutputCloudflareR2DataFormat",
|
|
5253
|
+
"OutputCloudflareR2DataPageVersion",
|
|
5254
|
+
"OutputCloudflareR2DiskSpaceProtection",
|
|
5255
|
+
"OutputCloudflareR2KeyValueMetadatum",
|
|
5256
|
+
"OutputCloudflareR2KeyValueMetadatumTypedDict",
|
|
5257
|
+
"OutputCloudflareR2ParquetVersion",
|
|
5258
|
+
"OutputCloudflareR2ServerSideEncryption",
|
|
5259
|
+
"OutputCloudflareR2SignatureVersion",
|
|
5260
|
+
"OutputCloudflareR2StorageClass",
|
|
5261
|
+
"OutputCloudflareR2Type",
|
|
5262
|
+
"OutputCloudflareR2TypedDict",
|
|
4625
5263
|
"OutputCloudwatch",
|
|
4626
5264
|
"OutputCloudwatchAuthenticationMethod",
|
|
4627
5265
|
"OutputCloudwatchBackpressureBehavior",
|
|
@@ -4637,6 +5275,7 @@ __all__ = [
|
|
|
4637
5275
|
"OutputConfluentCloudAuth",
|
|
4638
5276
|
"OutputConfluentCloudAuthTypedDict",
|
|
4639
5277
|
"OutputConfluentCloudAuthentication",
|
|
5278
|
+
"OutputConfluentCloudAuthenticationMethod",
|
|
4640
5279
|
"OutputConfluentCloudAuthenticationTypedDict",
|
|
4641
5280
|
"OutputConfluentCloudBackpressureBehavior",
|
|
4642
5281
|
"OutputConfluentCloudCompression",
|
|
@@ -4649,18 +5288,23 @@ __all__ = [
|
|
|
4649
5288
|
"OutputConfluentCloudMaximumTLSVersion",
|
|
4650
5289
|
"OutputConfluentCloudMinimumTLSVersion",
|
|
4651
5290
|
"OutputConfluentCloudMode",
|
|
5291
|
+
"OutputConfluentCloudOauthParam",
|
|
5292
|
+
"OutputConfluentCloudOauthParamTypedDict",
|
|
4652
5293
|
"OutputConfluentCloudPqCompressCompression",
|
|
4653
5294
|
"OutputConfluentCloudPqControls",
|
|
4654
5295
|
"OutputConfluentCloudPqControlsTypedDict",
|
|
4655
5296
|
"OutputConfluentCloudQueueFullBehavior",
|
|
4656
5297
|
"OutputConfluentCloudRecordDataFormat",
|
|
4657
5298
|
"OutputConfluentCloudSASLMechanism",
|
|
4658
|
-
"
|
|
5299
|
+
"OutputConfluentCloudSaslExtension",
|
|
5300
|
+
"OutputConfluentCloudSaslExtensionTypedDict",
|
|
4659
5301
|
"OutputConfluentCloudTLSSettingsClientSide",
|
|
4660
5302
|
"OutputConfluentCloudTLSSettingsClientSideTypedDict",
|
|
4661
5303
|
"OutputConfluentCloudType",
|
|
4662
5304
|
"OutputConfluentCloudTypedDict",
|
|
4663
5305
|
"OutputCriblHTTP",
|
|
5306
|
+
"OutputCriblHTTPAuthToken",
|
|
5307
|
+
"OutputCriblHTTPAuthTokenTypedDict",
|
|
4664
5308
|
"OutputCriblHTTPBackpressureBehavior",
|
|
4665
5309
|
"OutputCriblHTTPCompression",
|
|
4666
5310
|
"OutputCriblHTTPExtraHTTPHeader",
|
|
@@ -4694,6 +5338,8 @@ __all__ = [
|
|
|
4694
5338
|
"OutputCriblLakeType",
|
|
4695
5339
|
"OutputCriblLakeTypedDict",
|
|
4696
5340
|
"OutputCriblTCP",
|
|
5341
|
+
"OutputCriblTCPAuthToken",
|
|
5342
|
+
"OutputCriblTCPAuthTokenTypedDict",
|
|
4697
5343
|
"OutputCriblTCPBackpressureBehavior",
|
|
4698
5344
|
"OutputCriblTCPCompression",
|
|
4699
5345
|
"OutputCriblTCPHost",
|
|
@@ -4728,6 +5374,18 @@ __all__ = [
|
|
|
4728
5374
|
"OutputCrowdstrikeNextGenSiemTimeoutRetrySettingsTypedDict",
|
|
4729
5375
|
"OutputCrowdstrikeNextGenSiemType",
|
|
4730
5376
|
"OutputCrowdstrikeNextGenSiemTypedDict",
|
|
5377
|
+
"OutputDatabricks",
|
|
5378
|
+
"OutputDatabricksBackpressureBehavior",
|
|
5379
|
+
"OutputDatabricksCompression",
|
|
5380
|
+
"OutputDatabricksCompressionLevel",
|
|
5381
|
+
"OutputDatabricksDataFormat",
|
|
5382
|
+
"OutputDatabricksDataPageVersion",
|
|
5383
|
+
"OutputDatabricksDiskSpaceProtection",
|
|
5384
|
+
"OutputDatabricksKeyValueMetadatum",
|
|
5385
|
+
"OutputDatabricksKeyValueMetadatumTypedDict",
|
|
5386
|
+
"OutputDatabricksParquetVersion",
|
|
5387
|
+
"OutputDatabricksType",
|
|
5388
|
+
"OutputDatabricksTypedDict",
|
|
4731
5389
|
"OutputDatadog",
|
|
4732
5390
|
"OutputDatadogAuthenticationMethod",
|
|
4733
5391
|
"OutputDatadogBackpressureBehavior",
|
|
@@ -4901,6 +5559,8 @@ __all__ = [
|
|
|
4901
5559
|
"OutputGoogleChronicleAuthenticationMethod",
|
|
4902
5560
|
"OutputGoogleChronicleBackpressureBehavior",
|
|
4903
5561
|
"OutputGoogleChronicleCompression",
|
|
5562
|
+
"OutputGoogleChronicleCustomLabel",
|
|
5563
|
+
"OutputGoogleChronicleCustomLabelTypedDict",
|
|
4904
5564
|
"OutputGoogleChronicleExtraHTTPHeader",
|
|
4905
5565
|
"OutputGoogleChronicleExtraHTTPHeaderTypedDict",
|
|
4906
5566
|
"OutputGoogleChronicleFailedRequestLoggingMode",
|
|
@@ -5073,6 +5733,7 @@ __all__ = [
|
|
|
5073
5733
|
"OutputKafkaAuth",
|
|
5074
5734
|
"OutputKafkaAuthTypedDict",
|
|
5075
5735
|
"OutputKafkaAuthentication",
|
|
5736
|
+
"OutputKafkaAuthenticationMethod",
|
|
5076
5737
|
"OutputKafkaAuthenticationTypedDict",
|
|
5077
5738
|
"OutputKafkaBackpressureBehavior",
|
|
5078
5739
|
"OutputKafkaCompression",
|
|
@@ -5085,13 +5746,16 @@ __all__ = [
|
|
|
5085
5746
|
"OutputKafkaMaximumTLSVersion",
|
|
5086
5747
|
"OutputKafkaMinimumTLSVersion",
|
|
5087
5748
|
"OutputKafkaMode",
|
|
5749
|
+
"OutputKafkaOauthParam",
|
|
5750
|
+
"OutputKafkaOauthParamTypedDict",
|
|
5088
5751
|
"OutputKafkaPqCompressCompression",
|
|
5089
5752
|
"OutputKafkaPqControls",
|
|
5090
5753
|
"OutputKafkaPqControlsTypedDict",
|
|
5091
5754
|
"OutputKafkaQueueFullBehavior",
|
|
5092
5755
|
"OutputKafkaRecordDataFormat",
|
|
5093
5756
|
"OutputKafkaSASLMechanism",
|
|
5094
|
-
"
|
|
5757
|
+
"OutputKafkaSaslExtension",
|
|
5758
|
+
"OutputKafkaSaslExtensionTypedDict",
|
|
5095
5759
|
"OutputKafkaTLSSettingsClientSide",
|
|
5096
5760
|
"OutputKafkaTLSSettingsClientSideTypedDict",
|
|
5097
5761
|
"OutputKafkaType",
|
|
@@ -5128,6 +5792,24 @@ __all__ = [
|
|
|
5128
5792
|
"OutputLokiTimeoutRetrySettingsTypedDict",
|
|
5129
5793
|
"OutputLokiType",
|
|
5130
5794
|
"OutputLokiTypedDict",
|
|
5795
|
+
"OutputMicrosoftFabric",
|
|
5796
|
+
"OutputMicrosoftFabricAcknowledgments",
|
|
5797
|
+
"OutputMicrosoftFabricAuthentication",
|
|
5798
|
+
"OutputMicrosoftFabricAuthenticationMethod",
|
|
5799
|
+
"OutputMicrosoftFabricAuthenticationTypedDict",
|
|
5800
|
+
"OutputMicrosoftFabricBackpressureBehavior",
|
|
5801
|
+
"OutputMicrosoftFabricCompression",
|
|
5802
|
+
"OutputMicrosoftFabricMicrosoftEntraIDAuthenticationEndpoint",
|
|
5803
|
+
"OutputMicrosoftFabricMode",
|
|
5804
|
+
"OutputMicrosoftFabricPqControls",
|
|
5805
|
+
"OutputMicrosoftFabricPqControlsTypedDict",
|
|
5806
|
+
"OutputMicrosoftFabricQueueFullBehavior",
|
|
5807
|
+
"OutputMicrosoftFabricRecordDataFormat",
|
|
5808
|
+
"OutputMicrosoftFabricSASLMechanism",
|
|
5809
|
+
"OutputMicrosoftFabricTLSSettingsClientSide",
|
|
5810
|
+
"OutputMicrosoftFabricTLSSettingsClientSideTypedDict",
|
|
5811
|
+
"OutputMicrosoftFabricType",
|
|
5812
|
+
"OutputMicrosoftFabricTypedDict",
|
|
5131
5813
|
"OutputMinio",
|
|
5132
5814
|
"OutputMinioAuthenticationMethod",
|
|
5133
5815
|
"OutputMinioBackpressureBehavior",
|
|
@@ -5140,6 +5822,7 @@ __all__ = [
|
|
|
5140
5822
|
"OutputMinioKeyValueMetadatumTypedDict",
|
|
5141
5823
|
"OutputMinioObjectACL",
|
|
5142
5824
|
"OutputMinioParquetVersion",
|
|
5825
|
+
"OutputMinioServerSideEncryption",
|
|
5143
5826
|
"OutputMinioSignatureVersion",
|
|
5144
5827
|
"OutputMinioStorageClass",
|
|
5145
5828
|
"OutputMinioType",
|
|
@@ -5166,7 +5849,6 @@ __all__ = [
|
|
|
5166
5849
|
"OutputMskPqControlsTypedDict",
|
|
5167
5850
|
"OutputMskQueueFullBehavior",
|
|
5168
5851
|
"OutputMskRecordDataFormat",
|
|
5169
|
-
"OutputMskSchemaType",
|
|
5170
5852
|
"OutputMskSignatureVersion",
|
|
5171
5853
|
"OutputMskTLSSettingsClientSide",
|
|
5172
5854
|
"OutputMskTLSSettingsClientSideTypedDict",
|
|
@@ -5416,12 +6098,16 @@ __all__ = [
|
|
|
5416
6098
|
"OutputSplunkHecExtraHTTPHeader",
|
|
5417
6099
|
"OutputSplunkHecExtraHTTPHeaderTypedDict",
|
|
5418
6100
|
"OutputSplunkHecFailedRequestLoggingMode",
|
|
6101
|
+
"OutputSplunkHecMaximumTLSVersion",
|
|
6102
|
+
"OutputSplunkHecMinimumTLSVersion",
|
|
5419
6103
|
"OutputSplunkHecMode",
|
|
5420
6104
|
"OutputSplunkHecPqControls",
|
|
5421
6105
|
"OutputSplunkHecPqControlsTypedDict",
|
|
5422
6106
|
"OutputSplunkHecQueueFullBehavior",
|
|
5423
6107
|
"OutputSplunkHecResponseRetrySetting",
|
|
5424
6108
|
"OutputSplunkHecResponseRetrySettingTypedDict",
|
|
6109
|
+
"OutputSplunkHecTLSSettingsClientSide",
|
|
6110
|
+
"OutputSplunkHecTLSSettingsClientSideTypedDict",
|
|
5425
6111
|
"OutputSplunkHecTimeoutRetrySettings",
|
|
5426
6112
|
"OutputSplunkHecTimeoutRetrySettingsTypedDict",
|
|
5427
6113
|
"OutputSplunkHecType",
|
|
@@ -5515,6 +6201,8 @@ __all__ = [
|
|
|
5515
6201
|
"OutputSyslog",
|
|
5516
6202
|
"OutputSyslogBackpressureBehavior",
|
|
5517
6203
|
"OutputSyslogCompression",
|
|
6204
|
+
"OutputSyslogHost",
|
|
6205
|
+
"OutputSyslogHostTypedDict",
|
|
5518
6206
|
"OutputSyslogMaximumTLSVersion",
|
|
5519
6207
|
"OutputSyslogMessageFormat",
|
|
5520
6208
|
"OutputSyslogMinimumTLSVersion",
|
|
@@ -5524,6 +6212,7 @@ __all__ = [
|
|
|
5524
6212
|
"OutputSyslogProtocol",
|
|
5525
6213
|
"OutputSyslogQueueFullBehavior",
|
|
5526
6214
|
"OutputSyslogSeverity",
|
|
6215
|
+
"OutputSyslogTLS",
|
|
5527
6216
|
"OutputSyslogTLSSettingsClientSide",
|
|
5528
6217
|
"OutputSyslogTLSSettingsClientSideTypedDict",
|
|
5529
6218
|
"OutputSyslogType",
|
|
@@ -5659,6 +6348,7 @@ __all__ = [
|
|
|
5659
6348
|
"RbacResource",
|
|
5660
6349
|
"ReadMode",
|
|
5661
6350
|
"Remote",
|
|
6351
|
+
"RemoteEnum",
|
|
5662
6352
|
"RemoteTypedDict",
|
|
5663
6353
|
"Renamed",
|
|
5664
6354
|
"RenamedTypedDict",
|
|
@@ -5669,8 +6359,6 @@ __all__ = [
|
|
|
5669
6359
|
"ResourceTypeLabel",
|
|
5670
6360
|
"ResourceTypeLabelTypedDict",
|
|
5671
6361
|
"Role",
|
|
5672
|
-
"RouteCloneConf",
|
|
5673
|
-
"RouteCloneConfTypedDict",
|
|
5674
6362
|
"RouteConf",
|
|
5675
6363
|
"RouteConfTypedDict",
|
|
5676
6364
|
"Routes",
|
|
@@ -5679,6 +6367,56 @@ __all__ = [
|
|
|
5679
6367
|
"RoutesRoute",
|
|
5680
6368
|
"RoutesRouteTypedDict",
|
|
5681
6369
|
"RoutesTypedDict",
|
|
6370
|
+
"RunnableJob",
|
|
6371
|
+
"RunnableJobCollection",
|
|
6372
|
+
"RunnableJobCollectionInput",
|
|
6373
|
+
"RunnableJobCollectionInputTypedDict",
|
|
6374
|
+
"RunnableJobCollectionJobType",
|
|
6375
|
+
"RunnableJobCollectionLogLevel",
|
|
6376
|
+
"RunnableJobCollectionMetadatum",
|
|
6377
|
+
"RunnableJobCollectionMetadatumTypedDict",
|
|
6378
|
+
"RunnableJobCollectionMode",
|
|
6379
|
+
"RunnableJobCollectionPreprocess",
|
|
6380
|
+
"RunnableJobCollectionPreprocessTypedDict",
|
|
6381
|
+
"RunnableJobCollectionRun",
|
|
6382
|
+
"RunnableJobCollectionRunSettings",
|
|
6383
|
+
"RunnableJobCollectionRunSettingsTypedDict",
|
|
6384
|
+
"RunnableJobCollectionRunType",
|
|
6385
|
+
"RunnableJobCollectionRunTypedDict",
|
|
6386
|
+
"RunnableJobCollectionSchedule",
|
|
6387
|
+
"RunnableJobCollectionScheduleLogLevel",
|
|
6388
|
+
"RunnableJobCollectionScheduleTimeWarning",
|
|
6389
|
+
"RunnableJobCollectionScheduleTimeWarningTypedDict",
|
|
6390
|
+
"RunnableJobCollectionScheduleTypedDict",
|
|
6391
|
+
"RunnableJobCollectionTimeWarning",
|
|
6392
|
+
"RunnableJobCollectionTimeWarningTypedDict",
|
|
6393
|
+
"RunnableJobCollectionTypedDict",
|
|
6394
|
+
"RunnableJobExecutor",
|
|
6395
|
+
"RunnableJobExecutorJobType",
|
|
6396
|
+
"RunnableJobExecutorLogLevel",
|
|
6397
|
+
"RunnableJobExecutorRun",
|
|
6398
|
+
"RunnableJobExecutorRunSettings",
|
|
6399
|
+
"RunnableJobExecutorRunSettingsTypedDict",
|
|
6400
|
+
"RunnableJobExecutorRunTypedDict",
|
|
6401
|
+
"RunnableJobExecutorSchedule",
|
|
6402
|
+
"RunnableJobExecutorScheduleLogLevel",
|
|
6403
|
+
"RunnableJobExecutorScheduleTypedDict",
|
|
6404
|
+
"RunnableJobExecutorTimeWarning",
|
|
6405
|
+
"RunnableJobExecutorTimeWarningTypedDict",
|
|
6406
|
+
"RunnableJobExecutorType",
|
|
6407
|
+
"RunnableJobExecutorTypedDict",
|
|
6408
|
+
"RunnableJobScheduledSearch",
|
|
6409
|
+
"RunnableJobScheduledSearchJobType",
|
|
6410
|
+
"RunnableJobScheduledSearchLogLevel",
|
|
6411
|
+
"RunnableJobScheduledSearchRunSettings",
|
|
6412
|
+
"RunnableJobScheduledSearchRunSettingsTypedDict",
|
|
6413
|
+
"RunnableJobScheduledSearchSchedule",
|
|
6414
|
+
"RunnableJobScheduledSearchScheduleTypedDict",
|
|
6415
|
+
"RunnableJobScheduledSearchTimeWarning",
|
|
6416
|
+
"RunnableJobScheduledSearchTimeWarningTypedDict",
|
|
6417
|
+
"RunnableJobScheduledSearchType",
|
|
6418
|
+
"RunnableJobScheduledSearchTypedDict",
|
|
6419
|
+
"RunnableJobTypedDict",
|
|
5682
6420
|
"SNMPv3Authentication",
|
|
5683
6421
|
"SNMPv3AuthenticationTypedDict",
|
|
5684
6422
|
"Sample",
|
|
@@ -5692,11 +6430,15 @@ __all__ = [
|
|
|
5692
6430
|
"SecurityTypedDict",
|
|
5693
6431
|
"SendEventsAs",
|
|
5694
6432
|
"SendLogsAs",
|
|
5695
|
-
"ServerSideEncryption",
|
|
5696
6433
|
"Services",
|
|
5697
6434
|
"ServicesTypedDict",
|
|
5698
6435
|
"ShardIteratorStart",
|
|
5699
6436
|
"ShardLoadBalancing",
|
|
6437
|
+
"SplunkHecMetadata",
|
|
6438
|
+
"SplunkHecMetadataTypedDict",
|
|
6439
|
+
"State",
|
|
6440
|
+
"Stats",
|
|
6441
|
+
"StatsTypedDict",
|
|
5700
6442
|
"Status",
|
|
5701
6443
|
"Subscription",
|
|
5702
6444
|
"SubscriptionMetadatum",
|
|
@@ -5710,8 +6452,10 @@ __all__ = [
|
|
|
5710
6452
|
"TeamAccessControlList",
|
|
5711
6453
|
"TeamAccessControlListTypedDict",
|
|
5712
6454
|
"TelemetryType",
|
|
6455
|
+
"TimeRange",
|
|
5713
6456
|
"TimestampFormat",
|
|
5714
6457
|
"TimestampPrecision",
|
|
6458
|
+
"UDMType",
|
|
5715
6459
|
"UpdateConfigGroupByProductAndIDRequest",
|
|
5716
6460
|
"UpdateConfigGroupByProductAndIDRequestTypedDict",
|
|
5717
6461
|
"UpdateConfigGroupByProductAndIDResponse",
|
|
@@ -5744,6 +6488,8 @@ __all__ = [
|
|
|
5744
6488
|
"UpdatePacksByIDRequestTypedDict",
|
|
5745
6489
|
"UpdatePacksByIDResponse",
|
|
5746
6490
|
"UpdatePacksByIDResponseTypedDict",
|
|
6491
|
+
"UpdatePacksRequest",
|
|
6492
|
+
"UpdatePacksRequestTypedDict",
|
|
5747
6493
|
"UpdatePipelineByIDRequest",
|
|
5748
6494
|
"UpdatePipelineByIDRequestTypedDict",
|
|
5749
6495
|
"UpdatePipelineByIDResponse",
|
|
@@ -5752,12 +6498,15 @@ __all__ = [
|
|
|
5752
6498
|
"UpdateRoutesByIDRequestTypedDict",
|
|
5753
6499
|
"UpdateRoutesByIDResponse",
|
|
5754
6500
|
"UpdateRoutesByIDResponseTypedDict",
|
|
6501
|
+
"UploadPackResponse",
|
|
6502
|
+
"UploadPackResponseTypedDict",
|
|
5755
6503
|
"UserAccessControlList",
|
|
5756
6504
|
"UserAccessControlListTypedDict",
|
|
5757
6505
|
"UsersAndGroups",
|
|
5758
6506
|
"UsersAndGroupsTypedDict",
|
|
5759
6507
|
"V3User",
|
|
5760
6508
|
"V3UserTypedDict",
|
|
6509
|
+
"WhereToCapture",
|
|
5761
6510
|
"WorkerTypes",
|
|
5762
6511
|
"WriteAction",
|
|
5763
6512
|
]
|
|
@@ -5767,9 +6516,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5767
6516
|
"AddHecTokenRequestMetadatum": ".addhectokenrequest",
|
|
5768
6517
|
"AddHecTokenRequestMetadatumTypedDict": ".addhectokenrequest",
|
|
5769
6518
|
"AddHecTokenRequestTypedDict": ".addhectokenrequest",
|
|
5770
|
-
"AppMode": ".appmode",
|
|
5771
6519
|
"AuthToken": ".authtoken",
|
|
5772
6520
|
"AuthTokenTypedDict": ".authtoken",
|
|
6521
|
+
"BranchInfo": ".branchinfo",
|
|
6522
|
+
"BranchInfoTypedDict": ".branchinfo",
|
|
5773
6523
|
"CacheConnection": ".cacheconnection",
|
|
5774
6524
|
"CacheConnectionTypedDict": ".cacheconnection",
|
|
5775
6525
|
"CacheConnectionBackfillStatus": ".cacheconnectionbackfillstatus",
|
|
@@ -5777,10 +6527,11 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5777
6527
|
"Commit": ".commit",
|
|
5778
6528
|
"CommitTypedDict": ".commit",
|
|
5779
6529
|
"ConfigGroup": ".configgroup",
|
|
6530
|
+
"ConfigGroupEstimatedIngestRate": ".configgroup",
|
|
6531
|
+
"ConfigGroupGit": ".configgroup",
|
|
6532
|
+
"ConfigGroupGitTypedDict": ".configgroup",
|
|
5780
6533
|
"ConfigGroupType": ".configgroup",
|
|
5781
6534
|
"ConfigGroupTypedDict": ".configgroup",
|
|
5782
|
-
"Git": ".configgroup",
|
|
5783
|
-
"GitTypedDict": ".configgroup",
|
|
5784
6535
|
"ConfigGroupCloud": ".configgroupcloud",
|
|
5785
6536
|
"ConfigGroupCloudTypedDict": ".configgroupcloud",
|
|
5786
6537
|
"ConfigGroupLookups": ".configgrouplookups",
|
|
@@ -5834,6 +6585,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5834
6585
|
"CriblLakeDataset": ".cribllakedataset",
|
|
5835
6586
|
"CriblLakeDatasetFormat": ".cribllakedataset",
|
|
5836
6587
|
"CriblLakeDatasetTypedDict": ".cribllakedataset",
|
|
6588
|
+
"CriblLakeDatasetUpdate": ".cribllakedatasetupdate",
|
|
6589
|
+
"CriblLakeDatasetUpdateFormat": ".cribllakedatasetupdate",
|
|
6590
|
+
"CriblLakeDatasetUpdateTypedDict": ".cribllakedatasetupdate",
|
|
5837
6591
|
"CurrentBranchResult": ".currentbranchresult",
|
|
5838
6592
|
"CurrentBranchResultTypedDict": ".currentbranchresult",
|
|
5839
6593
|
"DatasetMetadata": ".datasetmetadata",
|
|
@@ -5875,6 +6629,22 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5875
6629
|
"DeployRequestLookupsLookup": ".deployrequestlookups",
|
|
5876
6630
|
"DeployRequestLookupsLookupTypedDict": ".deployrequestlookups",
|
|
5877
6631
|
"DeployRequestLookupsTypedDict": ".deployrequestlookups",
|
|
6632
|
+
"Block": ".difffiles",
|
|
6633
|
+
"BlockTypedDict": ".difffiles",
|
|
6634
|
+
"ChecksumBefore": ".difffiles",
|
|
6635
|
+
"ChecksumBeforeTypedDict": ".difffiles",
|
|
6636
|
+
"DiffFiles": ".difffiles",
|
|
6637
|
+
"DiffFilesTypedDict": ".difffiles",
|
|
6638
|
+
"Line1": ".difffiles",
|
|
6639
|
+
"Line1TypedDict": ".difffiles",
|
|
6640
|
+
"Line2": ".difffiles",
|
|
6641
|
+
"Line2TypedDict": ".difffiles",
|
|
6642
|
+
"Line3": ".difffiles",
|
|
6643
|
+
"Line3TypedDict": ".difffiles",
|
|
6644
|
+
"LineUnion": ".difffiles",
|
|
6645
|
+
"LineUnionTypedDict": ".difffiles",
|
|
6646
|
+
"OldMode": ".difffiles",
|
|
6647
|
+
"OldModeTypedDict": ".difffiles",
|
|
5878
6648
|
"DistributedSummary": ".distributedsummary",
|
|
5879
6649
|
"DistributedSummaryGroups": ".distributedsummary",
|
|
5880
6650
|
"DistributedSummaryGroupsTypedDict": ".distributedsummary",
|
|
@@ -5983,6 +6753,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5983
6753
|
"GitCommitSummaryTypedDict": ".gitcommitsummary",
|
|
5984
6754
|
"Summary": ".gitcommitsummary",
|
|
5985
6755
|
"SummaryTypedDict": ".gitcommitsummary",
|
|
6756
|
+
"GitCountResult": ".gitcountresult",
|
|
6757
|
+
"GitCountResultTypedDict": ".gitcountresult",
|
|
6758
|
+
"GitDiffResult": ".gitdiffresult",
|
|
6759
|
+
"GitDiffResultTypedDict": ".gitdiffresult",
|
|
5986
6760
|
"GitFile": ".gitfile",
|
|
5987
6761
|
"GitFileTypedDict": ".gitfile",
|
|
5988
6762
|
"GitFilesResponse": ".gitfilesresponse",
|
|
@@ -5990,6 +6764,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5990
6764
|
"GitInfo": ".gitinfo",
|
|
5991
6765
|
"GitInfoTypedDict": ".gitinfo",
|
|
5992
6766
|
"Remote": ".gitinfo",
|
|
6767
|
+
"RemoteEnum": ".gitinfo",
|
|
5993
6768
|
"RemoteTypedDict": ".gitinfo",
|
|
5994
6769
|
"GitLogResult": ".gitlogresult",
|
|
5995
6770
|
"GitLogResultTypedDict": ".gitlogresult",
|
|
@@ -6001,22 +6776,31 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6001
6776
|
"GitRevertResultFiles": ".gitrevertresult",
|
|
6002
6777
|
"GitRevertResultFilesTypedDict": ".gitrevertresult",
|
|
6003
6778
|
"GitRevertResultTypedDict": ".gitrevertresult",
|
|
6779
|
+
"GitShowResult": ".gitshowresult",
|
|
6780
|
+
"GitShowResultTypedDict": ".gitshowresult",
|
|
6004
6781
|
"File": ".gitstatusresult",
|
|
6005
6782
|
"FileTypedDict": ".gitstatusresult",
|
|
6006
6783
|
"GitStatusResult": ".gitstatusresult",
|
|
6007
6784
|
"GitStatusResultTypedDict": ".gitstatusresult",
|
|
6008
6785
|
"Renamed": ".gitstatusresult",
|
|
6009
6786
|
"RenamedTypedDict": ".gitstatusresult",
|
|
6787
|
+
"GroupCreateRequest": ".groupcreaterequest",
|
|
6788
|
+
"GroupCreateRequestEstimatedIngestRate": ".groupcreaterequest",
|
|
6789
|
+
"GroupCreateRequestGit": ".groupcreaterequest",
|
|
6790
|
+
"GroupCreateRequestGitTypedDict": ".groupcreaterequest",
|
|
6791
|
+
"GroupCreateRequestType": ".groupcreaterequest",
|
|
6792
|
+
"GroupCreateRequestTypedDict": ".groupcreaterequest",
|
|
6010
6793
|
"Config": ".hbcriblinfo",
|
|
6011
6794
|
"ConfigTypedDict": ".hbcriblinfo",
|
|
6795
|
+
"DistMode": ".hbcriblinfo",
|
|
6012
6796
|
"HBCriblInfo": ".hbcriblinfo",
|
|
6013
6797
|
"HBCriblInfoTypedDict": ".hbcriblinfo",
|
|
6014
6798
|
"HBLeaderInfo": ".hbleaderinfo",
|
|
6015
6799
|
"HBLeaderInfoTypedDict": ".hbleaderinfo",
|
|
6016
|
-
"
|
|
6017
|
-
"
|
|
6018
|
-
"Role": ".
|
|
6019
|
-
"Status": ".
|
|
6800
|
+
"HealthServerStatus": ".healthserverstatus",
|
|
6801
|
+
"HealthServerStatusTypedDict": ".healthserverstatus",
|
|
6802
|
+
"Role": ".healthserverstatus",
|
|
6803
|
+
"Status": ".healthserverstatus",
|
|
6020
6804
|
"HeartbeatMetadata": ".heartbeatmetadata",
|
|
6021
6805
|
"HeartbeatMetadataAws": ".heartbeatmetadata",
|
|
6022
6806
|
"HeartbeatMetadataAwsTypedDict": ".heartbeatmetadata",
|
|
@@ -6051,6 +6835,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6051
6835
|
"InputAppscopePersistence": ".inputappscope",
|
|
6052
6836
|
"InputAppscopePersistenceTypedDict": ".inputappscope",
|
|
6053
6837
|
"InputAppscopePq": ".inputappscope",
|
|
6838
|
+
"InputAppscopePqControls": ".inputappscope",
|
|
6839
|
+
"InputAppscopePqControlsTypedDict": ".inputappscope",
|
|
6054
6840
|
"InputAppscopePqTypedDict": ".inputappscope",
|
|
6055
6841
|
"InputAppscopeTLSSettingsServerSide": ".inputappscope",
|
|
6056
6842
|
"InputAppscopeTLSSettingsServerSideTypedDict": ".inputappscope",
|
|
@@ -6067,9 +6853,33 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6067
6853
|
"InputAzureBlobMetadatumTypedDict": ".inputazureblob",
|
|
6068
6854
|
"InputAzureBlobMode": ".inputazureblob",
|
|
6069
6855
|
"InputAzureBlobPq": ".inputazureblob",
|
|
6856
|
+
"InputAzureBlobPqControls": ".inputazureblob",
|
|
6857
|
+
"InputAzureBlobPqControlsTypedDict": ".inputazureblob",
|
|
6070
6858
|
"InputAzureBlobPqTypedDict": ".inputazureblob",
|
|
6071
6859
|
"InputAzureBlobType": ".inputazureblob",
|
|
6072
6860
|
"InputAzureBlobTypedDict": ".inputazureblob",
|
|
6861
|
+
"InputCloudflareHec": ".inputcloudflarehec",
|
|
6862
|
+
"InputCloudflareHecAuthToken": ".inputcloudflarehec",
|
|
6863
|
+
"InputCloudflareHecAuthTokenMetadatum": ".inputcloudflarehec",
|
|
6864
|
+
"InputCloudflareHecAuthTokenMetadatumTypedDict": ".inputcloudflarehec",
|
|
6865
|
+
"InputCloudflareHecAuthTokenTypedDict": ".inputcloudflarehec",
|
|
6866
|
+
"InputCloudflareHecAuthenticationMethod": ".inputcloudflarehec",
|
|
6867
|
+
"InputCloudflareHecCompression": ".inputcloudflarehec",
|
|
6868
|
+
"InputCloudflareHecConnection": ".inputcloudflarehec",
|
|
6869
|
+
"InputCloudflareHecConnectionTypedDict": ".inputcloudflarehec",
|
|
6870
|
+
"InputCloudflareHecMaximumTLSVersion": ".inputcloudflarehec",
|
|
6871
|
+
"InputCloudflareHecMetadatum": ".inputcloudflarehec",
|
|
6872
|
+
"InputCloudflareHecMetadatumTypedDict": ".inputcloudflarehec",
|
|
6873
|
+
"InputCloudflareHecMinimumTLSVersion": ".inputcloudflarehec",
|
|
6874
|
+
"InputCloudflareHecMode": ".inputcloudflarehec",
|
|
6875
|
+
"InputCloudflareHecPq": ".inputcloudflarehec",
|
|
6876
|
+
"InputCloudflareHecPqControls": ".inputcloudflarehec",
|
|
6877
|
+
"InputCloudflareHecPqControlsTypedDict": ".inputcloudflarehec",
|
|
6878
|
+
"InputCloudflareHecPqTypedDict": ".inputcloudflarehec",
|
|
6879
|
+
"InputCloudflareHecTLSSettingsServerSide": ".inputcloudflarehec",
|
|
6880
|
+
"InputCloudflareHecTLSSettingsServerSideTypedDict": ".inputcloudflarehec",
|
|
6881
|
+
"InputCloudflareHecType": ".inputcloudflarehec",
|
|
6882
|
+
"InputCloudflareHecTypedDict": ".inputcloudflarehec",
|
|
6073
6883
|
"InputCollection": ".inputcollection",
|
|
6074
6884
|
"InputCollectionCompression": ".inputcollection",
|
|
6075
6885
|
"InputCollectionConnection": ".inputcollection",
|
|
@@ -6078,6 +6888,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6078
6888
|
"InputCollectionMetadatumTypedDict": ".inputcollection",
|
|
6079
6889
|
"InputCollectionMode": ".inputcollection",
|
|
6080
6890
|
"InputCollectionPq": ".inputcollection",
|
|
6891
|
+
"InputCollectionPqControls": ".inputcollection",
|
|
6892
|
+
"InputCollectionPqControlsTypedDict": ".inputcollection",
|
|
6081
6893
|
"InputCollectionPqTypedDict": ".inputcollection",
|
|
6082
6894
|
"InputCollectionPreprocess": ".inputcollection",
|
|
6083
6895
|
"InputCollectionPreprocessTypedDict": ".inputcollection",
|
|
@@ -6087,6 +6899,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6087
6899
|
"InputConfluentCloudAuth": ".inputconfluentcloud",
|
|
6088
6900
|
"InputConfluentCloudAuthTypedDict": ".inputconfluentcloud",
|
|
6089
6901
|
"InputConfluentCloudAuthentication": ".inputconfluentcloud",
|
|
6902
|
+
"InputConfluentCloudAuthenticationMethod": ".inputconfluentcloud",
|
|
6090
6903
|
"InputConfluentCloudAuthenticationTypedDict": ".inputconfluentcloud",
|
|
6091
6904
|
"InputConfluentCloudCompression": ".inputconfluentcloud",
|
|
6092
6905
|
"InputConfluentCloudConnection": ".inputconfluentcloud",
|
|
@@ -6102,10 +6915,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6102
6915
|
"InputConfluentCloudMetadatumTypedDict": ".inputconfluentcloud",
|
|
6103
6916
|
"InputConfluentCloudMinimumTLSVersion": ".inputconfluentcloud",
|
|
6104
6917
|
"InputConfluentCloudMode": ".inputconfluentcloud",
|
|
6918
|
+
"InputConfluentCloudOauthParam": ".inputconfluentcloud",
|
|
6919
|
+
"InputConfluentCloudOauthParamTypedDict": ".inputconfluentcloud",
|
|
6105
6920
|
"InputConfluentCloudPq": ".inputconfluentcloud",
|
|
6921
|
+
"InputConfluentCloudPqControls": ".inputconfluentcloud",
|
|
6922
|
+
"InputConfluentCloudPqControlsTypedDict": ".inputconfluentcloud",
|
|
6106
6923
|
"InputConfluentCloudPqTypedDict": ".inputconfluentcloud",
|
|
6107
6924
|
"InputConfluentCloudSASLMechanism": ".inputconfluentcloud",
|
|
6108
|
-
"
|
|
6925
|
+
"InputConfluentCloudSaslExtension": ".inputconfluentcloud",
|
|
6926
|
+
"InputConfluentCloudSaslExtensionTypedDict": ".inputconfluentcloud",
|
|
6109
6927
|
"InputConfluentCloudTLSSettingsClientSide": ".inputconfluentcloud",
|
|
6110
6928
|
"InputConfluentCloudTLSSettingsClientSideTypedDict": ".inputconfluentcloud",
|
|
6111
6929
|
"InputConfluentCloudType": ".inputconfluentcloud",
|
|
@@ -6118,10 +6936,14 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6118
6936
|
"InputCriblMetadatumTypedDict": ".inputcribl",
|
|
6119
6937
|
"InputCriblMode": ".inputcribl",
|
|
6120
6938
|
"InputCriblPq": ".inputcribl",
|
|
6939
|
+
"InputCriblPqControls": ".inputcribl",
|
|
6940
|
+
"InputCriblPqControlsTypedDict": ".inputcribl",
|
|
6121
6941
|
"InputCriblPqTypedDict": ".inputcribl",
|
|
6122
6942
|
"InputCriblType": ".inputcribl",
|
|
6123
6943
|
"InputCriblTypedDict": ".inputcribl",
|
|
6124
6944
|
"InputCriblHTTP": ".inputcriblhttp",
|
|
6945
|
+
"InputCriblHTTPAuthToken": ".inputcriblhttp",
|
|
6946
|
+
"InputCriblHTTPAuthTokenTypedDict": ".inputcriblhttp",
|
|
6125
6947
|
"InputCriblHTTPCompression": ".inputcriblhttp",
|
|
6126
6948
|
"InputCriblHTTPConnection": ".inputcriblhttp",
|
|
6127
6949
|
"InputCriblHTTPConnectionTypedDict": ".inputcriblhttp",
|
|
@@ -6131,11 +6953,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6131
6953
|
"InputCriblHTTPMinimumTLSVersion": ".inputcriblhttp",
|
|
6132
6954
|
"InputCriblHTTPMode": ".inputcriblhttp",
|
|
6133
6955
|
"InputCriblHTTPPq": ".inputcriblhttp",
|
|
6956
|
+
"InputCriblHTTPPqControls": ".inputcriblhttp",
|
|
6957
|
+
"InputCriblHTTPPqControlsTypedDict": ".inputcriblhttp",
|
|
6134
6958
|
"InputCriblHTTPPqTypedDict": ".inputcriblhttp",
|
|
6135
6959
|
"InputCriblHTTPTLSSettingsServerSide": ".inputcriblhttp",
|
|
6136
6960
|
"InputCriblHTTPTLSSettingsServerSideTypedDict": ".inputcriblhttp",
|
|
6137
6961
|
"InputCriblHTTPType": ".inputcriblhttp",
|
|
6138
6962
|
"InputCriblHTTPTypedDict": ".inputcriblhttp",
|
|
6963
|
+
"ElasticsearchMetadata": ".inputcribllakehttp",
|
|
6964
|
+
"ElasticsearchMetadataTypedDict": ".inputcribllakehttp",
|
|
6139
6965
|
"InputCriblLakeHTTP": ".inputcribllakehttp",
|
|
6140
6966
|
"InputCriblLakeHTTPAuthTokensExt": ".inputcribllakehttp",
|
|
6141
6967
|
"InputCriblLakeHTTPAuthTokensExtMetadatum": ".inputcribllakehttp",
|
|
@@ -6150,11 +6976,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6150
6976
|
"InputCriblLakeHTTPMinimumTLSVersion": ".inputcribllakehttp",
|
|
6151
6977
|
"InputCriblLakeHTTPMode": ".inputcribllakehttp",
|
|
6152
6978
|
"InputCriblLakeHTTPPq": ".inputcribllakehttp",
|
|
6979
|
+
"InputCriblLakeHTTPPqControls": ".inputcribllakehttp",
|
|
6980
|
+
"InputCriblLakeHTTPPqControlsTypedDict": ".inputcribllakehttp",
|
|
6153
6981
|
"InputCriblLakeHTTPPqTypedDict": ".inputcribllakehttp",
|
|
6154
6982
|
"InputCriblLakeHTTPTLSSettingsServerSide": ".inputcribllakehttp",
|
|
6155
6983
|
"InputCriblLakeHTTPTLSSettingsServerSideTypedDict": ".inputcribllakehttp",
|
|
6156
6984
|
"InputCriblLakeHTTPType": ".inputcribllakehttp",
|
|
6157
6985
|
"InputCriblLakeHTTPTypedDict": ".inputcribllakehttp",
|
|
6986
|
+
"SplunkHecMetadata": ".inputcribllakehttp",
|
|
6987
|
+
"SplunkHecMetadataTypedDict": ".inputcribllakehttp",
|
|
6158
6988
|
"InputCriblmetrics": ".inputcriblmetrics",
|
|
6159
6989
|
"InputCriblmetricsCompression": ".inputcriblmetrics",
|
|
6160
6990
|
"InputCriblmetricsConnection": ".inputcriblmetrics",
|
|
@@ -6163,10 +6993,14 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6163
6993
|
"InputCriblmetricsMetadatumTypedDict": ".inputcriblmetrics",
|
|
6164
6994
|
"InputCriblmetricsMode": ".inputcriblmetrics",
|
|
6165
6995
|
"InputCriblmetricsPq": ".inputcriblmetrics",
|
|
6996
|
+
"InputCriblmetricsPqControls": ".inputcriblmetrics",
|
|
6997
|
+
"InputCriblmetricsPqControlsTypedDict": ".inputcriblmetrics",
|
|
6166
6998
|
"InputCriblmetricsPqTypedDict": ".inputcriblmetrics",
|
|
6167
6999
|
"InputCriblmetricsType": ".inputcriblmetrics",
|
|
6168
7000
|
"InputCriblmetricsTypedDict": ".inputcriblmetrics",
|
|
6169
7001
|
"InputCriblTCP": ".inputcribltcp",
|
|
7002
|
+
"InputCriblTCPAuthToken": ".inputcribltcp",
|
|
7003
|
+
"InputCriblTCPAuthTokenTypedDict": ".inputcribltcp",
|
|
6170
7004
|
"InputCriblTCPCompression": ".inputcribltcp",
|
|
6171
7005
|
"InputCriblTCPConnection": ".inputcribltcp",
|
|
6172
7006
|
"InputCriblTCPConnectionTypedDict": ".inputcribltcp",
|
|
@@ -6176,6 +7010,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6176
7010
|
"InputCriblTCPMinimumTLSVersion": ".inputcribltcp",
|
|
6177
7011
|
"InputCriblTCPMode": ".inputcribltcp",
|
|
6178
7012
|
"InputCriblTCPPq": ".inputcribltcp",
|
|
7013
|
+
"InputCriblTCPPqControls": ".inputcribltcp",
|
|
7014
|
+
"InputCriblTCPPqControlsTypedDict": ".inputcribltcp",
|
|
6179
7015
|
"InputCriblTCPPqTypedDict": ".inputcribltcp",
|
|
6180
7016
|
"InputCriblTCPTLSSettingsServerSide": ".inputcribltcp",
|
|
6181
7017
|
"InputCriblTCPTLSSettingsServerSideTypedDict": ".inputcribltcp",
|
|
@@ -6192,6 +7028,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6192
7028
|
"InputCrowdstrikeMetadatumTypedDict": ".inputcrowdstrike",
|
|
6193
7029
|
"InputCrowdstrikeMode": ".inputcrowdstrike",
|
|
6194
7030
|
"InputCrowdstrikePq": ".inputcrowdstrike",
|
|
7031
|
+
"InputCrowdstrikePqControls": ".inputcrowdstrike",
|
|
7032
|
+
"InputCrowdstrikePqControlsTypedDict": ".inputcrowdstrike",
|
|
6195
7033
|
"InputCrowdstrikePqTypedDict": ".inputcrowdstrike",
|
|
6196
7034
|
"InputCrowdstrikePreprocess": ".inputcrowdstrike",
|
|
6197
7035
|
"InputCrowdstrikePreprocessTypedDict": ".inputcrowdstrike",
|
|
@@ -6209,6 +7047,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6209
7047
|
"InputDatadogAgentMinimumTLSVersion": ".inputdatadogagent",
|
|
6210
7048
|
"InputDatadogAgentMode": ".inputdatadogagent",
|
|
6211
7049
|
"InputDatadogAgentPq": ".inputdatadogagent",
|
|
7050
|
+
"InputDatadogAgentPqControls": ".inputdatadogagent",
|
|
7051
|
+
"InputDatadogAgentPqControlsTypedDict": ".inputdatadogagent",
|
|
6212
7052
|
"InputDatadogAgentPqTypedDict": ".inputdatadogagent",
|
|
6213
7053
|
"InputDatadogAgentProxyMode": ".inputdatadogagent",
|
|
6214
7054
|
"InputDatadogAgentProxyModeTypedDict": ".inputdatadogagent",
|
|
@@ -6224,6 +7064,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6224
7064
|
"InputDatagenMetadatumTypedDict": ".inputdatagen",
|
|
6225
7065
|
"InputDatagenMode": ".inputdatagen",
|
|
6226
7066
|
"InputDatagenPq": ".inputdatagen",
|
|
7067
|
+
"InputDatagenPqControls": ".inputdatagen",
|
|
7068
|
+
"InputDatagenPqControlsTypedDict": ".inputdatagen",
|
|
6227
7069
|
"InputDatagenPqTypedDict": ".inputdatagen",
|
|
6228
7070
|
"InputDatagenType": ".inputdatagen",
|
|
6229
7071
|
"InputDatagenTypedDict": ".inputdatagen",
|
|
@@ -6243,6 +7085,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6243
7085
|
"InputEdgePrometheusPersistenceCompression": ".inputedgeprometheus",
|
|
6244
7086
|
"InputEdgePrometheusPq": ".inputedgeprometheus",
|
|
6245
7087
|
"InputEdgePrometheusPqCompression": ".inputedgeprometheus",
|
|
7088
|
+
"InputEdgePrometheusPqControls": ".inputedgeprometheus",
|
|
7089
|
+
"InputEdgePrometheusPqControlsTypedDict": ".inputedgeprometheus",
|
|
6246
7090
|
"InputEdgePrometheusPqTypedDict": ".inputedgeprometheus",
|
|
6247
7091
|
"InputEdgePrometheusRecordType": ".inputedgeprometheus",
|
|
6248
7092
|
"InputEdgePrometheusSearchFilter": ".inputedgeprometheus",
|
|
@@ -6271,6 +7115,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6271
7115
|
"InputElasticMinimumTLSVersion": ".inputelastic",
|
|
6272
7116
|
"InputElasticMode": ".inputelastic",
|
|
6273
7117
|
"InputElasticPq": ".inputelastic",
|
|
7118
|
+
"InputElasticPqControls": ".inputelastic",
|
|
7119
|
+
"InputElasticPqControlsTypedDict": ".inputelastic",
|
|
6274
7120
|
"InputElasticPqTypedDict": ".inputelastic",
|
|
6275
7121
|
"InputElasticProxyMode": ".inputelastic",
|
|
6276
7122
|
"InputElasticProxyModeTypedDict": ".inputelastic",
|
|
@@ -6279,15 +7125,20 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6279
7125
|
"InputElasticType": ".inputelastic",
|
|
6280
7126
|
"InputElasticTypedDict": ".inputelastic",
|
|
6281
7127
|
"InputEventhub": ".inputeventhub",
|
|
7128
|
+
"InputEventhubAuthTypeAuthenticationMethod": ".inputeventhub",
|
|
6282
7129
|
"InputEventhubAuthentication": ".inputeventhub",
|
|
6283
7130
|
"InputEventhubAuthenticationTypedDict": ".inputeventhub",
|
|
7131
|
+
"InputEventhubClientSecretAuthTypeAuthenticationMethod": ".inputeventhub",
|
|
6284
7132
|
"InputEventhubCompression": ".inputeventhub",
|
|
6285
7133
|
"InputEventhubConnection": ".inputeventhub",
|
|
6286
7134
|
"InputEventhubConnectionTypedDict": ".inputeventhub",
|
|
6287
7135
|
"InputEventhubMetadatum": ".inputeventhub",
|
|
6288
7136
|
"InputEventhubMetadatumTypedDict": ".inputeventhub",
|
|
7137
|
+
"InputEventhubMicrosoftEntraIDAuthenticationEndpoint": ".inputeventhub",
|
|
6289
7138
|
"InputEventhubMode": ".inputeventhub",
|
|
6290
7139
|
"InputEventhubPq": ".inputeventhub",
|
|
7140
|
+
"InputEventhubPqControls": ".inputeventhub",
|
|
7141
|
+
"InputEventhubPqControlsTypedDict": ".inputeventhub",
|
|
6291
7142
|
"InputEventhubPqTypedDict": ".inputeventhub",
|
|
6292
7143
|
"InputEventhubSASLMechanism": ".inputeventhub",
|
|
6293
7144
|
"InputEventhubTLSSettingsClientSide": ".inputeventhub",
|
|
@@ -6302,6 +7153,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6302
7153
|
"InputExecMetadatumTypedDict": ".inputexec",
|
|
6303
7154
|
"InputExecMode": ".inputexec",
|
|
6304
7155
|
"InputExecPq": ".inputexec",
|
|
7156
|
+
"InputExecPqControls": ".inputexec",
|
|
7157
|
+
"InputExecPqControlsTypedDict": ".inputexec",
|
|
6305
7158
|
"InputExecPqTypedDict": ".inputexec",
|
|
6306
7159
|
"InputExecType": ".inputexec",
|
|
6307
7160
|
"InputExecTypedDict": ".inputexec",
|
|
@@ -6314,6 +7167,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6314
7167
|
"InputFileMetadatumTypedDict": ".inputfile",
|
|
6315
7168
|
"InputFileMode": ".inputfile",
|
|
6316
7169
|
"InputFilePq": ".inputfile",
|
|
7170
|
+
"InputFilePqControls": ".inputfile",
|
|
7171
|
+
"InputFilePqControlsTypedDict": ".inputfile",
|
|
6317
7172
|
"InputFilePqMode": ".inputfile",
|
|
6318
7173
|
"InputFilePqTypedDict": ".inputfile",
|
|
6319
7174
|
"InputFileType": ".inputfile",
|
|
@@ -6328,6 +7183,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6328
7183
|
"InputFirehoseMinimumTLSVersion": ".inputfirehose",
|
|
6329
7184
|
"InputFirehoseMode": ".inputfirehose",
|
|
6330
7185
|
"InputFirehosePq": ".inputfirehose",
|
|
7186
|
+
"InputFirehosePqControls": ".inputfirehose",
|
|
7187
|
+
"InputFirehosePqControlsTypedDict": ".inputfirehose",
|
|
6331
7188
|
"InputFirehosePqTypedDict": ".inputfirehose",
|
|
6332
7189
|
"InputFirehoseTLSSettingsServerSide": ".inputfirehose",
|
|
6333
7190
|
"InputFirehoseTLSSettingsServerSideTypedDict": ".inputfirehose",
|
|
@@ -6342,6 +7199,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6342
7199
|
"InputGooglePubsubMetadatumTypedDict": ".inputgooglepubsub",
|
|
6343
7200
|
"InputGooglePubsubMode": ".inputgooglepubsub",
|
|
6344
7201
|
"InputGooglePubsubPq": ".inputgooglepubsub",
|
|
7202
|
+
"InputGooglePubsubPqControls": ".inputgooglepubsub",
|
|
7203
|
+
"InputGooglePubsubPqControlsTypedDict": ".inputgooglepubsub",
|
|
6345
7204
|
"InputGooglePubsubPqTypedDict": ".inputgooglepubsub",
|
|
6346
7205
|
"InputGooglePubsubType": ".inputgooglepubsub",
|
|
6347
7206
|
"InputGooglePubsubTypedDict": ".inputgooglepubsub",
|
|
@@ -6376,6 +7235,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6376
7235
|
"InputGrafanaPq1TypedDict": ".inputgrafana",
|
|
6377
7236
|
"InputGrafanaPq2": ".inputgrafana",
|
|
6378
7237
|
"InputGrafanaPq2TypedDict": ".inputgrafana",
|
|
7238
|
+
"InputGrafanaPqControls1": ".inputgrafana",
|
|
7239
|
+
"InputGrafanaPqControls1TypedDict": ".inputgrafana",
|
|
7240
|
+
"InputGrafanaPqControls2": ".inputgrafana",
|
|
7241
|
+
"InputGrafanaPqControls2TypedDict": ".inputgrafana",
|
|
6379
7242
|
"InputGrafanaPrometheusAuth1": ".inputgrafana",
|
|
6380
7243
|
"InputGrafanaPrometheusAuth1TypedDict": ".inputgrafana",
|
|
6381
7244
|
"InputGrafanaPrometheusAuth2": ".inputgrafana",
|
|
@@ -6419,6 +7282,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6419
7282
|
"InputHTTPMinimumTLSVersion": ".inputhttp",
|
|
6420
7283
|
"InputHTTPMode": ".inputhttp",
|
|
6421
7284
|
"InputHTTPPq": ".inputhttp",
|
|
7285
|
+
"InputHTTPPqControls": ".inputhttp",
|
|
7286
|
+
"InputHTTPPqControlsTypedDict": ".inputhttp",
|
|
6422
7287
|
"InputHTTPPqTypedDict": ".inputhttp",
|
|
6423
7288
|
"InputHTTPTLSSettingsServerSide": ".inputhttp",
|
|
6424
7289
|
"InputHTTPTLSSettingsServerSideTypedDict": ".inputhttp",
|
|
@@ -6438,6 +7303,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6438
7303
|
"InputHTTPRawMinimumTLSVersion": ".inputhttpraw",
|
|
6439
7304
|
"InputHTTPRawMode": ".inputhttpraw",
|
|
6440
7305
|
"InputHTTPRawPq": ".inputhttpraw",
|
|
7306
|
+
"InputHTTPRawPqControls": ".inputhttpraw",
|
|
7307
|
+
"InputHTTPRawPqControlsTypedDict": ".inputhttpraw",
|
|
6441
7308
|
"InputHTTPRawPqTypedDict": ".inputhttpraw",
|
|
6442
7309
|
"InputHTTPRawTLSSettingsServerSide": ".inputhttpraw",
|
|
6443
7310
|
"InputHTTPRawTLSSettingsServerSideTypedDict": ".inputhttpraw",
|
|
@@ -6451,6 +7318,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6451
7318
|
"InputJournalFilesMetadatumTypedDict": ".inputjournalfiles",
|
|
6452
7319
|
"InputJournalFilesMode": ".inputjournalfiles",
|
|
6453
7320
|
"InputJournalFilesPq": ".inputjournalfiles",
|
|
7321
|
+
"InputJournalFilesPqControls": ".inputjournalfiles",
|
|
7322
|
+
"InputJournalFilesPqControlsTypedDict": ".inputjournalfiles",
|
|
6454
7323
|
"InputJournalFilesPqTypedDict": ".inputjournalfiles",
|
|
6455
7324
|
"InputJournalFilesRule": ".inputjournalfiles",
|
|
6456
7325
|
"InputJournalFilesRuleTypedDict": ".inputjournalfiles",
|
|
@@ -6460,6 +7329,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6460
7329
|
"InputKafkaAuth": ".inputkafka",
|
|
6461
7330
|
"InputKafkaAuthTypedDict": ".inputkafka",
|
|
6462
7331
|
"InputKafkaAuthentication": ".inputkafka",
|
|
7332
|
+
"InputKafkaAuthenticationMethod": ".inputkafka",
|
|
6463
7333
|
"InputKafkaAuthenticationTypedDict": ".inputkafka",
|
|
6464
7334
|
"InputKafkaCompression": ".inputkafka",
|
|
6465
7335
|
"InputKafkaConnection": ".inputkafka",
|
|
@@ -6475,10 +7345,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6475
7345
|
"InputKafkaMetadatumTypedDict": ".inputkafka",
|
|
6476
7346
|
"InputKafkaMinimumTLSVersion": ".inputkafka",
|
|
6477
7347
|
"InputKafkaMode": ".inputkafka",
|
|
7348
|
+
"InputKafkaOauthParam": ".inputkafka",
|
|
7349
|
+
"InputKafkaOauthParamTypedDict": ".inputkafka",
|
|
6478
7350
|
"InputKafkaPq": ".inputkafka",
|
|
7351
|
+
"InputKafkaPqControls": ".inputkafka",
|
|
7352
|
+
"InputKafkaPqControlsTypedDict": ".inputkafka",
|
|
6479
7353
|
"InputKafkaPqTypedDict": ".inputkafka",
|
|
6480
7354
|
"InputKafkaSASLMechanism": ".inputkafka",
|
|
6481
|
-
"
|
|
7355
|
+
"InputKafkaSaslExtension": ".inputkafka",
|
|
7356
|
+
"InputKafkaSaslExtensionTypedDict": ".inputkafka",
|
|
6482
7357
|
"InputKafkaTLSSettingsClientSide": ".inputkafka",
|
|
6483
7358
|
"InputKafkaTLSSettingsClientSideTypedDict": ".inputkafka",
|
|
6484
7359
|
"InputKafkaType": ".inputkafka",
|
|
@@ -6492,6 +7367,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6492
7367
|
"InputKinesisMetadatumTypedDict": ".inputkinesis",
|
|
6493
7368
|
"InputKinesisMode": ".inputkinesis",
|
|
6494
7369
|
"InputKinesisPq": ".inputkinesis",
|
|
7370
|
+
"InputKinesisPqControls": ".inputkinesis",
|
|
7371
|
+
"InputKinesisPqControlsTypedDict": ".inputkinesis",
|
|
6495
7372
|
"InputKinesisPqTypedDict": ".inputkinesis",
|
|
6496
7373
|
"InputKinesisRecordDataFormat": ".inputkinesis",
|
|
6497
7374
|
"InputKinesisSignatureVersion": ".inputkinesis",
|
|
@@ -6507,6 +7384,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6507
7384
|
"InputKubeEventsMetadatumTypedDict": ".inputkubeevents",
|
|
6508
7385
|
"InputKubeEventsMode": ".inputkubeevents",
|
|
6509
7386
|
"InputKubeEventsPq": ".inputkubeevents",
|
|
7387
|
+
"InputKubeEventsPqControls": ".inputkubeevents",
|
|
7388
|
+
"InputKubeEventsPqControlsTypedDict": ".inputkubeevents",
|
|
6510
7389
|
"InputKubeEventsPqTypedDict": ".inputkubeevents",
|
|
6511
7390
|
"InputKubeEventsRule": ".inputkubeevents",
|
|
6512
7391
|
"InputKubeEventsRuleTypedDict": ".inputkubeevents",
|
|
@@ -6523,6 +7402,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6523
7402
|
"InputKubeLogsPersistenceCompression": ".inputkubelogs",
|
|
6524
7403
|
"InputKubeLogsPq": ".inputkubelogs",
|
|
6525
7404
|
"InputKubeLogsPqCompression": ".inputkubelogs",
|
|
7405
|
+
"InputKubeLogsPqControls": ".inputkubelogs",
|
|
7406
|
+
"InputKubeLogsPqControlsTypedDict": ".inputkubelogs",
|
|
6526
7407
|
"InputKubeLogsPqTypedDict": ".inputkubelogs",
|
|
6527
7408
|
"InputKubeLogsRule": ".inputkubelogs",
|
|
6528
7409
|
"InputKubeLogsRuleTypedDict": ".inputkubelogs",
|
|
@@ -6539,6 +7420,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6539
7420
|
"InputKubeMetricsPersistence": ".inputkubemetrics",
|
|
6540
7421
|
"InputKubeMetricsPersistenceTypedDict": ".inputkubemetrics",
|
|
6541
7422
|
"InputKubeMetricsPq": ".inputkubemetrics",
|
|
7423
|
+
"InputKubeMetricsPqControls": ".inputkubemetrics",
|
|
7424
|
+
"InputKubeMetricsPqControlsTypedDict": ".inputkubemetrics",
|
|
6542
7425
|
"InputKubeMetricsPqTypedDict": ".inputkubemetrics",
|
|
6543
7426
|
"InputKubeMetricsRule": ".inputkubemetrics",
|
|
6544
7427
|
"InputKubeMetricsRuleTypedDict": ".inputkubemetrics",
|
|
@@ -6559,6 +7442,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6559
7442
|
"InputLokiOauthParam": ".inputloki",
|
|
6560
7443
|
"InputLokiOauthParamTypedDict": ".inputloki",
|
|
6561
7444
|
"InputLokiPq": ".inputloki",
|
|
7445
|
+
"InputLokiPqControls": ".inputloki",
|
|
7446
|
+
"InputLokiPqControlsTypedDict": ".inputloki",
|
|
6562
7447
|
"InputLokiPqTypedDict": ".inputloki",
|
|
6563
7448
|
"InputLokiTLSSettingsServerSide": ".inputloki",
|
|
6564
7449
|
"InputLokiTLSSettingsServerSideTypedDict": ".inputloki",
|
|
@@ -6574,6 +7459,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6574
7459
|
"InputMetricsMinimumTLSVersion": ".inputmetrics",
|
|
6575
7460
|
"InputMetricsMode": ".inputmetrics",
|
|
6576
7461
|
"InputMetricsPq": ".inputmetrics",
|
|
7462
|
+
"InputMetricsPqControls": ".inputmetrics",
|
|
7463
|
+
"InputMetricsPqControlsTypedDict": ".inputmetrics",
|
|
6577
7464
|
"InputMetricsPqTypedDict": ".inputmetrics",
|
|
6578
7465
|
"InputMetricsTLSSettingsServerSide": ".inputmetrics",
|
|
6579
7466
|
"InputMetricsTLSSettingsServerSideTypedDict": ".inputmetrics",
|
|
@@ -6589,6 +7476,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6589
7476
|
"InputModelDrivenTelemetryMinimumTLSVersion": ".inputmodeldriventelemetry",
|
|
6590
7477
|
"InputModelDrivenTelemetryMode": ".inputmodeldriventelemetry",
|
|
6591
7478
|
"InputModelDrivenTelemetryPq": ".inputmodeldriventelemetry",
|
|
7479
|
+
"InputModelDrivenTelemetryPqControls": ".inputmodeldriventelemetry",
|
|
7480
|
+
"InputModelDrivenTelemetryPqControlsTypedDict": ".inputmodeldriventelemetry",
|
|
6592
7481
|
"InputModelDrivenTelemetryPqTypedDict": ".inputmodeldriventelemetry",
|
|
6593
7482
|
"InputModelDrivenTelemetryTLSSettingsServerSide": ".inputmodeldriventelemetry",
|
|
6594
7483
|
"InputModelDrivenTelemetryTLSSettingsServerSideTypedDict": ".inputmodeldriventelemetry",
|
|
@@ -6613,8 +7502,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6613
7502
|
"InputMskMinimumTLSVersion": ".inputmsk",
|
|
6614
7503
|
"InputMskMode": ".inputmsk",
|
|
6615
7504
|
"InputMskPq": ".inputmsk",
|
|
7505
|
+
"InputMskPqControls": ".inputmsk",
|
|
7506
|
+
"InputMskPqControlsTypedDict": ".inputmsk",
|
|
6616
7507
|
"InputMskPqTypedDict": ".inputmsk",
|
|
6617
|
-
"InputMskSchemaType": ".inputmsk",
|
|
6618
7508
|
"InputMskSignatureVersion": ".inputmsk",
|
|
6619
7509
|
"InputMskTLSSettingsClientSide": ".inputmsk",
|
|
6620
7510
|
"InputMskTLSSettingsClientSideTypedDict": ".inputmsk",
|
|
@@ -6628,6 +7518,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6628
7518
|
"InputNetflowMetadatumTypedDict": ".inputnetflow",
|
|
6629
7519
|
"InputNetflowMode": ".inputnetflow",
|
|
6630
7520
|
"InputNetflowPq": ".inputnetflow",
|
|
7521
|
+
"InputNetflowPqControls": ".inputnetflow",
|
|
7522
|
+
"InputNetflowPqControlsTypedDict": ".inputnetflow",
|
|
6631
7523
|
"InputNetflowPqTypedDict": ".inputnetflow",
|
|
6632
7524
|
"InputNetflowType": ".inputnetflow",
|
|
6633
7525
|
"InputNetflowTypedDict": ".inputnetflow",
|
|
@@ -6643,6 +7535,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6643
7535
|
"InputOffice365MgmtMetadatumTypedDict": ".inputoffice365mgmt",
|
|
6644
7536
|
"InputOffice365MgmtMode": ".inputoffice365mgmt",
|
|
6645
7537
|
"InputOffice365MgmtPq": ".inputoffice365mgmt",
|
|
7538
|
+
"InputOffice365MgmtPqControls": ".inputoffice365mgmt",
|
|
7539
|
+
"InputOffice365MgmtPqControlsTypedDict": ".inputoffice365mgmt",
|
|
6646
7540
|
"InputOffice365MgmtPqTypedDict": ".inputoffice365mgmt",
|
|
6647
7541
|
"InputOffice365MgmtRetryRules": ".inputoffice365mgmt",
|
|
6648
7542
|
"InputOffice365MgmtRetryRulesTypedDict": ".inputoffice365mgmt",
|
|
@@ -6662,6 +7556,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6662
7556
|
"InputOffice365MsgTraceMetadatumTypedDict": ".inputoffice365msgtrace",
|
|
6663
7557
|
"InputOffice365MsgTraceMode": ".inputoffice365msgtrace",
|
|
6664
7558
|
"InputOffice365MsgTracePq": ".inputoffice365msgtrace",
|
|
7559
|
+
"InputOffice365MsgTracePqControls": ".inputoffice365msgtrace",
|
|
7560
|
+
"InputOffice365MsgTracePqControlsTypedDict": ".inputoffice365msgtrace",
|
|
6665
7561
|
"InputOffice365MsgTracePqTypedDict": ".inputoffice365msgtrace",
|
|
6666
7562
|
"InputOffice365MsgTraceRetryRules": ".inputoffice365msgtrace",
|
|
6667
7563
|
"InputOffice365MsgTraceRetryRulesTypedDict": ".inputoffice365msgtrace",
|
|
@@ -6681,6 +7577,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6681
7577
|
"InputOffice365ServiceMetadatumTypedDict": ".inputoffice365service",
|
|
6682
7578
|
"InputOffice365ServiceMode": ".inputoffice365service",
|
|
6683
7579
|
"InputOffice365ServicePq": ".inputoffice365service",
|
|
7580
|
+
"InputOffice365ServicePqControls": ".inputoffice365service",
|
|
7581
|
+
"InputOffice365ServicePqControlsTypedDict": ".inputoffice365service",
|
|
6684
7582
|
"InputOffice365ServicePqTypedDict": ".inputoffice365service",
|
|
6685
7583
|
"InputOffice365ServiceRetryRules": ".inputoffice365service",
|
|
6686
7584
|
"InputOffice365ServiceRetryRulesTypedDict": ".inputoffice365service",
|
|
@@ -6704,6 +7602,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6704
7602
|
"InputOpenTelemetryOauthParam": ".inputopentelemetry",
|
|
6705
7603
|
"InputOpenTelemetryOauthParamTypedDict": ".inputopentelemetry",
|
|
6706
7604
|
"InputOpenTelemetryPq": ".inputopentelemetry",
|
|
7605
|
+
"InputOpenTelemetryPqControls": ".inputopentelemetry",
|
|
7606
|
+
"InputOpenTelemetryPqControlsTypedDict": ".inputopentelemetry",
|
|
6707
7607
|
"InputOpenTelemetryPqTypedDict": ".inputopentelemetry",
|
|
6708
7608
|
"InputOpenTelemetryProtocol": ".inputopentelemetry",
|
|
6709
7609
|
"InputOpenTelemetryTLSSettingsServerSide": ".inputopentelemetry",
|
|
@@ -6722,6 +7622,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6722
7622
|
"InputPrometheusMetadatumTypedDict": ".inputprometheus",
|
|
6723
7623
|
"InputPrometheusMode": ".inputprometheus",
|
|
6724
7624
|
"InputPrometheusPq": ".inputprometheus",
|
|
7625
|
+
"InputPrometheusPqControls": ".inputprometheus",
|
|
7626
|
+
"InputPrometheusPqControlsTypedDict": ".inputprometheus",
|
|
6725
7627
|
"InputPrometheusPqTypedDict": ".inputprometheus",
|
|
6726
7628
|
"InputPrometheusRecordType": ".inputprometheus",
|
|
6727
7629
|
"InputPrometheusSearchFilter": ".inputprometheus",
|
|
@@ -6745,6 +7647,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6745
7647
|
"InputPrometheusRwOauthParam": ".inputprometheusrw",
|
|
6746
7648
|
"InputPrometheusRwOauthParamTypedDict": ".inputprometheusrw",
|
|
6747
7649
|
"InputPrometheusRwPq": ".inputprometheusrw",
|
|
7650
|
+
"InputPrometheusRwPqControls": ".inputprometheusrw",
|
|
7651
|
+
"InputPrometheusRwPqControlsTypedDict": ".inputprometheusrw",
|
|
6748
7652
|
"InputPrometheusRwPqTypedDict": ".inputprometheusrw",
|
|
6749
7653
|
"InputPrometheusRwTLSSettingsServerSide": ".inputprometheusrw",
|
|
6750
7654
|
"InputPrometheusRwTLSSettingsServerSideTypedDict": ".inputprometheusrw",
|
|
@@ -6758,6 +7662,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6758
7662
|
"InputRawUDPMetadatumTypedDict": ".inputrawudp",
|
|
6759
7663
|
"InputRawUDPMode": ".inputrawudp",
|
|
6760
7664
|
"InputRawUDPPq": ".inputrawudp",
|
|
7665
|
+
"InputRawUDPPqControls": ".inputrawudp",
|
|
7666
|
+
"InputRawUDPPqControlsTypedDict": ".inputrawudp",
|
|
6761
7667
|
"InputRawUDPPqTypedDict": ".inputrawudp",
|
|
6762
7668
|
"InputRawUDPType": ".inputrawudp",
|
|
6763
7669
|
"InputRawUDPTypedDict": ".inputrawudp",
|
|
@@ -6772,6 +7678,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6772
7678
|
"InputS3MetadatumTypedDict": ".inputs3",
|
|
6773
7679
|
"InputS3Mode": ".inputs3",
|
|
6774
7680
|
"InputS3Pq": ".inputs3",
|
|
7681
|
+
"InputS3PqControls": ".inputs3",
|
|
7682
|
+
"InputS3PqControlsTypedDict": ".inputs3",
|
|
6775
7683
|
"InputS3PqTypedDict": ".inputs3",
|
|
6776
7684
|
"InputS3Preprocess": ".inputs3",
|
|
6777
7685
|
"InputS3PreprocessTypedDict": ".inputs3",
|
|
@@ -6789,6 +7697,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6789
7697
|
"InputS3InventoryMetadatumTypedDict": ".inputs3inventory",
|
|
6790
7698
|
"InputS3InventoryMode": ".inputs3inventory",
|
|
6791
7699
|
"InputS3InventoryPq": ".inputs3inventory",
|
|
7700
|
+
"InputS3InventoryPqControls": ".inputs3inventory",
|
|
7701
|
+
"InputS3InventoryPqControlsTypedDict": ".inputs3inventory",
|
|
6792
7702
|
"InputS3InventoryPqTypedDict": ".inputs3inventory",
|
|
6793
7703
|
"InputS3InventoryPreprocess": ".inputs3inventory",
|
|
6794
7704
|
"InputS3InventoryPreprocessTypedDict": ".inputs3inventory",
|
|
@@ -6807,6 +7717,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6807
7717
|
"InputSecurityLakeMetadatumTypedDict": ".inputsecuritylake",
|
|
6808
7718
|
"InputSecurityLakeMode": ".inputsecuritylake",
|
|
6809
7719
|
"InputSecurityLakePq": ".inputsecuritylake",
|
|
7720
|
+
"InputSecurityLakePqControls": ".inputsecuritylake",
|
|
7721
|
+
"InputSecurityLakePqControlsTypedDict": ".inputsecuritylake",
|
|
6810
7722
|
"InputSecurityLakePqTypedDict": ".inputsecuritylake",
|
|
6811
7723
|
"InputSecurityLakePreprocess": ".inputsecuritylake",
|
|
6812
7724
|
"InputSecurityLakePreprocessTypedDict": ".inputsecuritylake",
|
|
@@ -6823,6 +7735,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6823
7735
|
"InputSnmpMetadatumTypedDict": ".inputsnmp",
|
|
6824
7736
|
"InputSnmpMode": ".inputsnmp",
|
|
6825
7737
|
"InputSnmpPq": ".inputsnmp",
|
|
7738
|
+
"InputSnmpPqControls": ".inputsnmp",
|
|
7739
|
+
"InputSnmpPqControlsTypedDict": ".inputsnmp",
|
|
6826
7740
|
"InputSnmpPqTypedDict": ".inputsnmp",
|
|
6827
7741
|
"InputSnmpType": ".inputsnmp",
|
|
6828
7742
|
"InputSnmpTypedDict": ".inputsnmp",
|
|
@@ -6844,6 +7758,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6844
7758
|
"InputSplunkMode": ".inputsplunk",
|
|
6845
7759
|
"InputSplunkPq": ".inputsplunk",
|
|
6846
7760
|
"InputSplunkPqCompression": ".inputsplunk",
|
|
7761
|
+
"InputSplunkPqControls": ".inputsplunk",
|
|
7762
|
+
"InputSplunkPqControlsTypedDict": ".inputsplunk",
|
|
6847
7763
|
"InputSplunkPqTypedDict": ".inputsplunk",
|
|
6848
7764
|
"InputSplunkTLSSettingsServerSide": ".inputsplunk",
|
|
6849
7765
|
"InputSplunkTLSSettingsServerSideTypedDict": ".inputsplunk",
|
|
@@ -6864,6 +7780,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6864
7780
|
"InputSplunkHecMinimumTLSVersion": ".inputsplunkhec",
|
|
6865
7781
|
"InputSplunkHecMode": ".inputsplunkhec",
|
|
6866
7782
|
"InputSplunkHecPq": ".inputsplunkhec",
|
|
7783
|
+
"InputSplunkHecPqControls": ".inputsplunkhec",
|
|
7784
|
+
"InputSplunkHecPqControlsTypedDict": ".inputsplunkhec",
|
|
6867
7785
|
"InputSplunkHecPqTypedDict": ".inputsplunkhec",
|
|
6868
7786
|
"InputSplunkHecTLSSettingsServerSide": ".inputsplunkhec",
|
|
6869
7787
|
"InputSplunkHecTLSSettingsServerSideTypedDict": ".inputsplunkhec",
|
|
@@ -6887,6 +7805,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6887
7805
|
"InputSplunkSearchOauthParam": ".inputsplunksearch",
|
|
6888
7806
|
"InputSplunkSearchOauthParamTypedDict": ".inputsplunksearch",
|
|
6889
7807
|
"InputSplunkSearchPq": ".inputsplunksearch",
|
|
7808
|
+
"InputSplunkSearchPqControls": ".inputsplunksearch",
|
|
7809
|
+
"InputSplunkSearchPqControlsTypedDict": ".inputsplunksearch",
|
|
6890
7810
|
"InputSplunkSearchPqTypedDict": ".inputsplunksearch",
|
|
6891
7811
|
"InputSplunkSearchRetryRules": ".inputsplunksearch",
|
|
6892
7812
|
"InputSplunkSearchRetryRulesTypedDict": ".inputsplunksearch",
|
|
@@ -6903,6 +7823,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6903
7823
|
"InputSqsMetadatumTypedDict": ".inputsqs",
|
|
6904
7824
|
"InputSqsMode": ".inputsqs",
|
|
6905
7825
|
"InputSqsPq": ".inputsqs",
|
|
7826
|
+
"InputSqsPqControls": ".inputsqs",
|
|
7827
|
+
"InputSqsPqControlsTypedDict": ".inputsqs",
|
|
6906
7828
|
"InputSqsPqTypedDict": ".inputsqs",
|
|
6907
7829
|
"InputSqsQueueType": ".inputsqs",
|
|
6908
7830
|
"InputSqsSignatureVersion": ".inputsqs",
|
|
@@ -6929,6 +7851,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6929
7851
|
"InputSyslogPq1TypedDict": ".inputsyslog",
|
|
6930
7852
|
"InputSyslogPq2": ".inputsyslog",
|
|
6931
7853
|
"InputSyslogPq2TypedDict": ".inputsyslog",
|
|
7854
|
+
"InputSyslogPqControls1": ".inputsyslog",
|
|
7855
|
+
"InputSyslogPqControls1TypedDict": ".inputsyslog",
|
|
7856
|
+
"InputSyslogPqControls2": ".inputsyslog",
|
|
7857
|
+
"InputSyslogPqControls2TypedDict": ".inputsyslog",
|
|
6932
7858
|
"InputSyslogSyslog1": ".inputsyslog",
|
|
6933
7859
|
"InputSyslogSyslog1TypedDict": ".inputsyslog",
|
|
6934
7860
|
"InputSyslogSyslog2": ".inputsyslog",
|
|
@@ -6972,6 +7898,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6972
7898
|
"InputSystemMetricsPersistence": ".inputsystemmetrics",
|
|
6973
7899
|
"InputSystemMetricsPersistenceTypedDict": ".inputsystemmetrics",
|
|
6974
7900
|
"InputSystemMetricsPq": ".inputsystemmetrics",
|
|
7901
|
+
"InputSystemMetricsPqControls": ".inputsystemmetrics",
|
|
7902
|
+
"InputSystemMetricsPqControlsTypedDict": ".inputsystemmetrics",
|
|
6975
7903
|
"InputSystemMetricsPqMode": ".inputsystemmetrics",
|
|
6976
7904
|
"InputSystemMetricsPqTypedDict": ".inputsystemmetrics",
|
|
6977
7905
|
"InputSystemMetricsProcess": ".inputsystemmetrics",
|
|
@@ -7006,6 +7934,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7006
7934
|
"InputSystemStatePersistence": ".inputsystemstate",
|
|
7007
7935
|
"InputSystemStatePersistenceTypedDict": ".inputsystemstate",
|
|
7008
7936
|
"InputSystemStatePq": ".inputsystemstate",
|
|
7937
|
+
"InputSystemStatePqControls": ".inputsystemstate",
|
|
7938
|
+
"InputSystemStatePqControlsTypedDict": ".inputsystemstate",
|
|
7009
7939
|
"InputSystemStatePqTypedDict": ".inputsystemstate",
|
|
7010
7940
|
"InputSystemStateRoutes": ".inputsystemstate",
|
|
7011
7941
|
"InputSystemStateRoutesTypedDict": ".inputsystemstate",
|
|
@@ -7032,6 +7962,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7032
7962
|
"InputTCPMinimumTLSVersion": ".inputtcp",
|
|
7033
7963
|
"InputTCPMode": ".inputtcp",
|
|
7034
7964
|
"InputTCPPq": ".inputtcp",
|
|
7965
|
+
"InputTCPPqControls": ".inputtcp",
|
|
7966
|
+
"InputTCPPqControlsTypedDict": ".inputtcp",
|
|
7035
7967
|
"InputTCPPqTypedDict": ".inputtcp",
|
|
7036
7968
|
"InputTCPPreprocess": ".inputtcp",
|
|
7037
7969
|
"InputTCPPreprocessTypedDict": ".inputtcp",
|
|
@@ -7050,6 +7982,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7050
7982
|
"InputTcpjsonMinimumTLSVersion": ".inputtcpjson",
|
|
7051
7983
|
"InputTcpjsonMode": ".inputtcpjson",
|
|
7052
7984
|
"InputTcpjsonPq": ".inputtcpjson",
|
|
7985
|
+
"InputTcpjsonPqControls": ".inputtcpjson",
|
|
7986
|
+
"InputTcpjsonPqControlsTypedDict": ".inputtcpjson",
|
|
7053
7987
|
"InputTcpjsonPqTypedDict": ".inputtcpjson",
|
|
7054
7988
|
"InputTcpjsonTLSSettingsServerSide": ".inputtcpjson",
|
|
7055
7989
|
"InputTcpjsonTLSSettingsServerSideTypedDict": ".inputtcpjson",
|
|
@@ -7067,6 +8001,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7067
8001
|
"InputWefMinimumTLSVersion": ".inputwef",
|
|
7068
8002
|
"InputWefMode": ".inputwef",
|
|
7069
8003
|
"InputWefPq": ".inputwef",
|
|
8004
|
+
"InputWefPqControls": ".inputwef",
|
|
8005
|
+
"InputWefPqControlsTypedDict": ".inputwef",
|
|
7070
8006
|
"InputWefPqTypedDict": ".inputwef",
|
|
7071
8007
|
"InputWefType": ".inputwef",
|
|
7072
8008
|
"InputWefTypedDict": ".inputwef",
|
|
@@ -7104,6 +8040,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7104
8040
|
"InputWindowsMetricsPersistence": ".inputwindowsmetrics",
|
|
7105
8041
|
"InputWindowsMetricsPersistenceTypedDict": ".inputwindowsmetrics",
|
|
7106
8042
|
"InputWindowsMetricsPq": ".inputwindowsmetrics",
|
|
8043
|
+
"InputWindowsMetricsPqControls": ".inputwindowsmetrics",
|
|
8044
|
+
"InputWindowsMetricsPqControlsTypedDict": ".inputwindowsmetrics",
|
|
7107
8045
|
"InputWindowsMetricsPqMode": ".inputwindowsmetrics",
|
|
7108
8046
|
"InputWindowsMetricsPqTypedDict": ".inputwindowsmetrics",
|
|
7109
8047
|
"InputWindowsMetricsProcess": ".inputwindowsmetrics",
|
|
@@ -7124,6 +8062,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7124
8062
|
"InputWinEventLogsMetadatumTypedDict": ".inputwineventlogs",
|
|
7125
8063
|
"InputWinEventLogsMode": ".inputwineventlogs",
|
|
7126
8064
|
"InputWinEventLogsPq": ".inputwineventlogs",
|
|
8065
|
+
"InputWinEventLogsPqControls": ".inputwineventlogs",
|
|
8066
|
+
"InputWinEventLogsPqControlsTypedDict": ".inputwineventlogs",
|
|
7127
8067
|
"InputWinEventLogsPqTypedDict": ".inputwineventlogs",
|
|
7128
8068
|
"InputWinEventLogsType": ".inputwineventlogs",
|
|
7129
8069
|
"InputWinEventLogsTypedDict": ".inputwineventlogs",
|
|
@@ -7139,6 +8079,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7139
8079
|
"InputWizMetadatumTypedDict": ".inputwiz",
|
|
7140
8080
|
"InputWizMode": ".inputwiz",
|
|
7141
8081
|
"InputWizPq": ".inputwiz",
|
|
8082
|
+
"InputWizPqControls": ".inputwiz",
|
|
8083
|
+
"InputWizPqControlsTypedDict": ".inputwiz",
|
|
7142
8084
|
"InputWizPqTypedDict": ".inputwiz",
|
|
7143
8085
|
"InputWizRetryRules": ".inputwiz",
|
|
7144
8086
|
"InputWizRetryRulesTypedDict": ".inputwiz",
|
|
@@ -7159,6 +8101,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7159
8101
|
"InputWizWebhookMinimumTLSVersion": ".inputwizwebhook",
|
|
7160
8102
|
"InputWizWebhookMode": ".inputwizwebhook",
|
|
7161
8103
|
"InputWizWebhookPq": ".inputwizwebhook",
|
|
8104
|
+
"InputWizWebhookPqControls": ".inputwizwebhook",
|
|
8105
|
+
"InputWizWebhookPqControlsTypedDict": ".inputwizwebhook",
|
|
7162
8106
|
"InputWizWebhookPqTypedDict": ".inputwizwebhook",
|
|
7163
8107
|
"InputWizWebhookTLSSettingsServerSide": ".inputwizwebhook",
|
|
7164
8108
|
"InputWizWebhookTLSSettingsServerSideTypedDict": ".inputwizwebhook",
|
|
@@ -7179,11 +8123,22 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7179
8123
|
"InputZscalerHecMinimumTLSVersion": ".inputzscalerhec",
|
|
7180
8124
|
"InputZscalerHecMode": ".inputzscalerhec",
|
|
7181
8125
|
"InputZscalerHecPq": ".inputzscalerhec",
|
|
8126
|
+
"InputZscalerHecPqControls": ".inputzscalerhec",
|
|
8127
|
+
"InputZscalerHecPqControlsTypedDict": ".inputzscalerhec",
|
|
7182
8128
|
"InputZscalerHecPqTypedDict": ".inputzscalerhec",
|
|
7183
8129
|
"InputZscalerHecTLSSettingsServerSide": ".inputzscalerhec",
|
|
7184
8130
|
"InputZscalerHecTLSSettingsServerSideTypedDict": ".inputzscalerhec",
|
|
7185
8131
|
"InputZscalerHecType": ".inputzscalerhec",
|
|
7186
8132
|
"InputZscalerHecTypedDict": ".inputzscalerhec",
|
|
8133
|
+
"JobInfo": ".jobinfo",
|
|
8134
|
+
"JobInfoTypedDict": ".jobinfo",
|
|
8135
|
+
"Stats": ".jobinfo",
|
|
8136
|
+
"StatsTypedDict": ".jobinfo",
|
|
8137
|
+
"JobStatus": ".jobstatus",
|
|
8138
|
+
"JobStatusTypedDict": ".jobstatus",
|
|
8139
|
+
"State": ".jobstatus",
|
|
8140
|
+
"LakeDatasetMetrics": ".lakedatasetmetrics",
|
|
8141
|
+
"LakeDatasetMetricsTypedDict": ".lakedatasetmetrics",
|
|
7187
8142
|
"LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
|
|
7188
8143
|
"LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
|
|
7189
8144
|
"LakehouseConnectionType": ".lakehouseconnectiontype",
|
|
@@ -7238,6 +8193,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7238
8193
|
"NodeUpgradeState": ".nodeupgradestate",
|
|
7239
8194
|
"NodeUpgradeStatus": ".nodeupgradestatus",
|
|
7240
8195
|
"NodeUpgradeStatusTypedDict": ".nodeupgradestatus",
|
|
8196
|
+
"OutpostNodeInfo": ".outpostnodeinfo",
|
|
8197
|
+
"OutpostNodeInfoTypedDict": ".outpostnodeinfo",
|
|
7241
8198
|
"Output": ".output",
|
|
7242
8199
|
"OutputTypedDict": ".output",
|
|
7243
8200
|
"BlobAccessTier": ".outputazureblob",
|
|
@@ -7263,16 +8220,21 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7263
8220
|
"IngestIfNotExist": ".outputazuredataexplorer",
|
|
7264
8221
|
"IngestIfNotExistTypedDict": ".outputazuredataexplorer",
|
|
7265
8222
|
"IngestionMode": ".outputazuredataexplorer",
|
|
7266
|
-
"MicrosoftEntraIDAuthenticationEndpoint": ".outputazuredataexplorer",
|
|
7267
8223
|
"OutputAzureDataExplorer": ".outputazuredataexplorer",
|
|
7268
8224
|
"OutputAzureDataExplorerAuthenticationMethod": ".outputazuredataexplorer",
|
|
7269
8225
|
"OutputAzureDataExplorerBackpressureBehavior": ".outputazuredataexplorer",
|
|
7270
8226
|
"OutputAzureDataExplorerCertificate": ".outputazuredataexplorer",
|
|
7271
8227
|
"OutputAzureDataExplorerCertificateTypedDict": ".outputazuredataexplorer",
|
|
7272
8228
|
"OutputAzureDataExplorerCompressCompression": ".outputazuredataexplorer",
|
|
8229
|
+
"OutputAzureDataExplorerCompressionLevel": ".outputazuredataexplorer",
|
|
7273
8230
|
"OutputAzureDataExplorerDataFormat": ".outputazuredataexplorer",
|
|
8231
|
+
"OutputAzureDataExplorerDataPageVersion": ".outputazuredataexplorer",
|
|
7274
8232
|
"OutputAzureDataExplorerDiskSpaceProtection": ".outputazuredataexplorer",
|
|
8233
|
+
"OutputAzureDataExplorerKeyValueMetadatum": ".outputazuredataexplorer",
|
|
8234
|
+
"OutputAzureDataExplorerKeyValueMetadatumTypedDict": ".outputazuredataexplorer",
|
|
8235
|
+
"OutputAzureDataExplorerMicrosoftEntraIDAuthenticationEndpoint": ".outputazuredataexplorer",
|
|
7275
8236
|
"OutputAzureDataExplorerMode": ".outputazuredataexplorer",
|
|
8237
|
+
"OutputAzureDataExplorerParquetVersion": ".outputazuredataexplorer",
|
|
7276
8238
|
"OutputAzureDataExplorerPqCompressCompression": ".outputazuredataexplorer",
|
|
7277
8239
|
"OutputAzureDataExplorerPqControls": ".outputazuredataexplorer",
|
|
7278
8240
|
"OutputAzureDataExplorerPqControlsTypedDict": ".outputazuredataexplorer",
|
|
@@ -7288,10 +8250,13 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7288
8250
|
"ReportMethod": ".outputazuredataexplorer",
|
|
7289
8251
|
"OutputAzureEventhub": ".outputazureeventhub",
|
|
7290
8252
|
"OutputAzureEventhubAcknowledgments": ".outputazureeventhub",
|
|
8253
|
+
"OutputAzureEventhubAuthTypeAuthenticationMethod": ".outputazureeventhub",
|
|
7291
8254
|
"OutputAzureEventhubAuthentication": ".outputazureeventhub",
|
|
7292
8255
|
"OutputAzureEventhubAuthenticationTypedDict": ".outputazureeventhub",
|
|
7293
8256
|
"OutputAzureEventhubBackpressureBehavior": ".outputazureeventhub",
|
|
8257
|
+
"OutputAzureEventhubClientSecretAuthTypeAuthenticationMethod": ".outputazureeventhub",
|
|
7294
8258
|
"OutputAzureEventhubCompression": ".outputazureeventhub",
|
|
8259
|
+
"OutputAzureEventhubMicrosoftEntraIDAuthenticationEndpoint": ".outputazureeventhub",
|
|
7295
8260
|
"OutputAzureEventhubMode": ".outputazureeventhub",
|
|
7296
8261
|
"OutputAzureEventhubPqControls": ".outputazureeventhub",
|
|
7297
8262
|
"OutputAzureEventhubPqControlsTypedDict": ".outputazureeventhub",
|
|
@@ -7319,6 +8284,25 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7319
8284
|
"OutputAzureLogsTimeoutRetrySettingsTypedDict": ".outputazurelogs",
|
|
7320
8285
|
"OutputAzureLogsType": ".outputazurelogs",
|
|
7321
8286
|
"OutputAzureLogsTypedDict": ".outputazurelogs",
|
|
8287
|
+
"OutputChronicle": ".outputchronicle",
|
|
8288
|
+
"OutputChronicleAuthenticationMethod": ".outputchronicle",
|
|
8289
|
+
"OutputChronicleBackpressureBehavior": ".outputchronicle",
|
|
8290
|
+
"OutputChronicleCompression": ".outputchronicle",
|
|
8291
|
+
"OutputChronicleCustomLabel": ".outputchronicle",
|
|
8292
|
+
"OutputChronicleCustomLabelTypedDict": ".outputchronicle",
|
|
8293
|
+
"OutputChronicleExtraHTTPHeader": ".outputchronicle",
|
|
8294
|
+
"OutputChronicleExtraHTTPHeaderTypedDict": ".outputchronicle",
|
|
8295
|
+
"OutputChronicleFailedRequestLoggingMode": ".outputchronicle",
|
|
8296
|
+
"OutputChronicleMode": ".outputchronicle",
|
|
8297
|
+
"OutputChroniclePqControls": ".outputchronicle",
|
|
8298
|
+
"OutputChroniclePqControlsTypedDict": ".outputchronicle",
|
|
8299
|
+
"OutputChronicleQueueFullBehavior": ".outputchronicle",
|
|
8300
|
+
"OutputChronicleResponseRetrySetting": ".outputchronicle",
|
|
8301
|
+
"OutputChronicleResponseRetrySettingTypedDict": ".outputchronicle",
|
|
8302
|
+
"OutputChronicleTimeoutRetrySettings": ".outputchronicle",
|
|
8303
|
+
"OutputChronicleTimeoutRetrySettingsTypedDict": ".outputchronicle",
|
|
8304
|
+
"OutputChronicleType": ".outputchronicle",
|
|
8305
|
+
"OutputChronicleTypedDict": ".outputchronicle",
|
|
7322
8306
|
"ColumnMapping": ".outputclickhouse",
|
|
7323
8307
|
"ColumnMappingTypedDict": ".outputclickhouse",
|
|
7324
8308
|
"MappingType": ".outputclickhouse",
|
|
@@ -7348,6 +8332,22 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7348
8332
|
"OutputClickHouseTimeoutRetrySettingsTypedDict": ".outputclickhouse",
|
|
7349
8333
|
"OutputClickHouseType": ".outputclickhouse",
|
|
7350
8334
|
"OutputClickHouseTypedDict": ".outputclickhouse",
|
|
8335
|
+
"OutputCloudflareR2": ".outputcloudflarer2",
|
|
8336
|
+
"OutputCloudflareR2AuthenticationMethod": ".outputcloudflarer2",
|
|
8337
|
+
"OutputCloudflareR2BackpressureBehavior": ".outputcloudflarer2",
|
|
8338
|
+
"OutputCloudflareR2Compression": ".outputcloudflarer2",
|
|
8339
|
+
"OutputCloudflareR2CompressionLevel": ".outputcloudflarer2",
|
|
8340
|
+
"OutputCloudflareR2DataFormat": ".outputcloudflarer2",
|
|
8341
|
+
"OutputCloudflareR2DataPageVersion": ".outputcloudflarer2",
|
|
8342
|
+
"OutputCloudflareR2DiskSpaceProtection": ".outputcloudflarer2",
|
|
8343
|
+
"OutputCloudflareR2KeyValueMetadatum": ".outputcloudflarer2",
|
|
8344
|
+
"OutputCloudflareR2KeyValueMetadatumTypedDict": ".outputcloudflarer2",
|
|
8345
|
+
"OutputCloudflareR2ParquetVersion": ".outputcloudflarer2",
|
|
8346
|
+
"OutputCloudflareR2ServerSideEncryption": ".outputcloudflarer2",
|
|
8347
|
+
"OutputCloudflareR2SignatureVersion": ".outputcloudflarer2",
|
|
8348
|
+
"OutputCloudflareR2StorageClass": ".outputcloudflarer2",
|
|
8349
|
+
"OutputCloudflareR2Type": ".outputcloudflarer2",
|
|
8350
|
+
"OutputCloudflareR2TypedDict": ".outputcloudflarer2",
|
|
7351
8351
|
"OutputCloudwatch": ".outputcloudwatch",
|
|
7352
8352
|
"OutputCloudwatchAuthenticationMethod": ".outputcloudwatch",
|
|
7353
8353
|
"OutputCloudwatchBackpressureBehavior": ".outputcloudwatch",
|
|
@@ -7363,6 +8363,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7363
8363
|
"OutputConfluentCloudAuth": ".outputconfluentcloud",
|
|
7364
8364
|
"OutputConfluentCloudAuthTypedDict": ".outputconfluentcloud",
|
|
7365
8365
|
"OutputConfluentCloudAuthentication": ".outputconfluentcloud",
|
|
8366
|
+
"OutputConfluentCloudAuthenticationMethod": ".outputconfluentcloud",
|
|
7366
8367
|
"OutputConfluentCloudAuthenticationTypedDict": ".outputconfluentcloud",
|
|
7367
8368
|
"OutputConfluentCloudBackpressureBehavior": ".outputconfluentcloud",
|
|
7368
8369
|
"OutputConfluentCloudCompression": ".outputconfluentcloud",
|
|
@@ -7375,18 +8376,23 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7375
8376
|
"OutputConfluentCloudMaximumTLSVersion": ".outputconfluentcloud",
|
|
7376
8377
|
"OutputConfluentCloudMinimumTLSVersion": ".outputconfluentcloud",
|
|
7377
8378
|
"OutputConfluentCloudMode": ".outputconfluentcloud",
|
|
8379
|
+
"OutputConfluentCloudOauthParam": ".outputconfluentcloud",
|
|
8380
|
+
"OutputConfluentCloudOauthParamTypedDict": ".outputconfluentcloud",
|
|
7378
8381
|
"OutputConfluentCloudPqCompressCompression": ".outputconfluentcloud",
|
|
7379
8382
|
"OutputConfluentCloudPqControls": ".outputconfluentcloud",
|
|
7380
8383
|
"OutputConfluentCloudPqControlsTypedDict": ".outputconfluentcloud",
|
|
7381
8384
|
"OutputConfluentCloudQueueFullBehavior": ".outputconfluentcloud",
|
|
7382
8385
|
"OutputConfluentCloudRecordDataFormat": ".outputconfluentcloud",
|
|
7383
8386
|
"OutputConfluentCloudSASLMechanism": ".outputconfluentcloud",
|
|
7384
|
-
"
|
|
8387
|
+
"OutputConfluentCloudSaslExtension": ".outputconfluentcloud",
|
|
8388
|
+
"OutputConfluentCloudSaslExtensionTypedDict": ".outputconfluentcloud",
|
|
7385
8389
|
"OutputConfluentCloudTLSSettingsClientSide": ".outputconfluentcloud",
|
|
7386
8390
|
"OutputConfluentCloudTLSSettingsClientSideTypedDict": ".outputconfluentcloud",
|
|
7387
8391
|
"OutputConfluentCloudType": ".outputconfluentcloud",
|
|
7388
8392
|
"OutputConfluentCloudTypedDict": ".outputconfluentcloud",
|
|
7389
8393
|
"OutputCriblHTTP": ".outputcriblhttp",
|
|
8394
|
+
"OutputCriblHTTPAuthToken": ".outputcriblhttp",
|
|
8395
|
+
"OutputCriblHTTPAuthTokenTypedDict": ".outputcriblhttp",
|
|
7390
8396
|
"OutputCriblHTTPBackpressureBehavior": ".outputcriblhttp",
|
|
7391
8397
|
"OutputCriblHTTPCompression": ".outputcriblhttp",
|
|
7392
8398
|
"OutputCriblHTTPExtraHTTPHeader": ".outputcriblhttp",
|
|
@@ -7421,6 +8427,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7421
8427
|
"OutputCriblLakeType": ".outputcribllake",
|
|
7422
8428
|
"OutputCriblLakeTypedDict": ".outputcribllake",
|
|
7423
8429
|
"OutputCriblTCP": ".outputcribltcp",
|
|
8430
|
+
"OutputCriblTCPAuthToken": ".outputcribltcp",
|
|
8431
|
+
"OutputCriblTCPAuthTokenTypedDict": ".outputcribltcp",
|
|
7424
8432
|
"OutputCriblTCPBackpressureBehavior": ".outputcribltcp",
|
|
7425
8433
|
"OutputCriblTCPCompression": ".outputcribltcp",
|
|
7426
8434
|
"OutputCriblTCPHost": ".outputcribltcp",
|
|
@@ -7455,6 +8463,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7455
8463
|
"OutputCrowdstrikeNextGenSiemTimeoutRetrySettingsTypedDict": ".outputcrowdstrikenextgensiem",
|
|
7456
8464
|
"OutputCrowdstrikeNextGenSiemType": ".outputcrowdstrikenextgensiem",
|
|
7457
8465
|
"OutputCrowdstrikeNextGenSiemTypedDict": ".outputcrowdstrikenextgensiem",
|
|
8466
|
+
"OutputDatabricks": ".outputdatabricks",
|
|
8467
|
+
"OutputDatabricksBackpressureBehavior": ".outputdatabricks",
|
|
8468
|
+
"OutputDatabricksCompression": ".outputdatabricks",
|
|
8469
|
+
"OutputDatabricksCompressionLevel": ".outputdatabricks",
|
|
8470
|
+
"OutputDatabricksDataFormat": ".outputdatabricks",
|
|
8471
|
+
"OutputDatabricksDataPageVersion": ".outputdatabricks",
|
|
8472
|
+
"OutputDatabricksDiskSpaceProtection": ".outputdatabricks",
|
|
8473
|
+
"OutputDatabricksKeyValueMetadatum": ".outputdatabricks",
|
|
8474
|
+
"OutputDatabricksKeyValueMetadatumTypedDict": ".outputdatabricks",
|
|
8475
|
+
"OutputDatabricksParquetVersion": ".outputdatabricks",
|
|
8476
|
+
"OutputDatabricksType": ".outputdatabricks",
|
|
8477
|
+
"OutputDatabricksTypedDict": ".outputdatabricks",
|
|
7458
8478
|
"DatadogSite": ".outputdatadog",
|
|
7459
8479
|
"OutputDatadog": ".outputdatadog",
|
|
7460
8480
|
"OutputDatadogAuthenticationMethod": ".outputdatadog",
|
|
@@ -7631,8 +8651,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7631
8651
|
"OutputFilesystemParquetVersion": ".outputfilesystem",
|
|
7632
8652
|
"OutputFilesystemType": ".outputfilesystem",
|
|
7633
8653
|
"OutputFilesystemTypedDict": ".outputfilesystem",
|
|
7634
|
-
"CustomLabel": ".outputgooglechronicle",
|
|
7635
|
-
"CustomLabelTypedDict": ".outputgooglechronicle",
|
|
7636
8654
|
"ExtraLogType": ".outputgooglechronicle",
|
|
7637
8655
|
"ExtraLogTypeTypedDict": ".outputgooglechronicle",
|
|
7638
8656
|
"OutputGoogleChronicle": ".outputgooglechronicle",
|
|
@@ -7640,6 +8658,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7640
8658
|
"OutputGoogleChronicleAuthenticationMethod": ".outputgooglechronicle",
|
|
7641
8659
|
"OutputGoogleChronicleBackpressureBehavior": ".outputgooglechronicle",
|
|
7642
8660
|
"OutputGoogleChronicleCompression": ".outputgooglechronicle",
|
|
8661
|
+
"OutputGoogleChronicleCustomLabel": ".outputgooglechronicle",
|
|
8662
|
+
"OutputGoogleChronicleCustomLabelTypedDict": ".outputgooglechronicle",
|
|
7643
8663
|
"OutputGoogleChronicleExtraHTTPHeader": ".outputgooglechronicle",
|
|
7644
8664
|
"OutputGoogleChronicleExtraHTTPHeaderTypedDict": ".outputgooglechronicle",
|
|
7645
8665
|
"OutputGoogleChronicleFailedRequestLoggingMode": ".outputgooglechronicle",
|
|
@@ -7654,6 +8674,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7654
8674
|
"OutputGoogleChronicleType": ".outputgooglechronicle",
|
|
7655
8675
|
"OutputGoogleChronicleTypedDict": ".outputgooglechronicle",
|
|
7656
8676
|
"SendEventsAs": ".outputgooglechronicle",
|
|
8677
|
+
"UDMType": ".outputgooglechronicle",
|
|
7657
8678
|
"LogLabel": ".outputgooglecloudlogging",
|
|
7658
8679
|
"LogLabelTypedDict": ".outputgooglecloudlogging",
|
|
7659
8680
|
"LogLocationType": ".outputgooglecloudlogging",
|
|
@@ -7820,6 +8841,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7820
8841
|
"OutputKafkaAuth": ".outputkafka",
|
|
7821
8842
|
"OutputKafkaAuthTypedDict": ".outputkafka",
|
|
7822
8843
|
"OutputKafkaAuthentication": ".outputkafka",
|
|
8844
|
+
"OutputKafkaAuthenticationMethod": ".outputkafka",
|
|
7823
8845
|
"OutputKafkaAuthenticationTypedDict": ".outputkafka",
|
|
7824
8846
|
"OutputKafkaBackpressureBehavior": ".outputkafka",
|
|
7825
8847
|
"OutputKafkaCompression": ".outputkafka",
|
|
@@ -7832,13 +8854,16 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7832
8854
|
"OutputKafkaMaximumTLSVersion": ".outputkafka",
|
|
7833
8855
|
"OutputKafkaMinimumTLSVersion": ".outputkafka",
|
|
7834
8856
|
"OutputKafkaMode": ".outputkafka",
|
|
8857
|
+
"OutputKafkaOauthParam": ".outputkafka",
|
|
8858
|
+
"OutputKafkaOauthParamTypedDict": ".outputkafka",
|
|
7835
8859
|
"OutputKafkaPqCompressCompression": ".outputkafka",
|
|
7836
8860
|
"OutputKafkaPqControls": ".outputkafka",
|
|
7837
8861
|
"OutputKafkaPqControlsTypedDict": ".outputkafka",
|
|
7838
8862
|
"OutputKafkaQueueFullBehavior": ".outputkafka",
|
|
7839
8863
|
"OutputKafkaRecordDataFormat": ".outputkafka",
|
|
7840
8864
|
"OutputKafkaSASLMechanism": ".outputkafka",
|
|
7841
|
-
"
|
|
8865
|
+
"OutputKafkaSaslExtension": ".outputkafka",
|
|
8866
|
+
"OutputKafkaSaslExtensionTypedDict": ".outputkafka",
|
|
7842
8867
|
"OutputKafkaTLSSettingsClientSide": ".outputkafka",
|
|
7843
8868
|
"OutputKafkaTLSSettingsClientSideTypedDict": ".outputkafka",
|
|
7844
8869
|
"OutputKafkaType": ".outputkafka",
|
|
@@ -7875,6 +8900,24 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7875
8900
|
"OutputLokiTimeoutRetrySettingsTypedDict": ".outputloki",
|
|
7876
8901
|
"OutputLokiType": ".outputloki",
|
|
7877
8902
|
"OutputLokiTypedDict": ".outputloki",
|
|
8903
|
+
"OutputMicrosoftFabric": ".outputmicrosoftfabric",
|
|
8904
|
+
"OutputMicrosoftFabricAcknowledgments": ".outputmicrosoftfabric",
|
|
8905
|
+
"OutputMicrosoftFabricAuthentication": ".outputmicrosoftfabric",
|
|
8906
|
+
"OutputMicrosoftFabricAuthenticationMethod": ".outputmicrosoftfabric",
|
|
8907
|
+
"OutputMicrosoftFabricAuthenticationTypedDict": ".outputmicrosoftfabric",
|
|
8908
|
+
"OutputMicrosoftFabricBackpressureBehavior": ".outputmicrosoftfabric",
|
|
8909
|
+
"OutputMicrosoftFabricCompression": ".outputmicrosoftfabric",
|
|
8910
|
+
"OutputMicrosoftFabricMicrosoftEntraIDAuthenticationEndpoint": ".outputmicrosoftfabric",
|
|
8911
|
+
"OutputMicrosoftFabricMode": ".outputmicrosoftfabric",
|
|
8912
|
+
"OutputMicrosoftFabricPqControls": ".outputmicrosoftfabric",
|
|
8913
|
+
"OutputMicrosoftFabricPqControlsTypedDict": ".outputmicrosoftfabric",
|
|
8914
|
+
"OutputMicrosoftFabricQueueFullBehavior": ".outputmicrosoftfabric",
|
|
8915
|
+
"OutputMicrosoftFabricRecordDataFormat": ".outputmicrosoftfabric",
|
|
8916
|
+
"OutputMicrosoftFabricSASLMechanism": ".outputmicrosoftfabric",
|
|
8917
|
+
"OutputMicrosoftFabricTLSSettingsClientSide": ".outputmicrosoftfabric",
|
|
8918
|
+
"OutputMicrosoftFabricTLSSettingsClientSideTypedDict": ".outputmicrosoftfabric",
|
|
8919
|
+
"OutputMicrosoftFabricType": ".outputmicrosoftfabric",
|
|
8920
|
+
"OutputMicrosoftFabricTypedDict": ".outputmicrosoftfabric",
|
|
7878
8921
|
"OutputMinio": ".outputminio",
|
|
7879
8922
|
"OutputMinioAuthenticationMethod": ".outputminio",
|
|
7880
8923
|
"OutputMinioBackpressureBehavior": ".outputminio",
|
|
@@ -7887,11 +8930,11 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7887
8930
|
"OutputMinioKeyValueMetadatumTypedDict": ".outputminio",
|
|
7888
8931
|
"OutputMinioObjectACL": ".outputminio",
|
|
7889
8932
|
"OutputMinioParquetVersion": ".outputminio",
|
|
8933
|
+
"OutputMinioServerSideEncryption": ".outputminio",
|
|
7890
8934
|
"OutputMinioSignatureVersion": ".outputminio",
|
|
7891
8935
|
"OutputMinioStorageClass": ".outputminio",
|
|
7892
8936
|
"OutputMinioType": ".outputminio",
|
|
7893
8937
|
"OutputMinioTypedDict": ".outputminio",
|
|
7894
|
-
"ServerSideEncryption": ".outputminio",
|
|
7895
8938
|
"OutputMsk": ".outputmsk",
|
|
7896
8939
|
"OutputMskAcknowledgments": ".outputmsk",
|
|
7897
8940
|
"OutputMskAuth": ".outputmsk",
|
|
@@ -7913,7 +8956,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7913
8956
|
"OutputMskPqControlsTypedDict": ".outputmsk",
|
|
7914
8957
|
"OutputMskQueueFullBehavior": ".outputmsk",
|
|
7915
8958
|
"OutputMskRecordDataFormat": ".outputmsk",
|
|
7916
|
-
"OutputMskSchemaType": ".outputmsk",
|
|
7917
8959
|
"OutputMskSignatureVersion": ".outputmsk",
|
|
7918
8960
|
"OutputMskTLSSettingsClientSide": ".outputmsk",
|
|
7919
8961
|
"OutputMskTLSSettingsClientSideTypedDict": ".outputmsk",
|
|
@@ -8180,12 +9222,16 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8180
9222
|
"OutputSplunkHecExtraHTTPHeader": ".outputsplunkhec",
|
|
8181
9223
|
"OutputSplunkHecExtraHTTPHeaderTypedDict": ".outputsplunkhec",
|
|
8182
9224
|
"OutputSplunkHecFailedRequestLoggingMode": ".outputsplunkhec",
|
|
9225
|
+
"OutputSplunkHecMaximumTLSVersion": ".outputsplunkhec",
|
|
9226
|
+
"OutputSplunkHecMinimumTLSVersion": ".outputsplunkhec",
|
|
8183
9227
|
"OutputSplunkHecMode": ".outputsplunkhec",
|
|
8184
9228
|
"OutputSplunkHecPqControls": ".outputsplunkhec",
|
|
8185
9229
|
"OutputSplunkHecPqControlsTypedDict": ".outputsplunkhec",
|
|
8186
9230
|
"OutputSplunkHecQueueFullBehavior": ".outputsplunkhec",
|
|
8187
9231
|
"OutputSplunkHecResponseRetrySetting": ".outputsplunkhec",
|
|
8188
9232
|
"OutputSplunkHecResponseRetrySettingTypedDict": ".outputsplunkhec",
|
|
9233
|
+
"OutputSplunkHecTLSSettingsClientSide": ".outputsplunkhec",
|
|
9234
|
+
"OutputSplunkHecTLSSettingsClientSideTypedDict": ".outputsplunkhec",
|
|
8189
9235
|
"OutputSplunkHecTimeoutRetrySettings": ".outputsplunkhec",
|
|
8190
9236
|
"OutputSplunkHecTimeoutRetrySettingsTypedDict": ".outputsplunkhec",
|
|
8191
9237
|
"OutputSplunkHecType": ".outputsplunkhec",
|
|
@@ -8271,6 +9317,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8271
9317
|
"OutputSyslog": ".outputsyslog",
|
|
8272
9318
|
"OutputSyslogBackpressureBehavior": ".outputsyslog",
|
|
8273
9319
|
"OutputSyslogCompression": ".outputsyslog",
|
|
9320
|
+
"OutputSyslogHost": ".outputsyslog",
|
|
9321
|
+
"OutputSyslogHostTypedDict": ".outputsyslog",
|
|
8274
9322
|
"OutputSyslogMaximumTLSVersion": ".outputsyslog",
|
|
8275
9323
|
"OutputSyslogMessageFormat": ".outputsyslog",
|
|
8276
9324
|
"OutputSyslogMinimumTLSVersion": ".outputsyslog",
|
|
@@ -8280,6 +9328,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8280
9328
|
"OutputSyslogProtocol": ".outputsyslog",
|
|
8281
9329
|
"OutputSyslogQueueFullBehavior": ".outputsyslog",
|
|
8282
9330
|
"OutputSyslogSeverity": ".outputsyslog",
|
|
9331
|
+
"OutputSyslogTLS": ".outputsyslog",
|
|
8283
9332
|
"OutputSyslogTLSSettingsClientSide": ".outputsyslog",
|
|
8284
9333
|
"OutputSyslogTLSSettingsClientSideTypedDict": ".outputsyslog",
|
|
8285
9334
|
"OutputSyslogType": ".outputsyslog",
|
|
@@ -8406,8 +9455,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8406
9455
|
"RbacResource": ".rbacresource",
|
|
8407
9456
|
"ResourcePolicy": ".resourcepolicy",
|
|
8408
9457
|
"ResourcePolicyTypedDict": ".resourcepolicy",
|
|
8409
|
-
"RouteCloneConf": ".routecloneconf",
|
|
8410
|
-
"RouteCloneConfTypedDict": ".routecloneconf",
|
|
8411
9458
|
"RouteConf": ".routeconf",
|
|
8412
9459
|
"RouteConfTypedDict": ".routeconf",
|
|
8413
9460
|
"Comment": ".routes",
|
|
@@ -8418,6 +9465,69 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8418
9465
|
"RoutesTypedDict": ".routes",
|
|
8419
9466
|
"RoutesRoute": ".routesroute",
|
|
8420
9467
|
"RoutesRouteTypedDict": ".routesroute",
|
|
9468
|
+
"RunnableJob": ".runnablejob",
|
|
9469
|
+
"RunnableJobTypedDict": ".runnablejob",
|
|
9470
|
+
"CaptureSettings": ".runnablejobcollection",
|
|
9471
|
+
"CaptureSettingsTypedDict": ".runnablejobcollection",
|
|
9472
|
+
"Collector": ".runnablejobcollection",
|
|
9473
|
+
"CollectorSpecificSettings": ".runnablejobcollection",
|
|
9474
|
+
"CollectorSpecificSettingsTypedDict": ".runnablejobcollection",
|
|
9475
|
+
"CollectorTypedDict": ".runnablejobcollection",
|
|
9476
|
+
"InputType": ".runnablejobcollection",
|
|
9477
|
+
"RunnableJobCollection": ".runnablejobcollection",
|
|
9478
|
+
"RunnableJobCollectionInput": ".runnablejobcollection",
|
|
9479
|
+
"RunnableJobCollectionInputTypedDict": ".runnablejobcollection",
|
|
9480
|
+
"RunnableJobCollectionJobType": ".runnablejobcollection",
|
|
9481
|
+
"RunnableJobCollectionLogLevel": ".runnablejobcollection",
|
|
9482
|
+
"RunnableJobCollectionMetadatum": ".runnablejobcollection",
|
|
9483
|
+
"RunnableJobCollectionMetadatumTypedDict": ".runnablejobcollection",
|
|
9484
|
+
"RunnableJobCollectionMode": ".runnablejobcollection",
|
|
9485
|
+
"RunnableJobCollectionPreprocess": ".runnablejobcollection",
|
|
9486
|
+
"RunnableJobCollectionPreprocessTypedDict": ".runnablejobcollection",
|
|
9487
|
+
"RunnableJobCollectionRun": ".runnablejobcollection",
|
|
9488
|
+
"RunnableJobCollectionRunSettings": ".runnablejobcollection",
|
|
9489
|
+
"RunnableJobCollectionRunSettingsTypedDict": ".runnablejobcollection",
|
|
9490
|
+
"RunnableJobCollectionRunType": ".runnablejobcollection",
|
|
9491
|
+
"RunnableJobCollectionRunTypedDict": ".runnablejobcollection",
|
|
9492
|
+
"RunnableJobCollectionSchedule": ".runnablejobcollection",
|
|
9493
|
+
"RunnableJobCollectionScheduleLogLevel": ".runnablejobcollection",
|
|
9494
|
+
"RunnableJobCollectionScheduleTimeWarning": ".runnablejobcollection",
|
|
9495
|
+
"RunnableJobCollectionScheduleTimeWarningTypedDict": ".runnablejobcollection",
|
|
9496
|
+
"RunnableJobCollectionScheduleTypedDict": ".runnablejobcollection",
|
|
9497
|
+
"RunnableJobCollectionTimeWarning": ".runnablejobcollection",
|
|
9498
|
+
"RunnableJobCollectionTimeWarningTypedDict": ".runnablejobcollection",
|
|
9499
|
+
"RunnableJobCollectionTypedDict": ".runnablejobcollection",
|
|
9500
|
+
"TimeRange": ".runnablejobcollection",
|
|
9501
|
+
"WhereToCapture": ".runnablejobcollection",
|
|
9502
|
+
"Executor": ".runnablejobexecutor",
|
|
9503
|
+
"ExecutorSpecificSettings": ".runnablejobexecutor",
|
|
9504
|
+
"ExecutorSpecificSettingsTypedDict": ".runnablejobexecutor",
|
|
9505
|
+
"ExecutorTypedDict": ".runnablejobexecutor",
|
|
9506
|
+
"RunnableJobExecutor": ".runnablejobexecutor",
|
|
9507
|
+
"RunnableJobExecutorJobType": ".runnablejobexecutor",
|
|
9508
|
+
"RunnableJobExecutorLogLevel": ".runnablejobexecutor",
|
|
9509
|
+
"RunnableJobExecutorRun": ".runnablejobexecutor",
|
|
9510
|
+
"RunnableJobExecutorRunSettings": ".runnablejobexecutor",
|
|
9511
|
+
"RunnableJobExecutorRunSettingsTypedDict": ".runnablejobexecutor",
|
|
9512
|
+
"RunnableJobExecutorRunTypedDict": ".runnablejobexecutor",
|
|
9513
|
+
"RunnableJobExecutorSchedule": ".runnablejobexecutor",
|
|
9514
|
+
"RunnableJobExecutorScheduleLogLevel": ".runnablejobexecutor",
|
|
9515
|
+
"RunnableJobExecutorScheduleTypedDict": ".runnablejobexecutor",
|
|
9516
|
+
"RunnableJobExecutorTimeWarning": ".runnablejobexecutor",
|
|
9517
|
+
"RunnableJobExecutorTimeWarningTypedDict": ".runnablejobexecutor",
|
|
9518
|
+
"RunnableJobExecutorType": ".runnablejobexecutor",
|
|
9519
|
+
"RunnableJobExecutorTypedDict": ".runnablejobexecutor",
|
|
9520
|
+
"RunnableJobScheduledSearch": ".runnablejobscheduledsearch",
|
|
9521
|
+
"RunnableJobScheduledSearchJobType": ".runnablejobscheduledsearch",
|
|
9522
|
+
"RunnableJobScheduledSearchLogLevel": ".runnablejobscheduledsearch",
|
|
9523
|
+
"RunnableJobScheduledSearchRunSettings": ".runnablejobscheduledsearch",
|
|
9524
|
+
"RunnableJobScheduledSearchRunSettingsTypedDict": ".runnablejobscheduledsearch",
|
|
9525
|
+
"RunnableJobScheduledSearchSchedule": ".runnablejobscheduledsearch",
|
|
9526
|
+
"RunnableJobScheduledSearchScheduleTypedDict": ".runnablejobscheduledsearch",
|
|
9527
|
+
"RunnableJobScheduledSearchTimeWarning": ".runnablejobscheduledsearch",
|
|
9528
|
+
"RunnableJobScheduledSearchTimeWarningTypedDict": ".runnablejobscheduledsearch",
|
|
9529
|
+
"RunnableJobScheduledSearchType": ".runnablejobscheduledsearch",
|
|
9530
|
+
"RunnableJobScheduledSearchTypedDict": ".runnablejobscheduledsearch",
|
|
8421
9531
|
"SchemeClientOauth": ".schemeclientoauth",
|
|
8422
9532
|
"SchemeClientOauthTypedDict": ".schemeclientoauth",
|
|
8423
9533
|
"Security": ".security",
|
|
@@ -8456,6 +9566,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8456
9566
|
"UpdatePacksByIDRequestTypedDict": ".updatepacksbyidop",
|
|
8457
9567
|
"UpdatePacksByIDResponse": ".updatepacksbyidop",
|
|
8458
9568
|
"UpdatePacksByIDResponseTypedDict": ".updatepacksbyidop",
|
|
9569
|
+
"UpdatePacksRequest": ".updatepacksop",
|
|
9570
|
+
"UpdatePacksRequestTypedDict": ".updatepacksop",
|
|
8459
9571
|
"UpdatePipelineByIDRequest": ".updatepipelinebyidop",
|
|
8460
9572
|
"UpdatePipelineByIDRequestTypedDict": ".updatepipelinebyidop",
|
|
8461
9573
|
"UpdatePipelineByIDResponse": ".updatepipelinebyidop",
|
|
@@ -8464,12 +9576,26 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8464
9576
|
"UpdateRoutesByIDRequestTypedDict": ".updateroutesbyidop",
|
|
8465
9577
|
"UpdateRoutesByIDResponse": ".updateroutesbyidop",
|
|
8466
9578
|
"UpdateRoutesByIDResponseTypedDict": ".updateroutesbyidop",
|
|
9579
|
+
"UploadPackResponse": ".uploadpackresponse",
|
|
9580
|
+
"UploadPackResponseTypedDict": ".uploadpackresponse",
|
|
8467
9581
|
"UserAccessControlList": ".useraccesscontrollist",
|
|
8468
9582
|
"UserAccessControlListTypedDict": ".useraccesscontrollist",
|
|
8469
9583
|
"WorkerTypes": ".workertypes",
|
|
8470
9584
|
}
|
|
8471
9585
|
|
|
8472
9586
|
|
|
9587
|
+
def dynamic_import(modname, retries=3):
|
|
9588
|
+
for attempt in range(retries):
|
|
9589
|
+
try:
|
|
9590
|
+
return import_module(modname, __package__)
|
|
9591
|
+
except KeyError:
|
|
9592
|
+
# Clear any half-initialized module and retry
|
|
9593
|
+
sys.modules.pop(modname, None)
|
|
9594
|
+
if attempt == retries - 1:
|
|
9595
|
+
break
|
|
9596
|
+
raise KeyError(f"Failed to import module '{modname}' after {retries} attempts")
|
|
9597
|
+
|
|
9598
|
+
|
|
8473
9599
|
def __getattr__(attr_name: str) -> object:
|
|
8474
9600
|
module_name = _dynamic_imports.get(attr_name)
|
|
8475
9601
|
if module_name is None:
|
|
@@ -8478,7 +9604,7 @@ def __getattr__(attr_name: str) -> object:
|
|
|
8478
9604
|
)
|
|
8479
9605
|
|
|
8480
9606
|
try:
|
|
8481
|
-
module =
|
|
9607
|
+
module = dynamic_import(module_name)
|
|
8482
9608
|
result = getattr(module, attr_name)
|
|
8483
9609
|
return result
|
|
8484
9610
|
except ImportError as e:
|