cribl-control-plane 0.0.21a2__py3-none-any.whl → 0.0.22__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.
- cribl_control_plane/_version.py +3 -3
- cribl_control_plane/groups_sdk.py +572 -60
- cribl_control_plane/models/__init__.py +28 -12
- cribl_control_plane/models/deletegroupsbyidop.py +37 -0
- cribl_control_plane/models/updategroupsbyidop.py +48 -0
- cribl_control_plane/models/updatepacksop.py +6 -67
- cribl_control_plane/packs.py +4 -34
- {cribl_control_plane-0.0.21a2.dist-info → cribl_control_plane-0.0.22.dist-info}/METADATA +209 -43
- {cribl_control_plane-0.0.21a2.dist-info → cribl_control_plane-0.0.22.dist-info}/RECORD +10 -8
- {cribl_control_plane-0.0.21a2.dist-info → cribl_control_plane-0.0.22.dist-info}/WHEEL +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.22
|
|
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
|
-
* [
|
|
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)
|
|
@@ -302,39 +402,6 @@ with CriblControlPlane(
|
|
|
302
402
|
</details>
|
|
303
403
|
<!-- End Available Resources and Operations [operations] -->
|
|
304
404
|
|
|
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
405
|
<!-- Start Retries [retries] -->
|
|
339
406
|
## Retries
|
|
340
407
|
|
|
@@ -354,7 +421,40 @@ with CriblControlPlane(
|
|
|
354
421
|
),
|
|
355
422
|
) as ccp_client:
|
|
356
423
|
|
|
357
|
-
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>",
|
|
424
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
|
|
425
|
+
"<value 1>",
|
|
426
|
+
"<value 2>",
|
|
427
|
+
], bucket_name="<value>", cache_connection={
|
|
428
|
+
"accelerated_fields": [
|
|
429
|
+
"<value 1>",
|
|
430
|
+
"<value 2>",
|
|
431
|
+
],
|
|
432
|
+
"backfill_status": models.CacheConnectionBackfillStatus.PENDING,
|
|
433
|
+
"cache_ref": "<value>",
|
|
434
|
+
"created_at": 7795.06,
|
|
435
|
+
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
436
|
+
"migration_query_id": "<id>",
|
|
437
|
+
"retention_in_days": 1466.58,
|
|
438
|
+
}, 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={
|
|
439
|
+
"datatypes": [
|
|
440
|
+
"<value 1>",
|
|
441
|
+
],
|
|
442
|
+
"metadata": {
|
|
443
|
+
"earliest": "<value>",
|
|
444
|
+
"enable_acceleration": True,
|
|
445
|
+
"field_list": [
|
|
446
|
+
"<value 1>",
|
|
447
|
+
"<value 2>",
|
|
448
|
+
],
|
|
449
|
+
"latest_run_info": {
|
|
450
|
+
"earliest_scanned_time": 4334.7,
|
|
451
|
+
"finished_at": 6811.22,
|
|
452
|
+
"latest_scanned_time": 5303.3,
|
|
453
|
+
"object_count": 9489.04,
|
|
454
|
+
},
|
|
455
|
+
"scan_mode": models.ScanMode.DETAILED,
|
|
456
|
+
},
|
|
457
|
+
}, storage_location_id="<id>", view_name="<value>",
|
|
358
458
|
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
|
|
359
459
|
|
|
360
460
|
# Handle response
|
|
@@ -377,7 +477,40 @@ with CriblControlPlane(
|
|
|
377
477
|
),
|
|
378
478
|
) as ccp_client:
|
|
379
479
|
|
|
380
|
-
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>"
|
|
480
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
|
|
481
|
+
"<value 1>",
|
|
482
|
+
"<value 2>",
|
|
483
|
+
], bucket_name="<value>", cache_connection={
|
|
484
|
+
"accelerated_fields": [
|
|
485
|
+
"<value 1>",
|
|
486
|
+
"<value 2>",
|
|
487
|
+
],
|
|
488
|
+
"backfill_status": models.CacheConnectionBackfillStatus.PENDING,
|
|
489
|
+
"cache_ref": "<value>",
|
|
490
|
+
"created_at": 7795.06,
|
|
491
|
+
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
492
|
+
"migration_query_id": "<id>",
|
|
493
|
+
"retention_in_days": 1466.58,
|
|
494
|
+
}, 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={
|
|
495
|
+
"datatypes": [
|
|
496
|
+
"<value 1>",
|
|
497
|
+
],
|
|
498
|
+
"metadata": {
|
|
499
|
+
"earliest": "<value>",
|
|
500
|
+
"enable_acceleration": True,
|
|
501
|
+
"field_list": [
|
|
502
|
+
"<value 1>",
|
|
503
|
+
"<value 2>",
|
|
504
|
+
],
|
|
505
|
+
"latest_run_info": {
|
|
506
|
+
"earliest_scanned_time": 4334.7,
|
|
507
|
+
"finished_at": 6811.22,
|
|
508
|
+
"latest_scanned_time": 5303.3,
|
|
509
|
+
"object_count": 9489.04,
|
|
510
|
+
},
|
|
511
|
+
"scan_mode": models.ScanMode.DETAILED,
|
|
512
|
+
},
|
|
513
|
+
}, storage_location_id="<id>", view_name="<value>")
|
|
381
514
|
|
|
382
515
|
# Handle response
|
|
383
516
|
print(res)
|
|
@@ -414,7 +547,40 @@ with CriblControlPlane(
|
|
|
414
547
|
res = None
|
|
415
548
|
try:
|
|
416
549
|
|
|
417
|
-
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>"
|
|
550
|
+
res = ccp_client.lake.create_cribl_lake_dataset_by_lake_id(lake_id="<id>", id="<id>", accelerated_fields=[
|
|
551
|
+
"<value 1>",
|
|
552
|
+
"<value 2>",
|
|
553
|
+
], bucket_name="<value>", cache_connection={
|
|
554
|
+
"accelerated_fields": [
|
|
555
|
+
"<value 1>",
|
|
556
|
+
"<value 2>",
|
|
557
|
+
],
|
|
558
|
+
"backfill_status": models.CacheConnectionBackfillStatus.PENDING,
|
|
559
|
+
"cache_ref": "<value>",
|
|
560
|
+
"created_at": 7795.06,
|
|
561
|
+
"lakehouse_connection_type": models.LakehouseConnectionType.CACHE,
|
|
562
|
+
"migration_query_id": "<id>",
|
|
563
|
+
"retention_in_days": 1466.58,
|
|
564
|
+
}, 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={
|
|
565
|
+
"datatypes": [
|
|
566
|
+
"<value 1>",
|
|
567
|
+
],
|
|
568
|
+
"metadata": {
|
|
569
|
+
"earliest": "<value>",
|
|
570
|
+
"enable_acceleration": True,
|
|
571
|
+
"field_list": [
|
|
572
|
+
"<value 1>",
|
|
573
|
+
"<value 2>",
|
|
574
|
+
],
|
|
575
|
+
"latest_run_info": {
|
|
576
|
+
"earliest_scanned_time": 4334.7,
|
|
577
|
+
"finished_at": 6811.22,
|
|
578
|
+
"latest_scanned_time": 5303.3,
|
|
579
|
+
"object_count": 9489.04,
|
|
580
|
+
},
|
|
581
|
+
"scan_mode": models.ScanMode.DETAILED,
|
|
582
|
+
},
|
|
583
|
+
}, storage_location_id="<id>", view_name="<value>")
|
|
418
584
|
|
|
419
585
|
# Handle response
|
|
420
586
|
print(res)
|
|
@@ -449,7 +615,7 @@ with CriblControlPlane(
|
|
|
449
615
|
|
|
450
616
|
|
|
451
617
|
**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
|
|
618
|
+
* [`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 63 methods.*
|
|
453
619
|
* [`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
620
|
|
|
455
621
|
</details>
|
|
@@ -4,7 +4,7 @@ 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=
|
|
7
|
+
cribl_control_plane/_version.py,sha256=zhDl3FkZY3vMkJdwbg6CrbWUyeyEbCRmzX4FfsOo2qE,542
|
|
8
8
|
cribl_control_plane/auth_sdk.py,sha256=Jxw8hPHbBFay5eXcaRBtgdCC06mh5XHkRbZcIM0vvB8,7431
|
|
9
9
|
cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
|
|
10
10
|
cribl_control_plane/destinations.py,sha256=9L_VzqiAh8xAN4JNBsU7FT7ZFRiBuhtf-5mJBCbZj-g,65733
|
|
@@ -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=
|
|
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=
|
|
23
|
+
cribl_control_plane/models/__init__.py,sha256=vWKq7UvlGJ_acwtZoOMEBqGZT0L_ooe6udtiY_EPYhU,578873
|
|
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
|
|
@@ -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
|
|
@@ -254,18 +255,19 @@ cribl_control_plane/models/schemeclientoauth.py,sha256=MaZs9lOB3_y8uTZNTHIuAG_X6
|
|
|
254
255
|
cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D4kwRsAQvY,1097
|
|
255
256
|
cribl_control_plane/models/teamaccesscontrollist.py,sha256=HLMck-wyuJYiKD-adSS5ti4yLbHE2snZaOAI0GwgfOI,483
|
|
256
257
|
cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=q_bOMXSkfqyNSNFN-qsseimaFl9xfRsbvjdMfAPAERI,1852
|
|
258
|
+
cribl_control_plane/models/updategroupsbyidop.py,sha256=iJZCyyzoSm_Ha_qTxSiaj4_7Nz-_L3U6_Uk5r9v1BqM,1414
|
|
257
259
|
cribl_control_plane/models/updategroupsdeploybyidop.py,sha256=BUuemFukk3IdNR31zi3vFhT6YZr8_9JYV_nJoaLRfp8,1442
|
|
258
260
|
cribl_control_plane/models/updatehectokenrequest.py,sha256=Pq0JnAZuDqdU_g6mmCvfxfMgeK9Pu3uVXfD9sFWfjKQ,787
|
|
259
261
|
cribl_control_plane/models/updateinputbyidop.py,sha256=DtufjoD9UEPnKT2QOggfMDB1Pv2rwj9cEVuAJKbv39U,1300
|
|
260
262
|
cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=-Q8ZP1yDmQmB9aylQNTs4zR1q6NH-Gi2fhlyiDyqWKI,1677
|
|
261
263
|
cribl_control_plane/models/updateoutputbyidop.py,sha256=odGoTLgvR_AEYizuVMKjcDeB4Uua3BX_U-7OHw7wHiU,1333
|
|
262
264
|
cribl_control_plane/models/updatepacksbyidop.py,sha256=nQeRQF-NTOCRMWz_gXfYlN0-I2OMM8Rovh_vAq73wzw,1965
|
|
263
|
-
cribl_control_plane/models/updatepacksop.py,sha256=
|
|
265
|
+
cribl_control_plane/models/updatepacksop.py,sha256=jXP_MUAh4cf9u7vo_cJ_zS7Ssv0kd-ZfCCe4yG3b3Zo,1073
|
|
264
266
|
cribl_control_plane/models/updatepipelinebyidop.py,sha256=CPCiszliWVcewMyZ26_R8OvtbJA8RwrEj_XQFoZTSJg,1420
|
|
265
267
|
cribl_control_plane/models/updateroutesbyidop.py,sha256=k6vejvOHHqyfp1oR3aDXEXYIUu6NeRHBl7s9k-jcyiE,1440
|
|
266
268
|
cribl_control_plane/models/updateworkersrestartop.py,sha256=OwX1snIrUTfghc0Pb2PpI5IO6NS-aL0BOMzWqLl8GAA,787
|
|
267
269
|
cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
|
|
268
|
-
cribl_control_plane/packs.py,sha256=
|
|
270
|
+
cribl_control_plane/packs.py,sha256=pIW3stXJ7gdJHkYDJ7LF-_I23g3v5E02iNWOnD1tTs8,38830
|
|
269
271
|
cribl_control_plane/pipelines.py,sha256=L-HbP4gyl05hxb4-HNvkFrk1w6xFccfNr4-AJy3Vjxo,36038
|
|
270
272
|
cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
271
273
|
cribl_control_plane/routes_sdk.py,sha256=bxL7KZKdw4Ot78Q3V4Ea5SWrhnEM0fHdRUwQRDeF0Oc,31227
|
|
@@ -294,6 +296,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
294
296
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
295
297
|
cribl_control_plane/versioning.py,sha256=-bUutXEf__ewPHzgZshBImZZyQILigzXp1H8ZBCFBbQ,93847
|
|
296
298
|
cribl_control_plane/workers_sdk.py,sha256=qEt_s-Zfg8zyzWEHnOtqYzTiNzFSwEalG-1lSYzVJWc,22666
|
|
297
|
-
cribl_control_plane-0.0.
|
|
298
|
-
cribl_control_plane-0.0.
|
|
299
|
-
cribl_control_plane-0.0.
|
|
299
|
+
cribl_control_plane-0.0.22.dist-info/METADATA,sha256=NGCkvFnbuGEVOz_QKfiUJlwbwrCR95xOFPIxILNoBg4,39417
|
|
300
|
+
cribl_control_plane-0.0.22.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
301
|
+
cribl_control_plane-0.0.22.dist-info/RECORD,,
|
|
File without changes
|