cribl-control-plane 0.0.28__py3-none-any.whl → 0.0.30__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/acl.py +30 -20
- cribl_control_plane/branches.py +4 -8
- cribl_control_plane/configs_versions.py +22 -16
- cribl_control_plane/groups_sdk.py +464 -428
- cribl_control_plane/models/__init__.py +204 -177
- cribl_control_plane/models/{createproductsgroupsbyproductop.py → createconfiggroupbyproductop.py} +10 -10
- cribl_control_plane/models/currentbranchresult.py +13 -0
- cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +53 -0
- cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +78 -0
- cribl_control_plane/models/{getproductsgroupsaclteamsbyproductandidop.py → getconfiggroupaclteamsbyproductandidop.py} +15 -15
- cribl_control_plane/models/getconfiggroupbyproductandidop.py +65 -0
- cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +52 -0
- cribl_control_plane/models/{getsummaryworkersop.py → getmasterworkerentryop.py} +4 -4
- cribl_control_plane/models/gitcommitsummary.py +3 -3
- cribl_control_plane/models/gitstatusresult.py +0 -3
- cribl_control_plane/models/input.py +30 -30
- cribl_control_plane/models/inputcribllakehttp.py +63 -0
- cribl_control_plane/models/inputcrowdstrike.py +7 -0
- cribl_control_plane/models/inputs3.py +7 -0
- cribl_control_plane/models/inputs3inventory.py +7 -0
- cribl_control_plane/models/inputsecuritylake.py +7 -0
- cribl_control_plane/models/{getproductsgroupsbyproductop.py → listconfiggroupbyproductop.py} +12 -12
- cribl_control_plane/models/{getworkersop.py → listmasterworkerentryop.py} +4 -4
- cribl_control_plane/models/{updategroupsbyidop.py → updateconfiggroupbyproductandidop.py} +22 -6
- cribl_control_plane/models/{updategroupsdeploybyidop.py → updateconfiggroupdeploybyproductandidop.py} +22 -6
- cribl_control_plane/nodes.py +70 -62
- cribl_control_plane/teams.py +20 -20
- {cribl_control_plane-0.0.28.dist-info → cribl_control_plane-0.0.30.dist-info}/METADATA +8 -8
- {cribl_control_plane-0.0.28.dist-info → cribl_control_plane-0.0.30.dist-info}/RECORD +31 -31
- cribl_control_plane/models/deletegroupsbyidop.py +0 -37
- cribl_control_plane/models/getgroupsaclbyidop.py +0 -63
- cribl_control_plane/models/getgroupsbyidop.py +0 -49
- cribl_control_plane/models/getgroupsconfigversionbyidop.py +0 -36
- cribl_control_plane/models/getversioncurrentbranchop.py +0 -23
- {cribl_control_plane-0.0.28.dist-info → cribl_control_plane-0.0.30.dist-info}/WHEEL +0 -0
cribl_control_plane/models/{createproductsgroupsbyproductop.py → createconfiggroupbyproductop.py}
RENAMED
|
@@ -9,26 +9,26 @@ from typing import List, Optional
|
|
|
9
9
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
class
|
|
13
|
-
r"""Cribl
|
|
12
|
+
class CreateConfigGroupByProductProduct(str, Enum):
|
|
13
|
+
r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
14
14
|
|
|
15
15
|
STREAM = "stream"
|
|
16
16
|
EDGE = "edge"
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
class
|
|
20
|
-
product:
|
|
21
|
-
r"""Cribl
|
|
19
|
+
class CreateConfigGroupByProductRequestTypedDict(TypedDict):
|
|
20
|
+
product: CreateConfigGroupByProductProduct
|
|
21
|
+
r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
22
22
|
config_group: ConfigGroupTypedDict
|
|
23
23
|
r"""ConfigGroup object"""
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
class
|
|
26
|
+
class CreateConfigGroupByProductRequest(BaseModel):
|
|
27
27
|
product: Annotated[
|
|
28
|
-
|
|
28
|
+
CreateConfigGroupByProductProduct,
|
|
29
29
|
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
30
30
|
]
|
|
31
|
-
r"""Cribl
|
|
31
|
+
r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
32
32
|
|
|
33
33
|
config_group: Annotated[
|
|
34
34
|
ConfigGroup,
|
|
@@ -37,7 +37,7 @@ class CreateProductsGroupsByProductRequest(BaseModel):
|
|
|
37
37
|
r"""ConfigGroup object"""
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
class
|
|
40
|
+
class CreateConfigGroupByProductResponseTypedDict(TypedDict):
|
|
41
41
|
r"""a list of ConfigGroup objects"""
|
|
42
42
|
|
|
43
43
|
count: NotRequired[int]
|
|
@@ -45,7 +45,7 @@ class CreateProductsGroupsByProductResponseTypedDict(TypedDict):
|
|
|
45
45
|
items: NotRequired[List[ConfigGroupTypedDict]]
|
|
46
46
|
|
|
47
47
|
|
|
48
|
-
class
|
|
48
|
+
class CreateConfigGroupByProductResponse(BaseModel):
|
|
49
49
|
r"""a list of ConfigGroup objects"""
|
|
50
50
|
|
|
51
51
|
count: Optional[int] = None
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane.types import BaseModel
|
|
5
|
+
from typing_extensions import TypedDict
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class CurrentBranchResultTypedDict(TypedDict):
|
|
9
|
+
branch: str
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class CurrentBranchResult(BaseModel):
|
|
13
|
+
branch: str
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .configgroup import ConfigGroup, ConfigGroupTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata
|
|
7
|
+
from enum import Enum
|
|
8
|
+
from typing import List, Optional
|
|
9
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class DeleteConfigGroupByProductAndIDProduct(str, Enum):
|
|
13
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
14
|
+
|
|
15
|
+
STREAM = "stream"
|
|
16
|
+
EDGE = "edge"
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class DeleteConfigGroupByProductAndIDRequestTypedDict(TypedDict):
|
|
20
|
+
product: DeleteConfigGroupByProductAndIDProduct
|
|
21
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
22
|
+
id: str
|
|
23
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to delete."""
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class DeleteConfigGroupByProductAndIDRequest(BaseModel):
|
|
27
|
+
product: Annotated[
|
|
28
|
+
DeleteConfigGroupByProductAndIDProduct,
|
|
29
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
30
|
+
]
|
|
31
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
32
|
+
|
|
33
|
+
id: Annotated[
|
|
34
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
35
|
+
]
|
|
36
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to delete."""
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class DeleteConfigGroupByProductAndIDResponseTypedDict(TypedDict):
|
|
40
|
+
r"""a list of ConfigGroup objects"""
|
|
41
|
+
|
|
42
|
+
count: NotRequired[int]
|
|
43
|
+
r"""number of items present in the items array"""
|
|
44
|
+
items: NotRequired[List[ConfigGroupTypedDict]]
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class DeleteConfigGroupByProductAndIDResponse(BaseModel):
|
|
48
|
+
r"""a list of ConfigGroup objects"""
|
|
49
|
+
|
|
50
|
+
count: Optional[int] = None
|
|
51
|
+
r"""number of items present in the items array"""
|
|
52
|
+
|
|
53
|
+
items: Optional[List[ConfigGroup]] = None
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .useraccesscontrollist import UserAccessControlList, UserAccessControlListTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import (
|
|
7
|
+
FieldMetadata,
|
|
8
|
+
PathParamMetadata,
|
|
9
|
+
QueryParamMetadata,
|
|
10
|
+
)
|
|
11
|
+
from enum import Enum
|
|
12
|
+
from typing import List, Optional
|
|
13
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class GetConfigGroupACLByProductAndIDProduct(str, Enum):
|
|
17
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
18
|
+
|
|
19
|
+
STREAM = "stream"
|
|
20
|
+
EDGE = "edge"
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class GetConfigGroupACLByProductAndIDType(str, Enum):
|
|
24
|
+
r"""Filter for limiting the response to ACL entries for the specified RBAC resource type."""
|
|
25
|
+
|
|
26
|
+
GROUPS = "groups"
|
|
27
|
+
DATASETS = "datasets"
|
|
28
|
+
DATASET_PROVIDERS = "dataset-providers"
|
|
29
|
+
PROJECTS = "projects"
|
|
30
|
+
DASHBOARDS = "dashboards"
|
|
31
|
+
MACROS = "macros"
|
|
32
|
+
NOTEBOOKS = "notebooks"
|
|
33
|
+
INSIGHTS = "insights"
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class GetConfigGroupACLByProductAndIDRequestTypedDict(TypedDict):
|
|
37
|
+
product: GetConfigGroupACLByProductAndIDProduct
|
|
38
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
39
|
+
id: str
|
|
40
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the ACL for."""
|
|
41
|
+
type: NotRequired[GetConfigGroupACLByProductAndIDType]
|
|
42
|
+
r"""Filter for limiting the response to ACL entries for the specified RBAC resource type."""
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
class GetConfigGroupACLByProductAndIDRequest(BaseModel):
|
|
46
|
+
product: Annotated[
|
|
47
|
+
GetConfigGroupACLByProductAndIDProduct,
|
|
48
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
49
|
+
]
|
|
50
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
51
|
+
|
|
52
|
+
id: Annotated[
|
|
53
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
54
|
+
]
|
|
55
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the ACL for."""
|
|
56
|
+
|
|
57
|
+
type: Annotated[
|
|
58
|
+
Optional[GetConfigGroupACLByProductAndIDType],
|
|
59
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
60
|
+
] = None
|
|
61
|
+
r"""Filter for limiting the response to ACL entries for the specified RBAC resource type."""
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
class GetConfigGroupACLByProductAndIDResponseTypedDict(TypedDict):
|
|
65
|
+
r"""a list of UserAccessControlList objects"""
|
|
66
|
+
|
|
67
|
+
count: NotRequired[int]
|
|
68
|
+
r"""number of items present in the items array"""
|
|
69
|
+
items: NotRequired[List[UserAccessControlListTypedDict]]
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
class GetConfigGroupACLByProductAndIDResponse(BaseModel):
|
|
73
|
+
r"""a list of UserAccessControlList objects"""
|
|
74
|
+
|
|
75
|
+
count: Optional[int] = None
|
|
76
|
+
r"""number of items present in the items array"""
|
|
77
|
+
|
|
78
|
+
items: Optional[List[UserAccessControlList]] = None
|
|
@@ -13,14 +13,14 @@ from typing import List, Optional
|
|
|
13
13
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
class
|
|
17
|
-
r"""Cribl
|
|
16
|
+
class GetConfigGroupACLTeamsByProductAndIDProduct(str, Enum):
|
|
17
|
+
r"""Name of the Cribl product that contains the Worker Group or Edge Fleet."""
|
|
18
18
|
|
|
19
19
|
STREAM = "stream"
|
|
20
20
|
EDGE = "edge"
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
class
|
|
23
|
+
class GetConfigGroupACLTeamsByProductAndIDType(str, Enum):
|
|
24
24
|
r"""resource type by which to filter access levels"""
|
|
25
25
|
|
|
26
26
|
GROUPS = "groups"
|
|
@@ -33,35 +33,35 @@ class GetProductsGroupsACLTeamsByProductAndIDType(str, Enum):
|
|
|
33
33
|
INSIGHTS = "insights"
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
class
|
|
37
|
-
product:
|
|
38
|
-
r"""Cribl
|
|
36
|
+
class GetConfigGroupACLTeamsByProductAndIDRequestTypedDict(TypedDict):
|
|
37
|
+
product: GetConfigGroupACLTeamsByProductAndIDProduct
|
|
38
|
+
r"""Name of the Cribl product that contains the Worker Group or Edge Fleet."""
|
|
39
39
|
id: str
|
|
40
|
-
r"""Group
|
|
41
|
-
type: NotRequired[
|
|
40
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the team ACL for."""
|
|
41
|
+
type: NotRequired[GetConfigGroupACLTeamsByProductAndIDType]
|
|
42
42
|
r"""resource type by which to filter access levels"""
|
|
43
43
|
|
|
44
44
|
|
|
45
|
-
class
|
|
45
|
+
class GetConfigGroupACLTeamsByProductAndIDRequest(BaseModel):
|
|
46
46
|
product: Annotated[
|
|
47
|
-
|
|
47
|
+
GetConfigGroupACLTeamsByProductAndIDProduct,
|
|
48
48
|
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
49
49
|
]
|
|
50
|
-
r"""Cribl
|
|
50
|
+
r"""Name of the Cribl product that contains the Worker Group or Edge Fleet."""
|
|
51
51
|
|
|
52
52
|
id: Annotated[
|
|
53
53
|
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
54
54
|
]
|
|
55
|
-
r"""Group
|
|
55
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the team ACL for."""
|
|
56
56
|
|
|
57
57
|
type: Annotated[
|
|
58
|
-
Optional[
|
|
58
|
+
Optional[GetConfigGroupACLTeamsByProductAndIDType],
|
|
59
59
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
60
60
|
] = None
|
|
61
61
|
r"""resource type by which to filter access levels"""
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
class
|
|
64
|
+
class GetConfigGroupACLTeamsByProductAndIDResponseTypedDict(TypedDict):
|
|
65
65
|
r"""a list of TeamAccessControlList objects"""
|
|
66
66
|
|
|
67
67
|
count: NotRequired[int]
|
|
@@ -69,7 +69,7 @@ class GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict(TypedDict):
|
|
|
69
69
|
items: NotRequired[List[TeamAccessControlListTypedDict]]
|
|
70
70
|
|
|
71
71
|
|
|
72
|
-
class
|
|
72
|
+
class GetConfigGroupACLTeamsByProductAndIDResponse(BaseModel):
|
|
73
73
|
r"""a list of TeamAccessControlList objects"""
|
|
74
74
|
|
|
75
75
|
count: Optional[int] = None
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .configgroup import ConfigGroup, ConfigGroupTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import (
|
|
7
|
+
FieldMetadata,
|
|
8
|
+
PathParamMetadata,
|
|
9
|
+
QueryParamMetadata,
|
|
10
|
+
)
|
|
11
|
+
from enum import Enum
|
|
12
|
+
from typing import List, Optional
|
|
13
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class GetConfigGroupByProductAndIDProduct(str, Enum):
|
|
17
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
18
|
+
|
|
19
|
+
STREAM = "stream"
|
|
20
|
+
EDGE = "edge"
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class GetConfigGroupByProductAndIDRequestTypedDict(TypedDict):
|
|
24
|
+
product: GetConfigGroupByProductAndIDProduct
|
|
25
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
26
|
+
id: str
|
|
27
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get."""
|
|
28
|
+
fields: NotRequired[str]
|
|
29
|
+
r"""Comma-separated list of additional properties to include in the response. Available values are <code>git.commit</code>, <code>git.localChanges</code>, and <code>git.log</code>."""
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class GetConfigGroupByProductAndIDRequest(BaseModel):
|
|
33
|
+
product: Annotated[
|
|
34
|
+
GetConfigGroupByProductAndIDProduct,
|
|
35
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
36
|
+
]
|
|
37
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
38
|
+
|
|
39
|
+
id: Annotated[
|
|
40
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
41
|
+
]
|
|
42
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get."""
|
|
43
|
+
|
|
44
|
+
fields: Annotated[
|
|
45
|
+
Optional[str],
|
|
46
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
47
|
+
] = None
|
|
48
|
+
r"""Comma-separated list of additional properties to include in the response. Available values are <code>git.commit</code>, <code>git.localChanges</code>, and <code>git.log</code>."""
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class GetConfigGroupByProductAndIDResponseTypedDict(TypedDict):
|
|
52
|
+
r"""a list of ConfigGroup objects"""
|
|
53
|
+
|
|
54
|
+
count: NotRequired[int]
|
|
55
|
+
r"""number of items present in the items array"""
|
|
56
|
+
items: NotRequired[List[ConfigGroupTypedDict]]
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
class GetConfigGroupByProductAndIDResponse(BaseModel):
|
|
60
|
+
r"""a list of ConfigGroup objects"""
|
|
61
|
+
|
|
62
|
+
count: Optional[int] = None
|
|
63
|
+
r"""number of items present in the items array"""
|
|
64
|
+
|
|
65
|
+
items: Optional[List[ConfigGroup]] = None
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane.types import BaseModel
|
|
5
|
+
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from enum import Enum
|
|
7
|
+
from typing import List, Optional
|
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class GetConfigGroupConfigVersionByProductAndIDProduct(str, Enum):
|
|
12
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
13
|
+
|
|
14
|
+
STREAM = "stream"
|
|
15
|
+
EDGE = "edge"
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class GetConfigGroupConfigVersionByProductAndIDRequestTypedDict(TypedDict):
|
|
19
|
+
product: GetConfigGroupConfigVersionByProductAndIDProduct
|
|
20
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
21
|
+
id: str
|
|
22
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the configuration version for."""
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class GetConfigGroupConfigVersionByProductAndIDRequest(BaseModel):
|
|
26
|
+
product: Annotated[
|
|
27
|
+
GetConfigGroupConfigVersionByProductAndIDProduct,
|
|
28
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
29
|
+
]
|
|
30
|
+
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
31
|
+
|
|
32
|
+
id: Annotated[
|
|
33
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
34
|
+
]
|
|
35
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the configuration version for."""
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
class GetConfigGroupConfigVersionByProductAndIDResponseTypedDict(TypedDict):
|
|
39
|
+
r"""a list of string objects"""
|
|
40
|
+
|
|
41
|
+
count: NotRequired[int]
|
|
42
|
+
r"""number of items present in the items array"""
|
|
43
|
+
items: NotRequired[List[str]]
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
class GetConfigGroupConfigVersionByProductAndIDResponse(BaseModel):
|
|
47
|
+
r"""a list of string objects"""
|
|
48
|
+
|
|
49
|
+
count: Optional[int] = None
|
|
50
|
+
r"""number of items present in the items array"""
|
|
51
|
+
|
|
52
|
+
items: Optional[List[str]] = None
|
|
@@ -8,12 +8,12 @@ from typing import List, Optional
|
|
|
8
8
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
class
|
|
11
|
+
class GetMasterWorkerEntryRequestTypedDict(TypedDict):
|
|
12
12
|
filter_exp: NotRequired[str]
|
|
13
13
|
r"""Filter expression evaluated against nodes"""
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
class
|
|
16
|
+
class GetMasterWorkerEntryRequest(BaseModel):
|
|
17
17
|
filter_exp: Annotated[
|
|
18
18
|
Optional[str],
|
|
19
19
|
pydantic.Field(alias="filterExp"),
|
|
@@ -22,7 +22,7 @@ class GetSummaryWorkersRequest(BaseModel):
|
|
|
22
22
|
r"""Filter expression evaluated against nodes"""
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
class
|
|
25
|
+
class GetMasterWorkerEntryResponseTypedDict(TypedDict):
|
|
26
26
|
r"""a list of number objects"""
|
|
27
27
|
|
|
28
28
|
count: NotRequired[int]
|
|
@@ -30,7 +30,7 @@ class GetSummaryWorkersResponseTypedDict(TypedDict):
|
|
|
30
30
|
items: NotRequired[List[float]]
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
class
|
|
33
|
+
class GetMasterWorkerEntryResponse(BaseModel):
|
|
34
34
|
r"""a list of number objects"""
|
|
35
35
|
|
|
36
36
|
count: Optional[int] = None
|
|
@@ -49,16 +49,14 @@ class Summary(BaseModel):
|
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
class GitCommitSummaryTypedDict(TypedDict):
|
|
52
|
-
author: AuthorTypedDict
|
|
53
52
|
branch: str
|
|
54
53
|
commit: str
|
|
55
54
|
files: GitCommitSummaryFilesTypedDict
|
|
56
55
|
summary: SummaryTypedDict
|
|
56
|
+
author: NotRequired[AuthorTypedDict]
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
class GitCommitSummary(BaseModel):
|
|
60
|
-
author: Author
|
|
61
|
-
|
|
62
60
|
branch: str
|
|
63
61
|
|
|
64
62
|
commit: str
|
|
@@ -66,3 +64,5 @@ class GitCommitSummary(BaseModel):
|
|
|
66
64
|
files: GitCommitSummaryFiles
|
|
67
65
|
|
|
68
66
|
summary: Summary
|
|
67
|
+
|
|
68
|
+
author: Optional[Author] = None
|
|
@@ -44,7 +44,6 @@ class GitStatusResultTypedDict(TypedDict):
|
|
|
44
44
|
not_added: List[str]
|
|
45
45
|
renamed: List[RenamedTypedDict]
|
|
46
46
|
staged: List[str]
|
|
47
|
-
tracking: str
|
|
48
47
|
|
|
49
48
|
|
|
50
49
|
class GitStatusResult(BaseModel):
|
|
@@ -69,5 +68,3 @@ class GitStatusResult(BaseModel):
|
|
|
69
68
|
renamed: List[Renamed]
|
|
70
69
|
|
|
71
70
|
staged: List[str]
|
|
72
|
-
|
|
73
|
-
tracking: str
|
|
@@ -72,16 +72,16 @@ from typing_extensions import TypeAliasType
|
|
|
72
72
|
InputTypedDict = TypeAliasType(
|
|
73
73
|
"InputTypedDict",
|
|
74
74
|
Union[
|
|
75
|
-
InputCriblTypedDict,
|
|
76
|
-
InputKubeEventsTypedDict,
|
|
77
75
|
InputDatagenTypedDict,
|
|
76
|
+
InputKubeEventsTypedDict,
|
|
77
|
+
InputCriblTypedDict,
|
|
78
78
|
InputCriblmetricsTypedDict,
|
|
79
79
|
InputKubeMetricsTypedDict,
|
|
80
|
-
InputSystemStateTypedDict,
|
|
81
80
|
InputCollectionTypedDict,
|
|
82
|
-
|
|
81
|
+
InputSystemStateTypedDict,
|
|
83
82
|
InputModelDrivenTelemetryTypedDict,
|
|
84
83
|
InputWindowsMetricsTypedDict,
|
|
84
|
+
InputSystemMetricsTypedDict,
|
|
85
85
|
InputJournalFilesTypedDict,
|
|
86
86
|
InputRawUDPTypedDict,
|
|
87
87
|
InputWinEventLogsTypedDict,
|
|
@@ -93,40 +93,40 @@ InputTypedDict = TypeAliasType(
|
|
|
93
93
|
InputNetflowTypedDict,
|
|
94
94
|
InputTcpjsonTypedDict,
|
|
95
95
|
InputGooglePubsubTypedDict,
|
|
96
|
-
InputOffice365ServiceTypedDict,
|
|
97
96
|
InputTCPTypedDict,
|
|
98
97
|
InputWizTypedDict,
|
|
98
|
+
InputOffice365ServiceTypedDict,
|
|
99
99
|
InputFirehoseTypedDict,
|
|
100
100
|
InputCriblHTTPTypedDict,
|
|
101
|
-
InputCriblLakeHTTPTypedDict,
|
|
102
|
-
InputDatadogAgentTypedDict,
|
|
103
101
|
InputOffice365MgmtTypedDict,
|
|
102
|
+
InputDatadogAgentTypedDict,
|
|
104
103
|
InputFileTypedDict,
|
|
105
104
|
InputSplunkTypedDict,
|
|
106
|
-
InputWefTypedDict,
|
|
107
105
|
InputAppscopeTypedDict,
|
|
106
|
+
InputWefTypedDict,
|
|
108
107
|
InputHTTPRawTypedDict,
|
|
109
108
|
InputHTTPTypedDict,
|
|
109
|
+
InputCriblLakeHTTPTypedDict,
|
|
110
110
|
InputAzureBlobTypedDict,
|
|
111
|
-
InputZscalerHecTypedDict,
|
|
112
111
|
InputSqsTypedDict,
|
|
113
|
-
|
|
114
|
-
InputKinesisTypedDict,
|
|
112
|
+
InputZscalerHecTypedDict,
|
|
115
113
|
InputEventhubTypedDict,
|
|
114
|
+
InputKinesisTypedDict,
|
|
116
115
|
InputKafkaTypedDict,
|
|
116
|
+
InputConfluentCloudTypedDict,
|
|
117
117
|
InputElasticTypedDict,
|
|
118
|
-
InputSplunkHecTypedDict,
|
|
119
118
|
InputOffice365MsgTraceTypedDict,
|
|
119
|
+
InputSplunkHecTypedDict,
|
|
120
120
|
InputPrometheusRwTypedDict,
|
|
121
121
|
InputLokiTypedDict,
|
|
122
|
-
InputCrowdstrikeTypedDict,
|
|
123
122
|
InputPrometheusTypedDict,
|
|
123
|
+
InputCrowdstrikeTypedDict,
|
|
124
124
|
InputEdgePrometheusTypedDict,
|
|
125
|
+
InputOpenTelemetryTypedDict,
|
|
125
126
|
InputS3TypedDict,
|
|
126
127
|
InputSecurityLakeTypedDict,
|
|
127
|
-
InputOpenTelemetryTypedDict,
|
|
128
|
-
InputS3InventoryTypedDict,
|
|
129
128
|
InputMskTypedDict,
|
|
129
|
+
InputS3InventoryTypedDict,
|
|
130
130
|
InputSplunkSearchTypedDict,
|
|
131
131
|
InputSyslogTypedDict,
|
|
132
132
|
InputGrafanaTypedDict,
|
|
@@ -137,16 +137,16 @@ InputTypedDict = TypeAliasType(
|
|
|
137
137
|
Input = TypeAliasType(
|
|
138
138
|
"Input",
|
|
139
139
|
Union[
|
|
140
|
-
InputCribl,
|
|
141
|
-
InputKubeEvents,
|
|
142
140
|
InputDatagen,
|
|
141
|
+
InputKubeEvents,
|
|
142
|
+
InputCribl,
|
|
143
143
|
InputCriblmetrics,
|
|
144
144
|
InputKubeMetrics,
|
|
145
|
-
InputSystemState,
|
|
146
145
|
InputCollection,
|
|
147
|
-
|
|
146
|
+
InputSystemState,
|
|
148
147
|
InputModelDrivenTelemetry,
|
|
149
148
|
InputWindowsMetrics,
|
|
149
|
+
InputSystemMetrics,
|
|
150
150
|
InputJournalFiles,
|
|
151
151
|
InputRawUDP,
|
|
152
152
|
InputWinEventLogs,
|
|
@@ -158,40 +158,40 @@ Input = TypeAliasType(
|
|
|
158
158
|
InputNetflow,
|
|
159
159
|
InputTcpjson,
|
|
160
160
|
InputGooglePubsub,
|
|
161
|
-
InputOffice365Service,
|
|
162
161
|
InputTCP,
|
|
163
162
|
InputWiz,
|
|
163
|
+
InputOffice365Service,
|
|
164
164
|
InputFirehose,
|
|
165
165
|
InputCriblHTTP,
|
|
166
|
-
InputCriblLakeHTTP,
|
|
167
|
-
InputDatadogAgent,
|
|
168
166
|
InputOffice365Mgmt,
|
|
167
|
+
InputDatadogAgent,
|
|
169
168
|
InputFile,
|
|
170
169
|
InputSplunk,
|
|
171
|
-
InputWef,
|
|
172
170
|
InputAppscope,
|
|
171
|
+
InputWef,
|
|
173
172
|
InputHTTPRaw,
|
|
174
173
|
InputHTTP,
|
|
174
|
+
InputCriblLakeHTTP,
|
|
175
175
|
InputAzureBlob,
|
|
176
|
-
InputZscalerHec,
|
|
177
176
|
InputSqs,
|
|
178
|
-
|
|
179
|
-
InputKinesis,
|
|
177
|
+
InputZscalerHec,
|
|
180
178
|
InputEventhub,
|
|
179
|
+
InputKinesis,
|
|
181
180
|
InputKafka,
|
|
181
|
+
InputConfluentCloud,
|
|
182
182
|
InputElastic,
|
|
183
|
-
InputSplunkHec,
|
|
184
183
|
InputOffice365MsgTrace,
|
|
184
|
+
InputSplunkHec,
|
|
185
185
|
InputPrometheusRw,
|
|
186
186
|
InputLoki,
|
|
187
|
-
InputCrowdstrike,
|
|
188
187
|
InputPrometheus,
|
|
188
|
+
InputCrowdstrike,
|
|
189
189
|
InputEdgePrometheus,
|
|
190
|
+
InputOpenTelemetry,
|
|
190
191
|
InputS3,
|
|
191
192
|
InputSecurityLake,
|
|
192
|
-
InputOpenTelemetry,
|
|
193
|
-
InputS3Inventory,
|
|
194
193
|
InputMsk,
|
|
194
|
+
InputS3Inventory,
|
|
195
195
|
InputSplunkSearch,
|
|
196
196
|
InputSyslog,
|
|
197
197
|
InputGrafana,
|