cribl-control-plane 0.0.36__py3-none-any.whl → 0.0.37a1__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/commits.py +4 -4
- cribl_control_plane/models/__init__.py +189 -487
- cribl_control_plane/models/gitrevertparams.py +3 -3
- cribl_control_plane/models/input.py +76 -77
- cribl_control_plane/models/inputgrafana.py +67 -678
- cribl_control_plane/models/inputsyslog.py +37 -406
- cribl_control_plane/models/output.py +77 -75
- cribl_control_plane/models/outputgrafanacloud.py +69 -565
- cribl_control_plane/packs.py +0 -174
- {cribl_control_plane-0.0.36.dist-info → cribl_control_plane-0.0.37a1.dist-info}/METADATA +2 -3
- {cribl_control_plane-0.0.36.dist-info → cribl_control_plane-0.0.37a1.dist-info}/RECORD +13 -15
- cribl_control_plane/models/getpacksbyidop.py +0 -37
- cribl_control_plane/models/inputwizwebhook.py +0 -393
- {cribl_control_plane-0.0.36.dist-info → cribl_control_plane-0.0.37a1.dist-info}/WHEEL +0 -0
cribl_control_plane/packs.py
CHANGED
|
@@ -622,180 +622,6 @@ class Packs(BaseSDK):
|
|
|
622
622
|
|
|
623
623
|
raise errors.APIError("Unexpected response received", http_res)
|
|
624
624
|
|
|
625
|
-
def get(
|
|
626
|
-
self,
|
|
627
|
-
*,
|
|
628
|
-
id: str,
|
|
629
|
-
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
630
|
-
server_url: Optional[str] = None,
|
|
631
|
-
timeout_ms: Optional[int] = None,
|
|
632
|
-
http_headers: Optional[Mapping[str, str]] = None,
|
|
633
|
-
) -> models.GetPacksByIDResponse:
|
|
634
|
-
r"""Get a Pack
|
|
635
|
-
|
|
636
|
-
Get the specified Pack.
|
|
637
|
-
|
|
638
|
-
:param id: The <code>id</code> of the Pack to get.
|
|
639
|
-
:param retries: Override the default retry configuration for this method
|
|
640
|
-
:param server_url: Override the default server URL for this method
|
|
641
|
-
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
642
|
-
:param http_headers: Additional headers to set or replace on requests.
|
|
643
|
-
"""
|
|
644
|
-
base_url = None
|
|
645
|
-
url_variables = None
|
|
646
|
-
if timeout_ms is None:
|
|
647
|
-
timeout_ms = self.sdk_configuration.timeout_ms
|
|
648
|
-
|
|
649
|
-
if server_url is not None:
|
|
650
|
-
base_url = server_url
|
|
651
|
-
else:
|
|
652
|
-
base_url = self._get_url(base_url, url_variables)
|
|
653
|
-
|
|
654
|
-
request = models.GetPacksByIDRequest(
|
|
655
|
-
id=id,
|
|
656
|
-
)
|
|
657
|
-
|
|
658
|
-
req = self._build_request(
|
|
659
|
-
method="GET",
|
|
660
|
-
path="/packs/{id}",
|
|
661
|
-
base_url=base_url,
|
|
662
|
-
url_variables=url_variables,
|
|
663
|
-
request=request,
|
|
664
|
-
request_body_required=False,
|
|
665
|
-
request_has_path_params=True,
|
|
666
|
-
request_has_query_params=True,
|
|
667
|
-
user_agent_header="user-agent",
|
|
668
|
-
accept_header_value="application/json",
|
|
669
|
-
http_headers=http_headers,
|
|
670
|
-
security=self.sdk_configuration.security,
|
|
671
|
-
timeout_ms=timeout_ms,
|
|
672
|
-
)
|
|
673
|
-
|
|
674
|
-
if retries == UNSET:
|
|
675
|
-
if self.sdk_configuration.retry_config is not UNSET:
|
|
676
|
-
retries = self.sdk_configuration.retry_config
|
|
677
|
-
|
|
678
|
-
retry_config = None
|
|
679
|
-
if isinstance(retries, utils.RetryConfig):
|
|
680
|
-
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
681
|
-
|
|
682
|
-
http_res = self.do_request(
|
|
683
|
-
hook_ctx=HookContext(
|
|
684
|
-
config=self.sdk_configuration,
|
|
685
|
-
base_url=base_url or "",
|
|
686
|
-
operation_id="getPacksById",
|
|
687
|
-
oauth2_scopes=[],
|
|
688
|
-
security_source=get_security_from_env(
|
|
689
|
-
self.sdk_configuration.security, models.Security
|
|
690
|
-
),
|
|
691
|
-
),
|
|
692
|
-
request=req,
|
|
693
|
-
error_status_codes=["401", "4XX", "500", "5XX"],
|
|
694
|
-
retry_config=retry_config,
|
|
695
|
-
)
|
|
696
|
-
|
|
697
|
-
response_data: Any = None
|
|
698
|
-
if utils.match_response(http_res, "200", "application/json"):
|
|
699
|
-
return unmarshal_json_response(models.GetPacksByIDResponse, http_res)
|
|
700
|
-
if utils.match_response(http_res, "500", "application/json"):
|
|
701
|
-
response_data = unmarshal_json_response(errors.ErrorData, http_res)
|
|
702
|
-
raise errors.Error(response_data, http_res)
|
|
703
|
-
if utils.match_response(http_res, ["401", "4XX"], "*"):
|
|
704
|
-
http_res_text = utils.stream_to_text(http_res)
|
|
705
|
-
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
706
|
-
if utils.match_response(http_res, "5XX", "*"):
|
|
707
|
-
http_res_text = utils.stream_to_text(http_res)
|
|
708
|
-
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
709
|
-
|
|
710
|
-
raise errors.APIError("Unexpected response received", http_res)
|
|
711
|
-
|
|
712
|
-
async def get_async(
|
|
713
|
-
self,
|
|
714
|
-
*,
|
|
715
|
-
id: str,
|
|
716
|
-
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
717
|
-
server_url: Optional[str] = None,
|
|
718
|
-
timeout_ms: Optional[int] = None,
|
|
719
|
-
http_headers: Optional[Mapping[str, str]] = None,
|
|
720
|
-
) -> models.GetPacksByIDResponse:
|
|
721
|
-
r"""Get a Pack
|
|
722
|
-
|
|
723
|
-
Get the specified Pack.
|
|
724
|
-
|
|
725
|
-
:param id: The <code>id</code> of the Pack to get.
|
|
726
|
-
:param retries: Override the default retry configuration for this method
|
|
727
|
-
:param server_url: Override the default server URL for this method
|
|
728
|
-
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
729
|
-
:param http_headers: Additional headers to set or replace on requests.
|
|
730
|
-
"""
|
|
731
|
-
base_url = None
|
|
732
|
-
url_variables = None
|
|
733
|
-
if timeout_ms is None:
|
|
734
|
-
timeout_ms = self.sdk_configuration.timeout_ms
|
|
735
|
-
|
|
736
|
-
if server_url is not None:
|
|
737
|
-
base_url = server_url
|
|
738
|
-
else:
|
|
739
|
-
base_url = self._get_url(base_url, url_variables)
|
|
740
|
-
|
|
741
|
-
request = models.GetPacksByIDRequest(
|
|
742
|
-
id=id,
|
|
743
|
-
)
|
|
744
|
-
|
|
745
|
-
req = self._build_request_async(
|
|
746
|
-
method="GET",
|
|
747
|
-
path="/packs/{id}",
|
|
748
|
-
base_url=base_url,
|
|
749
|
-
url_variables=url_variables,
|
|
750
|
-
request=request,
|
|
751
|
-
request_body_required=False,
|
|
752
|
-
request_has_path_params=True,
|
|
753
|
-
request_has_query_params=True,
|
|
754
|
-
user_agent_header="user-agent",
|
|
755
|
-
accept_header_value="application/json",
|
|
756
|
-
http_headers=http_headers,
|
|
757
|
-
security=self.sdk_configuration.security,
|
|
758
|
-
timeout_ms=timeout_ms,
|
|
759
|
-
)
|
|
760
|
-
|
|
761
|
-
if retries == UNSET:
|
|
762
|
-
if self.sdk_configuration.retry_config is not UNSET:
|
|
763
|
-
retries = self.sdk_configuration.retry_config
|
|
764
|
-
|
|
765
|
-
retry_config = None
|
|
766
|
-
if isinstance(retries, utils.RetryConfig):
|
|
767
|
-
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
768
|
-
|
|
769
|
-
http_res = await self.do_request_async(
|
|
770
|
-
hook_ctx=HookContext(
|
|
771
|
-
config=self.sdk_configuration,
|
|
772
|
-
base_url=base_url or "",
|
|
773
|
-
operation_id="getPacksById",
|
|
774
|
-
oauth2_scopes=[],
|
|
775
|
-
security_source=get_security_from_env(
|
|
776
|
-
self.sdk_configuration.security, models.Security
|
|
777
|
-
),
|
|
778
|
-
),
|
|
779
|
-
request=req,
|
|
780
|
-
error_status_codes=["401", "4XX", "500", "5XX"],
|
|
781
|
-
retry_config=retry_config,
|
|
782
|
-
)
|
|
783
|
-
|
|
784
|
-
response_data: Any = None
|
|
785
|
-
if utils.match_response(http_res, "200", "application/json"):
|
|
786
|
-
return unmarshal_json_response(models.GetPacksByIDResponse, http_res)
|
|
787
|
-
if utils.match_response(http_res, "500", "application/json"):
|
|
788
|
-
response_data = unmarshal_json_response(errors.ErrorData, http_res)
|
|
789
|
-
raise errors.Error(response_data, http_res)
|
|
790
|
-
if utils.match_response(http_res, ["401", "4XX"], "*"):
|
|
791
|
-
http_res_text = await utils.stream_to_text_async(http_res)
|
|
792
|
-
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
793
|
-
if utils.match_response(http_res, "5XX", "*"):
|
|
794
|
-
http_res_text = await utils.stream_to_text_async(http_res)
|
|
795
|
-
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
796
|
-
|
|
797
|
-
raise errors.APIError("Unexpected response received", http_res)
|
|
798
|
-
|
|
799
625
|
def update(
|
|
800
626
|
self,
|
|
801
627
|
*,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.37a1
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -377,7 +377,6 @@ with CriblControlPlane(
|
|
|
377
377
|
* [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - 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
|
|
381
380
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update) - Upgrade a Pack
|
|
382
381
|
|
|
383
382
|
### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
|
|
@@ -655,7 +654,7 @@ with CriblControlPlane(
|
|
|
655
654
|
|
|
656
655
|
|
|
657
656
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
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
|
|
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.*
|
|
659
658
|
* [`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.
|
|
660
659
|
|
|
661
660
|
</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=
|
|
7
|
+
cribl_control_plane/_version.py,sha256=NsiCM_aqAVNe0eFtiduQ47DMs6OrR3aVB0KpN3ZOtIk,546
|
|
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=
|
|
12
|
+
cribl_control_plane/commits.py,sha256=mhUAPiu9Bx-eIPCxw4FMOwxdXkaxFwGyyZ56VOm0zqE,55522
|
|
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=
|
|
30
|
+
cribl_control_plane/models/__init__.py,sha256=8xxjncxyjkiVXCe-wRTxsI5tKO3ccgTTVcgC5LTCGmI,344502
|
|
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,7 +77,6 @@ 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
|
|
81
80
|
cribl_control_plane/models/getpacksop.py,sha256=LztkNqAPv55ipG4A0sMdgUrA5bRhdMLr6VtKLA_rQPs,1561
|
|
82
81
|
cribl_control_plane/models/getpipelinebyidop.py,sha256=ky8YvLZRrUCs4HTiAvMcQ-nfIWb8Ke7NeDJMw1xdEho,1080
|
|
83
82
|
cribl_control_plane/models/getroutesbyidop.py,sha256=9TeXnLc_WkHoAYbykYxlDP-I0AzsrlYi-iA28jhmpZ8,1058
|
|
@@ -96,14 +95,14 @@ cribl_control_plane/models/gitfile.py,sha256=CMk0Xm08WFtUX73TaKBNAyRagZh-DMIY-m3
|
|
|
96
95
|
cribl_control_plane/models/gitfilesresponse.py,sha256=_xLOHOuJLUdy3BYCrkUQN8x5YLfrXcdCis57x2N32jo,670
|
|
97
96
|
cribl_control_plane/models/gitinfo.py,sha256=Xbct3PSJJVYojIDLtzy2mB_wNWsgiBgnsT9ZfjN0A-U,515
|
|
98
97
|
cribl_control_plane/models/gitlogresult.py,sha256=JSTXgsLOce7j1z0mJGALXWeOR7pclWzY0T_8gUJdzNk,830
|
|
99
|
-
cribl_control_plane/models/gitrevertparams.py,sha256=
|
|
98
|
+
cribl_control_plane/models/gitrevertparams.py,sha256=oOi4wQfztxF4BmfFcRh4-t2Ny6ptONar6MpafcqGr5U,448
|
|
100
99
|
cribl_control_plane/models/gitrevertresult.py,sha256=RQ7-QhPP7zerEEF2bUhVI_IVft7tqYVOZrNLCWeB32c,1056
|
|
101
100
|
cribl_control_plane/models/gitstatusresult.py,sha256=7-pEpOnb4xzQwWo3rPBRN0tbM6UdG4KSIhkiUPyU3to,1166
|
|
102
101
|
cribl_control_plane/models/hbcriblinfo.py,sha256=hA2OxTBrrdu2q5XH5UzfEQUQJ6OKEctujlMjFa4IEts,2262
|
|
103
102
|
cribl_control_plane/models/hbleaderinfo.py,sha256=SU5iM_I4sqxoTOzAQsw-rpOMfXwKl1ymze9nUrw6z6U,503
|
|
104
103
|
cribl_control_plane/models/healthstatus.py,sha256=u4ePDejWSLI7yhfFxKyB5GVkihAG_z9PcHqCA2H9-e0,735
|
|
105
104
|
cribl_control_plane/models/heartbeatmetadata.py,sha256=IlLu0BnjnwBeXQtZSk4YUj9gKiI8n95ipYJ2Og2x1IQ,2255
|
|
106
|
-
cribl_control_plane/models/input.py,sha256=
|
|
105
|
+
cribl_control_plane/models/input.py,sha256=bX1dJQVAZz65tTCgoAygeAm9vdfdPC-nXl98EK5oYoo,9417
|
|
107
106
|
cribl_control_plane/models/inputappscope.py,sha256=112rxjGeZtRPXnUiW6ZdFm3C32vO_BWsRRdH6Ckw3rg,19935
|
|
108
107
|
cribl_control_plane/models/inputazureblob.py,sha256=Uc3rFKDNQfoywHkw9x-3-UxFypWLFBXBglp7ga5UiJA,14822
|
|
109
108
|
cribl_control_plane/models/inputcollection.py,sha256=KzesuvW-qfuPeLygKp1peNx-hrIUeGqsYb2g-Ls8u2A,9267
|
|
@@ -123,7 +122,7 @@ cribl_control_plane/models/inputexec.py,sha256=rYwqSCjDjJ7NeoW11QO0hnThKWpcS2BtR
|
|
|
123
122
|
cribl_control_plane/models/inputfile.py,sha256=GFWbovnbdBk6AnPOn8voxa3UIsg4rpaBeUtQ5l6OjNo,11985
|
|
124
123
|
cribl_control_plane/models/inputfirehose.py,sha256=KFKke5wUYsWG-lFeCAF4YBtNGH0Y09RRPkzPS807dgg,15267
|
|
125
124
|
cribl_control_plane/models/inputgooglepubsub.py,sha256=H-JuB17EhImTONWXHWNJuJL0VBcVPwlMYAJLi2Keznw,12611
|
|
126
|
-
cribl_control_plane/models/inputgrafana.py,sha256=
|
|
125
|
+
cribl_control_plane/models/inputgrafana.py,sha256=Kcuw94S7yW7b1ygai-POKScpfFumCKlbdXP9nC1ZBxw,28446
|
|
127
126
|
cribl_control_plane/models/inputhttp.py,sha256=4meVC8SB0Mh1fG2JYCty43MMsRXtR_NnSBYmQWobUW4,18040
|
|
128
127
|
cribl_control_plane/models/inputhttpraw.py,sha256=begqbeN0hlSuOc-pIHS1F7Zhs3D5l1z-FxQEI6zCcpg,18415
|
|
129
128
|
cribl_control_plane/models/inputjournalfiles.py,sha256=IF0wYDZarqbNs4aFaAtZjaeNDubdf-gtqDV1wG9CKvM,9397
|
|
@@ -152,7 +151,7 @@ cribl_control_plane/models/inputsplunk.py,sha256=tBTnIiCGHqCUl7m4dkPdmMIlvadmzQL
|
|
|
152
151
|
cribl_control_plane/models/inputsplunkhec.py,sha256=LDA9Jrn6Fj1oQn72AwcDLXtHM1rwTj2qEh-GQiHCoCU,22440
|
|
153
152
|
cribl_control_plane/models/inputsplunksearch.py,sha256=gv4IxqpoRdMhL5v-nYDCLf2wU_DxsZlvLIUZdo7Hnps,24419
|
|
154
153
|
cribl_control_plane/models/inputsqs.py,sha256=0dY2TKi96KZKWp070ftpKZ8eRYLuCWCcMre2Xq_Vmv4,14947
|
|
155
|
-
cribl_control_plane/models/inputsyslog.py,sha256=
|
|
154
|
+
cribl_control_plane/models/inputsyslog.py,sha256=FtvQc4KgpTh-KxD5uTcPL5JTNiTnvb1j_KYzU2mpS0w,18034
|
|
156
155
|
cribl_control_plane/models/inputsystemmetrics.py,sha256=Y8yGRPatJquHGSChX7aGcf9nhNY7i8IDLZ7i3EkQCts,19637
|
|
157
156
|
cribl_control_plane/models/inputsystemstate.py,sha256=N3_7zVfAg6a69UCcG4gbTHZSkxGlMv5VGTPnZnPgmQk,15377
|
|
158
157
|
cribl_control_plane/models/inputtcp.py,sha256=JtWM3aP-qN08z6xPDllAxZuXV-K3tgVjWIj61L3-21I,16145
|
|
@@ -161,7 +160,6 @@ cribl_control_plane/models/inputwef.py,sha256=tqoo8N7erQd-xbJGun5qoYi40Wn7_d-9H7
|
|
|
161
160
|
cribl_control_plane/models/inputwindowsmetrics.py,sha256=c7Izs2mRg6QKR7m2_NoXM3iecCcV_anX5dIRhW27YUU,17026
|
|
162
161
|
cribl_control_plane/models/inputwineventlogs.py,sha256=RzYw6fuROAoT8Gkw8NdXKamUhjVuCk5E8E25LCZh5LI,9947
|
|
163
162
|
cribl_control_plane/models/inputwiz.py,sha256=QidRJ_uRDP0TkYPM-Gi681GEMvHsiNK4k3N_Q9Bag_E,14508
|
|
164
|
-
cribl_control_plane/models/inputwizwebhook.py,sha256=nqq62GRGlNH3nY4DmQjq1sNJ0XSMydBCuh1_Xu2drXA,18569
|
|
165
163
|
cribl_control_plane/models/inputzscalerhec.py,sha256=fWXEs_RTlz8fxDlWuo0hxmZH-DjslyKbkLaxXksrcvc,20140
|
|
166
164
|
cribl_control_plane/models/lakedatasetsearchconfig.py,sha256=R0zz0K1FQ3gxPx44ezINy9y2bEFBGIWyvniF25D7Ydw,591
|
|
167
165
|
cribl_control_plane/models/lakehouseconnectiontype.py,sha256=W8X07YtfXxwYYkwugN9u65vXfL701NHj3cUWIYys7T0,223
|
|
@@ -180,7 +178,7 @@ cribl_control_plane/models/nodeprovidedinfo.py,sha256=lw5JFVcnoetmbF0XSxX4Cyw0_Q
|
|
|
180
178
|
cribl_control_plane/models/nodeskippedupgradestatus.py,sha256=wJYUEDcCTx6Mrivh_0uEGspLenHKueWE9mVcjTycaL8,226
|
|
181
179
|
cribl_control_plane/models/nodeupgradestate.py,sha256=8zbj0lofMbq89B3lv5gEIS7d1DKHINxQtdqptVE3sSQ,218
|
|
182
180
|
cribl_control_plane/models/nodeupgradestatus.py,sha256=HlNRUmka5xuPdL-2UupJIe5q1_imCKHUWQQBTIpDCHM,966
|
|
183
|
-
cribl_control_plane/models/output.py,sha256=
|
|
181
|
+
cribl_control_plane/models/output.py,sha256=rdWhcZl0cpXEzZT_L6saDLpXEb3bmHmwcg28wK6tN4E,10743
|
|
184
182
|
cribl_control_plane/models/outputazureblob.py,sha256=3mOrHtABPHbwPdx36qjAIyyxbplfgSHSkjTdXXiqi9g,21928
|
|
185
183
|
cribl_control_plane/models/outputazuredataexplorer.py,sha256=BXSQBt04zbut9kK0OSrCMHDGONbnBZ9iLrlpBBACskM,30054
|
|
186
184
|
cribl_control_plane/models/outputazureeventhub.py,sha256=2-4l-5D5Q5UgKcAd_ZrlCyUipYboPPWRFMOV3dL9Vg8,14767
|
|
@@ -208,7 +206,7 @@ cribl_control_plane/models/outputgooglechronicle.py,sha256=V9WA5XukdQbqjSYEJXEcd
|
|
|
208
206
|
cribl_control_plane/models/outputgooglecloudlogging.py,sha256=8BVEEk4NsXPAIrzK087_DCJWREO6C36KpJs4SimVPWY,33585
|
|
209
207
|
cribl_control_plane/models/outputgooglecloudstorage.py,sha256=yJI9xSgu9XTsDtRBS_dMZdfLpKv2t4cyi4Px8hYuSM4,22385
|
|
210
208
|
cribl_control_plane/models/outputgooglepubsub.py,sha256=TPTU3z6xXKd2MFIkViytHJU12WvnQnY-7rI-d4GbFPI,12231
|
|
211
|
-
cribl_control_plane/models/outputgrafanacloud.py,sha256=
|
|
209
|
+
cribl_control_plane/models/outputgrafanacloud.py,sha256=bGDM0u_kXoCJfh9tc6z2tFndaf-QVuRQhUgeBHmqU6s,26343
|
|
212
210
|
cribl_control_plane/models/outputgraphite.py,sha256=96YvOtlivN9IxPvVerjj_30RNfnn9tKcvEWsH2nzMc4,9770
|
|
213
211
|
cribl_control_plane/models/outputhoneycomb.py,sha256=-XgAb04SQ5Bg9W2ZeUH0RdMXptYS0fRFtCzhb7bRpvA,17091
|
|
214
212
|
cribl_control_plane/models/outputhumiohec.py,sha256=7A4gV6-6cyfW-PxFI6AmfG7Fu3LWPfpByaBcKLW8Iw0,18300
|
|
@@ -276,7 +274,7 @@ cribl_control_plane/models/updateroutesbyidop.py,sha256=CoEURdSBZ4-pp1WSncdT_oZC
|
|
|
276
274
|
cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
|
|
277
275
|
cribl_control_plane/models/workertypes.py,sha256=qphL2wkL55CU8V7xBts2lsMMi6IaA7LhUvKL_9xMod4,218
|
|
278
276
|
cribl_control_plane/nodes.py,sha256=015pTP--RfK2YFrMRgBe8ha32Mp_38JGDYdxkGdjtzY,17429
|
|
279
|
-
cribl_control_plane/packs.py,sha256=
|
|
277
|
+
cribl_control_plane/packs.py,sha256=IroglHMxt4opjPUmCujym5UXPfxfto13zF2e4c48VoQ,33394
|
|
280
278
|
cribl_control_plane/pipelines.py,sha256=gHyI9nwt_3cxBQ7gt6EPUPs9NuRC0iA_PoFRAE4Z-V8,35892
|
|
281
279
|
cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
282
280
|
cribl_control_plane/routes_sdk.py,sha256=Snb8Dmim7Fm9EsMqbyjuPnXKmqhJ10L_t1bujJUWTyM,31025
|
|
@@ -309,6 +307,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
309
307
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
310
308
|
cribl_control_plane/versions.py,sha256=Wdaxc2wZeEeD12wAh7SQ0RGG9KgwKaWQ7bc8qOQ8oAo,920
|
|
311
309
|
cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
|
|
312
|
-
cribl_control_plane-0.0.
|
|
313
|
-
cribl_control_plane-0.0.
|
|
314
|
-
cribl_control_plane-0.0.
|
|
310
|
+
cribl_control_plane-0.0.37a1.dist-info/METADATA,sha256=ZYb5YuKoae5l_kt4zaG1P8JYM1xF1bitzyS6cmxgqPY,38715
|
|
311
|
+
cribl_control_plane-0.0.37a1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
312
|
+
cribl_control_plane-0.0.37a1.dist-info/RECORD,,
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from .packinfo import PackInfo, PackInfoTypedDict
|
|
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 GetPacksByIDRequestTypedDict(TypedDict):
|
|
12
|
-
id: str
|
|
13
|
-
r"""The <code>id</code> of the Pack to get."""
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
class GetPacksByIDRequest(BaseModel):
|
|
17
|
-
id: Annotated[
|
|
18
|
-
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
19
|
-
]
|
|
20
|
-
r"""The <code>id</code> of the Pack to get."""
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
class GetPacksByIDResponseTypedDict(TypedDict):
|
|
24
|
-
r"""a list of PackInfo objects"""
|
|
25
|
-
|
|
26
|
-
count: NotRequired[int]
|
|
27
|
-
r"""number of items present in the items array"""
|
|
28
|
-
items: NotRequired[List[PackInfoTypedDict]]
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
class GetPacksByIDResponse(BaseModel):
|
|
32
|
-
r"""a list of PackInfo objects"""
|
|
33
|
-
|
|
34
|
-
count: Optional[int] = None
|
|
35
|
-
r"""number of items present in the items array"""
|
|
36
|
-
|
|
37
|
-
items: Optional[List[PackInfo]] = None
|