cribl-control-plane 0.2.1rc8__py3-none-any.whl → 0.2.1rc9__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 +3 -0
- cribl_control_plane/mappings.py +1185 -0
- cribl_control_plane/models/__init__.py +149 -20
- cribl_control_plane/models/createadminproductsmappingsactivatebyproductop.py +52 -0
- cribl_control_plane/models/createadminproductsmappingsbyproductop.py +53 -0
- cribl_control_plane/models/deleteadminproductsmappingsbyproductandidop.py +51 -0
- cribl_control_plane/models/evalfunction.py +77 -0
- cribl_control_plane/models/evalschema.py +44 -0
- cribl_control_plane/models/getadminproductsmappingsbyproductandidop.py +51 -0
- cribl_control_plane/models/getadminproductsmappingsbyproductop.py +44 -0
- cribl_control_plane/models/jobinfo.py +4 -10
- cribl_control_plane/models/jobstatus.py +3 -24
- cribl_control_plane/models/mappingruleset.py +31 -0
- cribl_control_plane/models/pipeline.py +7 -7
- cribl_control_plane/models/pipelinefunctionconf.py +4 -4
- cribl_control_plane/models/rulesetid.py +13 -0
- cribl_control_plane/models/updateadminproductsmappingsbyproductandidop.py +63 -0
- cribl_control_plane/pipelines.py +8 -8
- {cribl_control_plane-0.2.1rc8.dist-info → cribl_control_plane-0.2.1rc9.dist-info}/METADATA +11 -2
- {cribl_control_plane-0.2.1rc8.dist-info → cribl_control_plane-0.2.1rc9.dist-info}/RECORD +22 -11
- {cribl_control_plane-0.2.1rc8.dist-info → cribl_control_plane-0.2.1rc9.dist-info}/WHEEL +0 -0
|
@@ -33,6 +33,18 @@ 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
|
+
)
|
|
36
48
|
from .createconfiggroupbyproductop import (
|
|
37
49
|
CreateConfigGroupByProductRequest,
|
|
38
50
|
CreateConfigGroupByProductRequestTypedDict,
|
|
@@ -109,6 +121,12 @@ if TYPE_CHECKING:
|
|
|
109
121
|
DatasetMetadataRunInfo,
|
|
110
122
|
DatasetMetadataRunInfoTypedDict,
|
|
111
123
|
)
|
|
124
|
+
from .deleteadminproductsmappingsbyproductandidop import (
|
|
125
|
+
DeleteAdminProductsMappingsByProductAndIDRequest,
|
|
126
|
+
DeleteAdminProductsMappingsByProductAndIDRequestTypedDict,
|
|
127
|
+
DeleteAdminProductsMappingsByProductAndIDResponse,
|
|
128
|
+
DeleteAdminProductsMappingsByProductAndIDResponseTypedDict,
|
|
129
|
+
)
|
|
112
130
|
from .deleteconfiggroupbyproductandidop import (
|
|
113
131
|
DeleteConfigGroupByProductAndIDRequest,
|
|
114
132
|
DeleteConfigGroupByProductAndIDRequestTypedDict,
|
|
@@ -184,6 +202,28 @@ if TYPE_CHECKING:
|
|
|
184
202
|
DistributedSummaryWorkers,
|
|
185
203
|
DistributedSummaryWorkersTypedDict,
|
|
186
204
|
)
|
|
205
|
+
from .evalfunction import (
|
|
206
|
+
EvalFunction,
|
|
207
|
+
EvalFunctionFunctionSpecificConfigs,
|
|
208
|
+
EvalFunctionFunctionSpecificConfigsTypedDict,
|
|
209
|
+
EvalFunctionTypedDict,
|
|
210
|
+
Group,
|
|
211
|
+
ID,
|
|
212
|
+
Name,
|
|
213
|
+
)
|
|
214
|
+
from .evalschema import Add, AddTypedDict, EvalSchema, EvalSchemaTypedDict
|
|
215
|
+
from .getadminproductsmappingsbyproductandidop import (
|
|
216
|
+
GetAdminProductsMappingsByProductAndIDRequest,
|
|
217
|
+
GetAdminProductsMappingsByProductAndIDRequestTypedDict,
|
|
218
|
+
GetAdminProductsMappingsByProductAndIDResponse,
|
|
219
|
+
GetAdminProductsMappingsByProductAndIDResponseTypedDict,
|
|
220
|
+
)
|
|
221
|
+
from .getadminproductsmappingsbyproductop import (
|
|
222
|
+
GetAdminProductsMappingsByProductRequest,
|
|
223
|
+
GetAdminProductsMappingsByProductRequestTypedDict,
|
|
224
|
+
GetAdminProductsMappingsByProductResponse,
|
|
225
|
+
GetAdminProductsMappingsByProductResponseTypedDict,
|
|
226
|
+
)
|
|
187
227
|
from .getconfiggroupaclbyproductandidop import (
|
|
188
228
|
GetConfigGroupACLByProductAndIDRequest,
|
|
189
229
|
GetConfigGroupACLByProductAndIDRequestTypedDict,
|
|
@@ -1803,8 +1843,8 @@ if TYPE_CHECKING:
|
|
|
1803
1843
|
InputZscalerHecType,
|
|
1804
1844
|
InputZscalerHecTypedDict,
|
|
1805
1845
|
)
|
|
1806
|
-
from .jobinfo import JobInfo, JobInfoTypedDict
|
|
1807
|
-
from .jobstatus import JobStatus, JobStatusTypedDict
|
|
1846
|
+
from .jobinfo import JobInfo, JobInfoTypedDict
|
|
1847
|
+
from .jobstatus import JobStatus, JobStatusTypedDict
|
|
1808
1848
|
from .lakedatasetmetrics import LakeDatasetMetrics, LakeDatasetMetricsTypedDict
|
|
1809
1849
|
from .lakedatasetsearchconfig import (
|
|
1810
1850
|
LakeDatasetSearchConfig,
|
|
@@ -1829,6 +1869,12 @@ if TYPE_CHECKING:
|
|
|
1829
1869
|
from .listroutesop import ListRoutesResponse, ListRoutesResponseTypedDict
|
|
1830
1870
|
from .logininfo import LoginInfo, LoginInfoTypedDict
|
|
1831
1871
|
from .lookupversions import LookupVersions, LookupVersionsTypedDict
|
|
1872
|
+
from .mappingruleset import (
|
|
1873
|
+
MappingRuleset,
|
|
1874
|
+
MappingRulesetConf,
|
|
1875
|
+
MappingRulesetConfTypedDict,
|
|
1876
|
+
MappingRulesetTypedDict,
|
|
1877
|
+
)
|
|
1832
1878
|
from .masterworkerentry import (
|
|
1833
1879
|
LastMetrics,
|
|
1834
1880
|
LastMetricsTypedDict,
|
|
@@ -3201,17 +3247,17 @@ if TYPE_CHECKING:
|
|
|
3201
3247
|
)
|
|
3202
3248
|
from .packupgraderequest import PackUpgradeRequest, PackUpgradeRequestTypedDict
|
|
3203
3249
|
from .pipeline import (
|
|
3204
|
-
Conf,
|
|
3205
|
-
ConfTypedDict,
|
|
3206
3250
|
Pipeline,
|
|
3251
|
+
PipelineConf,
|
|
3252
|
+
PipelineConfTypedDict,
|
|
3207
3253
|
PipelineGroups,
|
|
3208
3254
|
PipelineGroupsTypedDict,
|
|
3209
3255
|
PipelineTypedDict,
|
|
3210
3256
|
)
|
|
3211
3257
|
from .pipelinefunctionconf import (
|
|
3212
|
-
FunctionSpecificConfigs,
|
|
3213
|
-
FunctionSpecificConfigsTypedDict,
|
|
3214
3258
|
PipelineFunctionConf,
|
|
3259
|
+
PipelineFunctionConfFunctionSpecificConfigs,
|
|
3260
|
+
PipelineFunctionConfFunctionSpecificConfigsTypedDict,
|
|
3215
3261
|
PipelineFunctionConfTypedDict,
|
|
3216
3262
|
)
|
|
3217
3263
|
from .productscore import ProductsCore
|
|
@@ -3227,6 +3273,7 @@ if TYPE_CHECKING:
|
|
|
3227
3273
|
RoutesTypedDict,
|
|
3228
3274
|
)
|
|
3229
3275
|
from .routesroute import RoutesRoute, RoutesRouteTypedDict
|
|
3276
|
+
from .rulesetid import RulesetID, RulesetIDTypedDict
|
|
3230
3277
|
from .runnablejob import RunnableJob, RunnableJobTypedDict
|
|
3231
3278
|
from .runnablejobcollection import (
|
|
3232
3279
|
CaptureSettings,
|
|
@@ -3301,6 +3348,12 @@ if TYPE_CHECKING:
|
|
|
3301
3348
|
TeamAccessControlList,
|
|
3302
3349
|
TeamAccessControlListTypedDict,
|
|
3303
3350
|
)
|
|
3351
|
+
from .updateadminproductsmappingsbyproductandidop import (
|
|
3352
|
+
UpdateAdminProductsMappingsByProductAndIDRequest,
|
|
3353
|
+
UpdateAdminProductsMappingsByProductAndIDRequestTypedDict,
|
|
3354
|
+
UpdateAdminProductsMappingsByProductAndIDResponse,
|
|
3355
|
+
UpdateAdminProductsMappingsByProductAndIDResponseTypedDict,
|
|
3356
|
+
)
|
|
3304
3357
|
from .updateconfiggroupbyproductandidop import (
|
|
3305
3358
|
UpdateConfigGroupByProductAndIDRequest,
|
|
3306
3359
|
UpdateConfigGroupByProductAndIDRequestTypedDict,
|
|
@@ -3371,10 +3424,12 @@ if TYPE_CHECKING:
|
|
|
3371
3424
|
|
|
3372
3425
|
__all__ = [
|
|
3373
3426
|
"AISIEMEndpointPath",
|
|
3427
|
+
"Add",
|
|
3374
3428
|
"AddHecTokenRequest",
|
|
3375
3429
|
"AddHecTokenRequestMetadatum",
|
|
3376
3430
|
"AddHecTokenRequestMetadatumTypedDict",
|
|
3377
3431
|
"AddHecTokenRequestTypedDict",
|
|
3432
|
+
"AddTypedDict",
|
|
3378
3433
|
"AdditionalProperty",
|
|
3379
3434
|
"AdditionalPropertyTypedDict",
|
|
3380
3435
|
"Allow",
|
|
@@ -3415,8 +3470,6 @@ __all__ = [
|
|
|
3415
3470
|
"CommentTypedDict",
|
|
3416
3471
|
"Commit",
|
|
3417
3472
|
"CommitTypedDict",
|
|
3418
|
-
"Conf",
|
|
3419
|
-
"ConfTypedDict",
|
|
3420
3473
|
"Config",
|
|
3421
3474
|
"ConfigGroup",
|
|
3422
3475
|
"ConfigGroupCloud",
|
|
@@ -3434,6 +3487,14 @@ __all__ = [
|
|
|
3434
3487
|
"Container",
|
|
3435
3488
|
"ContainerMode",
|
|
3436
3489
|
"ContainerTypedDict",
|
|
3490
|
+
"CreateAdminProductsMappingsActivateByProductRequest",
|
|
3491
|
+
"CreateAdminProductsMappingsActivateByProductRequestTypedDict",
|
|
3492
|
+
"CreateAdminProductsMappingsActivateByProductResponse",
|
|
3493
|
+
"CreateAdminProductsMappingsActivateByProductResponseTypedDict",
|
|
3494
|
+
"CreateAdminProductsMappingsByProductRequest",
|
|
3495
|
+
"CreateAdminProductsMappingsByProductRequestTypedDict",
|
|
3496
|
+
"CreateAdminProductsMappingsByProductResponse",
|
|
3497
|
+
"CreateAdminProductsMappingsByProductResponseTypedDict",
|
|
3437
3498
|
"CreateConfigGroupByProductRequest",
|
|
3438
3499
|
"CreateConfigGroupByProductRequestTypedDict",
|
|
3439
3500
|
"CreateConfigGroupByProductResponse",
|
|
@@ -3494,6 +3555,10 @@ __all__ = [
|
|
|
3494
3555
|
"DatasetMetadataRunInfo",
|
|
3495
3556
|
"DatasetMetadataRunInfoTypedDict",
|
|
3496
3557
|
"DatasetMetadataTypedDict",
|
|
3558
|
+
"DeleteAdminProductsMappingsByProductAndIDRequest",
|
|
3559
|
+
"DeleteAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
3560
|
+
"DeleteAdminProductsMappingsByProductAndIDResponse",
|
|
3561
|
+
"DeleteAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
3497
3562
|
"DeleteConfigGroupByProductAndIDRequest",
|
|
3498
3563
|
"DeleteConfigGroupByProductAndIDRequestTypedDict",
|
|
3499
3564
|
"DeleteConfigGroupByProductAndIDResponse",
|
|
@@ -3549,6 +3614,12 @@ __all__ = [
|
|
|
3549
3614
|
"EndpointParam",
|
|
3550
3615
|
"EndpointParamTypedDict",
|
|
3551
3616
|
"EndpointType",
|
|
3617
|
+
"EvalFunction",
|
|
3618
|
+
"EvalFunctionFunctionSpecificConfigs",
|
|
3619
|
+
"EvalFunctionFunctionSpecificConfigsTypedDict",
|
|
3620
|
+
"EvalFunctionTypedDict",
|
|
3621
|
+
"EvalSchema",
|
|
3622
|
+
"EvalSchemaTypedDict",
|
|
3552
3623
|
"EventFormat",
|
|
3553
3624
|
"Executor",
|
|
3554
3625
|
"ExecutorSpecificSettings",
|
|
@@ -3564,8 +3635,14 @@ __all__ = [
|
|
|
3564
3635
|
"FileTypedDict",
|
|
3565
3636
|
"Firewall",
|
|
3566
3637
|
"FirewallTypedDict",
|
|
3567
|
-
"
|
|
3568
|
-
"
|
|
3638
|
+
"GetAdminProductsMappingsByProductAndIDRequest",
|
|
3639
|
+
"GetAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
3640
|
+
"GetAdminProductsMappingsByProductAndIDResponse",
|
|
3641
|
+
"GetAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
3642
|
+
"GetAdminProductsMappingsByProductRequest",
|
|
3643
|
+
"GetAdminProductsMappingsByProductRequestTypedDict",
|
|
3644
|
+
"GetAdminProductsMappingsByProductResponse",
|
|
3645
|
+
"GetAdminProductsMappingsByProductResponseTypedDict",
|
|
3569
3646
|
"GetConfigGroupACLByProductAndIDRequest",
|
|
3570
3647
|
"GetConfigGroupACLByProductAndIDRequestTypedDict",
|
|
3571
3648
|
"GetConfigGroupACLByProductAndIDResponse",
|
|
@@ -3686,6 +3763,7 @@ __all__ = [
|
|
|
3686
3763
|
"GitShowResultTypedDict",
|
|
3687
3764
|
"GitStatusResult",
|
|
3688
3765
|
"GitStatusResultTypedDict",
|
|
3766
|
+
"Group",
|
|
3689
3767
|
"GroupCreateRequest",
|
|
3690
3768
|
"GroupCreateRequestEstimatedIngestRate",
|
|
3691
3769
|
"GroupCreateRequestGit",
|
|
@@ -3716,6 +3794,7 @@ __all__ = [
|
|
|
3716
3794
|
"HostInfoTypedDict",
|
|
3717
3795
|
"HostsFile",
|
|
3718
3796
|
"HostsFileTypedDict",
|
|
3797
|
+
"ID",
|
|
3719
3798
|
"IndexerDiscoveryConfigs",
|
|
3720
3799
|
"IndexerDiscoveryConfigsAuthTokenAuthenticationMethod",
|
|
3721
3800
|
"IndexerDiscoveryConfigsAuthenticationMethod",
|
|
@@ -4991,6 +5070,10 @@ __all__ = [
|
|
|
4991
5070
|
"LookupVersionsTypedDict",
|
|
4992
5071
|
"MTLSSettings",
|
|
4993
5072
|
"MTLSSettingsTypedDict",
|
|
5073
|
+
"MappingRuleset",
|
|
5074
|
+
"MappingRulesetConf",
|
|
5075
|
+
"MappingRulesetConfTypedDict",
|
|
5076
|
+
"MappingRulesetTypedDict",
|
|
4994
5077
|
"MappingType",
|
|
4995
5078
|
"MasterWorkerEntry",
|
|
4996
5079
|
"MasterWorkerEntryType",
|
|
@@ -4998,6 +5081,7 @@ __all__ = [
|
|
|
4998
5081
|
"MasterWorkerEntryWorkers",
|
|
4999
5082
|
"MasterWorkerEntryWorkersTypedDict",
|
|
5000
5083
|
"MetricsProtocol",
|
|
5084
|
+
"Name",
|
|
5001
5085
|
"NodeActiveUpgradeStatus",
|
|
5002
5086
|
"NodeFailedUpgradeStatus",
|
|
5003
5087
|
"NodeProvidedInfo",
|
|
@@ -6192,7 +6276,11 @@ __all__ = [
|
|
|
6192
6276
|
"PackUpgradeRequestTypedDict",
|
|
6193
6277
|
"PayloadFormat",
|
|
6194
6278
|
"Pipeline",
|
|
6279
|
+
"PipelineConf",
|
|
6280
|
+
"PipelineConfTypedDict",
|
|
6195
6281
|
"PipelineFunctionConf",
|
|
6282
|
+
"PipelineFunctionConfFunctionSpecificConfigs",
|
|
6283
|
+
"PipelineFunctionConfFunctionSpecificConfigsTypedDict",
|
|
6196
6284
|
"PipelineFunctionConfTypedDict",
|
|
6197
6285
|
"PipelineGroups",
|
|
6198
6286
|
"PipelineGroupsTypedDict",
|
|
@@ -6232,6 +6320,8 @@ __all__ = [
|
|
|
6232
6320
|
"RoutesRoute",
|
|
6233
6321
|
"RoutesRouteTypedDict",
|
|
6234
6322
|
"RoutesTypedDict",
|
|
6323
|
+
"RulesetID",
|
|
6324
|
+
"RulesetIDTypedDict",
|
|
6235
6325
|
"RunnableJob",
|
|
6236
6326
|
"RunnableJobCollection",
|
|
6237
6327
|
"RunnableJobCollectionInput",
|
|
@@ -6302,9 +6392,6 @@ __all__ = [
|
|
|
6302
6392
|
"ShardLoadBalancing",
|
|
6303
6393
|
"SplunkHecMetadata",
|
|
6304
6394
|
"SplunkHecMetadataTypedDict",
|
|
6305
|
-
"State",
|
|
6306
|
-
"Stats",
|
|
6307
|
-
"StatsTypedDict",
|
|
6308
6395
|
"Status",
|
|
6309
6396
|
"Subscription",
|
|
6310
6397
|
"SubscriptionMetadatum",
|
|
@@ -6322,6 +6409,10 @@ __all__ = [
|
|
|
6322
6409
|
"TimestampFormat",
|
|
6323
6410
|
"TimestampPrecision",
|
|
6324
6411
|
"UDMType",
|
|
6412
|
+
"UpdateAdminProductsMappingsByProductAndIDRequest",
|
|
6413
|
+
"UpdateAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
6414
|
+
"UpdateAdminProductsMappingsByProductAndIDResponse",
|
|
6415
|
+
"UpdateAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
6325
6416
|
"UpdateConfigGroupByProductAndIDRequest",
|
|
6326
6417
|
"UpdateConfigGroupByProductAndIDRequestTypedDict",
|
|
6327
6418
|
"UpdateConfigGroupByProductAndIDResponse",
|
|
@@ -6404,6 +6495,14 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6404
6495
|
"ConfigGroupLookupsLookup": ".configgrouplookups",
|
|
6405
6496
|
"ConfigGroupLookupsLookupTypedDict": ".configgrouplookups",
|
|
6406
6497
|
"ConfigGroupLookupsTypedDict": ".configgrouplookups",
|
|
6498
|
+
"CreateAdminProductsMappingsActivateByProductRequest": ".createadminproductsmappingsactivatebyproductop",
|
|
6499
|
+
"CreateAdminProductsMappingsActivateByProductRequestTypedDict": ".createadminproductsmappingsactivatebyproductop",
|
|
6500
|
+
"CreateAdminProductsMappingsActivateByProductResponse": ".createadminproductsmappingsactivatebyproductop",
|
|
6501
|
+
"CreateAdminProductsMappingsActivateByProductResponseTypedDict": ".createadminproductsmappingsactivatebyproductop",
|
|
6502
|
+
"CreateAdminProductsMappingsByProductRequest": ".createadminproductsmappingsbyproductop",
|
|
6503
|
+
"CreateAdminProductsMappingsByProductRequestTypedDict": ".createadminproductsmappingsbyproductop",
|
|
6504
|
+
"CreateAdminProductsMappingsByProductResponse": ".createadminproductsmappingsbyproductop",
|
|
6505
|
+
"CreateAdminProductsMappingsByProductResponseTypedDict": ".createadminproductsmappingsbyproductop",
|
|
6407
6506
|
"CreateConfigGroupByProductRequest": ".createconfiggroupbyproductop",
|
|
6408
6507
|
"CreateConfigGroupByProductRequestTypedDict": ".createconfiggroupbyproductop",
|
|
6409
6508
|
"CreateConfigGroupByProductResponse": ".createconfiggroupbyproductop",
|
|
@@ -6461,6 +6560,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6461
6560
|
"ScanMode": ".datasetmetadata",
|
|
6462
6561
|
"DatasetMetadataRunInfo": ".datasetmetadataruninfo",
|
|
6463
6562
|
"DatasetMetadataRunInfoTypedDict": ".datasetmetadataruninfo",
|
|
6563
|
+
"DeleteAdminProductsMappingsByProductAndIDRequest": ".deleteadminproductsmappingsbyproductandidop",
|
|
6564
|
+
"DeleteAdminProductsMappingsByProductAndIDRequestTypedDict": ".deleteadminproductsmappingsbyproductandidop",
|
|
6565
|
+
"DeleteAdminProductsMappingsByProductAndIDResponse": ".deleteadminproductsmappingsbyproductandidop",
|
|
6566
|
+
"DeleteAdminProductsMappingsByProductAndIDResponseTypedDict": ".deleteadminproductsmappingsbyproductandidop",
|
|
6464
6567
|
"DeleteConfigGroupByProductAndIDRequest": ".deleteconfiggroupbyproductandidop",
|
|
6465
6568
|
"DeleteConfigGroupByProductAndIDRequestTypedDict": ".deleteconfiggroupbyproductandidop",
|
|
6466
6569
|
"DeleteConfigGroupByProductAndIDResponse": ".deleteconfiggroupbyproductandidop",
|
|
@@ -6517,6 +6620,25 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6517
6620
|
"DistributedSummaryTypedDict": ".distributedsummary",
|
|
6518
6621
|
"DistributedSummaryWorkers": ".distributedsummary",
|
|
6519
6622
|
"DistributedSummaryWorkersTypedDict": ".distributedsummary",
|
|
6623
|
+
"EvalFunction": ".evalfunction",
|
|
6624
|
+
"EvalFunctionFunctionSpecificConfigs": ".evalfunction",
|
|
6625
|
+
"EvalFunctionFunctionSpecificConfigsTypedDict": ".evalfunction",
|
|
6626
|
+
"EvalFunctionTypedDict": ".evalfunction",
|
|
6627
|
+
"Group": ".evalfunction",
|
|
6628
|
+
"ID": ".evalfunction",
|
|
6629
|
+
"Name": ".evalfunction",
|
|
6630
|
+
"Add": ".evalschema",
|
|
6631
|
+
"AddTypedDict": ".evalschema",
|
|
6632
|
+
"EvalSchema": ".evalschema",
|
|
6633
|
+
"EvalSchemaTypedDict": ".evalschema",
|
|
6634
|
+
"GetAdminProductsMappingsByProductAndIDRequest": ".getadminproductsmappingsbyproductandidop",
|
|
6635
|
+
"GetAdminProductsMappingsByProductAndIDRequestTypedDict": ".getadminproductsmappingsbyproductandidop",
|
|
6636
|
+
"GetAdminProductsMappingsByProductAndIDResponse": ".getadminproductsmappingsbyproductandidop",
|
|
6637
|
+
"GetAdminProductsMappingsByProductAndIDResponseTypedDict": ".getadminproductsmappingsbyproductandidop",
|
|
6638
|
+
"GetAdminProductsMappingsByProductRequest": ".getadminproductsmappingsbyproductop",
|
|
6639
|
+
"GetAdminProductsMappingsByProductRequestTypedDict": ".getadminproductsmappingsbyproductop",
|
|
6640
|
+
"GetAdminProductsMappingsByProductResponse": ".getadminproductsmappingsbyproductop",
|
|
6641
|
+
"GetAdminProductsMappingsByProductResponseTypedDict": ".getadminproductsmappingsbyproductop",
|
|
6520
6642
|
"GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
|
|
6521
6643
|
"GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
|
|
6522
6644
|
"GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
|
|
@@ -7972,11 +8094,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7972
8094
|
"InputZscalerHecTypedDict": ".inputzscalerhec",
|
|
7973
8095
|
"JobInfo": ".jobinfo",
|
|
7974
8096
|
"JobInfoTypedDict": ".jobinfo",
|
|
7975
|
-
"Stats": ".jobinfo",
|
|
7976
|
-
"StatsTypedDict": ".jobinfo",
|
|
7977
8097
|
"JobStatus": ".jobstatus",
|
|
7978
8098
|
"JobStatusTypedDict": ".jobstatus",
|
|
7979
|
-
"State": ".jobstatus",
|
|
7980
8099
|
"LakeDatasetMetrics": ".lakedatasetmetrics",
|
|
7981
8100
|
"LakeDatasetMetricsTypedDict": ".lakedatasetmetrics",
|
|
7982
8101
|
"LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
|
|
@@ -8002,6 +8121,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8002
8121
|
"LoginInfoTypedDict": ".logininfo",
|
|
8003
8122
|
"LookupVersions": ".lookupversions",
|
|
8004
8123
|
"LookupVersionsTypedDict": ".lookupversions",
|
|
8124
|
+
"MappingRuleset": ".mappingruleset",
|
|
8125
|
+
"MappingRulesetConf": ".mappingruleset",
|
|
8126
|
+
"MappingRulesetConfTypedDict": ".mappingruleset",
|
|
8127
|
+
"MappingRulesetTypedDict": ".mappingruleset",
|
|
8005
8128
|
"LastMetrics": ".masterworkerentry",
|
|
8006
8129
|
"LastMetricsTypedDict": ".masterworkerentry",
|
|
8007
8130
|
"MasterWorkerEntry": ".masterworkerentry",
|
|
@@ -9243,15 +9366,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9243
9366
|
"PackRequestBodyUnionTypedDict": ".packrequestbody_union",
|
|
9244
9367
|
"PackUpgradeRequest": ".packupgraderequest",
|
|
9245
9368
|
"PackUpgradeRequestTypedDict": ".packupgraderequest",
|
|
9246
|
-
"Conf": ".pipeline",
|
|
9247
|
-
"ConfTypedDict": ".pipeline",
|
|
9248
9369
|
"Pipeline": ".pipeline",
|
|
9370
|
+
"PipelineConf": ".pipeline",
|
|
9371
|
+
"PipelineConfTypedDict": ".pipeline",
|
|
9249
9372
|
"PipelineGroups": ".pipeline",
|
|
9250
9373
|
"PipelineGroupsTypedDict": ".pipeline",
|
|
9251
9374
|
"PipelineTypedDict": ".pipeline",
|
|
9252
|
-
"FunctionSpecificConfigs": ".pipelinefunctionconf",
|
|
9253
|
-
"FunctionSpecificConfigsTypedDict": ".pipelinefunctionconf",
|
|
9254
9375
|
"PipelineFunctionConf": ".pipelinefunctionconf",
|
|
9376
|
+
"PipelineFunctionConfFunctionSpecificConfigs": ".pipelinefunctionconf",
|
|
9377
|
+
"PipelineFunctionConfFunctionSpecificConfigsTypedDict": ".pipelinefunctionconf",
|
|
9255
9378
|
"PipelineFunctionConfTypedDict": ".pipelinefunctionconf",
|
|
9256
9379
|
"ProductsCore": ".productscore",
|
|
9257
9380
|
"RbacResource": ".rbacresource",
|
|
@@ -9267,6 +9390,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9267
9390
|
"RoutesTypedDict": ".routes",
|
|
9268
9391
|
"RoutesRoute": ".routesroute",
|
|
9269
9392
|
"RoutesRouteTypedDict": ".routesroute",
|
|
9393
|
+
"RulesetID": ".rulesetid",
|
|
9394
|
+
"RulesetIDTypedDict": ".rulesetid",
|
|
9270
9395
|
"RunnableJob": ".runnablejob",
|
|
9271
9396
|
"RunnableJobTypedDict": ".runnablejob",
|
|
9272
9397
|
"CaptureSettings": ".runnablejobcollection",
|
|
@@ -9336,6 +9461,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9336
9461
|
"SecurityTypedDict": ".security",
|
|
9337
9462
|
"TeamAccessControlList": ".teamaccesscontrollist",
|
|
9338
9463
|
"TeamAccessControlListTypedDict": ".teamaccesscontrollist",
|
|
9464
|
+
"UpdateAdminProductsMappingsByProductAndIDRequest": ".updateadminproductsmappingsbyproductandidop",
|
|
9465
|
+
"UpdateAdminProductsMappingsByProductAndIDRequestTypedDict": ".updateadminproductsmappingsbyproductandidop",
|
|
9466
|
+
"UpdateAdminProductsMappingsByProductAndIDResponse": ".updateadminproductsmappingsbyproductandidop",
|
|
9467
|
+
"UpdateAdminProductsMappingsByProductAndIDResponseTypedDict": ".updateadminproductsmappingsbyproductandidop",
|
|
9339
9468
|
"UpdateConfigGroupByProductAndIDRequest": ".updateconfiggroupbyproductandidop",
|
|
9340
9469
|
"UpdateConfigGroupByProductAndIDRequestTypedDict": ".updateconfiggroupbyproductandidop",
|
|
9341
9470
|
"UpdateConfigGroupByProductAndIDResponse": ".updateconfiggroupbyproductandidop",
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .productscore import ProductsCore
|
|
5
|
+
from .rulesetid import RulesetID, RulesetIDTypedDict
|
|
6
|
+
from cribl_control_plane.types import BaseModel
|
|
7
|
+
from cribl_control_plane.utils import (
|
|
8
|
+
FieldMetadata,
|
|
9
|
+
PathParamMetadata,
|
|
10
|
+
RequestMetadata,
|
|
11
|
+
validate_open_enum,
|
|
12
|
+
)
|
|
13
|
+
from pydantic.functional_validators import PlainValidator
|
|
14
|
+
from typing import List, Optional
|
|
15
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class CreateAdminProductsMappingsActivateByProductRequestTypedDict(TypedDict):
|
|
19
|
+
product: ProductsCore
|
|
20
|
+
r"""Name of the Cribl product to activate the Mapping Ruleset for"""
|
|
21
|
+
ruleset_id: RulesetIDTypedDict
|
|
22
|
+
r"""RulesetId object"""
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class CreateAdminProductsMappingsActivateByProductRequest(BaseModel):
|
|
26
|
+
product: Annotated[
|
|
27
|
+
Annotated[ProductsCore, PlainValidator(validate_open_enum(False))],
|
|
28
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
29
|
+
]
|
|
30
|
+
r"""Name of the Cribl product to activate the Mapping Ruleset for"""
|
|
31
|
+
|
|
32
|
+
ruleset_id: Annotated[
|
|
33
|
+
RulesetID, FieldMetadata(request=RequestMetadata(media_type="application/json"))
|
|
34
|
+
]
|
|
35
|
+
r"""RulesetId object"""
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
class CreateAdminProductsMappingsActivateByProductResponseTypedDict(TypedDict):
|
|
39
|
+
r"""The <code>id</code> of the Mapping Ruleset that has been successfully activated"""
|
|
40
|
+
|
|
41
|
+
count: NotRequired[int]
|
|
42
|
+
r"""number of items present in the items array"""
|
|
43
|
+
items: NotRequired[List[RulesetIDTypedDict]]
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
class CreateAdminProductsMappingsActivateByProductResponse(BaseModel):
|
|
47
|
+
r"""The <code>id</code> of the Mapping Ruleset that has been successfully activated"""
|
|
48
|
+
|
|
49
|
+
count: Optional[int] = None
|
|
50
|
+
r"""number of items present in the items array"""
|
|
51
|
+
|
|
52
|
+
items: Optional[List[RulesetID]] = None
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .mappingruleset import MappingRuleset, MappingRulesetTypedDict
|
|
5
|
+
from .productscore import ProductsCore
|
|
6
|
+
from cribl_control_plane.types import BaseModel
|
|
7
|
+
from cribl_control_plane.utils import (
|
|
8
|
+
FieldMetadata,
|
|
9
|
+
PathParamMetadata,
|
|
10
|
+
RequestMetadata,
|
|
11
|
+
validate_open_enum,
|
|
12
|
+
)
|
|
13
|
+
from pydantic.functional_validators import PlainValidator
|
|
14
|
+
from typing import List, Optional
|
|
15
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class CreateAdminProductsMappingsByProductRequestTypedDict(TypedDict):
|
|
19
|
+
product: ProductsCore
|
|
20
|
+
r"""Name of the Cribl product to create the Mapping Ruleset for"""
|
|
21
|
+
mapping_ruleset: MappingRulesetTypedDict
|
|
22
|
+
r"""MappingRuleset object"""
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class CreateAdminProductsMappingsByProductRequest(BaseModel):
|
|
26
|
+
product: Annotated[
|
|
27
|
+
Annotated[ProductsCore, PlainValidator(validate_open_enum(False))],
|
|
28
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
29
|
+
]
|
|
30
|
+
r"""Name of the Cribl product to create the Mapping Ruleset for"""
|
|
31
|
+
|
|
32
|
+
mapping_ruleset: Annotated[
|
|
33
|
+
MappingRuleset,
|
|
34
|
+
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
|
35
|
+
]
|
|
36
|
+
r"""MappingRuleset object"""
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class CreateAdminProductsMappingsByProductResponseTypedDict(TypedDict):
|
|
40
|
+
r"""A list containing the newly created Mapping Ruleset objects"""
|
|
41
|
+
|
|
42
|
+
count: NotRequired[int]
|
|
43
|
+
r"""number of items present in the items array"""
|
|
44
|
+
items: NotRequired[List[MappingRulesetTypedDict]]
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class CreateAdminProductsMappingsByProductResponse(BaseModel):
|
|
48
|
+
r"""A list containing the newly created Mapping Ruleset objects"""
|
|
49
|
+
|
|
50
|
+
count: Optional[int] = None
|
|
51
|
+
r"""number of items present in the items array"""
|
|
52
|
+
|
|
53
|
+
items: Optional[List[MappingRuleset]] = None
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .mappingruleset import MappingRuleset, MappingRulesetTypedDict
|
|
5
|
+
from .productscore import ProductsCore
|
|
6
|
+
from cribl_control_plane.types import BaseModel
|
|
7
|
+
from cribl_control_plane.utils import (
|
|
8
|
+
FieldMetadata,
|
|
9
|
+
PathParamMetadata,
|
|
10
|
+
validate_open_enum,
|
|
11
|
+
)
|
|
12
|
+
from pydantic.functional_validators import PlainValidator
|
|
13
|
+
from typing import List, Optional
|
|
14
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class DeleteAdminProductsMappingsByProductAndIDRequestTypedDict(TypedDict):
|
|
18
|
+
product: ProductsCore
|
|
19
|
+
r"""Name of the Cribl product to delete the Mapping Ruleset for"""
|
|
20
|
+
id: str
|
|
21
|
+
r"""The <code>id</code> of the Mapping Ruleset to delete."""
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class DeleteAdminProductsMappingsByProductAndIDRequest(BaseModel):
|
|
25
|
+
product: Annotated[
|
|
26
|
+
Annotated[ProductsCore, PlainValidator(validate_open_enum(False))],
|
|
27
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
28
|
+
]
|
|
29
|
+
r"""Name of the Cribl product to delete the Mapping Ruleset for"""
|
|
30
|
+
|
|
31
|
+
id: Annotated[
|
|
32
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
33
|
+
]
|
|
34
|
+
r"""The <code>id</code> of the Mapping Ruleset to delete."""
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class DeleteAdminProductsMappingsByProductAndIDResponseTypedDict(TypedDict):
|
|
38
|
+
r"""A list containing the deleted Mapping Ruleset objects"""
|
|
39
|
+
|
|
40
|
+
count: NotRequired[int]
|
|
41
|
+
r"""number of items present in the items array"""
|
|
42
|
+
items: NotRequired[List[MappingRulesetTypedDict]]
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
class DeleteAdminProductsMappingsByProductAndIDResponse(BaseModel):
|
|
46
|
+
r"""A list containing the deleted Mapping Ruleset objects"""
|
|
47
|
+
|
|
48
|
+
count: Optional[int] = None
|
|
49
|
+
r"""number of items present in the items array"""
|
|
50
|
+
|
|
51
|
+
items: Optional[List[MappingRuleset]] = None
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .evalschema import EvalSchema, EvalSchemaTypedDict
|
|
5
|
+
from cribl_control_plane import utils
|
|
6
|
+
from cribl_control_plane.types import BaseModel
|
|
7
|
+
from cribl_control_plane.utils import validate_open_enum
|
|
8
|
+
from enum import Enum
|
|
9
|
+
import pydantic
|
|
10
|
+
from pydantic.functional_validators import PlainValidator
|
|
11
|
+
from typing import Optional
|
|
12
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class ID(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
16
|
+
EVAL = "eval"
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class EvalFunctionFunctionSpecificConfigsTypedDict(TypedDict):
|
|
20
|
+
pass
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class EvalFunctionFunctionSpecificConfigs(BaseModel):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class Name(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
28
|
+
EVAL = "Eval"
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class Group(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
32
|
+
STANDARD = "Standard"
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class EvalFunctionTypedDict(TypedDict):
|
|
36
|
+
id: ID
|
|
37
|
+
conf: EvalFunctionFunctionSpecificConfigsTypedDict
|
|
38
|
+
filter_: NotRequired[str]
|
|
39
|
+
r"""Filter that selects data to be fed through this Function"""
|
|
40
|
+
description: NotRequired[str]
|
|
41
|
+
r"""Simple description of this step"""
|
|
42
|
+
disabled: NotRequired[bool]
|
|
43
|
+
r"""If true, data will not be pushed through this function"""
|
|
44
|
+
final: NotRequired[bool]
|
|
45
|
+
r"""If enabled, stops the results of this Function from being passed to the downstream Functions"""
|
|
46
|
+
group_id: NotRequired[str]
|
|
47
|
+
r"""Group ID"""
|
|
48
|
+
name: NotRequired[Name]
|
|
49
|
+
group: NotRequired[Group]
|
|
50
|
+
schema_: NotRequired[EvalSchemaTypedDict]
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
class EvalFunction(BaseModel):
|
|
54
|
+
id: Annotated[ID, PlainValidator(validate_open_enum(False))]
|
|
55
|
+
|
|
56
|
+
conf: EvalFunctionFunctionSpecificConfigs
|
|
57
|
+
|
|
58
|
+
filter_: Annotated[Optional[str], pydantic.Field(alias="filter")] = "true"
|
|
59
|
+
r"""Filter that selects data to be fed through this Function"""
|
|
60
|
+
|
|
61
|
+
description: Optional[str] = None
|
|
62
|
+
r"""Simple description of this step"""
|
|
63
|
+
|
|
64
|
+
disabled: Optional[bool] = None
|
|
65
|
+
r"""If true, data will not be pushed through this function"""
|
|
66
|
+
|
|
67
|
+
final: Optional[bool] = None
|
|
68
|
+
r"""If enabled, stops the results of this Function from being passed to the downstream Functions"""
|
|
69
|
+
|
|
70
|
+
group_id: Annotated[Optional[str], pydantic.Field(alias="groupId")] = None
|
|
71
|
+
r"""Group ID"""
|
|
72
|
+
|
|
73
|
+
name: Annotated[Optional[Name], PlainValidator(validate_open_enum(False))] = None
|
|
74
|
+
|
|
75
|
+
group: Annotated[Optional[Group], PlainValidator(validate_open_enum(False))] = None
|
|
76
|
+
|
|
77
|
+
schema_: Annotated[Optional[EvalSchema], pydantic.Field(alias="schema")] = None
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane.types import BaseModel
|
|
5
|
+
from typing import List, Optional
|
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class AddTypedDict(TypedDict):
|
|
10
|
+
value: str
|
|
11
|
+
r"""JavaScript expression to compute the value (can be constant)"""
|
|
12
|
+
name: NotRequired[str]
|
|
13
|
+
disabled: NotRequired[bool]
|
|
14
|
+
r"""Set to No to disable the evaluation of an individual expression"""
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class Add(BaseModel):
|
|
18
|
+
value: str
|
|
19
|
+
r"""JavaScript expression to compute the value (can be constant)"""
|
|
20
|
+
|
|
21
|
+
name: Optional[str] = None
|
|
22
|
+
|
|
23
|
+
disabled: Optional[bool] = False
|
|
24
|
+
r"""Set to No to disable the evaluation of an individual expression"""
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class EvalSchemaTypedDict(TypedDict):
|
|
28
|
+
add: NotRequired[List[AddTypedDict]]
|
|
29
|
+
r"""Set of key-value pairs to evaluate and add/set"""
|
|
30
|
+
keep: NotRequired[List[str]]
|
|
31
|
+
r"""List of fields to keep. Supports * wildcards. Takes precedence over 'Remove fields'."""
|
|
32
|
+
remove: NotRequired[List[str]]
|
|
33
|
+
r"""List of fields to remove. Supports * wildcards. Fields that match 'Keep fields' will not be removed. Enclose field names containing special characters in single or double quotes."""
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class EvalSchema(BaseModel):
|
|
37
|
+
add: Optional[List[Add]] = None
|
|
38
|
+
r"""Set of key-value pairs to evaluate and add/set"""
|
|
39
|
+
|
|
40
|
+
keep: Optional[List[str]] = None
|
|
41
|
+
r"""List of fields to keep. Supports * wildcards. Takes precedence over 'Remove fields'."""
|
|
42
|
+
|
|
43
|
+
remove: Optional[List[str]] = None
|
|
44
|
+
r"""List of fields to remove. Supports * wildcards. Fields that match 'Keep fields' will not be removed. Enclose field names containing special characters in single or double quotes."""
|