cribl-control-plane 0.0.33__py3-none-any.whl → 0.0.34__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 +8 -8
- cribl_control_plane/destinations.py +3 -3
- cribl_control_plane/models/__init__.py +0 -342
- cribl_control_plane/models/getversionop.py +4 -4
- cribl_control_plane/{destinations_samples.py → samples.py} +1 -1
- cribl_control_plane/sdk.py +0 -3
- {cribl_control_plane-0.0.33.dist-info → cribl_control_plane-0.0.34.dist-info}/METADATA +6 -22
- {cribl_control_plane-0.0.33.dist-info → cribl_control_plane-0.0.34.dist-info}/RECORD +10 -38
- cribl_control_plane/cribl.py +0 -513
- cribl_control_plane/models/authconfig.py +0 -43
- cribl_control_plane/models/commonservicelimitconfigs.py +0 -14
- cribl_control_plane/models/edgeheartbeatmetricsmode.py +0 -11
- cribl_control_plane/models/getsystemsettingsauthop.py +0 -24
- cribl_control_plane/models/getsystemsettingsconfop.py +0 -24
- cribl_control_plane/models/getsystemsettingsgitsettingsop.py +0 -24
- cribl_control_plane/models/gitopstype.py +0 -10
- cribl_control_plane/models/gitsettings.py +0 -70
- cribl_control_plane/models/jobsettings.py +0 -83
- cribl_control_plane/models/limits.py +0 -127
- cribl_control_plane/models/rediscachelimits.py +0 -38
- cribl_control_plane/models/redisconnectionlimits.py +0 -20
- cribl_control_plane/models/redislimits.py +0 -14
- cribl_control_plane/models/searchsettings.py +0 -71
- cribl_control_plane/models/serviceslimits.py +0 -23
- cribl_control_plane/models/systemsettings.py +0 -358
- cribl_control_plane/models/systemsettingsconf.py +0 -311
- cribl_control_plane/models/updatesystemsettingsauthop.py +0 -24
- cribl_control_plane/models/updatesystemsettingsconfop.py +0 -24
- cribl_control_plane/models/updatesystemsettingsgitsettingsop.py +0 -24
- cribl_control_plane/models/upgradegroupsettings.py +0 -24
- cribl_control_plane/models/upgradepackageurls.py +0 -20
- cribl_control_plane/models/upgradesettings.py +0 -36
- cribl_control_plane/settings.py +0 -23
- cribl_control_plane/settings_auth.py +0 -339
- cribl_control_plane/settings_git.py +0 -339
- cribl_control_plane/system_sdk.py +0 -17
- {cribl_control_plane-0.0.33.dist-info → cribl_control_plane-0.0.34.dist-info}/WHEEL +0 -0
|
@@ -10,9 +10,9 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
10
10
|
|
|
11
11
|
class GetVersionRequestTypedDict(TypedDict):
|
|
12
12
|
group: NotRequired[str]
|
|
13
|
-
r"""Group
|
|
13
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the commit history for."""
|
|
14
14
|
count: NotRequired[float]
|
|
15
|
-
r"""Maximum number of commits to return"""
|
|
15
|
+
r"""Maximum number of commits to return in the response for this request."""
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
class GetVersionRequest(BaseModel):
|
|
@@ -20,13 +20,13 @@ class GetVersionRequest(BaseModel):
|
|
|
20
20
|
Optional[str],
|
|
21
21
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
22
22
|
] = None
|
|
23
|
-
r"""Group
|
|
23
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the commit history for."""
|
|
24
24
|
|
|
25
25
|
count: Annotated[
|
|
26
26
|
Optional[float],
|
|
27
27
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
28
28
|
] = None
|
|
29
|
-
r"""Maximum number of commits to return"""
|
|
29
|
+
r"""Maximum number of commits to return in the response for this request."""
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
class GetVersionResponseTypedDict(TypedDict):
|
cribl_control_plane/sdk.py
CHANGED
|
@@ -24,7 +24,6 @@ if TYPE_CHECKING:
|
|
|
24
24
|
from cribl_control_plane.pipelines import Pipelines
|
|
25
25
|
from cribl_control_plane.routes_sdk import RoutesSDK
|
|
26
26
|
from cribl_control_plane.sources import Sources
|
|
27
|
-
from cribl_control_plane.system_sdk import SystemSDK
|
|
28
27
|
from cribl_control_plane.versions import Versions
|
|
29
28
|
|
|
30
29
|
|
|
@@ -46,7 +45,6 @@ class CriblControlPlane(BaseSDK):
|
|
|
46
45
|
r"""Actions related to REST server health"""
|
|
47
46
|
packs: "Packs"
|
|
48
47
|
r"""Actions related to Packs"""
|
|
49
|
-
system: "SystemSDK"
|
|
50
48
|
versions: "Versions"
|
|
51
49
|
groups: "GroupsSDK"
|
|
52
50
|
r"""Actions related to Groups"""
|
|
@@ -60,7 +58,6 @@ class CriblControlPlane(BaseSDK):
|
|
|
60
58
|
"nodes": ("cribl_control_plane.nodes", "Nodes"),
|
|
61
59
|
"health": ("cribl_control_plane.health", "Health"),
|
|
62
60
|
"packs": ("cribl_control_plane.packs", "Packs"),
|
|
63
|
-
"system": ("cribl_control_plane.system_sdk", "SystemSDK"),
|
|
64
61
|
"versions": ("cribl_control_plane.versions", "Versions"),
|
|
65
62
|
"groups": ("cribl_control_plane.groups_sdk", "GroupsSDK"),
|
|
66
63
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.34
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -325,10 +325,10 @@ with CriblControlPlane(
|
|
|
325
325
|
* [clear](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md#clear) - Clear the persistent queue for a Destination
|
|
326
326
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinationspq/README.md#get) - Get information about the latest job to clear the persistent queue for a Destination
|
|
327
327
|
|
|
328
|
-
#### [destinations.samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/
|
|
328
|
+
#### [destinations.samples](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md)
|
|
329
329
|
|
|
330
|
-
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/
|
|
331
|
-
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/
|
|
330
|
+
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#get) - Get sample event data for a Destination
|
|
331
|
+
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/samples/README.md#create) - Send sample event data to a Destination
|
|
332
332
|
|
|
333
333
|
### [groups](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/groupssdk/README.md)
|
|
334
334
|
|
|
@@ -407,22 +407,6 @@ with CriblControlPlane(
|
|
|
407
407
|
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#create) - Add an HEC token and optional metadata to a Splunk HEC Source
|
|
408
408
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#update) - Update metadata for an HEC token for a Splunk HEC Source
|
|
409
409
|
|
|
410
|
-
|
|
411
|
-
#### [system.settings.auth](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/settingsauth/README.md)
|
|
412
|
-
|
|
413
|
-
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/settingsauth/README.md#list) - Get authentication settings
|
|
414
|
-
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/settingsauth/README.md#update) - Update authentication settings
|
|
415
|
-
|
|
416
|
-
#### [system.settings.cribl](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md)
|
|
417
|
-
|
|
418
|
-
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md#list) - Get Cribl system settings
|
|
419
|
-
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/cribl/README.md#update) - Update Cribl system settings
|
|
420
|
-
|
|
421
|
-
#### [system.settings.git](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/settingsgit/README.md)
|
|
422
|
-
|
|
423
|
-
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/settingsgit/README.md#list) - Get git settings
|
|
424
|
-
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/settingsgit/README.md#update) - Update git settings
|
|
425
|
-
|
|
426
410
|
### [versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versions/README.md)
|
|
427
411
|
|
|
428
412
|
|
|
@@ -435,7 +419,7 @@ with CriblControlPlane(
|
|
|
435
419
|
|
|
436
420
|
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#create) - Create a new commit for pending changes to the Cribl configuration
|
|
437
421
|
* [diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#diff) - Get the diff for a commit
|
|
438
|
-
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#list) -
|
|
422
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#list) - List the commit history
|
|
439
423
|
* [push](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#push) - Push local commits to the remote repository
|
|
440
424
|
* [revert](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#revert) - Revert a commit in the local repository
|
|
441
425
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#get) - Get the diff and log message for a commit
|
|
@@ -670,7 +654,7 @@ with CriblControlPlane(
|
|
|
670
654
|
|
|
671
655
|
|
|
672
656
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
673
|
-
* [`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.*
|
|
674
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.
|
|
675
659
|
|
|
676
660
|
</details>
|
|
@@ -4,18 +4,16 @@ 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=AjWT1Z_ewuD1UWi0kHsMqRxkbAR4U5cqJ88VrsFZu08,542
|
|
8
8
|
cribl_control_plane/acl.py,sha256=l4YkY0UMRCevAWohHMSL2jZ40jfG5SBSeWO4meBE8Wg,9021
|
|
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=2XXHXM0wSLUAa4aDo8N_soIHp5xdhRj37P3-aTzbow0,8408
|
|
15
|
-
cribl_control_plane/
|
|
16
|
-
cribl_control_plane/destinations.py,sha256=ruiRc1RCU6HyHj3n1vQ56XK_YEri8C4SQDAU0uITraI,37438
|
|
15
|
+
cribl_control_plane/destinations.py,sha256=ttEDfTKW-DlNBc_q5-EuqdNFMyh1cx_GI3ipN86pcpY,37389
|
|
17
16
|
cribl_control_plane/destinations_pq.py,sha256=KwflapfxGgHBS-05wxj9P1O8RhSP8nx7KwOxhwPqLfs,14871
|
|
18
|
-
cribl_control_plane/destinations_samples.py,sha256=rdGvOehyhHC__JLLmiTpqyTA4VKCd7zoTeOrRMlaG60,16079
|
|
19
17
|
cribl_control_plane/errors/__init__.py,sha256=6d9IGiw8Z6n2sTijw-e11PthRPi-YUkLgzE6zV4MfFQ,1867
|
|
20
18
|
cribl_control_plane/errors/apierror.py,sha256=Z3b3zk672zHljcdijGLJeJ2LiP1f3VpVDEqUuF7LDAA,1253
|
|
21
19
|
cribl_control_plane/errors/criblcontrolplaneerror.py,sha256=P9SU33LkmvyURdJbndHJxXu2KW_3u059peZJ8C80LfM,724
|
|
@@ -29,16 +27,14 @@ cribl_control_plane/health.py,sha256=mDYmC13IE_M9jTVKKBOr5aeZ5QArUURLT1PyPpvn5Ho
|
|
|
29
27
|
cribl_control_plane/hectokens.py,sha256=0EGgGGrM83m1YmTZwkN5S4xFkHQGnw1IZe3y6uMwmLw,19151
|
|
30
28
|
cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
31
29
|
cribl_control_plane/lakedatasets.py,sha256=7WYWcjXMzliDW1j3TQlgikc_h54IUq4lsysVy_39l38,46578
|
|
32
|
-
cribl_control_plane/models/__init__.py,sha256=
|
|
30
|
+
cribl_control_plane/models/__init__.py,sha256=k65UDrcKVdb3kHL2m2L9kppsM7iG3JJ7b-R_7rijQN0,356685
|
|
33
31
|
cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
|
|
34
32
|
cribl_control_plane/models/appmode.py,sha256=5xRJz9oP5ah4b6dcay4Q1IbQ9irm6k6x2BrTNysIMY4,300
|
|
35
|
-
cribl_control_plane/models/authconfig.py,sha256=lMYh5FKFlmQ3UWA2fzFCjqNLpVhe4IcuaX2bse2gPag,875
|
|
36
33
|
cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
|
|
37
34
|
cribl_control_plane/models/cacheconnection.py,sha256=lTXs6ukwNNeFyPb6UixCe9CE9vCCVpku0mFr1GnOtjw,1513
|
|
38
35
|
cribl_control_plane/models/cacheconnectionbackfillstatus.py,sha256=TTR1AwxeB2JiiPD8xq9JnEqhVoTbc3c4N1jEvh8D980,312
|
|
39
36
|
cribl_control_plane/models/cloudprovider.py,sha256=2EiF1HKl65vTxSJHhj_J6ZONvrd-8vK0bxxecH-xRTo,200
|
|
40
37
|
cribl_control_plane/models/commit.py,sha256=wXQkjOYsffxWURHTrfU9kJ4HF2H65QfD1R9-vH0clvQ,641
|
|
41
|
-
cribl_control_plane/models/commonservicelimitconfigs.py,sha256=r3VRl4kP8e3wfhA79DRYJKWageJGQTHW4FT1cCuMlHM,416
|
|
42
38
|
cribl_control_plane/models/configgroup.py,sha256=cgIfR0Fz54SdBLGZNnruaJVA4jUpdVHdSKbji6fh0Bc,3404
|
|
43
39
|
cribl_control_plane/models/configgroupcloud.py,sha256=l9e1E-JyZGu4JANlU8SIzaXcsZIUcs7CtPQs90WvZ-w,1395
|
|
44
40
|
cribl_control_plane/models/configgrouplookups.py,sha256=1z1DlvlVehqfD6hZMXG0XedZTfoCIpYd0cHav45tiRw,830
|
|
@@ -70,7 +66,6 @@ cribl_control_plane/models/deletepipelinebyidop.py,sha256=2TPgET3YUtlqvAjW-iZXcx
|
|
|
70
66
|
cribl_control_plane/models/deployrequest.py,sha256=zSl96WkkLVHACFRYUdPT4w7WhCaOv_V7_nMLcSGRYwE,560
|
|
71
67
|
cribl_control_plane/models/deployrequestlookups.py,sha256=WJQf_uL_22Lj7_TIBZ0pZxspYnkfZu9ABNGBLG35tpA,613
|
|
72
68
|
cribl_control_plane/models/distributedsummary.py,sha256=H3vkBqmL3vbQIggXyfWqqrm3d27b3kgqBt9t9e-Vlz4,1359
|
|
73
|
-
cribl_control_plane/models/edgeheartbeatmetricsmode.py,sha256=XYkgmAtXJz2ANA3uaFDVyNPDrdY-WRrk-_HPmsSJfag,257
|
|
74
69
|
cribl_control_plane/models/getconfiggroupaclbyproductandidop.py,sha256=0ISdKz0d5GxsoBYcyViLcWZf2HZvn7GmktEKA5_JAkk,2761
|
|
75
70
|
cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py,sha256=95gU6mBZUdnTB3pjMvNT8a-MnWzCsrpMyEF1F8ZpQWo,2824
|
|
76
71
|
cribl_control_plane/models/getconfiggroupbyproductandidop.py,sha256=XNsE1v01UJgOPcQiseFxGYHM5pa7Y9-u3E3fblnp-SQ,2390
|
|
@@ -86,15 +81,12 @@ cribl_control_plane/models/getpacksop.py,sha256=LztkNqAPv55ipG4A0sMdgUrA5bRhdMLr
|
|
|
86
81
|
cribl_control_plane/models/getpipelinebyidop.py,sha256=ky8YvLZRrUCs4HTiAvMcQ-nfIWb8Ke7NeDJMw1xdEho,1080
|
|
87
82
|
cribl_control_plane/models/getroutesbyidop.py,sha256=9TeXnLc_WkHoAYbykYxlDP-I0AzsrlYi-iA28jhmpZ8,1058
|
|
88
83
|
cribl_control_plane/models/getsummaryop.py,sha256=YLGm7kKE4aCpGoHtIKWGZbNKW7_2AK3DlqKNLr2lnDE,1673
|
|
89
|
-
cribl_control_plane/models/getsystemsettingsauthop.py,sha256=SZjTLQLf2BHzht1JIn750m4Bl4lU6YzD2hMRg1pZQQs,754
|
|
90
|
-
cribl_control_plane/models/getsystemsettingsconfop.py,sha256=eVY2Wz4xQ4eI1XKbbSW4MeR-26TUSz22TWue4ie-p0g,810
|
|
91
|
-
cribl_control_plane/models/getsystemsettingsgitsettingsop.py,sha256=X2bnmchi0MwmG68WixyBbFI69-Kjdy_6iWAsK6-Rmg0,775
|
|
92
84
|
cribl_control_plane/models/getversionbranchop.py,sha256=hn-tWyDwbp6zqJ8Af4-_Urt-wOwU0nRqsLhLoR_33nU,684
|
|
93
85
|
cribl_control_plane/models/getversioncountop.py,sha256=ayg9xdQGvSBzgCq8E1XqCRJOfmtRkr-D3ioEEGstx-Q,1557
|
|
94
86
|
cribl_control_plane/models/getversiondiffop.py,sha256=108FjGC-lfklVKUAR9SQiEJ98Ie8NpVQblniCkchvtY,2304
|
|
95
87
|
cribl_control_plane/models/getversionfilesop.py,sha256=rzJaSELsEqU9V96whObAirkMkmZqJV8CEX8BtSfHuXI,1687
|
|
96
88
|
cribl_control_plane/models/getversioninfoop.py,sha256=xgglVQWeQTgA_55hr4FghW24JCi3JtGLHk4wzYgnFeg,719
|
|
97
|
-
cribl_control_plane/models/getversionop.py,sha256=
|
|
89
|
+
cribl_control_plane/models/getversionop.py,sha256=m7zV1Jo591Gp051X285Rlq7_UhyfNvsj4xd2s0jueuU,1599
|
|
98
90
|
cribl_control_plane/models/getversionshowop.py,sha256=UbXsfT-pmruUapeY5MBJDLuN3XwJMtFlh3cqYuqEr4s,2410
|
|
99
91
|
cribl_control_plane/models/getversionstatusop.py,sha256=wZy3DooWs_dhvcrIblV9cckLFM88MF7qIOU9KS0E4_A,1298
|
|
100
92
|
cribl_control_plane/models/gitcommitparams.py,sha256=4RwyddK0-QDb2Ax_tP2CVOy1rHsq-KEn5lELI402B6I,563
|
|
@@ -103,10 +95,8 @@ cribl_control_plane/models/gitfile.py,sha256=CMk0Xm08WFtUX73TaKBNAyRagZh-DMIY-m3
|
|
|
103
95
|
cribl_control_plane/models/gitfilesresponse.py,sha256=rGrEXii7aupzjd0i97GRkA56WHvHCHVT0zWuVjQGICI,603
|
|
104
96
|
cribl_control_plane/models/gitinfo.py,sha256=Xbct3PSJJVYojIDLtzy2mB_wNWsgiBgnsT9ZfjN0A-U,515
|
|
105
97
|
cribl_control_plane/models/gitlogresult.py,sha256=JSTXgsLOce7j1z0mJGALXWeOR7pclWzY0T_8gUJdzNk,830
|
|
106
|
-
cribl_control_plane/models/gitopstype.py,sha256=vC-d60hps8BLKMbAJlP00Bq6JoNFipLAxxewflRWl-8,215
|
|
107
98
|
cribl_control_plane/models/gitrevertparams.py,sha256=oOi4wQfztxF4BmfFcRh4-t2Ny6ptONar6MpafcqGr5U,448
|
|
108
99
|
cribl_control_plane/models/gitrevertresult.py,sha256=2GiUgUDfYGLoIARdaQIzW62vXPbny7F70QkbLa_dh54,996
|
|
109
|
-
cribl_control_plane/models/gitsettings.py,sha256=vfwHweVjem1ngFd5-wS5-SMdhgZ_kpbpN1x6lBwqRgU,2190
|
|
110
100
|
cribl_control_plane/models/gitstatusresult.py,sha256=7-pEpOnb4xzQwWo3rPBRN0tbM6UdG4KSIhkiUPyU3to,1166
|
|
111
101
|
cribl_control_plane/models/hbcriblinfo.py,sha256=hA2OxTBrrdu2q5XH5UzfEQUQJ6OKEctujlMjFa4IEts,2262
|
|
112
102
|
cribl_control_plane/models/hbleaderinfo.py,sha256=SU5iM_I4sqxoTOzAQsw-rpOMfXwKl1ymze9nUrw6z6U,503
|
|
@@ -171,10 +161,8 @@ cribl_control_plane/models/inputwindowsmetrics.py,sha256=c7Izs2mRg6QKR7m2_NoXM3i
|
|
|
171
161
|
cribl_control_plane/models/inputwineventlogs.py,sha256=RzYw6fuROAoT8Gkw8NdXKamUhjVuCk5E8E25LCZh5LI,9947
|
|
172
162
|
cribl_control_plane/models/inputwiz.py,sha256=QidRJ_uRDP0TkYPM-Gi681GEMvHsiNK4k3N_Q9Bag_E,14508
|
|
173
163
|
cribl_control_plane/models/inputzscalerhec.py,sha256=fWXEs_RTlz8fxDlWuo0hxmZH-DjslyKbkLaxXksrcvc,20140
|
|
174
|
-
cribl_control_plane/models/jobsettings.py,sha256=kYB8Nm2IWEHE26oqSmrovrmGPQA84F3mL7MDtOdx-Os,2679
|
|
175
164
|
cribl_control_plane/models/lakedatasetsearchconfig.py,sha256=R0zz0K1FQ3gxPx44ezINy9y2bEFBGIWyvniF25D7Ydw,591
|
|
176
165
|
cribl_control_plane/models/lakehouseconnectiontype.py,sha256=W8X07YtfXxwYYkwugN9u65vXfL701NHj3cUWIYys7T0,223
|
|
177
|
-
cribl_control_plane/models/limits.py,sha256=_vmEwhaUAnYoUQrV2aGCb8uUNybDhMtnHarw-Rsp4LI,4082
|
|
178
166
|
cribl_control_plane/models/listconfiggroupbyproductop.py,sha256=aEjF5NMFQt-WDuyZssjq-WepbQ9wIvBaowyj5a0KFCI,2096
|
|
179
167
|
cribl_control_plane/models/listinputop.py,sha256=oj7CRRp7DTtHI3WKPKLoEL30a_JrMp48V33pRPgUMmE,697
|
|
180
168
|
cribl_control_plane/models/listmasterworkerentryop.py,sha256=c9cvTyboRQPHAue1LDsw9uTeJgu6_UxLd0uAUCA0OVg,3554
|
|
@@ -264,20 +252,13 @@ cribl_control_plane/models/packrequestbody.py,sha256=xNPZ7fLLI4xzFh0dkOtpW9hsUxT
|
|
|
264
252
|
cribl_control_plane/models/pipeline.py,sha256=AaoC5euxac-fwul-LM1mNf03hCzrXmHQGZLMrUWuS4g,2130
|
|
265
253
|
cribl_control_plane/models/pipelinefunctionconf.py,sha256=X61RPaoYpa_UZWavnQiNSaXlXqS2EdUK51MQ02IvCeo,1646
|
|
266
254
|
cribl_control_plane/models/rbacresource.py,sha256=Mj5b8UC2KjGIdEc0tmuWsPdXwDgkz4lQcv_vPvM2LpE,361
|
|
267
|
-
cribl_control_plane/models/rediscachelimits.py,sha256=N3VHM0krc777kgIiPi0Npj361QpwVpp1PWoE7lJEdvI,1244
|
|
268
|
-
cribl_control_plane/models/redisconnectionlimits.py,sha256=sMShxqkRlft4XAQF9jL0oZ0DzzQI_v6Ht3ivyNJjbiY,575
|
|
269
|
-
cribl_control_plane/models/redislimits.py,sha256=idSXKoyNKRVYKDtKcNABtUVxze34nPh7kA5GMO41vWk,445
|
|
270
255
|
cribl_control_plane/models/resourcepolicy.py,sha256=GxsEqA88OvvaCg016cBcauLeQ_5TjuygZxRLwQKj6R8,516
|
|
271
256
|
cribl_control_plane/models/routecloneconf.py,sha256=ESvEj0vl58BGOwJB5kYu3vMAm88JizYHXU7qorGdw9M,293
|
|
272
257
|
cribl_control_plane/models/routeconf.py,sha256=whFyvzWwmEqAo_0HoTFKJTZqQ2p8kdPKaZJIlh9nS58,1451
|
|
273
258
|
cribl_control_plane/models/routes.py,sha256=2MRVmc4zvUjQw6moQmRYss_XaoGcaauj2Jpdb3VX8pA,2022
|
|
274
259
|
cribl_control_plane/models/routesroute.py,sha256=7hFUWpgVDBj0N117IFxZRGkFqJntbe4NyBakVyMKsTY,2339
|
|
275
260
|
cribl_control_plane/models/schemeclientoauth.py,sha256=cjePTTFIlKoYg8JZOOuvacOb1Zb5RqmgiqyQA9P3kvU,839
|
|
276
|
-
cribl_control_plane/models/searchsettings.py,sha256=Y_opilq7kSdg9m-p08Hcg_o21jZM9DHNKcFj8lK_OEg,2034
|
|
277
261
|
cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D4kwRsAQvY,1097
|
|
278
|
-
cribl_control_plane/models/serviceslimits.py,sha256=o3pPNv3c9dFa30w17MOW3CINiu-ZqVKBZEtxkMbc5Ow,672
|
|
279
|
-
cribl_control_plane/models/systemsettings.py,sha256=Layqfsqt83YxSMdeQm2EagJnDoQndx3oV3HB97sSllo,9495
|
|
280
|
-
cribl_control_plane/models/systemsettingsconf.py,sha256=SV0r6q3NRoYzXVp27MtRgRlacqTBikeGstg-n8Qnb2Q,8228
|
|
281
262
|
cribl_control_plane/models/teamaccesscontrollist.py,sha256=HLMck-wyuJYiKD-adSS5ti4yLbHE2snZaOAI0GwgfOI,483
|
|
282
263
|
cribl_control_plane/models/updateconfiggroupbyproductandidop.py,sha256=D08m5KFtGhrBoDPxZ22_PkeYqI_nAvvn37V6NpiL08w,2163
|
|
283
264
|
cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py,sha256=YlaoJd_5acj_Gwvgn6RW3XWfx-eZ5hRHGHcLAphh35g,2247
|
|
@@ -289,27 +270,18 @@ cribl_control_plane/models/updateoutputbyidop.py,sha256=44KI9zpS8trSu1FohNHD2egD
|
|
|
289
270
|
cribl_control_plane/models/updatepacksbyidop.py,sha256=3_gienANMXUc5VigEAUzoM8Y-h2t5lKe27M7pr5QWpY,2033
|
|
290
271
|
cribl_control_plane/models/updatepipelinebyidop.py,sha256=B13h6gadw4NV7waH6yoDKCR2YCzVS8XZrzB_5PG9CmE,1410
|
|
291
272
|
cribl_control_plane/models/updateroutesbyidop.py,sha256=CoEURdSBZ4-pp1WSncdT_oZCbx3o7MlmMSDY0D44D_o,1358
|
|
292
|
-
cribl_control_plane/models/updatesystemsettingsauthop.py,sha256=Tv7mRQxctqbeSP57Hj7dx4EalvyciTNs8IXqeiqe1Zo,760
|
|
293
|
-
cribl_control_plane/models/updatesystemsettingsconfop.py,sha256=tiHF1-FddOjo2C2BDYn38hzR2JxlEBqivJ738_9GwXc,788
|
|
294
|
-
cribl_control_plane/models/updatesystemsettingsgitsettingsop.py,sha256=0pd_RGRMD--CtRWRpDq6_s8iDTu0zYgILyDHvwwjAiM,781
|
|
295
|
-
cribl_control_plane/models/upgradegroupsettings.py,sha256=kkFqTSh0reukEQadJhur2ZEYqNEjKlpWAYqChiVs1GA,792
|
|
296
|
-
cribl_control_plane/models/upgradepackageurls.py,sha256=crnkScsFJC4vgPXafbR2PY2wDnWs2e_xEX_MFe9i0Fo,588
|
|
297
|
-
cribl_control_plane/models/upgradesettings.py,sha256=NlTfhEx7bMKKHGdfee3bNLpFO1TAcCQmp2kPlSTW1dM,1202
|
|
298
273
|
cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
|
|
299
274
|
cribl_control_plane/nodes.py,sha256=015pTP--RfK2YFrMRgBe8ha32Mp_38JGDYdxkGdjtzY,17429
|
|
300
275
|
cribl_control_plane/packs.py,sha256=IroglHMxt4opjPUmCujym5UXPfxfto13zF2e4c48VoQ,33394
|
|
301
276
|
cribl_control_plane/pipelines.py,sha256=gHyI9nwt_3cxBQ7gt6EPUPs9NuRC0iA_PoFRAE4Z-V8,35892
|
|
302
277
|
cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
303
278
|
cribl_control_plane/routes_sdk.py,sha256=Snb8Dmim7Fm9EsMqbyjuPnXKmqhJ10L_t1bujJUWTyM,31025
|
|
304
|
-
cribl_control_plane/
|
|
279
|
+
cribl_control_plane/samples.py,sha256=41bJGkB-lxj8WmeI-418PwgMT2KPKqlINp26CKwt0Yk,16067
|
|
280
|
+
cribl_control_plane/sdk.py,sha256=UcM5PrBF5eQKCivl1WEPbIIZ5I6IPQLdi3K4GUxijbY,7463
|
|
305
281
|
cribl_control_plane/sdkconfiguration.py,sha256=bit6SSOyHqvibdtgNad5_ZcgMotk8NJfgHpKsBK8HFg,1259
|
|
306
|
-
cribl_control_plane/settings.py,sha256=KZxhVKQNts8k-sUVmQdfglSuVMeIoux-ZHOrat06n2M,763
|
|
307
|
-
cribl_control_plane/settings_auth.py,sha256=AX9IpxpdrNPnURHtTwA6jiM5B0nzifOBNDwdR7TP2y8,13961
|
|
308
|
-
cribl_control_plane/settings_git.py,sha256=EKJRXWyyG1Qf_Ji_uKGXqUN43K6kGFgqBbFyn8BLHDQ,13988
|
|
309
282
|
cribl_control_plane/sources.py,sha256=rexCbl4lSCw3OBjklfw_xTvUPSczUzsFHVYsYoboSf4,37018
|
|
310
283
|
cribl_control_plane/statuses.py,sha256=1VkWWzGBuCRTBDhRUGjKiuQm8H2iLiGHGXgT4LwWv4c,7989
|
|
311
284
|
cribl_control_plane/summaries.py,sha256=Z9olwB0xyhkIBgJrZudADGSLvb0YkcuJMoGFPsCZiMw,8064
|
|
312
|
-
cribl_control_plane/system_sdk.py,sha256=rc0zt9rBWxdK9lTstbgSn43biPUGsk7Ymgsc5QmN8Ys,510
|
|
313
285
|
cribl_control_plane/teams.py,sha256=v1n4LIegDw8Nv5gwHdHIZUboSUyE3tGoKwRKHLMTauc,8962
|
|
314
286
|
cribl_control_plane/tokens.py,sha256=iP_0_Pl8LFgs_ektBTU-bvRjJq6JQ3q7qMWIeIIuXmc,7220
|
|
315
287
|
cribl_control_plane/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
@@ -333,6 +305,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
333
305
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
334
306
|
cribl_control_plane/versions.py,sha256=Wdaxc2wZeEeD12wAh7SQ0RGG9KgwKaWQ7bc8qOQ8oAo,920
|
|
335
307
|
cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
|
|
336
|
-
cribl_control_plane-0.0.
|
|
337
|
-
cribl_control_plane-0.0.
|
|
338
|
-
cribl_control_plane-0.0.
|
|
308
|
+
cribl_control_plane-0.0.34.dist-info/METADATA,sha256=5A5rZmb_wWxBauxqx1OdG2L66miRh1xGn8RyShgVGfs,38713
|
|
309
|
+
cribl_control_plane-0.0.34.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
310
|
+
cribl_control_plane-0.0.34.dist-info/RECORD,,
|