cribl-control-plane 0.3.0b2__py3-none-any.whl → 0.3.0b4__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.

Files changed (113) hide show
  1. cribl_control_plane/_version.py +3 -3
  2. cribl_control_plane/errors/__init__.py +8 -5
  3. cribl_control_plane/errors/{healthstatus_error.py → healthserverstatus_error.py} +10 -9
  4. cribl_control_plane/groups_sdk.py +48 -24
  5. cribl_control_plane/health.py +22 -16
  6. cribl_control_plane/models/__init__.py +152 -29
  7. cribl_control_plane/models/authtoken.py +4 -7
  8. cribl_control_plane/models/configgroup.py +8 -7
  9. cribl_control_plane/models/createconfiggroupbyproductop.py +6 -5
  10. cribl_control_plane/models/createroutesappendbyidop.py +2 -2
  11. cribl_control_plane/models/deleteoutputpqbyidop.py +2 -2
  12. cribl_control_plane/models/groupcreaterequest.py +152 -0
  13. cribl_control_plane/models/{healthstatus.py → healthserverstatus.py} +7 -7
  14. cribl_control_plane/models/input.py +15 -15
  15. cribl_control_plane/models/inputappscope.py +20 -16
  16. cribl_control_plane/models/inputconfluentcloud.py +110 -0
  17. cribl_control_plane/models/inputcriblhttp.py +20 -16
  18. cribl_control_plane/models/inputcribllakehttp.py +20 -16
  19. cribl_control_plane/models/inputcribltcp.py +20 -16
  20. cribl_control_plane/models/inputdatadogagent.py +20 -16
  21. cribl_control_plane/models/inputedgeprometheus.py +44 -36
  22. cribl_control_plane/models/inputelastic.py +44 -27
  23. cribl_control_plane/models/inputeventhub.py +118 -0
  24. cribl_control_plane/models/inputfile.py +7 -2
  25. cribl_control_plane/models/inputfirehose.py +20 -16
  26. cribl_control_plane/models/inputgrafana.py +39 -31
  27. cribl_control_plane/models/inputhttp.py +20 -16
  28. cribl_control_plane/models/inputhttpraw.py +20 -16
  29. cribl_control_plane/models/inputkafka.py +108 -0
  30. cribl_control_plane/models/inputloki.py +20 -16
  31. cribl_control_plane/models/inputmetrics.py +20 -16
  32. cribl_control_plane/models/inputmodeldriventelemetry.py +20 -16
  33. cribl_control_plane/models/inputopentelemetry.py +19 -15
  34. cribl_control_plane/models/inputprometheus.py +44 -36
  35. cribl_control_plane/models/inputprometheusrw.py +20 -16
  36. cribl_control_plane/models/inputsplunk.py +20 -16
  37. cribl_control_plane/models/inputsplunkhec.py +19 -15
  38. cribl_control_plane/models/inputsyslog.py +39 -31
  39. cribl_control_plane/models/inputsystemmetrics.py +20 -10
  40. cribl_control_plane/models/inputtcp.py +30 -16
  41. cribl_control_plane/models/inputtcpjson.py +20 -16
  42. cribl_control_plane/models/inputwindowsmetrics.py +20 -10
  43. cribl_control_plane/models/inputwineventlogs.py +14 -0
  44. cribl_control_plane/models/inputwizwebhook.py +20 -16
  45. cribl_control_plane/models/inputzscalerhec.py +19 -15
  46. cribl_control_plane/models/logininfo.py +3 -3
  47. cribl_control_plane/models/output.py +21 -21
  48. cribl_control_plane/models/outputazureblob.py +7 -0
  49. cribl_control_plane/models/outputazuredataexplorer.py +283 -93
  50. cribl_control_plane/models/outputazureeventhub.py +169 -21
  51. cribl_control_plane/models/outputazurelogs.py +49 -21
  52. cribl_control_plane/models/outputchronicle.py +49 -21
  53. cribl_control_plane/models/outputclickhouse.py +49 -21
  54. cribl_control_plane/models/outputcloudwatch.py +49 -21
  55. cribl_control_plane/models/outputconfluentcloud.py +167 -22
  56. cribl_control_plane/models/outputcriblhttp.py +49 -21
  57. cribl_control_plane/models/outputcribltcp.py +49 -21
  58. cribl_control_plane/models/outputcrowdstrikenextgensiem.py +50 -22
  59. cribl_control_plane/models/outputdatabricks.py +7 -0
  60. cribl_control_plane/models/outputdatadog.py +49 -21
  61. cribl_control_plane/models/outputdataset.py +49 -21
  62. cribl_control_plane/models/outputdls3.py +7 -0
  63. cribl_control_plane/models/outputdynatracehttp.py +49 -21
  64. cribl_control_plane/models/outputdynatraceotlp.py +49 -21
  65. cribl_control_plane/models/outputelastic.py +74 -21
  66. cribl_control_plane/models/outputelasticcloud.py +74 -21
  67. cribl_control_plane/models/outputfilesystem.py +7 -0
  68. cribl_control_plane/models/outputgooglechronicle.py +65 -22
  69. cribl_control_plane/models/outputgooglecloudlogging.py +50 -22
  70. cribl_control_plane/models/outputgooglecloudstorage.py +7 -0
  71. cribl_control_plane/models/outputgooglepubsub.py +49 -21
  72. cribl_control_plane/models/outputgrafanacloud.py +98 -42
  73. cribl_control_plane/models/outputgraphite.py +49 -21
  74. cribl_control_plane/models/outputhoneycomb.py +49 -21
  75. cribl_control_plane/models/outputhumiohec.py +49 -21
  76. cribl_control_plane/models/outputinfluxdb.py +49 -21
  77. cribl_control_plane/models/outputkafka.py +162 -19
  78. cribl_control_plane/models/outputkinesis.py +56 -21
  79. cribl_control_plane/models/outputloki.py +47 -19
  80. cribl_control_plane/models/outputminio.py +7 -0
  81. cribl_control_plane/models/outputmsk.py +54 -19
  82. cribl_control_plane/models/outputnewrelic.py +49 -21
  83. cribl_control_plane/models/outputnewrelicevents.py +50 -22
  84. cribl_control_plane/models/outputopentelemetry.py +49 -21
  85. cribl_control_plane/models/outputprometheus.py +49 -21
  86. cribl_control_plane/models/outputs3.py +7 -0
  87. cribl_control_plane/models/outputsentinel.py +49 -21
  88. cribl_control_plane/models/outputsentineloneaisiem.py +50 -22
  89. cribl_control_plane/models/outputservicenow.py +49 -21
  90. cribl_control_plane/models/outputsignalfx.py +49 -21
  91. cribl_control_plane/models/outputsns.py +47 -19
  92. cribl_control_plane/models/outputsplunk.py +49 -21
  93. cribl_control_plane/models/outputsplunkhec.py +124 -21
  94. cribl_control_plane/models/outputsplunklb.py +49 -21
  95. cribl_control_plane/models/outputsqs.py +47 -19
  96. cribl_control_plane/models/outputstatsd.py +49 -21
  97. cribl_control_plane/models/outputstatsdext.py +49 -21
  98. cribl_control_plane/models/outputsumologic.py +49 -21
  99. cribl_control_plane/models/outputsyslog.py +129 -99
  100. cribl_control_plane/models/outputtcpjson.py +49 -21
  101. cribl_control_plane/models/outputwavefront.py +49 -21
  102. cribl_control_plane/models/outputwebhook.py +49 -21
  103. cribl_control_plane/models/outputxsiam.py +47 -19
  104. cribl_control_plane/models/runnablejobcollection.py +12 -8
  105. cribl_control_plane/models/runnablejobexecutor.py +12 -8
  106. cribl_control_plane/models/runnablejobscheduledsearch.py +12 -8
  107. cribl_control_plane/routes_sdk.py +6 -6
  108. cribl_control_plane/tokens.py +23 -15
  109. {cribl_control_plane-0.3.0b2.dist-info → cribl_control_plane-0.3.0b4.dist-info}/METADATA +4 -4
  110. {cribl_control_plane-0.3.0b2.dist-info → cribl_control_plane-0.3.0b4.dist-info}/RECORD +111 -112
  111. cribl_control_plane/models/error.py +0 -16
  112. cribl_control_plane/models/gethealthinfoop.py +0 -17
  113. {cribl_control_plane-0.3.0b2.dist-info → cribl_control_plane-0.3.0b4.dist-info}/WHEEL +0 -0
@@ -20,11 +20,11 @@ if TYPE_CHECKING:
20
20
  from .commit import Commit, CommitTypedDict
21
21
  from .configgroup import (
22
22
  ConfigGroup,
23
+ ConfigGroupEstimatedIngestRate,
24
+ ConfigGroupGit,
25
+ ConfigGroupGitTypedDict,
23
26
  ConfigGroupType,
24
27
  ConfigGroupTypedDict,
25
- EstimatedIngestRate,
26
- Git,
27
- GitTypedDict,
28
28
  )
29
29
  from .configgroupcloud import ConfigGroupCloud, ConfigGroupCloudTypedDict
30
30
  from .configgrouplookups import (
@@ -184,7 +184,6 @@ if TYPE_CHECKING:
184
184
  DistributedSummaryWorkers,
185
185
  DistributedSummaryWorkersTypedDict,
186
186
  )
187
- from .error import Error, ErrorTypedDict
188
187
  from .getconfiggroupaclbyproductandidop import (
189
188
  GetConfigGroupACLByProductAndIDRequest,
190
189
  GetConfigGroupACLByProductAndIDRequestTypedDict,
@@ -221,7 +220,6 @@ if TYPE_CHECKING:
221
220
  GetCriblLakeDatasetByLakeIDResponse,
222
221
  GetCriblLakeDatasetByLakeIDResponseTypedDict,
223
222
  )
224
- from .gethealthinfoop import GetHealthInfoResponse, GetHealthInfoResponseTypedDict
225
223
  from .getinputbyidop import (
226
224
  GetInputByIDRequest,
227
225
  GetInputByIDRequestTypedDict,
@@ -361,6 +359,14 @@ if TYPE_CHECKING:
361
359
  Renamed,
362
360
  RenamedTypedDict,
363
361
  )
362
+ from .groupcreaterequest import (
363
+ GroupCreateRequest,
364
+ GroupCreateRequestEstimatedIngestRate,
365
+ GroupCreateRequestGit,
366
+ GroupCreateRequestGitTypedDict,
367
+ GroupCreateRequestType,
368
+ GroupCreateRequestTypedDict,
369
+ )
364
370
  from .hbcriblinfo import (
365
371
  Config,
366
372
  ConfigTypedDict,
@@ -369,7 +375,12 @@ if TYPE_CHECKING:
369
375
  HBCriblInfoTypedDict,
370
376
  )
371
377
  from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
372
- from .healthstatus import HealthStatus, HealthStatusTypedDict, Role, Status
378
+ from .healthserverstatus import (
379
+ HealthServerStatus,
380
+ HealthServerStatusTypedDict,
381
+ Role,
382
+ Status,
383
+ )
373
384
  from .heartbeatmetadata import (
374
385
  HeartbeatMetadata,
375
386
  HeartbeatMetadataAws,
@@ -454,6 +465,7 @@ if TYPE_CHECKING:
454
465
  InputConfluentCloudAuth,
455
466
  InputConfluentCloudAuthTypedDict,
456
467
  InputConfluentCloudAuthentication,
468
+ InputConfluentCloudAuthenticationMethod,
457
469
  InputConfluentCloudAuthenticationTypedDict,
458
470
  InputConfluentCloudCompression,
459
471
  InputConfluentCloudConnection,
@@ -469,11 +481,15 @@ if TYPE_CHECKING:
469
481
  InputConfluentCloudMetadatumTypedDict,
470
482
  InputConfluentCloudMinimumTLSVersion,
471
483
  InputConfluentCloudMode,
484
+ InputConfluentCloudOauthParam,
485
+ InputConfluentCloudOauthParamTypedDict,
472
486
  InputConfluentCloudPq,
473
487
  InputConfluentCloudPqControls,
474
488
  InputConfluentCloudPqControlsTypedDict,
475
489
  InputConfluentCloudPqTypedDict,
476
490
  InputConfluentCloudSASLMechanism,
491
+ InputConfluentCloudSaslExtension,
492
+ InputConfluentCloudSaslExtensionTypedDict,
477
493
  InputConfluentCloudTLSSettingsClientSide,
478
494
  InputConfluentCloudTLSSettingsClientSideTypedDict,
479
495
  InputConfluentCloudType,
@@ -693,13 +709,16 @@ if TYPE_CHECKING:
693
709
  )
694
710
  from .inputeventhub import (
695
711
  InputEventhub,
712
+ InputEventhubAuthTypeAuthenticationMethod,
696
713
  InputEventhubAuthentication,
697
714
  InputEventhubAuthenticationTypedDict,
715
+ InputEventhubClientSecretAuthTypeAuthenticationMethod,
698
716
  InputEventhubCompression,
699
717
  InputEventhubConnection,
700
718
  InputEventhubConnectionTypedDict,
701
719
  InputEventhubMetadatum,
702
720
  InputEventhubMetadatumTypedDict,
721
+ InputEventhubMicrosoftEntraIDAuthenticationEndpoint,
703
722
  InputEventhubMode,
704
723
  InputEventhubPq,
705
724
  InputEventhubPqControls,
@@ -912,6 +931,7 @@ if TYPE_CHECKING:
912
931
  InputKafkaAuth,
913
932
  InputKafkaAuthTypedDict,
914
933
  InputKafkaAuthentication,
934
+ InputKafkaAuthenticationMethod,
915
935
  InputKafkaAuthenticationTypedDict,
916
936
  InputKafkaCompression,
917
937
  InputKafkaConnection,
@@ -927,11 +947,15 @@ if TYPE_CHECKING:
927
947
  InputKafkaMetadatumTypedDict,
928
948
  InputKafkaMinimumTLSVersion,
929
949
  InputKafkaMode,
950
+ InputKafkaOauthParam,
951
+ InputKafkaOauthParamTypedDict,
930
952
  InputKafkaPq,
931
953
  InputKafkaPqControls,
932
954
  InputKafkaPqControlsTypedDict,
933
955
  InputKafkaPqTypedDict,
934
956
  InputKafkaSASLMechanism,
957
+ InputKafkaSaslExtension,
958
+ InputKafkaSaslExtensionTypedDict,
935
959
  InputKafkaTLSSettingsClientSide,
936
960
  InputKafkaTLSSettingsClientSideTypedDict,
937
961
  InputKafkaType,
@@ -1866,16 +1890,21 @@ if TYPE_CHECKING:
1866
1890
  IngestIfNotExist,
1867
1891
  IngestIfNotExistTypedDict,
1868
1892
  IngestionMode,
1869
- MicrosoftEntraIDAuthenticationEndpoint,
1870
1893
  OutputAzureDataExplorer,
1871
1894
  OutputAzureDataExplorerAuthenticationMethod,
1872
1895
  OutputAzureDataExplorerBackpressureBehavior,
1873
1896
  OutputAzureDataExplorerCertificate,
1874
1897
  OutputAzureDataExplorerCertificateTypedDict,
1875
1898
  OutputAzureDataExplorerCompressCompression,
1899
+ OutputAzureDataExplorerCompressionLevel,
1876
1900
  OutputAzureDataExplorerDataFormat,
1901
+ OutputAzureDataExplorerDataPageVersion,
1877
1902
  OutputAzureDataExplorerDiskSpaceProtection,
1903
+ OutputAzureDataExplorerKeyValueMetadatum,
1904
+ OutputAzureDataExplorerKeyValueMetadatumTypedDict,
1905
+ OutputAzureDataExplorerMicrosoftEntraIDAuthenticationEndpoint,
1878
1906
  OutputAzureDataExplorerMode,
1907
+ OutputAzureDataExplorerParquetVersion,
1879
1908
  OutputAzureDataExplorerPqCompressCompression,
1880
1909
  OutputAzureDataExplorerPqControls,
1881
1910
  OutputAzureDataExplorerPqControlsTypedDict,
@@ -1893,10 +1922,13 @@ if TYPE_CHECKING:
1893
1922
  from .outputazureeventhub import (
1894
1923
  OutputAzureEventhub,
1895
1924
  OutputAzureEventhubAcknowledgments,
1925
+ OutputAzureEventhubAuthTypeAuthenticationMethod,
1896
1926
  OutputAzureEventhubAuthentication,
1897
1927
  OutputAzureEventhubAuthenticationTypedDict,
1898
1928
  OutputAzureEventhubBackpressureBehavior,
1929
+ OutputAzureEventhubClientSecretAuthTypeAuthenticationMethod,
1899
1930
  OutputAzureEventhubCompression,
1931
+ OutputAzureEventhubMicrosoftEntraIDAuthenticationEndpoint,
1900
1932
  OutputAzureEventhubMode,
1901
1933
  OutputAzureEventhubPqControls,
1902
1934
  OutputAzureEventhubPqControlsTypedDict,
@@ -1997,6 +2029,7 @@ if TYPE_CHECKING:
1997
2029
  OutputConfluentCloudAuth,
1998
2030
  OutputConfluentCloudAuthTypedDict,
1999
2031
  OutputConfluentCloudAuthentication,
2032
+ OutputConfluentCloudAuthenticationMethod,
2000
2033
  OutputConfluentCloudAuthenticationTypedDict,
2001
2034
  OutputConfluentCloudBackpressureBehavior,
2002
2035
  OutputConfluentCloudCompression,
@@ -2009,12 +2042,16 @@ if TYPE_CHECKING:
2009
2042
  OutputConfluentCloudMaximumTLSVersion,
2010
2043
  OutputConfluentCloudMinimumTLSVersion,
2011
2044
  OutputConfluentCloudMode,
2045
+ OutputConfluentCloudOauthParam,
2046
+ OutputConfluentCloudOauthParamTypedDict,
2012
2047
  OutputConfluentCloudPqCompressCompression,
2013
2048
  OutputConfluentCloudPqControls,
2014
2049
  OutputConfluentCloudPqControlsTypedDict,
2015
2050
  OutputConfluentCloudQueueFullBehavior,
2016
2051
  OutputConfluentCloudRecordDataFormat,
2017
2052
  OutputConfluentCloudSASLMechanism,
2053
+ OutputConfluentCloudSaslExtension,
2054
+ OutputConfluentCloudSaslExtensionTypedDict,
2018
2055
  OutputConfluentCloudTLSSettingsClientSide,
2019
2056
  OutputConfluentCloudTLSSettingsClientSideTypedDict,
2020
2057
  OutputConfluentCloudType,
@@ -2327,6 +2364,7 @@ if TYPE_CHECKING:
2327
2364
  OutputGoogleChronicleType,
2328
2365
  OutputGoogleChronicleTypedDict,
2329
2366
  SendEventsAs,
2367
+ UDMType,
2330
2368
  )
2331
2369
  from .outputgooglecloudlogging import (
2332
2370
  LogLabel,
@@ -2511,6 +2549,7 @@ if TYPE_CHECKING:
2511
2549
  OutputKafkaAuth,
2512
2550
  OutputKafkaAuthTypedDict,
2513
2551
  OutputKafkaAuthentication,
2552
+ OutputKafkaAuthenticationMethod,
2514
2553
  OutputKafkaAuthenticationTypedDict,
2515
2554
  OutputKafkaBackpressureBehavior,
2516
2555
  OutputKafkaCompression,
@@ -2523,12 +2562,16 @@ if TYPE_CHECKING:
2523
2562
  OutputKafkaMaximumTLSVersion,
2524
2563
  OutputKafkaMinimumTLSVersion,
2525
2564
  OutputKafkaMode,
2565
+ OutputKafkaOauthParam,
2566
+ OutputKafkaOauthParamTypedDict,
2526
2567
  OutputKafkaPqCompressCompression,
2527
2568
  OutputKafkaPqControls,
2528
2569
  OutputKafkaPqControlsTypedDict,
2529
2570
  OutputKafkaQueueFullBehavior,
2530
2571
  OutputKafkaRecordDataFormat,
2531
2572
  OutputKafkaSASLMechanism,
2573
+ OutputKafkaSaslExtension,
2574
+ OutputKafkaSaslExtensionTypedDict,
2532
2575
  OutputKafkaTLSSettingsClientSide,
2533
2576
  OutputKafkaTLSSettingsClientSideTypedDict,
2534
2577
  OutputKafkaType,
@@ -2913,12 +2956,16 @@ if TYPE_CHECKING:
2913
2956
  OutputSplunkHecExtraHTTPHeader,
2914
2957
  OutputSplunkHecExtraHTTPHeaderTypedDict,
2915
2958
  OutputSplunkHecFailedRequestLoggingMode,
2959
+ OutputSplunkHecMaximumTLSVersion,
2960
+ OutputSplunkHecMinimumTLSVersion,
2916
2961
  OutputSplunkHecMode,
2917
2962
  OutputSplunkHecPqControls,
2918
2963
  OutputSplunkHecPqControlsTypedDict,
2919
2964
  OutputSplunkHecQueueFullBehavior,
2920
2965
  OutputSplunkHecResponseRetrySetting,
2921
2966
  OutputSplunkHecResponseRetrySettingTypedDict,
2967
+ OutputSplunkHecTLSSettingsClientSide,
2968
+ OutputSplunkHecTLSSettingsClientSideTypedDict,
2922
2969
  OutputSplunkHecTimeoutRetrySettings,
2923
2970
  OutputSplunkHecTimeoutRetrySettingsTypedDict,
2924
2971
  OutputSplunkHecType,
@@ -3373,6 +3420,9 @@ __all__ = [
3373
3420
  "ConfigGroup",
3374
3421
  "ConfigGroupCloud",
3375
3422
  "ConfigGroupCloudTypedDict",
3423
+ "ConfigGroupEstimatedIngestRate",
3424
+ "ConfigGroupGit",
3425
+ "ConfigGroupGitTypedDict",
3376
3426
  "ConfigGroupLookups",
3377
3427
  "ConfigGroupLookupsLookup",
3378
3428
  "ConfigGroupLookupsLookupTypedDict",
@@ -3498,9 +3548,6 @@ __all__ = [
3498
3548
  "EndpointParam",
3499
3549
  "EndpointParamTypedDict",
3500
3550
  "EndpointType",
3501
- "Error",
3502
- "ErrorTypedDict",
3503
- "EstimatedIngestRate",
3504
3551
  "EventFormat",
3505
3552
  "Executor",
3506
3553
  "ExecutorSpecificSettings",
@@ -3542,8 +3589,6 @@ __all__ = [
3542
3589
  "GetCriblLakeDatasetByLakeIDRequestTypedDict",
3543
3590
  "GetCriblLakeDatasetByLakeIDResponse",
3544
3591
  "GetCriblLakeDatasetByLakeIDResponseTypedDict",
3545
- "GetHealthInfoResponse",
3546
- "GetHealthInfoResponseTypedDict",
3547
3592
  "GetInputByIDRequest",
3548
3593
  "GetInputByIDRequestTypedDict",
3549
3594
  "GetInputByIDResponse",
@@ -3612,7 +3657,6 @@ __all__ = [
3612
3657
  "GetVersionStatusRequestTypedDict",
3613
3658
  "GetVersionStatusResponse",
3614
3659
  "GetVersionStatusResponseTypedDict",
3615
- "Git",
3616
3660
  "GitCommitParams",
3617
3661
  "GitCommitParamsTypedDict",
3618
3662
  "GitCommitSummary",
@@ -3641,13 +3685,18 @@ __all__ = [
3641
3685
  "GitShowResultTypedDict",
3642
3686
  "GitStatusResult",
3643
3687
  "GitStatusResultTypedDict",
3644
- "GitTypedDict",
3688
+ "GroupCreateRequest",
3689
+ "GroupCreateRequestEstimatedIngestRate",
3690
+ "GroupCreateRequestGit",
3691
+ "GroupCreateRequestGitTypedDict",
3692
+ "GroupCreateRequestType",
3693
+ "GroupCreateRequestTypedDict",
3645
3694
  "HBCriblInfo",
3646
3695
  "HBCriblInfoTypedDict",
3647
3696
  "HBLeaderInfo",
3648
3697
  "HBLeaderInfoTypedDict",
3649
- "HealthStatus",
3650
- "HealthStatusTypedDict",
3698
+ "HealthServerStatus",
3699
+ "HealthServerStatusTypedDict",
3651
3700
  "HeartbeatMetadata",
3652
3701
  "HeartbeatMetadataAws",
3653
3702
  "HeartbeatMetadataAwsTypedDict",
@@ -3732,6 +3781,7 @@ __all__ = [
3732
3781
  "InputConfluentCloudAuth",
3733
3782
  "InputConfluentCloudAuthTypedDict",
3734
3783
  "InputConfluentCloudAuthentication",
3784
+ "InputConfluentCloudAuthenticationMethod",
3735
3785
  "InputConfluentCloudAuthenticationTypedDict",
3736
3786
  "InputConfluentCloudCompression",
3737
3787
  "InputConfluentCloudConnection",
@@ -3747,11 +3797,15 @@ __all__ = [
3747
3797
  "InputConfluentCloudMetadatumTypedDict",
3748
3798
  "InputConfluentCloudMinimumTLSVersion",
3749
3799
  "InputConfluentCloudMode",
3800
+ "InputConfluentCloudOauthParam",
3801
+ "InputConfluentCloudOauthParamTypedDict",
3750
3802
  "InputConfluentCloudPq",
3751
3803
  "InputConfluentCloudPqControls",
3752
3804
  "InputConfluentCloudPqControlsTypedDict",
3753
3805
  "InputConfluentCloudPqTypedDict",
3754
3806
  "InputConfluentCloudSASLMechanism",
3807
+ "InputConfluentCloudSaslExtension",
3808
+ "InputConfluentCloudSaslExtensionTypedDict",
3755
3809
  "InputConfluentCloudTLSSettingsClientSide",
3756
3810
  "InputConfluentCloudTLSSettingsClientSideTypedDict",
3757
3811
  "InputConfluentCloudType",
@@ -3937,13 +3991,16 @@ __all__ = [
3937
3991
  "InputElasticType",
3938
3992
  "InputElasticTypedDict",
3939
3993
  "InputEventhub",
3994
+ "InputEventhubAuthTypeAuthenticationMethod",
3940
3995
  "InputEventhubAuthentication",
3941
3996
  "InputEventhubAuthenticationTypedDict",
3997
+ "InputEventhubClientSecretAuthTypeAuthenticationMethod",
3942
3998
  "InputEventhubCompression",
3943
3999
  "InputEventhubConnection",
3944
4000
  "InputEventhubConnectionTypedDict",
3945
4001
  "InputEventhubMetadatum",
3946
4002
  "InputEventhubMetadatumTypedDict",
4003
+ "InputEventhubMicrosoftEntraIDAuthenticationEndpoint",
3947
4004
  "InputEventhubMode",
3948
4005
  "InputEventhubPq",
3949
4006
  "InputEventhubPqControls",
@@ -4121,6 +4178,7 @@ __all__ = [
4121
4178
  "InputKafkaAuth",
4122
4179
  "InputKafkaAuthTypedDict",
4123
4180
  "InputKafkaAuthentication",
4181
+ "InputKafkaAuthenticationMethod",
4124
4182
  "InputKafkaAuthenticationTypedDict",
4125
4183
  "InputKafkaCompression",
4126
4184
  "InputKafkaConnection",
@@ -4136,11 +4194,15 @@ __all__ = [
4136
4194
  "InputKafkaMetadatumTypedDict",
4137
4195
  "InputKafkaMinimumTLSVersion",
4138
4196
  "InputKafkaMode",
4197
+ "InputKafkaOauthParam",
4198
+ "InputKafkaOauthParamTypedDict",
4139
4199
  "InputKafkaPq",
4140
4200
  "InputKafkaPqControls",
4141
4201
  "InputKafkaPqControlsTypedDict",
4142
4202
  "InputKafkaPqTypedDict",
4143
4203
  "InputKafkaSASLMechanism",
4204
+ "InputKafkaSaslExtension",
4205
+ "InputKafkaSaslExtensionTypedDict",
4144
4206
  "InputKafkaTLSSettingsClientSide",
4145
4207
  "InputKafkaTLSSettingsClientSideTypedDict",
4146
4208
  "InputKafkaType",
@@ -4933,7 +4995,6 @@ __all__ = [
4933
4995
  "MasterWorkerEntryWorkers",
4934
4996
  "MasterWorkerEntryWorkersTypedDict",
4935
4997
  "MetricsProtocol",
4936
- "MicrosoftEntraIDAuthenticationEndpoint",
4937
4998
  "NodeActiveUpgradeStatus",
4938
4999
  "NodeFailedUpgradeStatus",
4939
5000
  "NodeProvidedInfo",
@@ -4984,9 +5045,15 @@ __all__ = [
4984
5045
  "OutputAzureDataExplorerCertificate",
4985
5046
  "OutputAzureDataExplorerCertificateTypedDict",
4986
5047
  "OutputAzureDataExplorerCompressCompression",
5048
+ "OutputAzureDataExplorerCompressionLevel",
4987
5049
  "OutputAzureDataExplorerDataFormat",
5050
+ "OutputAzureDataExplorerDataPageVersion",
4988
5051
  "OutputAzureDataExplorerDiskSpaceProtection",
5052
+ "OutputAzureDataExplorerKeyValueMetadatum",
5053
+ "OutputAzureDataExplorerKeyValueMetadatumTypedDict",
5054
+ "OutputAzureDataExplorerMicrosoftEntraIDAuthenticationEndpoint",
4989
5055
  "OutputAzureDataExplorerMode",
5056
+ "OutputAzureDataExplorerParquetVersion",
4990
5057
  "OutputAzureDataExplorerPqCompressCompression",
4991
5058
  "OutputAzureDataExplorerPqControls",
4992
5059
  "OutputAzureDataExplorerPqControlsTypedDict",
@@ -4999,10 +5066,13 @@ __all__ = [
4999
5066
  "OutputAzureDataExplorerTypedDict",
5000
5067
  "OutputAzureEventhub",
5001
5068
  "OutputAzureEventhubAcknowledgments",
5069
+ "OutputAzureEventhubAuthTypeAuthenticationMethod",
5002
5070
  "OutputAzureEventhubAuthentication",
5003
5071
  "OutputAzureEventhubAuthenticationTypedDict",
5004
5072
  "OutputAzureEventhubBackpressureBehavior",
5073
+ "OutputAzureEventhubClientSecretAuthTypeAuthenticationMethod",
5005
5074
  "OutputAzureEventhubCompression",
5075
+ "OutputAzureEventhubMicrosoftEntraIDAuthenticationEndpoint",
5006
5076
  "OutputAzureEventhubMode",
5007
5077
  "OutputAzureEventhubPqControls",
5008
5078
  "OutputAzureEventhubPqControlsTypedDict",
@@ -5090,6 +5160,7 @@ __all__ = [
5090
5160
  "OutputConfluentCloudAuth",
5091
5161
  "OutputConfluentCloudAuthTypedDict",
5092
5162
  "OutputConfluentCloudAuthentication",
5163
+ "OutputConfluentCloudAuthenticationMethod",
5093
5164
  "OutputConfluentCloudAuthenticationTypedDict",
5094
5165
  "OutputConfluentCloudBackpressureBehavior",
5095
5166
  "OutputConfluentCloudCompression",
@@ -5102,12 +5173,16 @@ __all__ = [
5102
5173
  "OutputConfluentCloudMaximumTLSVersion",
5103
5174
  "OutputConfluentCloudMinimumTLSVersion",
5104
5175
  "OutputConfluentCloudMode",
5176
+ "OutputConfluentCloudOauthParam",
5177
+ "OutputConfluentCloudOauthParamTypedDict",
5105
5178
  "OutputConfluentCloudPqCompressCompression",
5106
5179
  "OutputConfluentCloudPqControls",
5107
5180
  "OutputConfluentCloudPqControlsTypedDict",
5108
5181
  "OutputConfluentCloudQueueFullBehavior",
5109
5182
  "OutputConfluentCloudRecordDataFormat",
5110
5183
  "OutputConfluentCloudSASLMechanism",
5184
+ "OutputConfluentCloudSaslExtension",
5185
+ "OutputConfluentCloudSaslExtensionTypedDict",
5111
5186
  "OutputConfluentCloudTLSSettingsClientSide",
5112
5187
  "OutputConfluentCloudTLSSettingsClientSideTypedDict",
5113
5188
  "OutputConfluentCloudType",
@@ -5539,6 +5614,7 @@ __all__ = [
5539
5614
  "OutputKafkaAuth",
5540
5615
  "OutputKafkaAuthTypedDict",
5541
5616
  "OutputKafkaAuthentication",
5617
+ "OutputKafkaAuthenticationMethod",
5542
5618
  "OutputKafkaAuthenticationTypedDict",
5543
5619
  "OutputKafkaBackpressureBehavior",
5544
5620
  "OutputKafkaCompression",
@@ -5551,12 +5627,16 @@ __all__ = [
5551
5627
  "OutputKafkaMaximumTLSVersion",
5552
5628
  "OutputKafkaMinimumTLSVersion",
5553
5629
  "OutputKafkaMode",
5630
+ "OutputKafkaOauthParam",
5631
+ "OutputKafkaOauthParamTypedDict",
5554
5632
  "OutputKafkaPqCompressCompression",
5555
5633
  "OutputKafkaPqControls",
5556
5634
  "OutputKafkaPqControlsTypedDict",
5557
5635
  "OutputKafkaQueueFullBehavior",
5558
5636
  "OutputKafkaRecordDataFormat",
5559
5637
  "OutputKafkaSASLMechanism",
5638
+ "OutputKafkaSaslExtension",
5639
+ "OutputKafkaSaslExtensionTypedDict",
5560
5640
  "OutputKafkaTLSSettingsClientSide",
5561
5641
  "OutputKafkaTLSSettingsClientSideTypedDict",
5562
5642
  "OutputKafkaType",
@@ -5880,12 +5960,16 @@ __all__ = [
5880
5960
  "OutputSplunkHecExtraHTTPHeader",
5881
5961
  "OutputSplunkHecExtraHTTPHeaderTypedDict",
5882
5962
  "OutputSplunkHecFailedRequestLoggingMode",
5963
+ "OutputSplunkHecMaximumTLSVersion",
5964
+ "OutputSplunkHecMinimumTLSVersion",
5883
5965
  "OutputSplunkHecMode",
5884
5966
  "OutputSplunkHecPqControls",
5885
5967
  "OutputSplunkHecPqControlsTypedDict",
5886
5968
  "OutputSplunkHecQueueFullBehavior",
5887
5969
  "OutputSplunkHecResponseRetrySetting",
5888
5970
  "OutputSplunkHecResponseRetrySettingTypedDict",
5971
+ "OutputSplunkHecTLSSettingsClientSide",
5972
+ "OutputSplunkHecTLSSettingsClientSideTypedDict",
5889
5973
  "OutputSplunkHecTimeoutRetrySettings",
5890
5974
  "OutputSplunkHecTimeoutRetrySettingsTypedDict",
5891
5975
  "OutputSplunkHecType",
@@ -6231,6 +6315,7 @@ __all__ = [
6231
6315
  "TimeRange",
6232
6316
  "TimestampFormat",
6233
6317
  "TimestampPrecision",
6318
+ "UDMType",
6234
6319
  "UpdateConfigGroupByProductAndIDRequest",
6235
6320
  "UpdateConfigGroupByProductAndIDRequestTypedDict",
6236
6321
  "UpdateConfigGroupByProductAndIDResponse",
@@ -6302,11 +6387,11 @@ _dynamic_imports: dict[str, str] = {
6302
6387
  "Commit": ".commit",
6303
6388
  "CommitTypedDict": ".commit",
6304
6389
  "ConfigGroup": ".configgroup",
6390
+ "ConfigGroupEstimatedIngestRate": ".configgroup",
6391
+ "ConfigGroupGit": ".configgroup",
6392
+ "ConfigGroupGitTypedDict": ".configgroup",
6305
6393
  "ConfigGroupType": ".configgroup",
6306
6394
  "ConfigGroupTypedDict": ".configgroup",
6307
- "EstimatedIngestRate": ".configgroup",
6308
- "Git": ".configgroup",
6309
- "GitTypedDict": ".configgroup",
6310
6395
  "ConfigGroupCloud": ".configgroupcloud",
6311
6396
  "ConfigGroupCloudTypedDict": ".configgroupcloud",
6312
6397
  "ConfigGroupLookups": ".configgrouplookups",
@@ -6426,8 +6511,6 @@ _dynamic_imports: dict[str, str] = {
6426
6511
  "DistributedSummaryTypedDict": ".distributedsummary",
6427
6512
  "DistributedSummaryWorkers": ".distributedsummary",
6428
6513
  "DistributedSummaryWorkersTypedDict": ".distributedsummary",
6429
- "Error": ".error",
6430
- "ErrorTypedDict": ".error",
6431
6514
  "GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
6432
6515
  "GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
6433
6516
  "GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
@@ -6452,8 +6535,6 @@ _dynamic_imports: dict[str, str] = {
6452
6535
  "GetCriblLakeDatasetByLakeIDRequestTypedDict": ".getcribllakedatasetbylakeidop",
6453
6536
  "GetCriblLakeDatasetByLakeIDResponse": ".getcribllakedatasetbylakeidop",
6454
6537
  "GetCriblLakeDatasetByLakeIDResponseTypedDict": ".getcribllakedatasetbylakeidop",
6455
- "GetHealthInfoResponse": ".gethealthinfoop",
6456
- "GetHealthInfoResponseTypedDict": ".gethealthinfoop",
6457
6538
  "GetInputByIDRequest": ".getinputbyidop",
6458
6539
  "GetInputByIDRequestTypedDict": ".getinputbyidop",
6459
6540
  "GetInputByIDResponse": ".getinputbyidop",
@@ -6563,6 +6644,12 @@ _dynamic_imports: dict[str, str] = {
6563
6644
  "GitStatusResultTypedDict": ".gitstatusresult",
6564
6645
  "Renamed": ".gitstatusresult",
6565
6646
  "RenamedTypedDict": ".gitstatusresult",
6647
+ "GroupCreateRequest": ".groupcreaterequest",
6648
+ "GroupCreateRequestEstimatedIngestRate": ".groupcreaterequest",
6649
+ "GroupCreateRequestGit": ".groupcreaterequest",
6650
+ "GroupCreateRequestGitTypedDict": ".groupcreaterequest",
6651
+ "GroupCreateRequestType": ".groupcreaterequest",
6652
+ "GroupCreateRequestTypedDict": ".groupcreaterequest",
6566
6653
  "Config": ".hbcriblinfo",
6567
6654
  "ConfigTypedDict": ".hbcriblinfo",
6568
6655
  "DistMode": ".hbcriblinfo",
@@ -6570,10 +6657,10 @@ _dynamic_imports: dict[str, str] = {
6570
6657
  "HBCriblInfoTypedDict": ".hbcriblinfo",
6571
6658
  "HBLeaderInfo": ".hbleaderinfo",
6572
6659
  "HBLeaderInfoTypedDict": ".hbleaderinfo",
6573
- "HealthStatus": ".healthstatus",
6574
- "HealthStatusTypedDict": ".healthstatus",
6575
- "Role": ".healthstatus",
6576
- "Status": ".healthstatus",
6660
+ "HealthServerStatus": ".healthserverstatus",
6661
+ "HealthServerStatusTypedDict": ".healthserverstatus",
6662
+ "Role": ".healthserverstatus",
6663
+ "Status": ".healthserverstatus",
6577
6664
  "HeartbeatMetadata": ".heartbeatmetadata",
6578
6665
  "HeartbeatMetadataAws": ".heartbeatmetadata",
6579
6666
  "HeartbeatMetadataAwsTypedDict": ".heartbeatmetadata",
@@ -6650,6 +6737,7 @@ _dynamic_imports: dict[str, str] = {
6650
6737
  "InputConfluentCloudAuth": ".inputconfluentcloud",
6651
6738
  "InputConfluentCloudAuthTypedDict": ".inputconfluentcloud",
6652
6739
  "InputConfluentCloudAuthentication": ".inputconfluentcloud",
6740
+ "InputConfluentCloudAuthenticationMethod": ".inputconfluentcloud",
6653
6741
  "InputConfluentCloudAuthenticationTypedDict": ".inputconfluentcloud",
6654
6742
  "InputConfluentCloudCompression": ".inputconfluentcloud",
6655
6743
  "InputConfluentCloudConnection": ".inputconfluentcloud",
@@ -6665,11 +6753,15 @@ _dynamic_imports: dict[str, str] = {
6665
6753
  "InputConfluentCloudMetadatumTypedDict": ".inputconfluentcloud",
6666
6754
  "InputConfluentCloudMinimumTLSVersion": ".inputconfluentcloud",
6667
6755
  "InputConfluentCloudMode": ".inputconfluentcloud",
6756
+ "InputConfluentCloudOauthParam": ".inputconfluentcloud",
6757
+ "InputConfluentCloudOauthParamTypedDict": ".inputconfluentcloud",
6668
6758
  "InputConfluentCloudPq": ".inputconfluentcloud",
6669
6759
  "InputConfluentCloudPqControls": ".inputconfluentcloud",
6670
6760
  "InputConfluentCloudPqControlsTypedDict": ".inputconfluentcloud",
6671
6761
  "InputConfluentCloudPqTypedDict": ".inputconfluentcloud",
6672
6762
  "InputConfluentCloudSASLMechanism": ".inputconfluentcloud",
6763
+ "InputConfluentCloudSaslExtension": ".inputconfluentcloud",
6764
+ "InputConfluentCloudSaslExtensionTypedDict": ".inputconfluentcloud",
6673
6765
  "InputConfluentCloudTLSSettingsClientSide": ".inputconfluentcloud",
6674
6766
  "InputConfluentCloudTLSSettingsClientSideTypedDict": ".inputconfluentcloud",
6675
6767
  "InputConfluentCloudType": ".inputconfluentcloud",
@@ -6867,13 +6959,16 @@ _dynamic_imports: dict[str, str] = {
6867
6959
  "InputElasticType": ".inputelastic",
6868
6960
  "InputElasticTypedDict": ".inputelastic",
6869
6961
  "InputEventhub": ".inputeventhub",
6962
+ "InputEventhubAuthTypeAuthenticationMethod": ".inputeventhub",
6870
6963
  "InputEventhubAuthentication": ".inputeventhub",
6871
6964
  "InputEventhubAuthenticationTypedDict": ".inputeventhub",
6965
+ "InputEventhubClientSecretAuthTypeAuthenticationMethod": ".inputeventhub",
6872
6966
  "InputEventhubCompression": ".inputeventhub",
6873
6967
  "InputEventhubConnection": ".inputeventhub",
6874
6968
  "InputEventhubConnectionTypedDict": ".inputeventhub",
6875
6969
  "InputEventhubMetadatum": ".inputeventhub",
6876
6970
  "InputEventhubMetadatumTypedDict": ".inputeventhub",
6971
+ "InputEventhubMicrosoftEntraIDAuthenticationEndpoint": ".inputeventhub",
6877
6972
  "InputEventhubMode": ".inputeventhub",
6878
6973
  "InputEventhubPq": ".inputeventhub",
6879
6974
  "InputEventhubPqControls": ".inputeventhub",
@@ -7068,6 +7163,7 @@ _dynamic_imports: dict[str, str] = {
7068
7163
  "InputKafkaAuth": ".inputkafka",
7069
7164
  "InputKafkaAuthTypedDict": ".inputkafka",
7070
7165
  "InputKafkaAuthentication": ".inputkafka",
7166
+ "InputKafkaAuthenticationMethod": ".inputkafka",
7071
7167
  "InputKafkaAuthenticationTypedDict": ".inputkafka",
7072
7168
  "InputKafkaCompression": ".inputkafka",
7073
7169
  "InputKafkaConnection": ".inputkafka",
@@ -7083,11 +7179,15 @@ _dynamic_imports: dict[str, str] = {
7083
7179
  "InputKafkaMetadatumTypedDict": ".inputkafka",
7084
7180
  "InputKafkaMinimumTLSVersion": ".inputkafka",
7085
7181
  "InputKafkaMode": ".inputkafka",
7182
+ "InputKafkaOauthParam": ".inputkafka",
7183
+ "InputKafkaOauthParamTypedDict": ".inputkafka",
7086
7184
  "InputKafkaPq": ".inputkafka",
7087
7185
  "InputKafkaPqControls": ".inputkafka",
7088
7186
  "InputKafkaPqControlsTypedDict": ".inputkafka",
7089
7187
  "InputKafkaPqTypedDict": ".inputkafka",
7090
7188
  "InputKafkaSASLMechanism": ".inputkafka",
7189
+ "InputKafkaSaslExtension": ".inputkafka",
7190
+ "InputKafkaSaslExtensionTypedDict": ".inputkafka",
7091
7191
  "InputKafkaTLSSettingsClientSide": ".inputkafka",
7092
7192
  "InputKafkaTLSSettingsClientSideTypedDict": ".inputkafka",
7093
7193
  "InputKafkaType": ".inputkafka",
@@ -7949,16 +8049,21 @@ _dynamic_imports: dict[str, str] = {
7949
8049
  "IngestIfNotExist": ".outputazuredataexplorer",
7950
8050
  "IngestIfNotExistTypedDict": ".outputazuredataexplorer",
7951
8051
  "IngestionMode": ".outputazuredataexplorer",
7952
- "MicrosoftEntraIDAuthenticationEndpoint": ".outputazuredataexplorer",
7953
8052
  "OutputAzureDataExplorer": ".outputazuredataexplorer",
7954
8053
  "OutputAzureDataExplorerAuthenticationMethod": ".outputazuredataexplorer",
7955
8054
  "OutputAzureDataExplorerBackpressureBehavior": ".outputazuredataexplorer",
7956
8055
  "OutputAzureDataExplorerCertificate": ".outputazuredataexplorer",
7957
8056
  "OutputAzureDataExplorerCertificateTypedDict": ".outputazuredataexplorer",
7958
8057
  "OutputAzureDataExplorerCompressCompression": ".outputazuredataexplorer",
8058
+ "OutputAzureDataExplorerCompressionLevel": ".outputazuredataexplorer",
7959
8059
  "OutputAzureDataExplorerDataFormat": ".outputazuredataexplorer",
8060
+ "OutputAzureDataExplorerDataPageVersion": ".outputazuredataexplorer",
7960
8061
  "OutputAzureDataExplorerDiskSpaceProtection": ".outputazuredataexplorer",
8062
+ "OutputAzureDataExplorerKeyValueMetadatum": ".outputazuredataexplorer",
8063
+ "OutputAzureDataExplorerKeyValueMetadatumTypedDict": ".outputazuredataexplorer",
8064
+ "OutputAzureDataExplorerMicrosoftEntraIDAuthenticationEndpoint": ".outputazuredataexplorer",
7961
8065
  "OutputAzureDataExplorerMode": ".outputazuredataexplorer",
8066
+ "OutputAzureDataExplorerParquetVersion": ".outputazuredataexplorer",
7962
8067
  "OutputAzureDataExplorerPqCompressCompression": ".outputazuredataexplorer",
7963
8068
  "OutputAzureDataExplorerPqControls": ".outputazuredataexplorer",
7964
8069
  "OutputAzureDataExplorerPqControlsTypedDict": ".outputazuredataexplorer",
@@ -7974,10 +8079,13 @@ _dynamic_imports: dict[str, str] = {
7974
8079
  "ReportMethod": ".outputazuredataexplorer",
7975
8080
  "OutputAzureEventhub": ".outputazureeventhub",
7976
8081
  "OutputAzureEventhubAcknowledgments": ".outputazureeventhub",
8082
+ "OutputAzureEventhubAuthTypeAuthenticationMethod": ".outputazureeventhub",
7977
8083
  "OutputAzureEventhubAuthentication": ".outputazureeventhub",
7978
8084
  "OutputAzureEventhubAuthenticationTypedDict": ".outputazureeventhub",
7979
8085
  "OutputAzureEventhubBackpressureBehavior": ".outputazureeventhub",
8086
+ "OutputAzureEventhubClientSecretAuthTypeAuthenticationMethod": ".outputazureeventhub",
7980
8087
  "OutputAzureEventhubCompression": ".outputazureeventhub",
8088
+ "OutputAzureEventhubMicrosoftEntraIDAuthenticationEndpoint": ".outputazureeventhub",
7981
8089
  "OutputAzureEventhubMode": ".outputazureeventhub",
7982
8090
  "OutputAzureEventhubPqControls": ".outputazureeventhub",
7983
8091
  "OutputAzureEventhubPqControlsTypedDict": ".outputazureeventhub",
@@ -8068,6 +8176,7 @@ _dynamic_imports: dict[str, str] = {
8068
8176
  "OutputConfluentCloudAuth": ".outputconfluentcloud",
8069
8177
  "OutputConfluentCloudAuthTypedDict": ".outputconfluentcloud",
8070
8178
  "OutputConfluentCloudAuthentication": ".outputconfluentcloud",
8179
+ "OutputConfluentCloudAuthenticationMethod": ".outputconfluentcloud",
8071
8180
  "OutputConfluentCloudAuthenticationTypedDict": ".outputconfluentcloud",
8072
8181
  "OutputConfluentCloudBackpressureBehavior": ".outputconfluentcloud",
8073
8182
  "OutputConfluentCloudCompression": ".outputconfluentcloud",
@@ -8080,12 +8189,16 @@ _dynamic_imports: dict[str, str] = {
8080
8189
  "OutputConfluentCloudMaximumTLSVersion": ".outputconfluentcloud",
8081
8190
  "OutputConfluentCloudMinimumTLSVersion": ".outputconfluentcloud",
8082
8191
  "OutputConfluentCloudMode": ".outputconfluentcloud",
8192
+ "OutputConfluentCloudOauthParam": ".outputconfluentcloud",
8193
+ "OutputConfluentCloudOauthParamTypedDict": ".outputconfluentcloud",
8083
8194
  "OutputConfluentCloudPqCompressCompression": ".outputconfluentcloud",
8084
8195
  "OutputConfluentCloudPqControls": ".outputconfluentcloud",
8085
8196
  "OutputConfluentCloudPqControlsTypedDict": ".outputconfluentcloud",
8086
8197
  "OutputConfluentCloudQueueFullBehavior": ".outputconfluentcloud",
8087
8198
  "OutputConfluentCloudRecordDataFormat": ".outputconfluentcloud",
8088
8199
  "OutputConfluentCloudSASLMechanism": ".outputconfluentcloud",
8200
+ "OutputConfluentCloudSaslExtension": ".outputconfluentcloud",
8201
+ "OutputConfluentCloudSaslExtensionTypedDict": ".outputconfluentcloud",
8089
8202
  "OutputConfluentCloudTLSSettingsClientSide": ".outputconfluentcloud",
8090
8203
  "OutputConfluentCloudTLSSettingsClientSideTypedDict": ".outputconfluentcloud",
8091
8204
  "OutputConfluentCloudType": ".outputconfluentcloud",
@@ -8370,6 +8483,7 @@ _dynamic_imports: dict[str, str] = {
8370
8483
  "OutputGoogleChronicleType": ".outputgooglechronicle",
8371
8484
  "OutputGoogleChronicleTypedDict": ".outputgooglechronicle",
8372
8485
  "SendEventsAs": ".outputgooglechronicle",
8486
+ "UDMType": ".outputgooglechronicle",
8373
8487
  "LogLabel": ".outputgooglecloudlogging",
8374
8488
  "LogLabelTypedDict": ".outputgooglecloudlogging",
8375
8489
  "LogLocationType": ".outputgooglecloudlogging",
@@ -8536,6 +8650,7 @@ _dynamic_imports: dict[str, str] = {
8536
8650
  "OutputKafkaAuth": ".outputkafka",
8537
8651
  "OutputKafkaAuthTypedDict": ".outputkafka",
8538
8652
  "OutputKafkaAuthentication": ".outputkafka",
8653
+ "OutputKafkaAuthenticationMethod": ".outputkafka",
8539
8654
  "OutputKafkaAuthenticationTypedDict": ".outputkafka",
8540
8655
  "OutputKafkaBackpressureBehavior": ".outputkafka",
8541
8656
  "OutputKafkaCompression": ".outputkafka",
@@ -8548,12 +8663,16 @@ _dynamic_imports: dict[str, str] = {
8548
8663
  "OutputKafkaMaximumTLSVersion": ".outputkafka",
8549
8664
  "OutputKafkaMinimumTLSVersion": ".outputkafka",
8550
8665
  "OutputKafkaMode": ".outputkafka",
8666
+ "OutputKafkaOauthParam": ".outputkafka",
8667
+ "OutputKafkaOauthParamTypedDict": ".outputkafka",
8551
8668
  "OutputKafkaPqCompressCompression": ".outputkafka",
8552
8669
  "OutputKafkaPqControls": ".outputkafka",
8553
8670
  "OutputKafkaPqControlsTypedDict": ".outputkafka",
8554
8671
  "OutputKafkaQueueFullBehavior": ".outputkafka",
8555
8672
  "OutputKafkaRecordDataFormat": ".outputkafka",
8556
8673
  "OutputKafkaSASLMechanism": ".outputkafka",
8674
+ "OutputKafkaSaslExtension": ".outputkafka",
8675
+ "OutputKafkaSaslExtensionTypedDict": ".outputkafka",
8557
8676
  "OutputKafkaTLSSettingsClientSide": ".outputkafka",
8558
8677
  "OutputKafkaTLSSettingsClientSideTypedDict": ".outputkafka",
8559
8678
  "OutputKafkaType": ".outputkafka",
@@ -8894,12 +9013,16 @@ _dynamic_imports: dict[str, str] = {
8894
9013
  "OutputSplunkHecExtraHTTPHeader": ".outputsplunkhec",
8895
9014
  "OutputSplunkHecExtraHTTPHeaderTypedDict": ".outputsplunkhec",
8896
9015
  "OutputSplunkHecFailedRequestLoggingMode": ".outputsplunkhec",
9016
+ "OutputSplunkHecMaximumTLSVersion": ".outputsplunkhec",
9017
+ "OutputSplunkHecMinimumTLSVersion": ".outputsplunkhec",
8897
9018
  "OutputSplunkHecMode": ".outputsplunkhec",
8898
9019
  "OutputSplunkHecPqControls": ".outputsplunkhec",
8899
9020
  "OutputSplunkHecPqControlsTypedDict": ".outputsplunkhec",
8900
9021
  "OutputSplunkHecQueueFullBehavior": ".outputsplunkhec",
8901
9022
  "OutputSplunkHecResponseRetrySetting": ".outputsplunkhec",
8902
9023
  "OutputSplunkHecResponseRetrySettingTypedDict": ".outputsplunkhec",
9024
+ "OutputSplunkHecTLSSettingsClientSide": ".outputsplunkhec",
9025
+ "OutputSplunkHecTLSSettingsClientSideTypedDict": ".outputsplunkhec",
8903
9026
  "OutputSplunkHecTimeoutRetrySettings": ".outputsplunkhec",
8904
9027
  "OutputSplunkHecTimeoutRetrySettingsTypedDict": ".outputsplunkhec",
8905
9028
  "OutputSplunkHecType": ".outputsplunkhec",