cribl-control-plane 0.0.40a1__py3-none-any.whl → 0.0.42__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/commits.py +2 -2
- cribl_control_plane/models/createroutesappendbyidop.py +2 -2
- cribl_control_plane/models/createversionrevertop.py +2 -2
- cribl_control_plane/models/deletepipelinebyidop.py +2 -2
- cribl_control_plane/models/getpipelinebyidop.py +2 -2
- cribl_control_plane/models/getroutesbyidop.py +2 -2
- cribl_control_plane/models/inputwineventlogs.py +1 -1
- cribl_control_plane/models/outputgooglechronicle.py +2 -2
- cribl_control_plane/models/packinstallinfo.py +3 -3
- cribl_control_plane/models/updatepipelinebyidop.py +6 -6
- cribl_control_plane/models/updateroutesbyidop.py +2 -2
- cribl_control_plane/pipelines.py +18 -18
- cribl_control_plane/routes_sdk.py +22 -22
- {cribl_control_plane-0.0.40a1.dist-info → cribl_control_plane-0.0.42.dist-info}/METADATA +6 -6
- {cribl_control_plane-0.0.40a1.dist-info → cribl_control_plane-0.0.42.dist-info}/RECORD +17 -17
- {cribl_control_plane-0.0.40a1.dist-info → cribl_control_plane-0.0.42.dist-info}/WHEEL +0 -0
cribl_control_plane/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "cribl-control-plane"
|
|
6
|
-
__version__: str = "0.0.
|
|
7
|
-
__openapi_doc_version__: str = "4.14.0-alpha.
|
|
6
|
+
__version__: str = "0.0.42"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1757000684650-0bcbd7ed"
|
|
8
8
|
__gen_version__: str = "2.686.7"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.0.42 2.686.7 4.14.0-alpha.1757000684650-0bcbd7ed cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
cribl_control_plane/commits.py
CHANGED
|
@@ -779,7 +779,7 @@ class Commits(BaseSDK):
|
|
|
779
779
|
Revert a commit in the local repository.
|
|
780
780
|
|
|
781
781
|
:param commit:
|
|
782
|
-
:param group_id: Group
|
|
782
|
+
:param group_id: The <code>id</code> of the Worker Group or Edge Fleet to revert the commit for. Required in Distributed deployments. Omit in Single-instance deployments.
|
|
783
783
|
:param force:
|
|
784
784
|
:param message:
|
|
785
785
|
:param retries: Override the default retry configuration for this method
|
|
@@ -880,7 +880,7 @@ class Commits(BaseSDK):
|
|
|
880
880
|
Revert a commit in the local repository.
|
|
881
881
|
|
|
882
882
|
:param commit:
|
|
883
|
-
:param group_id: Group
|
|
883
|
+
:param group_id: The <code>id</code> of the Worker Group or Edge Fleet to revert the commit for. Required in Distributed deployments. Omit in Single-instance deployments.
|
|
884
884
|
:param force:
|
|
885
885
|
:param message:
|
|
886
886
|
:param retries: Override the default retry configuration for this method
|
|
@@ -11,7 +11,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
11
11
|
|
|
12
12
|
class CreateRoutesAppendByIDRequestTypedDict(TypedDict):
|
|
13
13
|
id: str
|
|
14
|
-
r"""the
|
|
14
|
+
r"""The <code>id</code> of the Routing table to append the Route to. The supported value is <code>default</code>."""
|
|
15
15
|
request_body: List[RouteConfTypedDict]
|
|
16
16
|
r"""RouteDefinitions object"""
|
|
17
17
|
|
|
@@ -20,7 +20,7 @@ class CreateRoutesAppendByIDRequest(BaseModel):
|
|
|
20
20
|
id: Annotated[
|
|
21
21
|
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
22
22
|
]
|
|
23
|
-
r"""the
|
|
23
|
+
r"""The <code>id</code> of the Routing table to append the Route to. The supported value is <code>default</code>."""
|
|
24
24
|
|
|
25
25
|
request_body: Annotated[
|
|
26
26
|
List[RouteConf],
|
|
@@ -14,7 +14,7 @@ class CreateVersionRevertRequestTypedDict(TypedDict):
|
|
|
14
14
|
git_revert_params: GitRevertParamsTypedDict
|
|
15
15
|
r"""GitRevertParams object"""
|
|
16
16
|
group_id: NotRequired[str]
|
|
17
|
-
r"""Group
|
|
17
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to revert the commit for. Required in Distributed deployments. Omit in Single-instance deployments."""
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
class CreateVersionRevertRequest(BaseModel):
|
|
@@ -29,7 +29,7 @@ class CreateVersionRevertRequest(BaseModel):
|
|
|
29
29
|
pydantic.Field(alias="groupId"),
|
|
30
30
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
31
31
|
] = None
|
|
32
|
-
r"""Group
|
|
32
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to revert the commit for. Required in Distributed deployments. Omit in Single-instance deployments."""
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
class CreateVersionRevertResponseTypedDict(TypedDict):
|
|
@@ -10,14 +10,14 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
10
10
|
|
|
11
11
|
class DeletePipelineByIDRequestTypedDict(TypedDict):
|
|
12
12
|
id: str
|
|
13
|
-
r"""
|
|
13
|
+
r"""The <code>id</code> of the Pipeline to delete."""
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class DeletePipelineByIDRequest(BaseModel):
|
|
17
17
|
id: Annotated[
|
|
18
18
|
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
19
19
|
]
|
|
20
|
-
r"""
|
|
20
|
+
r"""The <code>id</code> of the Pipeline to delete."""
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
class DeletePipelineByIDResponseTypedDict(TypedDict):
|
|
@@ -10,14 +10,14 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
10
10
|
|
|
11
11
|
class GetPipelineByIDRequestTypedDict(TypedDict):
|
|
12
12
|
id: str
|
|
13
|
-
r"""
|
|
13
|
+
r"""The <code>id</code> of the Pipeline to get."""
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class GetPipelineByIDRequest(BaseModel):
|
|
17
17
|
id: Annotated[
|
|
18
18
|
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
19
19
|
]
|
|
20
|
-
r"""
|
|
20
|
+
r"""The <code>id</code> of the Pipeline to get."""
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
class GetPipelineByIDResponseTypedDict(TypedDict):
|
|
@@ -10,14 +10,14 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
10
10
|
|
|
11
11
|
class GetRoutesByIDRequestTypedDict(TypedDict):
|
|
12
12
|
id: str
|
|
13
|
-
r"""
|
|
13
|
+
r"""The <code>id</code> of the Routing table to get. The supported value is <code>default</code>."""
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class GetRoutesByIDRequest(BaseModel):
|
|
17
17
|
id: Annotated[
|
|
18
18
|
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
19
19
|
]
|
|
20
|
-
r"""
|
|
20
|
+
r"""The <code>id</code> of the Routing table to get. The supported value is <code>default</code>."""
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
class GetRoutesByIDResponseTypedDict(TypedDict):
|
|
@@ -181,7 +181,7 @@ class InputWinEventLogs(BaseModel):
|
|
|
181
181
|
pq: Optional[InputWinEventLogsPq] = None
|
|
182
182
|
|
|
183
183
|
read_mode: Annotated[Optional[ReadMode], pydantic.Field(alias="readMode")] = (
|
|
184
|
-
ReadMode.
|
|
184
|
+
ReadMode.NEWEST
|
|
185
185
|
)
|
|
186
186
|
r"""Read all stored and future event logs, or only future events"""
|
|
187
187
|
|
|
@@ -227,7 +227,7 @@ class OutputGoogleChronicleTypedDict(TypedDict):
|
|
|
227
227
|
log_text_field: NotRequired[str]
|
|
228
228
|
r"""Name of the event field that contains the log text to send. If not specified, Stream sends a JSON representation of the whole event."""
|
|
229
229
|
customer_id: NotRequired[str]
|
|
230
|
-
r"""
|
|
230
|
+
r"""A unique identifier (UUID) for your Google SecOps instance. This is provided by your Google representative and is required for API V2 authentication."""
|
|
231
231
|
namespace: NotRequired[str]
|
|
232
232
|
r"""User-configured environment namespace to identify the data domain the logs originated from. Use namespace as a tag to identify the appropriate data domain for indexing and enrichment functionality. Can be overwritten by event field __namespace."""
|
|
233
233
|
custom_labels: NotRequired[List[CustomLabelTypedDict]]
|
|
@@ -388,7 +388,7 @@ class OutputGoogleChronicle(BaseModel):
|
|
|
388
388
|
r"""Name of the event field that contains the log text to send. If not specified, Stream sends a JSON representation of the whole event."""
|
|
389
389
|
|
|
390
390
|
customer_id: Annotated[Optional[str], pydantic.Field(alias="customerId")] = None
|
|
391
|
-
r"""
|
|
391
|
+
r"""A unique identifier (UUID) for your Google SecOps instance. This is provided by your Google representative and is required for API V2 authentication."""
|
|
392
392
|
|
|
393
393
|
namespace: Optional[str] = None
|
|
394
394
|
r"""User-configured environment namespace to identify the data domain the logs originated from. Use namespace as a tag to identify the appropriate data domain for indexing and enrichment functionality. Can be overwritten by event field __namespace."""
|
|
@@ -27,7 +27,6 @@ class PackInstallInfoTags(BaseModel):
|
|
|
27
27
|
class PackInstallInfoTypedDict(TypedDict):
|
|
28
28
|
id: str
|
|
29
29
|
source: str
|
|
30
|
-
warnings: Any
|
|
31
30
|
author: NotRequired[str]
|
|
32
31
|
description: NotRequired[str]
|
|
33
32
|
display_name: NotRequired[str]
|
|
@@ -40,6 +39,7 @@ class PackInstallInfoTypedDict(TypedDict):
|
|
|
40
39
|
spec: NotRequired[str]
|
|
41
40
|
tags: NotRequired[PackInstallInfoTagsTypedDict]
|
|
42
41
|
version: NotRequired[str]
|
|
42
|
+
warnings: NotRequired[List[str]]
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
class PackInstallInfo(BaseModel):
|
|
@@ -47,8 +47,6 @@ class PackInstallInfo(BaseModel):
|
|
|
47
47
|
|
|
48
48
|
source: str
|
|
49
49
|
|
|
50
|
-
warnings: Any
|
|
51
|
-
|
|
52
50
|
author: Optional[str] = None
|
|
53
51
|
|
|
54
52
|
description: Optional[str] = None
|
|
@@ -74,3 +72,5 @@ class PackInstallInfo(BaseModel):
|
|
|
74
72
|
tags: Optional[PackInstallInfoTags] = None
|
|
75
73
|
|
|
76
74
|
version: Optional[str] = None
|
|
75
|
+
|
|
76
|
+
warnings: Optional[List[str]] = None
|
|
@@ -11,9 +11,9 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
11
11
|
|
|
12
12
|
class UpdatePipelineByIDRequestTypedDict(TypedDict):
|
|
13
13
|
id_param: str
|
|
14
|
-
r"""
|
|
14
|
+
r"""The <code>id</code> of the Pipeline to update."""
|
|
15
15
|
pipeline: PipelineTypedDict
|
|
16
|
-
r"""Pipeline object
|
|
16
|
+
r"""Pipeline object"""
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
class UpdatePipelineByIDRequest(BaseModel):
|
|
@@ -22,16 +22,16 @@ class UpdatePipelineByIDRequest(BaseModel):
|
|
|
22
22
|
pydantic.Field(alias="id"),
|
|
23
23
|
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
24
24
|
]
|
|
25
|
-
r"""
|
|
25
|
+
r"""The <code>id</code> of the Pipeline to update."""
|
|
26
26
|
|
|
27
27
|
pipeline: Annotated[
|
|
28
28
|
Pipeline, FieldMetadata(request=RequestMetadata(media_type="application/json"))
|
|
29
29
|
]
|
|
30
|
-
r"""Pipeline object
|
|
30
|
+
r"""Pipeline object"""
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
class UpdatePipelineByIDResponseTypedDict(TypedDict):
|
|
34
|
-
r"""a list of
|
|
34
|
+
r"""a list of Pipeline objects"""
|
|
35
35
|
|
|
36
36
|
count: NotRequired[int]
|
|
37
37
|
r"""number of items present in the items array"""
|
|
@@ -39,7 +39,7 @@ class UpdatePipelineByIDResponseTypedDict(TypedDict):
|
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
class UpdatePipelineByIDResponse(BaseModel):
|
|
42
|
-
r"""a list of
|
|
42
|
+
r"""a list of Pipeline objects"""
|
|
43
43
|
|
|
44
44
|
count: Optional[int] = None
|
|
45
45
|
r"""number of items present in the items array"""
|
|
@@ -11,7 +11,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
11
11
|
|
|
12
12
|
class UpdateRoutesByIDRequestTypedDict(TypedDict):
|
|
13
13
|
id_param: str
|
|
14
|
-
r"""
|
|
14
|
+
r"""The <code>id</code> of the Routing table that contains the Route to update. The supported value is <code>default</code>."""
|
|
15
15
|
routes: RoutesTypedDict
|
|
16
16
|
r"""Routes object"""
|
|
17
17
|
|
|
@@ -22,7 +22,7 @@ class UpdateRoutesByIDRequest(BaseModel):
|
|
|
22
22
|
pydantic.Field(alias="id"),
|
|
23
23
|
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
24
24
|
]
|
|
25
|
-
r"""
|
|
25
|
+
r"""The <code>id</code> of the Routing table that contains the Route to update. The supported value is <code>default</code>."""
|
|
26
26
|
|
|
27
27
|
routes: Annotated[
|
|
28
28
|
Routes, FieldMetadata(request=RequestMetadata(media_type="application/json"))
|
cribl_control_plane/pipelines.py
CHANGED
|
@@ -22,7 +22,7 @@ class Pipelines(BaseSDK):
|
|
|
22
22
|
) -> models.ListPipelineResponse:
|
|
23
23
|
r"""List all Pipelines
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
Get a list of all Pipelines.
|
|
26
26
|
|
|
27
27
|
:param retries: Override the default retry configuration for this method
|
|
28
28
|
:param server_url: Override the default server URL for this method
|
|
@@ -102,7 +102,7 @@ class Pipelines(BaseSDK):
|
|
|
102
102
|
) -> models.ListPipelineResponse:
|
|
103
103
|
r"""List all Pipelines
|
|
104
104
|
|
|
105
|
-
|
|
105
|
+
Get a list of all Pipelines.
|
|
106
106
|
|
|
107
107
|
:param retries: Override the default retry configuration for this method
|
|
108
108
|
:param server_url: Override the default server URL for this method
|
|
@@ -184,7 +184,7 @@ class Pipelines(BaseSDK):
|
|
|
184
184
|
) -> models.CreatePipelineResponse:
|
|
185
185
|
r"""Create a Pipeline
|
|
186
186
|
|
|
187
|
-
Create a Pipeline
|
|
187
|
+
Create a new Pipeline.
|
|
188
188
|
|
|
189
189
|
:param id:
|
|
190
190
|
:param conf:
|
|
@@ -277,7 +277,7 @@ class Pipelines(BaseSDK):
|
|
|
277
277
|
) -> models.CreatePipelineResponse:
|
|
278
278
|
r"""Create a Pipeline
|
|
279
279
|
|
|
280
|
-
Create a Pipeline
|
|
280
|
+
Create a new Pipeline.
|
|
281
281
|
|
|
282
282
|
:param id:
|
|
283
283
|
:param conf:
|
|
@@ -367,11 +367,11 @@ class Pipelines(BaseSDK):
|
|
|
367
367
|
timeout_ms: Optional[int] = None,
|
|
368
368
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
369
369
|
) -> models.GetPipelineByIDResponse:
|
|
370
|
-
r"""
|
|
370
|
+
r"""Get a Pipeline
|
|
371
371
|
|
|
372
|
-
|
|
372
|
+
Get the specified Pipeline.
|
|
373
373
|
|
|
374
|
-
:param id:
|
|
374
|
+
:param id: The <code>id</code> of the Pipeline to get.
|
|
375
375
|
:param retries: Override the default retry configuration for this method
|
|
376
376
|
:param server_url: Override the default server URL for this method
|
|
377
377
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -454,11 +454,11 @@ class Pipelines(BaseSDK):
|
|
|
454
454
|
timeout_ms: Optional[int] = None,
|
|
455
455
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
456
456
|
) -> models.GetPipelineByIDResponse:
|
|
457
|
-
r"""
|
|
457
|
+
r"""Get a Pipeline
|
|
458
458
|
|
|
459
|
-
|
|
459
|
+
Get the specified Pipeline.
|
|
460
460
|
|
|
461
|
-
:param id:
|
|
461
|
+
:param id: The <code>id</code> of the Pipeline to get.
|
|
462
462
|
:param retries: Override the default retry configuration for this method
|
|
463
463
|
:param server_url: Override the default server URL for this method
|
|
464
464
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -545,9 +545,9 @@ class Pipelines(BaseSDK):
|
|
|
545
545
|
) -> models.UpdatePipelineByIDResponse:
|
|
546
546
|
r"""Update a Pipeline
|
|
547
547
|
|
|
548
|
-
Update a Pipeline
|
|
548
|
+
Update the specified Pipeline.</br></br>Provide a complete representation of the Pipeline that you want to update in the request body. This endpoint does not support partial updates. Cribl removes any omitted fields when updating the Pipeline.</br></br>Confirm that the configuration in your request body is correct before sending the request. If the configuration is incorrect, the updated Pipeline might not function as expected.
|
|
549
549
|
|
|
550
|
-
:param id_param:
|
|
550
|
+
:param id_param: The <code>id</code> of the Pipeline to update.
|
|
551
551
|
:param id:
|
|
552
552
|
:param conf:
|
|
553
553
|
:param retries: Override the default retry configuration for this method
|
|
@@ -643,9 +643,9 @@ class Pipelines(BaseSDK):
|
|
|
643
643
|
) -> models.UpdatePipelineByIDResponse:
|
|
644
644
|
r"""Update a Pipeline
|
|
645
645
|
|
|
646
|
-
Update a Pipeline
|
|
646
|
+
Update the specified Pipeline.</br></br>Provide a complete representation of the Pipeline that you want to update in the request body. This endpoint does not support partial updates. Cribl removes any omitted fields when updating the Pipeline.</br></br>Confirm that the configuration in your request body is correct before sending the request. If the configuration is incorrect, the updated Pipeline might not function as expected.
|
|
647
647
|
|
|
648
|
-
:param id_param:
|
|
648
|
+
:param id_param: The <code>id</code> of the Pipeline to update.
|
|
649
649
|
:param id:
|
|
650
650
|
:param conf:
|
|
651
651
|
:param retries: Override the default retry configuration for this method
|
|
@@ -739,9 +739,9 @@ class Pipelines(BaseSDK):
|
|
|
739
739
|
) -> models.DeletePipelineByIDResponse:
|
|
740
740
|
r"""Delete a Pipeline
|
|
741
741
|
|
|
742
|
-
Delete
|
|
742
|
+
Delete the specified Pipeline.
|
|
743
743
|
|
|
744
|
-
:param id:
|
|
744
|
+
:param id: The <code>id</code> of the Pipeline to delete.
|
|
745
745
|
:param retries: Override the default retry configuration for this method
|
|
746
746
|
:param server_url: Override the default server URL for this method
|
|
747
747
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -826,9 +826,9 @@ class Pipelines(BaseSDK):
|
|
|
826
826
|
) -> models.DeletePipelineByIDResponse:
|
|
827
827
|
r"""Delete a Pipeline
|
|
828
828
|
|
|
829
|
-
Delete
|
|
829
|
+
Delete the specified Pipeline.
|
|
830
830
|
|
|
831
|
-
:param id:
|
|
831
|
+
:param id: The <code>id</code> of the Pipeline to delete.
|
|
832
832
|
:param retries: Override the default retry configuration for this method
|
|
833
833
|
:param server_url: Override the default server URL for this method
|
|
834
834
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -20,9 +20,9 @@ class RoutesSDK(BaseSDK):
|
|
|
20
20
|
timeout_ms: Optional[int] = None,
|
|
21
21
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
22
22
|
) -> models.ListRoutesResponse:
|
|
23
|
-
r"""
|
|
23
|
+
r"""List all Routes
|
|
24
24
|
|
|
25
|
-
Get a list of Routes
|
|
25
|
+
Get a list of all Routes.
|
|
26
26
|
|
|
27
27
|
:param retries: Override the default retry configuration for this method
|
|
28
28
|
:param server_url: Override the default server URL for this method
|
|
@@ -100,9 +100,9 @@ class RoutesSDK(BaseSDK):
|
|
|
100
100
|
timeout_ms: Optional[int] = None,
|
|
101
101
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
102
102
|
) -> models.ListRoutesResponse:
|
|
103
|
-
r"""
|
|
103
|
+
r"""List all Routes
|
|
104
104
|
|
|
105
|
-
Get a list of Routes
|
|
105
|
+
Get a list of all Routes.
|
|
106
106
|
|
|
107
107
|
:param retries: Override the default retry configuration for this method
|
|
108
108
|
:param server_url: Override the default server URL for this method
|
|
@@ -181,11 +181,11 @@ class RoutesSDK(BaseSDK):
|
|
|
181
181
|
timeout_ms: Optional[int] = None,
|
|
182
182
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
183
183
|
) -> models.GetRoutesByIDResponse:
|
|
184
|
-
r"""Get
|
|
184
|
+
r"""Get a Routing table
|
|
185
185
|
|
|
186
|
-
Get
|
|
186
|
+
Get the specified Routing table.
|
|
187
187
|
|
|
188
|
-
:param id:
|
|
188
|
+
:param id: The <code>id</code> of the Routing table to get. The supported value is <code>default</code>.
|
|
189
189
|
:param retries: Override the default retry configuration for this method
|
|
190
190
|
:param server_url: Override the default server URL for this method
|
|
191
191
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -268,11 +268,11 @@ class RoutesSDK(BaseSDK):
|
|
|
268
268
|
timeout_ms: Optional[int] = None,
|
|
269
269
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
270
270
|
) -> models.GetRoutesByIDResponse:
|
|
271
|
-
r"""Get
|
|
271
|
+
r"""Get a Routing table
|
|
272
272
|
|
|
273
|
-
Get
|
|
273
|
+
Get the specified Routing table.
|
|
274
274
|
|
|
275
|
-
:param id:
|
|
275
|
+
:param id: The <code>id</code> of the Routing table to get. The supported value is <code>default</code>.
|
|
276
276
|
:param retries: Override the default retry configuration for this method
|
|
277
277
|
:param server_url: Override the default server URL for this method
|
|
278
278
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -365,11 +365,11 @@ class RoutesSDK(BaseSDK):
|
|
|
365
365
|
timeout_ms: Optional[int] = None,
|
|
366
366
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
367
367
|
) -> models.UpdateRoutesByIDResponse:
|
|
368
|
-
r"""Update
|
|
368
|
+
r"""Update a Route
|
|
369
369
|
|
|
370
|
-
Update Routes
|
|
370
|
+
Update a Route in the specified Routing table.</br></br>Provide a complete representation of the Routing table, including the Route that you want to update, in the request body. This endpoint does not support partial updates. Cribl removes any omitted Routes and fields when updating.</br></br>Confirm that the configuration in your request body is correct before sending the request. If the configuration is incorrect, the Routing table might not function as expected.
|
|
371
371
|
|
|
372
|
-
:param id_param:
|
|
372
|
+
:param id_param: The <code>id</code> of the Routing table that contains the Route to update. The supported value is <code>default</code>.
|
|
373
373
|
:param routes: Pipeline routing rules
|
|
374
374
|
:param id: Routes ID
|
|
375
375
|
:param groups:
|
|
@@ -479,11 +479,11 @@ class RoutesSDK(BaseSDK):
|
|
|
479
479
|
timeout_ms: Optional[int] = None,
|
|
480
480
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
481
481
|
) -> models.UpdateRoutesByIDResponse:
|
|
482
|
-
r"""Update
|
|
482
|
+
r"""Update a Route
|
|
483
483
|
|
|
484
|
-
Update Routes
|
|
484
|
+
Update a Route in the specified Routing table.</br></br>Provide a complete representation of the Routing table, including the Route that you want to update, in the request body. This endpoint does not support partial updates. Cribl removes any omitted Routes and fields when updating.</br></br>Confirm that the configuration in your request body is correct before sending the request. If the configuration is incorrect, the Routing table might not function as expected.
|
|
485
485
|
|
|
486
|
-
:param id_param:
|
|
486
|
+
:param id_param: The <code>id</code> of the Routing table that contains the Route to update. The supported value is <code>default</code>.
|
|
487
487
|
:param routes: Pipeline routing rules
|
|
488
488
|
:param id: Routes ID
|
|
489
489
|
:param groups:
|
|
@@ -584,11 +584,11 @@ class RoutesSDK(BaseSDK):
|
|
|
584
584
|
timeout_ms: Optional[int] = None,
|
|
585
585
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
586
586
|
) -> models.CreateRoutesAppendByIDResponse:
|
|
587
|
-
r"""Append
|
|
587
|
+
r"""Append a Route to the end of the Routing table
|
|
588
588
|
|
|
589
|
-
|
|
589
|
+
Append a Route to the end of the specified Routing table.</br></br>Provide a complete representation of the Routing table, including the Route that you want to append, in the request body. Cribl removes any omitted Routes and fields in the Routing table when appending the Route.</br></br>Confirm that the configuration in your request body is correct before sending the request. If the configuration is incorrect, the Routing table might not function as expected.
|
|
590
590
|
|
|
591
|
-
:param id: the
|
|
591
|
+
:param id: The <code>id</code> of the Routing table to append the Route to. The supported value is <code>default</code>.
|
|
592
592
|
:param request_body: RouteDefinitions object
|
|
593
593
|
:param retries: Override the default retry configuration for this method
|
|
594
594
|
:param server_url: Override the default server URL for this method
|
|
@@ -679,11 +679,11 @@ class RoutesSDK(BaseSDK):
|
|
|
679
679
|
timeout_ms: Optional[int] = None,
|
|
680
680
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
681
681
|
) -> models.CreateRoutesAppendByIDResponse:
|
|
682
|
-
r"""Append
|
|
682
|
+
r"""Append a Route to the end of the Routing table
|
|
683
683
|
|
|
684
|
-
|
|
684
|
+
Append a Route to the end of the specified Routing table.</br></br>Provide a complete representation of the Routing table, including the Route that you want to append, in the request body. Cribl removes any omitted Routes and fields in the Routing table when appending the Route.</br></br>Confirm that the configuration in your request body is correct before sending the request. If the configuration is incorrect, the Routing table might not function as expected.
|
|
685
685
|
|
|
686
|
-
:param id: the
|
|
686
|
+
:param id: The <code>id</code> of the Routing table to append the Route to. The supported value is <code>default</code>.
|
|
687
687
|
:param request_body: RouteDefinitions object
|
|
688
688
|
:param retries: Override the default retry configuration for this method
|
|
689
689
|
:param server_url: Override the default server URL for this method
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.42
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -384,16 +384,16 @@ with CriblControlPlane(
|
|
|
384
384
|
|
|
385
385
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#list) - List all Pipelines
|
|
386
386
|
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#create) - Create a Pipeline
|
|
387
|
-
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#get) -
|
|
387
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#get) - Get a Pipeline
|
|
388
388
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#update) - Update a Pipeline
|
|
389
389
|
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md#delete) - Delete a Pipeline
|
|
390
390
|
|
|
391
391
|
### [routes](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md)
|
|
392
392
|
|
|
393
|
-
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) -
|
|
394
|
-
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get
|
|
395
|
-
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update
|
|
396
|
-
* [append](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#append) - Append
|
|
393
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#list) - List all Routes
|
|
394
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#get) - Get a Routing table
|
|
395
|
+
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#update) - Update a Route
|
|
396
|
+
* [append](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/routessdk/README.md#append) - Append a Route to the end of the Routing table
|
|
397
397
|
|
|
398
398
|
### [sources](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/sources/README.md)
|
|
399
399
|
|
|
@@ -4,12 +4,12 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=_scvqxVT_8CDEMWblZ02IQ9A1
|
|
|
4
4
|
cribl_control_plane/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
|
5
5
|
cribl_control_plane/_hooks/sdkhooks.py,sha256=ggXjME1_Rdv8CVCg1XHqB83eYtbxzKyhXyfQ36Yc1gA,2816
|
|
6
6
|
cribl_control_plane/_hooks/types.py,sha256=Tw_C4zTZm01rW_89VDEUpvQ8KQr1WxN0Gu_-s_fYSPc,2998
|
|
7
|
-
cribl_control_plane/_version.py,sha256=
|
|
7
|
+
cribl_control_plane/_version.py,sha256=BuViPNIuiPaJzKBiIRWW_R_ao_e9vu80ICx6TIvZE9s,542
|
|
8
8
|
cribl_control_plane/acl.py,sha256=LMsIZTDCRTXVt73MC_QoJexElGNsicYsBBHfVGzUsG8,8923
|
|
9
9
|
cribl_control_plane/auth_sdk.py,sha256=FQZpAERAlpw6Xk-mkUdalUDSekftklv_Du4i2TLDilk,496
|
|
10
10
|
cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
|
|
11
11
|
cribl_control_plane/branches.py,sha256=Uz2F25RVW5hDr92Dm7yo7I9NdEN1zh9eDF20h4mD7Tg,14217
|
|
12
|
-
cribl_control_plane/commits.py,sha256=
|
|
12
|
+
cribl_control_plane/commits.py,sha256=xcc9-PRAucQzsDNQG5MdwCgS3HzLxy_FDKrYpFzEt3k,56550
|
|
13
13
|
cribl_control_plane/commits_files.py,sha256=YmLpBefvP28icHA3FqvwVIxmTcgecUnABf5Tx7wN8H8,15609
|
|
14
14
|
cribl_control_plane/configs_versions.py,sha256=Ov9FqT4q9aKcCBUs1Qn65CdjnJK1pXXWPTYlHHHj-gk,8336
|
|
15
15
|
cribl_control_plane/destinations.py,sha256=ttEDfTKW-DlNBc_q5-EuqdNFMyh1cx_GI3ipN86pcpY,37389
|
|
@@ -47,10 +47,10 @@ cribl_control_plane/models/createoutputop.py,sha256=lWgs9T_pZR5bHcA0SZndbLuUPjVa
|
|
|
47
47
|
cribl_control_plane/models/createoutputtestbyidop.py,sha256=-5R-9LdZDrHAxnti3u_RS7SiAdNpCK2Kti4AlU00WvA,1641
|
|
48
48
|
cribl_control_plane/models/createpacksop.py,sha256=ZWmUQ9KU6XbSh_oL7-txQw-7esp-yLexHQvgL2Aw9Mw,769
|
|
49
49
|
cribl_control_plane/models/createpipelineop.py,sha256=vUHkNhYvYqhSAte_1jeBqry7tUL7W6T_s1M7vivuKwg,728
|
|
50
|
-
cribl_control_plane/models/createroutesappendbyidop.py,sha256=
|
|
50
|
+
cribl_control_plane/models/createroutesappendbyidop.py,sha256=OruUiz8gTR_SyMvKwolwgeyWHCEUI29annCJqihOMjU,1603
|
|
51
51
|
cribl_control_plane/models/createversioncommitop.py,sha256=ijtv-PAHQT6MYtVpdytDRGDWLgVUJLlEozAnwvgN59o,1739
|
|
52
52
|
cribl_control_plane/models/createversionpushop.py,sha256=lWAZSdUEgwWEvXuo5I5yac1PYd9IOY6ZQTY0mRSo9Nc,686
|
|
53
|
-
cribl_control_plane/models/createversionrevertop.py,sha256=
|
|
53
|
+
cribl_control_plane/models/createversionrevertop.py,sha256=rTPVEEkTpK3bOBcUS1AzYZbCPJP8gSFTviyfFx0WPyU,1876
|
|
54
54
|
cribl_control_plane/models/createversionundoop.py,sha256=31rK3VKcgJGL6JV2jBK0gYIETOa9Gwh_mSLbVyTOv54,1269
|
|
55
55
|
cribl_control_plane/models/criblevent.py,sha256=eT6WbxhOOCx5OQLkAfhwG6IeSUuUmF7hLTxeCHut4bo,361
|
|
56
56
|
cribl_control_plane/models/cribllakedataset.py,sha256=4txRkDEkM-9fLG0my7Sl9IhEW0v6RYdH0FNW5gtUE-g,2303
|
|
@@ -63,7 +63,7 @@ cribl_control_plane/models/deleteinputbyidop.py,sha256=wcL73IwZivcylD76m2vn-2YQ6
|
|
|
63
63
|
cribl_control_plane/models/deleteoutputbyidop.py,sha256=VdpKyYTadMO3rOmFlyMTkBkSLXT04ic9s9E9g0PDf8I,1146
|
|
64
64
|
cribl_control_plane/models/deleteoutputpqbyidop.py,sha256=V3Nr44NT0SwIx_gtppBoLiA5fO1JirI7aqDxwsOIb2Y,1105
|
|
65
65
|
cribl_control_plane/models/deletepacksbyidop.py,sha256=LODUzjEwPIcDuIl10wHVIu3zssufBYMUrd8tmtgdplY,1187
|
|
66
|
-
cribl_control_plane/models/deletepipelinebyidop.py,sha256=
|
|
66
|
+
cribl_control_plane/models/deletepipelinebyidop.py,sha256=TuNOcCp9WaoR87Yk4UjONY55R8Jkz2yY4k6LtEuCSjg,1152
|
|
67
67
|
cribl_control_plane/models/deployrequest.py,sha256=zSl96WkkLVHACFRYUdPT4w7WhCaOv_V7_nMLcSGRYwE,560
|
|
68
68
|
cribl_control_plane/models/deployrequestlookups.py,sha256=WJQf_uL_22Lj7_TIBZ0pZxspYnkfZu9ABNGBLG35tpA,613
|
|
69
69
|
cribl_control_plane/models/difffiles.py,sha256=VJyPZY3njsKntwP8h4XrROCmXryp6kCvlk6MVv8Sz6g,4558
|
|
@@ -81,8 +81,8 @@ cribl_control_plane/models/getoutputpqbyidop.py,sha256=KDJQ8jMF5PnE3eG6Aya5qybN1
|
|
|
81
81
|
cribl_control_plane/models/getoutputsamplesbyidop.py,sha256=H07FC4EXq5nfssP7d9ikjsXMc3L7lykHC26uh9rPjBI,1295
|
|
82
82
|
cribl_control_plane/models/getpacksbyidop.py,sha256=OvlicPyqRImbhJ6tJwA8WGf1HX0KnsqVFguSh-SEb4s,1114
|
|
83
83
|
cribl_control_plane/models/getpacksop.py,sha256=LztkNqAPv55ipG4A0sMdgUrA5bRhdMLr6VtKLA_rQPs,1561
|
|
84
|
-
cribl_control_plane/models/getpipelinebyidop.py,sha256=
|
|
85
|
-
cribl_control_plane/models/getroutesbyidop.py,sha256=
|
|
84
|
+
cribl_control_plane/models/getpipelinebyidop.py,sha256=kEq-Vh6vcKfPeWx2-vM-SrB-7TbVPEATEvI3nxI1RK8,1134
|
|
85
|
+
cribl_control_plane/models/getroutesbyidop.py,sha256=MnLecbR6lfjvNgBv_6u4AG4HNO6Sq8LEwoTCjMpwg44,1212
|
|
86
86
|
cribl_control_plane/models/getsummaryop.py,sha256=q0rNsr1CvvEL4DnK6IWPqo_iwKIsHXl7Lbtn3puW9c8,1450
|
|
87
87
|
cribl_control_plane/models/getversionbranchop.py,sha256=oV1diDK21qDC-585UKpmQXRcso-BP2z_Wth8kYJopnQ,744
|
|
88
88
|
cribl_control_plane/models/getversioncountop.py,sha256=-tW5cV7wbSGZAhaoYF81VY90PYO-63nEIQCodjzhXhw,1692
|
|
@@ -163,7 +163,7 @@ cribl_control_plane/models/inputtcp.py,sha256=JtWM3aP-qN08z6xPDllAxZuXV-K3tgVjWI
|
|
|
163
163
|
cribl_control_plane/models/inputtcpjson.py,sha256=c_jlHaVk2xYSXVCQasurhnH0dAqdVBSsNo9ra69rSHk,14647
|
|
164
164
|
cribl_control_plane/models/inputwef.py,sha256=tqoo8N7erQd-xbJGun5qoYi40Wn7_d-9H7N_eY02mZs,22037
|
|
165
165
|
cribl_control_plane/models/inputwindowsmetrics.py,sha256=c7Izs2mRg6QKR7m2_NoXM3iecCcV_anX5dIRhW27YUU,17026
|
|
166
|
-
cribl_control_plane/models/inputwineventlogs.py,sha256=
|
|
166
|
+
cribl_control_plane/models/inputwineventlogs.py,sha256=cMJ57x04HZMtzRepw8yXY5Wcdifwx7F_EdsjRRjdJWU,9947
|
|
167
167
|
cribl_control_plane/models/inputwiz.py,sha256=QidRJ_uRDP0TkYPM-Gi681GEMvHsiNK4k3N_Q9Bag_E,14508
|
|
168
168
|
cribl_control_plane/models/inputwizwebhook.py,sha256=nqq62GRGlNH3nY4DmQjq1sNJ0XSMydBCuh1_Xu2drXA,18569
|
|
169
169
|
cribl_control_plane/models/inputzscalerhec.py,sha256=fWXEs_RTlz8fxDlWuo0hxmZH-DjslyKbkLaxXksrcvc,20140
|
|
@@ -210,7 +210,7 @@ cribl_control_plane/models/outputelastic.py,sha256=qVaUCxsJdNAqoz9rzWTAofHXqRvZh
|
|
|
210
210
|
cribl_control_plane/models/outputelasticcloud.py,sha256=xY39KdWY1JnxRd-bSKFgPpbpcH5_wQaPgFh7gQ8Q1HM,18131
|
|
211
211
|
cribl_control_plane/models/outputexabeam.py,sha256=YQu_ePcDsqQjM8l4gDnUotJLnMJBAv-cA46jH0t6CK8,12625
|
|
212
212
|
cribl_control_plane/models/outputfilesystem.py,sha256=xlrWLUjsezob6NrN-UES8k1N_WfVJaANkqGVk7NtTOM,16433
|
|
213
|
-
cribl_control_plane/models/outputgooglechronicle.py,sha256=
|
|
213
|
+
cribl_control_plane/models/outputgooglechronicle.py,sha256=I_cQCbi1j_L1yEi5Cy-GAr_omp9R9IGDEvwzVez4XpI,22079
|
|
214
214
|
cribl_control_plane/models/outputgooglecloudlogging.py,sha256=8BVEEk4NsXPAIrzK087_DCJWREO6C36KpJs4SimVPWY,33585
|
|
215
215
|
cribl_control_plane/models/outputgooglecloudstorage.py,sha256=yJI9xSgu9XTsDtRBS_dMZdfLpKv2t4cyi4Px8hYuSM4,22385
|
|
216
216
|
cribl_control_plane/models/outputgooglepubsub.py,sha256=Wl7vmLgBz-EZ6SqgFymaqRFhghdEoPWZB9f5jkkGKrc,11649
|
|
@@ -255,7 +255,7 @@ cribl_control_plane/models/outputwavefront.py,sha256=NDhLd0UM0zQ52Pmlg9fCNL8BOdR
|
|
|
255
255
|
cribl_control_plane/models/outputwebhook.py,sha256=Ljeeb4S4zwyKP-oWdWEWD7FLtBiKT7w_6dCxD5gbKMQ,32833
|
|
256
256
|
cribl_control_plane/models/outputxsiam.py,sha256=BaCAvUqmCnFIXv3vmUZJiM2aW2ebNZqJVTdBjWaroZE,19553
|
|
257
257
|
cribl_control_plane/models/packinfo.py,sha256=8pP80pbzBJKjIViX_kcibH5EBWIrnyVvc9P53ga7Re8,1844
|
|
258
|
-
cribl_control_plane/models/packinstallinfo.py,sha256=
|
|
258
|
+
cribl_control_plane/models/packinstallinfo.py,sha256=RhIRUWRUYdk-FNEa2WyiPBs4RvdHsqovMH4dgLyd6Ds,1965
|
|
259
259
|
cribl_control_plane/models/packrequestbody_union.py,sha256=EGDpybuIL6SAXT_mHnaFCm6PtEH3dTdTu999-7rmgKA,3897
|
|
260
260
|
cribl_control_plane/models/packupgraderequest.py,sha256=T-d4cha7jj-ez0sJcqRPA5xGS2C9yuZ0KfGtPRulqj0,671
|
|
261
261
|
cribl_control_plane/models/pipeline.py,sha256=AaoC5euxac-fwul-LM1mNf03hCzrXmHQGZLMrUWuS4g,2130
|
|
@@ -282,15 +282,15 @@ cribl_control_plane/models/updateinputbyidop.py,sha256=fWbSRQQ1WdHI6_e-fV32T99vD
|
|
|
282
282
|
cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=BnIPY8dTmpen_yKyplMqSDX4u_nfWmN3hZqSTKqy_48,1805
|
|
283
283
|
cribl_control_plane/models/updateoutputbyidop.py,sha256=44KI9zpS8trSu1FohNHD2egDVUxAlL-A8zazS7YOsrU,1357
|
|
284
284
|
cribl_control_plane/models/updatepacksbyidop.py,sha256=QYjDGco3xBD0P7MXGzj0NE2qjQosmOWKQ7S0PoedugI,1510
|
|
285
|
-
cribl_control_plane/models/updatepipelinebyidop.py,sha256=
|
|
286
|
-
cribl_control_plane/models/updateroutesbyidop.py,sha256=
|
|
285
|
+
cribl_control_plane/models/updatepipelinebyidop.py,sha256=Cn_FBckmK1NyUkfOpWmc84K94W0nYCKuzppWwk0g4yY,1448
|
|
286
|
+
cribl_control_plane/models/updateroutesbyidop.py,sha256=KEoryZP8OqtJCXp0f5P4c2KKs1k1jY9-LsxGSBLDFMA,1562
|
|
287
287
|
cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
|
|
288
288
|
cribl_control_plane/models/workertypes.py,sha256=qphL2wkL55CU8V7xBts2lsMMi6IaA7LhUvKL_9xMod4,218
|
|
289
289
|
cribl_control_plane/nodes.py,sha256=015pTP--RfK2YFrMRgBe8ha32Mp_38JGDYdxkGdjtzY,17429
|
|
290
290
|
cribl_control_plane/packs.py,sha256=Ba7SLmjZuYmdC__uhYj5BMt1JVKNMsd3y3Iv7L4UVIo,38513
|
|
291
|
-
cribl_control_plane/pipelines.py,sha256=
|
|
291
|
+
cribl_control_plane/pipelines.py,sha256=jeU-R5NDOsLXrV-5t7Cz-RPidsQ4KwNN4-_oW9iNK0s,36946
|
|
292
292
|
cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
293
|
-
cribl_control_plane/routes_sdk.py,sha256=
|
|
293
|
+
cribl_control_plane/routes_sdk.py,sha256=aqJkB-EbLzA2NSFtu9N7ERta5BvIbpDRg7OZcO_ndkA,33197
|
|
294
294
|
cribl_control_plane/samples.py,sha256=41bJGkB-lxj8WmeI-418PwgMT2KPKqlINp26CKwt0Yk,16067
|
|
295
295
|
cribl_control_plane/sdk.py,sha256=UcM5PrBF5eQKCivl1WEPbIIZ5I6IPQLdi3K4GUxijbY,7463
|
|
296
296
|
cribl_control_plane/sdkconfiguration.py,sha256=bit6SSOyHqvibdtgNad5_ZcgMotk8NJfgHpKsBK8HFg,1259
|
|
@@ -320,6 +320,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
320
320
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
321
321
|
cribl_control_plane/versions.py,sha256=Wdaxc2wZeEeD12wAh7SQ0RGG9KgwKaWQ7bc8qOQ8oAo,920
|
|
322
322
|
cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
|
|
323
|
-
cribl_control_plane-0.0.
|
|
324
|
-
cribl_control_plane-0.0.
|
|
325
|
-
cribl_control_plane-0.0.
|
|
323
|
+
cribl_control_plane-0.0.42.dist-info/METADATA,sha256=PYVjNtCemehYQyU5O4PhzhIvrpEubUbFGcRIzs0rIqQ,38832
|
|
324
|
+
cribl_control_plane-0.0.42.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
325
|
+
cribl_control_plane-0.0.42.dist-info/RECORD,,
|
|
File without changes
|