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
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "cribl-control-plane"
6
- __version__: str = "0.3.0b3"
7
- __openapi_doc_version__: str = "4.15.0-alpha.1761606328595-4d5d0f38"
8
- __gen_version__: str = "2.730.5"
9
- __user_agent__: str = "speakeasy-sdk/python 0.3.0b3 2.730.5 4.15.0-alpha.1761606328595-4d5d0f38 cribl-control-plane"
6
+ __version__: str = "0.3.0b12"
7
+ __openapi_doc_version__: str = "4.15.0-alpha.1762383805913-2ea53e6b"
8
+ __gen_version__: str = "2.743.2"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.3.0b12 2.743.2 4.15.0-alpha.1762383805913-2ea53e6b cribl-control-plane"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -259,7 +259,7 @@ class GroupsSDK(BaseSDK):
259
259
 
260
260
  Create a new Worker Group or Edge Fleet for the specified Cribl product.
261
261
 
262
- :param product: Name of the Cribl product to add the Worker Group or Edge Fleet to.
262
+ :param product: required Name of the Cribl product to add the Worker Group or Edge Fleet to.
263
263
  :param id:
264
264
  :param cloud:
265
265
  :param deploying_worker_count:
@@ -440,7 +440,7 @@ class GroupsSDK(BaseSDK):
440
440
 
441
441
  Create a new Worker Group or Edge Fleet for the specified Cribl product.
442
442
 
443
- :param product: Name of the Cribl product to add the Worker Group or Edge Fleet to.
443
+ :param product: required Name of the Cribl product to add the Worker Group or Edge Fleet to.
444
444
  :param id:
445
445
  :param cloud:
446
446
  :param deploying_worker_count:
@@ -24,6 +24,9 @@ class LakeDatasets(BaseSDK):
24
24
  description: Optional[str] = None,
25
25
  format_: Optional[models.CriblLakeDatasetFormat] = None,
26
26
  http_da_used: Optional[bool] = None,
27
+ metrics: Optional[
28
+ Union[models.LakeDatasetMetrics, models.LakeDatasetMetricsTypedDict]
29
+ ] = None,
27
30
  retention_period_in_days: Optional[float] = None,
28
31
  search_config: Optional[
29
32
  Union[
@@ -50,6 +53,7 @@ class LakeDatasets(BaseSDK):
50
53
  :param description:
51
54
  :param format_:
52
55
  :param http_da_used:
56
+ :param metrics:
53
57
  :param retention_period_in_days:
54
58
  :param search_config:
55
59
  :param storage_location_id:
@@ -82,6 +86,9 @@ class LakeDatasets(BaseSDK):
82
86
  format_=format_,
83
87
  http_da_used=http_da_used,
84
88
  id=id,
89
+ metrics=utils.get_pydantic_model(
90
+ metrics, Optional[models.LakeDatasetMetrics]
91
+ ),
85
92
  retention_period_in_days=retention_period_in_days,
86
93
  search_config=utils.get_pydantic_model(
87
94
  search_config, Optional[models.LakeDatasetSearchConfig]
@@ -168,6 +175,9 @@ class LakeDatasets(BaseSDK):
168
175
  description: Optional[str] = None,
169
176
  format_: Optional[models.CriblLakeDatasetFormat] = None,
170
177
  http_da_used: Optional[bool] = None,
178
+ metrics: Optional[
179
+ Union[models.LakeDatasetMetrics, models.LakeDatasetMetricsTypedDict]
180
+ ] = None,
171
181
  retention_period_in_days: Optional[float] = None,
172
182
  search_config: Optional[
173
183
  Union[
@@ -194,6 +204,7 @@ class LakeDatasets(BaseSDK):
194
204
  :param description:
195
205
  :param format_:
196
206
  :param http_da_used:
207
+ :param metrics:
197
208
  :param retention_period_in_days:
198
209
  :param search_config:
199
210
  :param storage_location_id:
@@ -226,6 +237,9 @@ class LakeDatasets(BaseSDK):
226
237
  format_=format_,
227
238
  http_da_used=http_da_used,
228
239
  id=id,
240
+ metrics=utils.get_pydantic_model(
241
+ metrics, Optional[models.LakeDatasetMetrics]
242
+ ),
229
243
  retention_period_in_days=retention_period_in_days,
230
244
  search_config=utils.get_pydantic_model(
231
245
  search_config, Optional[models.LakeDatasetSearchConfig]
@@ -859,6 +873,9 @@ class LakeDatasets(BaseSDK):
859
873
  format_: Optional[models.CriblLakeDatasetUpdateFormat] = None,
860
874
  http_da_used: Optional[bool] = None,
861
875
  id: Optional[str] = None,
876
+ metrics: Optional[
877
+ Union[models.LakeDatasetMetrics, models.LakeDatasetMetricsTypedDict]
878
+ ] = None,
862
879
  retention_period_in_days: Optional[float] = None,
863
880
  search_config: Optional[
864
881
  Union[
@@ -886,6 +903,7 @@ class LakeDatasets(BaseSDK):
886
903
  :param format_:
887
904
  :param http_da_used:
888
905
  :param id:
906
+ :param metrics:
889
907
  :param retention_period_in_days:
890
908
  :param search_config:
891
909
  :param storage_location_id:
@@ -919,6 +937,9 @@ class LakeDatasets(BaseSDK):
919
937
  format_=format_,
920
938
  http_da_used=http_da_used,
921
939
  id=id,
940
+ metrics=utils.get_pydantic_model(
941
+ metrics, Optional[models.LakeDatasetMetrics]
942
+ ),
922
943
  retention_period_in_days=retention_period_in_days,
923
944
  search_config=utils.get_pydantic_model(
924
945
  search_config, Optional[models.LakeDatasetSearchConfig]
@@ -1006,6 +1027,9 @@ class LakeDatasets(BaseSDK):
1006
1027
  format_: Optional[models.CriblLakeDatasetUpdateFormat] = None,
1007
1028
  http_da_used: Optional[bool] = None,
1008
1029
  id: Optional[str] = None,
1030
+ metrics: Optional[
1031
+ Union[models.LakeDatasetMetrics, models.LakeDatasetMetricsTypedDict]
1032
+ ] = None,
1009
1033
  retention_period_in_days: Optional[float] = None,
1010
1034
  search_config: Optional[
1011
1035
  Union[
@@ -1033,6 +1057,7 @@ class LakeDatasets(BaseSDK):
1033
1057
  :param format_:
1034
1058
  :param http_da_used:
1035
1059
  :param id:
1060
+ :param metrics:
1036
1061
  :param retention_period_in_days:
1037
1062
  :param search_config:
1038
1063
  :param storage_location_id:
@@ -1066,6 +1091,9 @@ class LakeDatasets(BaseSDK):
1066
1091
  format_=format_,
1067
1092
  http_da_used=http_da_used,
1068
1093
  id=id,
1094
+ metrics=utils.get_pydantic_model(
1095
+ metrics, Optional[models.LakeDatasetMetrics]
1096
+ ),
1069
1097
  retention_period_in_days=retention_period_in_days,
1070
1098
  search_config=utils.get_pydantic_model(
1071
1099
  search_config, Optional[models.LakeDatasetSearchConfig]