cribl-control-plane 0.4.0a6__py3-none-any.whl → 0.4.0a12__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 (34) hide show
  1. cribl_control_plane/_version.py +4 -4
  2. cribl_control_plane/acl.py +2 -0
  3. cribl_control_plane/basesdk.py +6 -0
  4. cribl_control_plane/branches.py +4 -0
  5. cribl_control_plane/commits.py +14 -0
  6. cribl_control_plane/commits_files.py +4 -0
  7. cribl_control_plane/configs_versions.py +2 -0
  8. cribl_control_plane/destinations.py +10 -0
  9. cribl_control_plane/destinations_pq.py +4 -0
  10. cribl_control_plane/groups_sdk.py +12 -0
  11. cribl_control_plane/health.py +2 -0
  12. cribl_control_plane/hectokens.py +16 -0
  13. cribl_control_plane/lakedatasets.py +46 -0
  14. cribl_control_plane/models/addhectokenrequest.py +7 -1
  15. cribl_control_plane/models/getcribllakedatasetbylakeidop.py +59 -1
  16. cribl_control_plane/models/outputnetflow.py +7 -0
  17. cribl_control_plane/models/updatehectokenrequest.py +7 -1
  18. cribl_control_plane/nodes.py +4 -0
  19. cribl_control_plane/packs.py +12 -0
  20. cribl_control_plane/pipelines.py +10 -0
  21. cribl_control_plane/routes_sdk.py +8 -0
  22. cribl_control_plane/samples.py +4 -0
  23. cribl_control_plane/sources.py +10 -0
  24. cribl_control_plane/statuses.py +2 -0
  25. cribl_control_plane/summaries.py +2 -0
  26. cribl_control_plane/teams.py +2 -0
  27. cribl_control_plane/tokens.py +2 -0
  28. cribl_control_plane/utils/forms.py +21 -10
  29. cribl_control_plane/utils/queryparams.py +14 -2
  30. cribl_control_plane/versions_configs.py +2 -0
  31. {cribl_control_plane-0.4.0a6.dist-info → cribl_control_plane-0.4.0a12.dist-info}/METADATA +23 -23
  32. {cribl_control_plane-0.4.0a6.dist-info → cribl_control_plane-0.4.0a12.dist-info}/RECORD +34 -34
  33. {cribl_control_plane-0.4.0a6.dist-info → cribl_control_plane-0.4.0a12.dist-info}/WHEEL +0 -0
  34. {cribl_control_plane-0.4.0a6.dist-info → cribl_control_plane-0.4.0a12.dist-info}/licenses/LICENSE +0 -0
@@ -56,6 +56,7 @@ class Statuses(BaseSDK):
56
56
  accept_header_value="application/json",
57
57
  http_headers=http_headers,
58
58
  security=self.sdk_configuration.security,
59
+ allow_empty_value=None,
59
60
  timeout_ms=timeout_ms,
60
61
  )
61
62
 
@@ -143,6 +144,7 @@ class Statuses(BaseSDK):
143
144
  accept_header_value="application/json",
144
145
  http_headers=http_headers,
145
146
  security=self.sdk_configuration.security,
147
+ allow_empty_value=None,
146
148
  timeout_ms=timeout_ms,
147
149
  )
148
150
 
@@ -56,6 +56,7 @@ class Summaries(BaseSDK):
56
56
  accept_header_value="application/json",
57
57
  http_headers=http_headers,
58
58
  security=self.sdk_configuration.security,
59
+ allow_empty_value=None,
59
60
  timeout_ms=timeout_ms,
60
61
  )
61
62
 
@@ -143,6 +144,7 @@ class Summaries(BaseSDK):
143
144
  accept_header_value="application/json",
144
145
  http_headers=http_headers,
145
146
  security=self.sdk_configuration.security,
147
+ allow_empty_value=None,
146
148
  timeout_ms=timeout_ms,
147
149
  )
148
150
 
@@ -62,6 +62,7 @@ class Teams(BaseSDK):
62
62
  accept_header_value="application/json",
63
63
  http_headers=http_headers,
64
64
  security=self.sdk_configuration.security,
65
+ allow_empty_value=None,
65
66
  timeout_ms=timeout_ms,
66
67
  )
67
68
 
@@ -157,6 +158,7 @@ class Teams(BaseSDK):
157
158
  accept_header_value="application/json",
158
159
  http_headers=http_headers,
159
160
  security=self.sdk_configuration.security,
161
+ allow_empty_value=None,
160
162
  timeout_ms=timeout_ms,
161
163
  )
162
164
 
@@ -60,6 +60,7 @@ class Tokens(BaseSDK):
60
60
  get_serialized_body=lambda: utils.serialize_request_body(
61
61
  request, False, False, "json", models.LoginInfo
62
62
  ),
63
+ allow_empty_value=None,
63
64
  timeout_ms=timeout_ms,
64
65
  )
65
66
 
@@ -150,6 +151,7 @@ class Tokens(BaseSDK):
150
151
  get_serialized_body=lambda: utils.serialize_request_body(
151
152
  request, False, False, "json", models.LoginInfo
152
153
  ),
154
+ allow_empty_value=None,
153
155
  timeout_ms=timeout_ms,
154
156
  )
155
157
 
@@ -142,16 +142,21 @@ def serialize_multipart_form(
142
142
  if field_metadata.file:
143
143
  if isinstance(val, List):
144
144
  # Handle array of files
145
+ array_field_name = f_name + "[]"
145
146
  for file_obj in val:
146
147
  if not _is_set(file_obj):
147
148
  continue
148
-
149
- file_name, content, content_type = _extract_file_properties(file_obj)
149
+
150
+ file_name, content, content_type = _extract_file_properties(
151
+ file_obj
152
+ )
150
153
 
151
154
  if content_type is not None:
152
- files.append((f_name + "[]", (file_name, content, content_type)))
155
+ files.append(
156
+ (array_field_name, (file_name, content, content_type))
157
+ )
153
158
  else:
154
- files.append((f_name + "[]", (file_name, content)))
159
+ files.append((array_field_name, (file_name, content)))
155
160
  else:
156
161
  # Handle single file
157
162
  file_name, content, content_type = _extract_file_properties(val)
@@ -161,11 +166,16 @@ def serialize_multipart_form(
161
166
  else:
162
167
  files.append((f_name, (file_name, content)))
163
168
  elif field_metadata.json:
164
- files.append((f_name, (
165
- None,
166
- marshal_json(val, request_field_types[name]),
167
- "application/json",
168
- )))
169
+ files.append(
170
+ (
171
+ f_name,
172
+ (
173
+ None,
174
+ marshal_json(val, request_field_types[name]),
175
+ "application/json",
176
+ ),
177
+ )
178
+ )
169
179
  else:
170
180
  if isinstance(val, List):
171
181
  values = []
@@ -175,7 +185,8 @@ def serialize_multipart_form(
175
185
  continue
176
186
  values.append(_val_to_string(value))
177
187
 
178
- form[f_name + "[]"] = values
188
+ array_field_name = f_name + "[]"
189
+ form[array_field_name] = values
179
190
  else:
180
191
  form[f_name] = _val_to_string(val)
181
192
  return media_type, form, files
@@ -27,12 +27,13 @@ from .forms import _populate_form
27
27
  def get_query_params(
28
28
  query_params: Any,
29
29
  gbls: Optional[Any] = None,
30
+ allow_empty_value: Optional[List[str]] = None,
30
31
  ) -> Dict[str, List[str]]:
31
32
  params: Dict[str, List[str]] = {}
32
33
 
33
- globals_already_populated = _populate_query_params(query_params, gbls, params, [])
34
+ globals_already_populated = _populate_query_params(query_params, gbls, params, [], allow_empty_value)
34
35
  if _is_set(gbls):
35
- _populate_query_params(gbls, None, params, globals_already_populated)
36
+ _populate_query_params(gbls, None, params, globals_already_populated, allow_empty_value)
36
37
 
37
38
  return params
38
39
 
@@ -42,6 +43,7 @@ def _populate_query_params(
42
43
  gbls: Any,
43
44
  query_param_values: Dict[str, List[str]],
44
45
  skip_fields: List[str],
46
+ allow_empty_value: Optional[List[str]] = None,
45
47
  ) -> List[str]:
46
48
  globals_already_populated: List[str] = []
47
49
 
@@ -69,6 +71,16 @@ def _populate_query_params(
69
71
  globals_already_populated.append(name)
70
72
 
71
73
  f_name = field.alias if field.alias is not None else name
74
+
75
+ allow_empty_set = set(allow_empty_value or [])
76
+ should_include_empty = f_name in allow_empty_set and (
77
+ value is None or value == [] or value == ""
78
+ )
79
+
80
+ if should_include_empty:
81
+ query_param_values[f_name] = [""]
82
+ continue
83
+
72
84
  serialization = metadata.serialization
73
85
  if serialization is not None:
74
86
  serialized_parms = _get_serialized_params(
@@ -49,6 +49,7 @@ class VersionsConfigs(BaseSDK):
49
49
  accept_header_value="application/json",
50
50
  http_headers=http_headers,
51
51
  security=self.sdk_configuration.security,
52
+ allow_empty_value=None,
52
53
  timeout_ms=timeout_ms,
53
54
  )
54
55
 
@@ -129,6 +130,7 @@ class VersionsConfigs(BaseSDK):
129
130
  accept_header_value="application/json",
130
131
  http_headers=http_headers,
131
132
  security=self.sdk_configuration.security,
133
+ allow_empty_value=None,
132
134
  timeout_ms=timeout_ms,
133
135
  )
134
136
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cribl-control-plane
3
- Version: 0.4.0a6
3
+ Version: 0.4.0a12
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  License-File: LICENSE
6
6
  Author: Speakeasy
@@ -317,11 +317,11 @@ with CriblControlPlane(
317
317
  <details open>
318
318
  <summary>Available methods</summary>
319
319
 
320
- #### [auth.tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
320
+ ### [Auth.Tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
321
321
 
322
322
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md#get) - Log in and fetch an authentication token
323
323
 
324
- ### [destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
324
+ ### [Destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
325
325
 
326
326
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#list) - List all Destinations
327
327
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#create) - Create a Destination
@@ -329,17 +329,17 @@ with CriblControlPlane(
329
329
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#update) - Update a Destination
330
330
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#delete) - Delete a Destination
331
331
 
332
- #### [destinations.pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md)
332
+ #### [Destinations.Pq](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md)
333
333
 
334
334
  * [clear](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md#clear) - Clear the persistent queue for a Destination
335
335
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md#get) - Get information about the latest job to clear the persistent queue for a Destination
336
336
 
337
- #### [destinations.samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
337
+ #### [Destinations.Samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
338
338
 
339
339
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#get) - Get sample event data for a Destination
340
340
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#create) - Send sample event data to a Destination
341
341
 
342
- ### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
342
+ ### [Groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
343
343
 
344
344
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#list) - List all Worker Groups or Edge Fleets for the specified Cribl product
345
345
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create) - Create a Worker Group or Edge Fleet for the specified Cribl product
@@ -348,23 +348,23 @@ with CriblControlPlane(
348
348
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#delete) - Delete a Worker Group or Edge Fleet
349
349
  * [deploy](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#deploy) - Deploy commits to a Worker Group or Edge Fleet
350
350
 
351
- #### [groups.acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
351
+ #### [Groups.Acl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md)
352
352
 
353
353
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/acl/README.md#get) - Get the Access Control List for a Worker Group or Edge Fleet
354
354
 
355
- #### [groups.acl.teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
355
+ ##### [Groups.Acl.Teams](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md)
356
356
 
357
357
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/teams/README.md#get) - Get the Access Control List for teams with permissions on a Worker Group or Edge Fleet for the specified Cribl product
358
358
 
359
- #### [groups.configs.versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
359
+ #### [Groups.Configs.Versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md)
360
360
 
361
361
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md#get) - Get the configuration version for a Worker Group or Edge Fleet
362
362
 
363
- ### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
363
+ ### [Health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
364
364
 
365
365
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get) - Retrieve health status of the server
366
366
 
367
- ### [lake_datasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
367
+ ### [LakeDatasets](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md)
368
368
 
369
369
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#create) - Create a Lake Dataset
370
370
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#list) - List all Lake Datasets
@@ -372,16 +372,16 @@ with CriblControlPlane(
372
372
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#get) - Get a Lake Dataset
373
373
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lakedatasets/README.md#update) - Update a Lake Dataset
374
374
 
375
- ### [nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
375
+ ### [Nodes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md)
376
376
 
377
377
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#list) - Get detailed metadata for Worker and Edge Nodes
378
378
  * [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/nodes/README.md#count) - Get a count of Worker and Edge Nodes
379
379
 
380
- #### [nodes.summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
380
+ #### [Nodes.Summaries](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md)
381
381
 
382
382
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/summaries/README.md#get) - Get a summary of the Distributed deployment
383
383
 
384
- ### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
384
+ ### [Packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
385
385
 
386
386
  * [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Install a Pack
387
387
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#list) - List all Packs
@@ -390,7 +390,7 @@ with CriblControlPlane(
390
390
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get) - Get a Pack
391
391
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update) - Upgrade a Pack
392
392
 
393
- ### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
393
+ ### [Pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
394
394
 
395
395
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list) - List all Pipelines
396
396
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#create) - Create a Pipeline
@@ -398,14 +398,14 @@ with CriblControlPlane(
398
398
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#update) - Update a Pipeline
399
399
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#delete) - Delete a Pipeline
400
400
 
401
- ### [routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
401
+ ### [Routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
402
402
 
403
403
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - List all Routes
404
404
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get a Routing table
405
405
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update a Route
406
406
  * [append](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#append) - Add a Route to the end of the Routing table
407
407
 
408
- ### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
408
+ ### [Sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
409
409
 
410
410
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#list) - List all Sources
411
411
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#create) - Create a Source
@@ -413,17 +413,17 @@ with CriblControlPlane(
413
413
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#update) - Update a Source
414
414
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md#delete) - Delete a Source
415
415
 
416
- #### [sources.hec_tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
416
+ #### [Sources.HecTokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md)
417
417
 
418
418
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#create) - Add an HEC token and optional metadata to a Splunk HEC Source
419
419
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#update) - Update metadata for an HEC token for a Splunk HEC Source
420
420
 
421
- #### [versions.branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
421
+ ### [Versions.Branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
422
422
 
423
423
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md#list) - List all branches in the Git repository used for Cribl configuration
424
424
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md#get) - Get the name of the Git branch that the Cribl configuration is checked out to
425
425
 
426
- #### [versions.commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
426
+ ### [Versions.Commits](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md)
427
427
 
428
428
  * [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#create) - Create a new commit for pending changes to the Cribl configuration
429
429
  * [diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#diff) - Get the diff for a commit
@@ -433,16 +433,16 @@ with CriblControlPlane(
433
433
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#get) - Get the diff and log message for a commit
434
434
  * [undo](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#undo) - Discard uncommitted (staged) changes
435
435
 
436
- #### [versions.commits.files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md)
436
+ #### [Versions.Commits.Files](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md)
437
437
 
438
438
  * [count](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md#count) - Get a count of files that changed since a commit
439
439
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commitsfiles/README.md#list) - Get the names and statuses of files that changed since a commit
440
440
 
441
- #### [versions.configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
441
+ ### [Versions.Configs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md)
442
442
 
443
443
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versionsconfigs/README.md#get) - Get the configuration and status for the Git integration
444
444
 
445
- #### [versions.statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
445
+ ### [Versions.Statuses](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md)
446
446
 
447
447
  * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/statuses/README.md#get) - Get the status of the current working tree
448
448
 
@@ -4,16 +4,16 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=CeI19FzRb2V6kiNPgSFGn0CgI
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=LUl26NpElB8WHvyB_YAuQT8KuAbv9ljAttztwaHxoDM,544
8
- cribl_control_plane/acl.py,sha256=8lvYOKAli4PzsQhOVaCU6YCwblPMh9jQo04L0r4HJuQ,9025
7
+ cribl_control_plane/_version.py,sha256=qYCtd-OWc4172VWWEbZcwDJeWnCdUuo503RFdUX41Zg,546
8
+ cribl_control_plane/acl.py,sha256=GmY9ZytRESkgMTwmGVvFH2la_mm_9H6cNpsKKUGzNTE,9097
9
9
  cribl_control_plane/auth_sdk.py,sha256=3sjf1VoyWwfhSyuMDQLixgWISSf03BOZwmkiT8g5Ruw,626
10
- cribl_control_plane/basesdk.py,sha256=y4yIXSNVXLMd0sLS2htBFdTCI3gkPQbIWd-C671kg1I,12249
11
- cribl_control_plane/branches.py,sha256=Uz2F25RVW5hDr92Dm7yo7I9NdEN1zh9eDF20h4mD7Tg,14217
12
- cribl_control_plane/commits.py,sha256=eQCWma93q5TdxSdrRIQPn5LltiVruCNqjWjQvz-Bwng,56652
13
- cribl_control_plane/commits_files.py,sha256=YmLpBefvP28icHA3FqvwVIxmTcgecUnABf5Tx7wN8H8,15609
14
- cribl_control_plane/configs_versions.py,sha256=Ov9FqT4q9aKcCBUs1Qn65CdjnJK1pXXWPTYlHHHj-gk,8336
15
- cribl_control_plane/destinations.py,sha256=N5MApCQUc2KpTCFAQHZvXmrweuI0gSQ2mk8uTQhJjww,37519
16
- cribl_control_plane/destinations_pq.py,sha256=bp25ihNaTH8Je2ifM8EgR9Cc-w4naz-snS2jJlsyq7E,14871
10
+ cribl_control_plane/basesdk.py,sha256=devGGqOur8Skx_4l9wLvhUZ_N9udyWcxn6V30_sGrXM,12511
11
+ cribl_control_plane/branches.py,sha256=STlatyZVddQwkUruGn6zd66ozC0kUr6fEpE7jMZKyTw,14361
12
+ cribl_control_plane/commits.py,sha256=SqSX8oqizdTaC3IVC2NELITznNEyzdBXCYDXRYewImE,57156
13
+ cribl_control_plane/commits_files.py,sha256=_eqiFkMk5KmwKJMSzCKFUg-F5DFRwyJG3qbkazatvfk,15753
14
+ cribl_control_plane/configs_versions.py,sha256=712QEB6GBJSbWVHTjsd_m19awnhhrapXLL91VZPE-n4,8408
15
+ cribl_control_plane/destinations.py,sha256=lOB2oCjle30McnchD5oCufwxxyXt_Lb1P4EKOWyDOmc,37879
16
+ cribl_control_plane/destinations_pq.py,sha256=3JkphD1Rb79RQ6hA3J1SfFZSjSwrQrbt6D8lB8zuR3Q,15015
17
17
  cribl_control_plane/errors/__init__.py,sha256=6wIINrURgpkshDia3Vek9STh9U0-mEV18rwOQib1hQA,2300
18
18
  cribl_control_plane/errors/apierror.py,sha256=jCXjH_rX6hCI3Ka3hWCfLA6k2YD2Mw4z8kWial4XEdQ,1316
19
19
  cribl_control_plane/errors/criblcontrolplaneerror.py,sha256=OtQvKiQwsbotChFzuJGbX8Z3UJ_CZK6zDas7NO3XM2A,966
@@ -22,13 +22,13 @@ cribl_control_plane/errors/healthserverstatus_error.py,sha256=Si7YixCRbgVykthDXN
22
22
  cribl_control_plane/errors/no_response_error.py,sha256=DaZukP5ManflzAN-11MtmBitfTIct37sRvfszvfM13o,467
23
23
  cribl_control_plane/errors/responsevalidationerror.py,sha256=l8CMARNT46VW1u2GuWlH7Ki_rF8Ulky4J_2fQ7rMwnU,783
24
24
  cribl_control_plane/groups_configs.py,sha256=dgi-W0ElnyygaVKXqk5df2ldAAgj9YmXRPCez2hP7yc,695
25
- cribl_control_plane/groups_sdk.py,sha256=tdG5emulC_HOjRq_pg3DB1NO8R8NYhHfEsqv6-B6_SM,63205
26
- cribl_control_plane/health.py,sha256=P7wMhZOtCesOAJd3rn02fuEub2yv3r_PLWjIGShHC3c,7293
27
- cribl_control_plane/hectokens.py,sha256=0EGgGGrM83m1YmTZwkN5S4xFkHQGnw1IZe3y6uMwmLw,19151
25
+ cribl_control_plane/groups_sdk.py,sha256=0LQbBnb3ZmmnlNeLf4vKxACRX9MzMNHqn2og6zCcp7c,63637
26
+ cribl_control_plane/health.py,sha256=lP17_25z9av8J8d4yrb8oxKOXreX6R6KeE7YAONxBo4,7365
27
+ cribl_control_plane/hectokens.py,sha256=EVI4hfEHO4EX9AioXaOuvZ1HaOAS6s4UOd0_VJywhxE,19975
28
28
  cribl_control_plane/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
29
- cribl_control_plane/lakedatasets.py,sha256=V5M6Dsjqgyuro3b1__fXtIW3uI96iGg4LdFKSAiU7FY,47812
29
+ cribl_control_plane/lakedatasets.py,sha256=AkFo9Fky_WhRI8UGxU-k50tZEJl-CcG4eCz6mWVHnsU,50458
30
30
  cribl_control_plane/models/__init__.py,sha256=vduFdsYc6r4AYY4cjpGkF6sQB1fTozFROxMUb3xIbB8,408904
31
- cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
31
+ cribl_control_plane/models/addhectokenrequest.py,sha256=qxg9FF1b-pALK44m19B4avrDuKVrHGOoaf9xRY4hKs8,1010
32
32
  cribl_control_plane/models/authtoken.py,sha256=sDw4DmWtZk4rvQow02X38SvB-rUSrZZ08t9NwqQcs8Y,443
33
33
  cribl_control_plane/models/branchinfo.py,sha256=jCX31O5TMG9jTjqigPvvUiBwpgPpVxHtSuhYrNykXiI,291
34
34
  cribl_control_plane/models/cacheconnection.py,sha256=eFqR4y88lgHY0rtY8rDflwYu2rCFJfynvUc1oqXcWJk,2473
@@ -73,7 +73,7 @@ cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py,sha256=1KAq
73
73
  cribl_control_plane/models/getconfiggroupbyproductandidop.py,sha256=Iwfrp6i3QfaALdqHm67kO2vWOuc04HntUnrebaqMNMw,2652
74
74
  cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py,sha256=XqH7Vkopma6IOgr_chJtVpYuje_C56RDJirzMZph7LU,2104
75
75
  cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py,sha256=X2XiJPwODvnOY9U5kRxIjFGirvEKQpiIUrO125lZoIo,1625
76
- cribl_control_plane/models/getcribllakedatasetbylakeidop.py,sha256=nd44uWdgyGfq3vjOvm2vQ76AiC_4J076q-ZCXP0ebAU,1371
76
+ cribl_control_plane/models/getcribllakedatasetbylakeidop.py,sha256=PgGB7ScZPx0DKyh6KCQ5wjLgHoIEz6cHk8wtQ6fo5Tw,3774
77
77
  cribl_control_plane/models/getinputbyidop.py,sha256=fuIpxpky_6KUbXM_8J-0VNIYsjNZnU6IyunVusx7QeE,1099
78
78
  cribl_control_plane/models/getmasterworkerentryop.py,sha256=dIMOw_dSQo-vP-iuDhaTkSFvyN_WMlbh7WFfme64Cas,1261
79
79
  cribl_control_plane/models/getoutputbyidop.py,sha256=Y8f9ZvCHlRE1cugt2APdigrcjLQz7R5jpkrLVUcDNcI,1128
@@ -233,7 +233,7 @@ cribl_control_plane/models/outputloki.py,sha256=tgqiH8oejMI2cNuc0VjEMuyfqVgCicWI
233
233
  cribl_control_plane/models/outputmicrosoftfabric.py,sha256=IxPluFoklPfiL3M2x8BFRdyKwHYy6ySqtbNLGBZIS0E,23598
234
234
  cribl_control_plane/models/outputminio.py,sha256=WckP-WitoS7G4TuFBVf7ZpbO2-OTEiz3Nga8f7TVy7Q,29330
235
235
  cribl_control_plane/models/outputmsk.py,sha256=Wbi8j-W-4R4I8seJqBCMwAU9wn0M2g81pXBK7N6BQaY,35687
236
- cribl_control_plane/models/outputnetflow.py,sha256=xOBy2Q48SfhNT2ifAQU-bPVQ5nOpUqMJ5B40SlZ3-0o,2790
236
+ cribl_control_plane/models/outputnetflow.py,sha256=u94icWLKNISSXdvJOhgdExPb5-_ZTKxeZ4AyoLA7uSg,3427
237
237
  cribl_control_plane/models/outputnewrelic.py,sha256=ncSgoevRi1WvUCCIvyvcu7tHtxhlCqUeE2fiEWpz5tc,24581
238
238
  cribl_control_plane/models/outputnewrelicevents.py,sha256=KeblEI113kvlHJ_Kl4QATEXL4u4qvs9Zt5q_kBmYClQ,23349
239
239
  cribl_control_plane/models/outputopentelemetry.py,sha256=REv-0cVgX02ax_brvnTdo2hfyUiofk9tSE-tw9rR5Y8,37213
@@ -285,7 +285,7 @@ cribl_control_plane/models/teamaccesscontrollist.py,sha256=HLMck-wyuJYiKD-adSS5t
285
285
  cribl_control_plane/models/updateconfiggroupbyproductandidop.py,sha256=rvIrE4UgMRquD2iBe9i-XJuChbvQgDAMTZLlpkuOJwI,2433
286
286
  cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py,sha256=lmlhg4T4ECpypZ0e4Y33Cl9AfO-3PZh5g9MQ6ERBwU8,2499
287
287
  cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=awEhvZ0TuHL48F_b5b-sW85FguNr76LVZpTAg9wXnWo,2133
288
- cribl_control_plane/models/updatehectokenrequest.py,sha256=Pq0JnAZuDqdU_g6mmCvfxfMgeK9Pu3uVXfD9sFWfjKQ,787
288
+ cribl_control_plane/models/updatehectokenrequest.py,sha256=m0SYKyCMWwE-sjvk8K5mYQw2rp4g301M3goyRY7RIcY,997
289
289
  cribl_control_plane/models/updateinputbyidop.py,sha256=fWbSRQQ1WdHI6_e-fV32T99vDFQ1Yv6oHM-80u5kbHE,1322
290
290
  cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=di6CX6521rBdx1h5pcUrtC-glnRFeDNehcx2U3px5_U,1893
291
291
  cribl_control_plane/models/updateoutputbyidop.py,sha256=44KI9zpS8trSu1FohNHD2egDVUxAlL-A8zazS7YOsrU,1357
@@ -296,19 +296,19 @@ cribl_control_plane/models/updateroutesbyidop.py,sha256=KEoryZP8OqtJCXp0f5P4c2KK
296
296
  cribl_control_plane/models/uploadpackresponse.py,sha256=-B2ye6T8fc4WKBxVnufwryRsVAHhqentutQVuN7PA3s,315
297
297
  cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
298
298
  cribl_control_plane/models/workertypes.py,sha256=1AaTkG_g67Vtoh0vYYrYVgRo41PvcK3cRm_G_r-JSgA,286
299
- cribl_control_plane/nodes.py,sha256=I4AnHbDlX3zNbvDfwgIZ6sv1yQTlkAGaQRoSzwkl0KM,17531
300
- cribl_control_plane/packs.py,sha256=svZrwbLNPfqPlRC0oh0w5IwQl2DWUHI89N3aTw27AiQ,47651
301
- cribl_control_plane/pipelines.py,sha256=jeU-R5NDOsLXrV-5t7Cz-RPidsQ4KwNN4-_oW9iNK0s,36946
299
+ cribl_control_plane/nodes.py,sha256=r5GX_r0-sEkL1loY4f4Ar54YcYj5Y_v0PKB6cgdjLUM,17675
300
+ cribl_control_plane/packs.py,sha256=AKvmVdCj2FpRKagtapmECN8fIu05y-xptwMNvmr6mUI,48083
301
+ cribl_control_plane/pipelines.py,sha256=86EDr4dq_TX7GBOEDx4jAOosEwUUE8HUbOAY277l1xI,37306
302
302
  cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
303
- cribl_control_plane/routes_sdk.py,sha256=8rOo8OyPDybbB-YjuqsjwLfXPy1WCjHBduv7FkWUdb0,32365
304
- cribl_control_plane/samples.py,sha256=41bJGkB-lxj8WmeI-418PwgMT2KPKqlINp26CKwt0Yk,16067
303
+ cribl_control_plane/routes_sdk.py,sha256=D10l4THYAzCSjWjk0YmH1IXvgXPZE-G84VEXAft9a2k,32653
304
+ cribl_control_plane/samples.py,sha256=e6fUBXmHW0j40tZl8-GIwiMI5T8Hr95yvVGO711iSq4,16211
305
305
  cribl_control_plane/sdk.py,sha256=xN4aO9a7ZkcyPMnI3zC0nO6-3tsI_hkyLM5wSLzHQ7c,8016
306
306
  cribl_control_plane/sdkconfiguration.py,sha256=bit6SSOyHqvibdtgNad5_ZcgMotk8NJfgHpKsBK8HFg,1259
307
- cribl_control_plane/sources.py,sha256=9JCNHdOGmMAGjBIYvzA7TSQsj6o6UEe89SHyQ_MGrSk,37120
308
- cribl_control_plane/statuses.py,sha256=jVfnmt3M0aiKJ3tgB2WlMaCmKDPZCJoD-1Kh8p-37ZM,8013
309
- cribl_control_plane/summaries.py,sha256=CtkNAxkMTArdUQhWHy7XqGPkO6DA-PvdwgVK-RHSkt0,8058
310
- cribl_control_plane/teams.py,sha256=kSjUiS7cKiROcRDmTxhnnOeGIsqLZcP7MFCuv5Kgm1U,8844
311
- cribl_control_plane/tokens.py,sha256=8-nyr_WsGcJm62PV8dY78vVOwHuwgCgSrQcEGm3yc0c,7709
307
+ cribl_control_plane/sources.py,sha256=rkJidp-rhG5E_GBOHtgxALWoNIvRms4--gHlZ7F6BsM,37480
308
+ cribl_control_plane/statuses.py,sha256=a4RkvyAqDHAI-Yl4DF2QrJKoBKmcWvC9c6sp8eC5YaQ,8085
309
+ cribl_control_plane/summaries.py,sha256=-gLapM5mA728c0wkRiHyJk47L-uBRAtsYcOdUiifsuA,8130
310
+ cribl_control_plane/teams.py,sha256=LgdfWtq61mrdvfO2w1g95xwyFEXVhuCUUCzQXR_pfhM,8916
311
+ cribl_control_plane/tokens.py,sha256=YMVADqnc9SsbanEeTN3aR1n75lfJcPmuitQj9MQLTUA,7781
312
312
  cribl_control_plane/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
313
313
  cribl_control_plane/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
314
314
  cribl_control_plane/utils/__init__.py,sha256=CAG0O76aEToGKXpT6Ft87Vd-iiQTh4XdBrQ37BVbsiM,5861
@@ -316,11 +316,11 @@ cribl_control_plane/utils/annotations.py,sha256=FvfvVTUj8TUclm4HbGgY5yi2Ap7EzGmu
316
316
  cribl_control_plane/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
317
317
  cribl_control_plane/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
318
318
  cribl_control_plane/utils/eventstreaming.py,sha256=SgFqMcUOYKlrTQ4gAp_dNcKLvDXukeiEMNU3DP8mXk8,6692
319
- cribl_control_plane/utils/forms.py,sha256=EJdnrfIkuwpDtekyHutla0HjI_FypTYcmYNyPKEu_W0,6874
319
+ cribl_control_plane/utils/forms.py,sha256=HzltKnYH5-ULoEz8JYfIUcw13I9dMZjw-1lQKNkH5fw,7178
320
320
  cribl_control_plane/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
321
321
  cribl_control_plane/utils/logger.py,sha256=VOliRfr1sX8RTNqAJSvQr_GvtMjBFISATpRy4-XxkE0,695
322
322
  cribl_control_plane/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
323
- cribl_control_plane/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,5899
323
+ cribl_control_plane/utils/queryparams.py,sha256=dxtFQDJ8dlbm_hh_fhdFC1qMWOOHR2MszNycKmME8bQ,6326
324
324
  cribl_control_plane/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
325
325
  cribl_control_plane/utils/retries.py,sha256=stPJEFtmK8gOM6aT0DpEJp9Z39oXX1-8I69jpa2n3Ww,8130
326
326
  cribl_control_plane/utils/security.py,sha256=Pkd-6ntMV3j5YYzJ0mA2RKN-8Ajk2w2NATLtqPdIYS0,6773
@@ -329,8 +329,8 @@ cribl_control_plane/utils/unmarshal_json_response.py,sha256=uMFaOrhVb5jKAML9BROm
329
329
  cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
330
330
  cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
331
331
  cribl_control_plane/versions.py,sha256=4xdTYbM84Xyjr5qkixqNpgn2q6V8aXVYXkEPDU2Ele0,1156
332
- cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
333
- cribl_control_plane-0.4.0a6.dist-info/METADATA,sha256=SrKxalwJm2CG_m_PMdK2eBZb-GVOpLDI9Cygl50vuEk,40554
334
- cribl_control_plane-0.4.0a6.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
335
- cribl_control_plane-0.4.0a6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
336
- cribl_control_plane-0.4.0a6.dist-info/RECORD,,
332
+ cribl_control_plane/versions_configs.py,sha256=vuDXMKjq7XHNcmA9A5IFirie1dG3craO-kJnFlgPIn0,7356
333
+ cribl_control_plane-0.4.0a12.dist-info/METADATA,sha256=Dp9sz3QDgjnFMzHhDiBOgxQqABJYzhFWMTjMf_1W7fI,40549
334
+ cribl_control_plane-0.4.0a12.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
335
+ cribl_control_plane-0.4.0a12.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
336
+ cribl_control_plane-0.4.0a12.dist-info/RECORD,,