cribl-control-plane 0.0.21a2__py3-none-any.whl → 0.0.23__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 (27) hide show
  1. cribl_control_plane/_version.py +3 -3
  2. cribl_control_plane/destinations.py +10 -10
  3. cribl_control_plane/groups_sdk.py +572 -60
  4. cribl_control_plane/models/__init__.py +153 -5394
  5. cribl_control_plane/models/createinputop.py +2 -18216
  6. cribl_control_plane/models/createoutputop.py +2 -18415
  7. cribl_control_plane/models/deletegroupsbyidop.py +37 -0
  8. cribl_control_plane/models/input.py +6 -6
  9. cribl_control_plane/models/inputedgeprometheus.py +7 -10
  10. cribl_control_plane/models/{inputgrafana_union.py → inputgrafana.py} +4 -4
  11. cribl_control_plane/models/{inputsyslog_union.py → inputsyslog.py} +4 -4
  12. cribl_control_plane/models/inputwef.py +4 -4
  13. cribl_control_plane/models/outputgooglepubsub.py +3 -3
  14. cribl_control_plane/models/outputsplunklb.py +8 -8
  15. cribl_control_plane/models/routes.py +0 -24
  16. cribl_control_plane/models/updategroupsbyidop.py +48 -0
  17. cribl_control_plane/models/updateinputbyidop.py +2 -2
  18. cribl_control_plane/models/updateoutputbyidop.py +2 -2
  19. cribl_control_plane/models/updateroutesbyidop.py +3 -4
  20. cribl_control_plane/packs.py +0 -204
  21. cribl_control_plane/routes_sdk.py +8 -12
  22. cribl_control_plane/sources.py +10 -10
  23. {cribl_control_plane-0.0.21a2.dist-info → cribl_control_plane-0.0.23.dist-info}/METADATA +209 -44
  24. {cribl_control_plane-0.0.21a2.dist-info → cribl_control_plane-0.0.23.dist-info}/RECORD +25 -25
  25. cribl_control_plane/models/routesroute_input.py +0 -67
  26. cribl_control_plane/models/updatepacksop.py +0 -98
  27. {cribl_control_plane-0.0.21a2.dist-info → cribl_control_plane-0.0.23.dist-info}/WHEEL +0 -0
@@ -350,9 +350,7 @@ class RoutesSDK(BaseSDK):
350
350
  self,
351
351
  *,
352
352
  id_param: str,
353
- routes: Union[
354
- List[models.RoutesRouteInput], List[models.RoutesRouteInputTypedDict]
355
- ],
353
+ routes: Union[List[models.RoutesRoute], List[models.RoutesRouteTypedDict]],
356
354
  id: Optional[str] = None,
357
355
  groups: Optional[
358
356
  Union[
@@ -393,9 +391,9 @@ class RoutesSDK(BaseSDK):
393
391
 
394
392
  request = models.UpdateRoutesByIDRequest(
395
393
  id_param=id_param,
396
- routes=models.RoutesInput(
394
+ routes=models.Routes(
397
395
  id=id,
398
- routes=utils.get_pydantic_model(routes, List[models.RoutesRouteInput]),
396
+ routes=utils.get_pydantic_model(routes, List[models.RoutesRoute]),
399
397
  groups=utils.get_pydantic_model(
400
398
  groups, Optional[Dict[str, models.RoutesGroups]]
401
399
  ),
@@ -419,7 +417,7 @@ class RoutesSDK(BaseSDK):
419
417
  http_headers=http_headers,
420
418
  security=self.sdk_configuration.security,
421
419
  get_serialized_body=lambda: utils.serialize_request_body(
422
- request.routes, False, False, "json", models.RoutesInput
420
+ request.routes, False, False, "json", models.Routes
423
421
  ),
424
422
  timeout_ms=timeout_ms,
425
423
  )
@@ -466,9 +464,7 @@ class RoutesSDK(BaseSDK):
466
464
  self,
467
465
  *,
468
466
  id_param: str,
469
- routes: Union[
470
- List[models.RoutesRouteInput], List[models.RoutesRouteInputTypedDict]
471
- ],
467
+ routes: Union[List[models.RoutesRoute], List[models.RoutesRouteTypedDict]],
472
468
  id: Optional[str] = None,
473
469
  groups: Optional[
474
470
  Union[
@@ -509,9 +505,9 @@ class RoutesSDK(BaseSDK):
509
505
 
510
506
  request = models.UpdateRoutesByIDRequest(
511
507
  id_param=id_param,
512
- routes=models.RoutesInput(
508
+ routes=models.Routes(
513
509
  id=id,
514
- routes=utils.get_pydantic_model(routes, List[models.RoutesRouteInput]),
510
+ routes=utils.get_pydantic_model(routes, List[models.RoutesRoute]),
515
511
  groups=utils.get_pydantic_model(
516
512
  groups, Optional[Dict[str, models.RoutesGroups]]
517
513
  ),
@@ -535,7 +531,7 @@ class RoutesSDK(BaseSDK):
535
531
  http_headers=http_headers,
536
532
  security=self.sdk_configuration.security,
537
533
  get_serialized_body=lambda: utils.serialize_request_body(
538
- request.routes, False, False, "json", models.RoutesInput
534
+ request.routes, False, False, "json", models.Routes
539
535
  ),
540
536
  timeout_ms=timeout_ms,
541
537
  )
@@ -173,7 +173,7 @@ class Sources(BaseSDK):
173
173
  def create_source(
174
174
  self,
175
175
  *,
176
- request: Union[models.CreateInputRequest, models.CreateInputRequestTypedDict],
176
+ request: Union[models.Input, models.InputTypedDict],
177
177
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
178
178
  server_url: Optional[str] = None,
179
179
  timeout_ms: Optional[int] = None,
@@ -200,8 +200,8 @@ class Sources(BaseSDK):
200
200
  base_url = self._get_url(base_url, url_variables)
201
201
 
202
202
  if not isinstance(request, BaseModel):
203
- request = utils.unmarshal(request, models.CreateInputRequest)
204
- request = cast(models.CreateInputRequest, request)
203
+ request = utils.unmarshal(request, models.Input)
204
+ request = cast(models.Input, request)
205
205
 
206
206
  req = self._build_request(
207
207
  method="POST",
@@ -217,7 +217,7 @@ class Sources(BaseSDK):
217
217
  http_headers=http_headers,
218
218
  security=self.sdk_configuration.security,
219
219
  get_serialized_body=lambda: utils.serialize_request_body(
220
- request, False, False, "json", models.CreateInputRequest
220
+ request, False, False, "json", models.Input
221
221
  ),
222
222
  timeout_ms=timeout_ms,
223
223
  )
@@ -263,7 +263,7 @@ class Sources(BaseSDK):
263
263
  async def create_source_async(
264
264
  self,
265
265
  *,
266
- request: Union[models.CreateInputRequest, models.CreateInputRequestTypedDict],
266
+ request: Union[models.Input, models.InputTypedDict],
267
267
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
268
268
  server_url: Optional[str] = None,
269
269
  timeout_ms: Optional[int] = None,
@@ -290,8 +290,8 @@ class Sources(BaseSDK):
290
290
  base_url = self._get_url(base_url, url_variables)
291
291
 
292
292
  if not isinstance(request, BaseModel):
293
- request = utils.unmarshal(request, models.CreateInputRequest)
294
- request = cast(models.CreateInputRequest, request)
293
+ request = utils.unmarshal(request, models.Input)
294
+ request = cast(models.Input, request)
295
295
 
296
296
  req = self._build_request_async(
297
297
  method="POST",
@@ -307,7 +307,7 @@ class Sources(BaseSDK):
307
307
  http_headers=http_headers,
308
308
  security=self.sdk_configuration.security,
309
309
  get_serialized_body=lambda: utils.serialize_request_body(
310
- request, False, False, "json", models.CreateInputRequest
310
+ request, False, False, "json", models.Input
311
311
  ),
312
312
  timeout_ms=timeout_ms,
313
313
  )
@@ -539,7 +539,7 @@ class Sources(BaseSDK):
539
539
  Update Source
540
540
 
541
541
  :param id: Unique ID to PATCH
542
- :param input: Source object to be updated
542
+ :param input: Input object
543
543
  :param retries: Override the default retry configuration for this method
544
544
  :param server_url: Override the default server URL for this method
545
545
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -632,7 +632,7 @@ class Sources(BaseSDK):
632
632
  Update Source
633
633
 
634
634
  :param id: Unique ID to PATCH
635
- :param input: Source object to be updated
635
+ :param input: Input object
636
636
  :param retries: Override the default retry configuration for this method
637
637
  :param server_url: Override the default server URL for this method
638
638
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: cribl-control-plane
3
- Version: 0.0.21a2
3
+ Version: 0.0.23
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -31,7 +31,6 @@ Cribl API Reference: This API Reference lists available REST endpoints, along wi
31
31
  * [SDK Example Usage](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#sdk-example-usage)
32
32
  * [Authentication](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#authentication)
33
33
  * [Available Resources and Operations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#available-resources-and-operations)
34
- * [File uploads](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#file-uploads)
35
34
  * [Retries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#retries)
36
35
  * [Error Handling](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#error-handling)
37
36
  * [Custom HTTP Client](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/#custom-http-client)
@@ -126,7 +125,40 @@ with CriblControlPlane(
126
125
  ),
127
126
  ) as ccp_client:
128
127
 
129
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
128
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
129
+ "<value 1>",
130
+ "<value 2>",
131
+ ], bucket_name="<value>", cache_connection={
132
+ "accelerated_fields": [
133
+ "<value 1>",
134
+ "<value 2>",
135
+ ],
136
+ "backfill_status": models.CacheConnectionBackfillStatus.PENDING,
137
+ "cache_ref": "<value>",
138
+ "created_at": 7795.06,
139
+ "lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
140
+ "migration_query_id": "<id>",
141
+ "retention_in_days": 1466.58,
142
+ }, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, retention_period_in_days=456.37, search_config={
143
+ "datatypes": [
144
+ "<value 1>",
145
+ ],
146
+ "metadata": {
147
+ "earliest": "<value>",
148
+ "enable_acceleration": True,
149
+ "field_list": [
150
+ "<value 1>",
151
+ "<value 2>",
152
+ ],
153
+ "latest_run_info": {
154
+ "earliest_scanned_time": 4334.7,
155
+ "finished_at": 6811.22,
156
+ "latest_scanned_time": 5303.3,
157
+ "object_count": 9489.04,
158
+ },
159
+ "scan_mode": models.ScanMode.DETAILED,
160
+ },
161
+ }, storage_location_id="<id>", view_name="<value>")
130
162
 
131
163
  # Handle response
132
164
  print(res)
@@ -150,7 +182,40 @@ async def main():
150
182
  ),
151
183
  ) as ccp_client:
152
184
 
153
- res = await ccp_client.lake.create_cribl_lake_dataset_by_lake_id_async(lake_id="<id>", id="<id>")
185
+ res = await ccp_client.lake.create_cribl_lake_dataset_by_lake_id_async(lake_id="<id>", id="<id>", accelerated_fields=[
186
+ "<value 1>",
187
+ "<value 2>",
188
+ ], bucket_name="<value>", cache_connection={
189
+ "accelerated_fields": [
190
+ "<value 1>",
191
+ "<value 2>",
192
+ ],
193
+ "backfill_status": models.CacheConnectionBackfillStatus.PENDING,
194
+ "cache_ref": "<value>",
195
+ "created_at": 7795.06,
196
+ "lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
197
+ "migration_query_id": "<id>",
198
+ "retention_in_days": 1466.58,
199
+ }, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, retention_period_in_days=456.37, search_config={
200
+ "datatypes": [
201
+ "<value 1>",
202
+ ],
203
+ "metadata": {
204
+ "earliest": "<value>",
205
+ "enable_acceleration": True,
206
+ "field_list": [
207
+ "<value 1>",
208
+ "<value 2>",
209
+ ],
210
+ "latest_run_info": {
211
+ "earliest_scanned_time": 4334.7,
212
+ "finished_at": 6811.22,
213
+ "latest_scanned_time": 5303.3,
214
+ "object_count": 9489.04,
215
+ },
216
+ "scan_mode": models.ScanMode.DETAILED,
217
+ },
218
+ }, storage_location_id="<id>", view_name="<value>")
154
219
 
155
220
  # Handle response
156
221
  print(res)
@@ -184,7 +249,40 @@ with CriblControlPlane(
184
249
  ),
185
250
  ) as ccp_client:
186
251
 
187
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
252
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
253
+ "<value 1>",
254
+ "<value 2>",
255
+ ], bucket_name="<value>", cache_connection={
256
+ "accelerated_fields": [
257
+ "<value 1>",
258
+ "<value 2>",
259
+ ],
260
+ "backfill_status": models.CacheConnectionBackfillStatus.PENDING,
261
+ "cache_ref": "<value>",
262
+ "created_at": 7795.06,
263
+ "lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
264
+ "migration_query_id": "<id>",
265
+ "retention_in_days": 1466.58,
266
+ }, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, retention_period_in_days=456.37, search_config={
267
+ "datatypes": [
268
+ "<value 1>",
269
+ ],
270
+ "metadata": {
271
+ "earliest": "<value>",
272
+ "enable_acceleration": True,
273
+ "field_list": [
274
+ "<value 1>",
275
+ "<value 2>",
276
+ ],
277
+ "latest_run_info": {
278
+ "earliest_scanned_time": 4334.7,
279
+ "finished_at": 6811.22,
280
+ "latest_scanned_time": 5303.3,
281
+ "object_count": 9489.04,
282
+ },
283
+ "scan_mode": models.ScanMode.DETAILED,
284
+ },
285
+ }, storage_location_id="<id>", view_name="<value>")
188
286
 
189
287
  # Handle response
190
288
  print(res)
@@ -224,8 +322,10 @@ with CriblControlPlane(
224
322
  * [get_groups_config_version_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_config_version_by_id) - Get effective bundle version for given Group
225
323
  * [create_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create_products_groups_by_product) - Create a Fleet or Worker Group
226
324
  * [get_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_products_groups_by_product) - Get a list of ConfigGroup objects
227
- * [update_groups_deploy_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update_groups_deploy_by_id) - Deploy commits for a Fleet or Worker Group
325
+ * [delete_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#delete_groups_by_id) - Delete a Fleet or Worker Group
228
326
  * [get_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_by_id) - Get a specific ConfigGroup object
327
+ * [update_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update_groups_by_id) - Update a Fleet or Worker Group
328
+ * [update_groups_deploy_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update_groups_deploy_by_id) - Deploy commits for a Fleet or Worker Group
229
329
  * [get_groups_acl_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_acl_by_id) - ACL of members with permissions for resources in this Group
230
330
 
231
331
  ### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
@@ -244,7 +344,6 @@ with CriblControlPlane(
244
344
 
245
345
  * [create_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#create_packs) - Install Pack
246
346
  * [get_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get_packs) - Get info on packs
247
- * [update_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update_packs) - Upload Pack
248
347
  * [delete_packs_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#delete_packs_by_id) - Uninstall Pack from the system
249
348
  * [update_packs_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update_packs_by_id) - Upgrade Pack
250
349
 
@@ -302,39 +401,6 @@ with CriblControlPlane(
302
401
  </details>
303
402
  <!-- End Available Resources and Operations [operations] -->
304
403
 
305
- <!-- Start File uploads [file-upload] -->
306
- ## File uploads
307
-
308
- Certain SDK methods accept file objects as part of a request body or multi-part request. It is possible and typically recommended to upload files as a stream rather than reading the entire contents into memory. This avoids excessive memory consumption and potentially crashing with out-of-memory errors when working with very large files. The following example demonstrates how to attach a file stream to a request.
309
-
310
- > [!TIP]
311
- >
312
- > For endpoints that handle file uploads bytes arrays can also be used. However, using streams is recommended for large files.
313
- >
314
-
315
- ```python
316
- from cribl_control_plane import CriblControlPlane, models
317
- import os
318
-
319
-
320
- with CriblControlPlane(
321
- server_url="https://api.example.com",
322
- security=models.Security(
323
- bearer_auth=os.getenv("CRIBLCONTROLPLANE_BEARER_AUTH", ""),
324
- ),
325
- ) as ccp_client:
326
-
327
- res = ccp_client.packs.update_packs(filename="example.file", size=779474, file={
328
- "file_name": "example.file",
329
- "content": open("example.file", "rb"),
330
- })
331
-
332
- # Handle response
333
- print(res)
334
-
335
- ```
336
- <!-- End File uploads [file-upload] -->
337
-
338
404
  <!-- Start Retries [retries] -->
339
405
  ## Retries
340
406
 
@@ -354,7 +420,40 @@ with CriblControlPlane(
354
420
  ),
355
421
  ) as ccp_client:
356
422
 
357
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>",
423
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
424
+ "<value 1>",
425
+ "<value 2>",
426
+ ], bucket_name="<value>", cache_connection={
427
+ "accelerated_fields": [
428
+ "<value 1>",
429
+ "<value 2>",
430
+ ],
431
+ "backfill_status": models.CacheConnectionBackfillStatus.PENDING,
432
+ "cache_ref": "<value>",
433
+ "created_at": 7795.06,
434
+ "lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
435
+ "migration_query_id": "<id>",
436
+ "retention_in_days": 1466.58,
437
+ }, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, retention_period_in_days=456.37, search_config={
438
+ "datatypes": [
439
+ "<value 1>",
440
+ ],
441
+ "metadata": {
442
+ "earliest": "<value>",
443
+ "enable_acceleration": True,
444
+ "field_list": [
445
+ "<value 1>",
446
+ "<value 2>",
447
+ ],
448
+ "latest_run_info": {
449
+ "earliest_scanned_time": 4334.7,
450
+ "finished_at": 6811.22,
451
+ "latest_scanned_time": 5303.3,
452
+ "object_count": 9489.04,
453
+ },
454
+ "scan_mode": models.ScanMode.DETAILED,
455
+ },
456
+ }, storage_location_id="<id>", view_name="<value>",
358
457
  RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
359
458
 
360
459
  # Handle response
@@ -377,7 +476,40 @@ with CriblControlPlane(
377
476
  ),
378
477
  ) as ccp_client:
379
478
 
380
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
479
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
480
+ "<value 1>",
481
+ "<value 2>",
482
+ ], bucket_name="<value>", cache_connection={
483
+ "accelerated_fields": [
484
+ "<value 1>",
485
+ "<value 2>",
486
+ ],
487
+ "backfill_status": models.CacheConnectionBackfillStatus.PENDING,
488
+ "cache_ref": "<value>",
489
+ "created_at": 7795.06,
490
+ "lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
491
+ "migration_query_id": "<id>",
492
+ "retention_in_days": 1466.58,
493
+ }, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, retention_period_in_days=456.37, search_config={
494
+ "datatypes": [
495
+ "<value 1>",
496
+ ],
497
+ "metadata": {
498
+ "earliest": "<value>",
499
+ "enable_acceleration": True,
500
+ "field_list": [
501
+ "<value 1>",
502
+ "<value 2>",
503
+ ],
504
+ "latest_run_info": {
505
+ "earliest_scanned_time": 4334.7,
506
+ "finished_at": 6811.22,
507
+ "latest_scanned_time": 5303.3,
508
+ "object_count": 9489.04,
509
+ },
510
+ "scan_mode": models.ScanMode.DETAILED,
511
+ },
512
+ }, storage_location_id="<id>", view_name="<value>")
381
513
 
382
514
  # Handle response
383
515
  print(res)
@@ -414,7 +546,40 @@ with CriblControlPlane(
414
546
  res = None
415
547
  try:
416
548
 
417
- res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>")
549
+ res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
550
+ "<value 1>",
551
+ "<value 2>",
552
+ ], bucket_name="<value>", cache_connection={
553
+ "accelerated_fields": [
554
+ "<value 1>",
555
+ "<value 2>",
556
+ ],
557
+ "backfill_status": models.CacheConnectionBackfillStatus.PENDING,
558
+ "cache_ref": "<value>",
559
+ "created_at": 7795.06,
560
+ "lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
561
+ "migration_query_id": "<id>",
562
+ "retention_in_days": 1466.58,
563
+ }, deletion_started_at=8310.58, description="pleased toothbrush long brush smooth swiftly rightfully phooey chapel", format_=models.CriblLakeDatasetFormat.DDSS, http_da_used=True, retention_period_in_days=456.37, search_config={
564
+ "datatypes": [
565
+ "<value 1>",
566
+ ],
567
+ "metadata": {
568
+ "earliest": "<value>",
569
+ "enable_acceleration": True,
570
+ "field_list": [
571
+ "<value 1>",
572
+ "<value 2>",
573
+ ],
574
+ "latest_run_info": {
575
+ "earliest_scanned_time": 4334.7,
576
+ "finished_at": 6811.22,
577
+ "latest_scanned_time": 5303.3,
578
+ "object_count": 9489.04,
579
+ },
580
+ "scan_mode": models.ScanMode.DETAILED,
581
+ },
582
+ }, storage_location_id="<id>", view_name="<value>")
418
583
 
419
584
  # Handle response
420
585
  print(res)
@@ -449,7 +614,7 @@ with CriblControlPlane(
449
614
 
450
615
 
451
616
  **Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
452
- * [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 61 methods.*
617
+ * [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 62 methods.*
453
618
  * [`ResponseValidationError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
454
619
 
455
620
  </details>
@@ -4,10 +4,10 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=gVQkktlv3q4-AHOdbQl5r8i-G
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=JhVQal2YcNAqga4bHbJcNV5I-_-wWUMmDykvzwR6Ev8,546
7
+ cribl_control_plane/_version.py,sha256=cgVLQJDNQmrSJ7JHZ5Lxo7mPea-mdceK4-EeszQwAnw,542
8
8
  cribl_control_plane/auth_sdk.py,sha256=Jxw8hPHbBFay5eXcaRBtgdCC06mh5XHkRbZcIM0vvB8,7431
9
9
  cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
10
- cribl_control_plane/destinations.py,sha256=9L_VzqiAh8xAN4JNBsU7FT7ZFRiBuhtf-5mJBCbZj-g,65733
10
+ cribl_control_plane/destinations.py,sha256=T-jyMaiocU9pCzBymc4K7lxlx3LH2XKKNxR17fi1ixg,65565
11
11
  cribl_control_plane/distributed.py,sha256=l_XY710__p9Ghju9CTYT9fYBGvfoitqbStY3gC9cayE,7507
12
12
  cribl_control_plane/errors/__init__.py,sha256=Xyh3WNPYYsJGQfGBLeaaK6eqwsJOtx-__zmvwwr4Mns,1833
13
13
  cribl_control_plane/errors/apierror.py,sha256=Z3b3zk672zHljcdijGLJeJ2LiP1f3VpVDEqUuF7LDAA,1253
@@ -16,11 +16,11 @@ cribl_control_plane/errors/error.py,sha256=fZ72R_qeZ0-xd514dVqKKiqh7zzLmnkpPJfck
16
16
  cribl_control_plane/errors/healthstatus_error.py,sha256=euamtBp065afnXzeaBMjGlQGAN3ONZfDK-RR--FOIzo,962
17
17
  cribl_control_plane/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
18
18
  cribl_control_plane/errors/responsevalidationerror.py,sha256=TvZ9dOsy-oFBYA_wZCOOEXeGKMBQtzCVX-1-i7epQTE,720
19
- cribl_control_plane/groups_sdk.py,sha256=9tFiyKLd65XO-eTsLs74bUqE3g_0CJYeJ--vK-Hc0Vs,51967
19
+ cribl_control_plane/groups_sdk.py,sha256=VHmHxqR66luhwZlEaz5EfOdmpc8elKjK8j3UYcOkFAg,72331
20
20
  cribl_control_plane/health.py,sha256=nK_Q4lDXi8zkfAqcIv9X4zBGi8BzomaBQWBD7TsSwLk,6743
21
21
  cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
22
22
  cribl_control_plane/lake.py,sha256=dHWnoO4KKOO8fncrdOqnc2sN4nGAWc6nX4UdNP4kx40,46484
23
- cribl_control_plane/models/__init__.py,sha256=OCkOOnwz2j0N06eU1Euked1cuKNw0zVhn_Nqze67go8,578173
23
+ cribl_control_plane/models/__init__.py,sha256=_BNkonhbdD1yPYE4Yh8qza0kSiYxgDGC5dfXraN7Ck8,353083
24
24
  cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
25
25
  cribl_control_plane/models/appmode.py,sha256=5xRJz9oP5ah4b6dcay4Q1IbQ9irm6k6x2BrTNysIMY4,300
26
26
  cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
@@ -33,8 +33,8 @@ cribl_control_plane/models/configgroupcloud.py,sha256=l9e1E-JyZGu4JANlU8SIzaXcsZ
33
33
  cribl_control_plane/models/configgrouplookups.py,sha256=1z1DlvlVehqfD6hZMXG0XedZTfoCIpYd0cHav45tiRw,830
34
34
  cribl_control_plane/models/createcribllakedatasetbylakeidop.py,sha256=IMR6uAsZDiK3bVbb9Nnz96XgzPdRVulI9v-MAlg7ur8,1591
35
35
  cribl_control_plane/models/createinputhectokenbyidop.py,sha256=KfgOUUTbWqoDIPmwmFmKi-HzqRQFt_KpmKqkqXBzjAA,1438
36
- cribl_control_plane/models/createinputop.py,sha256=9G6EOCekm30Z_e9UV2e5EdtRdT2ig8h_rA1iRuU2OJo,867541
37
- cribl_control_plane/models/createoutputop.py,sha256=BVIypGl2lzz60gseySEiBJ7wPSYpmCtk2HjOjB4i6P8,911422
36
+ cribl_control_plane/models/createinputop.py,sha256=l5Hz9ANzw4Gjh25FVf_okFzXxZWjA7GOx1tp8yWhKaI,701
37
+ cribl_control_plane/models/createoutputop.py,sha256=lWgs9T_pZR5bHcA0SZndbLuUPjVa_D_uFpqTuM7JiPc,718
38
38
  cribl_control_plane/models/createoutputtestbyidop.py,sha256=2ll9hE3r0VTgyOD7U2obiQFQF4NlbrlEBG3lPXsI5Y8,1533
39
39
  cribl_control_plane/models/createpacksop.py,sha256=ZWmUQ9KU6XbSh_oL7-txQw-7esp-yLexHQvgL2Aw9Mw,769
40
40
  cribl_control_plane/models/createpipelineop.py,sha256=JNTwQf1nQk5kCYbAvSlLex2X9sTzjwIHoeMeIUbD-NE,726
@@ -50,6 +50,7 @@ cribl_control_plane/models/cribllakedataset.py,sha256=4txRkDEkM-9fLG0my7Sl9IhEW0
50
50
  cribl_control_plane/models/datasetmetadata.py,sha256=NfKeMQnTgrt-xLQ5LfDr-LrtPArJ8fbzUHd2yF_p3fc,1090
51
51
  cribl_control_plane/models/datasetmetadataruninfo.py,sha256=4UrKPwg1oCs7uk3s24dsVzyNXE8TpDJE9vCioZyK7t0,937
52
52
  cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py,sha256=japgQTynnoD5EJvCQ0Wme8oAqXJGWvSmOJhDbLiswFw,1511
53
+ cribl_control_plane/models/deletegroupsbyidop.py,sha256=2ZzFA2gbd_djJA9afSUM2oGJ8ee4IdR0yxARMTGi0wQ,1089
53
54
  cribl_control_plane/models/deleteinputbyidop.py,sha256=8mFzAyTUv6EJ-5Ivm4TSklARGQVim5busV7u51zHyzo,1067
54
55
  cribl_control_plane/models/deleteoutputbyidop.py,sha256=1tNS3O5EK9V0DaWcvvUr-KOQhhpslk_aydhf36pyYfs,1086
55
56
  cribl_control_plane/models/deleteoutputpqbyidop.py,sha256=jLy8wreVzCsTTifXL3rHPXnku3G97ZCnbHPGamw-t9g,1042
@@ -95,7 +96,7 @@ cribl_control_plane/models/hbcriblinfo.py,sha256=hA2OxTBrrdu2q5XH5UzfEQUQJ6OKEct
95
96
  cribl_control_plane/models/hbleaderinfo.py,sha256=SU5iM_I4sqxoTOzAQsw-rpOMfXwKl1ymze9nUrw6z6U,503
96
97
  cribl_control_plane/models/healthstatus.py,sha256=8F56PM6Gu4eBCCOiz-hq_sL46mrDxy5F_sC0rBP2PXQ,771
97
98
  cribl_control_plane/models/heartbeatmetadata.py,sha256=IlLu0BnjnwBeXQtZSk4YUj9gKiI8n95ipYJ2Og2x1IQ,2255
98
- cribl_control_plane/models/input.py,sha256=qJc9jqd52wQ1s5p76_ZgafxK7mQeuSoememiF2go62U,7604
99
+ cribl_control_plane/models/input.py,sha256=rShZbzBNp1296YKQuu10DRzkf9bniw5zEd_5bCiHTRI,7552
99
100
  cribl_control_plane/models/inputappscope.py,sha256=BNZCGeZpOoIzfDNoe5S6Lo80HSzvwz6u9KmY2f_tPD8,19905
100
101
  cribl_control_plane/models/inputazureblob.py,sha256=Uc3rFKDNQfoywHkw9x-3-UxFypWLFBXBglp7ga5UiJA,14822
101
102
  cribl_control_plane/models/inputcollection.py,sha256=gt4yqEBcudPhV7pKmfeKtz9m9MtZ88sZ4ijZ4lTh870,9237
@@ -108,14 +109,14 @@ cribl_control_plane/models/inputcribltcp.py,sha256=2vhnRfLo1Rt7FSlDwm9KaJUjarkZ4
108
109
  cribl_control_plane/models/inputcrowdstrike.py,sha256=pG6JyMftN8-7sEooaUegiUPfg9EeBNuUi4ZpKG_yOO0,19910
109
110
  cribl_control_plane/models/inputdatadogagent.py,sha256=UNWSxeKt1pzEjZZ7yJnWGO8vFE9QH7UVLqkJER7kBs4,16922
110
111
  cribl_control_plane/models/inputdatagen.py,sha256=bgm6NJZcUje88mFIu6KGmcNGEGmOFGn8JzrUZ7TLepg,7386
111
- cribl_control_plane/models/inputedgeprometheus.py,sha256=UI2zWFaETX5XXiJF90FOjtxLS7THHkqe8HodRvRZ2Cc,21937
112
+ cribl_control_plane/models/inputedgeprometheus.py,sha256=Ru8dZvF6El-DbKXFlzM8F87vMVPBWaLJO4O1KRCD6nA,21760
112
113
  cribl_control_plane/models/inputelastic.py,sha256=WMz39HmI7VvC26lmCg2b5hpF9Esp9I47cTzWoX2iGWM,21199
113
114
  cribl_control_plane/models/inputeventhub.py,sha256=zh01IUQiYBJibkE4O-tsoO-6DwETlZ5ajmeg8JUjdbA,19461
114
115
  cribl_control_plane/models/inputexec.py,sha256=rYwqSCjDjJ7NeoW11QO0hnThKWpcS2BtRIFQ2euSGxk,9110
115
116
  cribl_control_plane/models/inputfile.py,sha256=rubUETJnaNb3jiwQm2vd4uGNUaGlvm_Sxb6f9cYLVS4,11955
116
117
  cribl_control_plane/models/inputfirehose.py,sha256=Eq2IfH8NzMnhq1Z1wQXmOcjZZihMB5F9TnSLADgUVsI,15297
117
118
  cribl_control_plane/models/inputgooglepubsub.py,sha256=J9ww_mjodvFHs7HLoWTLhykPohIYeaYllwpyiiIrJLg,11832
118
- cribl_control_plane/models/inputgrafana_union.py,sha256=WOq_21eaJs0fGl7E1G6pHU6yXohRj2Ji5vzqTLAq4yU,56008
119
+ cribl_control_plane/models/inputgrafana.py,sha256=RvmbNIsHc5xRjF1mSgUBdEwVJv2fiX_c6yoN78iCeP4,55988
119
120
  cribl_control_plane/models/inputhttp.py,sha256=g6oDpC5n-hGtBy7RKBY83nm6JSKfb9QmyXPJOUyKFcM,18070
120
121
  cribl_control_plane/models/inputhttpraw.py,sha256=HMPEbqn57eQr7XvJIudVo4cs88wJN-acQdLw9ImG14s,18445
121
122
  cribl_control_plane/models/inputjournalfiles.py,sha256=eXK8B2Ic4eNKq5-zPJx94xHtY_C0U5bcfLsrjiHlS-U,9427
@@ -144,12 +145,12 @@ cribl_control_plane/models/inputsplunk.py,sha256=DPZ9-SPdAGjNYVhAZP5EAyFVp4oY8d-
144
145
  cribl_control_plane/models/inputsplunkhec.py,sha256=MXvGKfxCb81uojyoYiAtrKM7RXDegrWtujoaPlEZCgQ,22470
145
146
  cribl_control_plane/models/inputsplunksearch.py,sha256=3WqE19WZp1flK2RwHgKpnyH3T3x6eAUHHMaRvAEVNnw,24449
146
147
  cribl_control_plane/models/inputsqs.py,sha256=frrFr7DwkJdVok3YuB8a0zC9UU_wUnnrRGNv2LvqKfE,14977
147
- cribl_control_plane/models/inputsyslog_union.py,sha256=GLopKRHsp9wgdtK2ReSHh2jI_sDYFOzf4j1RaBZbjn0,36084
148
+ cribl_control_plane/models/inputsyslog.py,sha256=PWE2cQF4iqYbohjOh3eChb3g_u5huG5Pszhr5_J9aTg,36064
148
149
  cribl_control_plane/models/inputsystemmetrics.py,sha256=B6cFqyH7PViaLXPk4Kc9pgUeY9ktH0EcumySCMU4LZA,19607
149
150
  cribl_control_plane/models/inputsystemstate.py,sha256=6yDroswhDe_ZiRorhIqhYTBTSCk04tKirza8ZnQVMDY,15347
150
151
  cribl_control_plane/models/inputtcp.py,sha256=SDM7u8ru5Gma20X1wjLwOzQ5wVVKotX-Mstzol3F0LM,16175
151
152
  cribl_control_plane/models/inputtcpjson.py,sha256=XhSV1A2f7x5eOEmTgjOmAg9DH9-JrxZLqi1PUjhq8xo,14677
152
- cribl_control_plane/models/inputwef.py,sha256=9GXPb73u4pTpaiZ1H_l1vNRR3L9EyK5bAG5oNroUZh4,22099
153
+ cribl_control_plane/models/inputwef.py,sha256=fQxyfAYKksJfK1DMFTjOM8k_QHaybMYybsLfpyF5M9Q,22067
153
154
  cribl_control_plane/models/inputwindowsmetrics.py,sha256=b1UGA-jzIAbrsh4CQhHooA45H0IlJWWqox8Rj_P04p0,16996
154
155
  cribl_control_plane/models/inputwineventlogs.py,sha256=RzYw6fuROAoT8Gkw8NdXKamUhjVuCk5E8E25LCZh5LI,9947
155
156
  cribl_control_plane/models/inputwiz.py,sha256=k9ZILZ4jebJxtKoi7Nh68RXht9hcaroVejPcLVx4VjU,14538
@@ -196,7 +197,7 @@ cribl_control_plane/models/outputfilesystem.py,sha256=xlrWLUjsezob6NrN-UES8k1N_W
196
197
  cribl_control_plane/models/outputgooglechronicle.py,sha256=V9WA5XukdQbqjSYEJXEcd30_aPYxlmIUE_uGjX6HsBY,22003
197
198
  cribl_control_plane/models/outputgooglecloudlogging.py,sha256=rWhDaRs6LcIuGbLx2HUsTW1lcje8RofgrVOTp9psZ-k,33615
198
199
  cribl_control_plane/models/outputgooglecloudstorage.py,sha256=AKppKI1XiNmnkSi-GzC0o_wMEx6vLZixqxB-2uq-tcw,22413
199
- cribl_control_plane/models/outputgooglepubsub.py,sha256=1bn8l-TufrMPqsHCT_o8W14hfjTeJ108UThEXL_ncZw,12285
200
+ cribl_control_plane/models/outputgooglepubsub.py,sha256=TPTU3z6xXKd2MFIkViytHJU12WvnQnY-7rI-d4GbFPI,12231
200
201
  cribl_control_plane/models/outputgrafanacloud.py,sha256=7sYwhaoHuLUQf2klfIJOxzehmnZCNvfbHodITEpyBLc,52071
201
202
  cribl_control_plane/models/outputgraphite.py,sha256=gqFTSyI3UCbzsbvG9wxUR96HAHWCTLOH4di8HvDwBz0,9800
202
203
  cribl_control_plane/models/outputhoneycomb.py,sha256=-XgAb04SQ5Bg9W2ZeUH0RdMXptYS0fRFtCzhb7bRpvA,17091
@@ -225,7 +226,7 @@ cribl_control_plane/models/outputsnmp.py,sha256=TQK8zgga3LAuyp_YGhqobc7FYLBBJRci
225
226
  cribl_control_plane/models/outputsns.py,sha256=XSsfUHMry8FB8xRNV0FOA66Wiv9laGftWHMt-VlAlNE,12419
226
227
  cribl_control_plane/models/outputsplunk.py,sha256=ypGWkSAsYJ5JInxv9wFBTeqvFpMZxxStjVZIcJKFbig,16054
227
228
  cribl_control_plane/models/outputsplunkhec.py,sha256=VqxXfD7erTcBhc9AOPZ5YfQM5rwHy2Yfu45dHGq-Iig,20740
228
- cribl_control_plane/models/outputsplunklb.py,sha256=I-nzhge_uCFEqrOjc-kvbRRnSs1857GhhtuHPx654js,24742
229
+ cribl_control_plane/models/outputsplunklb.py,sha256=ch5yAD1YCC2uRwg3WTzyiGRjSaq6aWeGJDOXWebxvVc,24722
229
230
  cribl_control_plane/models/outputsqs.py,sha256=A1Oswm0BdjW7UratIiURO_kR1MXSQmShdzsLMiCIZAA,14536
230
231
  cribl_control_plane/models/outputstatsd.py,sha256=8PyMXR8QYfuZl8U0nNtMGIzydTyhmxsSpxE3aTJLdro,9738
231
232
  cribl_control_plane/models/outputstatsdext.py,sha256=xyy5fuKkePfWPhibWUvOgfaxsNy4ha-ceU0sy5xYnbc,9831
@@ -247,31 +248,30 @@ cribl_control_plane/models/resourcepolicy.py,sha256=GxsEqA88OvvaCg016cBcauLeQ_5T
247
248
  cribl_control_plane/models/restartresponse.py,sha256=9s4pu4DHPwCHNiuMQKQw6bZ22WWNi_RUMuGhmVbNx0U,590
248
249
  cribl_control_plane/models/routecloneconf.py,sha256=ESvEj0vl58BGOwJB5kYu3vMAm88JizYHXU7qorGdw9M,293
249
250
  cribl_control_plane/models/routeconf.py,sha256=whFyvzWwmEqAo_0HoTFKJTZqQ2p8kdPKaZJIlh9nS58,1451
250
- cribl_control_plane/models/routes.py,sha256=MT7A6fAVe8p5z6-3OufZ7ThChapmxEpdhhXUPTcUXbs,2662
251
+ cribl_control_plane/models/routes.py,sha256=2MRVmc4zvUjQw6moQmRYss_XaoGcaauj2Jpdb3VX8pA,2022
251
252
  cribl_control_plane/models/routesroute.py,sha256=7hFUWpgVDBj0N117IFxZRGkFqJntbe4NyBakVyMKsTY,2339
252
- cribl_control_plane/models/routesroute_input.py,sha256=VmRpoMuLE5_8yavR_Q8lpHEmEbF6t26Ck1Jp9KBPGqY,2294
253
253
  cribl_control_plane/models/schemeclientoauth.py,sha256=MaZs9lOB3_y8uTZNTHIuAG_X66ZrEpRj0qZGAsBfXFM,712
254
254
  cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D4kwRsAQvY,1097
255
255
  cribl_control_plane/models/teamaccesscontrollist.py,sha256=HLMck-wyuJYiKD-adSS5ti4yLbHE2snZaOAI0GwgfOI,483
256
256
  cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=q_bOMXSkfqyNSNFN-qsseimaFl9xfRsbvjdMfAPAERI,1852
257
+ cribl_control_plane/models/updategroupsbyidop.py,sha256=iJZCyyzoSm_Ha_qTxSiaj4_7Nz-_L3U6_Uk5r9v1BqM,1414
257
258
  cribl_control_plane/models/updategroupsdeploybyidop.py,sha256=BUuemFukk3IdNR31zi3vFhT6YZr8_9JYV_nJoaLRfp8,1442
258
259
  cribl_control_plane/models/updatehectokenrequest.py,sha256=Pq0JnAZuDqdU_g6mmCvfxfMgeK9Pu3uVXfD9sFWfjKQ,787
259
- cribl_control_plane/models/updateinputbyidop.py,sha256=DtufjoD9UEPnKT2QOggfMDB1Pv2rwj9cEVuAJKbv39U,1300
260
+ cribl_control_plane/models/updateinputbyidop.py,sha256=RgxKN5ev3gImWuRZGHFXOE9nAS3O1WvbsDl8z6xnylg,1270
260
261
  cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=-Q8ZP1yDmQmB9aylQNTs4zR1q6NH-Gi2fhlyiDyqWKI,1677
261
- cribl_control_plane/models/updateoutputbyidop.py,sha256=odGoTLgvR_AEYizuVMKjcDeB4Uua3BX_U-7OHw7wHiU,1333
262
+ cribl_control_plane/models/updateoutputbyidop.py,sha256=JMdnqmkiXN2tQj0VWfj9q0CrsJXqI452KD-mdg6wPdQ,1295
262
263
  cribl_control_plane/models/updatepacksbyidop.py,sha256=nQeRQF-NTOCRMWz_gXfYlN0-I2OMM8Rovh_vAq73wzw,1965
263
- cribl_control_plane/models/updatepacksop.py,sha256=oH7fcrk4uBTiD0bXJFvavUTonH0G0c63GRPg7CCLlgI,2669
264
264
  cribl_control_plane/models/updatepipelinebyidop.py,sha256=CPCiszliWVcewMyZ26_R8OvtbJA8RwrEj_XQFoZTSJg,1420
265
- cribl_control_plane/models/updateroutesbyidop.py,sha256=k6vejvOHHqyfp1oR3aDXEXYIUu6NeRHBl7s9k-jcyiE,1440
265
+ cribl_control_plane/models/updateroutesbyidop.py,sha256=JwhFyXiq36Fcu6hyU0U1gF2N9dcLLX8iXjg-7njSPxQ,1386
266
266
  cribl_control_plane/models/updateworkersrestartop.py,sha256=OwX1snIrUTfghc0Pb2PpI5IO6NS-aL0BOMzWqLl8GAA,787
267
267
  cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
268
- cribl_control_plane/packs.py,sha256=Q6JnsLchHLbDb7lPDfS2AzGzrXqb-9QQ-uBOyHkeqUo,40014
268
+ cribl_control_plane/packs.py,sha256=N9j_Y4kb-ncuUFUTt174L4V-2edU-UnYJyEpQUFzdA0,31960
269
269
  cribl_control_plane/pipelines.py,sha256=L-HbP4gyl05hxb4-HNvkFrk1w6xFccfNr4-AJy3Vjxo,36038
270
270
  cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
271
- cribl_control_plane/routes_sdk.py,sha256=bxL7KZKdw4Ot78Q3V4Ea5SWrhnEM0fHdRUwQRDeF0Oc,31227
271
+ cribl_control_plane/routes_sdk.py,sha256=MI8jeyMT7DHXqktzpmgvsKmFSkm9luYcYySPXYsdzX0,31133
272
272
  cribl_control_plane/sdk.py,sha256=KETenTkN2K1Z_0HLjbxKW27vF6MOU7dVDbBan1VsiMI,8080
273
273
  cribl_control_plane/sdkconfiguration.py,sha256=bit6SSOyHqvibdtgNad5_ZcgMotk8NJfgHpKsBK8HFg,1259
274
- cribl_control_plane/sources.py,sha256=X6irteRhZ-D44d2Ece7iWFcfeManP9bQGUZZLFHr-vg,54280
274
+ cribl_control_plane/sources.py,sha256=xRjphI7sdE9v8bWPX8AThbRq-Bl3N6oTDEV9d8-EWek,54120
275
275
  cribl_control_plane/teams.py,sha256=nE97lQfpbbjJ12TbEir1B7swkhXOz5bj7aFVSImyry0,8517
276
276
  cribl_control_plane/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
277
277
  cribl_control_plane/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
@@ -294,6 +294,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
294
294
  cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
295
295
  cribl_control_plane/versioning.py,sha256=-bUutXEf__ewPHzgZshBImZZyQILigzXp1H8ZBCFBbQ,93847
296
296
  cribl_control_plane/workers_sdk.py,sha256=qEt_s-Zfg8zyzWEHnOtqYzTiNzFSwEalG-1lSYzVJWc,22666
297
- cribl_control_plane-0.0.21a2.dist-info/METADATA,sha256=BX5vxlOINc69mlWSWeqdyQtOuN6YOTwBsye88qtOMSI,32093
298
- cribl_control_plane-0.0.21a2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
299
- cribl_control_plane-0.0.21a2.dist-info/RECORD,,
297
+ cribl_control_plane-0.0.23.dist-info/METADATA,sha256=dilK3c7wuEhD7V1IiLiH2_czuUMUInjZ_UTnTFtTfVM,39276
298
+ cribl_control_plane-0.0.23.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
299
+ cribl_control_plane-0.0.23.dist-info/RECORD,,