cribl-control-plane 0.2.0b8__py3-none-any.whl → 0.2.1rc1__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 +4 -4
- cribl_control_plane/groups_sdk.py +3 -0
- cribl_control_plane/mappings.py +1185 -0
- cribl_control_plane/models/__init__.py +153 -9
- cribl_control_plane/models/createadminproductsmappingsactivatebyproductop.py +52 -0
- cribl_control_plane/models/createadminproductsmappingsbyproductop.py +53 -0
- cribl_control_plane/models/deleteadminproductsmappingsbyproductandidop.py +51 -0
- cribl_control_plane/models/getadminproductsmappingsbyproductandidop.py +51 -0
- cribl_control_plane/models/getadminproductsmappingsbyproductop.py +44 -0
- cribl_control_plane/models/mappingruleset.py +95 -0
- cribl_control_plane/models/nodeprovidedinfo.py +4 -0
- cribl_control_plane/models/outpostnodeinfo.py +16 -0
- cribl_control_plane/models/output.py +11 -11
- cribl_control_plane/models/outputdatabricks.py +173 -53
- cribl_control_plane/models/pipeline.py +4 -4
- cribl_control_plane/models/rulesetid.py +13 -0
- cribl_control_plane/models/updateadminproductsmappingsbyproductandidop.py +63 -0
- cribl_control_plane/pipelines.py +8 -8
- {cribl_control_plane-0.2.0b8.dist-info → cribl_control_plane-0.2.1rc1.dist-info}/METADATA +24 -6
- {cribl_control_plane-0.2.0b8.dist-info → cribl_control_plane-0.2.1rc1.dist-info}/RECORD +21 -11
- {cribl_control_plane-0.2.0b8.dist-info → cribl_control_plane-0.2.1rc1.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.2.
|
|
7
|
-
__openapi_doc_version__: str = "4.15.0-alpha.
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.2.
|
|
6
|
+
__version__: str = "0.2.1rc1"
|
|
7
|
+
__openapi_doc_version__: str = "4.15.0-alpha.1761420802292-a60a4283"
|
|
8
|
+
__gen_version__: str = "2.730.5"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.2.1rc1 2.730.5 4.15.0-alpha.1761420802292-a60a4283 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -6,6 +6,7 @@ from cribl_control_plane import errors, models, utils
|
|
|
6
6
|
from cribl_control_plane._hooks import HookContext
|
|
7
7
|
from cribl_control_plane.acl import ACL
|
|
8
8
|
from cribl_control_plane.groups_configs import GroupsConfigs
|
|
9
|
+
from cribl_control_plane.mappings import Mappings
|
|
9
10
|
from cribl_control_plane.types import OptionalNullable, UNSET
|
|
10
11
|
from cribl_control_plane.utils import get_security_from_env
|
|
11
12
|
from cribl_control_plane.utils.unmarshal_json_response import unmarshal_json_response
|
|
@@ -15,6 +16,7 @@ from typing import Any, List, Mapping, Optional, Union
|
|
|
15
16
|
class GroupsSDK(BaseSDK):
|
|
16
17
|
r"""Actions related to Groups"""
|
|
17
18
|
|
|
19
|
+
mappings: Mappings
|
|
18
20
|
configs: GroupsConfigs
|
|
19
21
|
acl: ACL
|
|
20
22
|
|
|
@@ -26,6 +28,7 @@ class GroupsSDK(BaseSDK):
|
|
|
26
28
|
self._init_sdks()
|
|
27
29
|
|
|
28
30
|
def _init_sdks(self):
|
|
31
|
+
self.mappings = Mappings(self.sdk_configuration, parent_ref=self.parent_ref)
|
|
29
32
|
self.configs = GroupsConfigs(self.sdk_configuration, parent_ref=self.parent_ref)
|
|
30
33
|
self.acl = ACL(self.sdk_configuration, parent_ref=self.parent_ref)
|
|
31
34
|
|