cribl-control-plane 0.0.19__py3-none-any.whl → 0.0.21__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/groups_sdk.py +572 -60
- cribl_control_plane/lake.py +662 -0
- cribl_control_plane/models/__init__.py +98 -0
- cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py +47 -0
- cribl_control_plane/models/deletegroupsbyidop.py +37 -0
- cribl_control_plane/models/deletepacksbyidop.py +37 -0
- cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py +47 -0
- cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +57 -0
- cribl_control_plane/models/updategroupsbyidop.py +48 -0
- cribl_control_plane/models/updatepacksbyidop.py +65 -0
- cribl_control_plane/packs.py +366 -0
- {cribl_control_plane-0.0.19.dist-info → cribl_control_plane-0.0.21.dist-info}/METADATA +10 -3
- {cribl_control_plane-0.0.19.dist-info → cribl_control_plane-0.0.21.dist-info}/RECORD +15 -8
- {cribl_control_plane-0.0.19.dist-info → cribl_control_plane-0.0.21.dist-info}/WHEEL +0 -0
cribl_control_plane/packs.py
CHANGED
|
@@ -621,3 +621,369 @@ class Packs(BaseSDK):
|
|
|
621
621
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
622
622
|
|
|
623
623
|
raise errors.APIError("Unexpected response received", http_res)
|
|
624
|
+
|
|
625
|
+
def delete_packs_by_id(
|
|
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.DeletePacksByIDResponse:
|
|
634
|
+
r"""Uninstall Pack from the system
|
|
635
|
+
|
|
636
|
+
Uninstall Pack from the system
|
|
637
|
+
|
|
638
|
+
:param id: Pack name
|
|
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.DeletePacksByIDRequest(
|
|
655
|
+
id=id,
|
|
656
|
+
)
|
|
657
|
+
|
|
658
|
+
req = self._build_request(
|
|
659
|
+
method="DELETE",
|
|
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="deletePacksById",
|
|
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.DeletePacksByIDResponse, 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 delete_packs_by_id_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.DeletePacksByIDResponse:
|
|
721
|
+
r"""Uninstall Pack from the system
|
|
722
|
+
|
|
723
|
+
Uninstall Pack from the system
|
|
724
|
+
|
|
725
|
+
:param id: Pack name
|
|
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.DeletePacksByIDRequest(
|
|
742
|
+
id=id,
|
|
743
|
+
)
|
|
744
|
+
|
|
745
|
+
req = self._build_request_async(
|
|
746
|
+
method="DELETE",
|
|
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="deletePacksById",
|
|
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.DeletePacksByIDResponse, 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
|
+
def update_packs_by_id(
|
|
800
|
+
self,
|
|
801
|
+
*,
|
|
802
|
+
id: str,
|
|
803
|
+
source: Optional[str] = None,
|
|
804
|
+
minor: Optional[str] = None,
|
|
805
|
+
spec: Optional[str] = None,
|
|
806
|
+
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
807
|
+
server_url: Optional[str] = None,
|
|
808
|
+
timeout_ms: Optional[int] = None,
|
|
809
|
+
http_headers: Optional[Mapping[str, str]] = None,
|
|
810
|
+
) -> models.UpdatePacksByIDResponse:
|
|
811
|
+
r"""Upgrade Pack
|
|
812
|
+
|
|
813
|
+
Upgrade Pack
|
|
814
|
+
|
|
815
|
+
:param id: Pack name
|
|
816
|
+
:param source: body string required Pack source
|
|
817
|
+
:param minor: body boolean optional Only upgrade to minor/patch versions
|
|
818
|
+
:param spec: body string optional Specify a branch, tag or a semver spec
|
|
819
|
+
:param retries: Override the default retry configuration for this method
|
|
820
|
+
:param server_url: Override the default server URL for this method
|
|
821
|
+
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
822
|
+
:param http_headers: Additional headers to set or replace on requests.
|
|
823
|
+
"""
|
|
824
|
+
base_url = None
|
|
825
|
+
url_variables = None
|
|
826
|
+
if timeout_ms is None:
|
|
827
|
+
timeout_ms = self.sdk_configuration.timeout_ms
|
|
828
|
+
|
|
829
|
+
if server_url is not None:
|
|
830
|
+
base_url = server_url
|
|
831
|
+
else:
|
|
832
|
+
base_url = self._get_url(base_url, url_variables)
|
|
833
|
+
|
|
834
|
+
request = models.UpdatePacksByIDRequest(
|
|
835
|
+
id=id,
|
|
836
|
+
source=source,
|
|
837
|
+
minor=minor,
|
|
838
|
+
spec=spec,
|
|
839
|
+
)
|
|
840
|
+
|
|
841
|
+
req = self._build_request(
|
|
842
|
+
method="PATCH",
|
|
843
|
+
path="/packs/{id}",
|
|
844
|
+
base_url=base_url,
|
|
845
|
+
url_variables=url_variables,
|
|
846
|
+
request=request,
|
|
847
|
+
request_body_required=False,
|
|
848
|
+
request_has_path_params=True,
|
|
849
|
+
request_has_query_params=True,
|
|
850
|
+
user_agent_header="user-agent",
|
|
851
|
+
accept_header_value="application/json",
|
|
852
|
+
http_headers=http_headers,
|
|
853
|
+
security=self.sdk_configuration.security,
|
|
854
|
+
timeout_ms=timeout_ms,
|
|
855
|
+
)
|
|
856
|
+
|
|
857
|
+
if retries == UNSET:
|
|
858
|
+
if self.sdk_configuration.retry_config is not UNSET:
|
|
859
|
+
retries = self.sdk_configuration.retry_config
|
|
860
|
+
|
|
861
|
+
retry_config = None
|
|
862
|
+
if isinstance(retries, utils.RetryConfig):
|
|
863
|
+
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
864
|
+
|
|
865
|
+
http_res = self.do_request(
|
|
866
|
+
hook_ctx=HookContext(
|
|
867
|
+
config=self.sdk_configuration,
|
|
868
|
+
base_url=base_url or "",
|
|
869
|
+
operation_id="updatePacksById",
|
|
870
|
+
oauth2_scopes=[],
|
|
871
|
+
security_source=get_security_from_env(
|
|
872
|
+
self.sdk_configuration.security, models.Security
|
|
873
|
+
),
|
|
874
|
+
),
|
|
875
|
+
request=req,
|
|
876
|
+
error_status_codes=["401", "4XX", "500", "5XX"],
|
|
877
|
+
retry_config=retry_config,
|
|
878
|
+
)
|
|
879
|
+
|
|
880
|
+
response_data: Any = None
|
|
881
|
+
if utils.match_response(http_res, "200", "application/json"):
|
|
882
|
+
return unmarshal_json_response(models.UpdatePacksByIDResponse, http_res)
|
|
883
|
+
if utils.match_response(http_res, "500", "application/json"):
|
|
884
|
+
response_data = unmarshal_json_response(errors.ErrorData, http_res)
|
|
885
|
+
raise errors.Error(response_data, http_res)
|
|
886
|
+
if utils.match_response(http_res, ["401", "4XX"], "*"):
|
|
887
|
+
http_res_text = utils.stream_to_text(http_res)
|
|
888
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
889
|
+
if utils.match_response(http_res, "5XX", "*"):
|
|
890
|
+
http_res_text = utils.stream_to_text(http_res)
|
|
891
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
892
|
+
|
|
893
|
+
raise errors.APIError("Unexpected response received", http_res)
|
|
894
|
+
|
|
895
|
+
async def update_packs_by_id_async(
|
|
896
|
+
self,
|
|
897
|
+
*,
|
|
898
|
+
id: str,
|
|
899
|
+
source: Optional[str] = None,
|
|
900
|
+
minor: Optional[str] = None,
|
|
901
|
+
spec: Optional[str] = None,
|
|
902
|
+
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
903
|
+
server_url: Optional[str] = None,
|
|
904
|
+
timeout_ms: Optional[int] = None,
|
|
905
|
+
http_headers: Optional[Mapping[str, str]] = None,
|
|
906
|
+
) -> models.UpdatePacksByIDResponse:
|
|
907
|
+
r"""Upgrade Pack
|
|
908
|
+
|
|
909
|
+
Upgrade Pack
|
|
910
|
+
|
|
911
|
+
:param id: Pack name
|
|
912
|
+
:param source: body string required Pack source
|
|
913
|
+
:param minor: body boolean optional Only upgrade to minor/patch versions
|
|
914
|
+
:param spec: body string optional Specify a branch, tag or a semver spec
|
|
915
|
+
:param retries: Override the default retry configuration for this method
|
|
916
|
+
:param server_url: Override the default server URL for this method
|
|
917
|
+
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
918
|
+
:param http_headers: Additional headers to set or replace on requests.
|
|
919
|
+
"""
|
|
920
|
+
base_url = None
|
|
921
|
+
url_variables = None
|
|
922
|
+
if timeout_ms is None:
|
|
923
|
+
timeout_ms = self.sdk_configuration.timeout_ms
|
|
924
|
+
|
|
925
|
+
if server_url is not None:
|
|
926
|
+
base_url = server_url
|
|
927
|
+
else:
|
|
928
|
+
base_url = self._get_url(base_url, url_variables)
|
|
929
|
+
|
|
930
|
+
request = models.UpdatePacksByIDRequest(
|
|
931
|
+
id=id,
|
|
932
|
+
source=source,
|
|
933
|
+
minor=minor,
|
|
934
|
+
spec=spec,
|
|
935
|
+
)
|
|
936
|
+
|
|
937
|
+
req = self._build_request_async(
|
|
938
|
+
method="PATCH",
|
|
939
|
+
path="/packs/{id}",
|
|
940
|
+
base_url=base_url,
|
|
941
|
+
url_variables=url_variables,
|
|
942
|
+
request=request,
|
|
943
|
+
request_body_required=False,
|
|
944
|
+
request_has_path_params=True,
|
|
945
|
+
request_has_query_params=True,
|
|
946
|
+
user_agent_header="user-agent",
|
|
947
|
+
accept_header_value="application/json",
|
|
948
|
+
http_headers=http_headers,
|
|
949
|
+
security=self.sdk_configuration.security,
|
|
950
|
+
timeout_ms=timeout_ms,
|
|
951
|
+
)
|
|
952
|
+
|
|
953
|
+
if retries == UNSET:
|
|
954
|
+
if self.sdk_configuration.retry_config is not UNSET:
|
|
955
|
+
retries = self.sdk_configuration.retry_config
|
|
956
|
+
|
|
957
|
+
retry_config = None
|
|
958
|
+
if isinstance(retries, utils.RetryConfig):
|
|
959
|
+
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
960
|
+
|
|
961
|
+
http_res = await self.do_request_async(
|
|
962
|
+
hook_ctx=HookContext(
|
|
963
|
+
config=self.sdk_configuration,
|
|
964
|
+
base_url=base_url or "",
|
|
965
|
+
operation_id="updatePacksById",
|
|
966
|
+
oauth2_scopes=[],
|
|
967
|
+
security_source=get_security_from_env(
|
|
968
|
+
self.sdk_configuration.security, models.Security
|
|
969
|
+
),
|
|
970
|
+
),
|
|
971
|
+
request=req,
|
|
972
|
+
error_status_codes=["401", "4XX", "500", "5XX"],
|
|
973
|
+
retry_config=retry_config,
|
|
974
|
+
)
|
|
975
|
+
|
|
976
|
+
response_data: Any = None
|
|
977
|
+
if utils.match_response(http_res, "200", "application/json"):
|
|
978
|
+
return unmarshal_json_response(models.UpdatePacksByIDResponse, http_res)
|
|
979
|
+
if utils.match_response(http_res, "500", "application/json"):
|
|
980
|
+
response_data = unmarshal_json_response(errors.ErrorData, http_res)
|
|
981
|
+
raise errors.Error(response_data, http_res)
|
|
982
|
+
if utils.match_response(http_res, ["401", "4XX"], "*"):
|
|
983
|
+
http_res_text = await utils.stream_to_text_async(http_res)
|
|
984
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
985
|
+
if utils.match_response(http_res, "5XX", "*"):
|
|
986
|
+
http_res_text = await utils.stream_to_text_async(http_res)
|
|
987
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
988
|
+
|
|
989
|
+
raise errors.APIError("Unexpected response received", http_res)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.21
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -223,8 +223,10 @@ with CriblControlPlane(
|
|
|
223
223
|
* [get_groups_config_version_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_config_version_by_id) - Get effective bundle version for given Group
|
|
224
224
|
* [create_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#create_products_groups_by_product) - Create a Fleet or Worker Group
|
|
225
225
|
* [get_products_groups_by_product](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_products_groups_by_product) - Get a list of ConfigGroup objects
|
|
226
|
-
* [
|
|
226
|
+
* [delete_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#delete_groups_by_id) - Delete a Fleet or Worker Group
|
|
227
227
|
* [get_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_by_id) - Get a specific ConfigGroup object
|
|
228
|
+
* [update_groups_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update_groups_by_id) - Update a Fleet or Worker Group
|
|
229
|
+
* [update_groups_deploy_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#update_groups_deploy_by_id) - Deploy commits for a Fleet or Worker Group
|
|
228
230
|
* [get_groups_acl_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md#get_groups_acl_by_id) - ACL of members with permissions for resources in this Group
|
|
229
231
|
|
|
230
232
|
### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
|
|
@@ -235,12 +237,17 @@ with CriblControlPlane(
|
|
|
235
237
|
|
|
236
238
|
* [create_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#create_cribl_lake_dataset_by_lake_id) - Create a Dataset in the specified Lake
|
|
237
239
|
* [get_cribl_lake_dataset_by_lake_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#get_cribl_lake_dataset_by_lake_id) - Get the list of Dataset contained in the specified Lake
|
|
240
|
+
* [delete_cribl_lake_dataset_by_lake_id_and_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#delete_cribl_lake_dataset_by_lake_id_and_id) - Delete a Dataset in the specified Lake
|
|
241
|
+
* [get_cribl_lake_dataset_by_lake_id_and_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#get_cribl_lake_dataset_by_lake_id_and_id) - Get a Dataset in the specified Lake
|
|
242
|
+
* [update_cribl_lake_dataset_by_lake_id_and_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/lake/README.md#update_cribl_lake_dataset_by_lake_id_and_id) - Update a Dataset in the specified Lake
|
|
238
243
|
|
|
239
244
|
### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
|
|
240
245
|
|
|
241
246
|
* [create_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#create_packs) - Install Pack
|
|
242
247
|
* [get_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#get_packs) - Get info on packs
|
|
243
248
|
* [update_packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update_packs) - Upload Pack
|
|
249
|
+
* [delete_packs_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#delete_packs_by_id) - Uninstall Pack from the system
|
|
250
|
+
* [update_packs_by_id](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#update_packs_by_id) - Upgrade Pack
|
|
244
251
|
|
|
245
252
|
### [pipelines](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/pipelines/README.md)
|
|
246
253
|
|
|
@@ -410,7 +417,7 @@ with CriblControlPlane(
|
|
|
410
417
|
|
|
411
418
|
|
|
412
419
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
413
|
-
* [`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
|
|
420
|
+
* [`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 63 methods.*
|
|
414
421
|
* [`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.
|
|
415
422
|
|
|
416
423
|
</details>
|
|
@@ -4,7 +4,7 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=gVQkktlv3q4-AHOdbQl5r8i-G
|
|
|
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=rJBWqaJYUMGIbQqyICQs892uH-AdOvSOKWmbzmfh-yo,542
|
|
8
8
|
cribl_control_plane/auth_sdk.py,sha256=Jxw8hPHbBFay5eXcaRBtgdCC06mh5XHkRbZcIM0vvB8,7431
|
|
9
9
|
cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
|
|
10
10
|
cribl_control_plane/destinations.py,sha256=9L_VzqiAh8xAN4JNBsU7FT7ZFRiBuhtf-5mJBCbZj-g,65733
|
|
@@ -16,11 +16,11 @@ cribl_control_plane/errors/error.py,sha256=fZ72R_qeZ0-xd514dVqKKiqh7zzLmnkpPJfck
|
|
|
16
16
|
cribl_control_plane/errors/healthstatus_error.py,sha256=euamtBp065afnXzeaBMjGlQGAN3ONZfDK-RR--FOIzo,962
|
|
17
17
|
cribl_control_plane/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
|
|
18
18
|
cribl_control_plane/errors/responsevalidationerror.py,sha256=TvZ9dOsy-oFBYA_wZCOOEXeGKMBQtzCVX-1-i7epQTE,720
|
|
19
|
-
cribl_control_plane/groups_sdk.py,sha256=
|
|
19
|
+
cribl_control_plane/groups_sdk.py,sha256=VHmHxqR66luhwZlEaz5EfOdmpc8elKjK8j3UYcOkFAg,72331
|
|
20
20
|
cribl_control_plane/health.py,sha256=nK_Q4lDXi8zkfAqcIv9X4zBGi8BzomaBQWBD7TsSwLk,6743
|
|
21
21
|
cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
22
|
-
cribl_control_plane/lake.py,sha256=
|
|
23
|
-
cribl_control_plane/models/__init__.py,sha256=
|
|
22
|
+
cribl_control_plane/lake.py,sha256=dHWnoO4KKOO8fncrdOqnc2sN4nGAWc6nX4UdNP4kx40,46484
|
|
23
|
+
cribl_control_plane/models/__init__.py,sha256=vWKq7UvlGJ_acwtZoOMEBqGZT0L_ooe6udtiY_EPYhU,578873
|
|
24
24
|
cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
|
|
25
25
|
cribl_control_plane/models/appmode.py,sha256=5xRJz9oP5ah4b6dcay4Q1IbQ9irm6k6x2BrTNysIMY4,300
|
|
26
26
|
cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
|
|
@@ -49,13 +49,17 @@ cribl_control_plane/models/criblevent.py,sha256=eT6WbxhOOCx5OQLkAfhwG6IeSUuUmF7h
|
|
|
49
49
|
cribl_control_plane/models/cribllakedataset.py,sha256=4txRkDEkM-9fLG0my7Sl9IhEW0v6RYdH0FNW5gtUE-g,2303
|
|
50
50
|
cribl_control_plane/models/datasetmetadata.py,sha256=NfKeMQnTgrt-xLQ5LfDr-LrtPArJ8fbzUHd2yF_p3fc,1090
|
|
51
51
|
cribl_control_plane/models/datasetmetadataruninfo.py,sha256=4UrKPwg1oCs7uk3s24dsVzyNXE8TpDJE9vCioZyK7t0,937
|
|
52
|
+
cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py,sha256=japgQTynnoD5EJvCQ0Wme8oAqXJGWvSmOJhDbLiswFw,1511
|
|
53
|
+
cribl_control_plane/models/deletegroupsbyidop.py,sha256=2ZzFA2gbd_djJA9afSUM2oGJ8ee4IdR0yxARMTGi0wQ,1089
|
|
52
54
|
cribl_control_plane/models/deleteinputbyidop.py,sha256=8mFzAyTUv6EJ-5Ivm4TSklARGQVim5busV7u51zHyzo,1067
|
|
53
55
|
cribl_control_plane/models/deleteoutputbyidop.py,sha256=1tNS3O5EK9V0DaWcvvUr-KOQhhpslk_aydhf36pyYfs,1086
|
|
54
56
|
cribl_control_plane/models/deleteoutputpqbyidop.py,sha256=jLy8wreVzCsTTifXL3rHPXnku3G97ZCnbHPGamw-t9g,1042
|
|
57
|
+
cribl_control_plane/models/deletepacksbyidop.py,sha256=RXbMek9nUEXGTlO4zgIgvUnaTG7QqDMhmtIsTe32zCw,1115
|
|
55
58
|
cribl_control_plane/models/deletepipelinebyidop.py,sha256=2TPgET3YUtlqvAjW-iZXcx0yQVBLqVf9UjjgGJzAZ9E,1098
|
|
56
59
|
cribl_control_plane/models/deployrequest.py,sha256=zSl96WkkLVHACFRYUdPT4w7WhCaOv_V7_nMLcSGRYwE,560
|
|
57
60
|
cribl_control_plane/models/deployrequestlookups.py,sha256=WJQf_uL_22Lj7_TIBZ0pZxspYnkfZu9ABNGBLG35tpA,613
|
|
58
61
|
cribl_control_plane/models/distributedsummary.py,sha256=H3vkBqmL3vbQIggXyfWqqrm3d27b3kgqBt9t9e-Vlz4,1359
|
|
62
|
+
cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py,sha256=GB7VQUDOW_jJcqF3e7YnBmTMlfRXFBAh3-L83cADXb8,1493
|
|
59
63
|
cribl_control_plane/models/getcribllakedatasetbylakeidop.py,sha256=lUHq_FQwQUL_3RhRIG6ftRLBgFdqq_G0-hJPpNOE3Rk,1295
|
|
60
64
|
cribl_control_plane/models/getgroupsaclbyidop.py,sha256=8qEObYqYhPbnrFFmF5-j09rPFPFAtVo3WqQaXJKz6XA,1854
|
|
61
65
|
cribl_control_plane/models/getgroupsbyidop.py,sha256=dG2_lux0BILljbzjJhnMdcWnCdu2ZQX08wRmap8c20o,1430
|
|
@@ -250,17 +254,20 @@ cribl_control_plane/models/routesroute_input.py,sha256=VmRpoMuLE5_8yavR_Q8lpHEmE
|
|
|
250
254
|
cribl_control_plane/models/schemeclientoauth.py,sha256=MaZs9lOB3_y8uTZNTHIuAG_X66ZrEpRj0qZGAsBfXFM,712
|
|
251
255
|
cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D4kwRsAQvY,1097
|
|
252
256
|
cribl_control_plane/models/teamaccesscontrollist.py,sha256=HLMck-wyuJYiKD-adSS5ti4yLbHE2snZaOAI0GwgfOI,483
|
|
257
|
+
cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=q_bOMXSkfqyNSNFN-qsseimaFl9xfRsbvjdMfAPAERI,1852
|
|
258
|
+
cribl_control_plane/models/updategroupsbyidop.py,sha256=iJZCyyzoSm_Ha_qTxSiaj4_7Nz-_L3U6_Uk5r9v1BqM,1414
|
|
253
259
|
cribl_control_plane/models/updategroupsdeploybyidop.py,sha256=BUuemFukk3IdNR31zi3vFhT6YZr8_9JYV_nJoaLRfp8,1442
|
|
254
260
|
cribl_control_plane/models/updatehectokenrequest.py,sha256=Pq0JnAZuDqdU_g6mmCvfxfMgeK9Pu3uVXfD9sFWfjKQ,787
|
|
255
261
|
cribl_control_plane/models/updateinputbyidop.py,sha256=DtufjoD9UEPnKT2QOggfMDB1Pv2rwj9cEVuAJKbv39U,1300
|
|
256
262
|
cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=-Q8ZP1yDmQmB9aylQNTs4zR1q6NH-Gi2fhlyiDyqWKI,1677
|
|
257
263
|
cribl_control_plane/models/updateoutputbyidop.py,sha256=odGoTLgvR_AEYizuVMKjcDeB4Uua3BX_U-7OHw7wHiU,1333
|
|
264
|
+
cribl_control_plane/models/updatepacksbyidop.py,sha256=nQeRQF-NTOCRMWz_gXfYlN0-I2OMM8Rovh_vAq73wzw,1965
|
|
258
265
|
cribl_control_plane/models/updatepacksop.py,sha256=jXP_MUAh4cf9u7vo_cJ_zS7Ssv0kd-ZfCCe4yG3b3Zo,1073
|
|
259
266
|
cribl_control_plane/models/updatepipelinebyidop.py,sha256=CPCiszliWVcewMyZ26_R8OvtbJA8RwrEj_XQFoZTSJg,1420
|
|
260
267
|
cribl_control_plane/models/updateroutesbyidop.py,sha256=k6vejvOHHqyfp1oR3aDXEXYIUu6NeRHBl7s9k-jcyiE,1440
|
|
261
268
|
cribl_control_plane/models/updateworkersrestartop.py,sha256=OwX1snIrUTfghc0Pb2PpI5IO6NS-aL0BOMzWqLl8GAA,787
|
|
262
269
|
cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
|
|
263
|
-
cribl_control_plane/packs.py,sha256=
|
|
270
|
+
cribl_control_plane/packs.py,sha256=pIW3stXJ7gdJHkYDJ7LF-_I23g3v5E02iNWOnD1tTs8,38830
|
|
264
271
|
cribl_control_plane/pipelines.py,sha256=L-HbP4gyl05hxb4-HNvkFrk1w6xFccfNr4-AJy3Vjxo,36038
|
|
265
272
|
cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
266
273
|
cribl_control_plane/routes_sdk.py,sha256=bxL7KZKdw4Ot78Q3V4Ea5SWrhnEM0fHdRUwQRDeF0Oc,31227
|
|
@@ -289,6 +296,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
289
296
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
290
297
|
cribl_control_plane/versioning.py,sha256=-bUutXEf__ewPHzgZshBImZZyQILigzXp1H8ZBCFBbQ,93847
|
|
291
298
|
cribl_control_plane/workers_sdk.py,sha256=qEt_s-Zfg8zyzWEHnOtqYzTiNzFSwEalG-1lSYzVJWc,22666
|
|
292
|
-
cribl_control_plane-0.0.
|
|
293
|
-
cribl_control_plane-0.0.
|
|
294
|
-
cribl_control_plane-0.0.
|
|
299
|
+
cribl_control_plane-0.0.21.dist-info/METADATA,sha256=DLwbLGC9vW-ml6MJJudTjeGwmeA95ywJnanOse82-OQ,31197
|
|
300
|
+
cribl_control_plane-0.0.21.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
301
|
+
cribl_control_plane-0.0.21.dist-info/RECORD,,
|
|
File without changes
|