cribl-control-plane 0.0.43__py3-none-any.whl → 0.0.44a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cribl-control-plane might be problematic. Click here for more details.

@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "cribl-control-plane"
6
- __version__: str = "0.0.43"
7
- __openapi_doc_version__: str = "4.14.0-alpha.1757087755104-f460003f"
6
+ __version__: str = "0.0.44a1"
7
+ __openapi_doc_version__: str = "4.14.0-alpha.1757353540432-d6130d30"
8
8
  __gen_version__: str = "2.686.7"
9
- __user_agent__: str = "speakeasy-sdk/python 0.0.43 2.686.7 4.14.0-alpha.1757087755104-f460003f cribl-control-plane"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.0.44a1 2.686.7 4.14.0-alpha.1757353540432-d6130d30 cribl-control-plane"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -2971,6 +2971,8 @@ if TYPE_CHECKING:
2971
2971
  OutputSyslog,
2972
2972
  OutputSyslogBackpressureBehavior,
2973
2973
  OutputSyslogCompression,
2974
+ OutputSyslogHost,
2975
+ OutputSyslogHostTypedDict,
2974
2976
  OutputSyslogMaximumTLSVersion,
2975
2977
  OutputSyslogMessageFormat,
2976
2978
  OutputSyslogMinimumTLSVersion,
@@ -2980,6 +2982,7 @@ if TYPE_CHECKING:
2980
2982
  OutputSyslogProtocol,
2981
2983
  OutputSyslogQueueFullBehavior,
2982
2984
  OutputSyslogSeverity,
2985
+ OutputSyslogTLS,
2983
2986
  OutputSyslogTLSSettingsClientSide,
2984
2987
  OutputSyslogTLSSettingsClientSideTypedDict,
2985
2988
  OutputSyslogType,
@@ -5892,6 +5895,8 @@ __all__ = [
5892
5895
  "OutputSyslog",
5893
5896
  "OutputSyslogBackpressureBehavior",
5894
5897
  "OutputSyslogCompression",
5898
+ "OutputSyslogHost",
5899
+ "OutputSyslogHostTypedDict",
5895
5900
  "OutputSyslogMaximumTLSVersion",
5896
5901
  "OutputSyslogMessageFormat",
5897
5902
  "OutputSyslogMinimumTLSVersion",
@@ -5901,6 +5906,7 @@ __all__ = [
5901
5906
  "OutputSyslogProtocol",
5902
5907
  "OutputSyslogQueueFullBehavior",
5903
5908
  "OutputSyslogSeverity",
5909
+ "OutputSyslogTLS",
5904
5910
  "OutputSyslogTLSSettingsClientSide",
5905
5911
  "OutputSyslogTLSSettingsClientSideTypedDict",
5906
5912
  "OutputSyslogType",
@@ -8855,6 +8861,8 @@ _dynamic_imports: dict[str, str] = {
8855
8861
  "OutputSyslog": ".outputsyslog",
8856
8862
  "OutputSyslogBackpressureBehavior": ".outputsyslog",
8857
8863
  "OutputSyslogCompression": ".outputsyslog",
8864
+ "OutputSyslogHost": ".outputsyslog",
8865
+ "OutputSyslogHostTypedDict": ".outputsyslog",
8858
8866
  "OutputSyslogMaximumTLSVersion": ".outputsyslog",
8859
8867
  "OutputSyslogMessageFormat": ".outputsyslog",
8860
8868
  "OutputSyslogMinimumTLSVersion": ".outputsyslog",
@@ -8864,6 +8872,7 @@ _dynamic_imports: dict[str, str] = {
8864
8872
  "OutputSyslogProtocol": ".outputsyslog",
8865
8873
  "OutputSyslogQueueFullBehavior": ".outputsyslog",
8866
8874
  "OutputSyslogSeverity": ".outputsyslog",
8875
+ "OutputSyslogTLS": ".outputsyslog",
8867
8876
  "OutputSyslogTLSSettingsClientSide": ".outputsyslog",
8868
8877
  "OutputSyslogTLSSettingsClientSideTypedDict": ".outputsyslog",
8869
8878
  "OutputSyslogType": ".outputsyslog",
@@ -341,6 +341,8 @@ class InputConfluentCloudAuthenticationTypedDict(TypedDict):
341
341
 
342
342
  disabled: NotRequired[bool]
343
343
  mechanism: NotRequired[InputConfluentCloudSASLMechanism]
344
+ oauth_enabled: NotRequired[bool]
345
+ r"""Enable OAuth authentication"""
344
346
 
345
347
 
346
348
  class InputConfluentCloudAuthentication(BaseModel):
@@ -352,6 +354,11 @@ class InputConfluentCloudAuthentication(BaseModel):
352
354
  InputConfluentCloudSASLMechanism.PLAIN
353
355
  )
354
356
 
357
+ oauth_enabled: Annotated[Optional[bool], pydantic.Field(alias="oauthEnabled")] = (
358
+ False
359
+ )
360
+ r"""Enable OAuth authentication"""
361
+
355
362
 
356
363
  class InputConfluentCloudMetadatumTypedDict(TypedDict):
357
364
  name: str
@@ -260,6 +260,8 @@ class InputKafkaAuthenticationTypedDict(TypedDict):
260
260
 
261
261
  disabled: NotRequired[bool]
262
262
  mechanism: NotRequired[InputKafkaSASLMechanism]
263
+ oauth_enabled: NotRequired[bool]
264
+ r"""Enable OAuth authentication"""
263
265
 
264
266
 
265
267
  class InputKafkaAuthentication(BaseModel):
@@ -269,6 +271,11 @@ class InputKafkaAuthentication(BaseModel):
269
271
 
270
272
  mechanism: Optional[InputKafkaSASLMechanism] = InputKafkaSASLMechanism.PLAIN
271
273
 
274
+ oauth_enabled: Annotated[Optional[bool], pydantic.Field(alias="oauthEnabled")] = (
275
+ False
276
+ )
277
+ r"""Enable OAuth authentication"""
278
+
272
279
 
273
280
  class InputKafkaMinimumTLSVersion(str, Enum):
274
281
  TL_SV1 = "TLSv1"
@@ -94,24 +94,23 @@ OutputTypedDict = TypeAliasType(
94
94
  OutputNetflowTypedDict,
95
95
  OutputDiskSpoolTypedDict,
96
96
  OutputRingTypedDict,
97
+ OutputStatsdExtTypedDict,
97
98
  OutputGraphiteTypedDict,
98
99
  OutputStatsdTypedDict,
99
- OutputStatsdExtTypedDict,
100
100
  OutputGooglePubsubTypedDict,
101
101
  OutputCriblTCPTypedDict,
102
102
  OutputSplunkTypedDict,
103
103
  OutputSnsTypedDict,
104
104
  OutputCloudwatchTypedDict,
105
- OutputSyslogTypedDict,
106
105
  OutputAzureEventhubTypedDict,
107
106
  OutputWavefrontTypedDict,
108
107
  OutputSignalfxTypedDict,
109
108
  OutputHoneycombTypedDict,
110
- OutputTcpjsonTypedDict,
111
109
  OutputSumoLogicTypedDict,
110
+ OutputCrowdstrikeNextGenSiemTypedDict,
112
111
  OutputHumioHecTypedDict,
112
+ OutputTcpjsonTypedDict,
113
113
  OutputElasticCloudTypedDict,
114
- OutputCrowdstrikeNextGenSiemTypedDict,
115
114
  OutputKinesisTypedDict,
116
115
  OutputConfluentCloudTypedDict,
117
116
  OutputKafkaTypedDict,
@@ -119,6 +118,7 @@ OutputTypedDict = TypeAliasType(
119
118
  OutputNewrelicEventsTypedDict,
120
119
  OutputAzureLogsTypedDict,
121
120
  OutputSplunkLbTypedDict,
121
+ OutputSyslogTypedDict,
122
122
  OutputSqsTypedDict,
123
123
  OutputNewrelicTypedDict,
124
124
  OutputCriblHTTPTypedDict,
@@ -147,8 +147,8 @@ OutputTypedDict = TypeAliasType(
147
147
  OutputSecurityLakeTypedDict,
148
148
  OutputDlS3TypedDict,
149
149
  OutputS3TypedDict,
150
- OutputAzureDataExplorerTypedDict,
151
150
  OutputWebhookTypedDict,
151
+ OutputAzureDataExplorerTypedDict,
152
152
  OutputGoogleCloudLoggingTypedDict,
153
153
  OutputGrafanaCloudTypedDict,
154
154
  ],
@@ -165,24 +165,23 @@ Output = TypeAliasType(
165
165
  OutputNetflow,
166
166
  OutputDiskSpool,
167
167
  OutputRing,
168
+ OutputStatsdExt,
168
169
  OutputGraphite,
169
170
  OutputStatsd,
170
- OutputStatsdExt,
171
171
  OutputGooglePubsub,
172
172
  OutputCriblTCP,
173
173
  OutputSplunk,
174
174
  OutputSns,
175
175
  OutputCloudwatch,
176
- OutputSyslog,
177
176
  OutputAzureEventhub,
178
177
  OutputWavefront,
179
178
  OutputSignalfx,
180
179
  OutputHoneycomb,
181
- OutputTcpjson,
182
180
  OutputSumoLogic,
181
+ OutputCrowdstrikeNextGenSiem,
183
182
  OutputHumioHec,
183
+ OutputTcpjson,
184
184
  OutputElasticCloud,
185
- OutputCrowdstrikeNextGenSiem,
186
185
  OutputKinesis,
187
186
  OutputConfluentCloud,
188
187
  OutputKafka,
@@ -190,6 +189,7 @@ Output = TypeAliasType(
190
189
  OutputNewrelicEvents,
191
190
  OutputAzureLogs,
192
191
  OutputSplunkLb,
192
+ OutputSyslog,
193
193
  OutputSqs,
194
194
  OutputNewrelic,
195
195
  OutputCriblHTTP,
@@ -218,8 +218,8 @@ Output = TypeAliasType(
218
218
  OutputSecurityLake,
219
219
  OutputDlS3,
220
220
  OutputS3,
221
- OutputAzureDataExplorer,
222
221
  OutputWebhook,
222
+ OutputAzureDataExplorer,
223
223
  OutputGoogleCloudLogging,
224
224
  OutputGrafanaCloud,
225
225
  ],
@@ -336,6 +336,8 @@ class OutputAzureDataExplorerTypedDict(TypedDict):
336
336
  pq_mode: NotRequired[OutputAzureDataExplorerMode]
337
337
  r"""In Error mode, PQ writes events to the filesystem if the Destination is unavailable. In Backpressure mode, PQ writes events to the filesystem when it detects backpressure from the Destination. In Always On mode, PQ always writes events to the filesystem."""
338
338
  pq_controls: NotRequired[OutputAzureDataExplorerPqControlsTypedDict]
339
+ empty_dir_cleanup_sec: NotRequired[float]
340
+ r"""How frequently, in seconds, to clean up empty directories"""
339
341
 
340
342
 
341
343
  class OutputAzureDataExplorer(BaseModel):
@@ -611,3 +613,8 @@ class OutputAzureDataExplorer(BaseModel):
611
613
  pq_controls: Annotated[
612
614
  Optional[OutputAzureDataExplorerPqControls], pydantic.Field(alias="pqControls")
613
615
  ] = None
616
+
617
+ empty_dir_cleanup_sec: Annotated[
618
+ Optional[float], pydantic.Field(alias="emptyDirCleanupSec")
619
+ ] = 300
620
+ r"""How frequently, in seconds, to clean up empty directories"""
@@ -294,6 +294,8 @@ class OutputConfluentCloudAuthenticationTypedDict(TypedDict):
294
294
 
295
295
  disabled: NotRequired[bool]
296
296
  mechanism: NotRequired[OutputConfluentCloudSASLMechanism]
297
+ oauth_enabled: NotRequired[bool]
298
+ r"""Enable OAuth authentication"""
297
299
 
298
300
 
299
301
  class OutputConfluentCloudAuthentication(BaseModel):
@@ -305,6 +307,11 @@ class OutputConfluentCloudAuthentication(BaseModel):
305
307
  OutputConfluentCloudSASLMechanism.PLAIN
306
308
  )
307
309
 
310
+ oauth_enabled: Annotated[Optional[bool], pydantic.Field(alias="oauthEnabled")] = (
311
+ False
312
+ )
313
+ r"""Enable OAuth authentication"""
314
+
308
315
 
309
316
  class OutputConfluentCloudBackpressureBehavior(str, Enum):
310
317
  r"""How to handle events when all receivers are exerting backpressure"""
@@ -215,6 +215,8 @@ class OutputKafkaAuthenticationTypedDict(TypedDict):
215
215
 
216
216
  disabled: NotRequired[bool]
217
217
  mechanism: NotRequired[OutputKafkaSASLMechanism]
218
+ oauth_enabled: NotRequired[bool]
219
+ r"""Enable OAuth authentication"""
218
220
 
219
221
 
220
222
  class OutputKafkaAuthentication(BaseModel):
@@ -224,6 +226,11 @@ class OutputKafkaAuthentication(BaseModel):
224
226
 
225
227
  mechanism: Optional[OutputKafkaSASLMechanism] = OutputKafkaSASLMechanism.PLAIN
226
228
 
229
+ oauth_enabled: Annotated[Optional[bool], pydantic.Field(alias="oauthEnabled")] = (
230
+ False
231
+ )
232
+ r"""Enable OAuth authentication"""
233
+
227
234
 
228
235
  class OutputKafkaMinimumTLSVersion(str, Enum):
229
236
  TL_SV1 = "TLSv1"
@@ -186,6 +186,43 @@ class OutputSyslogPqControls(BaseModel):
186
186
  pass
187
187
 
188
188
 
189
+ class OutputSyslogTLS(str, Enum):
190
+ r"""Whether to inherit TLS configs from group setting or disable TLS"""
191
+
192
+ INHERIT = "inherit"
193
+ OFF = "off"
194
+
195
+
196
+ class OutputSyslogHostTypedDict(TypedDict):
197
+ host: str
198
+ r"""The hostname of the receiver"""
199
+ port: NotRequired[float]
200
+ r"""The port to connect to on the provided host"""
201
+ tls: NotRequired[OutputSyslogTLS]
202
+ r"""Whether to inherit TLS configs from group setting or disable TLS"""
203
+ servername: NotRequired[str]
204
+ r"""Servername to use if establishing a TLS connection. If not specified, defaults to connection host (if not an IP); otherwise, uses the global TLS settings."""
205
+ weight: NotRequired[float]
206
+ r"""Assign a weight (>0) to each endpoint to indicate its traffic-handling capability"""
207
+
208
+
209
+ class OutputSyslogHost(BaseModel):
210
+ host: str
211
+ r"""The hostname of the receiver"""
212
+
213
+ port: Optional[float] = 9997
214
+ r"""The port to connect to on the provided host"""
215
+
216
+ tls: Optional[OutputSyslogTLS] = OutputSyslogTLS.INHERIT
217
+ r"""Whether to inherit TLS configs from group setting or disable TLS"""
218
+
219
+ servername: Optional[str] = None
220
+ r"""Servername to use if establishing a TLS connection. If not specified, defaults to connection host (if not an IP); otherwise, uses the global TLS settings."""
221
+
222
+ weight: Optional[float] = 1
223
+ r"""Assign a weight (>0) to each endpoint to indicate its traffic-handling capability"""
224
+
225
+
189
226
  class OutputSyslogTypedDict(TypedDict):
190
227
  type: OutputSyslogType
191
228
  id: NotRequired[str]
@@ -247,6 +284,16 @@ class OutputSyslogTypedDict(TypedDict):
247
284
  pq_mode: NotRequired[OutputSyslogMode]
248
285
  r"""In Error mode, PQ writes events to the filesystem if the Destination is unavailable. In Backpressure mode, PQ writes events to the filesystem when it detects backpressure from the Destination. In Always On mode, PQ always writes events to the filesystem."""
249
286
  pq_controls: NotRequired[OutputSyslogPqControlsTypedDict]
287
+ dns_resolve_period_sec: NotRequired[float]
288
+ r"""The interval in which to re-resolve any hostnames and pick up destinations from A records"""
289
+ load_balance_stats_period_sec: NotRequired[float]
290
+ r"""How far back in time to keep traffic stats for load balancing purposes"""
291
+ max_concurrent_senders: NotRequired[float]
292
+ r"""Maximum number of concurrent connections (per Worker Process). A random set of IPs will be picked on every DNS resolution period. Use 0 for unlimited."""
293
+ exclude_self: NotRequired[bool]
294
+ r"""Exclude all IPs of the current host from the list of any resolved hostnames"""
295
+ hosts: NotRequired[List[OutputSyslogHostTypedDict]]
296
+ r"""Set of hosts to load-balance data to."""
250
297
 
251
298
 
252
299
  class OutputSyslog(BaseModel):
@@ -379,3 +426,24 @@ class OutputSyslog(BaseModel):
379
426
  pq_controls: Annotated[
380
427
  Optional[OutputSyslogPqControls], pydantic.Field(alias="pqControls")
381
428
  ] = None
429
+
430
+ dns_resolve_period_sec: Annotated[
431
+ Optional[float], pydantic.Field(alias="dnsResolvePeriodSec")
432
+ ] = 600
433
+ r"""The interval in which to re-resolve any hostnames and pick up destinations from A records"""
434
+
435
+ load_balance_stats_period_sec: Annotated[
436
+ Optional[float], pydantic.Field(alias="loadBalanceStatsPeriodSec")
437
+ ] = 300
438
+ r"""How far back in time to keep traffic stats for load balancing purposes"""
439
+
440
+ max_concurrent_senders: Annotated[
441
+ Optional[float], pydantic.Field(alias="maxConcurrentSenders")
442
+ ] = 0
443
+ r"""Maximum number of concurrent connections (per Worker Process). A random set of IPs will be picked on every DNS resolution period. Use 0 for unlimited."""
444
+
445
+ exclude_self: Annotated[Optional[bool], pydantic.Field(alias="excludeSelf")] = False
446
+ r"""Exclude all IPs of the current host from the list of any resolved hostnames"""
447
+
448
+ hosts: Optional[List[OutputSyslogHost]] = None
449
+ r"""Set of hosts to load-balance data to."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: cribl-control-plane
3
- Version: 0.0.43
3
+ Version: 0.0.44a1
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -4,7 +4,7 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=_scvqxVT_8CDEMWblZ02IQ9A1
4
4
  cribl_control_plane/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
5
5
  cribl_control_plane/_hooks/sdkhooks.py,sha256=ggXjME1_Rdv8CVCg1XHqB83eYtbxzKyhXyfQ36Yc1gA,2816
6
6
  cribl_control_plane/_hooks/types.py,sha256=Tw_C4zTZm01rW_89VDEUpvQ8KQr1WxN0Gu_-s_fYSPc,2998
7
- cribl_control_plane/_version.py,sha256=VElA5ZVotJCns5QrpZ59vgb5LZiOMNVpE-QEXJ438Ec,542
7
+ cribl_control_plane/_version.py,sha256=-UA8QhCK7p_4c-Hn3tZnwFc2VrlfxRNUqqKeu1JpgK0,546
8
8
  cribl_control_plane/acl.py,sha256=LMsIZTDCRTXVt73MC_QoJexElGNsicYsBBHfVGzUsG8,8923
9
9
  cribl_control_plane/auth_sdk.py,sha256=FQZpAERAlpw6Xk-mkUdalUDSekftklv_Du4i2TLDilk,496
10
10
  cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
@@ -27,7 +27,7 @@ cribl_control_plane/health.py,sha256=mDYmC13IE_M9jTVKKBOr5aeZ5QArUURLT1PyPpvn5Ho
27
27
  cribl_control_plane/hectokens.py,sha256=0EGgGGrM83m1YmTZwkN5S4xFkHQGnw1IZe3y6uMwmLw,19151
28
28
  cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
29
29
  cribl_control_plane/lakedatasets.py,sha256=7WYWcjXMzliDW1j3TQlgikc_h54IUq4lsysVy_39l38,46578
30
- cribl_control_plane/models/__init__.py,sha256=QbNNiWNPbtj2voHgWyxZpqle6XFcxFHR0LBIWWVmPyE,386370
30
+ cribl_control_plane/models/__init__.py,sha256=frvf6pQdbFpXv09nCvr8ZLYecMOrSEo-PMFOIOa-3jk,386667
31
31
  cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
32
32
  cribl_control_plane/models/appmode.py,sha256=5xRJz9oP5ah4b6dcay4Q1IbQ9irm6k6x2BrTNysIMY4,300
33
33
  cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
@@ -111,7 +111,7 @@ cribl_control_plane/models/input.py,sha256=Zd6wdxKwa9pdoT3GmGKnlzwhV8oqIKG2CAnjy
111
111
  cribl_control_plane/models/inputappscope.py,sha256=DXKjLQXUGBicb8vBbDS_BxBh4jHq7sxgrr1IiDqj4NM,20233
112
112
  cribl_control_plane/models/inputazureblob.py,sha256=XKOgRtB0ThQLMWU9rS5yxS3ffXb_gRy9tbCJPUQkJns,15124
113
113
  cribl_control_plane/models/inputcollection.py,sha256=PwhhEEsoN2rHraPbNBvGjtaD3-weAh-V1WsHFEl7blk,9573
114
- cribl_control_plane/models/inputconfluentcloud.py,sha256=POiEfHq2SMK5x8Ia4uLBE5qe9xxzNHbX-gxA-m0UJWA,29167
114
+ cribl_control_plane/models/inputconfluentcloud.py,sha256=cU1vXECisSNXqBymS6jq84KClbI9jgdBcCxvyF19edA,29390
115
115
  cribl_control_plane/models/inputcribl.py,sha256=TS0xr5-ctqOQtqdQh1jYPnN_FXeIp8xiW1GW5m5T1rU,7239
116
116
  cribl_control_plane/models/inputcriblhttp.py,sha256=hQk3O9ywlQ-4Dlu9i-qSqiJAYjp2zmSfj7QtJBk8ZcE,15608
117
117
  cribl_control_plane/models/inputcribllakehttp.py,sha256=neJQkmPQwOjaAILORr4SQr5SvrNBAuRnRsGtW9erxlg,19118
@@ -131,7 +131,7 @@ cribl_control_plane/models/inputgrafana.py,sha256=n-SX8dFgmMWbs1coccHrm_UvL-lQwW
131
131
  cribl_control_plane/models/inputhttp.py,sha256=kpxmD1Y5qSMuKvKrqnTp898Vh_-nl9135y4TYKvlgqM,18322
132
132
  cribl_control_plane/models/inputhttpraw.py,sha256=fhCig9DZTr3s80zZDZMd2sVkmF6v56_rPMg_d9PQ7VY,18709
133
133
  cribl_control_plane/models/inputjournalfiles.py,sha256=eAYa9vG4_cap5-NQnTj24o-uVo4wPbhyHE-_gChJaRc,9711
134
- cribl_control_plane/models/inputkafka.py,sha256=iPS6q46-0TiMbud2nu6CCruR4jl70f0cjIZn0bUT6AQ,28641
134
+ cribl_control_plane/models/inputkafka.py,sha256=vtRmkm5vbUbHW_LWMlTgz5vBhrrbA_N-kGodUlmGPyY,28864
135
135
  cribl_control_plane/models/inputkinesis.py,sha256=2C35b8nYIA51lSxBQd2bSspmQcWkQgwDVq8tdz9uWZM,15724
136
136
  cribl_control_plane/models/inputkubeevents.py,sha256=2UN2j3ITobx2c2hqXYvCnw-r0qwfUZIcdnBkqM8QQXw,8011
137
137
  cribl_control_plane/models/inputkubelogs.py,sha256=rrUYucBJNY-Nbf2RCimTrHkaEieccoYmLYcWylb4DnU,12115
@@ -186,14 +186,14 @@ cribl_control_plane/models/nodeprovidedinfo.py,sha256=lw5JFVcnoetmbF0XSxX4Cyw0_Q
186
186
  cribl_control_plane/models/nodeskippedupgradestatus.py,sha256=wJYUEDcCTx6Mrivh_0uEGspLenHKueWE9mVcjTycaL8,226
187
187
  cribl_control_plane/models/nodeupgradestate.py,sha256=8zbj0lofMbq89B3lv5gEIS7d1DKHINxQtdqptVE3sSQ,218
188
188
  cribl_control_plane/models/nodeupgradestatus.py,sha256=HlNRUmka5xuPdL-2UupJIe5q1_imCKHUWQQBTIpDCHM,966
189
- cribl_control_plane/models/output.py,sha256=4dz6DHqu2ygAYHLcSwv95lnk9tsoQN99c8_M0kscp6U,8695
189
+ cribl_control_plane/models/output.py,sha256=d9ssxkbFuQFzc1eN4at4mqtCndfL-CqkQX9QnHZcngc,8695
190
190
  cribl_control_plane/models/outputazureblob.py,sha256=3mOrHtABPHbwPdx36qjAIyyxbplfgSHSkjTdXXiqi9g,21928
191
- cribl_control_plane/models/outputazuredataexplorer.py,sha256=BXSQBt04zbut9kK0OSrCMHDGONbnBZ9iLrlpBBACskM,30054
191
+ cribl_control_plane/models/outputazuredataexplorer.py,sha256=qlh62CqqmYcQ8Qc6ij-6m09KmQwqPhMexFeBaH1Ry8w,30357
192
192
  cribl_control_plane/models/outputazureeventhub.py,sha256=2-4l-5D5Q5UgKcAd_ZrlCyUipYboPPWRFMOV3dL9Vg8,14767
193
193
  cribl_control_plane/models/outputazurelogs.py,sha256=EIQA99AD9e1r-ht9QPDg3DZN0IN282_vRlcmQd1wNVA,19603
194
194
  cribl_control_plane/models/outputclickhouse.py,sha256=kW8awWvrTcn4lSj1SZdFZwRTwkqFcB9VG8D2ENtQWVs,29121
195
195
  cribl_control_plane/models/outputcloudwatch.py,sha256=ShVZ5c4FKiqy9pY0XKQH-fLIsWYUtAepdKy-ghoRaOQ,11924
196
- cribl_control_plane/models/outputconfluentcloud.py,sha256=ztvqS-QMlNBjo9KSdu5uwKz2P_WjMhccA8UKEtgMosE,26199
196
+ cribl_control_plane/models/outputconfluentcloud.py,sha256=XDieWfvZaAM9AeENcVNfhvRJ6En0RIPtKIhX-WzPmZc,26422
197
197
  cribl_control_plane/models/outputcriblhttp.py,sha256=R3IjucGHDhGorOrhNFH8SFefOLLkZQQ2HKfP1i8xbuQ,22966
198
198
  cribl_control_plane/models/outputcribllake.py,sha256=SzZGDLCYwi7UPqI1QcdpaYVvrRbiqxJbR73r35-0FLI,16802
199
199
  cribl_control_plane/models/outputcribltcp.py,sha256=AcPGSEQ97oTEEnrkFTloq0l057TZJxVOQmn5rxmA-wM,16407
@@ -219,7 +219,7 @@ cribl_control_plane/models/outputgraphite.py,sha256=96YvOtlivN9IxPvVerjj_30RNfnn
219
219
  cribl_control_plane/models/outputhoneycomb.py,sha256=-XgAb04SQ5Bg9W2ZeUH0RdMXptYS0fRFtCzhb7bRpvA,17091
220
220
  cribl_control_plane/models/outputhumiohec.py,sha256=7A4gV6-6cyfW-PxFI6AmfG7Fu3LWPfpByaBcKLW8Iw0,18300
221
221
  cribl_control_plane/models/outputinfluxdb.py,sha256=_UfshiBXt3OE0VsJM8jQrC6IJDQVBGjkFpGEcka3npI,23740
222
- cribl_control_plane/models/outputkafka.py,sha256=1DqBcya7259tAXaOxuhduvbe03GUNe34At0U3zUB78g,25545
222
+ cribl_control_plane/models/outputkafka.py,sha256=YwlyN3Q0o8S_nsuAGxIsc5zt47YEctSTTAGhlk5VSBA,25768
223
223
  cribl_control_plane/models/outputkinesis.py,sha256=2B_r1WqTyBzQNutLM0kwBr0FQVzW9jGwpdKbFX7i_20,13156
224
224
  cribl_control_plane/models/outputloki.py,sha256=7StzjyZx_3gGA7ixlhsjr2_PvQM_WrAawvFEV2pGmbI,22040
225
225
  cribl_control_plane/models/outputminio.py,sha256=k2DCu82KnFRwtnnbAS4js_54jqJTDDrU8kaKFpp114U,22291
@@ -247,7 +247,7 @@ cribl_control_plane/models/outputsqs.py,sha256=yU_s7HvbZrlS9gsNuOVZw2lLfPkcytmlz
247
247
  cribl_control_plane/models/outputstatsd.py,sha256=9y5evh_vSTptkzztDxgVohP4WKiMgZQXKUN2-YjA3MU,9708
248
248
  cribl_control_plane/models/outputstatsdext.py,sha256=BEHdxjGNVQ74WfBxk52UvBk1k7u-yQ0uIF_8_Oh4FUg,9801
249
249
  cribl_control_plane/models/outputsumologic.py,sha256=IHrIxdgjVKGwiQuE5kKjemPY7YapkXLX9d4NXACe8ss,18061
250
- cribl_control_plane/models/outputsyslog.py,sha256=38Tzcqc682yqZnuu5hepDJShUicB0pHabKTH3ENyAk4,16809
250
+ cribl_control_plane/models/outputsyslog.py,sha256=Sora557qH46NyHf-SOEWVnhGxJSpCeQzPAV-LrLD3qw,19950
251
251
  cribl_control_plane/models/outputtcpjson.py,sha256=7RY26QNjgawu2exy-GHftLpN97bTqfZOk9alDVBzQos,17490
252
252
  cribl_control_plane/models/outputtestrequest.py,sha256=UTUiu9WvmbQxqBQtwoBSMPjAynOvKPSrNcsjoGTjPp8,428
253
253
  cribl_control_plane/models/outputtestresponse.py,sha256=cKeXPvSpCzU6cWpXvHoujp-pmS-qVBoSkz3pb7MdV7M,775
@@ -320,6 +320,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
320
320
  cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
321
321
  cribl_control_plane/versions.py,sha256=Wdaxc2wZeEeD12wAh7SQ0RGG9KgwKaWQ7bc8qOQ8oAo,920
322
322
  cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
323
- cribl_control_plane-0.0.43.dist-info/METADATA,sha256=hDv0cZ8PxfPHPcjCChgF2lfHPJnt7MQhSSdYRVemlck,38832
324
- cribl_control_plane-0.0.43.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
325
- cribl_control_plane-0.0.43.dist-info/RECORD,,
323
+ cribl_control_plane-0.0.44a1.dist-info/METADATA,sha256=i-V37bRDrfNZTK2Vs-R3ha4nm_mpweLb0qnQ9n6g178,38834
324
+ cribl_control_plane-0.0.44a1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
325
+ cribl_control_plane-0.0.44a1.dist-info/RECORD,,