cribl-control-plane 0.3.0b3__py3-none-any.whl → 0.3.0b12__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 (158) hide show
  1. cribl_control_plane/_version.py +4 -4
  2. cribl_control_plane/groups_sdk.py +2 -2
  3. cribl_control_plane/lakedatasets.py +28 -0
  4. cribl_control_plane/models/__init__.py +124 -5
  5. cribl_control_plane/models/cacheconnection.py +20 -0
  6. cribl_control_plane/models/configgroup.py +20 -1
  7. cribl_control_plane/models/configgroupcloud.py +11 -1
  8. cribl_control_plane/models/createconfiggroupbyproductop.py +13 -2
  9. cribl_control_plane/models/cribllakedataset.py +15 -1
  10. cribl_control_plane/models/cribllakedatasetupdate.py +15 -1
  11. cribl_control_plane/models/datasetmetadata.py +11 -1
  12. cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +11 -0
  13. cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +20 -0
  14. cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +20 -0
  15. cribl_control_plane/models/getconfiggroupbyproductandidop.py +11 -0
  16. cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +11 -0
  17. cribl_control_plane/models/getsummaryop.py +11 -0
  18. cribl_control_plane/models/groupcreaterequest.py +20 -1
  19. cribl_control_plane/models/hbcriblinfo.py +11 -1
  20. cribl_control_plane/models/healthserverstatus.py +20 -1
  21. cribl_control_plane/models/input.py +15 -15
  22. cribl_control_plane/models/inputappscope.py +76 -17
  23. cribl_control_plane/models/inputazureblob.py +29 -1
  24. cribl_control_plane/models/inputcollection.py +20 -1
  25. cribl_control_plane/models/inputconfluentcloud.py +188 -1
  26. cribl_control_plane/models/inputcribl.py +20 -1
  27. cribl_control_plane/models/inputcriblhttp.py +58 -17
  28. cribl_control_plane/models/inputcribllakehttp.py +58 -17
  29. cribl_control_plane/models/inputcriblmetrics.py +20 -1
  30. cribl_control_plane/models/inputcribltcp.py +58 -17
  31. cribl_control_plane/models/inputcrowdstrike.py +47 -1
  32. cribl_control_plane/models/inputdatadogagent.py +58 -17
  33. cribl_control_plane/models/inputdatagen.py +20 -1
  34. cribl_control_plane/models/inputedgeprometheus.py +138 -37
  35. cribl_control_plane/models/inputelastic.py +108 -27
  36. cribl_control_plane/models/inputeventhub.py +176 -1
  37. cribl_control_plane/models/inputexec.py +29 -1
  38. cribl_control_plane/models/inputfile.py +40 -7
  39. cribl_control_plane/models/inputfirehose.py +58 -17
  40. cribl_control_plane/models/inputgooglepubsub.py +29 -1
  41. cribl_control_plane/models/inputgrafana.py +149 -32
  42. cribl_control_plane/models/inputhttp.py +58 -17
  43. cribl_control_plane/models/inputhttpraw.py +58 -17
  44. cribl_control_plane/models/inputjournalfiles.py +20 -1
  45. cribl_control_plane/models/inputkafka.py +182 -1
  46. cribl_control_plane/models/inputkinesis.py +65 -1
  47. cribl_control_plane/models/inputkubeevents.py +20 -1
  48. cribl_control_plane/models/inputkubelogs.py +29 -1
  49. cribl_control_plane/models/inputkubemetrics.py +29 -1
  50. cribl_control_plane/models/inputloki.py +67 -17
  51. cribl_control_plane/models/inputmetrics.py +58 -17
  52. cribl_control_plane/models/inputmodeldriventelemetry.py +58 -17
  53. cribl_control_plane/models/inputmsk.py +74 -1
  54. cribl_control_plane/models/inputnetflow.py +20 -1
  55. cribl_control_plane/models/inputoffice365mgmt.py +56 -1
  56. cribl_control_plane/models/inputoffice365msgtrace.py +56 -1
  57. cribl_control_plane/models/inputoffice365service.py +56 -1
  58. cribl_control_plane/models/inputopentelemetry.py +84 -16
  59. cribl_control_plane/models/inputprometheus.py +131 -37
  60. cribl_control_plane/models/inputprometheusrw.py +67 -17
  61. cribl_control_plane/models/inputrawudp.py +20 -1
  62. cribl_control_plane/models/inputs3.py +38 -1
  63. cribl_control_plane/models/inputs3inventory.py +47 -1
  64. cribl_control_plane/models/inputsecuritylake.py +47 -1
  65. cribl_control_plane/models/inputsnmp.py +29 -1
  66. cribl_control_plane/models/inputsplunk.py +76 -17
  67. cribl_control_plane/models/inputsplunkhec.py +66 -16
  68. cribl_control_plane/models/inputsplunksearch.py +56 -1
  69. cribl_control_plane/models/inputsqs.py +47 -1
  70. cribl_control_plane/models/inputsyslog.py +113 -32
  71. cribl_control_plane/models/inputsystemmetrics.py +110 -9
  72. cribl_control_plane/models/inputsystemstate.py +29 -1
  73. cribl_control_plane/models/inputtcp.py +77 -17
  74. cribl_control_plane/models/inputtcpjson.py +67 -17
  75. cribl_control_plane/models/inputwef.py +65 -1
  76. cribl_control_plane/models/inputwindowsmetrics.py +101 -9
  77. cribl_control_plane/models/inputwineventlogs.py +52 -1
  78. cribl_control_plane/models/inputwiz.py +38 -1
  79. cribl_control_plane/models/inputwizwebhook.py +58 -17
  80. cribl_control_plane/models/inputzscalerhec.py +66 -16
  81. cribl_control_plane/models/jobinfo.py +10 -4
  82. cribl_control_plane/models/jobstatus.py +34 -3
  83. cribl_control_plane/models/lakedatasetmetrics.py +17 -0
  84. cribl_control_plane/models/listconfiggroupbyproductop.py +11 -0
  85. cribl_control_plane/models/masterworkerentry.py +11 -1
  86. cribl_control_plane/models/nodeupgradestatus.py +38 -0
  87. cribl_control_plane/models/output.py +21 -21
  88. cribl_control_plane/models/outputazureblob.py +90 -1
  89. cribl_control_plane/models/outputazuredataexplorer.py +430 -93
  90. cribl_control_plane/models/outputazureeventhub.py +267 -22
  91. cribl_control_plane/models/outputazurelogs.py +105 -22
  92. cribl_control_plane/models/outputchronicle.py +105 -22
  93. cribl_control_plane/models/outputclickhouse.py +141 -22
  94. cribl_control_plane/models/outputcloudwatch.py +96 -22
  95. cribl_control_plane/models/outputconfluentcloud.py +292 -23
  96. cribl_control_plane/models/outputcriblhttp.py +123 -22
  97. cribl_control_plane/models/outputcribllake.py +76 -1
  98. cribl_control_plane/models/outputcribltcp.py +123 -22
  99. cribl_control_plane/models/outputcrowdstrikenextgensiem.py +117 -23
  100. cribl_control_plane/models/outputdatabricks.py +76 -5
  101. cribl_control_plane/models/outputdatadog.py +132 -22
  102. cribl_control_plane/models/outputdataset.py +123 -22
  103. cribl_control_plane/models/outputdiskspool.py +11 -1
  104. cribl_control_plane/models/outputdls3.py +117 -1
  105. cribl_control_plane/models/outputdynatracehttp.py +141 -22
  106. cribl_control_plane/models/outputdynatraceotlp.py +141 -22
  107. cribl_control_plane/models/outputelastic.py +148 -22
  108. cribl_control_plane/models/outputelasticcloud.py +130 -22
  109. cribl_control_plane/models/outputexabeam.py +47 -1
  110. cribl_control_plane/models/outputfilesystem.py +72 -1
  111. cribl_control_plane/models/outputgooglechronicle.py +148 -23
  112. cribl_control_plane/models/outputgooglecloudlogging.py +115 -23
  113. cribl_control_plane/models/outputgooglecloudstorage.py +108 -1
  114. cribl_control_plane/models/outputgooglepubsub.py +96 -22
  115. cribl_control_plane/models/outputgrafanacloud.py +244 -43
  116. cribl_control_plane/models/outputgraphite.py +96 -22
  117. cribl_control_plane/models/outputhoneycomb.py +105 -22
  118. cribl_control_plane/models/outputhumiohec.py +114 -22
  119. cribl_control_plane/models/outputinfluxdb.py +114 -22
  120. cribl_control_plane/models/outputkafka.py +283 -20
  121. cribl_control_plane/models/outputkinesis.py +121 -22
  122. cribl_control_plane/models/outputloki.py +112 -20
  123. cribl_control_plane/models/outputminio.py +117 -1
  124. cribl_control_plane/models/outputmsk.py +175 -20
  125. cribl_control_plane/models/outputnewrelic.py +123 -22
  126. cribl_control_plane/models/outputnewrelicevents.py +115 -23
  127. cribl_control_plane/models/outputopentelemetry.py +159 -22
  128. cribl_control_plane/models/outputprometheus.py +105 -22
  129. cribl_control_plane/models/outputring.py +29 -1
  130. cribl_control_plane/models/outputs3.py +117 -1
  131. cribl_control_plane/models/outputsecuritylake.py +85 -1
  132. cribl_control_plane/models/outputsentinel.py +123 -22
  133. cribl_control_plane/models/outputsentineloneaisiem.py +124 -23
  134. cribl_control_plane/models/outputservicenow.py +150 -22
  135. cribl_control_plane/models/outputsignalfx.py +105 -22
  136. cribl_control_plane/models/outputsns.py +103 -20
  137. cribl_control_plane/models/outputsplunk.py +141 -22
  138. cribl_control_plane/models/outputsplunkhec.py +198 -22
  139. cribl_control_plane/models/outputsplunklb.py +170 -22
  140. cribl_control_plane/models/outputsqs.py +112 -20
  141. cribl_control_plane/models/outputstatsd.py +96 -22
  142. cribl_control_plane/models/outputstatsdext.py +96 -22
  143. cribl_control_plane/models/outputsumologic.py +105 -22
  144. cribl_control_plane/models/outputsyslog.py +238 -99
  145. cribl_control_plane/models/outputtcpjson.py +132 -22
  146. cribl_control_plane/models/outputwavefront.py +105 -22
  147. cribl_control_plane/models/outputwebhook.py +141 -22
  148. cribl_control_plane/models/outputxsiam.py +103 -20
  149. cribl_control_plane/models/resourcepolicy.py +11 -0
  150. cribl_control_plane/models/runnablejobcollection.py +68 -9
  151. cribl_control_plane/models/runnablejobexecutor.py +32 -9
  152. cribl_control_plane/models/runnablejobscheduledsearch.py +23 -9
  153. cribl_control_plane/models/updateconfiggroupbyproductandidop.py +11 -0
  154. cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py +11 -0
  155. cribl_control_plane/sdk.py +2 -2
  156. {cribl_control_plane-0.3.0b3.dist-info → cribl_control_plane-0.3.0b12.dist-info}/METADATA +25 -7
  157. {cribl_control_plane-0.3.0b3.dist-info → cribl_control_plane-0.3.0b12.dist-info}/RECORD +158 -157
  158. {cribl_control_plane-0.3.0b3.dist-info → cribl_control_plane-0.3.0b12.dist-info}/WHEEL +0 -0
@@ -465,6 +465,7 @@ if TYPE_CHECKING:
465
465
  InputConfluentCloudAuth,
466
466
  InputConfluentCloudAuthTypedDict,
467
467
  InputConfluentCloudAuthentication,
468
+ InputConfluentCloudAuthenticationMethod,
468
469
  InputConfluentCloudAuthenticationTypedDict,
469
470
  InputConfluentCloudCompression,
470
471
  InputConfluentCloudConnection,
@@ -480,11 +481,15 @@ if TYPE_CHECKING:
480
481
  InputConfluentCloudMetadatumTypedDict,
481
482
  InputConfluentCloudMinimumTLSVersion,
482
483
  InputConfluentCloudMode,
484
+ InputConfluentCloudOauthParam,
485
+ InputConfluentCloudOauthParamTypedDict,
483
486
  InputConfluentCloudPq,
484
487
  InputConfluentCloudPqControls,
485
488
  InputConfluentCloudPqControlsTypedDict,
486
489
  InputConfluentCloudPqTypedDict,
487
490
  InputConfluentCloudSASLMechanism,
491
+ InputConfluentCloudSaslExtension,
492
+ InputConfluentCloudSaslExtensionTypedDict,
488
493
  InputConfluentCloudTLSSettingsClientSide,
489
494
  InputConfluentCloudTLSSettingsClientSideTypedDict,
490
495
  InputConfluentCloudType,
@@ -704,13 +709,16 @@ if TYPE_CHECKING:
704
709
  )
705
710
  from .inputeventhub import (
706
711
  InputEventhub,
712
+ InputEventhubAuthTypeAuthenticationMethod,
707
713
  InputEventhubAuthentication,
708
714
  InputEventhubAuthenticationTypedDict,
715
+ InputEventhubClientSecretAuthTypeAuthenticationMethod,
709
716
  InputEventhubCompression,
710
717
  InputEventhubConnection,
711
718
  InputEventhubConnectionTypedDict,
712
719
  InputEventhubMetadatum,
713
720
  InputEventhubMetadatumTypedDict,
721
+ InputEventhubMicrosoftEntraIDAuthenticationEndpoint,
714
722
  InputEventhubMode,
715
723
  InputEventhubPq,
716
724
  InputEventhubPqControls,
@@ -923,6 +931,7 @@ if TYPE_CHECKING:
923
931
  InputKafkaAuth,
924
932
  InputKafkaAuthTypedDict,
925
933
  InputKafkaAuthentication,
934
+ InputKafkaAuthenticationMethod,
926
935
  InputKafkaAuthenticationTypedDict,
927
936
  InputKafkaCompression,
928
937
  InputKafkaConnection,
@@ -938,11 +947,15 @@ if TYPE_CHECKING:
938
947
  InputKafkaMetadatumTypedDict,
939
948
  InputKafkaMinimumTLSVersion,
940
949
  InputKafkaMode,
950
+ InputKafkaOauthParam,
951
+ InputKafkaOauthParamTypedDict,
941
952
  InputKafkaPq,
942
953
  InputKafkaPqControls,
943
954
  InputKafkaPqControlsTypedDict,
944
955
  InputKafkaPqTypedDict,
945
956
  InputKafkaSASLMechanism,
957
+ InputKafkaSaslExtension,
958
+ InputKafkaSaslExtensionTypedDict,
946
959
  InputKafkaTLSSettingsClientSide,
947
960
  InputKafkaTLSSettingsClientSideTypedDict,
948
961
  InputKafkaType,
@@ -1790,8 +1803,9 @@ if TYPE_CHECKING:
1790
1803
  InputZscalerHecType,
1791
1804
  InputZscalerHecTypedDict,
1792
1805
  )
1793
- from .jobinfo import JobInfo, JobInfoTypedDict
1794
- from .jobstatus import JobStatus, JobStatusTypedDict
1806
+ from .jobinfo import JobInfo, JobInfoTypedDict, Stats, StatsTypedDict
1807
+ from .jobstatus import JobStatus, JobStatusTypedDict, State
1808
+ from .lakedatasetmetrics import LakeDatasetMetrics, LakeDatasetMetricsTypedDict
1795
1809
  from .lakedatasetsearchconfig import (
1796
1810
  LakeDatasetSearchConfig,
1797
1811
  LakeDatasetSearchConfigTypedDict,
@@ -1877,16 +1891,21 @@ if TYPE_CHECKING:
1877
1891
  IngestIfNotExist,
1878
1892
  IngestIfNotExistTypedDict,
1879
1893
  IngestionMode,
1880
- MicrosoftEntraIDAuthenticationEndpoint,
1881
1894
  OutputAzureDataExplorer,
1882
1895
  OutputAzureDataExplorerAuthenticationMethod,
1883
1896
  OutputAzureDataExplorerBackpressureBehavior,
1884
1897
  OutputAzureDataExplorerCertificate,
1885
1898
  OutputAzureDataExplorerCertificateTypedDict,
1886
1899
  OutputAzureDataExplorerCompressCompression,
1900
+ OutputAzureDataExplorerCompressionLevel,
1887
1901
  OutputAzureDataExplorerDataFormat,
1902
+ OutputAzureDataExplorerDataPageVersion,
1888
1903
  OutputAzureDataExplorerDiskSpaceProtection,
1904
+ OutputAzureDataExplorerKeyValueMetadatum,
1905
+ OutputAzureDataExplorerKeyValueMetadatumTypedDict,
1906
+ OutputAzureDataExplorerMicrosoftEntraIDAuthenticationEndpoint,
1889
1907
  OutputAzureDataExplorerMode,
1908
+ OutputAzureDataExplorerParquetVersion,
1890
1909
  OutputAzureDataExplorerPqCompressCompression,
1891
1910
  OutputAzureDataExplorerPqControls,
1892
1911
  OutputAzureDataExplorerPqControlsTypedDict,
@@ -1904,10 +1923,13 @@ if TYPE_CHECKING:
1904
1923
  from .outputazureeventhub import (
1905
1924
  OutputAzureEventhub,
1906
1925
  OutputAzureEventhubAcknowledgments,
1926
+ OutputAzureEventhubAuthTypeAuthenticationMethod,
1907
1927
  OutputAzureEventhubAuthentication,
1908
1928
  OutputAzureEventhubAuthenticationTypedDict,
1909
1929
  OutputAzureEventhubBackpressureBehavior,
1930
+ OutputAzureEventhubClientSecretAuthTypeAuthenticationMethod,
1910
1931
  OutputAzureEventhubCompression,
1932
+ OutputAzureEventhubMicrosoftEntraIDAuthenticationEndpoint,
1911
1933
  OutputAzureEventhubMode,
1912
1934
  OutputAzureEventhubPqControls,
1913
1935
  OutputAzureEventhubPqControlsTypedDict,
@@ -2008,6 +2030,7 @@ if TYPE_CHECKING:
2008
2030
  OutputConfluentCloudAuth,
2009
2031
  OutputConfluentCloudAuthTypedDict,
2010
2032
  OutputConfluentCloudAuthentication,
2033
+ OutputConfluentCloudAuthenticationMethod,
2011
2034
  OutputConfluentCloudAuthenticationTypedDict,
2012
2035
  OutputConfluentCloudBackpressureBehavior,
2013
2036
  OutputConfluentCloudCompression,
@@ -2020,12 +2043,16 @@ if TYPE_CHECKING:
2020
2043
  OutputConfluentCloudMaximumTLSVersion,
2021
2044
  OutputConfluentCloudMinimumTLSVersion,
2022
2045
  OutputConfluentCloudMode,
2046
+ OutputConfluentCloudOauthParam,
2047
+ OutputConfluentCloudOauthParamTypedDict,
2023
2048
  OutputConfluentCloudPqCompressCompression,
2024
2049
  OutputConfluentCloudPqControls,
2025
2050
  OutputConfluentCloudPqControlsTypedDict,
2026
2051
  OutputConfluentCloudQueueFullBehavior,
2027
2052
  OutputConfluentCloudRecordDataFormat,
2028
2053
  OutputConfluentCloudSASLMechanism,
2054
+ OutputConfluentCloudSaslExtension,
2055
+ OutputConfluentCloudSaslExtensionTypedDict,
2029
2056
  OutputConfluentCloudTLSSettingsClientSide,
2030
2057
  OutputConfluentCloudTLSSettingsClientSideTypedDict,
2031
2058
  OutputConfluentCloudType,
@@ -2338,6 +2365,7 @@ if TYPE_CHECKING:
2338
2365
  OutputGoogleChronicleType,
2339
2366
  OutputGoogleChronicleTypedDict,
2340
2367
  SendEventsAs,
2368
+ UDMType,
2341
2369
  )
2342
2370
  from .outputgooglecloudlogging import (
2343
2371
  LogLabel,
@@ -2522,6 +2550,7 @@ if TYPE_CHECKING:
2522
2550
  OutputKafkaAuth,
2523
2551
  OutputKafkaAuthTypedDict,
2524
2552
  OutputKafkaAuthentication,
2553
+ OutputKafkaAuthenticationMethod,
2525
2554
  OutputKafkaAuthenticationTypedDict,
2526
2555
  OutputKafkaBackpressureBehavior,
2527
2556
  OutputKafkaCompression,
@@ -2534,12 +2563,16 @@ if TYPE_CHECKING:
2534
2563
  OutputKafkaMaximumTLSVersion,
2535
2564
  OutputKafkaMinimumTLSVersion,
2536
2565
  OutputKafkaMode,
2566
+ OutputKafkaOauthParam,
2567
+ OutputKafkaOauthParamTypedDict,
2537
2568
  OutputKafkaPqCompressCompression,
2538
2569
  OutputKafkaPqControls,
2539
2570
  OutputKafkaPqControlsTypedDict,
2540
2571
  OutputKafkaQueueFullBehavior,
2541
2572
  OutputKafkaRecordDataFormat,
2542
2573
  OutputKafkaSASLMechanism,
2574
+ OutputKafkaSaslExtension,
2575
+ OutputKafkaSaslExtensionTypedDict,
2543
2576
  OutputKafkaTLSSettingsClientSide,
2544
2577
  OutputKafkaTLSSettingsClientSideTypedDict,
2545
2578
  OutputKafkaType,
@@ -2924,12 +2957,16 @@ if TYPE_CHECKING:
2924
2957
  OutputSplunkHecExtraHTTPHeader,
2925
2958
  OutputSplunkHecExtraHTTPHeaderTypedDict,
2926
2959
  OutputSplunkHecFailedRequestLoggingMode,
2960
+ OutputSplunkHecMaximumTLSVersion,
2961
+ OutputSplunkHecMinimumTLSVersion,
2927
2962
  OutputSplunkHecMode,
2928
2963
  OutputSplunkHecPqControls,
2929
2964
  OutputSplunkHecPqControlsTypedDict,
2930
2965
  OutputSplunkHecQueueFullBehavior,
2931
2966
  OutputSplunkHecResponseRetrySetting,
2932
2967
  OutputSplunkHecResponseRetrySettingTypedDict,
2968
+ OutputSplunkHecTLSSettingsClientSide,
2969
+ OutputSplunkHecTLSSettingsClientSideTypedDict,
2933
2970
  OutputSplunkHecTimeoutRetrySettings,
2934
2971
  OutputSplunkHecTimeoutRetrySettingsTypedDict,
2935
2972
  OutputSplunkHecType,
@@ -3745,6 +3782,7 @@ __all__ = [
3745
3782
  "InputConfluentCloudAuth",
3746
3783
  "InputConfluentCloudAuthTypedDict",
3747
3784
  "InputConfluentCloudAuthentication",
3785
+ "InputConfluentCloudAuthenticationMethod",
3748
3786
  "InputConfluentCloudAuthenticationTypedDict",
3749
3787
  "InputConfluentCloudCompression",
3750
3788
  "InputConfluentCloudConnection",
@@ -3760,11 +3798,15 @@ __all__ = [
3760
3798
  "InputConfluentCloudMetadatumTypedDict",
3761
3799
  "InputConfluentCloudMinimumTLSVersion",
3762
3800
  "InputConfluentCloudMode",
3801
+ "InputConfluentCloudOauthParam",
3802
+ "InputConfluentCloudOauthParamTypedDict",
3763
3803
  "InputConfluentCloudPq",
3764
3804
  "InputConfluentCloudPqControls",
3765
3805
  "InputConfluentCloudPqControlsTypedDict",
3766
3806
  "InputConfluentCloudPqTypedDict",
3767
3807
  "InputConfluentCloudSASLMechanism",
3808
+ "InputConfluentCloudSaslExtension",
3809
+ "InputConfluentCloudSaslExtensionTypedDict",
3768
3810
  "InputConfluentCloudTLSSettingsClientSide",
3769
3811
  "InputConfluentCloudTLSSettingsClientSideTypedDict",
3770
3812
  "InputConfluentCloudType",
@@ -3950,13 +3992,16 @@ __all__ = [
3950
3992
  "InputElasticType",
3951
3993
  "InputElasticTypedDict",
3952
3994
  "InputEventhub",
3995
+ "InputEventhubAuthTypeAuthenticationMethod",
3953
3996
  "InputEventhubAuthentication",
3954
3997
  "InputEventhubAuthenticationTypedDict",
3998
+ "InputEventhubClientSecretAuthTypeAuthenticationMethod",
3955
3999
  "InputEventhubCompression",
3956
4000
  "InputEventhubConnection",
3957
4001
  "InputEventhubConnectionTypedDict",
3958
4002
  "InputEventhubMetadatum",
3959
4003
  "InputEventhubMetadatumTypedDict",
4004
+ "InputEventhubMicrosoftEntraIDAuthenticationEndpoint",
3960
4005
  "InputEventhubMode",
3961
4006
  "InputEventhubPq",
3962
4007
  "InputEventhubPqControls",
@@ -4134,6 +4179,7 @@ __all__ = [
4134
4179
  "InputKafkaAuth",
4135
4180
  "InputKafkaAuthTypedDict",
4136
4181
  "InputKafkaAuthentication",
4182
+ "InputKafkaAuthenticationMethod",
4137
4183
  "InputKafkaAuthenticationTypedDict",
4138
4184
  "InputKafkaCompression",
4139
4185
  "InputKafkaConnection",
@@ -4149,11 +4195,15 @@ __all__ = [
4149
4195
  "InputKafkaMetadatumTypedDict",
4150
4196
  "InputKafkaMinimumTLSVersion",
4151
4197
  "InputKafkaMode",
4198
+ "InputKafkaOauthParam",
4199
+ "InputKafkaOauthParamTypedDict",
4152
4200
  "InputKafkaPq",
4153
4201
  "InputKafkaPqControls",
4154
4202
  "InputKafkaPqControlsTypedDict",
4155
4203
  "InputKafkaPqTypedDict",
4156
4204
  "InputKafkaSASLMechanism",
4205
+ "InputKafkaSaslExtension",
4206
+ "InputKafkaSaslExtensionTypedDict",
4157
4207
  "InputKafkaTLSSettingsClientSide",
4158
4208
  "InputKafkaTLSSettingsClientSideTypedDict",
4159
4209
  "InputKafkaType",
@@ -4889,6 +4939,8 @@ __all__ = [
4889
4939
  "JobInfoTypedDict",
4890
4940
  "JobStatus",
4891
4941
  "JobStatusTypedDict",
4942
+ "LakeDatasetMetrics",
4943
+ "LakeDatasetMetricsTypedDict",
4892
4944
  "LakeDatasetSearchConfig",
4893
4945
  "LakeDatasetSearchConfigTypedDict",
4894
4946
  "LakehouseConnectionType",
@@ -4946,7 +4998,6 @@ __all__ = [
4946
4998
  "MasterWorkerEntryWorkers",
4947
4999
  "MasterWorkerEntryWorkersTypedDict",
4948
5000
  "MetricsProtocol",
4949
- "MicrosoftEntraIDAuthenticationEndpoint",
4950
5001
  "NodeActiveUpgradeStatus",
4951
5002
  "NodeFailedUpgradeStatus",
4952
5003
  "NodeProvidedInfo",
@@ -4997,9 +5048,15 @@ __all__ = [
4997
5048
  "OutputAzureDataExplorerCertificate",
4998
5049
  "OutputAzureDataExplorerCertificateTypedDict",
4999
5050
  "OutputAzureDataExplorerCompressCompression",
5051
+ "OutputAzureDataExplorerCompressionLevel",
5000
5052
  "OutputAzureDataExplorerDataFormat",
5053
+ "OutputAzureDataExplorerDataPageVersion",
5001
5054
  "OutputAzureDataExplorerDiskSpaceProtection",
5055
+ "OutputAzureDataExplorerKeyValueMetadatum",
5056
+ "OutputAzureDataExplorerKeyValueMetadatumTypedDict",
5057
+ "OutputAzureDataExplorerMicrosoftEntraIDAuthenticationEndpoint",
5002
5058
  "OutputAzureDataExplorerMode",
5059
+ "OutputAzureDataExplorerParquetVersion",
5003
5060
  "OutputAzureDataExplorerPqCompressCompression",
5004
5061
  "OutputAzureDataExplorerPqControls",
5005
5062
  "OutputAzureDataExplorerPqControlsTypedDict",
@@ -5012,10 +5069,13 @@ __all__ = [
5012
5069
  "OutputAzureDataExplorerTypedDict",
5013
5070
  "OutputAzureEventhub",
5014
5071
  "OutputAzureEventhubAcknowledgments",
5072
+ "OutputAzureEventhubAuthTypeAuthenticationMethod",
5015
5073
  "OutputAzureEventhubAuthentication",
5016
5074
  "OutputAzureEventhubAuthenticationTypedDict",
5017
5075
  "OutputAzureEventhubBackpressureBehavior",
5076
+ "OutputAzureEventhubClientSecretAuthTypeAuthenticationMethod",
5018
5077
  "OutputAzureEventhubCompression",
5078
+ "OutputAzureEventhubMicrosoftEntraIDAuthenticationEndpoint",
5019
5079
  "OutputAzureEventhubMode",
5020
5080
  "OutputAzureEventhubPqControls",
5021
5081
  "OutputAzureEventhubPqControlsTypedDict",
@@ -5103,6 +5163,7 @@ __all__ = [
5103
5163
  "OutputConfluentCloudAuth",
5104
5164
  "OutputConfluentCloudAuthTypedDict",
5105
5165
  "OutputConfluentCloudAuthentication",
5166
+ "OutputConfluentCloudAuthenticationMethod",
5106
5167
  "OutputConfluentCloudAuthenticationTypedDict",
5107
5168
  "OutputConfluentCloudBackpressureBehavior",
5108
5169
  "OutputConfluentCloudCompression",
@@ -5115,12 +5176,16 @@ __all__ = [
5115
5176
  "OutputConfluentCloudMaximumTLSVersion",
5116
5177
  "OutputConfluentCloudMinimumTLSVersion",
5117
5178
  "OutputConfluentCloudMode",
5179
+ "OutputConfluentCloudOauthParam",
5180
+ "OutputConfluentCloudOauthParamTypedDict",
5118
5181
  "OutputConfluentCloudPqCompressCompression",
5119
5182
  "OutputConfluentCloudPqControls",
5120
5183
  "OutputConfluentCloudPqControlsTypedDict",
5121
5184
  "OutputConfluentCloudQueueFullBehavior",
5122
5185
  "OutputConfluentCloudRecordDataFormat",
5123
5186
  "OutputConfluentCloudSASLMechanism",
5187
+ "OutputConfluentCloudSaslExtension",
5188
+ "OutputConfluentCloudSaslExtensionTypedDict",
5124
5189
  "OutputConfluentCloudTLSSettingsClientSide",
5125
5190
  "OutputConfluentCloudTLSSettingsClientSideTypedDict",
5126
5191
  "OutputConfluentCloudType",
@@ -5552,6 +5617,7 @@ __all__ = [
5552
5617
  "OutputKafkaAuth",
5553
5618
  "OutputKafkaAuthTypedDict",
5554
5619
  "OutputKafkaAuthentication",
5620
+ "OutputKafkaAuthenticationMethod",
5555
5621
  "OutputKafkaAuthenticationTypedDict",
5556
5622
  "OutputKafkaBackpressureBehavior",
5557
5623
  "OutputKafkaCompression",
@@ -5564,12 +5630,16 @@ __all__ = [
5564
5630
  "OutputKafkaMaximumTLSVersion",
5565
5631
  "OutputKafkaMinimumTLSVersion",
5566
5632
  "OutputKafkaMode",
5633
+ "OutputKafkaOauthParam",
5634
+ "OutputKafkaOauthParamTypedDict",
5567
5635
  "OutputKafkaPqCompressCompression",
5568
5636
  "OutputKafkaPqControls",
5569
5637
  "OutputKafkaPqControlsTypedDict",
5570
5638
  "OutputKafkaQueueFullBehavior",
5571
5639
  "OutputKafkaRecordDataFormat",
5572
5640
  "OutputKafkaSASLMechanism",
5641
+ "OutputKafkaSaslExtension",
5642
+ "OutputKafkaSaslExtensionTypedDict",
5573
5643
  "OutputKafkaTLSSettingsClientSide",
5574
5644
  "OutputKafkaTLSSettingsClientSideTypedDict",
5575
5645
  "OutputKafkaType",
@@ -5893,12 +5963,16 @@ __all__ = [
5893
5963
  "OutputSplunkHecExtraHTTPHeader",
5894
5964
  "OutputSplunkHecExtraHTTPHeaderTypedDict",
5895
5965
  "OutputSplunkHecFailedRequestLoggingMode",
5966
+ "OutputSplunkHecMaximumTLSVersion",
5967
+ "OutputSplunkHecMinimumTLSVersion",
5896
5968
  "OutputSplunkHecMode",
5897
5969
  "OutputSplunkHecPqControls",
5898
5970
  "OutputSplunkHecPqControlsTypedDict",
5899
5971
  "OutputSplunkHecQueueFullBehavior",
5900
5972
  "OutputSplunkHecResponseRetrySetting",
5901
5973
  "OutputSplunkHecResponseRetrySettingTypedDict",
5974
+ "OutputSplunkHecTLSSettingsClientSide",
5975
+ "OutputSplunkHecTLSSettingsClientSideTypedDict",
5902
5976
  "OutputSplunkHecTimeoutRetrySettings",
5903
5977
  "OutputSplunkHecTimeoutRetrySettingsTypedDict",
5904
5978
  "OutputSplunkHecType",
@@ -6228,6 +6302,9 @@ __all__ = [
6228
6302
  "ShardLoadBalancing",
6229
6303
  "SplunkHecMetadata",
6230
6304
  "SplunkHecMetadataTypedDict",
6305
+ "State",
6306
+ "Stats",
6307
+ "StatsTypedDict",
6231
6308
  "Status",
6232
6309
  "Subscription",
6233
6310
  "SubscriptionMetadatum",
@@ -6244,6 +6321,7 @@ __all__ = [
6244
6321
  "TimeRange",
6245
6322
  "TimestampFormat",
6246
6323
  "TimestampPrecision",
6324
+ "UDMType",
6247
6325
  "UpdateConfigGroupByProductAndIDRequest",
6248
6326
  "UpdateConfigGroupByProductAndIDRequestTypedDict",
6249
6327
  "UpdateConfigGroupByProductAndIDResponse",
@@ -6665,6 +6743,7 @@ _dynamic_imports: dict[str, str] = {
6665
6743
  "InputConfluentCloudAuth": ".inputconfluentcloud",
6666
6744
  "InputConfluentCloudAuthTypedDict": ".inputconfluentcloud",
6667
6745
  "InputConfluentCloudAuthentication": ".inputconfluentcloud",
6746
+ "InputConfluentCloudAuthenticationMethod": ".inputconfluentcloud",
6668
6747
  "InputConfluentCloudAuthenticationTypedDict": ".inputconfluentcloud",
6669
6748
  "InputConfluentCloudCompression": ".inputconfluentcloud",
6670
6749
  "InputConfluentCloudConnection": ".inputconfluentcloud",
@@ -6680,11 +6759,15 @@ _dynamic_imports: dict[str, str] = {
6680
6759
  "InputConfluentCloudMetadatumTypedDict": ".inputconfluentcloud",
6681
6760
  "InputConfluentCloudMinimumTLSVersion": ".inputconfluentcloud",
6682
6761
  "InputConfluentCloudMode": ".inputconfluentcloud",
6762
+ "InputConfluentCloudOauthParam": ".inputconfluentcloud",
6763
+ "InputConfluentCloudOauthParamTypedDict": ".inputconfluentcloud",
6683
6764
  "InputConfluentCloudPq": ".inputconfluentcloud",
6684
6765
  "InputConfluentCloudPqControls": ".inputconfluentcloud",
6685
6766
  "InputConfluentCloudPqControlsTypedDict": ".inputconfluentcloud",
6686
6767
  "InputConfluentCloudPqTypedDict": ".inputconfluentcloud",
6687
6768
  "InputConfluentCloudSASLMechanism": ".inputconfluentcloud",
6769
+ "InputConfluentCloudSaslExtension": ".inputconfluentcloud",
6770
+ "InputConfluentCloudSaslExtensionTypedDict": ".inputconfluentcloud",
6688
6771
  "InputConfluentCloudTLSSettingsClientSide": ".inputconfluentcloud",
6689
6772
  "InputConfluentCloudTLSSettingsClientSideTypedDict": ".inputconfluentcloud",
6690
6773
  "InputConfluentCloudType": ".inputconfluentcloud",
@@ -6882,13 +6965,16 @@ _dynamic_imports: dict[str, str] = {
6882
6965
  "InputElasticType": ".inputelastic",
6883
6966
  "InputElasticTypedDict": ".inputelastic",
6884
6967
  "InputEventhub": ".inputeventhub",
6968
+ "InputEventhubAuthTypeAuthenticationMethod": ".inputeventhub",
6885
6969
  "InputEventhubAuthentication": ".inputeventhub",
6886
6970
  "InputEventhubAuthenticationTypedDict": ".inputeventhub",
6971
+ "InputEventhubClientSecretAuthTypeAuthenticationMethod": ".inputeventhub",
6887
6972
  "InputEventhubCompression": ".inputeventhub",
6888
6973
  "InputEventhubConnection": ".inputeventhub",
6889
6974
  "InputEventhubConnectionTypedDict": ".inputeventhub",
6890
6975
  "InputEventhubMetadatum": ".inputeventhub",
6891
6976
  "InputEventhubMetadatumTypedDict": ".inputeventhub",
6977
+ "InputEventhubMicrosoftEntraIDAuthenticationEndpoint": ".inputeventhub",
6892
6978
  "InputEventhubMode": ".inputeventhub",
6893
6979
  "InputEventhubPq": ".inputeventhub",
6894
6980
  "InputEventhubPqControls": ".inputeventhub",
@@ -7083,6 +7169,7 @@ _dynamic_imports: dict[str, str] = {
7083
7169
  "InputKafkaAuth": ".inputkafka",
7084
7170
  "InputKafkaAuthTypedDict": ".inputkafka",
7085
7171
  "InputKafkaAuthentication": ".inputkafka",
7172
+ "InputKafkaAuthenticationMethod": ".inputkafka",
7086
7173
  "InputKafkaAuthenticationTypedDict": ".inputkafka",
7087
7174
  "InputKafkaCompression": ".inputkafka",
7088
7175
  "InputKafkaConnection": ".inputkafka",
@@ -7098,11 +7185,15 @@ _dynamic_imports: dict[str, str] = {
7098
7185
  "InputKafkaMetadatumTypedDict": ".inputkafka",
7099
7186
  "InputKafkaMinimumTLSVersion": ".inputkafka",
7100
7187
  "InputKafkaMode": ".inputkafka",
7188
+ "InputKafkaOauthParam": ".inputkafka",
7189
+ "InputKafkaOauthParamTypedDict": ".inputkafka",
7101
7190
  "InputKafkaPq": ".inputkafka",
7102
7191
  "InputKafkaPqControls": ".inputkafka",
7103
7192
  "InputKafkaPqControlsTypedDict": ".inputkafka",
7104
7193
  "InputKafkaPqTypedDict": ".inputkafka",
7105
7194
  "InputKafkaSASLMechanism": ".inputkafka",
7195
+ "InputKafkaSaslExtension": ".inputkafka",
7196
+ "InputKafkaSaslExtensionTypedDict": ".inputkafka",
7106
7197
  "InputKafkaTLSSettingsClientSide": ".inputkafka",
7107
7198
  "InputKafkaTLSSettingsClientSideTypedDict": ".inputkafka",
7108
7199
  "InputKafkaType": ".inputkafka",
@@ -7881,8 +7972,13 @@ _dynamic_imports: dict[str, str] = {
7881
7972
  "InputZscalerHecTypedDict": ".inputzscalerhec",
7882
7973
  "JobInfo": ".jobinfo",
7883
7974
  "JobInfoTypedDict": ".jobinfo",
7975
+ "Stats": ".jobinfo",
7976
+ "StatsTypedDict": ".jobinfo",
7884
7977
  "JobStatus": ".jobstatus",
7885
7978
  "JobStatusTypedDict": ".jobstatus",
7979
+ "State": ".jobstatus",
7980
+ "LakeDatasetMetrics": ".lakedatasetmetrics",
7981
+ "LakeDatasetMetricsTypedDict": ".lakedatasetmetrics",
7886
7982
  "LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
7887
7983
  "LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
7888
7984
  "LakehouseConnectionType": ".lakehouseconnectiontype",
@@ -7964,16 +8060,21 @@ _dynamic_imports: dict[str, str] = {
7964
8060
  "IngestIfNotExist": ".outputazuredataexplorer",
7965
8061
  "IngestIfNotExistTypedDict": ".outputazuredataexplorer",
7966
8062
  "IngestionMode": ".outputazuredataexplorer",
7967
- "MicrosoftEntraIDAuthenticationEndpoint": ".outputazuredataexplorer",
7968
8063
  "OutputAzureDataExplorer": ".outputazuredataexplorer",
7969
8064
  "OutputAzureDataExplorerAuthenticationMethod": ".outputazuredataexplorer",
7970
8065
  "OutputAzureDataExplorerBackpressureBehavior": ".outputazuredataexplorer",
7971
8066
  "OutputAzureDataExplorerCertificate": ".outputazuredataexplorer",
7972
8067
  "OutputAzureDataExplorerCertificateTypedDict": ".outputazuredataexplorer",
7973
8068
  "OutputAzureDataExplorerCompressCompression": ".outputazuredataexplorer",
8069
+ "OutputAzureDataExplorerCompressionLevel": ".outputazuredataexplorer",
7974
8070
  "OutputAzureDataExplorerDataFormat": ".outputazuredataexplorer",
8071
+ "OutputAzureDataExplorerDataPageVersion": ".outputazuredataexplorer",
7975
8072
  "OutputAzureDataExplorerDiskSpaceProtection": ".outputazuredataexplorer",
8073
+ "OutputAzureDataExplorerKeyValueMetadatum": ".outputazuredataexplorer",
8074
+ "OutputAzureDataExplorerKeyValueMetadatumTypedDict": ".outputazuredataexplorer",
8075
+ "OutputAzureDataExplorerMicrosoftEntraIDAuthenticationEndpoint": ".outputazuredataexplorer",
7976
8076
  "OutputAzureDataExplorerMode": ".outputazuredataexplorer",
8077
+ "OutputAzureDataExplorerParquetVersion": ".outputazuredataexplorer",
7977
8078
  "OutputAzureDataExplorerPqCompressCompression": ".outputazuredataexplorer",
7978
8079
  "OutputAzureDataExplorerPqControls": ".outputazuredataexplorer",
7979
8080
  "OutputAzureDataExplorerPqControlsTypedDict": ".outputazuredataexplorer",
@@ -7989,10 +8090,13 @@ _dynamic_imports: dict[str, str] = {
7989
8090
  "ReportMethod": ".outputazuredataexplorer",
7990
8091
  "OutputAzureEventhub": ".outputazureeventhub",
7991
8092
  "OutputAzureEventhubAcknowledgments": ".outputazureeventhub",
8093
+ "OutputAzureEventhubAuthTypeAuthenticationMethod": ".outputazureeventhub",
7992
8094
  "OutputAzureEventhubAuthentication": ".outputazureeventhub",
7993
8095
  "OutputAzureEventhubAuthenticationTypedDict": ".outputazureeventhub",
7994
8096
  "OutputAzureEventhubBackpressureBehavior": ".outputazureeventhub",
8097
+ "OutputAzureEventhubClientSecretAuthTypeAuthenticationMethod": ".outputazureeventhub",
7995
8098
  "OutputAzureEventhubCompression": ".outputazureeventhub",
8099
+ "OutputAzureEventhubMicrosoftEntraIDAuthenticationEndpoint": ".outputazureeventhub",
7996
8100
  "OutputAzureEventhubMode": ".outputazureeventhub",
7997
8101
  "OutputAzureEventhubPqControls": ".outputazureeventhub",
7998
8102
  "OutputAzureEventhubPqControlsTypedDict": ".outputazureeventhub",
@@ -8083,6 +8187,7 @@ _dynamic_imports: dict[str, str] = {
8083
8187
  "OutputConfluentCloudAuth": ".outputconfluentcloud",
8084
8188
  "OutputConfluentCloudAuthTypedDict": ".outputconfluentcloud",
8085
8189
  "OutputConfluentCloudAuthentication": ".outputconfluentcloud",
8190
+ "OutputConfluentCloudAuthenticationMethod": ".outputconfluentcloud",
8086
8191
  "OutputConfluentCloudAuthenticationTypedDict": ".outputconfluentcloud",
8087
8192
  "OutputConfluentCloudBackpressureBehavior": ".outputconfluentcloud",
8088
8193
  "OutputConfluentCloudCompression": ".outputconfluentcloud",
@@ -8095,12 +8200,16 @@ _dynamic_imports: dict[str, str] = {
8095
8200
  "OutputConfluentCloudMaximumTLSVersion": ".outputconfluentcloud",
8096
8201
  "OutputConfluentCloudMinimumTLSVersion": ".outputconfluentcloud",
8097
8202
  "OutputConfluentCloudMode": ".outputconfluentcloud",
8203
+ "OutputConfluentCloudOauthParam": ".outputconfluentcloud",
8204
+ "OutputConfluentCloudOauthParamTypedDict": ".outputconfluentcloud",
8098
8205
  "OutputConfluentCloudPqCompressCompression": ".outputconfluentcloud",
8099
8206
  "OutputConfluentCloudPqControls": ".outputconfluentcloud",
8100
8207
  "OutputConfluentCloudPqControlsTypedDict": ".outputconfluentcloud",
8101
8208
  "OutputConfluentCloudQueueFullBehavior": ".outputconfluentcloud",
8102
8209
  "OutputConfluentCloudRecordDataFormat": ".outputconfluentcloud",
8103
8210
  "OutputConfluentCloudSASLMechanism": ".outputconfluentcloud",
8211
+ "OutputConfluentCloudSaslExtension": ".outputconfluentcloud",
8212
+ "OutputConfluentCloudSaslExtensionTypedDict": ".outputconfluentcloud",
8104
8213
  "OutputConfluentCloudTLSSettingsClientSide": ".outputconfluentcloud",
8105
8214
  "OutputConfluentCloudTLSSettingsClientSideTypedDict": ".outputconfluentcloud",
8106
8215
  "OutputConfluentCloudType": ".outputconfluentcloud",
@@ -8385,6 +8494,7 @@ _dynamic_imports: dict[str, str] = {
8385
8494
  "OutputGoogleChronicleType": ".outputgooglechronicle",
8386
8495
  "OutputGoogleChronicleTypedDict": ".outputgooglechronicle",
8387
8496
  "SendEventsAs": ".outputgooglechronicle",
8497
+ "UDMType": ".outputgooglechronicle",
8388
8498
  "LogLabel": ".outputgooglecloudlogging",
8389
8499
  "LogLabelTypedDict": ".outputgooglecloudlogging",
8390
8500
  "LogLocationType": ".outputgooglecloudlogging",
@@ -8551,6 +8661,7 @@ _dynamic_imports: dict[str, str] = {
8551
8661
  "OutputKafkaAuth": ".outputkafka",
8552
8662
  "OutputKafkaAuthTypedDict": ".outputkafka",
8553
8663
  "OutputKafkaAuthentication": ".outputkafka",
8664
+ "OutputKafkaAuthenticationMethod": ".outputkafka",
8554
8665
  "OutputKafkaAuthenticationTypedDict": ".outputkafka",
8555
8666
  "OutputKafkaBackpressureBehavior": ".outputkafka",
8556
8667
  "OutputKafkaCompression": ".outputkafka",
@@ -8563,12 +8674,16 @@ _dynamic_imports: dict[str, str] = {
8563
8674
  "OutputKafkaMaximumTLSVersion": ".outputkafka",
8564
8675
  "OutputKafkaMinimumTLSVersion": ".outputkafka",
8565
8676
  "OutputKafkaMode": ".outputkafka",
8677
+ "OutputKafkaOauthParam": ".outputkafka",
8678
+ "OutputKafkaOauthParamTypedDict": ".outputkafka",
8566
8679
  "OutputKafkaPqCompressCompression": ".outputkafka",
8567
8680
  "OutputKafkaPqControls": ".outputkafka",
8568
8681
  "OutputKafkaPqControlsTypedDict": ".outputkafka",
8569
8682
  "OutputKafkaQueueFullBehavior": ".outputkafka",
8570
8683
  "OutputKafkaRecordDataFormat": ".outputkafka",
8571
8684
  "OutputKafkaSASLMechanism": ".outputkafka",
8685
+ "OutputKafkaSaslExtension": ".outputkafka",
8686
+ "OutputKafkaSaslExtensionTypedDict": ".outputkafka",
8572
8687
  "OutputKafkaTLSSettingsClientSide": ".outputkafka",
8573
8688
  "OutputKafkaTLSSettingsClientSideTypedDict": ".outputkafka",
8574
8689
  "OutputKafkaType": ".outputkafka",
@@ -8909,12 +9024,16 @@ _dynamic_imports: dict[str, str] = {
8909
9024
  "OutputSplunkHecExtraHTTPHeader": ".outputsplunkhec",
8910
9025
  "OutputSplunkHecExtraHTTPHeaderTypedDict": ".outputsplunkhec",
8911
9026
  "OutputSplunkHecFailedRequestLoggingMode": ".outputsplunkhec",
9027
+ "OutputSplunkHecMaximumTLSVersion": ".outputsplunkhec",
9028
+ "OutputSplunkHecMinimumTLSVersion": ".outputsplunkhec",
8912
9029
  "OutputSplunkHecMode": ".outputsplunkhec",
8913
9030
  "OutputSplunkHecPqControls": ".outputsplunkhec",
8914
9031
  "OutputSplunkHecPqControlsTypedDict": ".outputsplunkhec",
8915
9032
  "OutputSplunkHecQueueFullBehavior": ".outputsplunkhec",
8916
9033
  "OutputSplunkHecResponseRetrySetting": ".outputsplunkhec",
8917
9034
  "OutputSplunkHecResponseRetrySettingTypedDict": ".outputsplunkhec",
9035
+ "OutputSplunkHecTLSSettingsClientSide": ".outputsplunkhec",
9036
+ "OutputSplunkHecTLSSettingsClientSideTypedDict": ".outputsplunkhec",
8918
9037
  "OutputSplunkHecTimeoutRetrySettings": ".outputsplunkhec",
8919
9038
  "OutputSplunkHecTimeoutRetrySettingsTypedDict": ".outputsplunkhec",
8920
9039
  "OutputSplunkHecType": ".outputsplunkhec",
@@ -3,9 +3,11 @@
3
3
  from __future__ import annotations
4
4
  from .cacheconnectionbackfillstatus import CacheConnectionBackfillStatus
5
5
  from .lakehouseconnectiontype import LakehouseConnectionType
6
+ from cribl_control_plane import models
6
7
  from cribl_control_plane.types import BaseModel
7
8
  from cribl_control_plane.utils import validate_open_enum
8
9
  import pydantic
10
+ from pydantic import field_serializer
9
11
  from pydantic.functional_validators import PlainValidator
10
12
  from typing import List, Optional
11
13
  from typing_extensions import Annotated, NotRequired, TypedDict
@@ -50,3 +52,21 @@ class CacheConnection(BaseModel):
50
52
  migration_query_id: Annotated[
51
53
  Optional[str], pydantic.Field(alias="migrationQueryId")
52
54
  ] = None
55
+
56
+ @field_serializer("backfill_status")
57
+ def serialize_backfill_status(self, value):
58
+ if isinstance(value, str):
59
+ try:
60
+ return models.CacheConnectionBackfillStatus(value)
61
+ except ValueError:
62
+ return value
63
+ return value
64
+
65
+ @field_serializer("lakehouse_connection_type")
66
+ def serialize_lakehouse_connection_type(self, value):
67
+ if isinstance(value, str):
68
+ try:
69
+ return models.LakehouseConnectionType(value)
70
+ except ValueError:
71
+ return value
72
+ return value
@@ -4,11 +4,12 @@ from __future__ import annotations
4
4
  from .commit import Commit, CommitTypedDict
5
5
  from .configgroupcloud import ConfigGroupCloud, ConfigGroupCloudTypedDict
6
6
  from .configgrouplookups import ConfigGroupLookups, ConfigGroupLookupsTypedDict
7
- from cribl_control_plane import utils
7
+ from cribl_control_plane import models, utils
8
8
  from cribl_control_plane.types import BaseModel
9
9
  from cribl_control_plane.utils import validate_open_enum
10
10
  from enum import Enum
11
11
  import pydantic
12
+ from pydantic import field_serializer
12
13
  from pydantic.functional_validators import PlainValidator
13
14
  from typing import List, Optional
14
15
  from typing_extensions import Annotated, NotRequired, TypedDict
@@ -150,3 +151,21 @@ class ConfigGroup(BaseModel):
150
151
  worker_remote_access: Annotated[
151
152
  Optional[bool], pydantic.Field(alias="workerRemoteAccess")
152
153
  ] = None
154
+
155
+ @field_serializer("estimated_ingest_rate")
156
+ def serialize_estimated_ingest_rate(self, value):
157
+ if isinstance(value, str):
158
+ try:
159
+ return models.ConfigGroupEstimatedIngestRate(value)
160
+ except ValueError:
161
+ return value
162
+ return value
163
+
164
+ @field_serializer("type")
165
+ def serialize_type(self, value):
166
+ if isinstance(value, str):
167
+ try:
168
+ return models.ConfigGroupType(value)
169
+ except ValueError:
170
+ return value
171
+ return value
@@ -2,9 +2,10 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from .cloudprovider import CloudProvider
5
+ from cribl_control_plane import models
5
6
  from cribl_control_plane.types import BaseModel, Nullable, UNSET_SENTINEL
6
7
  from cribl_control_plane.utils import validate_open_enum
7
- from pydantic import model_serializer
8
+ from pydantic import field_serializer, model_serializer
8
9
  from pydantic.functional_validators import PlainValidator
9
10
  from typing_extensions import Annotated, TypedDict
10
11
 
@@ -21,6 +22,15 @@ class ConfigGroupCloud(BaseModel):
21
22
 
22
23
  region: str
23
24
 
25
+ @field_serializer("provider")
26
+ def serialize_provider(self, value):
27
+ if isinstance(value, str):
28
+ try:
29
+ return models.CloudProvider(value)
30
+ except ValueError:
31
+ return value
32
+ return value
33
+
24
34
  @model_serializer(mode="wrap")
25
35
  def serialize_model(self, handler):
26
36
  optional_fields = []