cribl-control-plane 0.0.42__py3-none-any.whl → 0.0.44a1__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/models/__init__.py +387 -0
- cribl_control_plane/models/input.py +2 -2
- cribl_control_plane/models/inputappscope.py +13 -0
- cribl_control_plane/models/inputazureblob.py +13 -0
- cribl_control_plane/models/inputcollection.py +13 -0
- cribl_control_plane/models/inputconfluentcloud.py +20 -0
- cribl_control_plane/models/inputcribl.py +13 -0
- cribl_control_plane/models/inputcriblhttp.py +13 -0
- cribl_control_plane/models/inputcribllakehttp.py +38 -4
- cribl_control_plane/models/inputcriblmetrics.py +13 -0
- cribl_control_plane/models/inputcribltcp.py +13 -0
- cribl_control_plane/models/inputcrowdstrike.py +13 -0
- cribl_control_plane/models/inputdatadogagent.py +13 -0
- cribl_control_plane/models/inputdatagen.py +13 -0
- cribl_control_plane/models/inputedgeprometheus.py +13 -0
- cribl_control_plane/models/inputelastic.py +13 -0
- cribl_control_plane/models/inputeventhub.py +13 -0
- cribl_control_plane/models/inputexec.py +13 -0
- cribl_control_plane/models/inputfile.py +13 -0
- cribl_control_plane/models/inputfirehose.py +13 -0
- cribl_control_plane/models/inputgooglepubsub.py +13 -0
- cribl_control_plane/models/inputgrafana.py +26 -14
- cribl_control_plane/models/inputhttp.py +13 -0
- cribl_control_plane/models/inputhttpraw.py +13 -0
- cribl_control_plane/models/inputjournalfiles.py +13 -0
- cribl_control_plane/models/inputkafka.py +20 -0
- cribl_control_plane/models/inputkinesis.py +13 -0
- cribl_control_plane/models/inputkubeevents.py +13 -0
- cribl_control_plane/models/inputkubelogs.py +13 -0
- cribl_control_plane/models/inputkubemetrics.py +13 -0
- cribl_control_plane/models/inputloki.py +13 -7
- cribl_control_plane/models/inputmetrics.py +13 -0
- cribl_control_plane/models/inputmodeldriventelemetry.py +14 -0
- cribl_control_plane/models/inputmsk.py +13 -0
- cribl_control_plane/models/inputnetflow.py +13 -0
- cribl_control_plane/models/inputoffice365mgmt.py +13 -0
- cribl_control_plane/models/inputoffice365msgtrace.py +13 -0
- cribl_control_plane/models/inputoffice365service.py +13 -0
- cribl_control_plane/models/inputopentelemetry.py +13 -0
- cribl_control_plane/models/inputprometheus.py +13 -0
- cribl_control_plane/models/inputprometheusrw.py +13 -0
- cribl_control_plane/models/inputrawudp.py +13 -0
- cribl_control_plane/models/inputs3.py +13 -0
- cribl_control_plane/models/inputs3inventory.py +13 -0
- cribl_control_plane/models/inputsecuritylake.py +13 -0
- cribl_control_plane/models/inputsnmp.py +13 -0
- cribl_control_plane/models/inputsplunk.py +13 -0
- cribl_control_plane/models/inputsplunkhec.py +13 -0
- cribl_control_plane/models/inputsplunksearch.py +13 -0
- cribl_control_plane/models/inputsqs.py +13 -0
- cribl_control_plane/models/inputsyslog.py +26 -0
- cribl_control_plane/models/inputsystemmetrics.py +13 -0
- cribl_control_plane/models/inputsystemstate.py +13 -0
- cribl_control_plane/models/inputtcp.py +13 -0
- cribl_control_plane/models/inputtcpjson.py +13 -0
- cribl_control_plane/models/inputwef.py +13 -0
- cribl_control_plane/models/inputwindowsmetrics.py +13 -0
- cribl_control_plane/models/inputwineventlogs.py +13 -0
- cribl_control_plane/models/inputwiz.py +13 -0
- cribl_control_plane/models/inputwizwebhook.py +13 -0
- cribl_control_plane/models/inputzscalerhec.py +13 -0
- cribl_control_plane/models/output.py +18 -18
- cribl_control_plane/models/outputazuredataexplorer.py +7 -0
- cribl_control_plane/models/outputconfluentcloud.py +7 -0
- cribl_control_plane/models/outputgrafanacloud.py +0 -14
- cribl_control_plane/models/outputkafka.py +7 -0
- cribl_control_plane/models/outputloki.py +0 -7
- cribl_control_plane/models/outputsyslog.py +68 -0
- {cribl_control_plane-0.0.42.dist-info → cribl_control_plane-0.0.44a1.dist-info}/METADATA +1 -1
- {cribl_control_plane-0.0.42.dist-info → cribl_control_plane-0.0.44a1.dist-info}/RECORD +72 -72
- {cribl_control_plane-0.0.42.dist-info → cribl_control_plane-0.0.44a1.dist-info}/WHEEL +0 -0
|
@@ -391,6 +391,8 @@ if TYPE_CHECKING:
|
|
|
391
391
|
InputAppscopePersistence,
|
|
392
392
|
InputAppscopePersistenceTypedDict,
|
|
393
393
|
InputAppscopePq,
|
|
394
|
+
InputAppscopePqControls,
|
|
395
|
+
InputAppscopePqControlsTypedDict,
|
|
394
396
|
InputAppscopePqTypedDict,
|
|
395
397
|
InputAppscopeTLSSettingsServerSide,
|
|
396
398
|
InputAppscopeTLSSettingsServerSideTypedDict,
|
|
@@ -409,6 +411,8 @@ if TYPE_CHECKING:
|
|
|
409
411
|
InputAzureBlobMetadatumTypedDict,
|
|
410
412
|
InputAzureBlobMode,
|
|
411
413
|
InputAzureBlobPq,
|
|
414
|
+
InputAzureBlobPqControls,
|
|
415
|
+
InputAzureBlobPqControlsTypedDict,
|
|
412
416
|
InputAzureBlobPqTypedDict,
|
|
413
417
|
InputAzureBlobType,
|
|
414
418
|
InputAzureBlobTypedDict,
|
|
@@ -422,6 +426,8 @@ if TYPE_CHECKING:
|
|
|
422
426
|
InputCollectionMetadatumTypedDict,
|
|
423
427
|
InputCollectionMode,
|
|
424
428
|
InputCollectionPq,
|
|
429
|
+
InputCollectionPqControls,
|
|
430
|
+
InputCollectionPqControlsTypedDict,
|
|
425
431
|
InputCollectionPqTypedDict,
|
|
426
432
|
InputCollectionPreprocess,
|
|
427
433
|
InputCollectionPreprocessTypedDict,
|
|
@@ -449,6 +455,8 @@ if TYPE_CHECKING:
|
|
|
449
455
|
InputConfluentCloudMinimumTLSVersion,
|
|
450
456
|
InputConfluentCloudMode,
|
|
451
457
|
InputConfluentCloudPq,
|
|
458
|
+
InputConfluentCloudPqControls,
|
|
459
|
+
InputConfluentCloudPqControlsTypedDict,
|
|
452
460
|
InputConfluentCloudPqTypedDict,
|
|
453
461
|
InputConfluentCloudSASLMechanism,
|
|
454
462
|
InputConfluentCloudSchemaType,
|
|
@@ -466,6 +474,8 @@ if TYPE_CHECKING:
|
|
|
466
474
|
InputCriblMetadatumTypedDict,
|
|
467
475
|
InputCriblMode,
|
|
468
476
|
InputCriblPq,
|
|
477
|
+
InputCriblPqControls,
|
|
478
|
+
InputCriblPqControlsTypedDict,
|
|
469
479
|
InputCriblPqTypedDict,
|
|
470
480
|
InputCriblType,
|
|
471
481
|
InputCriblTypedDict,
|
|
@@ -481,6 +491,8 @@ if TYPE_CHECKING:
|
|
|
481
491
|
InputCriblHTTPMinimumTLSVersion,
|
|
482
492
|
InputCriblHTTPMode,
|
|
483
493
|
InputCriblHTTPPq,
|
|
494
|
+
InputCriblHTTPPqControls,
|
|
495
|
+
InputCriblHTTPPqControlsTypedDict,
|
|
484
496
|
InputCriblHTTPPqTypedDict,
|
|
485
497
|
InputCriblHTTPTLSSettingsServerSide,
|
|
486
498
|
InputCriblHTTPTLSSettingsServerSideTypedDict,
|
|
@@ -488,6 +500,8 @@ if TYPE_CHECKING:
|
|
|
488
500
|
InputCriblHTTPTypedDict,
|
|
489
501
|
)
|
|
490
502
|
from .inputcribllakehttp import (
|
|
503
|
+
ElasticsearchMetadata,
|
|
504
|
+
ElasticsearchMetadataTypedDict,
|
|
491
505
|
InputCriblLakeHTTP,
|
|
492
506
|
InputCriblLakeHTTPAuthTokensExt,
|
|
493
507
|
InputCriblLakeHTTPAuthTokensExtMetadatum,
|
|
@@ -502,11 +516,15 @@ if TYPE_CHECKING:
|
|
|
502
516
|
InputCriblLakeHTTPMinimumTLSVersion,
|
|
503
517
|
InputCriblLakeHTTPMode,
|
|
504
518
|
InputCriblLakeHTTPPq,
|
|
519
|
+
InputCriblLakeHTTPPqControls,
|
|
520
|
+
InputCriblLakeHTTPPqControlsTypedDict,
|
|
505
521
|
InputCriblLakeHTTPPqTypedDict,
|
|
506
522
|
InputCriblLakeHTTPTLSSettingsServerSide,
|
|
507
523
|
InputCriblLakeHTTPTLSSettingsServerSideTypedDict,
|
|
508
524
|
InputCriblLakeHTTPType,
|
|
509
525
|
InputCriblLakeHTTPTypedDict,
|
|
526
|
+
SplunkHecMetadata,
|
|
527
|
+
SplunkHecMetadataTypedDict,
|
|
510
528
|
)
|
|
511
529
|
from .inputcriblmetrics import (
|
|
512
530
|
InputCriblmetrics,
|
|
@@ -517,6 +535,8 @@ if TYPE_CHECKING:
|
|
|
517
535
|
InputCriblmetricsMetadatumTypedDict,
|
|
518
536
|
InputCriblmetricsMode,
|
|
519
537
|
InputCriblmetricsPq,
|
|
538
|
+
InputCriblmetricsPqControls,
|
|
539
|
+
InputCriblmetricsPqControlsTypedDict,
|
|
520
540
|
InputCriblmetricsPqTypedDict,
|
|
521
541
|
InputCriblmetricsType,
|
|
522
542
|
InputCriblmetricsTypedDict,
|
|
@@ -532,6 +552,8 @@ if TYPE_CHECKING:
|
|
|
532
552
|
InputCriblTCPMinimumTLSVersion,
|
|
533
553
|
InputCriblTCPMode,
|
|
534
554
|
InputCriblTCPPq,
|
|
555
|
+
InputCriblTCPPqControls,
|
|
556
|
+
InputCriblTCPPqControlsTypedDict,
|
|
535
557
|
InputCriblTCPPqTypedDict,
|
|
536
558
|
InputCriblTCPTLSSettingsServerSide,
|
|
537
559
|
InputCriblTCPTLSSettingsServerSideTypedDict,
|
|
@@ -550,6 +572,8 @@ if TYPE_CHECKING:
|
|
|
550
572
|
InputCrowdstrikeMetadatumTypedDict,
|
|
551
573
|
InputCrowdstrikeMode,
|
|
552
574
|
InputCrowdstrikePq,
|
|
575
|
+
InputCrowdstrikePqControls,
|
|
576
|
+
InputCrowdstrikePqControlsTypedDict,
|
|
553
577
|
InputCrowdstrikePqTypedDict,
|
|
554
578
|
InputCrowdstrikePreprocess,
|
|
555
579
|
InputCrowdstrikePreprocessTypedDict,
|
|
@@ -569,6 +593,8 @@ if TYPE_CHECKING:
|
|
|
569
593
|
InputDatadogAgentMinimumTLSVersion,
|
|
570
594
|
InputDatadogAgentMode,
|
|
571
595
|
InputDatadogAgentPq,
|
|
596
|
+
InputDatadogAgentPqControls,
|
|
597
|
+
InputDatadogAgentPqControlsTypedDict,
|
|
572
598
|
InputDatadogAgentPqTypedDict,
|
|
573
599
|
InputDatadogAgentProxyMode,
|
|
574
600
|
InputDatadogAgentProxyModeTypedDict,
|
|
@@ -586,6 +612,8 @@ if TYPE_CHECKING:
|
|
|
586
612
|
InputDatagenMetadatumTypedDict,
|
|
587
613
|
InputDatagenMode,
|
|
588
614
|
InputDatagenPq,
|
|
615
|
+
InputDatagenPqControls,
|
|
616
|
+
InputDatagenPqControlsTypedDict,
|
|
589
617
|
InputDatagenPqTypedDict,
|
|
590
618
|
InputDatagenType,
|
|
591
619
|
InputDatagenTypedDict,
|
|
@@ -607,6 +635,8 @@ if TYPE_CHECKING:
|
|
|
607
635
|
InputEdgePrometheusPersistenceCompression,
|
|
608
636
|
InputEdgePrometheusPq,
|
|
609
637
|
InputEdgePrometheusPqCompression,
|
|
638
|
+
InputEdgePrometheusPqControls,
|
|
639
|
+
InputEdgePrometheusPqControlsTypedDict,
|
|
610
640
|
InputEdgePrometheusPqTypedDict,
|
|
611
641
|
InputEdgePrometheusRecordType,
|
|
612
642
|
InputEdgePrometheusSearchFilter,
|
|
@@ -637,6 +667,8 @@ if TYPE_CHECKING:
|
|
|
637
667
|
InputElasticMinimumTLSVersion,
|
|
638
668
|
InputElasticMode,
|
|
639
669
|
InputElasticPq,
|
|
670
|
+
InputElasticPqControls,
|
|
671
|
+
InputElasticPqControlsTypedDict,
|
|
640
672
|
InputElasticPqTypedDict,
|
|
641
673
|
InputElasticProxyMode,
|
|
642
674
|
InputElasticProxyModeTypedDict,
|
|
@@ -656,6 +688,8 @@ if TYPE_CHECKING:
|
|
|
656
688
|
InputEventhubMetadatumTypedDict,
|
|
657
689
|
InputEventhubMode,
|
|
658
690
|
InputEventhubPq,
|
|
691
|
+
InputEventhubPqControls,
|
|
692
|
+
InputEventhubPqControlsTypedDict,
|
|
659
693
|
InputEventhubPqTypedDict,
|
|
660
694
|
InputEventhubSASLMechanism,
|
|
661
695
|
InputEventhubTLSSettingsClientSide,
|
|
@@ -672,6 +706,8 @@ if TYPE_CHECKING:
|
|
|
672
706
|
InputExecMetadatumTypedDict,
|
|
673
707
|
InputExecMode,
|
|
674
708
|
InputExecPq,
|
|
709
|
+
InputExecPqControls,
|
|
710
|
+
InputExecPqControlsTypedDict,
|
|
675
711
|
InputExecPqTypedDict,
|
|
676
712
|
InputExecType,
|
|
677
713
|
InputExecTypedDict,
|
|
@@ -686,6 +722,8 @@ if TYPE_CHECKING:
|
|
|
686
722
|
InputFileMetadatumTypedDict,
|
|
687
723
|
InputFileMode,
|
|
688
724
|
InputFilePq,
|
|
725
|
+
InputFilePqControls,
|
|
726
|
+
InputFilePqControlsTypedDict,
|
|
689
727
|
InputFilePqMode,
|
|
690
728
|
InputFilePqTypedDict,
|
|
691
729
|
InputFileType,
|
|
@@ -702,6 +740,8 @@ if TYPE_CHECKING:
|
|
|
702
740
|
InputFirehoseMinimumTLSVersion,
|
|
703
741
|
InputFirehoseMode,
|
|
704
742
|
InputFirehosePq,
|
|
743
|
+
InputFirehosePqControls,
|
|
744
|
+
InputFirehosePqControlsTypedDict,
|
|
705
745
|
InputFirehosePqTypedDict,
|
|
706
746
|
InputFirehoseTLSSettingsServerSide,
|
|
707
747
|
InputFirehoseTLSSettingsServerSideTypedDict,
|
|
@@ -718,6 +758,8 @@ if TYPE_CHECKING:
|
|
|
718
758
|
InputGooglePubsubMetadatumTypedDict,
|
|
719
759
|
InputGooglePubsubMode,
|
|
720
760
|
InputGooglePubsubPq,
|
|
761
|
+
InputGooglePubsubPqControls,
|
|
762
|
+
InputGooglePubsubPqControlsTypedDict,
|
|
721
763
|
InputGooglePubsubPqTypedDict,
|
|
722
764
|
InputGooglePubsubType,
|
|
723
765
|
InputGooglePubsubTypedDict,
|
|
@@ -754,6 +796,10 @@ if TYPE_CHECKING:
|
|
|
754
796
|
InputGrafanaPq1TypedDict,
|
|
755
797
|
InputGrafanaPq2,
|
|
756
798
|
InputGrafanaPq2TypedDict,
|
|
799
|
+
InputGrafanaPqControls1,
|
|
800
|
+
InputGrafanaPqControls1TypedDict,
|
|
801
|
+
InputGrafanaPqControls2,
|
|
802
|
+
InputGrafanaPqControls2TypedDict,
|
|
757
803
|
InputGrafanaPrometheusAuth1,
|
|
758
804
|
InputGrafanaPrometheusAuth1TypedDict,
|
|
759
805
|
InputGrafanaPrometheusAuth2,
|
|
@@ -799,6 +845,8 @@ if TYPE_CHECKING:
|
|
|
799
845
|
InputHTTPMinimumTLSVersion,
|
|
800
846
|
InputHTTPMode,
|
|
801
847
|
InputHTTPPq,
|
|
848
|
+
InputHTTPPqControls,
|
|
849
|
+
InputHTTPPqControlsTypedDict,
|
|
802
850
|
InputHTTPPqTypedDict,
|
|
803
851
|
InputHTTPTLSSettingsServerSide,
|
|
804
852
|
InputHTTPTLSSettingsServerSideTypedDict,
|
|
@@ -820,6 +868,8 @@ if TYPE_CHECKING:
|
|
|
820
868
|
InputHTTPRawMinimumTLSVersion,
|
|
821
869
|
InputHTTPRawMode,
|
|
822
870
|
InputHTTPRawPq,
|
|
871
|
+
InputHTTPRawPqControls,
|
|
872
|
+
InputHTTPRawPqControlsTypedDict,
|
|
823
873
|
InputHTTPRawPqTypedDict,
|
|
824
874
|
InputHTTPRawTLSSettingsServerSide,
|
|
825
875
|
InputHTTPRawTLSSettingsServerSideTypedDict,
|
|
@@ -835,6 +885,8 @@ if TYPE_CHECKING:
|
|
|
835
885
|
InputJournalFilesMetadatumTypedDict,
|
|
836
886
|
InputJournalFilesMode,
|
|
837
887
|
InputJournalFilesPq,
|
|
888
|
+
InputJournalFilesPqControls,
|
|
889
|
+
InputJournalFilesPqControlsTypedDict,
|
|
838
890
|
InputJournalFilesPqTypedDict,
|
|
839
891
|
InputJournalFilesRule,
|
|
840
892
|
InputJournalFilesRuleTypedDict,
|
|
@@ -862,6 +914,8 @@ if TYPE_CHECKING:
|
|
|
862
914
|
InputKafkaMinimumTLSVersion,
|
|
863
915
|
InputKafkaMode,
|
|
864
916
|
InputKafkaPq,
|
|
917
|
+
InputKafkaPqControls,
|
|
918
|
+
InputKafkaPqControlsTypedDict,
|
|
865
919
|
InputKafkaPqTypedDict,
|
|
866
920
|
InputKafkaSASLMechanism,
|
|
867
921
|
InputKafkaSchemaType,
|
|
@@ -880,6 +934,8 @@ if TYPE_CHECKING:
|
|
|
880
934
|
InputKinesisMetadatumTypedDict,
|
|
881
935
|
InputKinesisMode,
|
|
882
936
|
InputKinesisPq,
|
|
937
|
+
InputKinesisPqControls,
|
|
938
|
+
InputKinesisPqControlsTypedDict,
|
|
883
939
|
InputKinesisPqTypedDict,
|
|
884
940
|
InputKinesisRecordDataFormat,
|
|
885
941
|
InputKinesisSignatureVersion,
|
|
@@ -897,6 +953,8 @@ if TYPE_CHECKING:
|
|
|
897
953
|
InputKubeEventsMetadatumTypedDict,
|
|
898
954
|
InputKubeEventsMode,
|
|
899
955
|
InputKubeEventsPq,
|
|
956
|
+
InputKubeEventsPqControls,
|
|
957
|
+
InputKubeEventsPqControlsTypedDict,
|
|
900
958
|
InputKubeEventsPqTypedDict,
|
|
901
959
|
InputKubeEventsRule,
|
|
902
960
|
InputKubeEventsRuleTypedDict,
|
|
@@ -915,6 +973,8 @@ if TYPE_CHECKING:
|
|
|
915
973
|
InputKubeLogsPersistenceCompression,
|
|
916
974
|
InputKubeLogsPq,
|
|
917
975
|
InputKubeLogsPqCompression,
|
|
976
|
+
InputKubeLogsPqControls,
|
|
977
|
+
InputKubeLogsPqControlsTypedDict,
|
|
918
978
|
InputKubeLogsPqTypedDict,
|
|
919
979
|
InputKubeLogsRule,
|
|
920
980
|
InputKubeLogsRuleTypedDict,
|
|
@@ -933,6 +993,8 @@ if TYPE_CHECKING:
|
|
|
933
993
|
InputKubeMetricsPersistence,
|
|
934
994
|
InputKubeMetricsPersistenceTypedDict,
|
|
935
995
|
InputKubeMetricsPq,
|
|
996
|
+
InputKubeMetricsPqControls,
|
|
997
|
+
InputKubeMetricsPqControlsTypedDict,
|
|
936
998
|
InputKubeMetricsPqTypedDict,
|
|
937
999
|
InputKubeMetricsRule,
|
|
938
1000
|
InputKubeMetricsRuleTypedDict,
|
|
@@ -955,6 +1017,8 @@ if TYPE_CHECKING:
|
|
|
955
1017
|
InputLokiOauthParam,
|
|
956
1018
|
InputLokiOauthParamTypedDict,
|
|
957
1019
|
InputLokiPq,
|
|
1020
|
+
InputLokiPqControls,
|
|
1021
|
+
InputLokiPqControlsTypedDict,
|
|
958
1022
|
InputLokiPqTypedDict,
|
|
959
1023
|
InputLokiTLSSettingsServerSide,
|
|
960
1024
|
InputLokiTLSSettingsServerSideTypedDict,
|
|
@@ -972,6 +1036,8 @@ if TYPE_CHECKING:
|
|
|
972
1036
|
InputMetricsMinimumTLSVersion,
|
|
973
1037
|
InputMetricsMode,
|
|
974
1038
|
InputMetricsPq,
|
|
1039
|
+
InputMetricsPqControls,
|
|
1040
|
+
InputMetricsPqControlsTypedDict,
|
|
975
1041
|
InputMetricsPqTypedDict,
|
|
976
1042
|
InputMetricsTLSSettingsServerSide,
|
|
977
1043
|
InputMetricsTLSSettingsServerSideTypedDict,
|
|
@@ -989,6 +1055,8 @@ if TYPE_CHECKING:
|
|
|
989
1055
|
InputModelDrivenTelemetryMinimumTLSVersion,
|
|
990
1056
|
InputModelDrivenTelemetryMode,
|
|
991
1057
|
InputModelDrivenTelemetryPq,
|
|
1058
|
+
InputModelDrivenTelemetryPqControls,
|
|
1059
|
+
InputModelDrivenTelemetryPqControlsTypedDict,
|
|
992
1060
|
InputModelDrivenTelemetryPqTypedDict,
|
|
993
1061
|
InputModelDrivenTelemetryTLSSettingsServerSide,
|
|
994
1062
|
InputModelDrivenTelemetryTLSSettingsServerSideTypedDict,
|
|
@@ -1015,6 +1083,8 @@ if TYPE_CHECKING:
|
|
|
1015
1083
|
InputMskMinimumTLSVersion,
|
|
1016
1084
|
InputMskMode,
|
|
1017
1085
|
InputMskPq,
|
|
1086
|
+
InputMskPqControls,
|
|
1087
|
+
InputMskPqControlsTypedDict,
|
|
1018
1088
|
InputMskPqTypedDict,
|
|
1019
1089
|
InputMskSchemaType,
|
|
1020
1090
|
InputMskSignatureVersion,
|
|
@@ -1032,6 +1102,8 @@ if TYPE_CHECKING:
|
|
|
1032
1102
|
InputNetflowMetadatumTypedDict,
|
|
1033
1103
|
InputNetflowMode,
|
|
1034
1104
|
InputNetflowPq,
|
|
1105
|
+
InputNetflowPqControls,
|
|
1106
|
+
InputNetflowPqControlsTypedDict,
|
|
1035
1107
|
InputNetflowPqTypedDict,
|
|
1036
1108
|
InputNetflowType,
|
|
1037
1109
|
InputNetflowTypedDict,
|
|
@@ -1049,6 +1121,8 @@ if TYPE_CHECKING:
|
|
|
1049
1121
|
InputOffice365MgmtMetadatumTypedDict,
|
|
1050
1122
|
InputOffice365MgmtMode,
|
|
1051
1123
|
InputOffice365MgmtPq,
|
|
1124
|
+
InputOffice365MgmtPqControls,
|
|
1125
|
+
InputOffice365MgmtPqControlsTypedDict,
|
|
1052
1126
|
InputOffice365MgmtPqTypedDict,
|
|
1053
1127
|
InputOffice365MgmtRetryRules,
|
|
1054
1128
|
InputOffice365MgmtRetryRulesTypedDict,
|
|
@@ -1070,6 +1144,8 @@ if TYPE_CHECKING:
|
|
|
1070
1144
|
InputOffice365MsgTraceMetadatumTypedDict,
|
|
1071
1145
|
InputOffice365MsgTraceMode,
|
|
1072
1146
|
InputOffice365MsgTracePq,
|
|
1147
|
+
InputOffice365MsgTracePqControls,
|
|
1148
|
+
InputOffice365MsgTracePqControlsTypedDict,
|
|
1073
1149
|
InputOffice365MsgTracePqTypedDict,
|
|
1074
1150
|
InputOffice365MsgTraceRetryRules,
|
|
1075
1151
|
InputOffice365MsgTraceRetryRulesTypedDict,
|
|
@@ -1091,6 +1167,8 @@ if TYPE_CHECKING:
|
|
|
1091
1167
|
InputOffice365ServiceMetadatumTypedDict,
|
|
1092
1168
|
InputOffice365ServiceMode,
|
|
1093
1169
|
InputOffice365ServicePq,
|
|
1170
|
+
InputOffice365ServicePqControls,
|
|
1171
|
+
InputOffice365ServicePqControlsTypedDict,
|
|
1094
1172
|
InputOffice365ServicePqTypedDict,
|
|
1095
1173
|
InputOffice365ServiceRetryRules,
|
|
1096
1174
|
InputOffice365ServiceRetryRulesTypedDict,
|
|
@@ -1116,6 +1194,8 @@ if TYPE_CHECKING:
|
|
|
1116
1194
|
InputOpenTelemetryOauthParam,
|
|
1117
1195
|
InputOpenTelemetryOauthParamTypedDict,
|
|
1118
1196
|
InputOpenTelemetryPq,
|
|
1197
|
+
InputOpenTelemetryPqControls,
|
|
1198
|
+
InputOpenTelemetryPqControlsTypedDict,
|
|
1119
1199
|
InputOpenTelemetryPqTypedDict,
|
|
1120
1200
|
InputOpenTelemetryProtocol,
|
|
1121
1201
|
InputOpenTelemetryTLSSettingsServerSide,
|
|
@@ -1136,6 +1216,8 @@ if TYPE_CHECKING:
|
|
|
1136
1216
|
InputPrometheusMetadatumTypedDict,
|
|
1137
1217
|
InputPrometheusMode,
|
|
1138
1218
|
InputPrometheusPq,
|
|
1219
|
+
InputPrometheusPqControls,
|
|
1220
|
+
InputPrometheusPqControlsTypedDict,
|
|
1139
1221
|
InputPrometheusPqTypedDict,
|
|
1140
1222
|
InputPrometheusRecordType,
|
|
1141
1223
|
InputPrometheusSearchFilter,
|
|
@@ -1161,6 +1243,8 @@ if TYPE_CHECKING:
|
|
|
1161
1243
|
InputPrometheusRwOauthParam,
|
|
1162
1244
|
InputPrometheusRwOauthParamTypedDict,
|
|
1163
1245
|
InputPrometheusRwPq,
|
|
1246
|
+
InputPrometheusRwPqControls,
|
|
1247
|
+
InputPrometheusRwPqControlsTypedDict,
|
|
1164
1248
|
InputPrometheusRwPqTypedDict,
|
|
1165
1249
|
InputPrometheusRwTLSSettingsServerSide,
|
|
1166
1250
|
InputPrometheusRwTLSSettingsServerSideTypedDict,
|
|
@@ -1176,6 +1260,8 @@ if TYPE_CHECKING:
|
|
|
1176
1260
|
InputRawUDPMetadatumTypedDict,
|
|
1177
1261
|
InputRawUDPMode,
|
|
1178
1262
|
InputRawUDPPq,
|
|
1263
|
+
InputRawUDPPqControls,
|
|
1264
|
+
InputRawUDPPqControlsTypedDict,
|
|
1179
1265
|
InputRawUDPPqTypedDict,
|
|
1180
1266
|
InputRawUDPType,
|
|
1181
1267
|
InputRawUDPTypedDict,
|
|
@@ -1192,6 +1278,8 @@ if TYPE_CHECKING:
|
|
|
1192
1278
|
InputS3MetadatumTypedDict,
|
|
1193
1279
|
InputS3Mode,
|
|
1194
1280
|
InputS3Pq,
|
|
1281
|
+
InputS3PqControls,
|
|
1282
|
+
InputS3PqControlsTypedDict,
|
|
1195
1283
|
InputS3PqTypedDict,
|
|
1196
1284
|
InputS3Preprocess,
|
|
1197
1285
|
InputS3PreprocessTypedDict,
|
|
@@ -1211,6 +1299,8 @@ if TYPE_CHECKING:
|
|
|
1211
1299
|
InputS3InventoryMetadatumTypedDict,
|
|
1212
1300
|
InputS3InventoryMode,
|
|
1213
1301
|
InputS3InventoryPq,
|
|
1302
|
+
InputS3InventoryPqControls,
|
|
1303
|
+
InputS3InventoryPqControlsTypedDict,
|
|
1214
1304
|
InputS3InventoryPqTypedDict,
|
|
1215
1305
|
InputS3InventoryPreprocess,
|
|
1216
1306
|
InputS3InventoryPreprocessTypedDict,
|
|
@@ -1231,6 +1321,8 @@ if TYPE_CHECKING:
|
|
|
1231
1321
|
InputSecurityLakeMetadatumTypedDict,
|
|
1232
1322
|
InputSecurityLakeMode,
|
|
1233
1323
|
InputSecurityLakePq,
|
|
1324
|
+
InputSecurityLakePqControls,
|
|
1325
|
+
InputSecurityLakePqControlsTypedDict,
|
|
1234
1326
|
InputSecurityLakePqTypedDict,
|
|
1235
1327
|
InputSecurityLakePreprocess,
|
|
1236
1328
|
InputSecurityLakePreprocessTypedDict,
|
|
@@ -1249,6 +1341,8 @@ if TYPE_CHECKING:
|
|
|
1249
1341
|
InputSnmpMetadatumTypedDict,
|
|
1250
1342
|
InputSnmpMode,
|
|
1251
1343
|
InputSnmpPq,
|
|
1344
|
+
InputSnmpPqControls,
|
|
1345
|
+
InputSnmpPqControlsTypedDict,
|
|
1252
1346
|
InputSnmpPqTypedDict,
|
|
1253
1347
|
InputSnmpType,
|
|
1254
1348
|
InputSnmpTypedDict,
|
|
@@ -1272,6 +1366,8 @@ if TYPE_CHECKING:
|
|
|
1272
1366
|
InputSplunkMode,
|
|
1273
1367
|
InputSplunkPq,
|
|
1274
1368
|
InputSplunkPqCompression,
|
|
1369
|
+
InputSplunkPqControls,
|
|
1370
|
+
InputSplunkPqControlsTypedDict,
|
|
1275
1371
|
InputSplunkPqTypedDict,
|
|
1276
1372
|
InputSplunkTLSSettingsServerSide,
|
|
1277
1373
|
InputSplunkTLSSettingsServerSideTypedDict,
|
|
@@ -1294,6 +1390,8 @@ if TYPE_CHECKING:
|
|
|
1294
1390
|
InputSplunkHecMinimumTLSVersion,
|
|
1295
1391
|
InputSplunkHecMode,
|
|
1296
1392
|
InputSplunkHecPq,
|
|
1393
|
+
InputSplunkHecPqControls,
|
|
1394
|
+
InputSplunkHecPqControlsTypedDict,
|
|
1297
1395
|
InputSplunkHecPqTypedDict,
|
|
1298
1396
|
InputSplunkHecTLSSettingsServerSide,
|
|
1299
1397
|
InputSplunkHecTLSSettingsServerSideTypedDict,
|
|
@@ -1319,6 +1417,8 @@ if TYPE_CHECKING:
|
|
|
1319
1417
|
InputSplunkSearchOauthParam,
|
|
1320
1418
|
InputSplunkSearchOauthParamTypedDict,
|
|
1321
1419
|
InputSplunkSearchPq,
|
|
1420
|
+
InputSplunkSearchPqControls,
|
|
1421
|
+
InputSplunkSearchPqControlsTypedDict,
|
|
1322
1422
|
InputSplunkSearchPqTypedDict,
|
|
1323
1423
|
InputSplunkSearchRetryRules,
|
|
1324
1424
|
InputSplunkSearchRetryRulesTypedDict,
|
|
@@ -1337,6 +1437,8 @@ if TYPE_CHECKING:
|
|
|
1337
1437
|
InputSqsMetadatumTypedDict,
|
|
1338
1438
|
InputSqsMode,
|
|
1339
1439
|
InputSqsPq,
|
|
1440
|
+
InputSqsPqControls,
|
|
1441
|
+
InputSqsPqControlsTypedDict,
|
|
1340
1442
|
InputSqsPqTypedDict,
|
|
1341
1443
|
InputSqsQueueType,
|
|
1342
1444
|
InputSqsSignatureVersion,
|
|
@@ -1365,6 +1467,10 @@ if TYPE_CHECKING:
|
|
|
1365
1467
|
InputSyslogPq1TypedDict,
|
|
1366
1468
|
InputSyslogPq2,
|
|
1367
1469
|
InputSyslogPq2TypedDict,
|
|
1470
|
+
InputSyslogPqControls1,
|
|
1471
|
+
InputSyslogPqControls1TypedDict,
|
|
1472
|
+
InputSyslogPqControls2,
|
|
1473
|
+
InputSyslogPqControls2TypedDict,
|
|
1368
1474
|
InputSyslogSyslog1,
|
|
1369
1475
|
InputSyslogSyslog1TypedDict,
|
|
1370
1476
|
InputSyslogSyslog2,
|
|
@@ -1410,6 +1516,8 @@ if TYPE_CHECKING:
|
|
|
1410
1516
|
InputSystemMetricsPersistence,
|
|
1411
1517
|
InputSystemMetricsPersistenceTypedDict,
|
|
1412
1518
|
InputSystemMetricsPq,
|
|
1519
|
+
InputSystemMetricsPqControls,
|
|
1520
|
+
InputSystemMetricsPqControlsTypedDict,
|
|
1413
1521
|
InputSystemMetricsPqMode,
|
|
1414
1522
|
InputSystemMetricsPqTypedDict,
|
|
1415
1523
|
InputSystemMetricsProcess,
|
|
@@ -1446,6 +1554,8 @@ if TYPE_CHECKING:
|
|
|
1446
1554
|
InputSystemStatePersistence,
|
|
1447
1555
|
InputSystemStatePersistenceTypedDict,
|
|
1448
1556
|
InputSystemStatePq,
|
|
1557
|
+
InputSystemStatePqControls,
|
|
1558
|
+
InputSystemStatePqControlsTypedDict,
|
|
1449
1559
|
InputSystemStatePqTypedDict,
|
|
1450
1560
|
InputSystemStateRoutes,
|
|
1451
1561
|
InputSystemStateRoutesTypedDict,
|
|
@@ -1474,6 +1584,8 @@ if TYPE_CHECKING:
|
|
|
1474
1584
|
InputTCPMinimumTLSVersion,
|
|
1475
1585
|
InputTCPMode,
|
|
1476
1586
|
InputTCPPq,
|
|
1587
|
+
InputTCPPqControls,
|
|
1588
|
+
InputTCPPqControlsTypedDict,
|
|
1477
1589
|
InputTCPPqTypedDict,
|
|
1478
1590
|
InputTCPPreprocess,
|
|
1479
1591
|
InputTCPPreprocessTypedDict,
|
|
@@ -1494,6 +1606,8 @@ if TYPE_CHECKING:
|
|
|
1494
1606
|
InputTcpjsonMinimumTLSVersion,
|
|
1495
1607
|
InputTcpjsonMode,
|
|
1496
1608
|
InputTcpjsonPq,
|
|
1609
|
+
InputTcpjsonPqControls,
|
|
1610
|
+
InputTcpjsonPqControlsTypedDict,
|
|
1497
1611
|
InputTcpjsonPqTypedDict,
|
|
1498
1612
|
InputTcpjsonTLSSettingsServerSide,
|
|
1499
1613
|
InputTcpjsonTLSSettingsServerSideTypedDict,
|
|
@@ -1513,6 +1627,8 @@ if TYPE_CHECKING:
|
|
|
1513
1627
|
InputWefMinimumTLSVersion,
|
|
1514
1628
|
InputWefMode,
|
|
1515
1629
|
InputWefPq,
|
|
1630
|
+
InputWefPqControls,
|
|
1631
|
+
InputWefPqControlsTypedDict,
|
|
1516
1632
|
InputWefPqTypedDict,
|
|
1517
1633
|
InputWefType,
|
|
1518
1634
|
InputWefTypedDict,
|
|
@@ -1552,6 +1668,8 @@ if TYPE_CHECKING:
|
|
|
1552
1668
|
InputWindowsMetricsPersistence,
|
|
1553
1669
|
InputWindowsMetricsPersistenceTypedDict,
|
|
1554
1670
|
InputWindowsMetricsPq,
|
|
1671
|
+
InputWindowsMetricsPqControls,
|
|
1672
|
+
InputWindowsMetricsPqControlsTypedDict,
|
|
1555
1673
|
InputWindowsMetricsPqMode,
|
|
1556
1674
|
InputWindowsMetricsPqTypedDict,
|
|
1557
1675
|
InputWindowsMetricsProcess,
|
|
@@ -1574,6 +1692,8 @@ if TYPE_CHECKING:
|
|
|
1574
1692
|
InputWinEventLogsMetadatumTypedDict,
|
|
1575
1693
|
InputWinEventLogsMode,
|
|
1576
1694
|
InputWinEventLogsPq,
|
|
1695
|
+
InputWinEventLogsPqControls,
|
|
1696
|
+
InputWinEventLogsPqControlsTypedDict,
|
|
1577
1697
|
InputWinEventLogsPqTypedDict,
|
|
1578
1698
|
InputWinEventLogsType,
|
|
1579
1699
|
InputWinEventLogsTypedDict,
|
|
@@ -1591,6 +1711,8 @@ if TYPE_CHECKING:
|
|
|
1591
1711
|
InputWizMetadatumTypedDict,
|
|
1592
1712
|
InputWizMode,
|
|
1593
1713
|
InputWizPq,
|
|
1714
|
+
InputWizPqControls,
|
|
1715
|
+
InputWizPqControlsTypedDict,
|
|
1594
1716
|
InputWizPqTypedDict,
|
|
1595
1717
|
InputWizRetryRules,
|
|
1596
1718
|
InputWizRetryRulesTypedDict,
|
|
@@ -1613,6 +1735,8 @@ if TYPE_CHECKING:
|
|
|
1613
1735
|
InputWizWebhookMinimumTLSVersion,
|
|
1614
1736
|
InputWizWebhookMode,
|
|
1615
1737
|
InputWizWebhookPq,
|
|
1738
|
+
InputWizWebhookPqControls,
|
|
1739
|
+
InputWizWebhookPqControlsTypedDict,
|
|
1616
1740
|
InputWizWebhookPqTypedDict,
|
|
1617
1741
|
InputWizWebhookTLSSettingsServerSide,
|
|
1618
1742
|
InputWizWebhookTLSSettingsServerSideTypedDict,
|
|
@@ -1635,6 +1759,8 @@ if TYPE_CHECKING:
|
|
|
1635
1759
|
InputZscalerHecMinimumTLSVersion,
|
|
1636
1760
|
InputZscalerHecMode,
|
|
1637
1761
|
InputZscalerHecPq,
|
|
1762
|
+
InputZscalerHecPqControls,
|
|
1763
|
+
InputZscalerHecPqControlsTypedDict,
|
|
1638
1764
|
InputZscalerHecPqTypedDict,
|
|
1639
1765
|
InputZscalerHecTLSSettingsServerSide,
|
|
1640
1766
|
InputZscalerHecTLSSettingsServerSideTypedDict,
|
|
@@ -2845,6 +2971,8 @@ if TYPE_CHECKING:
|
|
|
2845
2971
|
OutputSyslog,
|
|
2846
2972
|
OutputSyslogBackpressureBehavior,
|
|
2847
2973
|
OutputSyslogCompression,
|
|
2974
|
+
OutputSyslogHost,
|
|
2975
|
+
OutputSyslogHostTypedDict,
|
|
2848
2976
|
OutputSyslogMaximumTLSVersion,
|
|
2849
2977
|
OutputSyslogMessageFormat,
|
|
2850
2978
|
OutputSyslogMinimumTLSVersion,
|
|
@@ -2854,6 +2982,7 @@ if TYPE_CHECKING:
|
|
|
2854
2982
|
OutputSyslogProtocol,
|
|
2855
2983
|
OutputSyslogQueueFullBehavior,
|
|
2856
2984
|
OutputSyslogSeverity,
|
|
2985
|
+
OutputSyslogTLS,
|
|
2857
2986
|
OutputSyslogTLSSettingsClientSide,
|
|
2858
2987
|
OutputSyslogTLSSettingsClientSideTypedDict,
|
|
2859
2988
|
OutputSyslogType,
|
|
@@ -3313,6 +3442,8 @@ __all__ = [
|
|
|
3313
3442
|
"DistributedSummaryWorkers",
|
|
3314
3443
|
"DistributedSummaryWorkersTypedDict",
|
|
3315
3444
|
"ElasticVersion",
|
|
3445
|
+
"ElasticsearchMetadata",
|
|
3446
|
+
"ElasticsearchMetadataTypedDict",
|
|
3316
3447
|
"Endpoint",
|
|
3317
3448
|
"EndpointConfiguration",
|
|
3318
3449
|
"EndpointHeader",
|
|
@@ -3505,6 +3636,8 @@ __all__ = [
|
|
|
3505
3636
|
"InputAppscopePersistence",
|
|
3506
3637
|
"InputAppscopePersistenceTypedDict",
|
|
3507
3638
|
"InputAppscopePq",
|
|
3639
|
+
"InputAppscopePqControls",
|
|
3640
|
+
"InputAppscopePqControlsTypedDict",
|
|
3508
3641
|
"InputAppscopePqTypedDict",
|
|
3509
3642
|
"InputAppscopeTLSSettingsServerSide",
|
|
3510
3643
|
"InputAppscopeTLSSettingsServerSideTypedDict",
|
|
@@ -3521,6 +3654,8 @@ __all__ = [
|
|
|
3521
3654
|
"InputAzureBlobMetadatumTypedDict",
|
|
3522
3655
|
"InputAzureBlobMode",
|
|
3523
3656
|
"InputAzureBlobPq",
|
|
3657
|
+
"InputAzureBlobPqControls",
|
|
3658
|
+
"InputAzureBlobPqControlsTypedDict",
|
|
3524
3659
|
"InputAzureBlobPqTypedDict",
|
|
3525
3660
|
"InputAzureBlobType",
|
|
3526
3661
|
"InputAzureBlobTypedDict",
|
|
@@ -3532,6 +3667,8 @@ __all__ = [
|
|
|
3532
3667
|
"InputCollectionMetadatumTypedDict",
|
|
3533
3668
|
"InputCollectionMode",
|
|
3534
3669
|
"InputCollectionPq",
|
|
3670
|
+
"InputCollectionPqControls",
|
|
3671
|
+
"InputCollectionPqControlsTypedDict",
|
|
3535
3672
|
"InputCollectionPqTypedDict",
|
|
3536
3673
|
"InputCollectionPreprocess",
|
|
3537
3674
|
"InputCollectionPreprocessTypedDict",
|
|
@@ -3557,6 +3694,8 @@ __all__ = [
|
|
|
3557
3694
|
"InputConfluentCloudMinimumTLSVersion",
|
|
3558
3695
|
"InputConfluentCloudMode",
|
|
3559
3696
|
"InputConfluentCloudPq",
|
|
3697
|
+
"InputConfluentCloudPqControls",
|
|
3698
|
+
"InputConfluentCloudPqControlsTypedDict",
|
|
3560
3699
|
"InputConfluentCloudPqTypedDict",
|
|
3561
3700
|
"InputConfluentCloudSASLMechanism",
|
|
3562
3701
|
"InputConfluentCloudSchemaType",
|
|
@@ -3578,6 +3717,8 @@ __all__ = [
|
|
|
3578
3717
|
"InputCriblHTTPMinimumTLSVersion",
|
|
3579
3718
|
"InputCriblHTTPMode",
|
|
3580
3719
|
"InputCriblHTTPPq",
|
|
3720
|
+
"InputCriblHTTPPqControls",
|
|
3721
|
+
"InputCriblHTTPPqControlsTypedDict",
|
|
3581
3722
|
"InputCriblHTTPPqTypedDict",
|
|
3582
3723
|
"InputCriblHTTPTLSSettingsServerSide",
|
|
3583
3724
|
"InputCriblHTTPTLSSettingsServerSideTypedDict",
|
|
@@ -3597,6 +3738,8 @@ __all__ = [
|
|
|
3597
3738
|
"InputCriblLakeHTTPMinimumTLSVersion",
|
|
3598
3739
|
"InputCriblLakeHTTPMode",
|
|
3599
3740
|
"InputCriblLakeHTTPPq",
|
|
3741
|
+
"InputCriblLakeHTTPPqControls",
|
|
3742
|
+
"InputCriblLakeHTTPPqControlsTypedDict",
|
|
3600
3743
|
"InputCriblLakeHTTPPqTypedDict",
|
|
3601
3744
|
"InputCriblLakeHTTPTLSSettingsServerSide",
|
|
3602
3745
|
"InputCriblLakeHTTPTLSSettingsServerSideTypedDict",
|
|
@@ -3606,6 +3749,8 @@ __all__ = [
|
|
|
3606
3749
|
"InputCriblMetadatumTypedDict",
|
|
3607
3750
|
"InputCriblMode",
|
|
3608
3751
|
"InputCriblPq",
|
|
3752
|
+
"InputCriblPqControls",
|
|
3753
|
+
"InputCriblPqControlsTypedDict",
|
|
3609
3754
|
"InputCriblPqTypedDict",
|
|
3610
3755
|
"InputCriblTCP",
|
|
3611
3756
|
"InputCriblTCPCompression",
|
|
@@ -3617,6 +3762,8 @@ __all__ = [
|
|
|
3617
3762
|
"InputCriblTCPMinimumTLSVersion",
|
|
3618
3763
|
"InputCriblTCPMode",
|
|
3619
3764
|
"InputCriblTCPPq",
|
|
3765
|
+
"InputCriblTCPPqControls",
|
|
3766
|
+
"InputCriblTCPPqControlsTypedDict",
|
|
3620
3767
|
"InputCriblTCPPqTypedDict",
|
|
3621
3768
|
"InputCriblTCPTLSSettingsServerSide",
|
|
3622
3769
|
"InputCriblTCPTLSSettingsServerSideTypedDict",
|
|
@@ -3632,6 +3779,8 @@ __all__ = [
|
|
|
3632
3779
|
"InputCriblmetricsMetadatumTypedDict",
|
|
3633
3780
|
"InputCriblmetricsMode",
|
|
3634
3781
|
"InputCriblmetricsPq",
|
|
3782
|
+
"InputCriblmetricsPqControls",
|
|
3783
|
+
"InputCriblmetricsPqControlsTypedDict",
|
|
3635
3784
|
"InputCriblmetricsPqTypedDict",
|
|
3636
3785
|
"InputCriblmetricsType",
|
|
3637
3786
|
"InputCriblmetricsTypedDict",
|
|
@@ -3646,6 +3795,8 @@ __all__ = [
|
|
|
3646
3795
|
"InputCrowdstrikeMetadatumTypedDict",
|
|
3647
3796
|
"InputCrowdstrikeMode",
|
|
3648
3797
|
"InputCrowdstrikePq",
|
|
3798
|
+
"InputCrowdstrikePqControls",
|
|
3799
|
+
"InputCrowdstrikePqControlsTypedDict",
|
|
3649
3800
|
"InputCrowdstrikePqTypedDict",
|
|
3650
3801
|
"InputCrowdstrikePreprocess",
|
|
3651
3802
|
"InputCrowdstrikePreprocessTypedDict",
|
|
@@ -3663,6 +3814,8 @@ __all__ = [
|
|
|
3663
3814
|
"InputDatadogAgentMinimumTLSVersion",
|
|
3664
3815
|
"InputDatadogAgentMode",
|
|
3665
3816
|
"InputDatadogAgentPq",
|
|
3817
|
+
"InputDatadogAgentPqControls",
|
|
3818
|
+
"InputDatadogAgentPqControlsTypedDict",
|
|
3666
3819
|
"InputDatadogAgentPqTypedDict",
|
|
3667
3820
|
"InputDatadogAgentProxyMode",
|
|
3668
3821
|
"InputDatadogAgentProxyModeTypedDict",
|
|
@@ -3678,6 +3831,8 @@ __all__ = [
|
|
|
3678
3831
|
"InputDatagenMetadatumTypedDict",
|
|
3679
3832
|
"InputDatagenMode",
|
|
3680
3833
|
"InputDatagenPq",
|
|
3834
|
+
"InputDatagenPqControls",
|
|
3835
|
+
"InputDatagenPqControlsTypedDict",
|
|
3681
3836
|
"InputDatagenPqTypedDict",
|
|
3682
3837
|
"InputDatagenType",
|
|
3683
3838
|
"InputDatagenTypedDict",
|
|
@@ -3695,6 +3850,8 @@ __all__ = [
|
|
|
3695
3850
|
"InputEdgePrometheusPersistenceCompression",
|
|
3696
3851
|
"InputEdgePrometheusPq",
|
|
3697
3852
|
"InputEdgePrometheusPqCompression",
|
|
3853
|
+
"InputEdgePrometheusPqControls",
|
|
3854
|
+
"InputEdgePrometheusPqControlsTypedDict",
|
|
3698
3855
|
"InputEdgePrometheusPqTypedDict",
|
|
3699
3856
|
"InputEdgePrometheusRecordType",
|
|
3700
3857
|
"InputEdgePrometheusSearchFilter",
|
|
@@ -3717,6 +3874,8 @@ __all__ = [
|
|
|
3717
3874
|
"InputElasticMinimumTLSVersion",
|
|
3718
3875
|
"InputElasticMode",
|
|
3719
3876
|
"InputElasticPq",
|
|
3877
|
+
"InputElasticPqControls",
|
|
3878
|
+
"InputElasticPqControlsTypedDict",
|
|
3720
3879
|
"InputElasticPqTypedDict",
|
|
3721
3880
|
"InputElasticProxyMode",
|
|
3722
3881
|
"InputElasticProxyModeTypedDict",
|
|
@@ -3734,6 +3893,8 @@ __all__ = [
|
|
|
3734
3893
|
"InputEventhubMetadatumTypedDict",
|
|
3735
3894
|
"InputEventhubMode",
|
|
3736
3895
|
"InputEventhubPq",
|
|
3896
|
+
"InputEventhubPqControls",
|
|
3897
|
+
"InputEventhubPqControlsTypedDict",
|
|
3737
3898
|
"InputEventhubPqTypedDict",
|
|
3738
3899
|
"InputEventhubSASLMechanism",
|
|
3739
3900
|
"InputEventhubTLSSettingsClientSide",
|
|
@@ -3748,6 +3909,8 @@ __all__ = [
|
|
|
3748
3909
|
"InputExecMetadatumTypedDict",
|
|
3749
3910
|
"InputExecMode",
|
|
3750
3911
|
"InputExecPq",
|
|
3912
|
+
"InputExecPqControls",
|
|
3913
|
+
"InputExecPqControlsTypedDict",
|
|
3751
3914
|
"InputExecPqTypedDict",
|
|
3752
3915
|
"InputExecType",
|
|
3753
3916
|
"InputExecTypedDict",
|
|
@@ -3759,6 +3922,8 @@ __all__ = [
|
|
|
3759
3922
|
"InputFileMetadatumTypedDict",
|
|
3760
3923
|
"InputFileMode",
|
|
3761
3924
|
"InputFilePq",
|
|
3925
|
+
"InputFilePqControls",
|
|
3926
|
+
"InputFilePqControlsTypedDict",
|
|
3762
3927
|
"InputFilePqMode",
|
|
3763
3928
|
"InputFilePqTypedDict",
|
|
3764
3929
|
"InputFileType",
|
|
@@ -3773,6 +3938,8 @@ __all__ = [
|
|
|
3773
3938
|
"InputFirehoseMinimumTLSVersion",
|
|
3774
3939
|
"InputFirehoseMode",
|
|
3775
3940
|
"InputFirehosePq",
|
|
3941
|
+
"InputFirehosePqControls",
|
|
3942
|
+
"InputFirehosePqControlsTypedDict",
|
|
3776
3943
|
"InputFirehosePqTypedDict",
|
|
3777
3944
|
"InputFirehoseTLSSettingsServerSide",
|
|
3778
3945
|
"InputFirehoseTLSSettingsServerSideTypedDict",
|
|
@@ -3787,6 +3954,8 @@ __all__ = [
|
|
|
3787
3954
|
"InputGooglePubsubMetadatumTypedDict",
|
|
3788
3955
|
"InputGooglePubsubMode",
|
|
3789
3956
|
"InputGooglePubsubPq",
|
|
3957
|
+
"InputGooglePubsubPqControls",
|
|
3958
|
+
"InputGooglePubsubPqControlsTypedDict",
|
|
3790
3959
|
"InputGooglePubsubPqTypedDict",
|
|
3791
3960
|
"InputGooglePubsubType",
|
|
3792
3961
|
"InputGooglePubsubTypedDict",
|
|
@@ -3821,6 +3990,10 @@ __all__ = [
|
|
|
3821
3990
|
"InputGrafanaPq1TypedDict",
|
|
3822
3991
|
"InputGrafanaPq2",
|
|
3823
3992
|
"InputGrafanaPq2TypedDict",
|
|
3993
|
+
"InputGrafanaPqControls1",
|
|
3994
|
+
"InputGrafanaPqControls1TypedDict",
|
|
3995
|
+
"InputGrafanaPqControls2",
|
|
3996
|
+
"InputGrafanaPqControls2TypedDict",
|
|
3824
3997
|
"InputGrafanaPrometheusAuth1",
|
|
3825
3998
|
"InputGrafanaPrometheusAuth1TypedDict",
|
|
3826
3999
|
"InputGrafanaPrometheusAuth2",
|
|
@@ -3848,6 +4021,8 @@ __all__ = [
|
|
|
3848
4021
|
"InputHTTPMinimumTLSVersion",
|
|
3849
4022
|
"InputHTTPMode",
|
|
3850
4023
|
"InputHTTPPq",
|
|
4024
|
+
"InputHTTPPqControls",
|
|
4025
|
+
"InputHTTPPqControlsTypedDict",
|
|
3851
4026
|
"InputHTTPPqTypedDict",
|
|
3852
4027
|
"InputHTTPRaw",
|
|
3853
4028
|
"InputHTTPRawAuthTokensExt",
|
|
@@ -3863,6 +4038,8 @@ __all__ = [
|
|
|
3863
4038
|
"InputHTTPRawMinimumTLSVersion",
|
|
3864
4039
|
"InputHTTPRawMode",
|
|
3865
4040
|
"InputHTTPRawPq",
|
|
4041
|
+
"InputHTTPRawPqControls",
|
|
4042
|
+
"InputHTTPRawPqControlsTypedDict",
|
|
3866
4043
|
"InputHTTPRawPqTypedDict",
|
|
3867
4044
|
"InputHTTPRawTLSSettingsServerSide",
|
|
3868
4045
|
"InputHTTPRawTLSSettingsServerSideTypedDict",
|
|
@@ -3880,6 +4057,8 @@ __all__ = [
|
|
|
3880
4057
|
"InputJournalFilesMetadatumTypedDict",
|
|
3881
4058
|
"InputJournalFilesMode",
|
|
3882
4059
|
"InputJournalFilesPq",
|
|
4060
|
+
"InputJournalFilesPqControls",
|
|
4061
|
+
"InputJournalFilesPqControlsTypedDict",
|
|
3883
4062
|
"InputJournalFilesPqTypedDict",
|
|
3884
4063
|
"InputJournalFilesRule",
|
|
3885
4064
|
"InputJournalFilesRuleTypedDict",
|
|
@@ -3905,6 +4084,8 @@ __all__ = [
|
|
|
3905
4084
|
"InputKafkaMinimumTLSVersion",
|
|
3906
4085
|
"InputKafkaMode",
|
|
3907
4086
|
"InputKafkaPq",
|
|
4087
|
+
"InputKafkaPqControls",
|
|
4088
|
+
"InputKafkaPqControlsTypedDict",
|
|
3908
4089
|
"InputKafkaPqTypedDict",
|
|
3909
4090
|
"InputKafkaSASLMechanism",
|
|
3910
4091
|
"InputKafkaSchemaType",
|
|
@@ -3921,6 +4102,8 @@ __all__ = [
|
|
|
3921
4102
|
"InputKinesisMetadatumTypedDict",
|
|
3922
4103
|
"InputKinesisMode",
|
|
3923
4104
|
"InputKinesisPq",
|
|
4105
|
+
"InputKinesisPqControls",
|
|
4106
|
+
"InputKinesisPqControlsTypedDict",
|
|
3924
4107
|
"InputKinesisPqTypedDict",
|
|
3925
4108
|
"InputKinesisRecordDataFormat",
|
|
3926
4109
|
"InputKinesisSignatureVersion",
|
|
@@ -3934,6 +4117,8 @@ __all__ = [
|
|
|
3934
4117
|
"InputKubeEventsMetadatumTypedDict",
|
|
3935
4118
|
"InputKubeEventsMode",
|
|
3936
4119
|
"InputKubeEventsPq",
|
|
4120
|
+
"InputKubeEventsPqControls",
|
|
4121
|
+
"InputKubeEventsPqControlsTypedDict",
|
|
3937
4122
|
"InputKubeEventsPqTypedDict",
|
|
3938
4123
|
"InputKubeEventsRule",
|
|
3939
4124
|
"InputKubeEventsRuleTypedDict",
|
|
@@ -3950,6 +4135,8 @@ __all__ = [
|
|
|
3950
4135
|
"InputKubeLogsPersistenceCompression",
|
|
3951
4136
|
"InputKubeLogsPq",
|
|
3952
4137
|
"InputKubeLogsPqCompression",
|
|
4138
|
+
"InputKubeLogsPqControls",
|
|
4139
|
+
"InputKubeLogsPqControlsTypedDict",
|
|
3953
4140
|
"InputKubeLogsPqTypedDict",
|
|
3954
4141
|
"InputKubeLogsRule",
|
|
3955
4142
|
"InputKubeLogsRuleTypedDict",
|
|
@@ -3966,6 +4153,8 @@ __all__ = [
|
|
|
3966
4153
|
"InputKubeMetricsPersistence",
|
|
3967
4154
|
"InputKubeMetricsPersistenceTypedDict",
|
|
3968
4155
|
"InputKubeMetricsPq",
|
|
4156
|
+
"InputKubeMetricsPqControls",
|
|
4157
|
+
"InputKubeMetricsPqControlsTypedDict",
|
|
3969
4158
|
"InputKubeMetricsPqTypedDict",
|
|
3970
4159
|
"InputKubeMetricsRule",
|
|
3971
4160
|
"InputKubeMetricsRuleTypedDict",
|
|
@@ -3986,6 +4175,8 @@ __all__ = [
|
|
|
3986
4175
|
"InputLokiOauthParam",
|
|
3987
4176
|
"InputLokiOauthParamTypedDict",
|
|
3988
4177
|
"InputLokiPq",
|
|
4178
|
+
"InputLokiPqControls",
|
|
4179
|
+
"InputLokiPqControlsTypedDict",
|
|
3989
4180
|
"InputLokiPqTypedDict",
|
|
3990
4181
|
"InputLokiTLSSettingsServerSide",
|
|
3991
4182
|
"InputLokiTLSSettingsServerSideTypedDict",
|
|
@@ -4001,6 +4192,8 @@ __all__ = [
|
|
|
4001
4192
|
"InputMetricsMinimumTLSVersion",
|
|
4002
4193
|
"InputMetricsMode",
|
|
4003
4194
|
"InputMetricsPq",
|
|
4195
|
+
"InputMetricsPqControls",
|
|
4196
|
+
"InputMetricsPqControlsTypedDict",
|
|
4004
4197
|
"InputMetricsPqTypedDict",
|
|
4005
4198
|
"InputMetricsTLSSettingsServerSide",
|
|
4006
4199
|
"InputMetricsTLSSettingsServerSideTypedDict",
|
|
@@ -4016,6 +4209,8 @@ __all__ = [
|
|
|
4016
4209
|
"InputModelDrivenTelemetryMinimumTLSVersion",
|
|
4017
4210
|
"InputModelDrivenTelemetryMode",
|
|
4018
4211
|
"InputModelDrivenTelemetryPq",
|
|
4212
|
+
"InputModelDrivenTelemetryPqControls",
|
|
4213
|
+
"InputModelDrivenTelemetryPqControlsTypedDict",
|
|
4019
4214
|
"InputModelDrivenTelemetryPqTypedDict",
|
|
4020
4215
|
"InputModelDrivenTelemetryTLSSettingsServerSide",
|
|
4021
4216
|
"InputModelDrivenTelemetryTLSSettingsServerSideTypedDict",
|
|
@@ -4040,6 +4235,8 @@ __all__ = [
|
|
|
4040
4235
|
"InputMskMinimumTLSVersion",
|
|
4041
4236
|
"InputMskMode",
|
|
4042
4237
|
"InputMskPq",
|
|
4238
|
+
"InputMskPqControls",
|
|
4239
|
+
"InputMskPqControlsTypedDict",
|
|
4043
4240
|
"InputMskPqTypedDict",
|
|
4044
4241
|
"InputMskSchemaType",
|
|
4045
4242
|
"InputMskSignatureVersion",
|
|
@@ -4055,6 +4252,8 @@ __all__ = [
|
|
|
4055
4252
|
"InputNetflowMetadatumTypedDict",
|
|
4056
4253
|
"InputNetflowMode",
|
|
4057
4254
|
"InputNetflowPq",
|
|
4255
|
+
"InputNetflowPqControls",
|
|
4256
|
+
"InputNetflowPqControlsTypedDict",
|
|
4058
4257
|
"InputNetflowPqTypedDict",
|
|
4059
4258
|
"InputNetflowType",
|
|
4060
4259
|
"InputNetflowTypedDict",
|
|
@@ -4070,6 +4269,8 @@ __all__ = [
|
|
|
4070
4269
|
"InputOffice365MgmtMetadatumTypedDict",
|
|
4071
4270
|
"InputOffice365MgmtMode",
|
|
4072
4271
|
"InputOffice365MgmtPq",
|
|
4272
|
+
"InputOffice365MgmtPqControls",
|
|
4273
|
+
"InputOffice365MgmtPqControlsTypedDict",
|
|
4073
4274
|
"InputOffice365MgmtPqTypedDict",
|
|
4074
4275
|
"InputOffice365MgmtRetryRules",
|
|
4075
4276
|
"InputOffice365MgmtRetryRulesTypedDict",
|
|
@@ -4087,6 +4288,8 @@ __all__ = [
|
|
|
4087
4288
|
"InputOffice365MsgTraceMetadatumTypedDict",
|
|
4088
4289
|
"InputOffice365MsgTraceMode",
|
|
4089
4290
|
"InputOffice365MsgTracePq",
|
|
4291
|
+
"InputOffice365MsgTracePqControls",
|
|
4292
|
+
"InputOffice365MsgTracePqControlsTypedDict",
|
|
4090
4293
|
"InputOffice365MsgTracePqTypedDict",
|
|
4091
4294
|
"InputOffice365MsgTraceRetryRules",
|
|
4092
4295
|
"InputOffice365MsgTraceRetryRulesTypedDict",
|
|
@@ -4106,6 +4309,8 @@ __all__ = [
|
|
|
4106
4309
|
"InputOffice365ServiceMetadatumTypedDict",
|
|
4107
4310
|
"InputOffice365ServiceMode",
|
|
4108
4311
|
"InputOffice365ServicePq",
|
|
4312
|
+
"InputOffice365ServicePqControls",
|
|
4313
|
+
"InputOffice365ServicePqControlsTypedDict",
|
|
4109
4314
|
"InputOffice365ServicePqTypedDict",
|
|
4110
4315
|
"InputOffice365ServiceRetryRules",
|
|
4111
4316
|
"InputOffice365ServiceRetryRulesTypedDict",
|
|
@@ -4129,6 +4334,8 @@ __all__ = [
|
|
|
4129
4334
|
"InputOpenTelemetryOauthParam",
|
|
4130
4335
|
"InputOpenTelemetryOauthParamTypedDict",
|
|
4131
4336
|
"InputOpenTelemetryPq",
|
|
4337
|
+
"InputOpenTelemetryPqControls",
|
|
4338
|
+
"InputOpenTelemetryPqControlsTypedDict",
|
|
4132
4339
|
"InputOpenTelemetryPqTypedDict",
|
|
4133
4340
|
"InputOpenTelemetryProtocol",
|
|
4134
4341
|
"InputOpenTelemetryTLSSettingsServerSide",
|
|
@@ -4147,6 +4354,8 @@ __all__ = [
|
|
|
4147
4354
|
"InputPrometheusMetadatumTypedDict",
|
|
4148
4355
|
"InputPrometheusMode",
|
|
4149
4356
|
"InputPrometheusPq",
|
|
4357
|
+
"InputPrometheusPqControls",
|
|
4358
|
+
"InputPrometheusPqControlsTypedDict",
|
|
4150
4359
|
"InputPrometheusPqTypedDict",
|
|
4151
4360
|
"InputPrometheusRecordType",
|
|
4152
4361
|
"InputPrometheusRw",
|
|
@@ -4164,6 +4373,8 @@ __all__ = [
|
|
|
4164
4373
|
"InputPrometheusRwOauthParam",
|
|
4165
4374
|
"InputPrometheusRwOauthParamTypedDict",
|
|
4166
4375
|
"InputPrometheusRwPq",
|
|
4376
|
+
"InputPrometheusRwPqControls",
|
|
4377
|
+
"InputPrometheusRwPqControlsTypedDict",
|
|
4167
4378
|
"InputPrometheusRwPqTypedDict",
|
|
4168
4379
|
"InputPrometheusRwTLSSettingsServerSide",
|
|
4169
4380
|
"InputPrometheusRwTLSSettingsServerSideTypedDict",
|
|
@@ -4182,6 +4393,8 @@ __all__ = [
|
|
|
4182
4393
|
"InputRawUDPMetadatumTypedDict",
|
|
4183
4394
|
"InputRawUDPMode",
|
|
4184
4395
|
"InputRawUDPPq",
|
|
4396
|
+
"InputRawUDPPqControls",
|
|
4397
|
+
"InputRawUDPPqControlsTypedDict",
|
|
4185
4398
|
"InputRawUDPPqTypedDict",
|
|
4186
4399
|
"InputRawUDPType",
|
|
4187
4400
|
"InputRawUDPTypedDict",
|
|
@@ -4203,6 +4416,8 @@ __all__ = [
|
|
|
4203
4416
|
"InputS3InventoryMetadatumTypedDict",
|
|
4204
4417
|
"InputS3InventoryMode",
|
|
4205
4418
|
"InputS3InventoryPq",
|
|
4419
|
+
"InputS3InventoryPqControls",
|
|
4420
|
+
"InputS3InventoryPqControlsTypedDict",
|
|
4206
4421
|
"InputS3InventoryPqTypedDict",
|
|
4207
4422
|
"InputS3InventoryPreprocess",
|
|
4208
4423
|
"InputS3InventoryPreprocessTypedDict",
|
|
@@ -4214,6 +4429,8 @@ __all__ = [
|
|
|
4214
4429
|
"InputS3MetadatumTypedDict",
|
|
4215
4430
|
"InputS3Mode",
|
|
4216
4431
|
"InputS3Pq",
|
|
4432
|
+
"InputS3PqControls",
|
|
4433
|
+
"InputS3PqControlsTypedDict",
|
|
4217
4434
|
"InputS3PqTypedDict",
|
|
4218
4435
|
"InputS3Preprocess",
|
|
4219
4436
|
"InputS3PreprocessTypedDict",
|
|
@@ -4231,6 +4448,8 @@ __all__ = [
|
|
|
4231
4448
|
"InputSecurityLakeMetadatumTypedDict",
|
|
4232
4449
|
"InputSecurityLakeMode",
|
|
4233
4450
|
"InputSecurityLakePq",
|
|
4451
|
+
"InputSecurityLakePqControls",
|
|
4452
|
+
"InputSecurityLakePqControlsTypedDict",
|
|
4234
4453
|
"InputSecurityLakePqTypedDict",
|
|
4235
4454
|
"InputSecurityLakePreprocess",
|
|
4236
4455
|
"InputSecurityLakePreprocessTypedDict",
|
|
@@ -4246,6 +4465,8 @@ __all__ = [
|
|
|
4246
4465
|
"InputSnmpMetadatumTypedDict",
|
|
4247
4466
|
"InputSnmpMode",
|
|
4248
4467
|
"InputSnmpPq",
|
|
4468
|
+
"InputSnmpPqControls",
|
|
4469
|
+
"InputSnmpPqControlsTypedDict",
|
|
4249
4470
|
"InputSnmpPqTypedDict",
|
|
4250
4471
|
"InputSnmpType",
|
|
4251
4472
|
"InputSnmpTypedDict",
|
|
@@ -4270,6 +4491,8 @@ __all__ = [
|
|
|
4270
4491
|
"InputSplunkHecMinimumTLSVersion",
|
|
4271
4492
|
"InputSplunkHecMode",
|
|
4272
4493
|
"InputSplunkHecPq",
|
|
4494
|
+
"InputSplunkHecPqControls",
|
|
4495
|
+
"InputSplunkHecPqControlsTypedDict",
|
|
4273
4496
|
"InputSplunkHecPqTypedDict",
|
|
4274
4497
|
"InputSplunkHecTLSSettingsServerSide",
|
|
4275
4498
|
"InputSplunkHecTLSSettingsServerSideTypedDict",
|
|
@@ -4283,6 +4506,8 @@ __all__ = [
|
|
|
4283
4506
|
"InputSplunkMode",
|
|
4284
4507
|
"InputSplunkPq",
|
|
4285
4508
|
"InputSplunkPqCompression",
|
|
4509
|
+
"InputSplunkPqControls",
|
|
4510
|
+
"InputSplunkPqControlsTypedDict",
|
|
4286
4511
|
"InputSplunkPqTypedDict",
|
|
4287
4512
|
"InputSplunkSearch",
|
|
4288
4513
|
"InputSplunkSearchAuthenticationType",
|
|
@@ -4298,6 +4523,8 @@ __all__ = [
|
|
|
4298
4523
|
"InputSplunkSearchOauthParam",
|
|
4299
4524
|
"InputSplunkSearchOauthParamTypedDict",
|
|
4300
4525
|
"InputSplunkSearchPq",
|
|
4526
|
+
"InputSplunkSearchPqControls",
|
|
4527
|
+
"InputSplunkSearchPqControlsTypedDict",
|
|
4301
4528
|
"InputSplunkSearchPqTypedDict",
|
|
4302
4529
|
"InputSplunkSearchRetryRules",
|
|
4303
4530
|
"InputSplunkSearchRetryRulesTypedDict",
|
|
@@ -4317,6 +4544,8 @@ __all__ = [
|
|
|
4317
4544
|
"InputSqsMetadatumTypedDict",
|
|
4318
4545
|
"InputSqsMode",
|
|
4319
4546
|
"InputSqsPq",
|
|
4547
|
+
"InputSqsPqControls",
|
|
4548
|
+
"InputSqsPqControlsTypedDict",
|
|
4320
4549
|
"InputSqsPqTypedDict",
|
|
4321
4550
|
"InputSqsQueueType",
|
|
4322
4551
|
"InputSqsSignatureVersion",
|
|
@@ -4343,6 +4572,10 @@ __all__ = [
|
|
|
4343
4572
|
"InputSyslogPq1TypedDict",
|
|
4344
4573
|
"InputSyslogPq2",
|
|
4345
4574
|
"InputSyslogPq2TypedDict",
|
|
4575
|
+
"InputSyslogPqControls1",
|
|
4576
|
+
"InputSyslogPqControls1TypedDict",
|
|
4577
|
+
"InputSyslogPqControls2",
|
|
4578
|
+
"InputSyslogPqControls2TypedDict",
|
|
4346
4579
|
"InputSyslogSyslog1",
|
|
4347
4580
|
"InputSyslogSyslog1TypedDict",
|
|
4348
4581
|
"InputSyslogSyslog2",
|
|
@@ -4383,6 +4616,8 @@ __all__ = [
|
|
|
4383
4616
|
"InputSystemMetricsPersistence",
|
|
4384
4617
|
"InputSystemMetricsPersistenceTypedDict",
|
|
4385
4618
|
"InputSystemMetricsPq",
|
|
4619
|
+
"InputSystemMetricsPqControls",
|
|
4620
|
+
"InputSystemMetricsPqControlsTypedDict",
|
|
4386
4621
|
"InputSystemMetricsPqMode",
|
|
4387
4622
|
"InputSystemMetricsPqTypedDict",
|
|
4388
4623
|
"InputSystemMetricsProcess",
|
|
@@ -4405,6 +4640,8 @@ __all__ = [
|
|
|
4405
4640
|
"InputSystemStatePersistence",
|
|
4406
4641
|
"InputSystemStatePersistenceTypedDict",
|
|
4407
4642
|
"InputSystemStatePq",
|
|
4643
|
+
"InputSystemStatePqControls",
|
|
4644
|
+
"InputSystemStatePqControlsTypedDict",
|
|
4408
4645
|
"InputSystemStatePqTypedDict",
|
|
4409
4646
|
"InputSystemStateRoutes",
|
|
4410
4647
|
"InputSystemStateRoutesTypedDict",
|
|
@@ -4421,6 +4658,8 @@ __all__ = [
|
|
|
4421
4658
|
"InputTCPMinimumTLSVersion",
|
|
4422
4659
|
"InputTCPMode",
|
|
4423
4660
|
"InputTCPPq",
|
|
4661
|
+
"InputTCPPqControls",
|
|
4662
|
+
"InputTCPPqControlsTypedDict",
|
|
4424
4663
|
"InputTCPPqTypedDict",
|
|
4425
4664
|
"InputTCPPreprocess",
|
|
4426
4665
|
"InputTCPPreprocessTypedDict",
|
|
@@ -4439,6 +4678,8 @@ __all__ = [
|
|
|
4439
4678
|
"InputTcpjsonMinimumTLSVersion",
|
|
4440
4679
|
"InputTcpjsonMode",
|
|
4441
4680
|
"InputTcpjsonPq",
|
|
4681
|
+
"InputTcpjsonPqControls",
|
|
4682
|
+
"InputTcpjsonPqControlsTypedDict",
|
|
4442
4683
|
"InputTcpjsonPqTypedDict",
|
|
4443
4684
|
"InputTcpjsonTLSSettingsServerSide",
|
|
4444
4685
|
"InputTcpjsonTLSSettingsServerSideTypedDict",
|
|
@@ -4457,6 +4698,8 @@ __all__ = [
|
|
|
4457
4698
|
"InputWefMinimumTLSVersion",
|
|
4458
4699
|
"InputWefMode",
|
|
4459
4700
|
"InputWefPq",
|
|
4701
|
+
"InputWefPqControls",
|
|
4702
|
+
"InputWefPqControlsTypedDict",
|
|
4460
4703
|
"InputWefPqTypedDict",
|
|
4461
4704
|
"InputWefType",
|
|
4462
4705
|
"InputWefTypedDict",
|
|
@@ -4468,6 +4711,8 @@ __all__ = [
|
|
|
4468
4711
|
"InputWinEventLogsMetadatumTypedDict",
|
|
4469
4712
|
"InputWinEventLogsMode",
|
|
4470
4713
|
"InputWinEventLogsPq",
|
|
4714
|
+
"InputWinEventLogsPqControls",
|
|
4715
|
+
"InputWinEventLogsPqControlsTypedDict",
|
|
4471
4716
|
"InputWinEventLogsPqTypedDict",
|
|
4472
4717
|
"InputWinEventLogsType",
|
|
4473
4718
|
"InputWinEventLogsTypedDict",
|
|
@@ -4498,6 +4743,8 @@ __all__ = [
|
|
|
4498
4743
|
"InputWindowsMetricsPersistence",
|
|
4499
4744
|
"InputWindowsMetricsPersistenceTypedDict",
|
|
4500
4745
|
"InputWindowsMetricsPq",
|
|
4746
|
+
"InputWindowsMetricsPqControls",
|
|
4747
|
+
"InputWindowsMetricsPqControlsTypedDict",
|
|
4501
4748
|
"InputWindowsMetricsPqMode",
|
|
4502
4749
|
"InputWindowsMetricsPqTypedDict",
|
|
4503
4750
|
"InputWindowsMetricsProcess",
|
|
@@ -4520,6 +4767,8 @@ __all__ = [
|
|
|
4520
4767
|
"InputWizMetadatumTypedDict",
|
|
4521
4768
|
"InputWizMode",
|
|
4522
4769
|
"InputWizPq",
|
|
4770
|
+
"InputWizPqControls",
|
|
4771
|
+
"InputWizPqControlsTypedDict",
|
|
4523
4772
|
"InputWizPqTypedDict",
|
|
4524
4773
|
"InputWizRetryRules",
|
|
4525
4774
|
"InputWizRetryRulesTypedDict",
|
|
@@ -4540,6 +4789,8 @@ __all__ = [
|
|
|
4540
4789
|
"InputWizWebhookMinimumTLSVersion",
|
|
4541
4790
|
"InputWizWebhookMode",
|
|
4542
4791
|
"InputWizWebhookPq",
|
|
4792
|
+
"InputWizWebhookPqControls",
|
|
4793
|
+
"InputWizWebhookPqControlsTypedDict",
|
|
4543
4794
|
"InputWizWebhookPqTypedDict",
|
|
4544
4795
|
"InputWizWebhookTLSSettingsServerSide",
|
|
4545
4796
|
"InputWizWebhookTLSSettingsServerSideTypedDict",
|
|
@@ -4560,6 +4811,8 @@ __all__ = [
|
|
|
4560
4811
|
"InputZscalerHecMinimumTLSVersion",
|
|
4561
4812
|
"InputZscalerHecMode",
|
|
4562
4813
|
"InputZscalerHecPq",
|
|
4814
|
+
"InputZscalerHecPqControls",
|
|
4815
|
+
"InputZscalerHecPqControlsTypedDict",
|
|
4563
4816
|
"InputZscalerHecPqTypedDict",
|
|
4564
4817
|
"InputZscalerHecTLSSettingsServerSide",
|
|
4565
4818
|
"InputZscalerHecTLSSettingsServerSideTypedDict",
|
|
@@ -5642,6 +5895,8 @@ __all__ = [
|
|
|
5642
5895
|
"OutputSyslog",
|
|
5643
5896
|
"OutputSyslogBackpressureBehavior",
|
|
5644
5897
|
"OutputSyslogCompression",
|
|
5898
|
+
"OutputSyslogHost",
|
|
5899
|
+
"OutputSyslogHostTypedDict",
|
|
5645
5900
|
"OutputSyslogMaximumTLSVersion",
|
|
5646
5901
|
"OutputSyslogMessageFormat",
|
|
5647
5902
|
"OutputSyslogMinimumTLSVersion",
|
|
@@ -5651,6 +5906,7 @@ __all__ = [
|
|
|
5651
5906
|
"OutputSyslogProtocol",
|
|
5652
5907
|
"OutputSyslogQueueFullBehavior",
|
|
5653
5908
|
"OutputSyslogSeverity",
|
|
5909
|
+
"OutputSyslogTLS",
|
|
5654
5910
|
"OutputSyslogTLSSettingsClientSide",
|
|
5655
5911
|
"OutputSyslogTLSSettingsClientSideTypedDict",
|
|
5656
5912
|
"OutputSyslogType",
|
|
@@ -5875,6 +6131,8 @@ __all__ = [
|
|
|
5875
6131
|
"ServicesTypedDict",
|
|
5876
6132
|
"ShardIteratorStart",
|
|
5877
6133
|
"ShardLoadBalancing",
|
|
6134
|
+
"SplunkHecMetadata",
|
|
6135
|
+
"SplunkHecMetadataTypedDict",
|
|
5878
6136
|
"Status",
|
|
5879
6137
|
"Subscription",
|
|
5880
6138
|
"SubscriptionMetadatum",
|
|
@@ -6253,6 +6511,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6253
6511
|
"InputAppscopePersistence": ".inputappscope",
|
|
6254
6512
|
"InputAppscopePersistenceTypedDict": ".inputappscope",
|
|
6255
6513
|
"InputAppscopePq": ".inputappscope",
|
|
6514
|
+
"InputAppscopePqControls": ".inputappscope",
|
|
6515
|
+
"InputAppscopePqControlsTypedDict": ".inputappscope",
|
|
6256
6516
|
"InputAppscopePqTypedDict": ".inputappscope",
|
|
6257
6517
|
"InputAppscopeTLSSettingsServerSide": ".inputappscope",
|
|
6258
6518
|
"InputAppscopeTLSSettingsServerSideTypedDict": ".inputappscope",
|
|
@@ -6269,6 +6529,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6269
6529
|
"InputAzureBlobMetadatumTypedDict": ".inputazureblob",
|
|
6270
6530
|
"InputAzureBlobMode": ".inputazureblob",
|
|
6271
6531
|
"InputAzureBlobPq": ".inputazureblob",
|
|
6532
|
+
"InputAzureBlobPqControls": ".inputazureblob",
|
|
6533
|
+
"InputAzureBlobPqControlsTypedDict": ".inputazureblob",
|
|
6272
6534
|
"InputAzureBlobPqTypedDict": ".inputazureblob",
|
|
6273
6535
|
"InputAzureBlobType": ".inputazureblob",
|
|
6274
6536
|
"InputAzureBlobTypedDict": ".inputazureblob",
|
|
@@ -6280,6 +6542,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6280
6542
|
"InputCollectionMetadatumTypedDict": ".inputcollection",
|
|
6281
6543
|
"InputCollectionMode": ".inputcollection",
|
|
6282
6544
|
"InputCollectionPq": ".inputcollection",
|
|
6545
|
+
"InputCollectionPqControls": ".inputcollection",
|
|
6546
|
+
"InputCollectionPqControlsTypedDict": ".inputcollection",
|
|
6283
6547
|
"InputCollectionPqTypedDict": ".inputcollection",
|
|
6284
6548
|
"InputCollectionPreprocess": ".inputcollection",
|
|
6285
6549
|
"InputCollectionPreprocessTypedDict": ".inputcollection",
|
|
@@ -6305,6 +6569,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6305
6569
|
"InputConfluentCloudMinimumTLSVersion": ".inputconfluentcloud",
|
|
6306
6570
|
"InputConfluentCloudMode": ".inputconfluentcloud",
|
|
6307
6571
|
"InputConfluentCloudPq": ".inputconfluentcloud",
|
|
6572
|
+
"InputConfluentCloudPqControls": ".inputconfluentcloud",
|
|
6573
|
+
"InputConfluentCloudPqControlsTypedDict": ".inputconfluentcloud",
|
|
6308
6574
|
"InputConfluentCloudPqTypedDict": ".inputconfluentcloud",
|
|
6309
6575
|
"InputConfluentCloudSASLMechanism": ".inputconfluentcloud",
|
|
6310
6576
|
"InputConfluentCloudSchemaType": ".inputconfluentcloud",
|
|
@@ -6320,6 +6586,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6320
6586
|
"InputCriblMetadatumTypedDict": ".inputcribl",
|
|
6321
6587
|
"InputCriblMode": ".inputcribl",
|
|
6322
6588
|
"InputCriblPq": ".inputcribl",
|
|
6589
|
+
"InputCriblPqControls": ".inputcribl",
|
|
6590
|
+
"InputCriblPqControlsTypedDict": ".inputcribl",
|
|
6323
6591
|
"InputCriblPqTypedDict": ".inputcribl",
|
|
6324
6592
|
"InputCriblType": ".inputcribl",
|
|
6325
6593
|
"InputCriblTypedDict": ".inputcribl",
|
|
@@ -6333,11 +6601,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6333
6601
|
"InputCriblHTTPMinimumTLSVersion": ".inputcriblhttp",
|
|
6334
6602
|
"InputCriblHTTPMode": ".inputcriblhttp",
|
|
6335
6603
|
"InputCriblHTTPPq": ".inputcriblhttp",
|
|
6604
|
+
"InputCriblHTTPPqControls": ".inputcriblhttp",
|
|
6605
|
+
"InputCriblHTTPPqControlsTypedDict": ".inputcriblhttp",
|
|
6336
6606
|
"InputCriblHTTPPqTypedDict": ".inputcriblhttp",
|
|
6337
6607
|
"InputCriblHTTPTLSSettingsServerSide": ".inputcriblhttp",
|
|
6338
6608
|
"InputCriblHTTPTLSSettingsServerSideTypedDict": ".inputcriblhttp",
|
|
6339
6609
|
"InputCriblHTTPType": ".inputcriblhttp",
|
|
6340
6610
|
"InputCriblHTTPTypedDict": ".inputcriblhttp",
|
|
6611
|
+
"ElasticsearchMetadata": ".inputcribllakehttp",
|
|
6612
|
+
"ElasticsearchMetadataTypedDict": ".inputcribllakehttp",
|
|
6341
6613
|
"InputCriblLakeHTTP": ".inputcribllakehttp",
|
|
6342
6614
|
"InputCriblLakeHTTPAuthTokensExt": ".inputcribllakehttp",
|
|
6343
6615
|
"InputCriblLakeHTTPAuthTokensExtMetadatum": ".inputcribllakehttp",
|
|
@@ -6352,11 +6624,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6352
6624
|
"InputCriblLakeHTTPMinimumTLSVersion": ".inputcribllakehttp",
|
|
6353
6625
|
"InputCriblLakeHTTPMode": ".inputcribllakehttp",
|
|
6354
6626
|
"InputCriblLakeHTTPPq": ".inputcribllakehttp",
|
|
6627
|
+
"InputCriblLakeHTTPPqControls": ".inputcribllakehttp",
|
|
6628
|
+
"InputCriblLakeHTTPPqControlsTypedDict": ".inputcribllakehttp",
|
|
6355
6629
|
"InputCriblLakeHTTPPqTypedDict": ".inputcribllakehttp",
|
|
6356
6630
|
"InputCriblLakeHTTPTLSSettingsServerSide": ".inputcribllakehttp",
|
|
6357
6631
|
"InputCriblLakeHTTPTLSSettingsServerSideTypedDict": ".inputcribllakehttp",
|
|
6358
6632
|
"InputCriblLakeHTTPType": ".inputcribllakehttp",
|
|
6359
6633
|
"InputCriblLakeHTTPTypedDict": ".inputcribllakehttp",
|
|
6634
|
+
"SplunkHecMetadata": ".inputcribllakehttp",
|
|
6635
|
+
"SplunkHecMetadataTypedDict": ".inputcribllakehttp",
|
|
6360
6636
|
"InputCriblmetrics": ".inputcriblmetrics",
|
|
6361
6637
|
"InputCriblmetricsCompression": ".inputcriblmetrics",
|
|
6362
6638
|
"InputCriblmetricsConnection": ".inputcriblmetrics",
|
|
@@ -6365,6 +6641,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6365
6641
|
"InputCriblmetricsMetadatumTypedDict": ".inputcriblmetrics",
|
|
6366
6642
|
"InputCriblmetricsMode": ".inputcriblmetrics",
|
|
6367
6643
|
"InputCriblmetricsPq": ".inputcriblmetrics",
|
|
6644
|
+
"InputCriblmetricsPqControls": ".inputcriblmetrics",
|
|
6645
|
+
"InputCriblmetricsPqControlsTypedDict": ".inputcriblmetrics",
|
|
6368
6646
|
"InputCriblmetricsPqTypedDict": ".inputcriblmetrics",
|
|
6369
6647
|
"InputCriblmetricsType": ".inputcriblmetrics",
|
|
6370
6648
|
"InputCriblmetricsTypedDict": ".inputcriblmetrics",
|
|
@@ -6378,6 +6656,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6378
6656
|
"InputCriblTCPMinimumTLSVersion": ".inputcribltcp",
|
|
6379
6657
|
"InputCriblTCPMode": ".inputcribltcp",
|
|
6380
6658
|
"InputCriblTCPPq": ".inputcribltcp",
|
|
6659
|
+
"InputCriblTCPPqControls": ".inputcribltcp",
|
|
6660
|
+
"InputCriblTCPPqControlsTypedDict": ".inputcribltcp",
|
|
6381
6661
|
"InputCriblTCPPqTypedDict": ".inputcribltcp",
|
|
6382
6662
|
"InputCriblTCPTLSSettingsServerSide": ".inputcribltcp",
|
|
6383
6663
|
"InputCriblTCPTLSSettingsServerSideTypedDict": ".inputcribltcp",
|
|
@@ -6394,6 +6674,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6394
6674
|
"InputCrowdstrikeMetadatumTypedDict": ".inputcrowdstrike",
|
|
6395
6675
|
"InputCrowdstrikeMode": ".inputcrowdstrike",
|
|
6396
6676
|
"InputCrowdstrikePq": ".inputcrowdstrike",
|
|
6677
|
+
"InputCrowdstrikePqControls": ".inputcrowdstrike",
|
|
6678
|
+
"InputCrowdstrikePqControlsTypedDict": ".inputcrowdstrike",
|
|
6397
6679
|
"InputCrowdstrikePqTypedDict": ".inputcrowdstrike",
|
|
6398
6680
|
"InputCrowdstrikePreprocess": ".inputcrowdstrike",
|
|
6399
6681
|
"InputCrowdstrikePreprocessTypedDict": ".inputcrowdstrike",
|
|
@@ -6411,6 +6693,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6411
6693
|
"InputDatadogAgentMinimumTLSVersion": ".inputdatadogagent",
|
|
6412
6694
|
"InputDatadogAgentMode": ".inputdatadogagent",
|
|
6413
6695
|
"InputDatadogAgentPq": ".inputdatadogagent",
|
|
6696
|
+
"InputDatadogAgentPqControls": ".inputdatadogagent",
|
|
6697
|
+
"InputDatadogAgentPqControlsTypedDict": ".inputdatadogagent",
|
|
6414
6698
|
"InputDatadogAgentPqTypedDict": ".inputdatadogagent",
|
|
6415
6699
|
"InputDatadogAgentProxyMode": ".inputdatadogagent",
|
|
6416
6700
|
"InputDatadogAgentProxyModeTypedDict": ".inputdatadogagent",
|
|
@@ -6426,6 +6710,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6426
6710
|
"InputDatagenMetadatumTypedDict": ".inputdatagen",
|
|
6427
6711
|
"InputDatagenMode": ".inputdatagen",
|
|
6428
6712
|
"InputDatagenPq": ".inputdatagen",
|
|
6713
|
+
"InputDatagenPqControls": ".inputdatagen",
|
|
6714
|
+
"InputDatagenPqControlsTypedDict": ".inputdatagen",
|
|
6429
6715
|
"InputDatagenPqTypedDict": ".inputdatagen",
|
|
6430
6716
|
"InputDatagenType": ".inputdatagen",
|
|
6431
6717
|
"InputDatagenTypedDict": ".inputdatagen",
|
|
@@ -6445,6 +6731,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6445
6731
|
"InputEdgePrometheusPersistenceCompression": ".inputedgeprometheus",
|
|
6446
6732
|
"InputEdgePrometheusPq": ".inputedgeprometheus",
|
|
6447
6733
|
"InputEdgePrometheusPqCompression": ".inputedgeprometheus",
|
|
6734
|
+
"InputEdgePrometheusPqControls": ".inputedgeprometheus",
|
|
6735
|
+
"InputEdgePrometheusPqControlsTypedDict": ".inputedgeprometheus",
|
|
6448
6736
|
"InputEdgePrometheusPqTypedDict": ".inputedgeprometheus",
|
|
6449
6737
|
"InputEdgePrometheusRecordType": ".inputedgeprometheus",
|
|
6450
6738
|
"InputEdgePrometheusSearchFilter": ".inputedgeprometheus",
|
|
@@ -6473,6 +6761,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6473
6761
|
"InputElasticMinimumTLSVersion": ".inputelastic",
|
|
6474
6762
|
"InputElasticMode": ".inputelastic",
|
|
6475
6763
|
"InputElasticPq": ".inputelastic",
|
|
6764
|
+
"InputElasticPqControls": ".inputelastic",
|
|
6765
|
+
"InputElasticPqControlsTypedDict": ".inputelastic",
|
|
6476
6766
|
"InputElasticPqTypedDict": ".inputelastic",
|
|
6477
6767
|
"InputElasticProxyMode": ".inputelastic",
|
|
6478
6768
|
"InputElasticProxyModeTypedDict": ".inputelastic",
|
|
@@ -6490,6 +6780,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6490
6780
|
"InputEventhubMetadatumTypedDict": ".inputeventhub",
|
|
6491
6781
|
"InputEventhubMode": ".inputeventhub",
|
|
6492
6782
|
"InputEventhubPq": ".inputeventhub",
|
|
6783
|
+
"InputEventhubPqControls": ".inputeventhub",
|
|
6784
|
+
"InputEventhubPqControlsTypedDict": ".inputeventhub",
|
|
6493
6785
|
"InputEventhubPqTypedDict": ".inputeventhub",
|
|
6494
6786
|
"InputEventhubSASLMechanism": ".inputeventhub",
|
|
6495
6787
|
"InputEventhubTLSSettingsClientSide": ".inputeventhub",
|
|
@@ -6504,6 +6796,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6504
6796
|
"InputExecMetadatumTypedDict": ".inputexec",
|
|
6505
6797
|
"InputExecMode": ".inputexec",
|
|
6506
6798
|
"InputExecPq": ".inputexec",
|
|
6799
|
+
"InputExecPqControls": ".inputexec",
|
|
6800
|
+
"InputExecPqControlsTypedDict": ".inputexec",
|
|
6507
6801
|
"InputExecPqTypedDict": ".inputexec",
|
|
6508
6802
|
"InputExecType": ".inputexec",
|
|
6509
6803
|
"InputExecTypedDict": ".inputexec",
|
|
@@ -6516,6 +6810,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6516
6810
|
"InputFileMetadatumTypedDict": ".inputfile",
|
|
6517
6811
|
"InputFileMode": ".inputfile",
|
|
6518
6812
|
"InputFilePq": ".inputfile",
|
|
6813
|
+
"InputFilePqControls": ".inputfile",
|
|
6814
|
+
"InputFilePqControlsTypedDict": ".inputfile",
|
|
6519
6815
|
"InputFilePqMode": ".inputfile",
|
|
6520
6816
|
"InputFilePqTypedDict": ".inputfile",
|
|
6521
6817
|
"InputFileType": ".inputfile",
|
|
@@ -6530,6 +6826,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6530
6826
|
"InputFirehoseMinimumTLSVersion": ".inputfirehose",
|
|
6531
6827
|
"InputFirehoseMode": ".inputfirehose",
|
|
6532
6828
|
"InputFirehosePq": ".inputfirehose",
|
|
6829
|
+
"InputFirehosePqControls": ".inputfirehose",
|
|
6830
|
+
"InputFirehosePqControlsTypedDict": ".inputfirehose",
|
|
6533
6831
|
"InputFirehosePqTypedDict": ".inputfirehose",
|
|
6534
6832
|
"InputFirehoseTLSSettingsServerSide": ".inputfirehose",
|
|
6535
6833
|
"InputFirehoseTLSSettingsServerSideTypedDict": ".inputfirehose",
|
|
@@ -6544,6 +6842,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6544
6842
|
"InputGooglePubsubMetadatumTypedDict": ".inputgooglepubsub",
|
|
6545
6843
|
"InputGooglePubsubMode": ".inputgooglepubsub",
|
|
6546
6844
|
"InputGooglePubsubPq": ".inputgooglepubsub",
|
|
6845
|
+
"InputGooglePubsubPqControls": ".inputgooglepubsub",
|
|
6846
|
+
"InputGooglePubsubPqControlsTypedDict": ".inputgooglepubsub",
|
|
6547
6847
|
"InputGooglePubsubPqTypedDict": ".inputgooglepubsub",
|
|
6548
6848
|
"InputGooglePubsubType": ".inputgooglepubsub",
|
|
6549
6849
|
"InputGooglePubsubTypedDict": ".inputgooglepubsub",
|
|
@@ -6578,6 +6878,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6578
6878
|
"InputGrafanaPq1TypedDict": ".inputgrafana",
|
|
6579
6879
|
"InputGrafanaPq2": ".inputgrafana",
|
|
6580
6880
|
"InputGrafanaPq2TypedDict": ".inputgrafana",
|
|
6881
|
+
"InputGrafanaPqControls1": ".inputgrafana",
|
|
6882
|
+
"InputGrafanaPqControls1TypedDict": ".inputgrafana",
|
|
6883
|
+
"InputGrafanaPqControls2": ".inputgrafana",
|
|
6884
|
+
"InputGrafanaPqControls2TypedDict": ".inputgrafana",
|
|
6581
6885
|
"InputGrafanaPrometheusAuth1": ".inputgrafana",
|
|
6582
6886
|
"InputGrafanaPrometheusAuth1TypedDict": ".inputgrafana",
|
|
6583
6887
|
"InputGrafanaPrometheusAuth2": ".inputgrafana",
|
|
@@ -6621,6 +6925,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6621
6925
|
"InputHTTPMinimumTLSVersion": ".inputhttp",
|
|
6622
6926
|
"InputHTTPMode": ".inputhttp",
|
|
6623
6927
|
"InputHTTPPq": ".inputhttp",
|
|
6928
|
+
"InputHTTPPqControls": ".inputhttp",
|
|
6929
|
+
"InputHTTPPqControlsTypedDict": ".inputhttp",
|
|
6624
6930
|
"InputHTTPPqTypedDict": ".inputhttp",
|
|
6625
6931
|
"InputHTTPTLSSettingsServerSide": ".inputhttp",
|
|
6626
6932
|
"InputHTTPTLSSettingsServerSideTypedDict": ".inputhttp",
|
|
@@ -6640,6 +6946,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6640
6946
|
"InputHTTPRawMinimumTLSVersion": ".inputhttpraw",
|
|
6641
6947
|
"InputHTTPRawMode": ".inputhttpraw",
|
|
6642
6948
|
"InputHTTPRawPq": ".inputhttpraw",
|
|
6949
|
+
"InputHTTPRawPqControls": ".inputhttpraw",
|
|
6950
|
+
"InputHTTPRawPqControlsTypedDict": ".inputhttpraw",
|
|
6643
6951
|
"InputHTTPRawPqTypedDict": ".inputhttpraw",
|
|
6644
6952
|
"InputHTTPRawTLSSettingsServerSide": ".inputhttpraw",
|
|
6645
6953
|
"InputHTTPRawTLSSettingsServerSideTypedDict": ".inputhttpraw",
|
|
@@ -6653,6 +6961,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6653
6961
|
"InputJournalFilesMetadatumTypedDict": ".inputjournalfiles",
|
|
6654
6962
|
"InputJournalFilesMode": ".inputjournalfiles",
|
|
6655
6963
|
"InputJournalFilesPq": ".inputjournalfiles",
|
|
6964
|
+
"InputJournalFilesPqControls": ".inputjournalfiles",
|
|
6965
|
+
"InputJournalFilesPqControlsTypedDict": ".inputjournalfiles",
|
|
6656
6966
|
"InputJournalFilesPqTypedDict": ".inputjournalfiles",
|
|
6657
6967
|
"InputJournalFilesRule": ".inputjournalfiles",
|
|
6658
6968
|
"InputJournalFilesRuleTypedDict": ".inputjournalfiles",
|
|
@@ -6678,6 +6988,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6678
6988
|
"InputKafkaMinimumTLSVersion": ".inputkafka",
|
|
6679
6989
|
"InputKafkaMode": ".inputkafka",
|
|
6680
6990
|
"InputKafkaPq": ".inputkafka",
|
|
6991
|
+
"InputKafkaPqControls": ".inputkafka",
|
|
6992
|
+
"InputKafkaPqControlsTypedDict": ".inputkafka",
|
|
6681
6993
|
"InputKafkaPqTypedDict": ".inputkafka",
|
|
6682
6994
|
"InputKafkaSASLMechanism": ".inputkafka",
|
|
6683
6995
|
"InputKafkaSchemaType": ".inputkafka",
|
|
@@ -6694,6 +7006,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6694
7006
|
"InputKinesisMetadatumTypedDict": ".inputkinesis",
|
|
6695
7007
|
"InputKinesisMode": ".inputkinesis",
|
|
6696
7008
|
"InputKinesisPq": ".inputkinesis",
|
|
7009
|
+
"InputKinesisPqControls": ".inputkinesis",
|
|
7010
|
+
"InputKinesisPqControlsTypedDict": ".inputkinesis",
|
|
6697
7011
|
"InputKinesisPqTypedDict": ".inputkinesis",
|
|
6698
7012
|
"InputKinesisRecordDataFormat": ".inputkinesis",
|
|
6699
7013
|
"InputKinesisSignatureVersion": ".inputkinesis",
|
|
@@ -6709,6 +7023,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6709
7023
|
"InputKubeEventsMetadatumTypedDict": ".inputkubeevents",
|
|
6710
7024
|
"InputKubeEventsMode": ".inputkubeevents",
|
|
6711
7025
|
"InputKubeEventsPq": ".inputkubeevents",
|
|
7026
|
+
"InputKubeEventsPqControls": ".inputkubeevents",
|
|
7027
|
+
"InputKubeEventsPqControlsTypedDict": ".inputkubeevents",
|
|
6712
7028
|
"InputKubeEventsPqTypedDict": ".inputkubeevents",
|
|
6713
7029
|
"InputKubeEventsRule": ".inputkubeevents",
|
|
6714
7030
|
"InputKubeEventsRuleTypedDict": ".inputkubeevents",
|
|
@@ -6725,6 +7041,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6725
7041
|
"InputKubeLogsPersistenceCompression": ".inputkubelogs",
|
|
6726
7042
|
"InputKubeLogsPq": ".inputkubelogs",
|
|
6727
7043
|
"InputKubeLogsPqCompression": ".inputkubelogs",
|
|
7044
|
+
"InputKubeLogsPqControls": ".inputkubelogs",
|
|
7045
|
+
"InputKubeLogsPqControlsTypedDict": ".inputkubelogs",
|
|
6728
7046
|
"InputKubeLogsPqTypedDict": ".inputkubelogs",
|
|
6729
7047
|
"InputKubeLogsRule": ".inputkubelogs",
|
|
6730
7048
|
"InputKubeLogsRuleTypedDict": ".inputkubelogs",
|
|
@@ -6741,6 +7059,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6741
7059
|
"InputKubeMetricsPersistence": ".inputkubemetrics",
|
|
6742
7060
|
"InputKubeMetricsPersistenceTypedDict": ".inputkubemetrics",
|
|
6743
7061
|
"InputKubeMetricsPq": ".inputkubemetrics",
|
|
7062
|
+
"InputKubeMetricsPqControls": ".inputkubemetrics",
|
|
7063
|
+
"InputKubeMetricsPqControlsTypedDict": ".inputkubemetrics",
|
|
6744
7064
|
"InputKubeMetricsPqTypedDict": ".inputkubemetrics",
|
|
6745
7065
|
"InputKubeMetricsRule": ".inputkubemetrics",
|
|
6746
7066
|
"InputKubeMetricsRuleTypedDict": ".inputkubemetrics",
|
|
@@ -6761,6 +7081,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6761
7081
|
"InputLokiOauthParam": ".inputloki",
|
|
6762
7082
|
"InputLokiOauthParamTypedDict": ".inputloki",
|
|
6763
7083
|
"InputLokiPq": ".inputloki",
|
|
7084
|
+
"InputLokiPqControls": ".inputloki",
|
|
7085
|
+
"InputLokiPqControlsTypedDict": ".inputloki",
|
|
6764
7086
|
"InputLokiPqTypedDict": ".inputloki",
|
|
6765
7087
|
"InputLokiTLSSettingsServerSide": ".inputloki",
|
|
6766
7088
|
"InputLokiTLSSettingsServerSideTypedDict": ".inputloki",
|
|
@@ -6776,6 +7098,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6776
7098
|
"InputMetricsMinimumTLSVersion": ".inputmetrics",
|
|
6777
7099
|
"InputMetricsMode": ".inputmetrics",
|
|
6778
7100
|
"InputMetricsPq": ".inputmetrics",
|
|
7101
|
+
"InputMetricsPqControls": ".inputmetrics",
|
|
7102
|
+
"InputMetricsPqControlsTypedDict": ".inputmetrics",
|
|
6779
7103
|
"InputMetricsPqTypedDict": ".inputmetrics",
|
|
6780
7104
|
"InputMetricsTLSSettingsServerSide": ".inputmetrics",
|
|
6781
7105
|
"InputMetricsTLSSettingsServerSideTypedDict": ".inputmetrics",
|
|
@@ -6791,6 +7115,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6791
7115
|
"InputModelDrivenTelemetryMinimumTLSVersion": ".inputmodeldriventelemetry",
|
|
6792
7116
|
"InputModelDrivenTelemetryMode": ".inputmodeldriventelemetry",
|
|
6793
7117
|
"InputModelDrivenTelemetryPq": ".inputmodeldriventelemetry",
|
|
7118
|
+
"InputModelDrivenTelemetryPqControls": ".inputmodeldriventelemetry",
|
|
7119
|
+
"InputModelDrivenTelemetryPqControlsTypedDict": ".inputmodeldriventelemetry",
|
|
6794
7120
|
"InputModelDrivenTelemetryPqTypedDict": ".inputmodeldriventelemetry",
|
|
6795
7121
|
"InputModelDrivenTelemetryTLSSettingsServerSide": ".inputmodeldriventelemetry",
|
|
6796
7122
|
"InputModelDrivenTelemetryTLSSettingsServerSideTypedDict": ".inputmodeldriventelemetry",
|
|
@@ -6815,6 +7141,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6815
7141
|
"InputMskMinimumTLSVersion": ".inputmsk",
|
|
6816
7142
|
"InputMskMode": ".inputmsk",
|
|
6817
7143
|
"InputMskPq": ".inputmsk",
|
|
7144
|
+
"InputMskPqControls": ".inputmsk",
|
|
7145
|
+
"InputMskPqControlsTypedDict": ".inputmsk",
|
|
6818
7146
|
"InputMskPqTypedDict": ".inputmsk",
|
|
6819
7147
|
"InputMskSchemaType": ".inputmsk",
|
|
6820
7148
|
"InputMskSignatureVersion": ".inputmsk",
|
|
@@ -6830,6 +7158,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6830
7158
|
"InputNetflowMetadatumTypedDict": ".inputnetflow",
|
|
6831
7159
|
"InputNetflowMode": ".inputnetflow",
|
|
6832
7160
|
"InputNetflowPq": ".inputnetflow",
|
|
7161
|
+
"InputNetflowPqControls": ".inputnetflow",
|
|
7162
|
+
"InputNetflowPqControlsTypedDict": ".inputnetflow",
|
|
6833
7163
|
"InputNetflowPqTypedDict": ".inputnetflow",
|
|
6834
7164
|
"InputNetflowType": ".inputnetflow",
|
|
6835
7165
|
"InputNetflowTypedDict": ".inputnetflow",
|
|
@@ -6845,6 +7175,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6845
7175
|
"InputOffice365MgmtMetadatumTypedDict": ".inputoffice365mgmt",
|
|
6846
7176
|
"InputOffice365MgmtMode": ".inputoffice365mgmt",
|
|
6847
7177
|
"InputOffice365MgmtPq": ".inputoffice365mgmt",
|
|
7178
|
+
"InputOffice365MgmtPqControls": ".inputoffice365mgmt",
|
|
7179
|
+
"InputOffice365MgmtPqControlsTypedDict": ".inputoffice365mgmt",
|
|
6848
7180
|
"InputOffice365MgmtPqTypedDict": ".inputoffice365mgmt",
|
|
6849
7181
|
"InputOffice365MgmtRetryRules": ".inputoffice365mgmt",
|
|
6850
7182
|
"InputOffice365MgmtRetryRulesTypedDict": ".inputoffice365mgmt",
|
|
@@ -6864,6 +7196,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6864
7196
|
"InputOffice365MsgTraceMetadatumTypedDict": ".inputoffice365msgtrace",
|
|
6865
7197
|
"InputOffice365MsgTraceMode": ".inputoffice365msgtrace",
|
|
6866
7198
|
"InputOffice365MsgTracePq": ".inputoffice365msgtrace",
|
|
7199
|
+
"InputOffice365MsgTracePqControls": ".inputoffice365msgtrace",
|
|
7200
|
+
"InputOffice365MsgTracePqControlsTypedDict": ".inputoffice365msgtrace",
|
|
6867
7201
|
"InputOffice365MsgTracePqTypedDict": ".inputoffice365msgtrace",
|
|
6868
7202
|
"InputOffice365MsgTraceRetryRules": ".inputoffice365msgtrace",
|
|
6869
7203
|
"InputOffice365MsgTraceRetryRulesTypedDict": ".inputoffice365msgtrace",
|
|
@@ -6883,6 +7217,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6883
7217
|
"InputOffice365ServiceMetadatumTypedDict": ".inputoffice365service",
|
|
6884
7218
|
"InputOffice365ServiceMode": ".inputoffice365service",
|
|
6885
7219
|
"InputOffice365ServicePq": ".inputoffice365service",
|
|
7220
|
+
"InputOffice365ServicePqControls": ".inputoffice365service",
|
|
7221
|
+
"InputOffice365ServicePqControlsTypedDict": ".inputoffice365service",
|
|
6886
7222
|
"InputOffice365ServicePqTypedDict": ".inputoffice365service",
|
|
6887
7223
|
"InputOffice365ServiceRetryRules": ".inputoffice365service",
|
|
6888
7224
|
"InputOffice365ServiceRetryRulesTypedDict": ".inputoffice365service",
|
|
@@ -6906,6 +7242,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6906
7242
|
"InputOpenTelemetryOauthParam": ".inputopentelemetry",
|
|
6907
7243
|
"InputOpenTelemetryOauthParamTypedDict": ".inputopentelemetry",
|
|
6908
7244
|
"InputOpenTelemetryPq": ".inputopentelemetry",
|
|
7245
|
+
"InputOpenTelemetryPqControls": ".inputopentelemetry",
|
|
7246
|
+
"InputOpenTelemetryPqControlsTypedDict": ".inputopentelemetry",
|
|
6909
7247
|
"InputOpenTelemetryPqTypedDict": ".inputopentelemetry",
|
|
6910
7248
|
"InputOpenTelemetryProtocol": ".inputopentelemetry",
|
|
6911
7249
|
"InputOpenTelemetryTLSSettingsServerSide": ".inputopentelemetry",
|
|
@@ -6924,6 +7262,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6924
7262
|
"InputPrometheusMetadatumTypedDict": ".inputprometheus",
|
|
6925
7263
|
"InputPrometheusMode": ".inputprometheus",
|
|
6926
7264
|
"InputPrometheusPq": ".inputprometheus",
|
|
7265
|
+
"InputPrometheusPqControls": ".inputprometheus",
|
|
7266
|
+
"InputPrometheusPqControlsTypedDict": ".inputprometheus",
|
|
6927
7267
|
"InputPrometheusPqTypedDict": ".inputprometheus",
|
|
6928
7268
|
"InputPrometheusRecordType": ".inputprometheus",
|
|
6929
7269
|
"InputPrometheusSearchFilter": ".inputprometheus",
|
|
@@ -6947,6 +7287,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6947
7287
|
"InputPrometheusRwOauthParam": ".inputprometheusrw",
|
|
6948
7288
|
"InputPrometheusRwOauthParamTypedDict": ".inputprometheusrw",
|
|
6949
7289
|
"InputPrometheusRwPq": ".inputprometheusrw",
|
|
7290
|
+
"InputPrometheusRwPqControls": ".inputprometheusrw",
|
|
7291
|
+
"InputPrometheusRwPqControlsTypedDict": ".inputprometheusrw",
|
|
6950
7292
|
"InputPrometheusRwPqTypedDict": ".inputprometheusrw",
|
|
6951
7293
|
"InputPrometheusRwTLSSettingsServerSide": ".inputprometheusrw",
|
|
6952
7294
|
"InputPrometheusRwTLSSettingsServerSideTypedDict": ".inputprometheusrw",
|
|
@@ -6960,6 +7302,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6960
7302
|
"InputRawUDPMetadatumTypedDict": ".inputrawudp",
|
|
6961
7303
|
"InputRawUDPMode": ".inputrawudp",
|
|
6962
7304
|
"InputRawUDPPq": ".inputrawudp",
|
|
7305
|
+
"InputRawUDPPqControls": ".inputrawudp",
|
|
7306
|
+
"InputRawUDPPqControlsTypedDict": ".inputrawudp",
|
|
6963
7307
|
"InputRawUDPPqTypedDict": ".inputrawudp",
|
|
6964
7308
|
"InputRawUDPType": ".inputrawudp",
|
|
6965
7309
|
"InputRawUDPTypedDict": ".inputrawudp",
|
|
@@ -6974,6 +7318,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6974
7318
|
"InputS3MetadatumTypedDict": ".inputs3",
|
|
6975
7319
|
"InputS3Mode": ".inputs3",
|
|
6976
7320
|
"InputS3Pq": ".inputs3",
|
|
7321
|
+
"InputS3PqControls": ".inputs3",
|
|
7322
|
+
"InputS3PqControlsTypedDict": ".inputs3",
|
|
6977
7323
|
"InputS3PqTypedDict": ".inputs3",
|
|
6978
7324
|
"InputS3Preprocess": ".inputs3",
|
|
6979
7325
|
"InputS3PreprocessTypedDict": ".inputs3",
|
|
@@ -6991,6 +7337,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6991
7337
|
"InputS3InventoryMetadatumTypedDict": ".inputs3inventory",
|
|
6992
7338
|
"InputS3InventoryMode": ".inputs3inventory",
|
|
6993
7339
|
"InputS3InventoryPq": ".inputs3inventory",
|
|
7340
|
+
"InputS3InventoryPqControls": ".inputs3inventory",
|
|
7341
|
+
"InputS3InventoryPqControlsTypedDict": ".inputs3inventory",
|
|
6994
7342
|
"InputS3InventoryPqTypedDict": ".inputs3inventory",
|
|
6995
7343
|
"InputS3InventoryPreprocess": ".inputs3inventory",
|
|
6996
7344
|
"InputS3InventoryPreprocessTypedDict": ".inputs3inventory",
|
|
@@ -7009,6 +7357,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7009
7357
|
"InputSecurityLakeMetadatumTypedDict": ".inputsecuritylake",
|
|
7010
7358
|
"InputSecurityLakeMode": ".inputsecuritylake",
|
|
7011
7359
|
"InputSecurityLakePq": ".inputsecuritylake",
|
|
7360
|
+
"InputSecurityLakePqControls": ".inputsecuritylake",
|
|
7361
|
+
"InputSecurityLakePqControlsTypedDict": ".inputsecuritylake",
|
|
7012
7362
|
"InputSecurityLakePqTypedDict": ".inputsecuritylake",
|
|
7013
7363
|
"InputSecurityLakePreprocess": ".inputsecuritylake",
|
|
7014
7364
|
"InputSecurityLakePreprocessTypedDict": ".inputsecuritylake",
|
|
@@ -7025,6 +7375,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7025
7375
|
"InputSnmpMetadatumTypedDict": ".inputsnmp",
|
|
7026
7376
|
"InputSnmpMode": ".inputsnmp",
|
|
7027
7377
|
"InputSnmpPq": ".inputsnmp",
|
|
7378
|
+
"InputSnmpPqControls": ".inputsnmp",
|
|
7379
|
+
"InputSnmpPqControlsTypedDict": ".inputsnmp",
|
|
7028
7380
|
"InputSnmpPqTypedDict": ".inputsnmp",
|
|
7029
7381
|
"InputSnmpType": ".inputsnmp",
|
|
7030
7382
|
"InputSnmpTypedDict": ".inputsnmp",
|
|
@@ -7046,6 +7398,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7046
7398
|
"InputSplunkMode": ".inputsplunk",
|
|
7047
7399
|
"InputSplunkPq": ".inputsplunk",
|
|
7048
7400
|
"InputSplunkPqCompression": ".inputsplunk",
|
|
7401
|
+
"InputSplunkPqControls": ".inputsplunk",
|
|
7402
|
+
"InputSplunkPqControlsTypedDict": ".inputsplunk",
|
|
7049
7403
|
"InputSplunkPqTypedDict": ".inputsplunk",
|
|
7050
7404
|
"InputSplunkTLSSettingsServerSide": ".inputsplunk",
|
|
7051
7405
|
"InputSplunkTLSSettingsServerSideTypedDict": ".inputsplunk",
|
|
@@ -7066,6 +7420,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7066
7420
|
"InputSplunkHecMinimumTLSVersion": ".inputsplunkhec",
|
|
7067
7421
|
"InputSplunkHecMode": ".inputsplunkhec",
|
|
7068
7422
|
"InputSplunkHecPq": ".inputsplunkhec",
|
|
7423
|
+
"InputSplunkHecPqControls": ".inputsplunkhec",
|
|
7424
|
+
"InputSplunkHecPqControlsTypedDict": ".inputsplunkhec",
|
|
7069
7425
|
"InputSplunkHecPqTypedDict": ".inputsplunkhec",
|
|
7070
7426
|
"InputSplunkHecTLSSettingsServerSide": ".inputsplunkhec",
|
|
7071
7427
|
"InputSplunkHecTLSSettingsServerSideTypedDict": ".inputsplunkhec",
|
|
@@ -7089,6 +7445,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7089
7445
|
"InputSplunkSearchOauthParam": ".inputsplunksearch",
|
|
7090
7446
|
"InputSplunkSearchOauthParamTypedDict": ".inputsplunksearch",
|
|
7091
7447
|
"InputSplunkSearchPq": ".inputsplunksearch",
|
|
7448
|
+
"InputSplunkSearchPqControls": ".inputsplunksearch",
|
|
7449
|
+
"InputSplunkSearchPqControlsTypedDict": ".inputsplunksearch",
|
|
7092
7450
|
"InputSplunkSearchPqTypedDict": ".inputsplunksearch",
|
|
7093
7451
|
"InputSplunkSearchRetryRules": ".inputsplunksearch",
|
|
7094
7452
|
"InputSplunkSearchRetryRulesTypedDict": ".inputsplunksearch",
|
|
@@ -7105,6 +7463,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7105
7463
|
"InputSqsMetadatumTypedDict": ".inputsqs",
|
|
7106
7464
|
"InputSqsMode": ".inputsqs",
|
|
7107
7465
|
"InputSqsPq": ".inputsqs",
|
|
7466
|
+
"InputSqsPqControls": ".inputsqs",
|
|
7467
|
+
"InputSqsPqControlsTypedDict": ".inputsqs",
|
|
7108
7468
|
"InputSqsPqTypedDict": ".inputsqs",
|
|
7109
7469
|
"InputSqsQueueType": ".inputsqs",
|
|
7110
7470
|
"InputSqsSignatureVersion": ".inputsqs",
|
|
@@ -7131,6 +7491,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7131
7491
|
"InputSyslogPq1TypedDict": ".inputsyslog",
|
|
7132
7492
|
"InputSyslogPq2": ".inputsyslog",
|
|
7133
7493
|
"InputSyslogPq2TypedDict": ".inputsyslog",
|
|
7494
|
+
"InputSyslogPqControls1": ".inputsyslog",
|
|
7495
|
+
"InputSyslogPqControls1TypedDict": ".inputsyslog",
|
|
7496
|
+
"InputSyslogPqControls2": ".inputsyslog",
|
|
7497
|
+
"InputSyslogPqControls2TypedDict": ".inputsyslog",
|
|
7134
7498
|
"InputSyslogSyslog1": ".inputsyslog",
|
|
7135
7499
|
"InputSyslogSyslog1TypedDict": ".inputsyslog",
|
|
7136
7500
|
"InputSyslogSyslog2": ".inputsyslog",
|
|
@@ -7174,6 +7538,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7174
7538
|
"InputSystemMetricsPersistence": ".inputsystemmetrics",
|
|
7175
7539
|
"InputSystemMetricsPersistenceTypedDict": ".inputsystemmetrics",
|
|
7176
7540
|
"InputSystemMetricsPq": ".inputsystemmetrics",
|
|
7541
|
+
"InputSystemMetricsPqControls": ".inputsystemmetrics",
|
|
7542
|
+
"InputSystemMetricsPqControlsTypedDict": ".inputsystemmetrics",
|
|
7177
7543
|
"InputSystemMetricsPqMode": ".inputsystemmetrics",
|
|
7178
7544
|
"InputSystemMetricsPqTypedDict": ".inputsystemmetrics",
|
|
7179
7545
|
"InputSystemMetricsProcess": ".inputsystemmetrics",
|
|
@@ -7208,6 +7574,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7208
7574
|
"InputSystemStatePersistence": ".inputsystemstate",
|
|
7209
7575
|
"InputSystemStatePersistenceTypedDict": ".inputsystemstate",
|
|
7210
7576
|
"InputSystemStatePq": ".inputsystemstate",
|
|
7577
|
+
"InputSystemStatePqControls": ".inputsystemstate",
|
|
7578
|
+
"InputSystemStatePqControlsTypedDict": ".inputsystemstate",
|
|
7211
7579
|
"InputSystemStatePqTypedDict": ".inputsystemstate",
|
|
7212
7580
|
"InputSystemStateRoutes": ".inputsystemstate",
|
|
7213
7581
|
"InputSystemStateRoutesTypedDict": ".inputsystemstate",
|
|
@@ -7234,6 +7602,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7234
7602
|
"InputTCPMinimumTLSVersion": ".inputtcp",
|
|
7235
7603
|
"InputTCPMode": ".inputtcp",
|
|
7236
7604
|
"InputTCPPq": ".inputtcp",
|
|
7605
|
+
"InputTCPPqControls": ".inputtcp",
|
|
7606
|
+
"InputTCPPqControlsTypedDict": ".inputtcp",
|
|
7237
7607
|
"InputTCPPqTypedDict": ".inputtcp",
|
|
7238
7608
|
"InputTCPPreprocess": ".inputtcp",
|
|
7239
7609
|
"InputTCPPreprocessTypedDict": ".inputtcp",
|
|
@@ -7252,6 +7622,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7252
7622
|
"InputTcpjsonMinimumTLSVersion": ".inputtcpjson",
|
|
7253
7623
|
"InputTcpjsonMode": ".inputtcpjson",
|
|
7254
7624
|
"InputTcpjsonPq": ".inputtcpjson",
|
|
7625
|
+
"InputTcpjsonPqControls": ".inputtcpjson",
|
|
7626
|
+
"InputTcpjsonPqControlsTypedDict": ".inputtcpjson",
|
|
7255
7627
|
"InputTcpjsonPqTypedDict": ".inputtcpjson",
|
|
7256
7628
|
"InputTcpjsonTLSSettingsServerSide": ".inputtcpjson",
|
|
7257
7629
|
"InputTcpjsonTLSSettingsServerSideTypedDict": ".inputtcpjson",
|
|
@@ -7269,6 +7641,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7269
7641
|
"InputWefMinimumTLSVersion": ".inputwef",
|
|
7270
7642
|
"InputWefMode": ".inputwef",
|
|
7271
7643
|
"InputWefPq": ".inputwef",
|
|
7644
|
+
"InputWefPqControls": ".inputwef",
|
|
7645
|
+
"InputWefPqControlsTypedDict": ".inputwef",
|
|
7272
7646
|
"InputWefPqTypedDict": ".inputwef",
|
|
7273
7647
|
"InputWefType": ".inputwef",
|
|
7274
7648
|
"InputWefTypedDict": ".inputwef",
|
|
@@ -7306,6 +7680,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7306
7680
|
"InputWindowsMetricsPersistence": ".inputwindowsmetrics",
|
|
7307
7681
|
"InputWindowsMetricsPersistenceTypedDict": ".inputwindowsmetrics",
|
|
7308
7682
|
"InputWindowsMetricsPq": ".inputwindowsmetrics",
|
|
7683
|
+
"InputWindowsMetricsPqControls": ".inputwindowsmetrics",
|
|
7684
|
+
"InputWindowsMetricsPqControlsTypedDict": ".inputwindowsmetrics",
|
|
7309
7685
|
"InputWindowsMetricsPqMode": ".inputwindowsmetrics",
|
|
7310
7686
|
"InputWindowsMetricsPqTypedDict": ".inputwindowsmetrics",
|
|
7311
7687
|
"InputWindowsMetricsProcess": ".inputwindowsmetrics",
|
|
@@ -7326,6 +7702,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7326
7702
|
"InputWinEventLogsMetadatumTypedDict": ".inputwineventlogs",
|
|
7327
7703
|
"InputWinEventLogsMode": ".inputwineventlogs",
|
|
7328
7704
|
"InputWinEventLogsPq": ".inputwineventlogs",
|
|
7705
|
+
"InputWinEventLogsPqControls": ".inputwineventlogs",
|
|
7706
|
+
"InputWinEventLogsPqControlsTypedDict": ".inputwineventlogs",
|
|
7329
7707
|
"InputWinEventLogsPqTypedDict": ".inputwineventlogs",
|
|
7330
7708
|
"InputWinEventLogsType": ".inputwineventlogs",
|
|
7331
7709
|
"InputWinEventLogsTypedDict": ".inputwineventlogs",
|
|
@@ -7341,6 +7719,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7341
7719
|
"InputWizMetadatumTypedDict": ".inputwiz",
|
|
7342
7720
|
"InputWizMode": ".inputwiz",
|
|
7343
7721
|
"InputWizPq": ".inputwiz",
|
|
7722
|
+
"InputWizPqControls": ".inputwiz",
|
|
7723
|
+
"InputWizPqControlsTypedDict": ".inputwiz",
|
|
7344
7724
|
"InputWizPqTypedDict": ".inputwiz",
|
|
7345
7725
|
"InputWizRetryRules": ".inputwiz",
|
|
7346
7726
|
"InputWizRetryRulesTypedDict": ".inputwiz",
|
|
@@ -7361,6 +7741,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7361
7741
|
"InputWizWebhookMinimumTLSVersion": ".inputwizwebhook",
|
|
7362
7742
|
"InputWizWebhookMode": ".inputwizwebhook",
|
|
7363
7743
|
"InputWizWebhookPq": ".inputwizwebhook",
|
|
7744
|
+
"InputWizWebhookPqControls": ".inputwizwebhook",
|
|
7745
|
+
"InputWizWebhookPqControlsTypedDict": ".inputwizwebhook",
|
|
7364
7746
|
"InputWizWebhookPqTypedDict": ".inputwizwebhook",
|
|
7365
7747
|
"InputWizWebhookTLSSettingsServerSide": ".inputwizwebhook",
|
|
7366
7748
|
"InputWizWebhookTLSSettingsServerSideTypedDict": ".inputwizwebhook",
|
|
@@ -7381,6 +7763,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7381
7763
|
"InputZscalerHecMinimumTLSVersion": ".inputzscalerhec",
|
|
7382
7764
|
"InputZscalerHecMode": ".inputzscalerhec",
|
|
7383
7765
|
"InputZscalerHecPq": ".inputzscalerhec",
|
|
7766
|
+
"InputZscalerHecPqControls": ".inputzscalerhec",
|
|
7767
|
+
"InputZscalerHecPqControlsTypedDict": ".inputzscalerhec",
|
|
7384
7768
|
"InputZscalerHecPqTypedDict": ".inputzscalerhec",
|
|
7385
7769
|
"InputZscalerHecTLSSettingsServerSide": ".inputzscalerhec",
|
|
7386
7770
|
"InputZscalerHecTLSSettingsServerSideTypedDict": ".inputzscalerhec",
|
|
@@ -8477,6 +8861,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8477
8861
|
"OutputSyslog": ".outputsyslog",
|
|
8478
8862
|
"OutputSyslogBackpressureBehavior": ".outputsyslog",
|
|
8479
8863
|
"OutputSyslogCompression": ".outputsyslog",
|
|
8864
|
+
"OutputSyslogHost": ".outputsyslog",
|
|
8865
|
+
"OutputSyslogHostTypedDict": ".outputsyslog",
|
|
8480
8866
|
"OutputSyslogMaximumTLSVersion": ".outputsyslog",
|
|
8481
8867
|
"OutputSyslogMessageFormat": ".outputsyslog",
|
|
8482
8868
|
"OutputSyslogMinimumTLSVersion": ".outputsyslog",
|
|
@@ -8486,6 +8872,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8486
8872
|
"OutputSyslogProtocol": ".outputsyslog",
|
|
8487
8873
|
"OutputSyslogQueueFullBehavior": ".outputsyslog",
|
|
8488
8874
|
"OutputSyslogSeverity": ".outputsyslog",
|
|
8875
|
+
"OutputSyslogTLS": ".outputsyslog",
|
|
8489
8876
|
"OutputSyslogTLSSettingsClientSide": ".outputsyslog",
|
|
8490
8877
|
"OutputSyslogTLSSettingsClientSideTypedDict": ".outputsyslog",
|
|
8491
8878
|
"OutputSyslogType": ".outputsyslog",
|