cribl-control-plane 0.2.1rc5__py3-none-any.whl → 0.2.1rc6__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 +2 -5
- cribl_control_plane/models/__init__.py +6 -146
- cribl_control_plane/models/createconfiggroupbyproductop.py +2 -2
- cribl_control_plane/models/pipeline.py +4 -4
- cribl_control_plane/pipelines.py +8 -8
- {cribl_control_plane-0.2.1rc5.dist-info → cribl_control_plane-0.2.1rc6.dist-info}/METADATA +2 -11
- {cribl_control_plane-0.2.1rc5.dist-info → cribl_control_plane-0.2.1rc6.dist-info}/RECORD +9 -20
- cribl_control_plane/mappings.py +0 -1185
- cribl_control_plane/models/createadminproductsmappingsactivatebyproductop.py +0 -52
- cribl_control_plane/models/createadminproductsmappingsbyproductop.py +0 -53
- cribl_control_plane/models/deleteadminproductsmappingsbyproductandidop.py +0 -51
- cribl_control_plane/models/getadminproductsmappingsbyproductandidop.py +0 -51
- cribl_control_plane/models/getadminproductsmappingsbyproductop.py +0 -44
- cribl_control_plane/models/mappingruleset.py +0 -53
- cribl_control_plane/models/mappingrulesetevalmappingfunction.py +0 -71
- cribl_control_plane/models/mappingrulesetgenericmappingfunction.py +0 -29
- cribl_control_plane/models/rulesetid.py +0 -13
- cribl_control_plane/models/updateadminproductsmappingsbyproductandidop.py +0 -63
- {cribl_control_plane-0.2.1rc5.dist-info → cribl_control_plane-0.2.1rc6.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.2.
|
|
7
|
-
__openapi_doc_version__: str = "4.15.0-alpha.
|
|
6
|
+
__version__: str = "0.2.1rc6"
|
|
7
|
+
__openapi_doc_version__: str = "4.15.0-alpha.1761834741311-54c1f75c"
|
|
8
8
|
__gen_version__: str = "2.730.5"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.2.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.2.1rc6 2.730.5 4.15.0-alpha.1761834741311-54c1f75c cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -6,7 +6,6 @@ from cribl_control_plane import errors, models, utils
|
|
|
6
6
|
from cribl_control_plane._hooks import HookContext
|
|
7
7
|
from cribl_control_plane.acl import ACL
|
|
8
8
|
from cribl_control_plane.groups_configs import GroupsConfigs
|
|
9
|
-
from cribl_control_plane.mappings import Mappings
|
|
10
9
|
from cribl_control_plane.types import OptionalNullable, UNSET
|
|
11
10
|
from cribl_control_plane.utils import get_security_from_env
|
|
12
11
|
from cribl_control_plane.utils.unmarshal_json_response import unmarshal_json_response
|
|
@@ -16,7 +15,6 @@ from typing import Any, List, Mapping, Optional, Union
|
|
|
16
15
|
class GroupsSDK(BaseSDK):
|
|
17
16
|
r"""Actions related to Groups"""
|
|
18
17
|
|
|
19
|
-
mappings: Mappings
|
|
20
18
|
configs: GroupsConfigs
|
|
21
19
|
acl: ACL
|
|
22
20
|
|
|
@@ -28,7 +26,6 @@ class GroupsSDK(BaseSDK):
|
|
|
28
26
|
self._init_sdks()
|
|
29
27
|
|
|
30
28
|
def _init_sdks(self):
|
|
31
|
-
self.mappings = Mappings(self.sdk_configuration, parent_ref=self.parent_ref)
|
|
32
29
|
self.configs = GroupsConfigs(self.sdk_configuration, parent_ref=self.parent_ref)
|
|
33
30
|
self.acl = ACL(self.sdk_configuration, parent_ref=self.parent_ref)
|
|
34
31
|
|
|
@@ -262,7 +259,7 @@ class GroupsSDK(BaseSDK):
|
|
|
262
259
|
|
|
263
260
|
Create a new Worker Group or Edge Fleet for the specified Cribl product.
|
|
264
261
|
|
|
265
|
-
:param product: Name of the Cribl product to add the Worker Group or Edge Fleet to.
|
|
262
|
+
:param product: required Name of the Cribl product to add the Worker Group or Edge Fleet to.
|
|
266
263
|
:param id:
|
|
267
264
|
:param cloud:
|
|
268
265
|
:param deploying_worker_count:
|
|
@@ -443,7 +440,7 @@ class GroupsSDK(BaseSDK):
|
|
|
443
440
|
|
|
444
441
|
Create a new Worker Group or Edge Fleet for the specified Cribl product.
|
|
445
442
|
|
|
446
|
-
:param product: Name of the Cribl product to add the Worker Group or Edge Fleet to.
|
|
443
|
+
:param product: required Name of the Cribl product to add the Worker Group or Edge Fleet to.
|
|
447
444
|
:param id:
|
|
448
445
|
:param cloud:
|
|
449
446
|
:param deploying_worker_count:
|
|
@@ -33,18 +33,6 @@ if TYPE_CHECKING:
|
|
|
33
33
|
ConfigGroupLookupsLookupTypedDict,
|
|
34
34
|
ConfigGroupLookupsTypedDict,
|
|
35
35
|
)
|
|
36
|
-
from .createadminproductsmappingsactivatebyproductop import (
|
|
37
|
-
CreateAdminProductsMappingsActivateByProductRequest,
|
|
38
|
-
CreateAdminProductsMappingsActivateByProductRequestTypedDict,
|
|
39
|
-
CreateAdminProductsMappingsActivateByProductResponse,
|
|
40
|
-
CreateAdminProductsMappingsActivateByProductResponseTypedDict,
|
|
41
|
-
)
|
|
42
|
-
from .createadminproductsmappingsbyproductop import (
|
|
43
|
-
CreateAdminProductsMappingsByProductRequest,
|
|
44
|
-
CreateAdminProductsMappingsByProductRequestTypedDict,
|
|
45
|
-
CreateAdminProductsMappingsByProductResponse,
|
|
46
|
-
CreateAdminProductsMappingsByProductResponseTypedDict,
|
|
47
|
-
)
|
|
48
36
|
from .createconfiggroupbyproductop import (
|
|
49
37
|
CreateConfigGroupByProductRequest,
|
|
50
38
|
CreateConfigGroupByProductRequestTypedDict,
|
|
@@ -121,12 +109,6 @@ if TYPE_CHECKING:
|
|
|
121
109
|
DatasetMetadataRunInfo,
|
|
122
110
|
DatasetMetadataRunInfoTypedDict,
|
|
123
111
|
)
|
|
124
|
-
from .deleteadminproductsmappingsbyproductandidop import (
|
|
125
|
-
DeleteAdminProductsMappingsByProductAndIDRequest,
|
|
126
|
-
DeleteAdminProductsMappingsByProductAndIDRequestTypedDict,
|
|
127
|
-
DeleteAdminProductsMappingsByProductAndIDResponse,
|
|
128
|
-
DeleteAdminProductsMappingsByProductAndIDResponseTypedDict,
|
|
129
|
-
)
|
|
130
112
|
from .deleteconfiggroupbyproductandidop import (
|
|
131
113
|
DeleteConfigGroupByProductAndIDRequest,
|
|
132
114
|
DeleteConfigGroupByProductAndIDRequestTypedDict,
|
|
@@ -202,18 +184,6 @@ if TYPE_CHECKING:
|
|
|
202
184
|
DistributedSummaryWorkers,
|
|
203
185
|
DistributedSummaryWorkersTypedDict,
|
|
204
186
|
)
|
|
205
|
-
from .getadminproductsmappingsbyproductandidop import (
|
|
206
|
-
GetAdminProductsMappingsByProductAndIDRequest,
|
|
207
|
-
GetAdminProductsMappingsByProductAndIDRequestTypedDict,
|
|
208
|
-
GetAdminProductsMappingsByProductAndIDResponse,
|
|
209
|
-
GetAdminProductsMappingsByProductAndIDResponseTypedDict,
|
|
210
|
-
)
|
|
211
|
-
from .getadminproductsmappingsbyproductop import (
|
|
212
|
-
GetAdminProductsMappingsByProductRequest,
|
|
213
|
-
GetAdminProductsMappingsByProductRequestTypedDict,
|
|
214
|
-
GetAdminProductsMappingsByProductResponse,
|
|
215
|
-
GetAdminProductsMappingsByProductResponseTypedDict,
|
|
216
|
-
)
|
|
217
187
|
from .getconfiggroupaclbyproductandidop import (
|
|
218
188
|
GetConfigGroupACLByProductAndIDRequest,
|
|
219
189
|
GetConfigGroupACLByProductAndIDRequestTypedDict,
|
|
@@ -1845,27 +1815,6 @@ if TYPE_CHECKING:
|
|
|
1845
1815
|
from .listroutesop import ListRoutesResponse, ListRoutesResponseTypedDict
|
|
1846
1816
|
from .logininfo import LoginInfo, LoginInfoTypedDict
|
|
1847
1817
|
from .lookupversions import LookupVersions, LookupVersionsTypedDict
|
|
1848
|
-
from .mappingruleset import (
|
|
1849
|
-
Function,
|
|
1850
|
-
FunctionTypedDict,
|
|
1851
|
-
MappingRuleset,
|
|
1852
|
-
MappingRulesetConf,
|
|
1853
|
-
MappingRulesetConfTypedDict,
|
|
1854
|
-
MappingRulesetTypedDict,
|
|
1855
|
-
)
|
|
1856
|
-
from .mappingrulesetevalmappingfunction import (
|
|
1857
|
-
Add,
|
|
1858
|
-
AddTypedDict,
|
|
1859
|
-
ID,
|
|
1860
|
-
MappingRulesetEvalMappingFunction,
|
|
1861
|
-
MappingRulesetEvalMappingFunctionConf,
|
|
1862
|
-
MappingRulesetEvalMappingFunctionConfTypedDict,
|
|
1863
|
-
MappingRulesetEvalMappingFunctionTypedDict,
|
|
1864
|
-
)
|
|
1865
|
-
from .mappingrulesetgenericmappingfunction import (
|
|
1866
|
-
MappingRulesetGenericMappingFunction,
|
|
1867
|
-
MappingRulesetGenericMappingFunctionTypedDict,
|
|
1868
|
-
)
|
|
1869
1818
|
from .masterworkerentry import (
|
|
1870
1819
|
LastMetrics,
|
|
1871
1820
|
LastMetricsTypedDict,
|
|
@@ -3215,9 +3164,9 @@ if TYPE_CHECKING:
|
|
|
3215
3164
|
)
|
|
3216
3165
|
from .packupgraderequest import PackUpgradeRequest, PackUpgradeRequestTypedDict
|
|
3217
3166
|
from .pipeline import (
|
|
3167
|
+
Conf,
|
|
3168
|
+
ConfTypedDict,
|
|
3218
3169
|
Pipeline,
|
|
3219
|
-
PipelineConf,
|
|
3220
|
-
PipelineConfTypedDict,
|
|
3221
3170
|
PipelineGroups,
|
|
3222
3171
|
PipelineGroupsTypedDict,
|
|
3223
3172
|
PipelineTypedDict,
|
|
@@ -3241,7 +3190,6 @@ if TYPE_CHECKING:
|
|
|
3241
3190
|
RoutesTypedDict,
|
|
3242
3191
|
)
|
|
3243
3192
|
from .routesroute import RoutesRoute, RoutesRouteTypedDict
|
|
3244
|
-
from .rulesetid import RulesetID, RulesetIDTypedDict
|
|
3245
3193
|
from .runnablejob import RunnableJob, RunnableJobTypedDict
|
|
3246
3194
|
from .runnablejobcollection import (
|
|
3247
3195
|
CaptureSettings,
|
|
@@ -3316,12 +3264,6 @@ if TYPE_CHECKING:
|
|
|
3316
3264
|
TeamAccessControlList,
|
|
3317
3265
|
TeamAccessControlListTypedDict,
|
|
3318
3266
|
)
|
|
3319
|
-
from .updateadminproductsmappingsbyproductandidop import (
|
|
3320
|
-
UpdateAdminProductsMappingsByProductAndIDRequest,
|
|
3321
|
-
UpdateAdminProductsMappingsByProductAndIDRequestTypedDict,
|
|
3322
|
-
UpdateAdminProductsMappingsByProductAndIDResponse,
|
|
3323
|
-
UpdateAdminProductsMappingsByProductAndIDResponseTypedDict,
|
|
3324
|
-
)
|
|
3325
3267
|
from .updateconfiggroupbyproductandidop import (
|
|
3326
3268
|
UpdateConfigGroupByProductAndIDRequest,
|
|
3327
3269
|
UpdateConfigGroupByProductAndIDRequestTypedDict,
|
|
@@ -3392,12 +3334,10 @@ if TYPE_CHECKING:
|
|
|
3392
3334
|
|
|
3393
3335
|
__all__ = [
|
|
3394
3336
|
"AISIEMEndpointPath",
|
|
3395
|
-
"Add",
|
|
3396
3337
|
"AddHecTokenRequest",
|
|
3397
3338
|
"AddHecTokenRequestMetadatum",
|
|
3398
3339
|
"AddHecTokenRequestMetadatumTypedDict",
|
|
3399
3340
|
"AddHecTokenRequestTypedDict",
|
|
3400
|
-
"AddTypedDict",
|
|
3401
3341
|
"AdditionalProperty",
|
|
3402
3342
|
"AdditionalPropertyTypedDict",
|
|
3403
3343
|
"Allow",
|
|
@@ -3438,6 +3378,8 @@ __all__ = [
|
|
|
3438
3378
|
"CommentTypedDict",
|
|
3439
3379
|
"Commit",
|
|
3440
3380
|
"CommitTypedDict",
|
|
3381
|
+
"Conf",
|
|
3382
|
+
"ConfTypedDict",
|
|
3441
3383
|
"Config",
|
|
3442
3384
|
"ConfigGroup",
|
|
3443
3385
|
"ConfigGroupCloud",
|
|
@@ -3455,14 +3397,6 @@ __all__ = [
|
|
|
3455
3397
|
"Container",
|
|
3456
3398
|
"ContainerMode",
|
|
3457
3399
|
"ContainerTypedDict",
|
|
3458
|
-
"CreateAdminProductsMappingsActivateByProductRequest",
|
|
3459
|
-
"CreateAdminProductsMappingsActivateByProductRequestTypedDict",
|
|
3460
|
-
"CreateAdminProductsMappingsActivateByProductResponse",
|
|
3461
|
-
"CreateAdminProductsMappingsActivateByProductResponseTypedDict",
|
|
3462
|
-
"CreateAdminProductsMappingsByProductRequest",
|
|
3463
|
-
"CreateAdminProductsMappingsByProductRequestTypedDict",
|
|
3464
|
-
"CreateAdminProductsMappingsByProductResponse",
|
|
3465
|
-
"CreateAdminProductsMappingsByProductResponseTypedDict",
|
|
3466
3400
|
"CreateConfigGroupByProductRequest",
|
|
3467
3401
|
"CreateConfigGroupByProductRequestTypedDict",
|
|
3468
3402
|
"CreateConfigGroupByProductResponse",
|
|
@@ -3523,10 +3457,6 @@ __all__ = [
|
|
|
3523
3457
|
"DatasetMetadataRunInfo",
|
|
3524
3458
|
"DatasetMetadataRunInfoTypedDict",
|
|
3525
3459
|
"DatasetMetadataTypedDict",
|
|
3526
|
-
"DeleteAdminProductsMappingsByProductAndIDRequest",
|
|
3527
|
-
"DeleteAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
3528
|
-
"DeleteAdminProductsMappingsByProductAndIDResponse",
|
|
3529
|
-
"DeleteAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
3530
3460
|
"DeleteConfigGroupByProductAndIDRequest",
|
|
3531
3461
|
"DeleteConfigGroupByProductAndIDRequestTypedDict",
|
|
3532
3462
|
"DeleteConfigGroupByProductAndIDResponse",
|
|
@@ -3597,18 +3527,8 @@ __all__ = [
|
|
|
3597
3527
|
"FileTypedDict",
|
|
3598
3528
|
"Firewall",
|
|
3599
3529
|
"FirewallTypedDict",
|
|
3600
|
-
"Function",
|
|
3601
3530
|
"FunctionSpecificConfigs",
|
|
3602
3531
|
"FunctionSpecificConfigsTypedDict",
|
|
3603
|
-
"FunctionTypedDict",
|
|
3604
|
-
"GetAdminProductsMappingsByProductAndIDRequest",
|
|
3605
|
-
"GetAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
3606
|
-
"GetAdminProductsMappingsByProductAndIDResponse",
|
|
3607
|
-
"GetAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
3608
|
-
"GetAdminProductsMappingsByProductRequest",
|
|
3609
|
-
"GetAdminProductsMappingsByProductRequestTypedDict",
|
|
3610
|
-
"GetAdminProductsMappingsByProductResponse",
|
|
3611
|
-
"GetAdminProductsMappingsByProductResponseTypedDict",
|
|
3612
3532
|
"GetConfigGroupACLByProductAndIDRequest",
|
|
3613
3533
|
"GetConfigGroupACLByProductAndIDRequestTypedDict",
|
|
3614
3534
|
"GetConfigGroupACLByProductAndIDResponse",
|
|
@@ -3759,7 +3679,6 @@ __all__ = [
|
|
|
3759
3679
|
"HostInfoTypedDict",
|
|
3760
3680
|
"HostsFile",
|
|
3761
3681
|
"HostsFileTypedDict",
|
|
3762
|
-
"ID",
|
|
3763
3682
|
"IndexerDiscoveryConfigs",
|
|
3764
3683
|
"IndexerDiscoveryConfigsAuthTokenAuthenticationMethod",
|
|
3765
3684
|
"IndexerDiscoveryConfigsAuthenticationMethod",
|
|
@@ -5020,16 +4939,6 @@ __all__ = [
|
|
|
5020
4939
|
"LookupVersionsTypedDict",
|
|
5021
4940
|
"MTLSSettings",
|
|
5022
4941
|
"MTLSSettingsTypedDict",
|
|
5023
|
-
"MappingRuleset",
|
|
5024
|
-
"MappingRulesetConf",
|
|
5025
|
-
"MappingRulesetConfTypedDict",
|
|
5026
|
-
"MappingRulesetEvalMappingFunction",
|
|
5027
|
-
"MappingRulesetEvalMappingFunctionConf",
|
|
5028
|
-
"MappingRulesetEvalMappingFunctionConfTypedDict",
|
|
5029
|
-
"MappingRulesetEvalMappingFunctionTypedDict",
|
|
5030
|
-
"MappingRulesetGenericMappingFunction",
|
|
5031
|
-
"MappingRulesetGenericMappingFunctionTypedDict",
|
|
5032
|
-
"MappingRulesetTypedDict",
|
|
5033
4942
|
"MappingType",
|
|
5034
4943
|
"MasterWorkerEntry",
|
|
5035
4944
|
"MasterWorkerEntryType",
|
|
@@ -6209,8 +6118,6 @@ __all__ = [
|
|
|
6209
6118
|
"PackUpgradeRequestTypedDict",
|
|
6210
6119
|
"PayloadFormat",
|
|
6211
6120
|
"Pipeline",
|
|
6212
|
-
"PipelineConf",
|
|
6213
|
-
"PipelineConfTypedDict",
|
|
6214
6121
|
"PipelineFunctionConf",
|
|
6215
6122
|
"PipelineFunctionConfTypedDict",
|
|
6216
6123
|
"PipelineGroups",
|
|
@@ -6251,8 +6158,6 @@ __all__ = [
|
|
|
6251
6158
|
"RoutesRoute",
|
|
6252
6159
|
"RoutesRouteTypedDict",
|
|
6253
6160
|
"RoutesTypedDict",
|
|
6254
|
-
"RulesetID",
|
|
6255
|
-
"RulesetIDTypedDict",
|
|
6256
6161
|
"RunnableJob",
|
|
6257
6162
|
"RunnableJobCollection",
|
|
6258
6163
|
"RunnableJobCollectionInput",
|
|
@@ -6339,10 +6244,6 @@ __all__ = [
|
|
|
6339
6244
|
"TimeRange",
|
|
6340
6245
|
"TimestampFormat",
|
|
6341
6246
|
"TimestampPrecision",
|
|
6342
|
-
"UpdateAdminProductsMappingsByProductAndIDRequest",
|
|
6343
|
-
"UpdateAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
6344
|
-
"UpdateAdminProductsMappingsByProductAndIDResponse",
|
|
6345
|
-
"UpdateAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
6346
6247
|
"UpdateConfigGroupByProductAndIDRequest",
|
|
6347
6248
|
"UpdateConfigGroupByProductAndIDRequestTypedDict",
|
|
6348
6249
|
"UpdateConfigGroupByProductAndIDResponse",
|
|
@@ -6425,14 +6326,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6425
6326
|
"ConfigGroupLookupsLookup": ".configgrouplookups",
|
|
6426
6327
|
"ConfigGroupLookupsLookupTypedDict": ".configgrouplookups",
|
|
6427
6328
|
"ConfigGroupLookupsTypedDict": ".configgrouplookups",
|
|
6428
|
-
"CreateAdminProductsMappingsActivateByProductRequest": ".createadminproductsmappingsactivatebyproductop",
|
|
6429
|
-
"CreateAdminProductsMappingsActivateByProductRequestTypedDict": ".createadminproductsmappingsactivatebyproductop",
|
|
6430
|
-
"CreateAdminProductsMappingsActivateByProductResponse": ".createadminproductsmappingsactivatebyproductop",
|
|
6431
|
-
"CreateAdminProductsMappingsActivateByProductResponseTypedDict": ".createadminproductsmappingsactivatebyproductop",
|
|
6432
|
-
"CreateAdminProductsMappingsByProductRequest": ".createadminproductsmappingsbyproductop",
|
|
6433
|
-
"CreateAdminProductsMappingsByProductRequestTypedDict": ".createadminproductsmappingsbyproductop",
|
|
6434
|
-
"CreateAdminProductsMappingsByProductResponse": ".createadminproductsmappingsbyproductop",
|
|
6435
|
-
"CreateAdminProductsMappingsByProductResponseTypedDict": ".createadminproductsmappingsbyproductop",
|
|
6436
6329
|
"CreateConfigGroupByProductRequest": ".createconfiggroupbyproductop",
|
|
6437
6330
|
"CreateConfigGroupByProductRequestTypedDict": ".createconfiggroupbyproductop",
|
|
6438
6331
|
"CreateConfigGroupByProductResponse": ".createconfiggroupbyproductop",
|
|
@@ -6490,10 +6383,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6490
6383
|
"ScanMode": ".datasetmetadata",
|
|
6491
6384
|
"DatasetMetadataRunInfo": ".datasetmetadataruninfo",
|
|
6492
6385
|
"DatasetMetadataRunInfoTypedDict": ".datasetmetadataruninfo",
|
|
6493
|
-
"DeleteAdminProductsMappingsByProductAndIDRequest": ".deleteadminproductsmappingsbyproductandidop",
|
|
6494
|
-
"DeleteAdminProductsMappingsByProductAndIDRequestTypedDict": ".deleteadminproductsmappingsbyproductandidop",
|
|
6495
|
-
"DeleteAdminProductsMappingsByProductAndIDResponse": ".deleteadminproductsmappingsbyproductandidop",
|
|
6496
|
-
"DeleteAdminProductsMappingsByProductAndIDResponseTypedDict": ".deleteadminproductsmappingsbyproductandidop",
|
|
6497
6386
|
"DeleteConfigGroupByProductAndIDRequest": ".deleteconfiggroupbyproductandidop",
|
|
6498
6387
|
"DeleteConfigGroupByProductAndIDRequestTypedDict": ".deleteconfiggroupbyproductandidop",
|
|
6499
6388
|
"DeleteConfigGroupByProductAndIDResponse": ".deleteconfiggroupbyproductandidop",
|
|
@@ -6550,14 +6439,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6550
6439
|
"DistributedSummaryTypedDict": ".distributedsummary",
|
|
6551
6440
|
"DistributedSummaryWorkers": ".distributedsummary",
|
|
6552
6441
|
"DistributedSummaryWorkersTypedDict": ".distributedsummary",
|
|
6553
|
-
"GetAdminProductsMappingsByProductAndIDRequest": ".getadminproductsmappingsbyproductandidop",
|
|
6554
|
-
"GetAdminProductsMappingsByProductAndIDRequestTypedDict": ".getadminproductsmappingsbyproductandidop",
|
|
6555
|
-
"GetAdminProductsMappingsByProductAndIDResponse": ".getadminproductsmappingsbyproductandidop",
|
|
6556
|
-
"GetAdminProductsMappingsByProductAndIDResponseTypedDict": ".getadminproductsmappingsbyproductandidop",
|
|
6557
|
-
"GetAdminProductsMappingsByProductRequest": ".getadminproductsmappingsbyproductop",
|
|
6558
|
-
"GetAdminProductsMappingsByProductRequestTypedDict": ".getadminproductsmappingsbyproductop",
|
|
6559
|
-
"GetAdminProductsMappingsByProductResponse": ".getadminproductsmappingsbyproductop",
|
|
6560
|
-
"GetAdminProductsMappingsByProductResponseTypedDict": ".getadminproductsmappingsbyproductop",
|
|
6561
6442
|
"GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
|
|
6562
6443
|
"GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
|
|
6563
6444
|
"GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
|
|
@@ -8025,21 +7906,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8025
7906
|
"LoginInfoTypedDict": ".logininfo",
|
|
8026
7907
|
"LookupVersions": ".lookupversions",
|
|
8027
7908
|
"LookupVersionsTypedDict": ".lookupversions",
|
|
8028
|
-
"Function": ".mappingruleset",
|
|
8029
|
-
"FunctionTypedDict": ".mappingruleset",
|
|
8030
|
-
"MappingRuleset": ".mappingruleset",
|
|
8031
|
-
"MappingRulesetConf": ".mappingruleset",
|
|
8032
|
-
"MappingRulesetConfTypedDict": ".mappingruleset",
|
|
8033
|
-
"MappingRulesetTypedDict": ".mappingruleset",
|
|
8034
|
-
"Add": ".mappingrulesetevalmappingfunction",
|
|
8035
|
-
"AddTypedDict": ".mappingrulesetevalmappingfunction",
|
|
8036
|
-
"ID": ".mappingrulesetevalmappingfunction",
|
|
8037
|
-
"MappingRulesetEvalMappingFunction": ".mappingrulesetevalmappingfunction",
|
|
8038
|
-
"MappingRulesetEvalMappingFunctionConf": ".mappingrulesetevalmappingfunction",
|
|
8039
|
-
"MappingRulesetEvalMappingFunctionConfTypedDict": ".mappingrulesetevalmappingfunction",
|
|
8040
|
-
"MappingRulesetEvalMappingFunctionTypedDict": ".mappingrulesetevalmappingfunction",
|
|
8041
|
-
"MappingRulesetGenericMappingFunction": ".mappingrulesetgenericmappingfunction",
|
|
8042
|
-
"MappingRulesetGenericMappingFunctionTypedDict": ".mappingrulesetgenericmappingfunction",
|
|
8043
7909
|
"LastMetrics": ".masterworkerentry",
|
|
8044
7910
|
"LastMetricsTypedDict": ".masterworkerentry",
|
|
8045
7911
|
"MasterWorkerEntry": ".masterworkerentry",
|
|
@@ -9258,9 +9124,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9258
9124
|
"PackRequestBodyUnionTypedDict": ".packrequestbody_union",
|
|
9259
9125
|
"PackUpgradeRequest": ".packupgraderequest",
|
|
9260
9126
|
"PackUpgradeRequestTypedDict": ".packupgraderequest",
|
|
9127
|
+
"Conf": ".pipeline",
|
|
9128
|
+
"ConfTypedDict": ".pipeline",
|
|
9261
9129
|
"Pipeline": ".pipeline",
|
|
9262
|
-
"PipelineConf": ".pipeline",
|
|
9263
|
-
"PipelineConfTypedDict": ".pipeline",
|
|
9264
9130
|
"PipelineGroups": ".pipeline",
|
|
9265
9131
|
"PipelineGroupsTypedDict": ".pipeline",
|
|
9266
9132
|
"PipelineTypedDict": ".pipeline",
|
|
@@ -9282,8 +9148,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9282
9148
|
"RoutesTypedDict": ".routes",
|
|
9283
9149
|
"RoutesRoute": ".routesroute",
|
|
9284
9150
|
"RoutesRouteTypedDict": ".routesroute",
|
|
9285
|
-
"RulesetID": ".rulesetid",
|
|
9286
|
-
"RulesetIDTypedDict": ".rulesetid",
|
|
9287
9151
|
"RunnableJob": ".runnablejob",
|
|
9288
9152
|
"RunnableJobTypedDict": ".runnablejob",
|
|
9289
9153
|
"CaptureSettings": ".runnablejobcollection",
|
|
@@ -9353,10 +9217,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9353
9217
|
"SecurityTypedDict": ".security",
|
|
9354
9218
|
"TeamAccessControlList": ".teamaccesscontrollist",
|
|
9355
9219
|
"TeamAccessControlListTypedDict": ".teamaccesscontrollist",
|
|
9356
|
-
"UpdateAdminProductsMappingsByProductAndIDRequest": ".updateadminproductsmappingsbyproductandidop",
|
|
9357
|
-
"UpdateAdminProductsMappingsByProductAndIDRequestTypedDict": ".updateadminproductsmappingsbyproductandidop",
|
|
9358
|
-
"UpdateAdminProductsMappingsByProductAndIDResponse": ".updateadminproductsmappingsbyproductandidop",
|
|
9359
|
-
"UpdateAdminProductsMappingsByProductAndIDResponseTypedDict": ".updateadminproductsmappingsbyproductandidop",
|
|
9360
9220
|
"UpdateConfigGroupByProductAndIDRequest": ".updateconfiggroupbyproductandidop",
|
|
9361
9221
|
"UpdateConfigGroupByProductAndIDRequestTypedDict": ".updateconfiggroupbyproductandidop",
|
|
9362
9222
|
"UpdateConfigGroupByProductAndIDResponse": ".updateconfiggroupbyproductandidop",
|
|
@@ -18,7 +18,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
18
18
|
|
|
19
19
|
class CreateConfigGroupByProductRequestTypedDict(TypedDict):
|
|
20
20
|
product: ProductsCore
|
|
21
|
-
r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
21
|
+
r"""required Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
22
22
|
group_create_request: GroupCreateRequestTypedDict
|
|
23
23
|
r"""GroupCreateRequest object"""
|
|
24
24
|
|
|
@@ -28,7 +28,7 @@ class CreateConfigGroupByProductRequest(BaseModel):
|
|
|
28
28
|
Annotated[ProductsCore, PlainValidator(validate_open_enum(False))],
|
|
29
29
|
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
30
30
|
]
|
|
31
|
-
r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
31
|
+
r"""required Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
32
32
|
|
|
33
33
|
group_create_request: Annotated[
|
|
34
34
|
GroupCreateRequest,
|
|
@@ -26,7 +26,7 @@ class PipelineGroups(BaseModel):
|
|
|
26
26
|
r"""Whether this group is disabled"""
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
class
|
|
29
|
+
class ConfTypedDict(TypedDict):
|
|
30
30
|
async_func_timeout: NotRequired[int]
|
|
31
31
|
r"""Time (in ms) to wait for an async function to complete processing of a data item"""
|
|
32
32
|
output: NotRequired[str]
|
|
@@ -39,7 +39,7 @@ class PipelineConfTypedDict(TypedDict):
|
|
|
39
39
|
groups: NotRequired[Dict[str, PipelineGroupsTypedDict]]
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
class
|
|
42
|
+
class Conf(BaseModel):
|
|
43
43
|
async_func_timeout: Annotated[
|
|
44
44
|
Optional[int], pydantic.Field(alias="asyncFuncTimeout")
|
|
45
45
|
] = None
|
|
@@ -61,10 +61,10 @@ class PipelineConf(BaseModel):
|
|
|
61
61
|
|
|
62
62
|
class PipelineTypedDict(TypedDict):
|
|
63
63
|
id: str
|
|
64
|
-
conf:
|
|
64
|
+
conf: ConfTypedDict
|
|
65
65
|
|
|
66
66
|
|
|
67
67
|
class Pipeline(BaseModel):
|
|
68
68
|
id: str
|
|
69
69
|
|
|
70
|
-
conf:
|
|
70
|
+
conf: Conf
|
cribl_control_plane/pipelines.py
CHANGED
|
@@ -176,7 +176,7 @@ class Pipelines(BaseSDK):
|
|
|
176
176
|
self,
|
|
177
177
|
*,
|
|
178
178
|
id: str,
|
|
179
|
-
conf: Union[models.
|
|
179
|
+
conf: Union[models.Conf, models.ConfTypedDict],
|
|
180
180
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
181
181
|
server_url: Optional[str] = None,
|
|
182
182
|
timeout_ms: Optional[int] = None,
|
|
@@ -205,7 +205,7 @@ class Pipelines(BaseSDK):
|
|
|
205
205
|
|
|
206
206
|
request = models.Pipeline(
|
|
207
207
|
id=id,
|
|
208
|
-
conf=utils.get_pydantic_model(conf, models.
|
|
208
|
+
conf=utils.get_pydantic_model(conf, models.Conf),
|
|
209
209
|
)
|
|
210
210
|
|
|
211
211
|
req = self._build_request(
|
|
@@ -269,7 +269,7 @@ class Pipelines(BaseSDK):
|
|
|
269
269
|
self,
|
|
270
270
|
*,
|
|
271
271
|
id: str,
|
|
272
|
-
conf: Union[models.
|
|
272
|
+
conf: Union[models.Conf, models.ConfTypedDict],
|
|
273
273
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
274
274
|
server_url: Optional[str] = None,
|
|
275
275
|
timeout_ms: Optional[int] = None,
|
|
@@ -298,7 +298,7 @@ class Pipelines(BaseSDK):
|
|
|
298
298
|
|
|
299
299
|
request = models.Pipeline(
|
|
300
300
|
id=id,
|
|
301
|
-
conf=utils.get_pydantic_model(conf, models.
|
|
301
|
+
conf=utils.get_pydantic_model(conf, models.Conf),
|
|
302
302
|
)
|
|
303
303
|
|
|
304
304
|
req = self._build_request_async(
|
|
@@ -537,7 +537,7 @@ class Pipelines(BaseSDK):
|
|
|
537
537
|
*,
|
|
538
538
|
id_param: str,
|
|
539
539
|
id: str,
|
|
540
|
-
conf: Union[models.
|
|
540
|
+
conf: Union[models.Conf, models.ConfTypedDict],
|
|
541
541
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
542
542
|
server_url: Optional[str] = None,
|
|
543
543
|
timeout_ms: Optional[int] = None,
|
|
@@ -569,7 +569,7 @@ class Pipelines(BaseSDK):
|
|
|
569
569
|
id_param=id_param,
|
|
570
570
|
pipeline=models.Pipeline(
|
|
571
571
|
id=id,
|
|
572
|
-
conf=utils.get_pydantic_model(conf, models.
|
|
572
|
+
conf=utils.get_pydantic_model(conf, models.Conf),
|
|
573
573
|
),
|
|
574
574
|
)
|
|
575
575
|
|
|
@@ -635,7 +635,7 @@ class Pipelines(BaseSDK):
|
|
|
635
635
|
*,
|
|
636
636
|
id_param: str,
|
|
637
637
|
id: str,
|
|
638
|
-
conf: Union[models.
|
|
638
|
+
conf: Union[models.Conf, models.ConfTypedDict],
|
|
639
639
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
640
640
|
server_url: Optional[str] = None,
|
|
641
641
|
timeout_ms: Optional[int] = None,
|
|
@@ -667,7 +667,7 @@ class Pipelines(BaseSDK):
|
|
|
667
667
|
id_param=id_param,
|
|
668
668
|
pipeline=models.Pipeline(
|
|
669
669
|
id=id,
|
|
670
|
-
conf=utils.get_pydantic_model(conf, models.
|
|
670
|
+
conf=utils.get_pydantic_model(conf, models.Conf),
|
|
671
671
|
),
|
|
672
672
|
)
|
|
673
673
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1rc6
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -359,15 +359,6 @@ with CriblControlPlane(
|
|
|
359
359
|
|
|
360
360
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/configsversions/README.md#get) - Get the configuration version for a Worker Group or Edge Fleet
|
|
361
361
|
|
|
362
|
-
#### [groups.mappings](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/mappings/README.md)
|
|
363
|
-
|
|
364
|
-
* [activate](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/mappings/README.md#activate) - Set a Mapping Ruleset as the active configuration for the specified Cribl product
|
|
365
|
-
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/mappings/README.md#create) - Create a new Mapping Ruleset for the specified Cribl product
|
|
366
|
-
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/mappings/README.md#list) - List all Mapping Rulesets for the specified Cribl product
|
|
367
|
-
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/mappings/README.md#delete) - Delete the specified Mapping Ruleset from the Worker Group or Edge Fleet
|
|
368
|
-
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/mappings/README.md#get) - Retrieve a Specific Mapping Ruleset
|
|
369
|
-
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/mappings/README.md#update) - Update an existing Mapping Ruleset for a Worker Group or Edge Fleet
|
|
370
|
-
|
|
371
362
|
### [health](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md)
|
|
372
363
|
|
|
373
364
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/health/README.md#get) - Retrieve health status of the server
|
|
@@ -700,7 +691,7 @@ with CriblControlPlane(
|
|
|
700
691
|
|
|
701
692
|
|
|
702
693
|
**Inherit from [`CriblControlPlaneError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/criblcontrolplaneerror.py)**:
|
|
703
|
-
* [`HealthServerStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthserverstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of
|
|
694
|
+
* [`HealthServerStatusError`](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/./src/cribl_control_plane/errors/healthserverstatuserror.py): Healthy status. Status code `420`. Applicable to 1 of 63 methods.*
|
|
704
695
|
* [`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.
|
|
705
696
|
|
|
706
697
|
</details>
|
|
@@ -4,7 +4,7 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=CeI19FzRb2V6kiNPgSFGn0CgI
|
|
|
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=f5eONJU-gSLNUKF4RqvBrQSddleGiYQWJOQiSgjhcug,546
|
|
8
8
|
cribl_control_plane/acl.py,sha256=8lvYOKAli4PzsQhOVaCU6YCwblPMh9jQo04L0r4HJuQ,9025
|
|
9
9
|
cribl_control_plane/auth_sdk.py,sha256=3sjf1VoyWwfhSyuMDQLixgWISSf03BOZwmkiT8g5Ruw,626
|
|
10
10
|
cribl_control_plane/basesdk.py,sha256=y4yIXSNVXLMd0sLS2htBFdTCI3gkPQbIWd-C671kg1I,12249
|
|
@@ -22,13 +22,12 @@ cribl_control_plane/errors/healthserverstatus_error.py,sha256=Si7YixCRbgVykthDXN
|
|
|
22
22
|
cribl_control_plane/errors/no_response_error.py,sha256=DaZukP5ManflzAN-11MtmBitfTIct37sRvfszvfM13o,467
|
|
23
23
|
cribl_control_plane/errors/responsevalidationerror.py,sha256=l8CMARNT46VW1u2GuWlH7Ki_rF8Ulky4J_2fQ7rMwnU,783
|
|
24
24
|
cribl_control_plane/groups_configs.py,sha256=dgi-W0ElnyygaVKXqk5df2ldAAgj9YmXRPCez2hP7yc,695
|
|
25
|
-
cribl_control_plane/groups_sdk.py,sha256=
|
|
25
|
+
cribl_control_plane/groups_sdk.py,sha256=tdG5emulC_HOjRq_pg3DB1NO8R8NYhHfEsqv6-B6_SM,63205
|
|
26
26
|
cribl_control_plane/health.py,sha256=P7wMhZOtCesOAJd3rn02fuEub2yv3r_PLWjIGShHC3c,7293
|
|
27
27
|
cribl_control_plane/hectokens.py,sha256=0EGgGGrM83m1YmTZwkN5S4xFkHQGnw1IZe3y6uMwmLw,19151
|
|
28
28
|
cribl_control_plane/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
29
29
|
cribl_control_plane/lakedatasets.py,sha256=VaacfDeQDMJKibABnkZibVMfOYxeh9ITcHKjM9QDqw8,46676
|
|
30
|
-
cribl_control_plane/
|
|
31
|
-
cribl_control_plane/models/__init__.py,sha256=ajcISkIB0vN4IJfB7t8UnyKZOaIe36J-y9OnsIHvJ-o,401300
|
|
30
|
+
cribl_control_plane/models/__init__.py,sha256=uEyG_IzE2opUfe7EO3aVg87XkWWVo4GyydCpjZhzS9w,393194
|
|
32
31
|
cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
|
|
33
32
|
cribl_control_plane/models/authtoken.py,sha256=sDw4DmWtZk4rvQow02X38SvB-rUSrZZ08t9NwqQcs8Y,443
|
|
34
33
|
cribl_control_plane/models/branchinfo.py,sha256=jCX31O5TMG9jTjqigPvvUiBwpgPpVxHtSuhYrNykXiI,291
|
|
@@ -39,9 +38,7 @@ cribl_control_plane/models/commit.py,sha256=wXQkjOYsffxWURHTrfU9kJ4HF2H65QfD1R9-
|
|
|
39
38
|
cribl_control_plane/models/configgroup.py,sha256=HwKOE-bT2MGlqKpmrmwRl7h8M8QVDHEdgjX9Nl83NmE,4883
|
|
40
39
|
cribl_control_plane/models/configgroupcloud.py,sha256=xme7fTZesBGwpma0huL-EXyPNaDYhP2CeYnvxBRxwU8,1589
|
|
41
40
|
cribl_control_plane/models/configgrouplookups.py,sha256=1z1DlvlVehqfD6hZMXG0XedZTfoCIpYd0cHav45tiRw,830
|
|
42
|
-
cribl_control_plane/models/
|
|
43
|
-
cribl_control_plane/models/createadminproductsmappingsbyproductop.py,sha256=4UQsisobP0aSn1MG_YYkoiL9VSmyb7KRy2E9s2bh4JQ,1845
|
|
44
|
-
cribl_control_plane/models/createconfiggroupbyproductop.py,sha256=-7gFVL_PXGggrwXZgcirZmKvnO5kN2UfPp-dlFXbcBk,1852
|
|
41
|
+
cribl_control_plane/models/createconfiggroupbyproductop.py,sha256=X8I8Z0Is3sDzbdLmg24GdRQtQR4E0KA4DEBOVi716vc,1870
|
|
45
42
|
cribl_control_plane/models/createcribllakedatasetbylakeidop.py,sha256=IVH9RvCw8IM0LCzJuy7_eDX9GbpTUIk-Xp0nFPjn6BQ,1647
|
|
46
43
|
cribl_control_plane/models/createinputhectokenbyidop.py,sha256=1FJEJYLPoVySpBtbiqV6ZCwR4AfkJ8-6Dsdc1DuG2tk,1590
|
|
47
44
|
cribl_control_plane/models/createinputop.py,sha256=l5Hz9ANzw4Gjh25FVf_okFzXxZWjA7GOx1tp8yWhKaI,701
|
|
@@ -60,7 +57,6 @@ cribl_control_plane/models/cribllakedatasetupdate.py,sha256=kym11ebNed6hcYMbVBRK
|
|
|
60
57
|
cribl_control_plane/models/currentbranchresult.py,sha256=qq1IRI_XeGrAI_-lV_xHCYuO3VwIFUVarvo0-lN-ymU,317
|
|
61
58
|
cribl_control_plane/models/datasetmetadata.py,sha256=-MI4Be38A21D8lsTEHPoAYcEdonhG1iu7TSb7r4kBK0,1350
|
|
62
59
|
cribl_control_plane/models/datasetmetadataruninfo.py,sha256=4UrKPwg1oCs7uk3s24dsVzyNXE8TpDJE9vCioZyK7t0,937
|
|
63
|
-
cribl_control_plane/models/deleteadminproductsmappingsbyproductandidop.py,sha256=5b03NBMURU7h1VQAcijYCuyLWyV8_N2nJlgPittRBqQ,1829
|
|
64
60
|
cribl_control_plane/models/deleteconfiggroupbyproductandidop.py,sha256=uRENtpDAMpC_N8BwK_sDHEMyGhYCS56JHTa0cK75UlY,1770
|
|
65
61
|
cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py,sha256=BUMQ_56VCM_xK08eagJ2bdd4eOPCUUMVVG5duR3qg7s,1649
|
|
66
62
|
cribl_control_plane/models/deleteinputbyidop.py,sha256=wcL73IwZivcylD76m2vn-2YQ6E6nGgeXipwbYOmHVlY,1117
|
|
@@ -72,8 +68,6 @@ cribl_control_plane/models/deployrequest.py,sha256=zSl96WkkLVHACFRYUdPT4w7WhCaOv
|
|
|
72
68
|
cribl_control_plane/models/deployrequestlookups.py,sha256=WJQf_uL_22Lj7_TIBZ0pZxspYnkfZu9ABNGBLG35tpA,613
|
|
73
69
|
cribl_control_plane/models/difffiles.py,sha256=VJyPZY3njsKntwP8h4XrROCmXryp6kCvlk6MVv8Sz6g,4558
|
|
74
70
|
cribl_control_plane/models/distributedsummary.py,sha256=1hXi_DKm78fsX8E-cKLHHTUpr5ZOjdpsrxmCYbRHfDc,1497
|
|
75
|
-
cribl_control_plane/models/getadminproductsmappingsbyproductandidop.py,sha256=EbSqel5J1foOveUI7_gwXQ9FpkDrxaN6BgC2DIVJqhc,1801
|
|
76
|
-
cribl_control_plane/models/getadminproductsmappingsbyproductop.py,sha256=yW4slH9FNR2qaLkxFLGL4p9PhWph3BwXt_-U9FwEGu8,1503
|
|
77
71
|
cribl_control_plane/models/getconfiggroupaclbyproductandidop.py,sha256=MxTD4oztJQJ9Ng6ntnJIXwmrh_BcF3gle3JUJsODGsw,2349
|
|
78
72
|
cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py,sha256=ov0NQr05PpGq4YC5EeCSzw7NULu110vglLNOtXFMejs,2381
|
|
79
73
|
cribl_control_plane/models/getconfiggroupbyproductandidop.py,sha256=GGNtsME7zmOIWw2C7wTXeb_oK0RgueWQXWgrZz8Fu7Q,2318
|
|
@@ -187,9 +181,6 @@ cribl_control_plane/models/listpipelineop.py,sha256=w-tyP0jqc3YKsSceTQJYuhJ7v-Zq
|
|
|
187
181
|
cribl_control_plane/models/listroutesop.py,sha256=xqutne_6fjll4fIDk8uT7W7RVFB3dkIUealZLRUgDEA,704
|
|
188
182
|
cribl_control_plane/models/logininfo.py,sha256=xVJ4r_xSQfsHHagYUjJsvRs77bKR9MBAuze8r3ZD_DM,338
|
|
189
183
|
cribl_control_plane/models/lookupversions.py,sha256=PLk5hD1WPEIoePfJbhllePawNTa1O7y4_sSkb6BCsUA,293
|
|
190
|
-
cribl_control_plane/models/mappingruleset.py,sha256=Yv0Cznf6ddzfBbnSGGRfUpxjsahy7Tc6MwXb57EsHM0,1421
|
|
191
|
-
cribl_control_plane/models/mappingrulesetevalmappingfunction.py,sha256=BgqPGDTbvgN5Q8tR0isWPW_0kfIZMd1tXz-TtnNG1M8,2204
|
|
192
|
-
cribl_control_plane/models/mappingrulesetgenericmappingfunction.py,sha256=U5vBgpkiPoxdqOaJp6SEa7LUZfcRk9lxEqXA0q5N3d8,866
|
|
193
184
|
cribl_control_plane/models/masterworkerentry.py,sha256=KT8bTu5t20ZwhybN8yz4MtG8CQZGpqv3I1JGjVItY7Q,2481
|
|
194
185
|
cribl_control_plane/models/nodeactiveupgradestatus.py,sha256=knwgNh1octWr6oY-TadH0StJmzv0cktlJ4tc5pq_ChM,279
|
|
195
186
|
cribl_control_plane/models/nodefailedupgradestatus.py,sha256=EE4tSjcWyQxASftW9xJCS8K5QjpLkjCl3YDIys4r7FA,267
|
|
@@ -272,7 +263,7 @@ cribl_control_plane/models/packinfo.py,sha256=4erAi8M_omyQ87v-5xXHAAn7VS3yXmKeMD
|
|
|
272
263
|
cribl_control_plane/models/packinstallinfo.py,sha256=vXLqvzbSixAilJL-qMxZm9mWX4xiBl5e3SuRS1i0Z2c,2122
|
|
273
264
|
cribl_control_plane/models/packrequestbody_union.py,sha256=EGDpybuIL6SAXT_mHnaFCm6PtEH3dTdTu999-7rmgKA,3897
|
|
274
265
|
cribl_control_plane/models/packupgraderequest.py,sha256=T-d4cha7jj-ez0sJcqRPA5xGS2C9yuZ0KfGtPRulqj0,671
|
|
275
|
-
cribl_control_plane/models/pipeline.py,sha256=
|
|
266
|
+
cribl_control_plane/models/pipeline.py,sha256=AaoC5euxac-fwul-LM1mNf03hCzrXmHQGZLMrUWuS4g,2130
|
|
276
267
|
cribl_control_plane/models/pipelinefunctionconf.py,sha256=X61RPaoYpa_UZWavnQiNSaXlXqS2EdUK51MQ02IvCeo,1646
|
|
277
268
|
cribl_control_plane/models/productscore.py,sha256=iR4tV3eQI39kjOmyXM3RxJTxkisfVdio0p8nfmZ7t90,271
|
|
278
269
|
cribl_control_plane/models/rbacresource.py,sha256=gN2zY3kwlIC-gL_K2N4ORuyTaKuqAttzaZaVftT1qQ4,429
|
|
@@ -280,7 +271,6 @@ cribl_control_plane/models/resourcepolicy.py,sha256=NBWadVgjY9ctVazi9xRkj2bXg-_x
|
|
|
280
271
|
cribl_control_plane/models/routeconf.py,sha256=5QEcL6QMsAfoofsS8OJr8LkgCekLq2P7-byTNcepuHQ,1380
|
|
281
272
|
cribl_control_plane/models/routes.py,sha256=2MRVmc4zvUjQw6moQmRYss_XaoGcaauj2Jpdb3VX8pA,2022
|
|
282
273
|
cribl_control_plane/models/routesroute.py,sha256=7hFUWpgVDBj0N117IFxZRGkFqJntbe4NyBakVyMKsTY,2339
|
|
283
|
-
cribl_control_plane/models/rulesetid.py,sha256=2OtMmOleRawJrvQWAYG070Oa_GmkWgvEsiQOWr9e_iU,289
|
|
284
274
|
cribl_control_plane/models/runnablejob.py,sha256=hyWHdW7SypvxfnwGcpRfXRAt7HgQWEyq3rqsm4TsEWM,812
|
|
285
275
|
cribl_control_plane/models/runnablejobcollection.py,sha256=JdplXfc51CbwCvC5L8lF-cJ83bisHBaGFbK4Eq9C-ZQ,22368
|
|
286
276
|
cribl_control_plane/models/runnablejobexecutor.py,sha256=dlxBPDGFWc00wSeqAFxoAwOvH9artxYHk0Y32eVLpMA,12522
|
|
@@ -288,7 +278,6 @@ cribl_control_plane/models/runnablejobscheduledsearch.py,sha256=BnUKnUthPVkeqnZH
|
|
|
288
278
|
cribl_control_plane/models/schemeclientoauth.py,sha256=cjePTTFIlKoYg8JZOOuvacOb1Zb5RqmgiqyQA9P3kvU,839
|
|
289
279
|
cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D4kwRsAQvY,1097
|
|
290
280
|
cribl_control_plane/models/teamaccesscontrollist.py,sha256=HLMck-wyuJYiKD-adSS5ti4yLbHE2snZaOAI0GwgfOI,483
|
|
291
|
-
cribl_control_plane/models/updateadminproductsmappingsbyproductandidop.py,sha256=r9NvqXEeGBC_tugJsbotZ7IZT-j_50RKo-QiMxJyUt0,2176
|
|
292
281
|
cribl_control_plane/models/updateconfiggroupbyproductandidop.py,sha256=kBzTO_8INoagYfVdMZ56Tm6iLnkgsf56_RFH0B4OV9Q,2099
|
|
293
282
|
cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py,sha256=4vfGnRiWhhQketlN0pXGgSKgSvQiSgNBboL3x_2B6DY,2165
|
|
294
283
|
cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=awEhvZ0TuHL48F_b5b-sW85FguNr76LVZpTAg9wXnWo,2133
|
|
@@ -305,7 +294,7 @@ cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z
|
|
|
305
294
|
cribl_control_plane/models/workertypes.py,sha256=1AaTkG_g67Vtoh0vYYrYVgRo41PvcK3cRm_G_r-JSgA,286
|
|
306
295
|
cribl_control_plane/nodes.py,sha256=I4AnHbDlX3zNbvDfwgIZ6sv1yQTlkAGaQRoSzwkl0KM,17531
|
|
307
296
|
cribl_control_plane/packs.py,sha256=svZrwbLNPfqPlRC0oh0w5IwQl2DWUHI89N3aTw27AiQ,47651
|
|
308
|
-
cribl_control_plane/pipelines.py,sha256=
|
|
297
|
+
cribl_control_plane/pipelines.py,sha256=jeU-R5NDOsLXrV-5t7Cz-RPidsQ4KwNN4-_oW9iNK0s,36946
|
|
309
298
|
cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
310
299
|
cribl_control_plane/routes_sdk.py,sha256=8rOo8OyPDybbB-YjuqsjwLfXPy1WCjHBduv7FkWUdb0,32365
|
|
311
300
|
cribl_control_plane/samples.py,sha256=41bJGkB-lxj8WmeI-418PwgMT2KPKqlINp26CKwt0Yk,16067
|
|
@@ -337,6 +326,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
337
326
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
338
327
|
cribl_control_plane/versions.py,sha256=4xdTYbM84Xyjr5qkixqNpgn2q6V8aXVYXkEPDU2Ele0,1156
|
|
339
328
|
cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
|
|
340
|
-
cribl_control_plane-0.2.
|
|
341
|
-
cribl_control_plane-0.2.
|
|
342
|
-
cribl_control_plane-0.2.
|
|
329
|
+
cribl_control_plane-0.2.1rc6.dist-info/METADATA,sha256=fCtCRcrV2qFdcmqCf5Q60IDv9mjAFja8rcqk11n-crI,40606
|
|
330
|
+
cribl_control_plane-0.2.1rc6.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
331
|
+
cribl_control_plane-0.2.1rc6.dist-info/RECORD,,
|