cribl-control-plane 0.0.34__py3-none-any.whl → 0.0.36__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 +4 -4
- cribl_control_plane/commits.py +4 -4
- cribl_control_plane/configs_versions.py +2 -2
- cribl_control_plane/groups_sdk.py +12 -12
- cribl_control_plane/models/__init__.py +79 -36
- cribl_control_plane/models/createconfiggroupbyproductop.py +3 -10
- cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +3 -10
- cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +6 -25
- cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +6 -25
- cribl_control_plane/models/getconfiggroupbyproductandidop.py +3 -10
- cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +3 -10
- cribl_control_plane/models/getpacksbyidop.py +37 -0
- cribl_control_plane/models/getsummaryop.py +3 -10
- cribl_control_plane/models/gitfilesresponse.py +7 -5
- cribl_control_plane/models/gitrevertparams.py +3 -3
- cribl_control_plane/models/gitrevertresult.py +5 -5
- cribl_control_plane/models/input.py +19 -16
- cribl_control_plane/models/inputwizwebhook.py +393 -0
- cribl_control_plane/models/listconfiggroupbyproductop.py +3 -10
- cribl_control_plane/models/productscore.py +9 -0
- cribl_control_plane/models/updateconfiggroupbyproductandidop.py +3 -10
- cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py +3 -10
- cribl_control_plane/models/workertypes.py +9 -0
- cribl_control_plane/packs.py +174 -0
- cribl_control_plane/summaries.py +2 -2
- cribl_control_plane/teams.py +4 -4
- {cribl_control_plane-0.0.34.dist-info → cribl_control_plane-0.0.36.dist-info}/METADATA +3 -2
- {cribl_control_plane-0.0.34.dist-info → cribl_control_plane-0.0.36.dist-info}/RECORD +30 -26
- {cribl_control_plane-0.0.34.dist-info → cribl_control_plane-0.0.36.dist-info}/WHEEL +0 -0
cribl_control_plane/packs.py
CHANGED
|
@@ -622,6 +622,180 @@ 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
|
+
|
|
625
799
|
def update(
|
|
626
800
|
self,
|
|
627
801
|
*,
|
cribl_control_plane/summaries.py
CHANGED
|
@@ -13,7 +13,7 @@ class Summaries(BaseSDK):
|
|
|
13
13
|
def get(
|
|
14
14
|
self,
|
|
15
15
|
*,
|
|
16
|
-
mode: Optional[models.
|
|
16
|
+
mode: Optional[models.WorkerTypes] = None,
|
|
17
17
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
18
18
|
server_url: Optional[str] = None,
|
|
19
19
|
timeout_ms: Optional[int] = None,
|
|
@@ -100,7 +100,7 @@ class Summaries(BaseSDK):
|
|
|
100
100
|
async def get_async(
|
|
101
101
|
self,
|
|
102
102
|
*,
|
|
103
|
-
mode: Optional[models.
|
|
103
|
+
mode: Optional[models.WorkerTypes] = None,
|
|
104
104
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
105
105
|
server_url: Optional[str] = None,
|
|
106
106
|
timeout_ms: Optional[int] = None,
|
cribl_control_plane/teams.py
CHANGED
|
@@ -13,9 +13,9 @@ class Teams(BaseSDK):
|
|
|
13
13
|
def get(
|
|
14
14
|
self,
|
|
15
15
|
*,
|
|
16
|
-
product: models.
|
|
16
|
+
product: models.ProductsCore,
|
|
17
17
|
id: str,
|
|
18
|
-
type_: Optional[models.
|
|
18
|
+
type_: Optional[models.RbacResource] = None,
|
|
19
19
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
20
20
|
server_url: Optional[str] = None,
|
|
21
21
|
timeout_ms: Optional[int] = None,
|
|
@@ -108,9 +108,9 @@ class Teams(BaseSDK):
|
|
|
108
108
|
async def get_async(
|
|
109
109
|
self,
|
|
110
110
|
*,
|
|
111
|
-
product: models.
|
|
111
|
+
product: models.ProductsCore,
|
|
112
112
|
id: str,
|
|
113
|
-
type_: Optional[models.
|
|
113
|
+
type_: Optional[models.RbacResource] = None,
|
|
114
114
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
115
115
|
server_url: Optional[str] = None,
|
|
116
116
|
timeout_ms: Optional[int] = None,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.36
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -377,6 +377,7 @@ 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
|
|
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
|
|
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,14 +4,14 @@ 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=
|
|
8
|
-
cribl_control_plane/acl.py,sha256=
|
|
7
|
+
cribl_control_plane/_version.py,sha256=ejOHYMBGEWDfiRNhLiItC2Ynw0eYozR5oMezRhMMm6A,542
|
|
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=pfGBeS_uIwUKmd_naYOR6vV7XTO3NvRC82siyGNzyLU,55556
|
|
13
13
|
cribl_control_plane/commits_files.py,sha256=XRqVF2UA_c2Ous3wFOehyUgYE_NiuE-dwzPglF4DEG4,15561
|
|
14
|
-
cribl_control_plane/configs_versions.py,sha256=
|
|
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
|
|
16
16
|
cribl_control_plane/destinations_pq.py,sha256=KwflapfxGgHBS-05wxj9P1O8RhSP8nx7KwOxhwPqLfs,14871
|
|
17
17
|
cribl_control_plane/errors/__init__.py,sha256=6d9IGiw8Z6n2sTijw-e11PthRPi-YUkLgzE6zV4MfFQ,1867
|
|
@@ -22,12 +22,12 @@ cribl_control_plane/errors/healthstatus_error.py,sha256=Hgn36yszsiYPS3cG__-PKHDD
|
|
|
22
22
|
cribl_control_plane/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
|
|
23
23
|
cribl_control_plane/errors/responsevalidationerror.py,sha256=TvZ9dOsy-oFBYA_wZCOOEXeGKMBQtzCVX-1-i7epQTE,720
|
|
24
24
|
cribl_control_plane/groups_configs.py,sha256=Tp0DFJ-zCNF_fvtnxCxVSkmrDl1IP6bRF7Irg2CZXAM,543
|
|
25
|
-
cribl_control_plane/groups_sdk.py,sha256=
|
|
25
|
+
cribl_control_plane/groups_sdk.py,sha256=igh_XeQBZAwyvGbN7ynlMKj6MeWEn5z9skk5Tsxa6QA,61637
|
|
26
26
|
cribl_control_plane/health.py,sha256=mDYmC13IE_M9jTVKKBOr5aeZ5QArUURLT1PyPpvn5Ho,6719
|
|
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=1Omj4_aWaFDeryizexOL6B6D5APpfPAv0Kghhp_RH0I,357899
|
|
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
|
|
@@ -38,7 +38,7 @@ cribl_control_plane/models/commit.py,sha256=wXQkjOYsffxWURHTrfU9kJ4HF2H65QfD1R9-
|
|
|
38
38
|
cribl_control_plane/models/configgroup.py,sha256=cgIfR0Fz54SdBLGZNnruaJVA4jUpdVHdSKbji6fh0Bc,3404
|
|
39
39
|
cribl_control_plane/models/configgroupcloud.py,sha256=l9e1E-JyZGu4JANlU8SIzaXcsZIUcs7CtPQs90WvZ-w,1395
|
|
40
40
|
cribl_control_plane/models/configgrouplookups.py,sha256=1z1DlvlVehqfD6hZMXG0XedZTfoCIpYd0cHav45tiRw,830
|
|
41
|
-
cribl_control_plane/models/createconfiggroupbyproductop.py,sha256=
|
|
41
|
+
cribl_control_plane/models/createconfiggroupbyproductop.py,sha256=zllL-jYwkEdEvGjRwxSz-X7pUyRJyOOAsj4SA7IqtTQ,1575
|
|
42
42
|
cribl_control_plane/models/createcribllakedatasetbylakeidop.py,sha256=IVH9RvCw8IM0LCzJuy7_eDX9GbpTUIk-Xp0nFPjn6BQ,1647
|
|
43
43
|
cribl_control_plane/models/createinputhectokenbyidop.py,sha256=3UbrmX96ZFvh-0UFJfsYqSayk9HX5wCWTWkpJL56OTk,1502
|
|
44
44
|
cribl_control_plane/models/createinputop.py,sha256=l5Hz9ANzw4Gjh25FVf_okFzXxZWjA7GOx1tp8yWhKaI,701
|
|
@@ -56,7 +56,7 @@ cribl_control_plane/models/cribllakedataset.py,sha256=4txRkDEkM-9fLG0my7Sl9IhEW0
|
|
|
56
56
|
cribl_control_plane/models/currentbranchresult.py,sha256=qq1IRI_XeGrAI_-lV_xHCYuO3VwIFUVarvo0-lN-ymU,317
|
|
57
57
|
cribl_control_plane/models/datasetmetadata.py,sha256=NfKeMQnTgrt-xLQ5LfDr-LrtPArJ8fbzUHd2yF_p3fc,1090
|
|
58
58
|
cribl_control_plane/models/datasetmetadataruninfo.py,sha256=4UrKPwg1oCs7uk3s24dsVzyNXE8TpDJE9vCioZyK7t0,937
|
|
59
|
-
cribl_control_plane/models/deleteconfiggroupbyproductandidop.py,sha256=
|
|
59
|
+
cribl_control_plane/models/deleteconfiggroupbyproductandidop.py,sha256=YVbPck0byqbtfyacN5navFSLeSLuzYqSqL0ebtl18Wc,1621
|
|
60
60
|
cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py,sha256=BUMQ_56VCM_xK08eagJ2bdd4eOPCUUMVVG5duR3qg7s,1649
|
|
61
61
|
cribl_control_plane/models/deleteinputbyidop.py,sha256=wcL73IwZivcylD76m2vn-2YQ6E6nGgeXipwbYOmHVlY,1117
|
|
62
62
|
cribl_control_plane/models/deleteoutputbyidop.py,sha256=VdpKyYTadMO3rOmFlyMTkBkSLXT04ic9s9E9g0PDf8I,1146
|
|
@@ -66,10 +66,10 @@ cribl_control_plane/models/deletepipelinebyidop.py,sha256=2TPgET3YUtlqvAjW-iZXcx
|
|
|
66
66
|
cribl_control_plane/models/deployrequest.py,sha256=zSl96WkkLVHACFRYUdPT4w7WhCaOv_V7_nMLcSGRYwE,560
|
|
67
67
|
cribl_control_plane/models/deployrequestlookups.py,sha256=WJQf_uL_22Lj7_TIBZ0pZxspYnkfZu9ABNGBLG35tpA,613
|
|
68
68
|
cribl_control_plane/models/distributedsummary.py,sha256=H3vkBqmL3vbQIggXyfWqqrm3d27b3kgqBt9t9e-Vlz4,1359
|
|
69
|
-
cribl_control_plane/models/getconfiggroupaclbyproductandidop.py,sha256=
|
|
70
|
-
cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py,sha256=
|
|
71
|
-
cribl_control_plane/models/getconfiggroupbyproductandidop.py,sha256=
|
|
72
|
-
cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py,sha256=
|
|
69
|
+
cribl_control_plane/models/getconfiggroupaclbyproductandidop.py,sha256=JRL8eLUQhT1Q7ZANEEOYn0kbkMNm2vn7PL-46lNL-fM,2159
|
|
70
|
+
cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py,sha256=0Gh32z_dSRplKJfH1LGCexC2nsnyhZkSxmFDfgFtqwU,2191
|
|
71
|
+
cribl_control_plane/models/getconfiggroupbyproductandidop.py,sha256=DD5RH0D0L6lTWYA6BhhRAFEq7tWWm0dGvsRmGFGSo1g,2182
|
|
72
|
+
cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py,sha256=dWvT2rUOKDFd6x_2kAPF2P2t1SUJxrfa1tZ-MsdMQnk,1621
|
|
73
73
|
cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py,sha256=X2XiJPwODvnOY9U5kRxIjFGirvEKQpiIUrO125lZoIo,1625
|
|
74
74
|
cribl_control_plane/models/getcribllakedatasetbylakeidop.py,sha256=nd44uWdgyGfq3vjOvm2vQ76AiC_4J076q-ZCXP0ebAU,1371
|
|
75
75
|
cribl_control_plane/models/getinputbyidop.py,sha256=fuIpxpky_6KUbXM_8J-0VNIYsjNZnU6IyunVusx7QeE,1099
|
|
@@ -77,10 +77,11 @@ 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
|
|
83
|
-
cribl_control_plane/models/getsummaryop.py,sha256=
|
|
84
|
+
cribl_control_plane/models/getsummaryop.py,sha256=q0rNsr1CvvEL4DnK6IWPqo_iwKIsHXl7Lbtn3puW9c8,1450
|
|
84
85
|
cribl_control_plane/models/getversionbranchop.py,sha256=hn-tWyDwbp6zqJ8Af4-_Urt-wOwU0nRqsLhLoR_33nU,684
|
|
85
86
|
cribl_control_plane/models/getversioncountop.py,sha256=ayg9xdQGvSBzgCq8E1XqCRJOfmtRkr-D3ioEEGstx-Q,1557
|
|
86
87
|
cribl_control_plane/models/getversiondiffop.py,sha256=108FjGC-lfklVKUAR9SQiEJ98Ie8NpVQblniCkchvtY,2304
|
|
@@ -92,17 +93,17 @@ cribl_control_plane/models/getversionstatusop.py,sha256=wZy3DooWs_dhvcrIblV9cckL
|
|
|
92
93
|
cribl_control_plane/models/gitcommitparams.py,sha256=4RwyddK0-QDb2Ax_tP2CVOy1rHsq-KEn5lELI402B6I,563
|
|
93
94
|
cribl_control_plane/models/gitcommitsummary.py,sha256=63UMkf5H5DFzFTsU7dr3dBrLGNMIxJBfinCPmBCd2OY,1312
|
|
94
95
|
cribl_control_plane/models/gitfile.py,sha256=CMk0Xm08WFtUX73TaKBNAyRagZh-DMIY-m33RFgfFHg,493
|
|
95
|
-
cribl_control_plane/models/gitfilesresponse.py,sha256=
|
|
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=
|
|
99
|
-
cribl_control_plane/models/gitrevertresult.py,sha256=
|
|
99
|
+
cribl_control_plane/models/gitrevertparams.py,sha256=wMVlEcrprmZHUA01vi3CC8fMMDFqURJndv-1LaF2gik,478
|
|
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=
|
|
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
|
|
@@ -160,10 +161,11 @@ 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
|
|
166
|
-
cribl_control_plane/models/listconfiggroupbyproductop.py,sha256=
|
|
168
|
+
cribl_control_plane/models/listconfiggroupbyproductop.py,sha256=1BAN-jhYzTA_EWTCOFmHtuqUJ1BC1d5LKdm7lBjTdzk,1900
|
|
167
169
|
cribl_control_plane/models/listinputop.py,sha256=oj7CRRp7DTtHI3WKPKLoEL30a_JrMp48V33pRPgUMmE,697
|
|
168
170
|
cribl_control_plane/models/listmasterworkerentryop.py,sha256=c9cvTyboRQPHAue1LDsw9uTeJgu6_UxLd0uAUCA0OVg,3554
|
|
169
171
|
cribl_control_plane/models/listoutputop.py,sha256=Gzm5NcwbyuJ3xacm_emZeKwVn2HNPV1fv9aCmDEw8sc,714
|
|
@@ -251,6 +253,7 @@ cribl_control_plane/models/packinstallinfo.py,sha256=mrnU3uJDRabfGUHKP5tSS7VJ-Py
|
|
|
251
253
|
cribl_control_plane/models/packrequestbody.py,sha256=xNPZ7fLLI4xzFh0dkOtpW9hsUxT7ymkL3-MNXf1KH2Y,1835
|
|
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
|
|
256
|
+
cribl_control_plane/models/productscore.py,sha256=SF_xmbDLnEr0yTjwErGLwuDdn2wFy7mw3fSMyIs_Jwc,203
|
|
254
257
|
cribl_control_plane/models/rbacresource.py,sha256=Mj5b8UC2KjGIdEc0tmuWsPdXwDgkz4lQcv_vPvM2LpE,361
|
|
255
258
|
cribl_control_plane/models/resourcepolicy.py,sha256=GxsEqA88OvvaCg016cBcauLeQ_5TjuygZxRLwQKj6R8,516
|
|
256
259
|
cribl_control_plane/models/routecloneconf.py,sha256=ESvEj0vl58BGOwJB5kYu3vMAm88JizYHXU7qorGdw9M,293
|
|
@@ -260,8 +263,8 @@ cribl_control_plane/models/routesroute.py,sha256=7hFUWpgVDBj0N117IFxZRGkFqJntbe4
|
|
|
260
263
|
cribl_control_plane/models/schemeclientoauth.py,sha256=cjePTTFIlKoYg8JZOOuvacOb1Zb5RqmgiqyQA9P3kvU,839
|
|
261
264
|
cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D4kwRsAQvY,1097
|
|
262
265
|
cribl_control_plane/models/teamaccesscontrollist.py,sha256=HLMck-wyuJYiKD-adSS5ti4yLbHE2snZaOAI0GwgfOI,483
|
|
263
|
-
cribl_control_plane/models/updateconfiggroupbyproductandidop.py,sha256=
|
|
264
|
-
cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py,sha256=
|
|
266
|
+
cribl_control_plane/models/updateconfiggroupbyproductandidop.py,sha256=rgH14WW1YjVVfpKA4h99L6-oolsrj2CrDIhN_syPRXw,1946
|
|
267
|
+
cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py,sha256=Mq2l37fFPVstlf2uOOikxhhozT3F-L1VLLJMJd8aRjI,2012
|
|
265
268
|
cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=vawlVhfZ_xULNJcrKKtfyV6tMqrLT_i_UknodWucuUU,1990
|
|
266
269
|
cribl_control_plane/models/updatehectokenrequest.py,sha256=Pq0JnAZuDqdU_g6mmCvfxfMgeK9Pu3uVXfD9sFWfjKQ,787
|
|
267
270
|
cribl_control_plane/models/updateinputbyidop.py,sha256=fWbSRQQ1WdHI6_e-fV32T99vDFQ1Yv6oHM-80u5kbHE,1322
|
|
@@ -271,8 +274,9 @@ cribl_control_plane/models/updatepacksbyidop.py,sha256=3_gienANMXUc5VigEAUzoM8Y-
|
|
|
271
274
|
cribl_control_plane/models/updatepipelinebyidop.py,sha256=B13h6gadw4NV7waH6yoDKCR2YCzVS8XZrzB_5PG9CmE,1410
|
|
272
275
|
cribl_control_plane/models/updateroutesbyidop.py,sha256=CoEURdSBZ4-pp1WSncdT_oZCbx3o7MlmMSDY0D44D_o,1358
|
|
273
276
|
cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
|
|
277
|
+
cribl_control_plane/models/workertypes.py,sha256=qphL2wkL55CU8V7xBts2lsMMi6IaA7LhUvKL_9xMod4,218
|
|
274
278
|
cribl_control_plane/nodes.py,sha256=015pTP--RfK2YFrMRgBe8ha32Mp_38JGDYdxkGdjtzY,17429
|
|
275
|
-
cribl_control_plane/packs.py,sha256=
|
|
279
|
+
cribl_control_plane/packs.py,sha256=EaBtQCqZ8TB3A_yoStevrpDL8nxEN_zBOpp4aQHuQMI,40244
|
|
276
280
|
cribl_control_plane/pipelines.py,sha256=gHyI9nwt_3cxBQ7gt6EPUPs9NuRC0iA_PoFRAE4Z-V8,35892
|
|
277
281
|
cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
278
282
|
cribl_control_plane/routes_sdk.py,sha256=Snb8Dmim7Fm9EsMqbyjuPnXKmqhJ10L_t1bujJUWTyM,31025
|
|
@@ -281,8 +285,8 @@ cribl_control_plane/sdk.py,sha256=UcM5PrBF5eQKCivl1WEPbIIZ5I6IPQLdi3K4GUxijbY,74
|
|
|
281
285
|
cribl_control_plane/sdkconfiguration.py,sha256=bit6SSOyHqvibdtgNad5_ZcgMotk8NJfgHpKsBK8HFg,1259
|
|
282
286
|
cribl_control_plane/sources.py,sha256=rexCbl4lSCw3OBjklfw_xTvUPSczUzsFHVYsYoboSf4,37018
|
|
283
287
|
cribl_control_plane/statuses.py,sha256=1VkWWzGBuCRTBDhRUGjKiuQm8H2iLiGHGXgT4LwWv4c,7989
|
|
284
|
-
cribl_control_plane/summaries.py,sha256=
|
|
285
|
-
cribl_control_plane/teams.py,sha256=
|
|
288
|
+
cribl_control_plane/summaries.py,sha256=CtkNAxkMTArdUQhWHy7XqGPkO6DA-PvdwgVK-RHSkt0,8058
|
|
289
|
+
cribl_control_plane/teams.py,sha256=kSjUiS7cKiROcRDmTxhnnOeGIsqLZcP7MFCuv5Kgm1U,8844
|
|
286
290
|
cribl_control_plane/tokens.py,sha256=iP_0_Pl8LFgs_ektBTU-bvRjJq6JQ3q7qMWIeIIuXmc,7220
|
|
287
291
|
cribl_control_plane/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
288
292
|
cribl_control_plane/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
@@ -305,6 +309,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
305
309
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
306
310
|
cribl_control_plane/versions.py,sha256=Wdaxc2wZeEeD12wAh7SQ0RGG9KgwKaWQ7bc8qOQ8oAo,920
|
|
307
311
|
cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
|
|
308
|
-
cribl_control_plane-0.0.
|
|
309
|
-
cribl_control_plane-0.0.
|
|
310
|
-
cribl_control_plane-0.0.
|
|
312
|
+
cribl_control_plane-0.0.36.dist-info/METADATA,sha256=TpvMoCE-SRpgLwCAY_R-du4ARF4W6CfppJeMlVhUEAM,38835
|
|
313
|
+
cribl_control_plane-0.0.36.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
314
|
+
cribl_control_plane-0.0.36.dist-info/RECORD,,
|
|
File without changes
|