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.

@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "cribl-control-plane"
6
- __version__: str = "0.2.0b8"
7
- __openapi_doc_version__: str = "4.15.0-alpha.1761174335818-8b3b1a8b"
8
- __gen_version__: str = "2.723.11"
9
- __user_agent__: str = "speakeasy-sdk/python 0.2.0b8 2.723.11 4.15.0-alpha.1761174335818-8b3b1a8b cribl-control-plane"
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