cribl-control-plane 0.2.0a1__py3-none-any.whl → 0.2.0b2__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/_version.py +3 -3
- cribl_control_plane/groups_sdk.py +4 -4
- cribl_control_plane/models/__init__.py +35 -27
- cribl_control_plane/models/configgroup.py +17 -2
- cribl_control_plane/models/createversionundoop.py +3 -3
- cribl_control_plane/models/distributedsummary.py +6 -0
- cribl_control_plane/models/hbcriblinfo.py +14 -3
- cribl_control_plane/models/heartbeatmetadata.py +3 -0
- cribl_control_plane/models/input.py +65 -63
- cribl_control_plane/models/inputappscope.py +4 -0
- cribl_control_plane/models/inputazureblob.py +4 -0
- cribl_control_plane/models/inputcollection.py +4 -0
- cribl_control_plane/models/inputconfluentcloud.py +8 -18
- cribl_control_plane/models/inputcribl.py +4 -0
- cribl_control_plane/models/inputcriblhttp.py +4 -0
- cribl_control_plane/models/inputcribllakehttp.py +4 -0
- cribl_control_plane/models/inputcriblmetrics.py +4 -0
- cribl_control_plane/models/inputcribltcp.py +4 -0
- cribl_control_plane/models/inputcrowdstrike.py +7 -0
- cribl_control_plane/models/inputdatadogagent.py +4 -0
- cribl_control_plane/models/inputdatagen.py +4 -0
- cribl_control_plane/models/inputedgeprometheus.py +12 -0
- cribl_control_plane/models/inputelastic.py +11 -0
- cribl_control_plane/models/inputeventhub.py +6 -0
- cribl_control_plane/models/inputexec.py +4 -0
- cribl_control_plane/models/inputfile.py +6 -0
- cribl_control_plane/models/inputfirehose.py +4 -0
- cribl_control_plane/models/inputgooglepubsub.py +7 -0
- cribl_control_plane/models/inputgrafana.py +8 -0
- cribl_control_plane/models/inputhttp.py +4 -0
- cribl_control_plane/models/inputhttpraw.py +4 -0
- cribl_control_plane/models/inputjournalfiles.py +4 -0
- cribl_control_plane/models/inputkafka.py +8 -17
- cribl_control_plane/models/inputkinesis.py +15 -0
- cribl_control_plane/models/inputkubeevents.py +4 -0
- cribl_control_plane/models/inputkubelogs.py +4 -0
- cribl_control_plane/models/inputkubemetrics.py +4 -0
- cribl_control_plane/models/inputloki.py +4 -0
- cribl_control_plane/models/inputmetrics.py +4 -0
- cribl_control_plane/models/inputmodeldriventelemetry.py +4 -0
- cribl_control_plane/models/inputmsk.py +7 -17
- cribl_control_plane/models/inputnetflow.py +4 -0
- cribl_control_plane/models/inputoffice365mgmt.py +11 -0
- cribl_control_plane/models/inputoffice365msgtrace.py +11 -0
- cribl_control_plane/models/inputoffice365service.py +11 -0
- cribl_control_plane/models/inputopentelemetry.py +8 -0
- cribl_control_plane/models/inputprometheus.py +10 -0
- cribl_control_plane/models/inputprometheusrw.py +4 -0
- cribl_control_plane/models/inputrawudp.py +4 -0
- cribl_control_plane/models/inputs3.py +7 -0
- cribl_control_plane/models/inputs3inventory.py +7 -0
- cribl_control_plane/models/inputsecuritylake.py +7 -0
- cribl_control_plane/models/inputsnmp.py +11 -0
- cribl_control_plane/models/inputsplunk.py +9 -0
- cribl_control_plane/models/inputsplunkhec.py +4 -0
- cribl_control_plane/models/inputsplunksearch.py +7 -0
- cribl_control_plane/models/inputsqs.py +9 -0
- cribl_control_plane/models/inputsyslog.py +8 -0
- cribl_control_plane/models/inputsystemmetrics.py +32 -0
- cribl_control_plane/models/inputsystemstate.py +4 -0
- cribl_control_plane/models/inputtcp.py +4 -0
- cribl_control_plane/models/inputtcpjson.py +4 -0
- cribl_control_plane/models/inputwef.py +6 -0
- cribl_control_plane/models/inputwindowsmetrics.py +28 -0
- cribl_control_plane/models/inputwineventlogs.py +8 -0
- cribl_control_plane/models/inputwiz.py +7 -0
- cribl_control_plane/models/inputwizwebhook.py +4 -0
- cribl_control_plane/models/inputzscalerhec.py +4 -0
- cribl_control_plane/models/jobinfo.py +4 -1
- cribl_control_plane/models/nodeprovidedinfo.py +7 -1
- cribl_control_plane/models/output.py +85 -80
- cribl_control_plane/models/outputazureblob.py +20 -0
- cribl_control_plane/models/outputazuredataexplorer.py +28 -0
- cribl_control_plane/models/outputazureeventhub.py +17 -0
- cribl_control_plane/models/outputazurelogs.py +13 -0
- cribl_control_plane/models/outputchronicle.py +13 -0
- cribl_control_plane/models/outputclickhouse.py +17 -0
- cribl_control_plane/models/outputcloudwatch.py +13 -0
- cribl_control_plane/models/outputconfluentcloud.py +24 -18
- cribl_control_plane/models/outputcriblhttp.py +15 -0
- cribl_control_plane/models/outputcribllake.py +21 -0
- cribl_control_plane/models/outputcribltcp.py +12 -0
- cribl_control_plane/models/outputcrowdstrikenextgensiem.py +15 -0
- cribl_control_plane/models/outputdatabricks.py +291 -0
- cribl_control_plane/models/outputdatadog.py +30 -0
- cribl_control_plane/models/outputdataset.py +23 -0
- cribl_control_plane/models/outputdls3.py +35 -0
- cribl_control_plane/models/outputdynatracehttp.py +22 -0
- cribl_control_plane/models/outputdynatraceotlp.py +22 -0
- cribl_control_plane/models/outputelastic.py +18 -0
- cribl_control_plane/models/outputelasticcloud.py +13 -0
- cribl_control_plane/models/outputexabeam.py +14 -0
- cribl_control_plane/models/outputfilesystem.py +15 -0
- cribl_control_plane/models/outputgooglechronicle.py +21 -0
- cribl_control_plane/models/outputgooglecloudlogging.py +19 -0
- cribl_control_plane/models/outputgooglecloudstorage.py +28 -0
- cribl_control_plane/models/outputgooglepubsub.py +13 -0
- cribl_control_plane/models/outputgrafanacloud.py +50 -0
- cribl_control_plane/models/outputgraphite.py +12 -0
- cribl_control_plane/models/outputhoneycomb.py +13 -0
- cribl_control_plane/models/outputhumiohec.py +15 -0
- cribl_control_plane/models/outputinfluxdb.py +19 -0
- cribl_control_plane/models/outputkafka.py +24 -17
- cribl_control_plane/models/outputkinesis.py +15 -0
- cribl_control_plane/models/outputloki.py +20 -0
- cribl_control_plane/models/outputminio.py +28 -0
- cribl_control_plane/models/outputmsk.py +23 -17
- cribl_control_plane/models/outputnewrelic.py +16 -0
- cribl_control_plane/models/outputnewrelicevents.py +16 -0
- cribl_control_plane/models/outputopentelemetry.py +22 -0
- cribl_control_plane/models/outputprometheus.py +13 -0
- cribl_control_plane/models/outputring.py +2 -0
- cribl_control_plane/models/outputs3.py +35 -0
- cribl_control_plane/models/outputsecuritylake.py +29 -0
- cribl_control_plane/models/outputsentinel.py +15 -0
- cribl_control_plane/models/outputsentineloneaisiem.py +13 -0
- cribl_control_plane/models/outputservicenow.py +21 -0
- cribl_control_plane/models/outputsignalfx.py +13 -0
- cribl_control_plane/models/outputsns.py +13 -0
- cribl_control_plane/models/outputsplunk.py +15 -0
- cribl_control_plane/models/outputsplunkhec.py +13 -0
- cribl_control_plane/models/outputsplunklb.py +15 -0
- cribl_control_plane/models/outputsqs.py +15 -0
- cribl_control_plane/models/outputstatsd.py +12 -0
- cribl_control_plane/models/outputstatsdext.py +12 -0
- cribl_control_plane/models/outputsumologic.py +15 -0
- cribl_control_plane/models/outputsyslog.py +24 -0
- cribl_control_plane/models/outputtcpjson.py +12 -0
- cribl_control_plane/models/outputwavefront.py +13 -0
- cribl_control_plane/models/outputwebhook.py +23 -0
- cribl_control_plane/models/outputxsiam.py +13 -0
- cribl_control_plane/models/packinfo.py +3 -0
- cribl_control_plane/models/packinstallinfo.py +3 -0
- cribl_control_plane/models/routeconf.py +3 -4
- cribl_control_plane/models/runnablejobcollection.py +4 -0
- {cribl_control_plane-0.2.0a1.dist-info → cribl_control_plane-0.2.0b2.dist-info}/METADATA +1 -1
- {cribl_control_plane-0.2.0a1.dist-info → cribl_control_plane-0.2.0b2.dist-info}/RECORD +138 -139
- cribl_control_plane/models/appmode.py +0 -14
- cribl_control_plane/models/routecloneconf.py +0 -13
- {cribl_control_plane-0.2.0a1.dist-info → cribl_control_plane-0.2.0b2.dist-info}/WHEEL +0 -0
cribl_control_plane/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "cribl-control-plane"
|
|
6
|
-
__version__: str = "0.2.
|
|
7
|
-
__openapi_doc_version__: str = "4.
|
|
6
|
+
__version__: str = "0.2.0b2"
|
|
7
|
+
__openapi_doc_version__: str = "4.15.0-alpha.1760439571529-8891ea6f"
|
|
8
8
|
__gen_version__: str = "2.723.11"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.2.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.2.0b2 2.723.11 4.15.0-alpha.1760439571529-8891ea6f cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -224,7 +224,7 @@ class GroupsSDK(BaseSDK):
|
|
|
224
224
|
config_version: Optional[str] = None,
|
|
225
225
|
deploying_worker_count: Optional[float] = None,
|
|
226
226
|
description: Optional[str] = None,
|
|
227
|
-
estimated_ingest_rate: Optional[
|
|
227
|
+
estimated_ingest_rate: Optional[models.EstimatedIngestRate] = None,
|
|
228
228
|
git: Optional[Union[models.Git, models.GitTypedDict]] = None,
|
|
229
229
|
incompatible_worker_count: Optional[float] = None,
|
|
230
230
|
inherits: Optional[str] = None,
|
|
@@ -395,7 +395,7 @@ class GroupsSDK(BaseSDK):
|
|
|
395
395
|
config_version: Optional[str] = None,
|
|
396
396
|
deploying_worker_count: Optional[float] = None,
|
|
397
397
|
description: Optional[str] = None,
|
|
398
|
-
estimated_ingest_rate: Optional[
|
|
398
|
+
estimated_ingest_rate: Optional[models.EstimatedIngestRate] = None,
|
|
399
399
|
git: Optional[Union[models.Git, models.GitTypedDict]] = None,
|
|
400
400
|
incompatible_worker_count: Optional[float] = None,
|
|
401
401
|
inherits: Optional[str] = None,
|
|
@@ -757,7 +757,7 @@ class GroupsSDK(BaseSDK):
|
|
|
757
757
|
config_version: Optional[str] = None,
|
|
758
758
|
deploying_worker_count: Optional[float] = None,
|
|
759
759
|
description: Optional[str] = None,
|
|
760
|
-
estimated_ingest_rate: Optional[
|
|
760
|
+
estimated_ingest_rate: Optional[models.EstimatedIngestRate] = None,
|
|
761
761
|
git: Optional[Union[models.Git, models.GitTypedDict]] = None,
|
|
762
762
|
incompatible_worker_count: Optional[float] = None,
|
|
763
763
|
inherits: Optional[str] = None,
|
|
@@ -931,7 +931,7 @@ class GroupsSDK(BaseSDK):
|
|
|
931
931
|
config_version: Optional[str] = None,
|
|
932
932
|
deploying_worker_count: Optional[float] = None,
|
|
933
933
|
description: Optional[str] = None,
|
|
934
|
-
estimated_ingest_rate: Optional[
|
|
934
|
+
estimated_ingest_rate: Optional[models.EstimatedIngestRate] = None,
|
|
935
935
|
git: Optional[Union[models.Git, models.GitTypedDict]] = None,
|
|
936
936
|
incompatible_worker_count: Optional[float] = None,
|
|
937
937
|
inherits: Optional[str] = None,
|
|
@@ -12,7 +12,6 @@ if TYPE_CHECKING:
|
|
|
12
12
|
AddHecTokenRequestMetadatumTypedDict,
|
|
13
13
|
AddHecTokenRequestTypedDict,
|
|
14
14
|
)
|
|
15
|
-
from .appmode import AppMode
|
|
16
15
|
from .authtoken import AuthToken, AuthTokenTypedDict
|
|
17
16
|
from .branchinfo import BranchInfo, BranchInfoTypedDict
|
|
18
17
|
from .cacheconnection import CacheConnection, CacheConnectionTypedDict
|
|
@@ -23,6 +22,7 @@ if TYPE_CHECKING:
|
|
|
23
22
|
ConfigGroup,
|
|
24
23
|
ConfigGroupType,
|
|
25
24
|
ConfigGroupTypedDict,
|
|
25
|
+
EstimatedIngestRate,
|
|
26
26
|
Git,
|
|
27
27
|
GitTypedDict,
|
|
28
28
|
)
|
|
@@ -361,7 +361,13 @@ if TYPE_CHECKING:
|
|
|
361
361
|
Renamed,
|
|
362
362
|
RenamedTypedDict,
|
|
363
363
|
)
|
|
364
|
-
from .hbcriblinfo import
|
|
364
|
+
from .hbcriblinfo import (
|
|
365
|
+
Config,
|
|
366
|
+
ConfigTypedDict,
|
|
367
|
+
DistMode,
|
|
368
|
+
HBCriblInfo,
|
|
369
|
+
HBCriblInfoTypedDict,
|
|
370
|
+
)
|
|
365
371
|
from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
|
|
366
372
|
from .healthstatus import HealthStatus, HealthStatusTypedDict, Role, Status
|
|
367
373
|
from .heartbeatmetadata import (
|
|
@@ -468,7 +474,6 @@ if TYPE_CHECKING:
|
|
|
468
474
|
InputConfluentCloudPqControlsTypedDict,
|
|
469
475
|
InputConfluentCloudPqTypedDict,
|
|
470
476
|
InputConfluentCloudSASLMechanism,
|
|
471
|
-
InputConfluentCloudSchemaType,
|
|
472
477
|
InputConfluentCloudTLSSettingsClientSide,
|
|
473
478
|
InputConfluentCloudTLSSettingsClientSideTypedDict,
|
|
474
479
|
InputConfluentCloudType,
|
|
@@ -927,7 +932,6 @@ if TYPE_CHECKING:
|
|
|
927
932
|
InputKafkaPqControlsTypedDict,
|
|
928
933
|
InputKafkaPqTypedDict,
|
|
929
934
|
InputKafkaSASLMechanism,
|
|
930
|
-
InputKafkaSchemaType,
|
|
931
935
|
InputKafkaTLSSettingsClientSide,
|
|
932
936
|
InputKafkaTLSSettingsClientSideTypedDict,
|
|
933
937
|
InputKafkaType,
|
|
@@ -1095,7 +1099,6 @@ if TYPE_CHECKING:
|
|
|
1095
1099
|
InputMskPqControls,
|
|
1096
1100
|
InputMskPqControlsTypedDict,
|
|
1097
1101
|
InputMskPqTypedDict,
|
|
1098
|
-
InputMskSchemaType,
|
|
1099
1102
|
InputMskSignatureVersion,
|
|
1100
1103
|
InputMskTLSSettingsClientSide,
|
|
1101
1104
|
InputMskTLSSettingsClientSideTypedDict,
|
|
@@ -2011,7 +2014,6 @@ if TYPE_CHECKING:
|
|
|
2011
2014
|
OutputConfluentCloudQueueFullBehavior,
|
|
2012
2015
|
OutputConfluentCloudRecordDataFormat,
|
|
2013
2016
|
OutputConfluentCloudSASLMechanism,
|
|
2014
|
-
OutputConfluentCloudSchemaType,
|
|
2015
2017
|
OutputConfluentCloudTLSSettingsClientSide,
|
|
2016
2018
|
OutputConfluentCloudTLSSettingsClientSideTypedDict,
|
|
2017
2019
|
OutputConfluentCloudType,
|
|
@@ -2094,6 +2096,15 @@ if TYPE_CHECKING:
|
|
|
2094
2096
|
OutputCrowdstrikeNextGenSiemType,
|
|
2095
2097
|
OutputCrowdstrikeNextGenSiemTypedDict,
|
|
2096
2098
|
)
|
|
2099
|
+
from .outputdatabricks import (
|
|
2100
|
+
OutputDatabricks,
|
|
2101
|
+
OutputDatabricksAuthenticationMethod,
|
|
2102
|
+
OutputDatabricksBackpressureBehavior,
|
|
2103
|
+
OutputDatabricksDataFormat,
|
|
2104
|
+
OutputDatabricksDiskSpaceProtection,
|
|
2105
|
+
OutputDatabricksType,
|
|
2106
|
+
OutputDatabricksTypedDict,
|
|
2107
|
+
)
|
|
2097
2108
|
from .outputdatadog import (
|
|
2098
2109
|
DatadogSite,
|
|
2099
2110
|
OutputDatadog,
|
|
@@ -2512,7 +2523,6 @@ if TYPE_CHECKING:
|
|
|
2512
2523
|
OutputKafkaQueueFullBehavior,
|
|
2513
2524
|
OutputKafkaRecordDataFormat,
|
|
2514
2525
|
OutputKafkaSASLMechanism,
|
|
2515
|
-
OutputKafkaSchemaType,
|
|
2516
2526
|
OutputKafkaTLSSettingsClientSide,
|
|
2517
2527
|
OutputKafkaTLSSettingsClientSideTypedDict,
|
|
2518
2528
|
OutputKafkaType,
|
|
@@ -2595,7 +2605,6 @@ if TYPE_CHECKING:
|
|
|
2595
2605
|
OutputMskPqControlsTypedDict,
|
|
2596
2606
|
OutputMskQueueFullBehavior,
|
|
2597
2607
|
OutputMskRecordDataFormat,
|
|
2598
|
-
OutputMskSchemaType,
|
|
2599
2608
|
OutputMskSignatureVersion,
|
|
2600
2609
|
OutputMskTLSSettingsClientSide,
|
|
2601
2610
|
OutputMskTLSSettingsClientSideTypedDict,
|
|
@@ -3154,7 +3163,6 @@ if TYPE_CHECKING:
|
|
|
3154
3163
|
from .productscore import ProductsCore
|
|
3155
3164
|
from .rbacresource import RbacResource
|
|
3156
3165
|
from .resourcepolicy import ResourcePolicy, ResourcePolicyTypedDict
|
|
3157
|
-
from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
|
|
3158
3166
|
from .routeconf import RouteConf, RouteConfTypedDict
|
|
3159
3167
|
from .routes import (
|
|
3160
3168
|
Comment,
|
|
@@ -3315,7 +3323,6 @@ __all__ = [
|
|
|
3315
3323
|
"AdditionalPropertyTypedDict",
|
|
3316
3324
|
"Allow",
|
|
3317
3325
|
"AllowTypedDict",
|
|
3318
|
-
"AppMode",
|
|
3319
3326
|
"Audit",
|
|
3320
3327
|
"AuditTypedDict",
|
|
3321
3328
|
"AuthToken",
|
|
@@ -3466,6 +3473,7 @@ __all__ = [
|
|
|
3466
3473
|
"DiffFilesTypedDict",
|
|
3467
3474
|
"DisksAndFileSystems",
|
|
3468
3475
|
"DisksAndFileSystemsTypedDict",
|
|
3476
|
+
"DistMode",
|
|
3469
3477
|
"DistributedSummary",
|
|
3470
3478
|
"DistributedSummaryGroups",
|
|
3471
3479
|
"DistributedSummaryGroupsTypedDict",
|
|
@@ -3484,6 +3492,7 @@ __all__ = [
|
|
|
3484
3492
|
"EndpointType",
|
|
3485
3493
|
"Error",
|
|
3486
3494
|
"ErrorTypedDict",
|
|
3495
|
+
"EstimatedIngestRate",
|
|
3487
3496
|
"EventFormat",
|
|
3488
3497
|
"Executor",
|
|
3489
3498
|
"ExecutorSpecificSettings",
|
|
@@ -3735,7 +3744,6 @@ __all__ = [
|
|
|
3735
3744
|
"InputConfluentCloudPqControlsTypedDict",
|
|
3736
3745
|
"InputConfluentCloudPqTypedDict",
|
|
3737
3746
|
"InputConfluentCloudSASLMechanism",
|
|
3738
|
-
"InputConfluentCloudSchemaType",
|
|
3739
3747
|
"InputConfluentCloudTLSSettingsClientSide",
|
|
3740
3748
|
"InputConfluentCloudTLSSettingsClientSideTypedDict",
|
|
3741
3749
|
"InputConfluentCloudType",
|
|
@@ -4125,7 +4133,6 @@ __all__ = [
|
|
|
4125
4133
|
"InputKafkaPqControlsTypedDict",
|
|
4126
4134
|
"InputKafkaPqTypedDict",
|
|
4127
4135
|
"InputKafkaSASLMechanism",
|
|
4128
|
-
"InputKafkaSchemaType",
|
|
4129
4136
|
"InputKafkaTLSSettingsClientSide",
|
|
4130
4137
|
"InputKafkaTLSSettingsClientSideTypedDict",
|
|
4131
4138
|
"InputKafkaType",
|
|
@@ -4275,7 +4282,6 @@ __all__ = [
|
|
|
4275
4282
|
"InputMskPqControls",
|
|
4276
4283
|
"InputMskPqControlsTypedDict",
|
|
4277
4284
|
"InputMskPqTypedDict",
|
|
4278
|
-
"InputMskSchemaType",
|
|
4279
4285
|
"InputMskSignatureVersion",
|
|
4280
4286
|
"InputMskTLSSettingsClientSide",
|
|
4281
4287
|
"InputMskTLSSettingsClientSideTypedDict",
|
|
@@ -5092,7 +5098,6 @@ __all__ = [
|
|
|
5092
5098
|
"OutputConfluentCloudQueueFullBehavior",
|
|
5093
5099
|
"OutputConfluentCloudRecordDataFormat",
|
|
5094
5100
|
"OutputConfluentCloudSASLMechanism",
|
|
5095
|
-
"OutputConfluentCloudSchemaType",
|
|
5096
5101
|
"OutputConfluentCloudTLSSettingsClientSide",
|
|
5097
5102
|
"OutputConfluentCloudTLSSettingsClientSideTypedDict",
|
|
5098
5103
|
"OutputConfluentCloudType",
|
|
@@ -5165,6 +5170,13 @@ __all__ = [
|
|
|
5165
5170
|
"OutputCrowdstrikeNextGenSiemTimeoutRetrySettingsTypedDict",
|
|
5166
5171
|
"OutputCrowdstrikeNextGenSiemType",
|
|
5167
5172
|
"OutputCrowdstrikeNextGenSiemTypedDict",
|
|
5173
|
+
"OutputDatabricks",
|
|
5174
|
+
"OutputDatabricksAuthenticationMethod",
|
|
5175
|
+
"OutputDatabricksBackpressureBehavior",
|
|
5176
|
+
"OutputDatabricksDataFormat",
|
|
5177
|
+
"OutputDatabricksDiskSpaceProtection",
|
|
5178
|
+
"OutputDatabricksType",
|
|
5179
|
+
"OutputDatabricksTypedDict",
|
|
5168
5180
|
"OutputDatadog",
|
|
5169
5181
|
"OutputDatadogAuthenticationMethod",
|
|
5170
5182
|
"OutputDatadogBackpressureBehavior",
|
|
@@ -5530,7 +5542,6 @@ __all__ = [
|
|
|
5530
5542
|
"OutputKafkaQueueFullBehavior",
|
|
5531
5543
|
"OutputKafkaRecordDataFormat",
|
|
5532
5544
|
"OutputKafkaSASLMechanism",
|
|
5533
|
-
"OutputKafkaSchemaType",
|
|
5534
5545
|
"OutputKafkaTLSSettingsClientSide",
|
|
5535
5546
|
"OutputKafkaTLSSettingsClientSideTypedDict",
|
|
5536
5547
|
"OutputKafkaType",
|
|
@@ -5605,7 +5616,6 @@ __all__ = [
|
|
|
5605
5616
|
"OutputMskPqControlsTypedDict",
|
|
5606
5617
|
"OutputMskQueueFullBehavior",
|
|
5607
5618
|
"OutputMskRecordDataFormat",
|
|
5608
|
-
"OutputMskSchemaType",
|
|
5609
5619
|
"OutputMskSignatureVersion",
|
|
5610
5620
|
"OutputMskTLSSettingsClientSide",
|
|
5611
5621
|
"OutputMskTLSSettingsClientSideTypedDict",
|
|
@@ -6112,8 +6122,6 @@ __all__ = [
|
|
|
6112
6122
|
"ResourceTypeLabel",
|
|
6113
6123
|
"ResourceTypeLabelTypedDict",
|
|
6114
6124
|
"Role",
|
|
6115
|
-
"RouteCloneConf",
|
|
6116
|
-
"RouteCloneConfTypedDict",
|
|
6117
6125
|
"RouteConf",
|
|
6118
6126
|
"RouteConfTypedDict",
|
|
6119
6127
|
"Routes",
|
|
@@ -6264,7 +6272,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6264
6272
|
"AddHecTokenRequestMetadatum": ".addhectokenrequest",
|
|
6265
6273
|
"AddHecTokenRequestMetadatumTypedDict": ".addhectokenrequest",
|
|
6266
6274
|
"AddHecTokenRequestTypedDict": ".addhectokenrequest",
|
|
6267
|
-
"AppMode": ".appmode",
|
|
6268
6275
|
"AuthToken": ".authtoken",
|
|
6269
6276
|
"AuthTokenTypedDict": ".authtoken",
|
|
6270
6277
|
"BranchInfo": ".branchinfo",
|
|
@@ -6278,6 +6285,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6278
6285
|
"ConfigGroup": ".configgroup",
|
|
6279
6286
|
"ConfigGroupType": ".configgroup",
|
|
6280
6287
|
"ConfigGroupTypedDict": ".configgroup",
|
|
6288
|
+
"EstimatedIngestRate": ".configgroup",
|
|
6281
6289
|
"Git": ".configgroup",
|
|
6282
6290
|
"GitTypedDict": ".configgroup",
|
|
6283
6291
|
"ConfigGroupCloud": ".configgroupcloud",
|
|
@@ -6538,6 +6546,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6538
6546
|
"RenamedTypedDict": ".gitstatusresult",
|
|
6539
6547
|
"Config": ".hbcriblinfo",
|
|
6540
6548
|
"ConfigTypedDict": ".hbcriblinfo",
|
|
6549
|
+
"DistMode": ".hbcriblinfo",
|
|
6541
6550
|
"HBCriblInfo": ".hbcriblinfo",
|
|
6542
6551
|
"HBCriblInfoTypedDict": ".hbcriblinfo",
|
|
6543
6552
|
"HBLeaderInfo": ".hbleaderinfo",
|
|
@@ -6642,7 +6651,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6642
6651
|
"InputConfluentCloudPqControlsTypedDict": ".inputconfluentcloud",
|
|
6643
6652
|
"InputConfluentCloudPqTypedDict": ".inputconfluentcloud",
|
|
6644
6653
|
"InputConfluentCloudSASLMechanism": ".inputconfluentcloud",
|
|
6645
|
-
"InputConfluentCloudSchemaType": ".inputconfluentcloud",
|
|
6646
6654
|
"InputConfluentCloudTLSSettingsClientSide": ".inputconfluentcloud",
|
|
6647
6655
|
"InputConfluentCloudTLSSettingsClientSideTypedDict": ".inputconfluentcloud",
|
|
6648
6656
|
"InputConfluentCloudType": ".inputconfluentcloud",
|
|
@@ -7061,7 +7069,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7061
7069
|
"InputKafkaPqControlsTypedDict": ".inputkafka",
|
|
7062
7070
|
"InputKafkaPqTypedDict": ".inputkafka",
|
|
7063
7071
|
"InputKafkaSASLMechanism": ".inputkafka",
|
|
7064
|
-
"InputKafkaSchemaType": ".inputkafka",
|
|
7065
7072
|
"InputKafkaTLSSettingsClientSide": ".inputkafka",
|
|
7066
7073
|
"InputKafkaTLSSettingsClientSideTypedDict": ".inputkafka",
|
|
7067
7074
|
"InputKafkaType": ".inputkafka",
|
|
@@ -7213,7 +7220,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7213
7220
|
"InputMskPqControls": ".inputmsk",
|
|
7214
7221
|
"InputMskPqControlsTypedDict": ".inputmsk",
|
|
7215
7222
|
"InputMskPqTypedDict": ".inputmsk",
|
|
7216
|
-
"InputMskSchemaType": ".inputmsk",
|
|
7217
7223
|
"InputMskSignatureVersion": ".inputmsk",
|
|
7218
7224
|
"InputMskTLSSettingsClientSide": ".inputmsk",
|
|
7219
7225
|
"InputMskTLSSettingsClientSideTypedDict": ".inputmsk",
|
|
@@ -8059,7 +8065,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8059
8065
|
"OutputConfluentCloudQueueFullBehavior": ".outputconfluentcloud",
|
|
8060
8066
|
"OutputConfluentCloudRecordDataFormat": ".outputconfluentcloud",
|
|
8061
8067
|
"OutputConfluentCloudSASLMechanism": ".outputconfluentcloud",
|
|
8062
|
-
"OutputConfluentCloudSchemaType": ".outputconfluentcloud",
|
|
8063
8068
|
"OutputConfluentCloudTLSSettingsClientSide": ".outputconfluentcloud",
|
|
8064
8069
|
"OutputConfluentCloudTLSSettingsClientSideTypedDict": ".outputconfluentcloud",
|
|
8065
8070
|
"OutputConfluentCloudType": ".outputconfluentcloud",
|
|
@@ -8133,6 +8138,13 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8133
8138
|
"OutputCrowdstrikeNextGenSiemTimeoutRetrySettingsTypedDict": ".outputcrowdstrikenextgensiem",
|
|
8134
8139
|
"OutputCrowdstrikeNextGenSiemType": ".outputcrowdstrikenextgensiem",
|
|
8135
8140
|
"OutputCrowdstrikeNextGenSiemTypedDict": ".outputcrowdstrikenextgensiem",
|
|
8141
|
+
"OutputDatabricks": ".outputdatabricks",
|
|
8142
|
+
"OutputDatabricksAuthenticationMethod": ".outputdatabricks",
|
|
8143
|
+
"OutputDatabricksBackpressureBehavior": ".outputdatabricks",
|
|
8144
|
+
"OutputDatabricksDataFormat": ".outputdatabricks",
|
|
8145
|
+
"OutputDatabricksDiskSpaceProtection": ".outputdatabricks",
|
|
8146
|
+
"OutputDatabricksType": ".outputdatabricks",
|
|
8147
|
+
"OutputDatabricksTypedDict": ".outputdatabricks",
|
|
8136
8148
|
"DatadogSite": ".outputdatadog",
|
|
8137
8149
|
"OutputDatadog": ".outputdatadog",
|
|
8138
8150
|
"OutputDatadogAuthenticationMethod": ".outputdatadog",
|
|
@@ -8516,7 +8528,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8516
8528
|
"OutputKafkaQueueFullBehavior": ".outputkafka",
|
|
8517
8529
|
"OutputKafkaRecordDataFormat": ".outputkafka",
|
|
8518
8530
|
"OutputKafkaSASLMechanism": ".outputkafka",
|
|
8519
|
-
"OutputKafkaSchemaType": ".outputkafka",
|
|
8520
8531
|
"OutputKafkaTLSSettingsClientSide": ".outputkafka",
|
|
8521
8532
|
"OutputKafkaTLSSettingsClientSideTypedDict": ".outputkafka",
|
|
8522
8533
|
"OutputKafkaType": ".outputkafka",
|
|
@@ -8591,7 +8602,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8591
8602
|
"OutputMskPqControlsTypedDict": ".outputmsk",
|
|
8592
8603
|
"OutputMskQueueFullBehavior": ".outputmsk",
|
|
8593
8604
|
"OutputMskRecordDataFormat": ".outputmsk",
|
|
8594
|
-
"OutputMskSchemaType": ".outputmsk",
|
|
8595
8605
|
"OutputMskSignatureVersion": ".outputmsk",
|
|
8596
8606
|
"OutputMskTLSSettingsClientSide": ".outputmsk",
|
|
8597
8607
|
"OutputMskTLSSettingsClientSideTypedDict": ".outputmsk",
|
|
@@ -9087,8 +9097,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9087
9097
|
"RbacResource": ".rbacresource",
|
|
9088
9098
|
"ResourcePolicy": ".resourcepolicy",
|
|
9089
9099
|
"ResourcePolicyTypedDict": ".resourcepolicy",
|
|
9090
|
-
"RouteCloneConf": ".routecloneconf",
|
|
9091
|
-
"RouteCloneConfTypedDict": ".routecloneconf",
|
|
9092
9100
|
"RouteConf": ".routeconf",
|
|
9093
9101
|
"RouteConfTypedDict": ".routeconf",
|
|
9094
9102
|
"Comment": ".routes",
|
|
@@ -14,6 +14,18 @@ from typing import List, Optional
|
|
|
14
14
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
15
15
|
|
|
16
16
|
|
|
17
|
+
class EstimatedIngestRate(int, Enum, metaclass=utils.OpenEnumMeta):
|
|
18
|
+
ONE_THOUSAND_AND_TWENTY_FOUR = 1024
|
|
19
|
+
FOUR_THOUSAND_AND_NINETY_SIX = 4096
|
|
20
|
+
TEN_THOUSAND_TWO_HUNDRED_AND_FORTY = 10240
|
|
21
|
+
TWO_THOUSAND_AND_FORTY_EIGHT = 2048
|
|
22
|
+
THREE_THOUSAND_AND_SEVENTY_TWO = 3072
|
|
23
|
+
FIVE_THOUSAND_ONE_HUNDRED_AND_TWENTY = 5120
|
|
24
|
+
SEVEN_THOUSAND_ONE_HUNDRED_AND_SIXTY_EIGHT = 7168
|
|
25
|
+
THIRTEEN_THOUSAND_THREE_HUNDRED_AND_TWELVE = 13312
|
|
26
|
+
FIFTEEN_THOUSAND_THREE_HUNDRED_AND_SIXTY = 15360
|
|
27
|
+
|
|
28
|
+
|
|
17
29
|
class GitTypedDict(TypedDict):
|
|
18
30
|
commit: NotRequired[str]
|
|
19
31
|
local_changes: NotRequired[float]
|
|
@@ -40,7 +52,7 @@ class ConfigGroupTypedDict(TypedDict):
|
|
|
40
52
|
config_version: NotRequired[str]
|
|
41
53
|
deploying_worker_count: NotRequired[float]
|
|
42
54
|
description: NotRequired[str]
|
|
43
|
-
estimated_ingest_rate: NotRequired[
|
|
55
|
+
estimated_ingest_rate: NotRequired[EstimatedIngestRate]
|
|
44
56
|
git: NotRequired[GitTypedDict]
|
|
45
57
|
incompatible_worker_count: NotRequired[float]
|
|
46
58
|
inherits: NotRequired[str]
|
|
@@ -75,7 +87,10 @@ class ConfigGroup(BaseModel):
|
|
|
75
87
|
description: Optional[str] = None
|
|
76
88
|
|
|
77
89
|
estimated_ingest_rate: Annotated[
|
|
78
|
-
|
|
90
|
+
Annotated[
|
|
91
|
+
Optional[EstimatedIngestRate], PlainValidator(validate_open_enum(True))
|
|
92
|
+
],
|
|
93
|
+
pydantic.Field(alias="estimatedIngestRate"),
|
|
79
94
|
] = None
|
|
80
95
|
|
|
81
96
|
git: Optional[Git] = None
|
|
@@ -4,7 +4,7 @@ from __future__ import annotations
|
|
|
4
4
|
from cribl_control_plane.types import BaseModel
|
|
5
5
|
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
|
|
6
6
|
import pydantic
|
|
7
|
-
from typing import List, Optional
|
|
7
|
+
from typing import Any, Dict, List, Optional
|
|
8
8
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
9
|
|
|
10
10
|
|
|
@@ -27,7 +27,7 @@ class CreateVersionUndoResponseTypedDict(TypedDict):
|
|
|
27
27
|
|
|
28
28
|
count: NotRequired[int]
|
|
29
29
|
r"""number of items present in the items array"""
|
|
30
|
-
items: NotRequired[List[str]]
|
|
30
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
class CreateVersionUndoResponse(BaseModel):
|
|
@@ -36,4 +36,4 @@ class CreateVersionUndoResponse(BaseModel):
|
|
|
36
36
|
count: Optional[int] = None
|
|
37
37
|
r"""number of items present in the items array"""
|
|
38
38
|
|
|
39
|
-
items: Optional[List[str]] = None
|
|
39
|
+
items: Optional[List[Dict[str, Any]]] = None
|
|
@@ -9,7 +9,9 @@ from typing_extensions import Annotated, TypedDict
|
|
|
9
9
|
class DistributedSummaryGroupsTypedDict(TypedDict):
|
|
10
10
|
count: float
|
|
11
11
|
destinations: float
|
|
12
|
+
packs: float
|
|
12
13
|
pipelines: float
|
|
14
|
+
quick_connects: float
|
|
13
15
|
routes: float
|
|
14
16
|
sources: float
|
|
15
17
|
|
|
@@ -19,8 +21,12 @@ class DistributedSummaryGroups(BaseModel):
|
|
|
19
21
|
|
|
20
22
|
destinations: float
|
|
21
23
|
|
|
24
|
+
packs: float
|
|
25
|
+
|
|
22
26
|
pipelines: float
|
|
23
27
|
|
|
28
|
+
quick_connects: Annotated[float, pydantic.Field(alias="quickConnects")]
|
|
29
|
+
|
|
24
30
|
routes: float
|
|
25
31
|
|
|
26
32
|
sources: float
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
-
from .appmode import AppMode
|
|
5
4
|
from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
|
|
6
5
|
from .lookupversions import LookupVersions, LookupVersionsTypedDict
|
|
6
|
+
from cribl_control_plane import utils
|
|
7
7
|
from cribl_control_plane.types import BaseModel
|
|
8
8
|
from cribl_control_plane.utils import validate_open_enum
|
|
9
|
+
from enum import Enum
|
|
9
10
|
import pydantic
|
|
10
11
|
from pydantic.functional_validators import PlainValidator
|
|
11
12
|
from typing import List, Optional
|
|
@@ -36,9 +37,19 @@ class Config(BaseModel):
|
|
|
36
37
|
version: Optional[str] = None
|
|
37
38
|
|
|
38
39
|
|
|
40
|
+
class DistMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
41
|
+
EDGE = "edge"
|
|
42
|
+
WORKER = "worker"
|
|
43
|
+
SINGLE = "single"
|
|
44
|
+
MASTER = "master"
|
|
45
|
+
MANAGED_EDGE = "managed-edge"
|
|
46
|
+
OUTPOST = "outpost"
|
|
47
|
+
SEARCH_SUPERVISOR = "search-supervisor"
|
|
48
|
+
|
|
49
|
+
|
|
39
50
|
class HBCriblInfoTypedDict(TypedDict):
|
|
40
51
|
config: ConfigTypedDict
|
|
41
|
-
dist_mode:
|
|
52
|
+
dist_mode: DistMode
|
|
42
53
|
group: str
|
|
43
54
|
guid: str
|
|
44
55
|
start_time: float
|
|
@@ -58,7 +69,7 @@ class HBCriblInfo(BaseModel):
|
|
|
58
69
|
config: Config
|
|
59
70
|
|
|
60
71
|
dist_mode: Annotated[
|
|
61
|
-
Annotated[
|
|
72
|
+
Annotated[DistMode, PlainValidator(validate_open_enum(False))],
|
|
62
73
|
pydantic.Field(alias="distMode"),
|
|
63
74
|
]
|
|
64
75
|
|
|
@@ -17,6 +17,7 @@ class HeartbeatMetadataTags(BaseModel):
|
|
|
17
17
|
|
|
18
18
|
class HeartbeatMetadataAwsTypedDict(TypedDict):
|
|
19
19
|
enabled: bool
|
|
20
|
+
instance_id: str
|
|
20
21
|
region: str
|
|
21
22
|
type: str
|
|
22
23
|
zone: str
|
|
@@ -26,6 +27,8 @@ class HeartbeatMetadataAwsTypedDict(TypedDict):
|
|
|
26
27
|
class HeartbeatMetadataAws(BaseModel):
|
|
27
28
|
enabled: bool
|
|
28
29
|
|
|
30
|
+
instance_id: Annotated[str, pydantic.Field(alias="instanceId")]
|
|
31
|
+
|
|
29
32
|
region: str
|
|
30
33
|
|
|
31
34
|
type: str
|
|
@@ -66,8 +66,10 @@ from .inputwineventlogs import InputWinEventLogs, InputWinEventLogsTypedDict
|
|
|
66
66
|
from .inputwiz import InputWiz, InputWizTypedDict
|
|
67
67
|
from .inputwizwebhook import InputWizWebhook, InputWizWebhookTypedDict
|
|
68
68
|
from .inputzscalerhec import InputZscalerHec, InputZscalerHecTypedDict
|
|
69
|
+
from cribl_control_plane.utils import get_discriminator
|
|
70
|
+
from pydantic import Discriminator, Tag
|
|
69
71
|
from typing import Union
|
|
70
|
-
from typing_extensions import TypeAliasType
|
|
72
|
+
from typing_extensions import Annotated, TypeAliasType
|
|
71
73
|
|
|
72
74
|
|
|
73
75
|
InputTypedDict = TypeAliasType(
|
|
@@ -136,67 +138,67 @@ InputTypedDict = TypeAliasType(
|
|
|
136
138
|
)
|
|
137
139
|
|
|
138
140
|
|
|
139
|
-
Input =
|
|
140
|
-
"Input",
|
|
141
|
+
Input = Annotated[
|
|
141
142
|
Union[
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
143
|
+
Annotated[InputCollection, Tag("collection")],
|
|
144
|
+
Annotated[InputKafka, Tag("kafka")],
|
|
145
|
+
Annotated[InputMsk, Tag("msk")],
|
|
146
|
+
Annotated[InputHTTP, Tag("http")],
|
|
147
|
+
Annotated[InputSplunk, Tag("splunk")],
|
|
148
|
+
Annotated[InputSplunkSearch, Tag("splunk_search")],
|
|
149
|
+
Annotated[InputSplunkHec, Tag("splunk_hec")],
|
|
150
|
+
Annotated[InputAzureBlob, Tag("azure_blob")],
|
|
151
|
+
Annotated[InputElastic, Tag("elastic")],
|
|
152
|
+
Annotated[InputConfluentCloud, Tag("confluent_cloud")],
|
|
153
|
+
Annotated[InputGrafana, Tag("grafana")],
|
|
154
|
+
Annotated[InputLoki, Tag("loki")],
|
|
155
|
+
Annotated[InputPrometheusRw, Tag("prometheus_rw")],
|
|
156
|
+
Annotated[InputPrometheus, Tag("prometheus")],
|
|
157
|
+
Annotated[InputEdgePrometheus, Tag("edge_prometheus")],
|
|
158
|
+
Annotated[InputOffice365Mgmt, Tag("office365_mgmt")],
|
|
159
|
+
Annotated[InputOffice365Service, Tag("office365_service")],
|
|
160
|
+
Annotated[InputOffice365MsgTrace, Tag("office365_msg_trace")],
|
|
161
|
+
Annotated[InputEventhub, Tag("eventhub")],
|
|
162
|
+
Annotated[InputExec, Tag("exec")],
|
|
163
|
+
Annotated[InputFirehose, Tag("firehose")],
|
|
164
|
+
Annotated[InputGooglePubsub, Tag("google_pubsub")],
|
|
165
|
+
Annotated[InputCribl, Tag("cribl")],
|
|
166
|
+
Annotated[InputCriblTCP, Tag("cribl_tcp")],
|
|
167
|
+
Annotated[InputCriblHTTP, Tag("cribl_http")],
|
|
168
|
+
Annotated[InputCriblLakeHTTP, Tag("cribl_lake_http")],
|
|
169
|
+
Annotated[InputTcpjson, Tag("tcpjson")],
|
|
170
|
+
Annotated[InputSystemMetrics, Tag("system_metrics")],
|
|
171
|
+
Annotated[InputSystemState, Tag("system_state")],
|
|
172
|
+
Annotated[InputKubeMetrics, Tag("kube_metrics")],
|
|
173
|
+
Annotated[InputKubeLogs, Tag("kube_logs")],
|
|
174
|
+
Annotated[InputKubeEvents, Tag("kube_events")],
|
|
175
|
+
Annotated[InputWindowsMetrics, Tag("windows_metrics")],
|
|
176
|
+
Annotated[InputCrowdstrike, Tag("crowdstrike")],
|
|
177
|
+
Annotated[InputDatadogAgent, Tag("datadog_agent")],
|
|
178
|
+
Annotated[InputDatagen, Tag("datagen")],
|
|
179
|
+
Annotated[InputHTTPRaw, Tag("http_raw")],
|
|
180
|
+
Annotated[InputKinesis, Tag("kinesis")],
|
|
181
|
+
Annotated[InputCriblmetrics, Tag("criblmetrics")],
|
|
182
|
+
Annotated[InputMetrics, Tag("metrics")],
|
|
183
|
+
Annotated[InputS3, Tag("s3")],
|
|
184
|
+
Annotated[InputS3Inventory, Tag("s3_inventory")],
|
|
185
|
+
Annotated[InputSnmp, Tag("snmp")],
|
|
186
|
+
Annotated[InputOpenTelemetry, Tag("open_telemetry")],
|
|
187
|
+
Annotated[InputModelDrivenTelemetry, Tag("model_driven_telemetry")],
|
|
188
|
+
Annotated[InputSqs, Tag("sqs")],
|
|
189
|
+
Annotated[InputSyslog, Tag("syslog")],
|
|
190
|
+
Annotated[InputFile, Tag("file")],
|
|
191
|
+
Annotated[InputTCP, Tag("tcp")],
|
|
192
|
+
Annotated[InputAppscope, Tag("appscope")],
|
|
193
|
+
Annotated[InputWef, Tag("wef")],
|
|
194
|
+
Annotated[InputWinEventLogs, Tag("win_event_logs")],
|
|
195
|
+
Annotated[InputRawUDP, Tag("raw_udp")],
|
|
196
|
+
Annotated[InputJournalFiles, Tag("journal_files")],
|
|
197
|
+
Annotated[InputWiz, Tag("wiz")],
|
|
198
|
+
Annotated[InputWizWebhook, Tag("wiz_webhook")],
|
|
199
|
+
Annotated[InputNetflow, Tag("netflow")],
|
|
200
|
+
Annotated[InputSecurityLake, Tag("security_lake")],
|
|
201
|
+
Annotated[InputZscalerHec, Tag("zscaler_hec")],
|
|
201
202
|
],
|
|
202
|
-
)
|
|
203
|
+
Discriminator(lambda m: get_discriminator(m, "type", "type")),
|
|
204
|
+
]
|
|
@@ -29,14 +29,18 @@ class InputAppscopeConnection(BaseModel):
|
|
|
29
29
|
class InputAppscopeMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
30
30
|
r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
|
|
31
31
|
|
|
32
|
+
# Smart
|
|
32
33
|
SMART = "smart"
|
|
34
|
+
# Always On
|
|
33
35
|
ALWAYS = "always"
|
|
34
36
|
|
|
35
37
|
|
|
36
38
|
class InputAppscopeCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
37
39
|
r"""Codec to use to compress the persisted data"""
|
|
38
40
|
|
|
41
|
+
# None
|
|
39
42
|
NONE = "none"
|
|
43
|
+
# Gzip
|
|
40
44
|
GZIP = "gzip"
|
|
41
45
|
|
|
42
46
|
|
|
@@ -29,14 +29,18 @@ class InputAzureBlobConnection(BaseModel):
|
|
|
29
29
|
class InputAzureBlobMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
30
30
|
r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
|
|
31
31
|
|
|
32
|
+
# Smart
|
|
32
33
|
SMART = "smart"
|
|
34
|
+
# Always On
|
|
33
35
|
ALWAYS = "always"
|
|
34
36
|
|
|
35
37
|
|
|
36
38
|
class InputAzureBlobCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
37
39
|
r"""Codec to use to compress the persisted data"""
|
|
38
40
|
|
|
41
|
+
# None
|
|
39
42
|
NONE = "none"
|
|
43
|
+
# Gzip
|
|
40
44
|
GZIP = "gzip"
|
|
41
45
|
|
|
42
46
|
|