cribl-control-plane 0.0.35__py3-none-any.whl → 0.0.37__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
  from .basesdk import BaseSDK
4
4
  from cribl_control_plane import errors, models, utils
5
5
  from cribl_control_plane._hooks import HookContext
6
- from cribl_control_plane.types import OptionalNullable, UNSET
6
+ from cribl_control_plane.types import BaseModel, OptionalNullable, UNSET
7
7
  from cribl_control_plane.utils import get_security_from_env
8
8
  from cribl_control_plane.utils.unmarshal_json_response import unmarshal_json_response
9
- from typing import Any, List, Mapping, Optional, Union
9
+ from typing import Any, Mapping, Optional, Union, cast
10
10
 
11
11
 
12
12
  class Packs(BaseSDK):
@@ -15,45 +15,19 @@ class Packs(BaseSDK):
15
15
  def install(
16
16
  self,
17
17
  *,
18
- id: str,
19
- source: str,
20
- allow_custom_functions: Optional[bool] = None,
21
- author: Optional[str] = None,
22
- description: Optional[str] = None,
23
- display_name: Optional[str] = None,
24
- exports: Optional[List[str]] = None,
25
- force: Optional[bool] = None,
26
- inputs: Optional[float] = None,
27
- min_log_stream_version: Optional[str] = None,
28
- outputs: Optional[float] = None,
29
- spec: Optional[str] = None,
30
- tags: Optional[
31
- Union[models.PackRequestBodyTags, models.PackRequestBodyTagsTypedDict]
32
- ] = None,
33
- version: Optional[str] = None,
18
+ request: Union[
19
+ models.PackRequestBodyUnion, models.PackRequestBodyUnionTypedDict
20
+ ],
34
21
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
35
22
  server_url: Optional[str] = None,
36
23
  timeout_ms: Optional[int] = None,
37
24
  http_headers: Optional[Mapping[str, str]] = None,
38
25
  ) -> models.CreatePacksResponse:
39
- r"""Install a Pack
40
-
41
- Install a Pack.
42
-
43
- :param id:
44
- :param source:
45
- :param allow_custom_functions:
46
- :param author:
47
- :param description:
48
- :param display_name:
49
- :param exports:
50
- :param force:
51
- :param inputs:
52
- :param min_log_stream_version:
53
- :param outputs:
54
- :param spec:
55
- :param tags:
56
- :param version:
26
+ r"""Create or install a Pack
27
+
28
+ Create or install a Pack.
29
+
30
+ :param request: The request object to send.
57
31
  :param retries: Override the default retry configuration for this method
58
32
  :param server_url: Override the default server URL for this method
59
33
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -69,22 +43,9 @@ class Packs(BaseSDK):
69
43
  else:
70
44
  base_url = self._get_url(base_url, url_variables)
71
45
 
72
- request = models.PackRequestBody(
73
- allow_custom_functions=allow_custom_functions,
74
- author=author,
75
- description=description,
76
- display_name=display_name,
77
- exports=exports,
78
- force=force,
79
- id=id,
80
- inputs=inputs,
81
- min_log_stream_version=min_log_stream_version,
82
- outputs=outputs,
83
- source=source,
84
- spec=spec,
85
- tags=utils.get_pydantic_model(tags, Optional[models.PackRequestBodyTags]),
86
- version=version,
87
- )
46
+ if not isinstance(request, BaseModel):
47
+ request = utils.unmarshal(request, models.PackRequestBodyUnion)
48
+ request = cast(models.PackRequestBodyUnion, request)
88
49
 
89
50
  req = self._build_request(
90
51
  method="POST",
@@ -100,7 +61,7 @@ class Packs(BaseSDK):
100
61
  http_headers=http_headers,
101
62
  security=self.sdk_configuration.security,
102
63
  get_serialized_body=lambda: utils.serialize_request_body(
103
- request, False, False, "json", models.PackRequestBody
64
+ request, False, False, "json", models.PackRequestBodyUnion
104
65
  ),
105
66
  timeout_ms=timeout_ms,
106
67
  )
@@ -146,45 +107,19 @@ class Packs(BaseSDK):
146
107
  async def install_async(
147
108
  self,
148
109
  *,
149
- id: str,
150
- source: str,
151
- allow_custom_functions: Optional[bool] = None,
152
- author: Optional[str] = None,
153
- description: Optional[str] = None,
154
- display_name: Optional[str] = None,
155
- exports: Optional[List[str]] = None,
156
- force: Optional[bool] = None,
157
- inputs: Optional[float] = None,
158
- min_log_stream_version: Optional[str] = None,
159
- outputs: Optional[float] = None,
160
- spec: Optional[str] = None,
161
- tags: Optional[
162
- Union[models.PackRequestBodyTags, models.PackRequestBodyTagsTypedDict]
163
- ] = None,
164
- version: Optional[str] = None,
110
+ request: Union[
111
+ models.PackRequestBodyUnion, models.PackRequestBodyUnionTypedDict
112
+ ],
165
113
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
166
114
  server_url: Optional[str] = None,
167
115
  timeout_ms: Optional[int] = None,
168
116
  http_headers: Optional[Mapping[str, str]] = None,
169
117
  ) -> models.CreatePacksResponse:
170
- r"""Install a Pack
171
-
172
- Install a Pack.
173
-
174
- :param id:
175
- :param source:
176
- :param allow_custom_functions:
177
- :param author:
178
- :param description:
179
- :param display_name:
180
- :param exports:
181
- :param force:
182
- :param inputs:
183
- :param min_log_stream_version:
184
- :param outputs:
185
- :param spec:
186
- :param tags:
187
- :param version:
118
+ r"""Create or install a Pack
119
+
120
+ Create or install a Pack.
121
+
122
+ :param request: The request object to send.
188
123
  :param retries: Override the default retry configuration for this method
189
124
  :param server_url: Override the default server URL for this method
190
125
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -200,22 +135,9 @@ class Packs(BaseSDK):
200
135
  else:
201
136
  base_url = self._get_url(base_url, url_variables)
202
137
 
203
- request = models.PackRequestBody(
204
- allow_custom_functions=allow_custom_functions,
205
- author=author,
206
- description=description,
207
- display_name=display_name,
208
- exports=exports,
209
- force=force,
210
- id=id,
211
- inputs=inputs,
212
- min_log_stream_version=min_log_stream_version,
213
- outputs=outputs,
214
- source=source,
215
- spec=spec,
216
- tags=utils.get_pydantic_model(tags, Optional[models.PackRequestBodyTags]),
217
- version=version,
218
- )
138
+ if not isinstance(request, BaseModel):
139
+ request = utils.unmarshal(request, models.PackRequestBodyUnion)
140
+ request = cast(models.PackRequestBodyUnion, request)
219
141
 
220
142
  req = self._build_request_async(
221
143
  method="POST",
@@ -231,7 +153,7 @@ class Packs(BaseSDK):
231
153
  http_headers=http_headers,
232
154
  security=self.sdk_configuration.security,
233
155
  get_serialized_body=lambda: utils.serialize_request_body(
234
- request, False, False, "json", models.PackRequestBody
156
+ request, False, False, "json", models.PackRequestBodyUnion
235
157
  ),
236
158
  timeout_ms=timeout_ms,
237
159
  )
@@ -622,6 +544,180 @@ class Packs(BaseSDK):
622
544
 
623
545
  raise errors.APIError("Unexpected response received", http_res)
624
546
 
547
+ def get(
548
+ self,
549
+ *,
550
+ id: str,
551
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
552
+ server_url: Optional[str] = None,
553
+ timeout_ms: Optional[int] = None,
554
+ http_headers: Optional[Mapping[str, str]] = None,
555
+ ) -> models.GetPacksByIDResponse:
556
+ r"""Get a Pack
557
+
558
+ Get the specified Pack.
559
+
560
+ :param id: The <code>id</code> of the Pack to get.
561
+ :param retries: Override the default retry configuration for this method
562
+ :param server_url: Override the default server URL for this method
563
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
564
+ :param http_headers: Additional headers to set or replace on requests.
565
+ """
566
+ base_url = None
567
+ url_variables = None
568
+ if timeout_ms is None:
569
+ timeout_ms = self.sdk_configuration.timeout_ms
570
+
571
+ if server_url is not None:
572
+ base_url = server_url
573
+ else:
574
+ base_url = self._get_url(base_url, url_variables)
575
+
576
+ request = models.GetPacksByIDRequest(
577
+ id=id,
578
+ )
579
+
580
+ req = self._build_request(
581
+ method="GET",
582
+ path="/packs/{id}",
583
+ base_url=base_url,
584
+ url_variables=url_variables,
585
+ request=request,
586
+ request_body_required=False,
587
+ request_has_path_params=True,
588
+ request_has_query_params=True,
589
+ user_agent_header="user-agent",
590
+ accept_header_value="application/json",
591
+ http_headers=http_headers,
592
+ security=self.sdk_configuration.security,
593
+ timeout_ms=timeout_ms,
594
+ )
595
+
596
+ if retries == UNSET:
597
+ if self.sdk_configuration.retry_config is not UNSET:
598
+ retries = self.sdk_configuration.retry_config
599
+
600
+ retry_config = None
601
+ if isinstance(retries, utils.RetryConfig):
602
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
603
+
604
+ http_res = self.do_request(
605
+ hook_ctx=HookContext(
606
+ config=self.sdk_configuration,
607
+ base_url=base_url or "",
608
+ operation_id="getPacksById",
609
+ oauth2_scopes=[],
610
+ security_source=get_security_from_env(
611
+ self.sdk_configuration.security, models.Security
612
+ ),
613
+ ),
614
+ request=req,
615
+ error_status_codes=["401", "4XX", "500", "5XX"],
616
+ retry_config=retry_config,
617
+ )
618
+
619
+ response_data: Any = None
620
+ if utils.match_response(http_res, "200", "application/json"):
621
+ return unmarshal_json_response(models.GetPacksByIDResponse, http_res)
622
+ if utils.match_response(http_res, "500", "application/json"):
623
+ response_data = unmarshal_json_response(errors.ErrorData, http_res)
624
+ raise errors.Error(response_data, http_res)
625
+ if utils.match_response(http_res, ["401", "4XX"], "*"):
626
+ http_res_text = utils.stream_to_text(http_res)
627
+ raise errors.APIError("API error occurred", http_res, http_res_text)
628
+ if utils.match_response(http_res, "5XX", "*"):
629
+ http_res_text = utils.stream_to_text(http_res)
630
+ raise errors.APIError("API error occurred", http_res, http_res_text)
631
+
632
+ raise errors.APIError("Unexpected response received", http_res)
633
+
634
+ async def get_async(
635
+ self,
636
+ *,
637
+ id: str,
638
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
639
+ server_url: Optional[str] = None,
640
+ timeout_ms: Optional[int] = None,
641
+ http_headers: Optional[Mapping[str, str]] = None,
642
+ ) -> models.GetPacksByIDResponse:
643
+ r"""Get a Pack
644
+
645
+ Get the specified Pack.
646
+
647
+ :param id: The <code>id</code> of the Pack to get.
648
+ :param retries: Override the default retry configuration for this method
649
+ :param server_url: Override the default server URL for this method
650
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
651
+ :param http_headers: Additional headers to set or replace on requests.
652
+ """
653
+ base_url = None
654
+ url_variables = None
655
+ if timeout_ms is None:
656
+ timeout_ms = self.sdk_configuration.timeout_ms
657
+
658
+ if server_url is not None:
659
+ base_url = server_url
660
+ else:
661
+ base_url = self._get_url(base_url, url_variables)
662
+
663
+ request = models.GetPacksByIDRequest(
664
+ id=id,
665
+ )
666
+
667
+ req = self._build_request_async(
668
+ method="GET",
669
+ path="/packs/{id}",
670
+ base_url=base_url,
671
+ url_variables=url_variables,
672
+ request=request,
673
+ request_body_required=False,
674
+ request_has_path_params=True,
675
+ request_has_query_params=True,
676
+ user_agent_header="user-agent",
677
+ accept_header_value="application/json",
678
+ http_headers=http_headers,
679
+ security=self.sdk_configuration.security,
680
+ timeout_ms=timeout_ms,
681
+ )
682
+
683
+ if retries == UNSET:
684
+ if self.sdk_configuration.retry_config is not UNSET:
685
+ retries = self.sdk_configuration.retry_config
686
+
687
+ retry_config = None
688
+ if isinstance(retries, utils.RetryConfig):
689
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
690
+
691
+ http_res = await self.do_request_async(
692
+ hook_ctx=HookContext(
693
+ config=self.sdk_configuration,
694
+ base_url=base_url or "",
695
+ operation_id="getPacksById",
696
+ oauth2_scopes=[],
697
+ security_source=get_security_from_env(
698
+ self.sdk_configuration.security, models.Security
699
+ ),
700
+ ),
701
+ request=req,
702
+ error_status_codes=["401", "4XX", "500", "5XX"],
703
+ retry_config=retry_config,
704
+ )
705
+
706
+ response_data: Any = None
707
+ if utils.match_response(http_res, "200", "application/json"):
708
+ return unmarshal_json_response(models.GetPacksByIDResponse, http_res)
709
+ if utils.match_response(http_res, "500", "application/json"):
710
+ response_data = unmarshal_json_response(errors.ErrorData, http_res)
711
+ raise errors.Error(response_data, http_res)
712
+ if utils.match_response(http_res, ["401", "4XX"], "*"):
713
+ http_res_text = await utils.stream_to_text_async(http_res)
714
+ raise errors.APIError("API error occurred", http_res, http_res_text)
715
+ if utils.match_response(http_res, "5XX", "*"):
716
+ http_res_text = await utils.stream_to_text_async(http_res)
717
+ raise errors.APIError("API error occurred", http_res, http_res_text)
718
+
719
+ raise errors.APIError("Unexpected response received", http_res)
720
+
625
721
  def update(
626
722
  self,
627
723
  *,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: cribl-control-plane
3
- Version: 0.0.35
3
+ Version: 0.0.37
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -374,9 +374,10 @@ with CriblControlPlane(
374
374
 
375
375
  ### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
376
376
 
377
- * [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Install a Pack
377
+ * [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Create or install a Pack
378
378
  * [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#list) - List all Packs
379
379
  * [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#delete) - Uninstall a Pack
380
+ * [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get) - Get a Pack
380
381
  * [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update) - Upgrade a Pack
381
382
 
382
383
  ### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
@@ -654,7 +655,7 @@ with CriblControlPlane(
654
655
 
655
656
 
656
657
  **Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
657
- * [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 61 methods.*
658
+ * [`HealthStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 62 methods.*
658
659
  * [`ResponseValidationError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
659
660
 
660
661
  </details>
@@ -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=_tY-BPzN6EsBOcRXXXu4AV-o1v7WnbwwOlDLOs_edD0,542
7
+ cribl_control_plane/_version.py,sha256=WUGjMTLzBm2c8UeY9fXaU-GQZGLrQpSF0tvgx6p-xUk,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=mhUAPiu9Bx-eIPCxw4FMOwxdXkaxFwGyyZ56VOm0zqE,55522
12
+ cribl_control_plane/commits.py,sha256=pfGBeS_uIwUKmd_naYOR6vV7XTO3NvRC82siyGNzyLU,55556
13
13
  cribl_control_plane/commits_files.py,sha256=XRqVF2UA_c2Ous3wFOehyUgYE_NiuE-dwzPglF4DEG4,15561
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
@@ -27,7 +27,7 @@ cribl_control_plane/health.py,sha256=mDYmC13IE_M9jTVKKBOr5aeZ5QArUURLT1PyPpvn5Ho
27
27
  cribl_control_plane/hectokens.py,sha256=0EGgGGrM83m1YmTZwkN5S4xFkHQGnw1IZe3y6uMwmLw,19151
28
28
  cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
29
29
  cribl_control_plane/lakedatasets.py,sha256=7WYWcjXMzliDW1j3TQlgikc_h54IUq4lsysVy_39l38,46578
30
- cribl_control_plane/models/__init__.py,sha256=eDdQJehlDD-0QQECTCEoTQvzoZNTZvm3jkSllxLntAI,354811
30
+ cribl_control_plane/models/__init__.py,sha256=Q5imb3AYwvJfVwWLAqMHm73CmeqsmbTm5TG1qNkC-34,358670
31
31
  cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
32
32
  cribl_control_plane/models/appmode.py,sha256=5xRJz9oP5ah4b6dcay4Q1IbQ9irm6k6x2BrTNysIMY4,300
33
33
  cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
@@ -77,6 +77,7 @@ cribl_control_plane/models/getmasterworkerentryop.py,sha256=dIMOw_dSQo-vP-iuDhaT
77
77
  cribl_control_plane/models/getoutputbyidop.py,sha256=Y8f9ZvCHlRE1cugt2APdigrcjLQz7R5jpkrLVUcDNcI,1128
78
78
  cribl_control_plane/models/getoutputpqbyidop.py,sha256=XYx-GSqqhY30IVvZUc3d87UUOuJ9t3xjuKamK1DUJjQ,1140
79
79
  cribl_control_plane/models/getoutputsamplesbyidop.py,sha256=H07FC4EXq5nfssP7d9ikjsXMc3L7lykHC26uh9rPjBI,1295
80
+ cribl_control_plane/models/getpacksbyidop.py,sha256=OvlicPyqRImbhJ6tJwA8WGf1HX0KnsqVFguSh-SEb4s,1114
80
81
  cribl_control_plane/models/getpacksop.py,sha256=LztkNqAPv55ipG4A0sMdgUrA5bRhdMLr6VtKLA_rQPs,1561
81
82
  cribl_control_plane/models/getpipelinebyidop.py,sha256=ky8YvLZRrUCs4HTiAvMcQ-nfIWb8Ke7NeDJMw1xdEho,1080
82
83
  cribl_control_plane/models/getroutesbyidop.py,sha256=9TeXnLc_WkHoAYbykYxlDP-I0AzsrlYi-iA28jhmpZ8,1058
@@ -95,14 +96,14 @@ cribl_control_plane/models/gitfile.py,sha256=CMk0Xm08WFtUX73TaKBNAyRagZh-DMIY-m3
95
96
  cribl_control_plane/models/gitfilesresponse.py,sha256=_xLOHOuJLUdy3BYCrkUQN8x5YLfrXcdCis57x2N32jo,670
96
97
  cribl_control_plane/models/gitinfo.py,sha256=Xbct3PSJJVYojIDLtzy2mB_wNWsgiBgnsT9ZfjN0A-U,515
97
98
  cribl_control_plane/models/gitlogresult.py,sha256=JSTXgsLOce7j1z0mJGALXWeOR7pclWzY0T_8gUJdzNk,830
98
- cribl_control_plane/models/gitrevertparams.py,sha256=oOi4wQfztxF4BmfFcRh4-t2Ny6ptONar6MpafcqGr5U,448
99
+ cribl_control_plane/models/gitrevertparams.py,sha256=wMVlEcrprmZHUA01vi3CC8fMMDFqURJndv-1LaF2gik,478
99
100
  cribl_control_plane/models/gitrevertresult.py,sha256=RQ7-QhPP7zerEEF2bUhVI_IVft7tqYVOZrNLCWeB32c,1056
100
101
  cribl_control_plane/models/gitstatusresult.py,sha256=7-pEpOnb4xzQwWo3rPBRN0tbM6UdG4KSIhkiUPyU3to,1166
101
102
  cribl_control_plane/models/hbcriblinfo.py,sha256=hA2OxTBrrdu2q5XH5UzfEQUQJ6OKEctujlMjFa4IEts,2262
102
103
  cribl_control_plane/models/hbleaderinfo.py,sha256=SU5iM_I4sqxoTOzAQsw-rpOMfXwKl1ymze9nUrw6z6U,503
103
104
  cribl_control_plane/models/healthstatus.py,sha256=u4ePDejWSLI7yhfFxKyB5GVkihAG_z9PcHqCA2H9-e0,735
104
105
  cribl_control_plane/models/heartbeatmetadata.py,sha256=IlLu0BnjnwBeXQtZSk4YUj9gKiI8n95ipYJ2Og2x1IQ,2255
105
- cribl_control_plane/models/input.py,sha256=4qlV6EpZXaMEhMZlBQttRorUScSA8xNc-9kv94lgbhQ,7552
106
+ cribl_control_plane/models/input.py,sha256=NiVMXM0A09Pg9L-Jow4gqb0YR6j2q0Wlv31fcAC6YGg,7682
106
107
  cribl_control_plane/models/inputappscope.py,sha256=112rxjGeZtRPXnUiW6ZdFm3C32vO_BWsRRdH6Ckw3rg,19935
107
108
  cribl_control_plane/models/inputazureblob.py,sha256=Uc3rFKDNQfoywHkw9x-3-UxFypWLFBXBglp7ga5UiJA,14822
108
109
  cribl_control_plane/models/inputcollection.py,sha256=KzesuvW-qfuPeLygKp1peNx-hrIUeGqsYb2g-Ls8u2A,9267
@@ -112,7 +113,7 @@ cribl_control_plane/models/inputcriblhttp.py,sha256=aN0ncENh1-hRgk9F2-DxzxD5fxyq
112
113
  cribl_control_plane/models/inputcribllakehttp.py,sha256=FrNAVqueYQ3wDHTwTwTJM2i6OZY72g3ex7yZzTIWlPc,18492
113
114
  cribl_control_plane/models/inputcriblmetrics.py,sha256=JL23J9LaC45yqQGPfQJYt9T1YxorsMD1eCu8HEI9rsI,8137
114
115
  cribl_control_plane/models/inputcribltcp.py,sha256=Cah0ohHRubWJGuVJpYufwGaTKLTrjMCGhB1QvIO82fE,13124
115
- cribl_control_plane/models/inputcrowdstrike.py,sha256=LU5JWyvLCl8oNRVv7wOkz9LxYelh5VUuj1SViRC4RYs,20213
116
+ cribl_control_plane/models/inputcrowdstrike.py,sha256=LPt7e2LAOMxhwL5FJOSqm8YorFkg7D45d4jnPiX8-FY,20239
116
117
  cribl_control_plane/models/inputdatadogagent.py,sha256=AoPicjgw6myp1K_G56uAnR-O7ajtmptGwKlsNsPevyk,16892
117
118
  cribl_control_plane/models/inputdatagen.py,sha256=bgm6NJZcUje88mFIu6KGmcNGEGmOFGn8JzrUZ7TLepg,7386
118
119
  cribl_control_plane/models/inputedgeprometheus.py,sha256=mMbSdxopLC9xeuKoPCje1Xt0HJ4WY23XUKr_QP-GvEk,21730
@@ -143,9 +144,9 @@ cribl_control_plane/models/inputopentelemetry.py,sha256=lWJ0_ztPq-esioxSbWka1U1e
143
144
  cribl_control_plane/models/inputprometheus.py,sha256=EVHFBpI7sGABBsrtnM9Rf0Kl56ifUagesSkqrdc6das,19441
144
145
  cribl_control_plane/models/inputprometheusrw.py,sha256=BhAljCnyEYN4cLWIUAzU12cUO-EMt1S0u80RK-dNjPY,20864
145
146
  cribl_control_plane/models/inputrawudp.py,sha256=rPcPMUL2Wwg84T9Ru3962jmciWzF-wzmqdKgAg_bvFs,9525
146
- cribl_control_plane/models/inputs3.py,sha256=2qKrt0cXXPsS0dpE-vi5vSTtSQZrHCDsg1I4oiQyEHE,20643
147
- cribl_control_plane/models/inputs3inventory.py,sha256=h48zpDJ8Tq5_MLw_lNjadZZoHv-tML9DFudYyTEHbX4,22067
148
- cribl_control_plane/models/inputsecuritylake.py,sha256=90bFlzf1xYHbgUg52VsyrTnlXMjDlQtXTU1dA3eh7-0,21016
147
+ cribl_control_plane/models/inputs3.py,sha256=9gNXWDtc1B76Zz39O4BvEDtcuOeyyKY4x1gwJl2N9Xk,20669
148
+ cribl_control_plane/models/inputs3inventory.py,sha256=ykP4s6VRbXUeUewXbDLdOfU6_zM0f-iwx1m215WCvVU,22093
149
+ cribl_control_plane/models/inputsecuritylake.py,sha256=BgWwS_ZweFzd_mV7WQbnlYLqsPxilGCZAzH-t9-v-h0,21042
149
150
  cribl_control_plane/models/inputsnmp.py,sha256=f4r7_-OC5EQsa__-iuh78F-Qd5fkmEIflN6-giDuHeo,11860
150
151
  cribl_control_plane/models/inputsplunk.py,sha256=tBTnIiCGHqCUl7m4dkPdmMIlvadmzQLEJK95ulnUFYU,17278
151
152
  cribl_control_plane/models/inputsplunkhec.py,sha256=LDA9Jrn6Fj1oQn72AwcDLXtHM1rwTj2qEh-GQiHCoCU,22440
@@ -160,6 +161,7 @@ cribl_control_plane/models/inputwef.py,sha256=tqoo8N7erQd-xbJGun5qoYi40Wn7_d-9H7
160
161
  cribl_control_plane/models/inputwindowsmetrics.py,sha256=c7Izs2mRg6QKR7m2_NoXM3iecCcV_anX5dIRhW27YUU,17026
161
162
  cribl_control_plane/models/inputwineventlogs.py,sha256=RzYw6fuROAoT8Gkw8NdXKamUhjVuCk5E8E25LCZh5LI,9947
162
163
  cribl_control_plane/models/inputwiz.py,sha256=QidRJ_uRDP0TkYPM-Gi681GEMvHsiNK4k3N_Q9Bag_E,14508
164
+ cribl_control_plane/models/inputwizwebhook.py,sha256=nqq62GRGlNH3nY4DmQjq1sNJ0XSMydBCuh1_Xu2drXA,18569
163
165
  cribl_control_plane/models/inputzscalerhec.py,sha256=fWXEs_RTlz8fxDlWuo0hxmZH-DjslyKbkLaxXksrcvc,20140
164
166
  cribl_control_plane/models/lakedatasetsearchconfig.py,sha256=R0zz0K1FQ3gxPx44ezINy9y2bEFBGIWyvniF25D7Ydw,591
165
167
  cribl_control_plane/models/lakehouseconnectiontype.py,sha256=W8X07YtfXxwYYkwugN9u65vXfL701NHj3cUWIYys7T0,223
@@ -248,7 +250,7 @@ cribl_control_plane/models/outputwebhook.py,sha256=Ljeeb4S4zwyKP-oWdWEWD7FLtBiKT
248
250
  cribl_control_plane/models/outputxsiam.py,sha256=BaCAvUqmCnFIXv3vmUZJiM2aW2ebNZqJVTdBjWaroZE,19553
249
251
  cribl_control_plane/models/packinfo.py,sha256=HMron4as9lO-Upq5w5vQNaTy0WziZ6UueLZhLcpG7zU,1784
250
252
  cribl_control_plane/models/packinstallinfo.py,sha256=mrnU3uJDRabfGUHKP5tSS7VJ-PyQ5_gkoc0NUhd3Dms,1863
251
- cribl_control_plane/models/packrequestbody.py,sha256=xNPZ7fLLI4xzFh0dkOtpW9hsUxT7ymkL3-MNXf1KH2Y,1835
253
+ cribl_control_plane/models/packrequestbody_union.py,sha256=EGDpybuIL6SAXT_mHnaFCm6PtEH3dTdTu999-7rmgKA,3897
252
254
  cribl_control_plane/models/pipeline.py,sha256=AaoC5euxac-fwul-LM1mNf03hCzrXmHQGZLMrUWuS4g,2130
253
255
  cribl_control_plane/models/pipelinefunctionconf.py,sha256=X61RPaoYpa_UZWavnQiNSaXlXqS2EdUK51MQ02IvCeo,1646
254
256
  cribl_control_plane/models/productscore.py,sha256=SF_xmbDLnEr0yTjwErGLwuDdn2wFy7mw3fSMyIs_Jwc,203
@@ -274,7 +276,7 @@ cribl_control_plane/models/updateroutesbyidop.py,sha256=CoEURdSBZ4-pp1WSncdT_oZC
274
276
  cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
275
277
  cribl_control_plane/models/workertypes.py,sha256=qphL2wkL55CU8V7xBts2lsMMi6IaA7LhUvKL_9xMod4,218
276
278
  cribl_control_plane/nodes.py,sha256=015pTP--RfK2YFrMRgBe8ha32Mp_38JGDYdxkGdjtzY,17429
277
- cribl_control_plane/packs.py,sha256=IroglHMxt4opjPUmCujym5UXPfxfto13zF2e4c48VoQ,33394
279
+ cribl_control_plane/packs.py,sha256=EypDmXaTZpivRSfsoBig1x4QyT-teSzNCMWWoD_n-wA,37877
278
280
  cribl_control_plane/pipelines.py,sha256=gHyI9nwt_3cxBQ7gt6EPUPs9NuRC0iA_PoFRAE4Z-V8,35892
279
281
  cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
280
282
  cribl_control_plane/routes_sdk.py,sha256=Snb8Dmim7Fm9EsMqbyjuPnXKmqhJ10L_t1bujJUWTyM,31025
@@ -307,6 +309,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
307
309
  cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
308
310
  cribl_control_plane/versions.py,sha256=Wdaxc2wZeEeD12wAh7SQ0RGG9KgwKaWQ7bc8qOQ8oAo,920
309
311
  cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
310
- cribl_control_plane-0.0.35.dist-info/METADATA,sha256=fOq1_eRXBfDTvI3Aja_79Yuwr3zj89YLF7yHztISP_Y,38713
311
- cribl_control_plane-0.0.35.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
312
- cribl_control_plane-0.0.35.dist-info/RECORD,,
312
+ cribl_control_plane-0.0.37.dist-info/METADATA,sha256=MFN-LGmnaNRkOvVH-7M9k5B5fjULskNmfGpo-HJK070,38845
313
+ cribl_control_plane-0.0.37.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
314
+ cribl_control_plane-0.0.37.dist-info/RECORD,,
@@ -1,75 +0,0 @@
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
- import pydantic
6
- from typing import List, Optional
7
- from typing_extensions import Annotated, NotRequired, TypedDict
8
-
9
-
10
- class PackRequestBodyTagsTypedDict(TypedDict):
11
- data_type: List[str]
12
- domain: List[str]
13
- streamtags: List[str]
14
- technology: List[str]
15
-
16
-
17
- class PackRequestBodyTags(BaseModel):
18
- data_type: Annotated[List[str], pydantic.Field(alias="dataType")]
19
-
20
- domain: List[str]
21
-
22
- streamtags: List[str]
23
-
24
- technology: List[str]
25
-
26
-
27
- class PackRequestBodyTypedDict(TypedDict):
28
- id: str
29
- source: str
30
- allow_custom_functions: NotRequired[bool]
31
- author: NotRequired[str]
32
- description: NotRequired[str]
33
- display_name: NotRequired[str]
34
- exports: NotRequired[List[str]]
35
- force: NotRequired[bool]
36
- inputs: NotRequired[float]
37
- min_log_stream_version: NotRequired[str]
38
- outputs: NotRequired[float]
39
- spec: NotRequired[str]
40
- tags: NotRequired[PackRequestBodyTagsTypedDict]
41
- version: NotRequired[str]
42
-
43
-
44
- class PackRequestBody(BaseModel):
45
- id: str
46
-
47
- source: str
48
-
49
- allow_custom_functions: Annotated[
50
- Optional[bool], pydantic.Field(alias="allowCustomFunctions")
51
- ] = None
52
-
53
- author: Optional[str] = None
54
-
55
- description: Optional[str] = None
56
-
57
- display_name: Annotated[Optional[str], pydantic.Field(alias="displayName")] = None
58
-
59
- exports: Optional[List[str]] = None
60
-
61
- force: Optional[bool] = None
62
-
63
- inputs: Optional[float] = None
64
-
65
- min_log_stream_version: Annotated[
66
- Optional[str], pydantic.Field(alias="minLogStreamVersion")
67
- ] = None
68
-
69
- outputs: Optional[float] = None
70
-
71
- spec: Optional[str] = None
72
-
73
- tags: Optional[PackRequestBodyTags] = None
74
-
75
- version: Optional[str] = None