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/_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.36"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1755792230606-47c829c2"
|
|
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.36 2.686.7 4.14.0-alpha.1755792230606-47c829c2 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
cribl_control_plane/acl.py
CHANGED
|
@@ -25,9 +25,9 @@ class ACL(BaseSDK):
|
|
|
25
25
|
def get(
|
|
26
26
|
self,
|
|
27
27
|
*,
|
|
28
|
-
product: models.
|
|
28
|
+
product: models.ProductsCore,
|
|
29
29
|
id: str,
|
|
30
|
-
type_: Optional[models.
|
|
30
|
+
type_: Optional[models.RbacResource] = None,
|
|
31
31
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
32
32
|
server_url: Optional[str] = None,
|
|
33
33
|
timeout_ms: Optional[int] = None,
|
|
@@ -120,9 +120,9 @@ class ACL(BaseSDK):
|
|
|
120
120
|
async def get_async(
|
|
121
121
|
self,
|
|
122
122
|
*,
|
|
123
|
-
product: models.
|
|
123
|
+
product: models.ProductsCore,
|
|
124
124
|
id: str,
|
|
125
|
-
type_: Optional[models.
|
|
125
|
+
type_: Optional[models.RbacResource] = None,
|
|
126
126
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
127
127
|
server_url: Optional[str] = None,
|
|
128
128
|
timeout_ms: Optional[int] = 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,
|
|
760
759
|
group: Optional[str] = None,
|
|
761
760
|
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:
|
|
773
772
|
:param group: Group ID
|
|
774
773
|
: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,
|
|
861
860
|
group: Optional[str] = None,
|
|
862
861
|
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:
|
|
874
873
|
:param group: Group ID
|
|
875
874
|
: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
|
|
@@ -13,7 +13,7 @@ class ConfigsVersions(BaseSDK):
|
|
|
13
13
|
def get(
|
|
14
14
|
self,
|
|
15
15
|
*,
|
|
16
|
-
product: models.
|
|
16
|
+
product: models.ProductsCore,
|
|
17
17
|
id: str,
|
|
18
18
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
19
19
|
server_url: Optional[str] = None,
|
|
@@ -105,7 +105,7 @@ class ConfigsVersions(BaseSDK):
|
|
|
105
105
|
async def get_async(
|
|
106
106
|
self,
|
|
107
107
|
*,
|
|
108
|
-
product: models.
|
|
108
|
+
product: models.ProductsCore,
|
|
109
109
|
id: str,
|
|
110
110
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
111
111
|
server_url: Optional[str] = None,
|
|
@@ -30,7 +30,7 @@ class GroupsSDK(BaseSDK):
|
|
|
30
30
|
def list(
|
|
31
31
|
self,
|
|
32
32
|
*,
|
|
33
|
-
product: models.
|
|
33
|
+
product: models.ProductsCore,
|
|
34
34
|
fields: Optional[str] = None,
|
|
35
35
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
36
36
|
server_url: Optional[str] = None,
|
|
@@ -122,7 +122,7 @@ class GroupsSDK(BaseSDK):
|
|
|
122
122
|
async def list_async(
|
|
123
123
|
self,
|
|
124
124
|
*,
|
|
125
|
-
product: models.
|
|
125
|
+
product: models.ProductsCore,
|
|
126
126
|
fields: Optional[str] = None,
|
|
127
127
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
128
128
|
server_url: Optional[str] = None,
|
|
@@ -214,7 +214,7 @@ class GroupsSDK(BaseSDK):
|
|
|
214
214
|
def create(
|
|
215
215
|
self,
|
|
216
216
|
*,
|
|
217
|
-
product: models.
|
|
217
|
+
product: models.ProductsCore,
|
|
218
218
|
config_version: str,
|
|
219
219
|
id: str,
|
|
220
220
|
cloud: Optional[
|
|
@@ -385,7 +385,7 @@ class GroupsSDK(BaseSDK):
|
|
|
385
385
|
async def create_async(
|
|
386
386
|
self,
|
|
387
387
|
*,
|
|
388
|
-
product: models.
|
|
388
|
+
product: models.ProductsCore,
|
|
389
389
|
config_version: str,
|
|
390
390
|
id: str,
|
|
391
391
|
cloud: Optional[
|
|
@@ -556,7 +556,7 @@ class GroupsSDK(BaseSDK):
|
|
|
556
556
|
def get(
|
|
557
557
|
self,
|
|
558
558
|
*,
|
|
559
|
-
product: models.
|
|
559
|
+
product: models.ProductsCore,
|
|
560
560
|
id: str,
|
|
561
561
|
fields: Optional[str] = None,
|
|
562
562
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
@@ -651,7 +651,7 @@ class GroupsSDK(BaseSDK):
|
|
|
651
651
|
async def get_async(
|
|
652
652
|
self,
|
|
653
653
|
*,
|
|
654
|
-
product: models.
|
|
654
|
+
product: models.ProductsCore,
|
|
655
655
|
id: str,
|
|
656
656
|
fields: Optional[str] = None,
|
|
657
657
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
@@ -746,7 +746,7 @@ class GroupsSDK(BaseSDK):
|
|
|
746
746
|
def update(
|
|
747
747
|
self,
|
|
748
748
|
*,
|
|
749
|
-
product: models.
|
|
749
|
+
product: models.ProductsCore,
|
|
750
750
|
id_param: str,
|
|
751
751
|
config_version: str,
|
|
752
752
|
id: str,
|
|
@@ -920,7 +920,7 @@ class GroupsSDK(BaseSDK):
|
|
|
920
920
|
async def update_async(
|
|
921
921
|
self,
|
|
922
922
|
*,
|
|
923
|
-
product: models.
|
|
923
|
+
product: models.ProductsCore,
|
|
924
924
|
id_param: str,
|
|
925
925
|
config_version: str,
|
|
926
926
|
id: str,
|
|
@@ -1094,7 +1094,7 @@ class GroupsSDK(BaseSDK):
|
|
|
1094
1094
|
def delete(
|
|
1095
1095
|
self,
|
|
1096
1096
|
*,
|
|
1097
|
-
product: models.
|
|
1097
|
+
product: models.ProductsCore,
|
|
1098
1098
|
id: str,
|
|
1099
1099
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
1100
1100
|
server_url: Optional[str] = None,
|
|
@@ -1186,7 +1186,7 @@ class GroupsSDK(BaseSDK):
|
|
|
1186
1186
|
async def delete_async(
|
|
1187
1187
|
self,
|
|
1188
1188
|
*,
|
|
1189
|
-
product: models.
|
|
1189
|
+
product: models.ProductsCore,
|
|
1190
1190
|
id: str,
|
|
1191
1191
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
1192
1192
|
server_url: Optional[str] = None,
|
|
@@ -1278,7 +1278,7 @@ class GroupsSDK(BaseSDK):
|
|
|
1278
1278
|
def deploy(
|
|
1279
1279
|
self,
|
|
1280
1280
|
*,
|
|
1281
|
-
product: models.
|
|
1281
|
+
product: models.ProductsCore,
|
|
1282
1282
|
id: str,
|
|
1283
1283
|
version: str,
|
|
1284
1284
|
lookups: Optional[
|
|
@@ -1388,7 +1388,7 @@ class GroupsSDK(BaseSDK):
|
|
|
1388
1388
|
async def deploy_async(
|
|
1389
1389
|
self,
|
|
1390
1390
|
*,
|
|
1391
|
-
product: models.
|
|
1391
|
+
product: models.ProductsCore,
|
|
1392
1392
|
id: str,
|
|
1393
1393
|
version: str,
|
|
1394
1394
|
lookups: Optional[
|
|
@@ -32,7 +32,6 @@ if TYPE_CHECKING:
|
|
|
32
32
|
ConfigGroupLookupsTypedDict,
|
|
33
33
|
)
|
|
34
34
|
from .createconfiggroupbyproductop import (
|
|
35
|
-
CreateConfigGroupByProductProduct,
|
|
36
35
|
CreateConfigGroupByProductRequest,
|
|
37
36
|
CreateConfigGroupByProductRequestTypedDict,
|
|
38
37
|
CreateConfigGroupByProductResponse,
|
|
@@ -102,7 +101,6 @@ if TYPE_CHECKING:
|
|
|
102
101
|
DatasetMetadataRunInfoTypedDict,
|
|
103
102
|
)
|
|
104
103
|
from .deleteconfiggroupbyproductandidop import (
|
|
105
|
-
DeleteConfigGroupByProductAndIDProduct,
|
|
106
104
|
DeleteConfigGroupByProductAndIDRequest,
|
|
107
105
|
DeleteConfigGroupByProductAndIDRequestTypedDict,
|
|
108
106
|
DeleteConfigGroupByProductAndIDResponse,
|
|
@@ -160,30 +158,24 @@ if TYPE_CHECKING:
|
|
|
160
158
|
DistributedSummaryWorkersTypedDict,
|
|
161
159
|
)
|
|
162
160
|
from .getconfiggroupaclbyproductandidop import (
|
|
163
|
-
GetConfigGroupACLByProductAndIDProduct,
|
|
164
161
|
GetConfigGroupACLByProductAndIDRequest,
|
|
165
162
|
GetConfigGroupACLByProductAndIDRequestTypedDict,
|
|
166
163
|
GetConfigGroupACLByProductAndIDResponse,
|
|
167
164
|
GetConfigGroupACLByProductAndIDResponseTypedDict,
|
|
168
|
-
GetConfigGroupACLByProductAndIDType,
|
|
169
165
|
)
|
|
170
166
|
from .getconfiggroupaclteamsbyproductandidop import (
|
|
171
|
-
GetConfigGroupACLTeamsByProductAndIDProduct,
|
|
172
167
|
GetConfigGroupACLTeamsByProductAndIDRequest,
|
|
173
168
|
GetConfigGroupACLTeamsByProductAndIDRequestTypedDict,
|
|
174
169
|
GetConfigGroupACLTeamsByProductAndIDResponse,
|
|
175
170
|
GetConfigGroupACLTeamsByProductAndIDResponseTypedDict,
|
|
176
|
-
GetConfigGroupACLTeamsByProductAndIDType,
|
|
177
171
|
)
|
|
178
172
|
from .getconfiggroupbyproductandidop import (
|
|
179
|
-
GetConfigGroupByProductAndIDProduct,
|
|
180
173
|
GetConfigGroupByProductAndIDRequest,
|
|
181
174
|
GetConfigGroupByProductAndIDRequestTypedDict,
|
|
182
175
|
GetConfigGroupByProductAndIDResponse,
|
|
183
176
|
GetConfigGroupByProductAndIDResponseTypedDict,
|
|
184
177
|
)
|
|
185
178
|
from .getconfiggroupconfigversionbyproductandidop import (
|
|
186
|
-
GetConfigGroupConfigVersionByProductAndIDProduct,
|
|
187
179
|
GetConfigGroupConfigVersionByProductAndIDRequest,
|
|
188
180
|
GetConfigGroupConfigVersionByProductAndIDRequestTypedDict,
|
|
189
181
|
GetConfigGroupConfigVersionByProductAndIDResponse,
|
|
@@ -231,6 +223,12 @@ if TYPE_CHECKING:
|
|
|
231
223
|
GetOutputSamplesByIDResponse,
|
|
232
224
|
GetOutputSamplesByIDResponseTypedDict,
|
|
233
225
|
)
|
|
226
|
+
from .getpacksbyidop import (
|
|
227
|
+
GetPacksByIDRequest,
|
|
228
|
+
GetPacksByIDRequestTypedDict,
|
|
229
|
+
GetPacksByIDResponse,
|
|
230
|
+
GetPacksByIDResponseTypedDict,
|
|
231
|
+
)
|
|
234
232
|
from .getpacksop import (
|
|
235
233
|
GetPacksRequest,
|
|
236
234
|
GetPacksRequestTypedDict,
|
|
@@ -250,7 +248,6 @@ if TYPE_CHECKING:
|
|
|
250
248
|
GetRoutesByIDResponseTypedDict,
|
|
251
249
|
)
|
|
252
250
|
from .getsummaryop import (
|
|
253
|
-
GetSummaryMode,
|
|
254
251
|
GetSummaryRequest,
|
|
255
252
|
GetSummaryRequestTypedDict,
|
|
256
253
|
GetSummaryResponse,
|
|
@@ -1578,6 +1575,27 @@ if TYPE_CHECKING:
|
|
|
1578
1575
|
InputWizType,
|
|
1579
1576
|
InputWizTypedDict,
|
|
1580
1577
|
)
|
|
1578
|
+
from .inputwizwebhook import (
|
|
1579
|
+
InputWizWebhook,
|
|
1580
|
+
InputWizWebhookAuthTokensExt,
|
|
1581
|
+
InputWizWebhookAuthTokensExtMetadatum,
|
|
1582
|
+
InputWizWebhookAuthTokensExtMetadatumTypedDict,
|
|
1583
|
+
InputWizWebhookAuthTokensExtTypedDict,
|
|
1584
|
+
InputWizWebhookCompression,
|
|
1585
|
+
InputWizWebhookConnection,
|
|
1586
|
+
InputWizWebhookConnectionTypedDict,
|
|
1587
|
+
InputWizWebhookMaximumTLSVersion,
|
|
1588
|
+
InputWizWebhookMetadatum,
|
|
1589
|
+
InputWizWebhookMetadatumTypedDict,
|
|
1590
|
+
InputWizWebhookMinimumTLSVersion,
|
|
1591
|
+
InputWizWebhookMode,
|
|
1592
|
+
InputWizWebhookPq,
|
|
1593
|
+
InputWizWebhookPqTypedDict,
|
|
1594
|
+
InputWizWebhookTLSSettingsServerSide,
|
|
1595
|
+
InputWizWebhookTLSSettingsServerSideTypedDict,
|
|
1596
|
+
InputWizWebhookType,
|
|
1597
|
+
InputWizWebhookTypedDict,
|
|
1598
|
+
)
|
|
1581
1599
|
from .inputzscalerhec import (
|
|
1582
1600
|
InputZscalerHec,
|
|
1583
1601
|
InputZscalerHecAuthToken,
|
|
@@ -1606,7 +1624,6 @@ if TYPE_CHECKING:
|
|
|
1606
1624
|
)
|
|
1607
1625
|
from .lakehouseconnectiontype import LakehouseConnectionType
|
|
1608
1626
|
from .listconfiggroupbyproductop import (
|
|
1609
|
-
ListConfigGroupByProductProduct,
|
|
1610
1627
|
ListConfigGroupByProductRequest,
|
|
1611
1628
|
ListConfigGroupByProductRequestTypedDict,
|
|
1612
1629
|
ListConfigGroupByProductResponse,
|
|
@@ -2946,6 +2963,7 @@ if TYPE_CHECKING:
|
|
|
2946
2963
|
PipelineFunctionConf,
|
|
2947
2964
|
PipelineFunctionConfTypedDict,
|
|
2948
2965
|
)
|
|
2966
|
+
from .productscore import ProductsCore
|
|
2949
2967
|
from .rbacresource import RbacResource
|
|
2950
2968
|
from .resourcepolicy import ResourcePolicy, ResourcePolicyTypedDict
|
|
2951
2969
|
from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
|
|
@@ -2966,14 +2984,12 @@ if TYPE_CHECKING:
|
|
|
2966
2984
|
TeamAccessControlListTypedDict,
|
|
2967
2985
|
)
|
|
2968
2986
|
from .updateconfiggroupbyproductandidop import (
|
|
2969
|
-
UpdateConfigGroupByProductAndIDProduct,
|
|
2970
2987
|
UpdateConfigGroupByProductAndIDRequest,
|
|
2971
2988
|
UpdateConfigGroupByProductAndIDRequestTypedDict,
|
|
2972
2989
|
UpdateConfigGroupByProductAndIDResponse,
|
|
2973
2990
|
UpdateConfigGroupByProductAndIDResponseTypedDict,
|
|
2974
2991
|
)
|
|
2975
2992
|
from .updateconfiggroupdeploybyproductandidop import (
|
|
2976
|
-
UpdateConfigGroupDeployByProductAndIDProduct,
|
|
2977
2993
|
UpdateConfigGroupDeployByProductAndIDRequest,
|
|
2978
2994
|
UpdateConfigGroupDeployByProductAndIDRequestTypedDict,
|
|
2979
2995
|
UpdateConfigGroupDeployByProductAndIDResponse,
|
|
@@ -3031,6 +3047,7 @@ if TYPE_CHECKING:
|
|
|
3031
3047
|
UserAccessControlList,
|
|
3032
3048
|
UserAccessControlListTypedDict,
|
|
3033
3049
|
)
|
|
3050
|
+
from .workertypes import WorkerTypes
|
|
3034
3051
|
|
|
3035
3052
|
__all__ = [
|
|
3036
3053
|
"AISIEMEndpointPath",
|
|
@@ -3083,7 +3100,6 @@ __all__ = [
|
|
|
3083
3100
|
"Container",
|
|
3084
3101
|
"ContainerMode",
|
|
3085
3102
|
"ContainerTypedDict",
|
|
3086
|
-
"CreateConfigGroupByProductProduct",
|
|
3087
3103
|
"CreateConfigGroupByProductRequest",
|
|
3088
3104
|
"CreateConfigGroupByProductRequestTypedDict",
|
|
3089
3105
|
"CreateConfigGroupByProductResponse",
|
|
@@ -3141,7 +3157,6 @@ __all__ = [
|
|
|
3141
3157
|
"DatasetMetadataRunInfo",
|
|
3142
3158
|
"DatasetMetadataRunInfoTypedDict",
|
|
3143
3159
|
"DatasetMetadataTypedDict",
|
|
3144
|
-
"DeleteConfigGroupByProductAndIDProduct",
|
|
3145
3160
|
"DeleteConfigGroupByProductAndIDRequest",
|
|
3146
3161
|
"DeleteConfigGroupByProductAndIDRequestTypedDict",
|
|
3147
3162
|
"DeleteConfigGroupByProductAndIDResponse",
|
|
@@ -3208,24 +3223,18 @@ __all__ = [
|
|
|
3208
3223
|
"FlushPeriodSecTypedDict",
|
|
3209
3224
|
"FunctionSpecificConfigs",
|
|
3210
3225
|
"FunctionSpecificConfigsTypedDict",
|
|
3211
|
-
"GetConfigGroupACLByProductAndIDProduct",
|
|
3212
3226
|
"GetConfigGroupACLByProductAndIDRequest",
|
|
3213
3227
|
"GetConfigGroupACLByProductAndIDRequestTypedDict",
|
|
3214
3228
|
"GetConfigGroupACLByProductAndIDResponse",
|
|
3215
3229
|
"GetConfigGroupACLByProductAndIDResponseTypedDict",
|
|
3216
|
-
"GetConfigGroupACLByProductAndIDType",
|
|
3217
|
-
"GetConfigGroupACLTeamsByProductAndIDProduct",
|
|
3218
3230
|
"GetConfigGroupACLTeamsByProductAndIDRequest",
|
|
3219
3231
|
"GetConfigGroupACLTeamsByProductAndIDRequestTypedDict",
|
|
3220
3232
|
"GetConfigGroupACLTeamsByProductAndIDResponse",
|
|
3221
3233
|
"GetConfigGroupACLTeamsByProductAndIDResponseTypedDict",
|
|
3222
|
-
"GetConfigGroupACLTeamsByProductAndIDType",
|
|
3223
|
-
"GetConfigGroupByProductAndIDProduct",
|
|
3224
3234
|
"GetConfigGroupByProductAndIDRequest",
|
|
3225
3235
|
"GetConfigGroupByProductAndIDRequestTypedDict",
|
|
3226
3236
|
"GetConfigGroupByProductAndIDResponse",
|
|
3227
3237
|
"GetConfigGroupByProductAndIDResponseTypedDict",
|
|
3228
|
-
"GetConfigGroupConfigVersionByProductAndIDProduct",
|
|
3229
3238
|
"GetConfigGroupConfigVersionByProductAndIDRequest",
|
|
3230
3239
|
"GetConfigGroupConfigVersionByProductAndIDRequestTypedDict",
|
|
3231
3240
|
"GetConfigGroupConfigVersionByProductAndIDResponse",
|
|
@@ -3258,6 +3267,10 @@ __all__ = [
|
|
|
3258
3267
|
"GetOutputSamplesByIDRequestTypedDict",
|
|
3259
3268
|
"GetOutputSamplesByIDResponse",
|
|
3260
3269
|
"GetOutputSamplesByIDResponseTypedDict",
|
|
3270
|
+
"GetPacksByIDRequest",
|
|
3271
|
+
"GetPacksByIDRequestTypedDict",
|
|
3272
|
+
"GetPacksByIDResponse",
|
|
3273
|
+
"GetPacksByIDResponseTypedDict",
|
|
3261
3274
|
"GetPacksRequest",
|
|
3262
3275
|
"GetPacksRequestTypedDict",
|
|
3263
3276
|
"GetPacksResponse",
|
|
@@ -3270,7 +3283,6 @@ __all__ = [
|
|
|
3270
3283
|
"GetRoutesByIDRequestTypedDict",
|
|
3271
3284
|
"GetRoutesByIDResponse",
|
|
3272
3285
|
"GetRoutesByIDResponseTypedDict",
|
|
3273
|
-
"GetSummaryMode",
|
|
3274
3286
|
"GetSummaryRequest",
|
|
3275
3287
|
"GetSummaryRequestTypedDict",
|
|
3276
3288
|
"GetSummaryResponse",
|
|
@@ -4396,6 +4408,25 @@ __all__ = [
|
|
|
4396
4408
|
"InputWizRetryType",
|
|
4397
4409
|
"InputWizType",
|
|
4398
4410
|
"InputWizTypedDict",
|
|
4411
|
+
"InputWizWebhook",
|
|
4412
|
+
"InputWizWebhookAuthTokensExt",
|
|
4413
|
+
"InputWizWebhookAuthTokensExtMetadatum",
|
|
4414
|
+
"InputWizWebhookAuthTokensExtMetadatumTypedDict",
|
|
4415
|
+
"InputWizWebhookAuthTokensExtTypedDict",
|
|
4416
|
+
"InputWizWebhookCompression",
|
|
4417
|
+
"InputWizWebhookConnection",
|
|
4418
|
+
"InputWizWebhookConnectionTypedDict",
|
|
4419
|
+
"InputWizWebhookMaximumTLSVersion",
|
|
4420
|
+
"InputWizWebhookMetadatum",
|
|
4421
|
+
"InputWizWebhookMetadatumTypedDict",
|
|
4422
|
+
"InputWizWebhookMinimumTLSVersion",
|
|
4423
|
+
"InputWizWebhookMode",
|
|
4424
|
+
"InputWizWebhookPq",
|
|
4425
|
+
"InputWizWebhookPqTypedDict",
|
|
4426
|
+
"InputWizWebhookTLSSettingsServerSide",
|
|
4427
|
+
"InputWizWebhookTLSSettingsServerSideTypedDict",
|
|
4428
|
+
"InputWizWebhookType",
|
|
4429
|
+
"InputWizWebhookTypedDict",
|
|
4399
4430
|
"InputZscalerHec",
|
|
4400
4431
|
"InputZscalerHecAuthToken",
|
|
4401
4432
|
"InputZscalerHecAuthTokenMetadatum",
|
|
@@ -4423,7 +4454,6 @@ __all__ = [
|
|
|
4423
4454
|
"LakehouseConnectionType",
|
|
4424
4455
|
"LastMetrics",
|
|
4425
4456
|
"LastMetricsTypedDict",
|
|
4426
|
-
"ListConfigGroupByProductProduct",
|
|
4427
4457
|
"ListConfigGroupByProductRequest",
|
|
4428
4458
|
"ListConfigGroupByProductRequestTypedDict",
|
|
4429
4459
|
"ListConfigGroupByProductResponse",
|
|
@@ -5603,6 +5633,7 @@ __all__ = [
|
|
|
5603
5633
|
"PodFilter",
|
|
5604
5634
|
"PodFilterTypedDict",
|
|
5605
5635
|
"PrefixOptional",
|
|
5636
|
+
"ProductsCore",
|
|
5606
5637
|
"PrometheusAuthOauthHeader1",
|
|
5607
5638
|
"PrometheusAuthOauthHeader1TypedDict",
|
|
5608
5639
|
"PrometheusAuthOauthHeader2",
|
|
@@ -5668,12 +5699,10 @@ __all__ = [
|
|
|
5668
5699
|
"TelemetryType",
|
|
5669
5700
|
"TimestampFormat",
|
|
5670
5701
|
"TimestampPrecision",
|
|
5671
|
-
"UpdateConfigGroupByProductAndIDProduct",
|
|
5672
5702
|
"UpdateConfigGroupByProductAndIDRequest",
|
|
5673
5703
|
"UpdateConfigGroupByProductAndIDRequestTypedDict",
|
|
5674
5704
|
"UpdateConfigGroupByProductAndIDResponse",
|
|
5675
5705
|
"UpdateConfigGroupByProductAndIDResponseTypedDict",
|
|
5676
|
-
"UpdateConfigGroupDeployByProductAndIDProduct",
|
|
5677
5706
|
"UpdateConfigGroupDeployByProductAndIDRequest",
|
|
5678
5707
|
"UpdateConfigGroupDeployByProductAndIDRequestTypedDict",
|
|
5679
5708
|
"UpdateConfigGroupDeployByProductAndIDResponse",
|
|
@@ -5716,6 +5745,7 @@ __all__ = [
|
|
|
5716
5745
|
"UsersAndGroupsTypedDict",
|
|
5717
5746
|
"V3User",
|
|
5718
5747
|
"V3UserTypedDict",
|
|
5748
|
+
"WorkerTypes",
|
|
5719
5749
|
"WriteAction",
|
|
5720
5750
|
]
|
|
5721
5751
|
|
|
@@ -5744,7 +5774,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5744
5774
|
"ConfigGroupLookupsLookup": ".configgrouplookups",
|
|
5745
5775
|
"ConfigGroupLookupsLookupTypedDict": ".configgrouplookups",
|
|
5746
5776
|
"ConfigGroupLookupsTypedDict": ".configgrouplookups",
|
|
5747
|
-
"CreateConfigGroupByProductProduct": ".createconfiggroupbyproductop",
|
|
5748
5777
|
"CreateConfigGroupByProductRequest": ".createconfiggroupbyproductop",
|
|
5749
5778
|
"CreateConfigGroupByProductRequestTypedDict": ".createconfiggroupbyproductop",
|
|
5750
5779
|
"CreateConfigGroupByProductResponse": ".createconfiggroupbyproductop",
|
|
@@ -5797,7 +5826,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5797
5826
|
"ScanMode": ".datasetmetadata",
|
|
5798
5827
|
"DatasetMetadataRunInfo": ".datasetmetadataruninfo",
|
|
5799
5828
|
"DatasetMetadataRunInfoTypedDict": ".datasetmetadataruninfo",
|
|
5800
|
-
"DeleteConfigGroupByProductAndIDProduct": ".deleteconfiggroupbyproductandidop",
|
|
5801
5829
|
"DeleteConfigGroupByProductAndIDRequest": ".deleteconfiggroupbyproductandidop",
|
|
5802
5830
|
"DeleteConfigGroupByProductAndIDRequestTypedDict": ".deleteconfiggroupbyproductandidop",
|
|
5803
5831
|
"DeleteConfigGroupByProductAndIDResponse": ".deleteconfiggroupbyproductandidop",
|
|
@@ -5838,24 +5866,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5838
5866
|
"DistributedSummaryTypedDict": ".distributedsummary",
|
|
5839
5867
|
"DistributedSummaryWorkers": ".distributedsummary",
|
|
5840
5868
|
"DistributedSummaryWorkersTypedDict": ".distributedsummary",
|
|
5841
|
-
"GetConfigGroupACLByProductAndIDProduct": ".getconfiggroupaclbyproductandidop",
|
|
5842
5869
|
"GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
|
|
5843
5870
|
"GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
|
|
5844
5871
|
"GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
|
|
5845
5872
|
"GetConfigGroupACLByProductAndIDResponseTypedDict": ".getconfiggroupaclbyproductandidop",
|
|
5846
|
-
"GetConfigGroupACLByProductAndIDType": ".getconfiggroupaclbyproductandidop",
|
|
5847
|
-
"GetConfigGroupACLTeamsByProductAndIDProduct": ".getconfiggroupaclteamsbyproductandidop",
|
|
5848
5873
|
"GetConfigGroupACLTeamsByProductAndIDRequest": ".getconfiggroupaclteamsbyproductandidop",
|
|
5849
5874
|
"GetConfigGroupACLTeamsByProductAndIDRequestTypedDict": ".getconfiggroupaclteamsbyproductandidop",
|
|
5850
5875
|
"GetConfigGroupACLTeamsByProductAndIDResponse": ".getconfiggroupaclteamsbyproductandidop",
|
|
5851
5876
|
"GetConfigGroupACLTeamsByProductAndIDResponseTypedDict": ".getconfiggroupaclteamsbyproductandidop",
|
|
5852
|
-
"GetConfigGroupACLTeamsByProductAndIDType": ".getconfiggroupaclteamsbyproductandidop",
|
|
5853
|
-
"GetConfigGroupByProductAndIDProduct": ".getconfiggroupbyproductandidop",
|
|
5854
5877
|
"GetConfigGroupByProductAndIDRequest": ".getconfiggroupbyproductandidop",
|
|
5855
5878
|
"GetConfigGroupByProductAndIDRequestTypedDict": ".getconfiggroupbyproductandidop",
|
|
5856
5879
|
"GetConfigGroupByProductAndIDResponse": ".getconfiggroupbyproductandidop",
|
|
5857
5880
|
"GetConfigGroupByProductAndIDResponseTypedDict": ".getconfiggroupbyproductandidop",
|
|
5858
|
-
"GetConfigGroupConfigVersionByProductAndIDProduct": ".getconfiggroupconfigversionbyproductandidop",
|
|
5859
5881
|
"GetConfigGroupConfigVersionByProductAndIDRequest": ".getconfiggroupconfigversionbyproductandidop",
|
|
5860
5882
|
"GetConfigGroupConfigVersionByProductAndIDRequestTypedDict": ".getconfiggroupconfigversionbyproductandidop",
|
|
5861
5883
|
"GetConfigGroupConfigVersionByProductAndIDResponse": ".getconfiggroupconfigversionbyproductandidop",
|
|
@@ -5888,6 +5910,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5888
5910
|
"GetOutputSamplesByIDRequestTypedDict": ".getoutputsamplesbyidop",
|
|
5889
5911
|
"GetOutputSamplesByIDResponse": ".getoutputsamplesbyidop",
|
|
5890
5912
|
"GetOutputSamplesByIDResponseTypedDict": ".getoutputsamplesbyidop",
|
|
5913
|
+
"GetPacksByIDRequest": ".getpacksbyidop",
|
|
5914
|
+
"GetPacksByIDRequestTypedDict": ".getpacksbyidop",
|
|
5915
|
+
"GetPacksByIDResponse": ".getpacksbyidop",
|
|
5916
|
+
"GetPacksByIDResponseTypedDict": ".getpacksbyidop",
|
|
5891
5917
|
"GetPacksRequest": ".getpacksop",
|
|
5892
5918
|
"GetPacksRequestTypedDict": ".getpacksop",
|
|
5893
5919
|
"GetPacksResponse": ".getpacksop",
|
|
@@ -5900,7 +5926,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5900
5926
|
"GetRoutesByIDRequestTypedDict": ".getroutesbyidop",
|
|
5901
5927
|
"GetRoutesByIDResponse": ".getroutesbyidop",
|
|
5902
5928
|
"GetRoutesByIDResponseTypedDict": ".getroutesbyidop",
|
|
5903
|
-
"GetSummaryMode": ".getsummaryop",
|
|
5904
5929
|
"GetSummaryRequest": ".getsummaryop",
|
|
5905
5930
|
"GetSummaryRequestTypedDict": ".getsummaryop",
|
|
5906
5931
|
"GetSummaryResponse": ".getsummaryop",
|
|
@@ -7105,6 +7130,25 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7105
7130
|
"InputWizRetryType": ".inputwiz",
|
|
7106
7131
|
"InputWizType": ".inputwiz",
|
|
7107
7132
|
"InputWizTypedDict": ".inputwiz",
|
|
7133
|
+
"InputWizWebhook": ".inputwizwebhook",
|
|
7134
|
+
"InputWizWebhookAuthTokensExt": ".inputwizwebhook",
|
|
7135
|
+
"InputWizWebhookAuthTokensExtMetadatum": ".inputwizwebhook",
|
|
7136
|
+
"InputWizWebhookAuthTokensExtMetadatumTypedDict": ".inputwizwebhook",
|
|
7137
|
+
"InputWizWebhookAuthTokensExtTypedDict": ".inputwizwebhook",
|
|
7138
|
+
"InputWizWebhookCompression": ".inputwizwebhook",
|
|
7139
|
+
"InputWizWebhookConnection": ".inputwizwebhook",
|
|
7140
|
+
"InputWizWebhookConnectionTypedDict": ".inputwizwebhook",
|
|
7141
|
+
"InputWizWebhookMaximumTLSVersion": ".inputwizwebhook",
|
|
7142
|
+
"InputWizWebhookMetadatum": ".inputwizwebhook",
|
|
7143
|
+
"InputWizWebhookMetadatumTypedDict": ".inputwizwebhook",
|
|
7144
|
+
"InputWizWebhookMinimumTLSVersion": ".inputwizwebhook",
|
|
7145
|
+
"InputWizWebhookMode": ".inputwizwebhook",
|
|
7146
|
+
"InputWizWebhookPq": ".inputwizwebhook",
|
|
7147
|
+
"InputWizWebhookPqTypedDict": ".inputwizwebhook",
|
|
7148
|
+
"InputWizWebhookTLSSettingsServerSide": ".inputwizwebhook",
|
|
7149
|
+
"InputWizWebhookTLSSettingsServerSideTypedDict": ".inputwizwebhook",
|
|
7150
|
+
"InputWizWebhookType": ".inputwizwebhook",
|
|
7151
|
+
"InputWizWebhookTypedDict": ".inputwizwebhook",
|
|
7108
7152
|
"InputZscalerHec": ".inputzscalerhec",
|
|
7109
7153
|
"InputZscalerHecAuthToken": ".inputzscalerhec",
|
|
7110
7154
|
"InputZscalerHecAuthTokenMetadatum": ".inputzscalerhec",
|
|
@@ -7128,7 +7172,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7128
7172
|
"LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
|
|
7129
7173
|
"LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
|
|
7130
7174
|
"LakehouseConnectionType": ".lakehouseconnectiontype",
|
|
7131
|
-
"ListConfigGroupByProductProduct": ".listconfiggroupbyproductop",
|
|
7132
7175
|
"ListConfigGroupByProductRequest": ".listconfiggroupbyproductop",
|
|
7133
7176
|
"ListConfigGroupByProductRequestTypedDict": ".listconfiggroupbyproductop",
|
|
7134
7177
|
"ListConfigGroupByProductResponse": ".listconfiggroupbyproductop",
|
|
@@ -8339,6 +8382,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8339
8382
|
"FunctionSpecificConfigsTypedDict": ".pipelinefunctionconf",
|
|
8340
8383
|
"PipelineFunctionConf": ".pipelinefunctionconf",
|
|
8341
8384
|
"PipelineFunctionConfTypedDict": ".pipelinefunctionconf",
|
|
8385
|
+
"ProductsCore": ".productscore",
|
|
8342
8386
|
"RbacResource": ".rbacresource",
|
|
8343
8387
|
"ResourcePolicy": ".resourcepolicy",
|
|
8344
8388
|
"ResourcePolicyTypedDict": ".resourcepolicy",
|
|
@@ -8360,12 +8404,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8360
8404
|
"SecurityTypedDict": ".security",
|
|
8361
8405
|
"TeamAccessControlList": ".teamaccesscontrollist",
|
|
8362
8406
|
"TeamAccessControlListTypedDict": ".teamaccesscontrollist",
|
|
8363
|
-
"UpdateConfigGroupByProductAndIDProduct": ".updateconfiggroupbyproductandidop",
|
|
8364
8407
|
"UpdateConfigGroupByProductAndIDRequest": ".updateconfiggroupbyproductandidop",
|
|
8365
8408
|
"UpdateConfigGroupByProductAndIDRequestTypedDict": ".updateconfiggroupbyproductandidop",
|
|
8366
8409
|
"UpdateConfigGroupByProductAndIDResponse": ".updateconfiggroupbyproductandidop",
|
|
8367
8410
|
"UpdateConfigGroupByProductAndIDResponseTypedDict": ".updateconfiggroupbyproductandidop",
|
|
8368
|
-
"UpdateConfigGroupDeployByProductAndIDProduct": ".updateconfiggroupdeploybyproductandidop",
|
|
8369
8411
|
"UpdateConfigGroupDeployByProductAndIDRequest": ".updateconfiggroupdeploybyproductandidop",
|
|
8370
8412
|
"UpdateConfigGroupDeployByProductAndIDRequestTypedDict": ".updateconfiggroupdeploybyproductandidop",
|
|
8371
8413
|
"UpdateConfigGroupDeployByProductAndIDResponse": ".updateconfiggroupdeploybyproductandidop",
|
|
@@ -8404,6 +8446,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8404
8446
|
"UpdateRoutesByIDResponseTypedDict": ".updateroutesbyidop",
|
|
8405
8447
|
"UserAccessControlList": ".useraccesscontrollist",
|
|
8406
8448
|
"UserAccessControlListTypedDict": ".useraccesscontrollist",
|
|
8449
|
+
"WorkerTypes": ".workertypes",
|
|
8407
8450
|
}
|
|
8408
8451
|
|
|
8409
8452
|
|
|
@@ -2,22 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from .configgroup import ConfigGroup, ConfigGroupTypedDict
|
|
5
|
+
from .productscore import ProductsCore
|
|
5
6
|
from cribl_control_plane.types import BaseModel
|
|
6
7
|
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata, RequestMetadata
|
|
7
|
-
from enum import Enum
|
|
8
8
|
from typing import List, Optional
|
|
9
9
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
class CreateConfigGroupByProductProduct(str, Enum):
|
|
13
|
-
r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
14
|
-
|
|
15
|
-
STREAM = "stream"
|
|
16
|
-
EDGE = "edge"
|
|
17
|
-
|
|
18
|
-
|
|
19
12
|
class CreateConfigGroupByProductRequestTypedDict(TypedDict):
|
|
20
|
-
product:
|
|
13
|
+
product: ProductsCore
|
|
21
14
|
r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
22
15
|
config_group: ConfigGroupTypedDict
|
|
23
16
|
r"""ConfigGroup object"""
|
|
@@ -25,7 +18,7 @@ class CreateConfigGroupByProductRequestTypedDict(TypedDict):
|
|
|
25
18
|
|
|
26
19
|
class CreateConfigGroupByProductRequest(BaseModel):
|
|
27
20
|
product: Annotated[
|
|
28
|
-
|
|
21
|
+
ProductsCore,
|
|
29
22
|
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
30
23
|
]
|
|
31
24
|
r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
@@ -2,22 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from .configgroup import ConfigGroup, ConfigGroupTypedDict
|
|
5
|
+
from .productscore import ProductsCore
|
|
5
6
|
from cribl_control_plane.types import BaseModel
|
|
6
7
|
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata
|
|
7
|
-
from enum import Enum
|
|
8
8
|
from typing import List, Optional
|
|
9
9
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
class DeleteConfigGroupByProductAndIDProduct(str, Enum):
|
|
13
|
-
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
14
|
-
|
|
15
|
-
STREAM = "stream"
|
|
16
|
-
EDGE = "edge"
|
|
17
|
-
|
|
18
|
-
|
|
19
12
|
class DeleteConfigGroupByProductAndIDRequestTypedDict(TypedDict):
|
|
20
|
-
product:
|
|
13
|
+
product: ProductsCore
|
|
21
14
|
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|
|
22
15
|
id: str
|
|
23
16
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to delete."""
|
|
@@ -25,7 +18,7 @@ class DeleteConfigGroupByProductAndIDRequestTypedDict(TypedDict):
|
|
|
25
18
|
|
|
26
19
|
class DeleteConfigGroupByProductAndIDRequest(BaseModel):
|
|
27
20
|
product: Annotated[
|
|
28
|
-
|
|
21
|
+
ProductsCore,
|
|
29
22
|
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
30
23
|
]
|
|
31
24
|
r"""Name of the Cribl product to get the Worker Groups or Edge Fleets for."""
|