cribl-control-plane 0.0.13__py3-none-any.whl → 0.0.15__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/models/__init__.py +186 -4
- cribl_control_plane/models/createpipelineop.py +24 -0
- cribl_control_plane/models/createroutesappendbyidop.py +45 -0
- cribl_control_plane/models/deletepipelinebyidop.py +37 -0
- cribl_control_plane/models/getpipelinebyidop.py +37 -0
- cribl_control_plane/models/getroutesbyidop.py +37 -0
- cribl_control_plane/models/inputsystemstate.py +4 -4
- cribl_control_plane/models/listpipelineop.py +24 -0
- cribl_control_plane/models/listroutesop.py +24 -0
- cribl_control_plane/models/pipeline.py +70 -0
- cribl_control_plane/models/pipelinefunctionconf.py +53 -0
- cribl_control_plane/models/routecloneconf.py +13 -0
- cribl_control_plane/models/routeconf.py +56 -0
- cribl_control_plane/models/routes.py +97 -0
- cribl_control_plane/models/routesroute.py +70 -0
- cribl_control_plane/models/routesroute_input.py +67 -0
- cribl_control_plane/models/updatepipelinebyidop.py +47 -0
- cribl_control_plane/models/updateroutesbyidop.py +48 -0
- cribl_control_plane/pipelines.py +903 -0
- cribl_control_plane/routes_sdk.py +769 -0
- cribl_control_plane/sdk.py +8 -0
- {cribl_control_plane-0.0.13.dist-info → cribl_control_plane-0.0.15.dist-info}/METADATA +17 -2
- {cribl_control_plane-0.0.13.dist-info → cribl_control_plane-0.0.15.dist-info}/RECORD +25 -7
- {cribl_control_plane-0.0.13.dist-info → cribl_control_plane-0.0.15.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.15"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1753373454403-2652afc6"
|
|
8
8
|
__gen_version__: str = "2.660.0"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.0.15 2.660.0 4.14.0-alpha.1753373454403-2652afc6 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -25,6 +25,16 @@ if TYPE_CHECKING:
|
|
|
25
25
|
CreateOutputTestByIDResponse,
|
|
26
26
|
CreateOutputTestByIDResponseTypedDict,
|
|
27
27
|
)
|
|
28
|
+
from .createpipelineop import (
|
|
29
|
+
CreatePipelineResponse,
|
|
30
|
+
CreatePipelineResponseTypedDict,
|
|
31
|
+
)
|
|
32
|
+
from .createroutesappendbyidop import (
|
|
33
|
+
CreateRoutesAppendByIDRequest,
|
|
34
|
+
CreateRoutesAppendByIDRequestTypedDict,
|
|
35
|
+
CreateRoutesAppendByIDResponse,
|
|
36
|
+
CreateRoutesAppendByIDResponseTypedDict,
|
|
37
|
+
)
|
|
28
38
|
from .criblevent import CriblEvent, CriblEventTypedDict
|
|
29
39
|
from .deleteinputbyidop import (
|
|
30
40
|
DeleteInputByIDRequest,
|
|
@@ -44,6 +54,12 @@ if TYPE_CHECKING:
|
|
|
44
54
|
DeleteOutputPqByIDResponse,
|
|
45
55
|
DeleteOutputPqByIDResponseTypedDict,
|
|
46
56
|
)
|
|
57
|
+
from .deletepipelinebyidop import (
|
|
58
|
+
DeletePipelineByIDRequest,
|
|
59
|
+
DeletePipelineByIDRequestTypedDict,
|
|
60
|
+
DeletePipelineByIDResponse,
|
|
61
|
+
DeletePipelineByIDResponseTypedDict,
|
|
62
|
+
)
|
|
47
63
|
from .getinputbyidop import (
|
|
48
64
|
GetInputByIDRequest,
|
|
49
65
|
GetInputByIDRequestTypedDict,
|
|
@@ -68,6 +84,18 @@ if TYPE_CHECKING:
|
|
|
68
84
|
GetOutputSamplesByIDResponse,
|
|
69
85
|
GetOutputSamplesByIDResponseTypedDict,
|
|
70
86
|
)
|
|
87
|
+
from .getpipelinebyidop import (
|
|
88
|
+
GetPipelineByIDRequest,
|
|
89
|
+
GetPipelineByIDRequestTypedDict,
|
|
90
|
+
GetPipelineByIDResponse,
|
|
91
|
+
GetPipelineByIDResponseTypedDict,
|
|
92
|
+
)
|
|
93
|
+
from .getroutesbyidop import (
|
|
94
|
+
GetRoutesByIDRequest,
|
|
95
|
+
GetRoutesByIDRequestTypedDict,
|
|
96
|
+
GetRoutesByIDResponse,
|
|
97
|
+
GetRoutesByIDResponseTypedDict,
|
|
98
|
+
)
|
|
71
99
|
from .healthstatus import HealthStatus, HealthStatusTypedDict, Role, Status
|
|
72
100
|
from .input import Input, InputTypedDict
|
|
73
101
|
from .inputappscope import (
|
|
@@ -1138,6 +1166,8 @@ if TYPE_CHECKING:
|
|
|
1138
1166
|
InputSystemStatePersistenceTypedDict,
|
|
1139
1167
|
InputSystemStatePq,
|
|
1140
1168
|
InputSystemStatePqTypedDict,
|
|
1169
|
+
InputSystemStateRoutes,
|
|
1170
|
+
InputSystemStateRoutesTypedDict,
|
|
1141
1171
|
InputSystemStateType,
|
|
1142
1172
|
InputSystemStateTypedDict,
|
|
1143
1173
|
Interfaces,
|
|
@@ -1146,8 +1176,6 @@ if TYPE_CHECKING:
|
|
|
1146
1176
|
ListeningPortsTypedDict,
|
|
1147
1177
|
LoggedInUsers,
|
|
1148
1178
|
LoggedInUsersTypedDict,
|
|
1149
|
-
Routes,
|
|
1150
|
-
RoutesTypedDict,
|
|
1151
1179
|
Services,
|
|
1152
1180
|
ServicesTypedDict,
|
|
1153
1181
|
UsersAndGroups,
|
|
@@ -1313,6 +1341,8 @@ if TYPE_CHECKING:
|
|
|
1313
1341
|
)
|
|
1314
1342
|
from .listinputop import ListInputResponse, ListInputResponseTypedDict
|
|
1315
1343
|
from .listoutputop import ListOutputResponse, ListOutputResponseTypedDict
|
|
1344
|
+
from .listpipelineop import ListPipelineResponse, ListPipelineResponseTypedDict
|
|
1345
|
+
from .listroutesop import ListRoutesResponse, ListRoutesResponseTypedDict
|
|
1316
1346
|
from .logininfo import LoginInfo, LoginInfoTypedDict
|
|
1317
1347
|
from .output import Output, OutputTypedDict
|
|
1318
1348
|
from .outputazureblob import (
|
|
@@ -2567,6 +2597,34 @@ if TYPE_CHECKING:
|
|
|
2567
2597
|
OutputXsiamURL,
|
|
2568
2598
|
OutputXsiamURLTypedDict,
|
|
2569
2599
|
)
|
|
2600
|
+
from .pipeline import (
|
|
2601
|
+
Conf,
|
|
2602
|
+
ConfTypedDict,
|
|
2603
|
+
Pipeline,
|
|
2604
|
+
PipelineGroups,
|
|
2605
|
+
PipelineGroupsTypedDict,
|
|
2606
|
+
PipelineTypedDict,
|
|
2607
|
+
)
|
|
2608
|
+
from .pipelinefunctionconf import (
|
|
2609
|
+
FunctionSpecificConfigs,
|
|
2610
|
+
FunctionSpecificConfigsTypedDict,
|
|
2611
|
+
PipelineFunctionConf,
|
|
2612
|
+
PipelineFunctionConfTypedDict,
|
|
2613
|
+
)
|
|
2614
|
+
from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
|
|
2615
|
+
from .routeconf import RouteConf, RouteConfTypedDict
|
|
2616
|
+
from .routes import (
|
|
2617
|
+
Comment,
|
|
2618
|
+
CommentTypedDict,
|
|
2619
|
+
Routes,
|
|
2620
|
+
RoutesGroups,
|
|
2621
|
+
RoutesGroupsTypedDict,
|
|
2622
|
+
RoutesInput,
|
|
2623
|
+
RoutesInputTypedDict,
|
|
2624
|
+
RoutesTypedDict,
|
|
2625
|
+
)
|
|
2626
|
+
from .routesroute import RoutesRoute, RoutesRouteTypedDict
|
|
2627
|
+
from .routesroute_input import RoutesRouteInput, RoutesRouteInputTypedDict
|
|
2570
2628
|
from .schemeclientoauth import SchemeClientOauth, SchemeClientOauthTypedDict
|
|
2571
2629
|
from .security import Security, SecurityTypedDict
|
|
2572
2630
|
from .updatehectokenrequest import (
|
|
@@ -2593,6 +2651,18 @@ if TYPE_CHECKING:
|
|
|
2593
2651
|
UpdateOutputByIDResponse,
|
|
2594
2652
|
UpdateOutputByIDResponseTypedDict,
|
|
2595
2653
|
)
|
|
2654
|
+
from .updatepipelinebyidop import (
|
|
2655
|
+
UpdatePipelineByIDRequest,
|
|
2656
|
+
UpdatePipelineByIDRequestTypedDict,
|
|
2657
|
+
UpdatePipelineByIDResponse,
|
|
2658
|
+
UpdatePipelineByIDResponseTypedDict,
|
|
2659
|
+
)
|
|
2660
|
+
from .updateroutesbyidop import (
|
|
2661
|
+
UpdateRoutesByIDRequest,
|
|
2662
|
+
UpdateRoutesByIDRequestTypedDict,
|
|
2663
|
+
UpdateRoutesByIDResponse,
|
|
2664
|
+
UpdateRoutesByIDResponseTypedDict,
|
|
2665
|
+
)
|
|
2596
2666
|
|
|
2597
2667
|
__all__ = [
|
|
2598
2668
|
"AISIEMEndpointPath",
|
|
@@ -2616,6 +2686,10 @@ __all__ = [
|
|
|
2616
2686
|
"CollectorsTypedDict",
|
|
2617
2687
|
"ColumnMapping",
|
|
2618
2688
|
"ColumnMappingTypedDict",
|
|
2689
|
+
"Comment",
|
|
2690
|
+
"CommentTypedDict",
|
|
2691
|
+
"Conf",
|
|
2692
|
+
"ConfTypedDict",
|
|
2619
2693
|
"Container",
|
|
2620
2694
|
"ContainerMode",
|
|
2621
2695
|
"ContainerTypedDict",
|
|
@@ -2631,6 +2705,12 @@ __all__ = [
|
|
|
2631
2705
|
"CreateOutputTestByIDRequestTypedDict",
|
|
2632
2706
|
"CreateOutputTestByIDResponse",
|
|
2633
2707
|
"CreateOutputTestByIDResponseTypedDict",
|
|
2708
|
+
"CreatePipelineResponse",
|
|
2709
|
+
"CreatePipelineResponseTypedDict",
|
|
2710
|
+
"CreateRoutesAppendByIDRequest",
|
|
2711
|
+
"CreateRoutesAppendByIDRequestTypedDict",
|
|
2712
|
+
"CreateRoutesAppendByIDResponse",
|
|
2713
|
+
"CreateRoutesAppendByIDResponseTypedDict",
|
|
2634
2714
|
"CriblEvent",
|
|
2635
2715
|
"CriblEventTypedDict",
|
|
2636
2716
|
"CustomLabel",
|
|
@@ -2651,6 +2731,10 @@ __all__ = [
|
|
|
2651
2731
|
"DeleteOutputPqByIDRequestTypedDict",
|
|
2652
2732
|
"DeleteOutputPqByIDResponse",
|
|
2653
2733
|
"DeleteOutputPqByIDResponseTypedDict",
|
|
2734
|
+
"DeletePipelineByIDRequest",
|
|
2735
|
+
"DeletePipelineByIDRequestTypedDict",
|
|
2736
|
+
"DeletePipelineByIDResponse",
|
|
2737
|
+
"DeletePipelineByIDResponseTypedDict",
|
|
2654
2738
|
"DisksAndFileSystems",
|
|
2655
2739
|
"DisksAndFileSystemsTypedDict",
|
|
2656
2740
|
"ElasticVersion",
|
|
@@ -2673,6 +2757,8 @@ __all__ = [
|
|
|
2673
2757
|
"FlushPeriodSec",
|
|
2674
2758
|
"FlushPeriodSecType",
|
|
2675
2759
|
"FlushPeriodSecTypedDict",
|
|
2760
|
+
"FunctionSpecificConfigs",
|
|
2761
|
+
"FunctionSpecificConfigsTypedDict",
|
|
2676
2762
|
"GetInputByIDRequest",
|
|
2677
2763
|
"GetInputByIDRequestTypedDict",
|
|
2678
2764
|
"GetInputByIDResponse",
|
|
@@ -2689,6 +2775,14 @@ __all__ = [
|
|
|
2689
2775
|
"GetOutputSamplesByIDRequestTypedDict",
|
|
2690
2776
|
"GetOutputSamplesByIDResponse",
|
|
2691
2777
|
"GetOutputSamplesByIDResponseTypedDict",
|
|
2778
|
+
"GetPipelineByIDRequest",
|
|
2779
|
+
"GetPipelineByIDRequestTypedDict",
|
|
2780
|
+
"GetPipelineByIDResponse",
|
|
2781
|
+
"GetPipelineByIDResponseTypedDict",
|
|
2782
|
+
"GetRoutesByIDRequest",
|
|
2783
|
+
"GetRoutesByIDRequestTypedDict",
|
|
2784
|
+
"GetRoutesByIDResponse",
|
|
2785
|
+
"GetRoutesByIDResponseTypedDict",
|
|
2692
2786
|
"HealthStatus",
|
|
2693
2787
|
"HealthStatusTypedDict",
|
|
2694
2788
|
"HostInfo",
|
|
@@ -3613,6 +3707,8 @@ __all__ = [
|
|
|
3613
3707
|
"InputSystemStatePersistenceTypedDict",
|
|
3614
3708
|
"InputSystemStatePq",
|
|
3615
3709
|
"InputSystemStatePqTypedDict",
|
|
3710
|
+
"InputSystemStateRoutes",
|
|
3711
|
+
"InputSystemStateRoutesTypedDict",
|
|
3616
3712
|
"InputSystemStateType",
|
|
3617
3713
|
"InputSystemStateTypedDict",
|
|
3618
3714
|
"InputTCP",
|
|
@@ -3757,6 +3853,10 @@ __all__ = [
|
|
|
3757
3853
|
"ListInputResponseTypedDict",
|
|
3758
3854
|
"ListOutputResponse",
|
|
3759
3855
|
"ListOutputResponseTypedDict",
|
|
3856
|
+
"ListPipelineResponse",
|
|
3857
|
+
"ListPipelineResponseTypedDict",
|
|
3858
|
+
"ListRoutesResponse",
|
|
3859
|
+
"ListRoutesResponseTypedDict",
|
|
3760
3860
|
"ListeningPorts",
|
|
3761
3861
|
"ListeningPortsTypedDict",
|
|
3762
3862
|
"LogLabel",
|
|
@@ -4865,6 +4965,12 @@ __all__ = [
|
|
|
4865
4965
|
"OutputXsiamURL",
|
|
4866
4966
|
"OutputXsiamURLTypedDict",
|
|
4867
4967
|
"PayloadFormat",
|
|
4968
|
+
"Pipeline",
|
|
4969
|
+
"PipelineFunctionConf",
|
|
4970
|
+
"PipelineFunctionConfTypedDict",
|
|
4971
|
+
"PipelineGroups",
|
|
4972
|
+
"PipelineGroupsTypedDict",
|
|
4973
|
+
"PipelineTypedDict",
|
|
4868
4974
|
"PodFilter",
|
|
4869
4975
|
"PodFilterTypedDict",
|
|
4870
4976
|
"PrefixOptional",
|
|
@@ -4883,7 +4989,19 @@ __all__ = [
|
|
|
4883
4989
|
"ResourceTypeLabel",
|
|
4884
4990
|
"ResourceTypeLabelTypedDict",
|
|
4885
4991
|
"Role",
|
|
4992
|
+
"RouteCloneConf",
|
|
4993
|
+
"RouteCloneConfTypedDict",
|
|
4994
|
+
"RouteConf",
|
|
4995
|
+
"RouteConfTypedDict",
|
|
4886
4996
|
"Routes",
|
|
4997
|
+
"RoutesGroups",
|
|
4998
|
+
"RoutesGroupsTypedDict",
|
|
4999
|
+
"RoutesInput",
|
|
5000
|
+
"RoutesInputTypedDict",
|
|
5001
|
+
"RoutesRoute",
|
|
5002
|
+
"RoutesRouteInput",
|
|
5003
|
+
"RoutesRouteInputTypedDict",
|
|
5004
|
+
"RoutesRouteTypedDict",
|
|
4887
5005
|
"RoutesTypedDict",
|
|
4888
5006
|
"SNMPv3Authentication",
|
|
4889
5007
|
"SNMPv3AuthenticationTypedDict",
|
|
@@ -4929,6 +5047,14 @@ __all__ = [
|
|
|
4929
5047
|
"UpdateOutputByIDRequestTypedDict",
|
|
4930
5048
|
"UpdateOutputByIDResponse",
|
|
4931
5049
|
"UpdateOutputByIDResponseTypedDict",
|
|
5050
|
+
"UpdatePipelineByIDRequest",
|
|
5051
|
+
"UpdatePipelineByIDRequestTypedDict",
|
|
5052
|
+
"UpdatePipelineByIDResponse",
|
|
5053
|
+
"UpdatePipelineByIDResponseTypedDict",
|
|
5054
|
+
"UpdateRoutesByIDRequest",
|
|
5055
|
+
"UpdateRoutesByIDRequestTypedDict",
|
|
5056
|
+
"UpdateRoutesByIDResponse",
|
|
5057
|
+
"UpdateRoutesByIDResponseTypedDict",
|
|
4932
5058
|
"UsersAndGroups",
|
|
4933
5059
|
"UsersAndGroupsTypedDict",
|
|
4934
5060
|
"V3User",
|
|
@@ -4955,6 +5081,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
4955
5081
|
"CreateOutputTestByIDRequestTypedDict": ".createoutputtestbyidop",
|
|
4956
5082
|
"CreateOutputTestByIDResponse": ".createoutputtestbyidop",
|
|
4957
5083
|
"CreateOutputTestByIDResponseTypedDict": ".createoutputtestbyidop",
|
|
5084
|
+
"CreatePipelineResponse": ".createpipelineop",
|
|
5085
|
+
"CreatePipelineResponseTypedDict": ".createpipelineop",
|
|
5086
|
+
"CreateRoutesAppendByIDRequest": ".createroutesappendbyidop",
|
|
5087
|
+
"CreateRoutesAppendByIDRequestTypedDict": ".createroutesappendbyidop",
|
|
5088
|
+
"CreateRoutesAppendByIDResponse": ".createroutesappendbyidop",
|
|
5089
|
+
"CreateRoutesAppendByIDResponseTypedDict": ".createroutesappendbyidop",
|
|
4958
5090
|
"CriblEvent": ".criblevent",
|
|
4959
5091
|
"CriblEventTypedDict": ".criblevent",
|
|
4960
5092
|
"DeleteInputByIDRequest": ".deleteinputbyidop",
|
|
@@ -4969,6 +5101,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
4969
5101
|
"DeleteOutputPqByIDRequestTypedDict": ".deleteoutputpqbyidop",
|
|
4970
5102
|
"DeleteOutputPqByIDResponse": ".deleteoutputpqbyidop",
|
|
4971
5103
|
"DeleteOutputPqByIDResponseTypedDict": ".deleteoutputpqbyidop",
|
|
5104
|
+
"DeletePipelineByIDRequest": ".deletepipelinebyidop",
|
|
5105
|
+
"DeletePipelineByIDRequestTypedDict": ".deletepipelinebyidop",
|
|
5106
|
+
"DeletePipelineByIDResponse": ".deletepipelinebyidop",
|
|
5107
|
+
"DeletePipelineByIDResponseTypedDict": ".deletepipelinebyidop",
|
|
4972
5108
|
"GetInputByIDRequest": ".getinputbyidop",
|
|
4973
5109
|
"GetInputByIDRequestTypedDict": ".getinputbyidop",
|
|
4974
5110
|
"GetInputByIDResponse": ".getinputbyidop",
|
|
@@ -4985,6 +5121,14 @@ _dynamic_imports: dict[str, str] = {
|
|
|
4985
5121
|
"GetOutputSamplesByIDRequestTypedDict": ".getoutputsamplesbyidop",
|
|
4986
5122
|
"GetOutputSamplesByIDResponse": ".getoutputsamplesbyidop",
|
|
4987
5123
|
"GetOutputSamplesByIDResponseTypedDict": ".getoutputsamplesbyidop",
|
|
5124
|
+
"GetPipelineByIDRequest": ".getpipelinebyidop",
|
|
5125
|
+
"GetPipelineByIDRequestTypedDict": ".getpipelinebyidop",
|
|
5126
|
+
"GetPipelineByIDResponse": ".getpipelinebyidop",
|
|
5127
|
+
"GetPipelineByIDResponseTypedDict": ".getpipelinebyidop",
|
|
5128
|
+
"GetRoutesByIDRequest": ".getroutesbyidop",
|
|
5129
|
+
"GetRoutesByIDRequestTypedDict": ".getroutesbyidop",
|
|
5130
|
+
"GetRoutesByIDResponse": ".getroutesbyidop",
|
|
5131
|
+
"GetRoutesByIDResponseTypedDict": ".getroutesbyidop",
|
|
4988
5132
|
"HealthStatus": ".healthstatus",
|
|
4989
5133
|
"HealthStatusTypedDict": ".healthstatus",
|
|
4990
5134
|
"Role": ".healthstatus",
|
|
@@ -5958,6 +6102,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5958
6102
|
"InputSystemStatePersistenceTypedDict": ".inputsystemstate",
|
|
5959
6103
|
"InputSystemStatePq": ".inputsystemstate",
|
|
5960
6104
|
"InputSystemStatePqTypedDict": ".inputsystemstate",
|
|
6105
|
+
"InputSystemStateRoutes": ".inputsystemstate",
|
|
6106
|
+
"InputSystemStateRoutesTypedDict": ".inputsystemstate",
|
|
5961
6107
|
"InputSystemStateType": ".inputsystemstate",
|
|
5962
6108
|
"InputSystemStateTypedDict": ".inputsystemstate",
|
|
5963
6109
|
"Interfaces": ".inputsystemstate",
|
|
@@ -5966,8 +6112,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5966
6112
|
"ListeningPortsTypedDict": ".inputsystemstate",
|
|
5967
6113
|
"LoggedInUsers": ".inputsystemstate",
|
|
5968
6114
|
"LoggedInUsersTypedDict": ".inputsystemstate",
|
|
5969
|
-
"Routes": ".inputsystemstate",
|
|
5970
|
-
"RoutesTypedDict": ".inputsystemstate",
|
|
5971
6115
|
"Services": ".inputsystemstate",
|
|
5972
6116
|
"ServicesTypedDict": ".inputsystemstate",
|
|
5973
6117
|
"UsersAndGroups": ".inputsystemstate",
|
|
@@ -6120,6 +6264,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6120
6264
|
"ListInputResponseTypedDict": ".listinputop",
|
|
6121
6265
|
"ListOutputResponse": ".listoutputop",
|
|
6122
6266
|
"ListOutputResponseTypedDict": ".listoutputop",
|
|
6267
|
+
"ListPipelineResponse": ".listpipelineop",
|
|
6268
|
+
"ListPipelineResponseTypedDict": ".listpipelineop",
|
|
6269
|
+
"ListRoutesResponse": ".listroutesop",
|
|
6270
|
+
"ListRoutesResponseTypedDict": ".listroutesop",
|
|
6123
6271
|
"LoginInfo": ".logininfo",
|
|
6124
6272
|
"LoginInfoTypedDict": ".logininfo",
|
|
6125
6273
|
"Output": ".output",
|
|
@@ -7256,6 +7404,32 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7256
7404
|
"OutputXsiamTypedDict": ".outputxsiam",
|
|
7257
7405
|
"OutputXsiamURL": ".outputxsiam",
|
|
7258
7406
|
"OutputXsiamURLTypedDict": ".outputxsiam",
|
|
7407
|
+
"Conf": ".pipeline",
|
|
7408
|
+
"ConfTypedDict": ".pipeline",
|
|
7409
|
+
"Pipeline": ".pipeline",
|
|
7410
|
+
"PipelineGroups": ".pipeline",
|
|
7411
|
+
"PipelineGroupsTypedDict": ".pipeline",
|
|
7412
|
+
"PipelineTypedDict": ".pipeline",
|
|
7413
|
+
"FunctionSpecificConfigs": ".pipelinefunctionconf",
|
|
7414
|
+
"FunctionSpecificConfigsTypedDict": ".pipelinefunctionconf",
|
|
7415
|
+
"PipelineFunctionConf": ".pipelinefunctionconf",
|
|
7416
|
+
"PipelineFunctionConfTypedDict": ".pipelinefunctionconf",
|
|
7417
|
+
"RouteCloneConf": ".routecloneconf",
|
|
7418
|
+
"RouteCloneConfTypedDict": ".routecloneconf",
|
|
7419
|
+
"RouteConf": ".routeconf",
|
|
7420
|
+
"RouteConfTypedDict": ".routeconf",
|
|
7421
|
+
"Comment": ".routes",
|
|
7422
|
+
"CommentTypedDict": ".routes",
|
|
7423
|
+
"Routes": ".routes",
|
|
7424
|
+
"RoutesGroups": ".routes",
|
|
7425
|
+
"RoutesGroupsTypedDict": ".routes",
|
|
7426
|
+
"RoutesInput": ".routes",
|
|
7427
|
+
"RoutesInputTypedDict": ".routes",
|
|
7428
|
+
"RoutesTypedDict": ".routes",
|
|
7429
|
+
"RoutesRoute": ".routesroute",
|
|
7430
|
+
"RoutesRouteTypedDict": ".routesroute",
|
|
7431
|
+
"RoutesRouteInput": ".routesroute_input",
|
|
7432
|
+
"RoutesRouteInputTypedDict": ".routesroute_input",
|
|
7259
7433
|
"SchemeClientOauth": ".schemeclientoauth",
|
|
7260
7434
|
"SchemeClientOauthTypedDict": ".schemeclientoauth",
|
|
7261
7435
|
"Security": ".security",
|
|
@@ -7276,6 +7450,14 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7276
7450
|
"UpdateOutputByIDRequestTypedDict": ".updateoutputbyidop",
|
|
7277
7451
|
"UpdateOutputByIDResponse": ".updateoutputbyidop",
|
|
7278
7452
|
"UpdateOutputByIDResponseTypedDict": ".updateoutputbyidop",
|
|
7453
|
+
"UpdatePipelineByIDRequest": ".updatepipelinebyidop",
|
|
7454
|
+
"UpdatePipelineByIDRequestTypedDict": ".updatepipelinebyidop",
|
|
7455
|
+
"UpdatePipelineByIDResponse": ".updatepipelinebyidop",
|
|
7456
|
+
"UpdatePipelineByIDResponseTypedDict": ".updatepipelinebyidop",
|
|
7457
|
+
"UpdateRoutesByIDRequest": ".updateroutesbyidop",
|
|
7458
|
+
"UpdateRoutesByIDRequestTypedDict": ".updateroutesbyidop",
|
|
7459
|
+
"UpdateRoutesByIDResponse": ".updateroutesbyidop",
|
|
7460
|
+
"UpdateRoutesByIDResponseTypedDict": ".updateroutesbyidop",
|
|
7279
7461
|
}
|
|
7280
7462
|
|
|
7281
7463
|
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .pipeline import Pipeline, PipelineTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from typing import List, Optional
|
|
7
|
+
from typing_extensions import NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class CreatePipelineResponseTypedDict(TypedDict):
|
|
11
|
+
r"""a list of Pipeline objects"""
|
|
12
|
+
|
|
13
|
+
count: NotRequired[int]
|
|
14
|
+
r"""number of items present in the items array"""
|
|
15
|
+
items: NotRequired[List[PipelineTypedDict]]
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class CreatePipelineResponse(BaseModel):
|
|
19
|
+
r"""a list of Pipeline objects"""
|
|
20
|
+
|
|
21
|
+
count: Optional[int] = None
|
|
22
|
+
r"""number of items present in the items array"""
|
|
23
|
+
|
|
24
|
+
items: Optional[List[Pipeline]] = None
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .routeconf import RouteConf, RouteConfTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata, RequestMetadata
|
|
7
|
+
from typing import Any, Dict, List, Optional
|
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class CreateRoutesAppendByIDRequestTypedDict(TypedDict):
|
|
12
|
+
id: str
|
|
13
|
+
r"""the route table to be appended to - currently default is the only supported value"""
|
|
14
|
+
request_body: List[RouteConfTypedDict]
|
|
15
|
+
r"""RouteDefinitions object"""
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class CreateRoutesAppendByIDRequest(BaseModel):
|
|
19
|
+
id: Annotated[
|
|
20
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
21
|
+
]
|
|
22
|
+
r"""the route table to be appended to - currently default is the only supported value"""
|
|
23
|
+
|
|
24
|
+
request_body: Annotated[
|
|
25
|
+
List[RouteConf],
|
|
26
|
+
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
|
27
|
+
]
|
|
28
|
+
r"""RouteDefinitions object"""
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class CreateRoutesAppendByIDResponseTypedDict(TypedDict):
|
|
32
|
+
r"""a list of any objects"""
|
|
33
|
+
|
|
34
|
+
count: NotRequired[int]
|
|
35
|
+
r"""number of items present in the items array"""
|
|
36
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class CreateRoutesAppendByIDResponse(BaseModel):
|
|
40
|
+
r"""a list of any objects"""
|
|
41
|
+
|
|
42
|
+
count: Optional[int] = None
|
|
43
|
+
r"""number of items present in the items array"""
|
|
44
|
+
|
|
45
|
+
items: Optional[List[Dict[str, Any]]] = None
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .pipeline import Pipeline, PipelineTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata
|
|
7
|
+
from typing import List, Optional
|
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class DeletePipelineByIDRequestTypedDict(TypedDict):
|
|
12
|
+
id: str
|
|
13
|
+
r"""Unique ID to DELETE"""
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class DeletePipelineByIDRequest(BaseModel):
|
|
17
|
+
id: Annotated[
|
|
18
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
19
|
+
]
|
|
20
|
+
r"""Unique ID to DELETE"""
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class DeletePipelineByIDResponseTypedDict(TypedDict):
|
|
24
|
+
r"""a list of Pipeline objects"""
|
|
25
|
+
|
|
26
|
+
count: NotRequired[int]
|
|
27
|
+
r"""number of items present in the items array"""
|
|
28
|
+
items: NotRequired[List[PipelineTypedDict]]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class DeletePipelineByIDResponse(BaseModel):
|
|
32
|
+
r"""a list of Pipeline objects"""
|
|
33
|
+
|
|
34
|
+
count: Optional[int] = None
|
|
35
|
+
r"""number of items present in the items array"""
|
|
36
|
+
|
|
37
|
+
items: Optional[List[Pipeline]] = None
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .pipeline import Pipeline, PipelineTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata
|
|
7
|
+
from typing import List, Optional
|
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class GetPipelineByIDRequestTypedDict(TypedDict):
|
|
12
|
+
id: str
|
|
13
|
+
r"""Unique ID to GET"""
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class GetPipelineByIDRequest(BaseModel):
|
|
17
|
+
id: Annotated[
|
|
18
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
19
|
+
]
|
|
20
|
+
r"""Unique ID to GET"""
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class GetPipelineByIDResponseTypedDict(TypedDict):
|
|
24
|
+
r"""a list of Pipeline objects"""
|
|
25
|
+
|
|
26
|
+
count: NotRequired[int]
|
|
27
|
+
r"""number of items present in the items array"""
|
|
28
|
+
items: NotRequired[List[PipelineTypedDict]]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class GetPipelineByIDResponse(BaseModel):
|
|
32
|
+
r"""a list of Pipeline objects"""
|
|
33
|
+
|
|
34
|
+
count: Optional[int] = None
|
|
35
|
+
r"""number of items present in the items array"""
|
|
36
|
+
|
|
37
|
+
items: Optional[List[Pipeline]] = None
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .routes import Routes, RoutesTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata
|
|
7
|
+
from typing import List, Optional
|
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class GetRoutesByIDRequestTypedDict(TypedDict):
|
|
12
|
+
id: str
|
|
13
|
+
r"""Unique ID to GET"""
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class GetRoutesByIDRequest(BaseModel):
|
|
17
|
+
id: Annotated[
|
|
18
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
19
|
+
]
|
|
20
|
+
r"""Unique ID to GET"""
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class GetRoutesByIDResponseTypedDict(TypedDict):
|
|
24
|
+
r"""a list of Routes objects"""
|
|
25
|
+
|
|
26
|
+
count: NotRequired[int]
|
|
27
|
+
r"""number of items present in the items array"""
|
|
28
|
+
items: NotRequired[List[RoutesTypedDict]]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class GetRoutesByIDResponse(BaseModel):
|
|
32
|
+
r"""a list of Routes objects"""
|
|
33
|
+
|
|
34
|
+
count: Optional[int] = None
|
|
35
|
+
r"""number of items present in the items array"""
|
|
36
|
+
|
|
37
|
+
items: Optional[List[Routes]] = None
|
|
@@ -151,13 +151,13 @@ class HostInfo(BaseModel):
|
|
|
151
151
|
enable: Optional[bool] = True
|
|
152
152
|
|
|
153
153
|
|
|
154
|
-
class
|
|
154
|
+
class InputSystemStateRoutesTypedDict(TypedDict):
|
|
155
155
|
r"""Creates events based on entries collected from the host’s network routes"""
|
|
156
156
|
|
|
157
157
|
enable: NotRequired[bool]
|
|
158
158
|
|
|
159
159
|
|
|
160
|
-
class
|
|
160
|
+
class InputSystemStateRoutes(BaseModel):
|
|
161
161
|
r"""Creates events based on entries collected from the host’s network routes"""
|
|
162
162
|
|
|
163
163
|
enable: Optional[bool] = True
|
|
@@ -244,7 +244,7 @@ class CollectorsTypedDict(TypedDict):
|
|
|
244
244
|
r"""Creates events for physical disks, partitions, and file systems"""
|
|
245
245
|
metadata: NotRequired[HostInfoTypedDict]
|
|
246
246
|
r"""Creates events based on the host system’s current state"""
|
|
247
|
-
routes: NotRequired[
|
|
247
|
+
routes: NotRequired[InputSystemStateRoutesTypedDict]
|
|
248
248
|
r"""Creates events based on entries collected from the host’s network routes"""
|
|
249
249
|
dns: NotRequired[DNSTypedDict]
|
|
250
250
|
r"""Creates events for DNS resolvers and search entries"""
|
|
@@ -273,7 +273,7 @@ class Collectors(BaseModel):
|
|
|
273
273
|
metadata: Optional[HostInfo] = None
|
|
274
274
|
r"""Creates events based on the host system’s current state"""
|
|
275
275
|
|
|
276
|
-
routes: Optional[
|
|
276
|
+
routes: Optional[InputSystemStateRoutes] = None
|
|
277
277
|
r"""Creates events based on entries collected from the host’s network routes"""
|
|
278
278
|
|
|
279
279
|
dns: Optional[DNS] = None
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .pipeline import Pipeline, PipelineTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from typing import List, Optional
|
|
7
|
+
from typing_extensions import NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class ListPipelineResponseTypedDict(TypedDict):
|
|
11
|
+
r"""a list of Pipeline objects"""
|
|
12
|
+
|
|
13
|
+
count: NotRequired[int]
|
|
14
|
+
r"""number of items present in the items array"""
|
|
15
|
+
items: NotRequired[List[PipelineTypedDict]]
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class ListPipelineResponse(BaseModel):
|
|
19
|
+
r"""a list of Pipeline objects"""
|
|
20
|
+
|
|
21
|
+
count: Optional[int] = None
|
|
22
|
+
r"""number of items present in the items array"""
|
|
23
|
+
|
|
24
|
+
items: Optional[List[Pipeline]] = None
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .routes import Routes, RoutesTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from typing import List, Optional
|
|
7
|
+
from typing_extensions import NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class ListRoutesResponseTypedDict(TypedDict):
|
|
11
|
+
r"""a list of Routes objects"""
|
|
12
|
+
|
|
13
|
+
count: NotRequired[int]
|
|
14
|
+
r"""number of items present in the items array"""
|
|
15
|
+
items: NotRequired[List[RoutesTypedDict]]
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class ListRoutesResponse(BaseModel):
|
|
19
|
+
r"""a list of Routes objects"""
|
|
20
|
+
|
|
21
|
+
count: Optional[int] = None
|
|
22
|
+
r"""number of items present in the items array"""
|
|
23
|
+
|
|
24
|
+
items: Optional[List[Routes]] = None
|