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/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "cribl-control-plane"
|
|
6
|
-
__version__: str = "0.0.
|
|
7
|
-
__openapi_doc_version__: str = "4.14.0-alpha.
|
|
6
|
+
__version__: str = "0.0.37a1"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1755764858399-d5c9979b"
|
|
8
8
|
__gen_version__: str = "2.686.7"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.0.37a1 2.686.7 4.14.0-alpha.1755764858399-d5c9979b cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
cribl_control_plane/commits.py
CHANGED
|
@@ -756,9 +756,9 @@ class Commits(BaseSDK):
|
|
|
756
756
|
self,
|
|
757
757
|
*,
|
|
758
758
|
commit: str,
|
|
759
|
+
message: str,
|
|
759
760
|
group: Optional[str] = None,
|
|
760
761
|
force: Optional[bool] = None,
|
|
761
|
-
message: Optional[str] = None,
|
|
762
762
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
763
763
|
server_url: Optional[str] = None,
|
|
764
764
|
timeout_ms: Optional[int] = None,
|
|
@@ -769,9 +769,9 @@ class Commits(BaseSDK):
|
|
|
769
769
|
Revert a commit in the local repository.
|
|
770
770
|
|
|
771
771
|
:param commit:
|
|
772
|
+
:param message:
|
|
772
773
|
:param group: Group ID
|
|
773
774
|
:param force:
|
|
774
|
-
:param message:
|
|
775
775
|
:param retries: Override the default retry configuration for this method
|
|
776
776
|
:param server_url: Override the default server URL for this method
|
|
777
777
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -857,9 +857,9 @@ class Commits(BaseSDK):
|
|
|
857
857
|
self,
|
|
858
858
|
*,
|
|
859
859
|
commit: str,
|
|
860
|
+
message: str,
|
|
860
861
|
group: Optional[str] = None,
|
|
861
862
|
force: Optional[bool] = None,
|
|
862
|
-
message: Optional[str] = None,
|
|
863
863
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
864
864
|
server_url: Optional[str] = None,
|
|
865
865
|
timeout_ms: Optional[int] = None,
|
|
@@ -870,9 +870,9 @@ class Commits(BaseSDK):
|
|
|
870
870
|
Revert a commit in the local repository.
|
|
871
871
|
|
|
872
872
|
:param commit:
|
|
873
|
+
:param message:
|
|
873
874
|
:param group: Group ID
|
|
874
875
|
:param force:
|
|
875
|
-
:param message:
|
|
876
876
|
:param retries: Override the default retry configuration for this method
|
|
877
877
|
:param server_url: Override the default server URL for this method
|
|
878
878
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|