cribl-control-plane 0.2.1rc1__py3-none-any.whl → 0.2.1rc2__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/errors/__init__.py +8 -5
- cribl_control_plane/errors/{healthstatus_error.py → healthserverstatus_error.py} +10 -9
- cribl_control_plane/groups_sdk.py +48 -27
- cribl_control_plane/health.py +22 -16
- cribl_control_plane/models/__init__.py +47 -156
- cribl_control_plane/models/authtoken.py +4 -7
- cribl_control_plane/models/configgroup.py +8 -7
- cribl_control_plane/models/createconfiggroupbyproductop.py +6 -5
- cribl_control_plane/models/createroutesappendbyidop.py +2 -2
- cribl_control_plane/models/deleteoutputpqbyidop.py +2 -2
- cribl_control_plane/models/groupcreaterequest.py +152 -0
- cribl_control_plane/models/{healthstatus.py → healthserverstatus.py} +7 -7
- cribl_control_plane/models/logininfo.py +3 -3
- cribl_control_plane/models/pipeline.py +4 -4
- cribl_control_plane/pipelines.py +8 -8
- cribl_control_plane/routes_sdk.py +6 -6
- cribl_control_plane/tokens.py +23 -15
- {cribl_control_plane-0.2.1rc1.dist-info → cribl_control_plane-0.2.1rc2.dist-info}/METADATA +4 -13
- {cribl_control_plane-0.2.1rc1.dist-info → cribl_control_plane-0.2.1rc2.dist-info}/RECORD +21 -31
- 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/error.py +0 -16
- cribl_control_plane/models/getadminproductsmappingsbyproductandidop.py +0 -51
- cribl_control_plane/models/getadminproductsmappingsbyproductop.py +0 -44
- cribl_control_plane/models/gethealthinfoop.py +0 -17
- cribl_control_plane/models/mappingruleset.py +0 -95
- cribl_control_plane/models/rulesetid.py +0 -13
- cribl_control_plane/models/updateadminproductsmappingsbyproductandidop.py +0 -63
- {cribl_control_plane-0.2.1rc1.dist-info → cribl_control_plane-0.2.1rc2.dist-info}/WHEEL +0 -0
|
@@ -20,11 +20,11 @@ if TYPE_CHECKING:
|
|
|
20
20
|
from .commit import Commit, CommitTypedDict
|
|
21
21
|
from .configgroup import (
|
|
22
22
|
ConfigGroup,
|
|
23
|
+
ConfigGroupEstimatedIngestRate,
|
|
24
|
+
ConfigGroupGit,
|
|
25
|
+
ConfigGroupGitTypedDict,
|
|
23
26
|
ConfigGroupType,
|
|
24
27
|
ConfigGroupTypedDict,
|
|
25
|
-
EstimatedIngestRate,
|
|
26
|
-
Git,
|
|
27
|
-
GitTypedDict,
|
|
28
28
|
)
|
|
29
29
|
from .configgroupcloud import ConfigGroupCloud, ConfigGroupCloudTypedDict
|
|
30
30
|
from .configgrouplookups import (
|
|
@@ -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,19 +184,6 @@ if TYPE_CHECKING:
|
|
|
202
184
|
DistributedSummaryWorkers,
|
|
203
185
|
DistributedSummaryWorkersTypedDict,
|
|
204
186
|
)
|
|
205
|
-
from .error import Error, ErrorTypedDict
|
|
206
|
-
from .getadminproductsmappingsbyproductandidop import (
|
|
207
|
-
GetAdminProductsMappingsByProductAndIDRequest,
|
|
208
|
-
GetAdminProductsMappingsByProductAndIDRequestTypedDict,
|
|
209
|
-
GetAdminProductsMappingsByProductAndIDResponse,
|
|
210
|
-
GetAdminProductsMappingsByProductAndIDResponseTypedDict,
|
|
211
|
-
)
|
|
212
|
-
from .getadminproductsmappingsbyproductop import (
|
|
213
|
-
GetAdminProductsMappingsByProductRequest,
|
|
214
|
-
GetAdminProductsMappingsByProductRequestTypedDict,
|
|
215
|
-
GetAdminProductsMappingsByProductResponse,
|
|
216
|
-
GetAdminProductsMappingsByProductResponseTypedDict,
|
|
217
|
-
)
|
|
218
187
|
from .getconfiggroupaclbyproductandidop import (
|
|
219
188
|
GetConfigGroupACLByProductAndIDRequest,
|
|
220
189
|
GetConfigGroupACLByProductAndIDRequestTypedDict,
|
|
@@ -251,7 +220,6 @@ if TYPE_CHECKING:
|
|
|
251
220
|
GetCriblLakeDatasetByLakeIDResponse,
|
|
252
221
|
GetCriblLakeDatasetByLakeIDResponseTypedDict,
|
|
253
222
|
)
|
|
254
|
-
from .gethealthinfoop import GetHealthInfoResponse, GetHealthInfoResponseTypedDict
|
|
255
223
|
from .getinputbyidop import (
|
|
256
224
|
GetInputByIDRequest,
|
|
257
225
|
GetInputByIDRequestTypedDict,
|
|
@@ -391,6 +359,14 @@ if TYPE_CHECKING:
|
|
|
391
359
|
Renamed,
|
|
392
360
|
RenamedTypedDict,
|
|
393
361
|
)
|
|
362
|
+
from .groupcreaterequest import (
|
|
363
|
+
GroupCreateRequest,
|
|
364
|
+
GroupCreateRequestEstimatedIngestRate,
|
|
365
|
+
GroupCreateRequestGit,
|
|
366
|
+
GroupCreateRequestGitTypedDict,
|
|
367
|
+
GroupCreateRequestType,
|
|
368
|
+
GroupCreateRequestTypedDict,
|
|
369
|
+
)
|
|
394
370
|
from .hbcriblinfo import (
|
|
395
371
|
Config,
|
|
396
372
|
ConfigTypedDict,
|
|
@@ -399,7 +375,12 @@ if TYPE_CHECKING:
|
|
|
399
375
|
HBCriblInfoTypedDict,
|
|
400
376
|
)
|
|
401
377
|
from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
|
|
402
|
-
from .
|
|
378
|
+
from .healthserverstatus import (
|
|
379
|
+
HealthServerStatus,
|
|
380
|
+
HealthServerStatusTypedDict,
|
|
381
|
+
Role,
|
|
382
|
+
Status,
|
|
383
|
+
)
|
|
403
384
|
from .heartbeatmetadata import (
|
|
404
385
|
HeartbeatMetadata,
|
|
405
386
|
HeartbeatMetadataAws,
|
|
@@ -1834,19 +1815,6 @@ if TYPE_CHECKING:
|
|
|
1834
1815
|
from .listroutesop import ListRoutesResponse, ListRoutesResponseTypedDict
|
|
1835
1816
|
from .logininfo import LoginInfo, LoginInfoTypedDict
|
|
1836
1817
|
from .lookupversions import LookupVersions, LookupVersionsTypedDict
|
|
1837
|
-
from .mappingruleset import (
|
|
1838
|
-
Add,
|
|
1839
|
-
AddTypedDict,
|
|
1840
|
-
Function,
|
|
1841
|
-
FunctionConf,
|
|
1842
|
-
FunctionConfTypedDict,
|
|
1843
|
-
FunctionTypedDict,
|
|
1844
|
-
ID,
|
|
1845
|
-
MappingRuleset,
|
|
1846
|
-
MappingRulesetConf,
|
|
1847
|
-
MappingRulesetConfTypedDict,
|
|
1848
|
-
MappingRulesetTypedDict,
|
|
1849
|
-
)
|
|
1850
1818
|
from .masterworkerentry import (
|
|
1851
1819
|
LastMetrics,
|
|
1852
1820
|
LastMetricsTypedDict,
|
|
@@ -3196,9 +3164,9 @@ if TYPE_CHECKING:
|
|
|
3196
3164
|
)
|
|
3197
3165
|
from .packupgraderequest import PackUpgradeRequest, PackUpgradeRequestTypedDict
|
|
3198
3166
|
from .pipeline import (
|
|
3167
|
+
Conf,
|
|
3168
|
+
ConfTypedDict,
|
|
3199
3169
|
Pipeline,
|
|
3200
|
-
PipelineConf,
|
|
3201
|
-
PipelineConfTypedDict,
|
|
3202
3170
|
PipelineGroups,
|
|
3203
3171
|
PipelineGroupsTypedDict,
|
|
3204
3172
|
PipelineTypedDict,
|
|
@@ -3222,7 +3190,6 @@ if TYPE_CHECKING:
|
|
|
3222
3190
|
RoutesTypedDict,
|
|
3223
3191
|
)
|
|
3224
3192
|
from .routesroute import RoutesRoute, RoutesRouteTypedDict
|
|
3225
|
-
from .rulesetid import RulesetID, RulesetIDTypedDict
|
|
3226
3193
|
from .runnablejob import RunnableJob, RunnableJobTypedDict
|
|
3227
3194
|
from .runnablejobcollection import (
|
|
3228
3195
|
CaptureSettings,
|
|
@@ -3297,12 +3264,6 @@ if TYPE_CHECKING:
|
|
|
3297
3264
|
TeamAccessControlList,
|
|
3298
3265
|
TeamAccessControlListTypedDict,
|
|
3299
3266
|
)
|
|
3300
|
-
from .updateadminproductsmappingsbyproductandidop import (
|
|
3301
|
-
UpdateAdminProductsMappingsByProductAndIDRequest,
|
|
3302
|
-
UpdateAdminProductsMappingsByProductAndIDRequestTypedDict,
|
|
3303
|
-
UpdateAdminProductsMappingsByProductAndIDResponse,
|
|
3304
|
-
UpdateAdminProductsMappingsByProductAndIDResponseTypedDict,
|
|
3305
|
-
)
|
|
3306
3267
|
from .updateconfiggroupbyproductandidop import (
|
|
3307
3268
|
UpdateConfigGroupByProductAndIDRequest,
|
|
3308
3269
|
UpdateConfigGroupByProductAndIDRequestTypedDict,
|
|
@@ -3373,12 +3334,10 @@ if TYPE_CHECKING:
|
|
|
3373
3334
|
|
|
3374
3335
|
__all__ = [
|
|
3375
3336
|
"AISIEMEndpointPath",
|
|
3376
|
-
"Add",
|
|
3377
3337
|
"AddHecTokenRequest",
|
|
3378
3338
|
"AddHecTokenRequestMetadatum",
|
|
3379
3339
|
"AddHecTokenRequestMetadatumTypedDict",
|
|
3380
3340
|
"AddHecTokenRequestTypedDict",
|
|
3381
|
-
"AddTypedDict",
|
|
3382
3341
|
"AdditionalProperty",
|
|
3383
3342
|
"AdditionalPropertyTypedDict",
|
|
3384
3343
|
"Allow",
|
|
@@ -3419,10 +3378,15 @@ __all__ = [
|
|
|
3419
3378
|
"CommentTypedDict",
|
|
3420
3379
|
"Commit",
|
|
3421
3380
|
"CommitTypedDict",
|
|
3381
|
+
"Conf",
|
|
3382
|
+
"ConfTypedDict",
|
|
3422
3383
|
"Config",
|
|
3423
3384
|
"ConfigGroup",
|
|
3424
3385
|
"ConfigGroupCloud",
|
|
3425
3386
|
"ConfigGroupCloudTypedDict",
|
|
3387
|
+
"ConfigGroupEstimatedIngestRate",
|
|
3388
|
+
"ConfigGroupGit",
|
|
3389
|
+
"ConfigGroupGitTypedDict",
|
|
3426
3390
|
"ConfigGroupLookups",
|
|
3427
3391
|
"ConfigGroupLookupsLookup",
|
|
3428
3392
|
"ConfigGroupLookupsLookupTypedDict",
|
|
@@ -3433,14 +3397,6 @@ __all__ = [
|
|
|
3433
3397
|
"Container",
|
|
3434
3398
|
"ContainerMode",
|
|
3435
3399
|
"ContainerTypedDict",
|
|
3436
|
-
"CreateAdminProductsMappingsActivateByProductRequest",
|
|
3437
|
-
"CreateAdminProductsMappingsActivateByProductRequestTypedDict",
|
|
3438
|
-
"CreateAdminProductsMappingsActivateByProductResponse",
|
|
3439
|
-
"CreateAdminProductsMappingsActivateByProductResponseTypedDict",
|
|
3440
|
-
"CreateAdminProductsMappingsByProductRequest",
|
|
3441
|
-
"CreateAdminProductsMappingsByProductRequestTypedDict",
|
|
3442
|
-
"CreateAdminProductsMappingsByProductResponse",
|
|
3443
|
-
"CreateAdminProductsMappingsByProductResponseTypedDict",
|
|
3444
3400
|
"CreateConfigGroupByProductRequest",
|
|
3445
3401
|
"CreateConfigGroupByProductRequestTypedDict",
|
|
3446
3402
|
"CreateConfigGroupByProductResponse",
|
|
@@ -3501,10 +3457,6 @@ __all__ = [
|
|
|
3501
3457
|
"DatasetMetadataRunInfo",
|
|
3502
3458
|
"DatasetMetadataRunInfoTypedDict",
|
|
3503
3459
|
"DatasetMetadataTypedDict",
|
|
3504
|
-
"DeleteAdminProductsMappingsByProductAndIDRequest",
|
|
3505
|
-
"DeleteAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
3506
|
-
"DeleteAdminProductsMappingsByProductAndIDResponse",
|
|
3507
|
-
"DeleteAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
3508
3460
|
"DeleteConfigGroupByProductAndIDRequest",
|
|
3509
3461
|
"DeleteConfigGroupByProductAndIDRequestTypedDict",
|
|
3510
3462
|
"DeleteConfigGroupByProductAndIDResponse",
|
|
@@ -3560,9 +3512,6 @@ __all__ = [
|
|
|
3560
3512
|
"EndpointParam",
|
|
3561
3513
|
"EndpointParamTypedDict",
|
|
3562
3514
|
"EndpointType",
|
|
3563
|
-
"Error",
|
|
3564
|
-
"ErrorTypedDict",
|
|
3565
|
-
"EstimatedIngestRate",
|
|
3566
3515
|
"EventFormat",
|
|
3567
3516
|
"Executor",
|
|
3568
3517
|
"ExecutorSpecificSettings",
|
|
@@ -3578,20 +3527,8 @@ __all__ = [
|
|
|
3578
3527
|
"FileTypedDict",
|
|
3579
3528
|
"Firewall",
|
|
3580
3529
|
"FirewallTypedDict",
|
|
3581
|
-
"Function",
|
|
3582
|
-
"FunctionConf",
|
|
3583
|
-
"FunctionConfTypedDict",
|
|
3584
3530
|
"FunctionSpecificConfigs",
|
|
3585
3531
|
"FunctionSpecificConfigsTypedDict",
|
|
3586
|
-
"FunctionTypedDict",
|
|
3587
|
-
"GetAdminProductsMappingsByProductAndIDRequest",
|
|
3588
|
-
"GetAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
3589
|
-
"GetAdminProductsMappingsByProductAndIDResponse",
|
|
3590
|
-
"GetAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
3591
|
-
"GetAdminProductsMappingsByProductRequest",
|
|
3592
|
-
"GetAdminProductsMappingsByProductRequestTypedDict",
|
|
3593
|
-
"GetAdminProductsMappingsByProductResponse",
|
|
3594
|
-
"GetAdminProductsMappingsByProductResponseTypedDict",
|
|
3595
3532
|
"GetConfigGroupACLByProductAndIDRequest",
|
|
3596
3533
|
"GetConfigGroupACLByProductAndIDRequestTypedDict",
|
|
3597
3534
|
"GetConfigGroupACLByProductAndIDResponse",
|
|
@@ -3616,8 +3553,6 @@ __all__ = [
|
|
|
3616
3553
|
"GetCriblLakeDatasetByLakeIDRequestTypedDict",
|
|
3617
3554
|
"GetCriblLakeDatasetByLakeIDResponse",
|
|
3618
3555
|
"GetCriblLakeDatasetByLakeIDResponseTypedDict",
|
|
3619
|
-
"GetHealthInfoResponse",
|
|
3620
|
-
"GetHealthInfoResponseTypedDict",
|
|
3621
3556
|
"GetInputByIDRequest",
|
|
3622
3557
|
"GetInputByIDRequestTypedDict",
|
|
3623
3558
|
"GetInputByIDResponse",
|
|
@@ -3686,7 +3621,6 @@ __all__ = [
|
|
|
3686
3621
|
"GetVersionStatusRequestTypedDict",
|
|
3687
3622
|
"GetVersionStatusResponse",
|
|
3688
3623
|
"GetVersionStatusResponseTypedDict",
|
|
3689
|
-
"Git",
|
|
3690
3624
|
"GitCommitParams",
|
|
3691
3625
|
"GitCommitParamsTypedDict",
|
|
3692
3626
|
"GitCommitSummary",
|
|
@@ -3715,13 +3649,18 @@ __all__ = [
|
|
|
3715
3649
|
"GitShowResultTypedDict",
|
|
3716
3650
|
"GitStatusResult",
|
|
3717
3651
|
"GitStatusResultTypedDict",
|
|
3718
|
-
"
|
|
3652
|
+
"GroupCreateRequest",
|
|
3653
|
+
"GroupCreateRequestEstimatedIngestRate",
|
|
3654
|
+
"GroupCreateRequestGit",
|
|
3655
|
+
"GroupCreateRequestGitTypedDict",
|
|
3656
|
+
"GroupCreateRequestType",
|
|
3657
|
+
"GroupCreateRequestTypedDict",
|
|
3719
3658
|
"HBCriblInfo",
|
|
3720
3659
|
"HBCriblInfoTypedDict",
|
|
3721
3660
|
"HBLeaderInfo",
|
|
3722
3661
|
"HBLeaderInfoTypedDict",
|
|
3723
|
-
"
|
|
3724
|
-
"
|
|
3662
|
+
"HealthServerStatus",
|
|
3663
|
+
"HealthServerStatusTypedDict",
|
|
3725
3664
|
"HeartbeatMetadata",
|
|
3726
3665
|
"HeartbeatMetadataAws",
|
|
3727
3666
|
"HeartbeatMetadataAwsTypedDict",
|
|
@@ -3740,7 +3679,6 @@ __all__ = [
|
|
|
3740
3679
|
"HostInfoTypedDict",
|
|
3741
3680
|
"HostsFile",
|
|
3742
3681
|
"HostsFileTypedDict",
|
|
3743
|
-
"ID",
|
|
3744
3682
|
"IndexerDiscoveryConfigs",
|
|
3745
3683
|
"IndexerDiscoveryConfigsAuthTokenAuthenticationMethod",
|
|
3746
3684
|
"IndexerDiscoveryConfigsAuthenticationMethod",
|
|
@@ -5001,10 +4939,6 @@ __all__ = [
|
|
|
5001
4939
|
"LookupVersionsTypedDict",
|
|
5002
4940
|
"MTLSSettings",
|
|
5003
4941
|
"MTLSSettingsTypedDict",
|
|
5004
|
-
"MappingRuleset",
|
|
5005
|
-
"MappingRulesetConf",
|
|
5006
|
-
"MappingRulesetConfTypedDict",
|
|
5007
|
-
"MappingRulesetTypedDict",
|
|
5008
4942
|
"MappingType",
|
|
5009
4943
|
"MasterWorkerEntry",
|
|
5010
4944
|
"MasterWorkerEntryType",
|
|
@@ -6184,8 +6118,6 @@ __all__ = [
|
|
|
6184
6118
|
"PackUpgradeRequestTypedDict",
|
|
6185
6119
|
"PayloadFormat",
|
|
6186
6120
|
"Pipeline",
|
|
6187
|
-
"PipelineConf",
|
|
6188
|
-
"PipelineConfTypedDict",
|
|
6189
6121
|
"PipelineFunctionConf",
|
|
6190
6122
|
"PipelineFunctionConfTypedDict",
|
|
6191
6123
|
"PipelineGroups",
|
|
@@ -6226,8 +6158,6 @@ __all__ = [
|
|
|
6226
6158
|
"RoutesRoute",
|
|
6227
6159
|
"RoutesRouteTypedDict",
|
|
6228
6160
|
"RoutesTypedDict",
|
|
6229
|
-
"RulesetID",
|
|
6230
|
-
"RulesetIDTypedDict",
|
|
6231
6161
|
"RunnableJob",
|
|
6232
6162
|
"RunnableJobCollection",
|
|
6233
6163
|
"RunnableJobCollectionInput",
|
|
@@ -6314,10 +6244,6 @@ __all__ = [
|
|
|
6314
6244
|
"TimeRange",
|
|
6315
6245
|
"TimestampFormat",
|
|
6316
6246
|
"TimestampPrecision",
|
|
6317
|
-
"UpdateAdminProductsMappingsByProductAndIDRequest",
|
|
6318
|
-
"UpdateAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
6319
|
-
"UpdateAdminProductsMappingsByProductAndIDResponse",
|
|
6320
|
-
"UpdateAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
6321
6247
|
"UpdateConfigGroupByProductAndIDRequest",
|
|
6322
6248
|
"UpdateConfigGroupByProductAndIDRequestTypedDict",
|
|
6323
6249
|
"UpdateConfigGroupByProductAndIDResponse",
|
|
@@ -6389,25 +6315,17 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6389
6315
|
"Commit": ".commit",
|
|
6390
6316
|
"CommitTypedDict": ".commit",
|
|
6391
6317
|
"ConfigGroup": ".configgroup",
|
|
6318
|
+
"ConfigGroupEstimatedIngestRate": ".configgroup",
|
|
6319
|
+
"ConfigGroupGit": ".configgroup",
|
|
6320
|
+
"ConfigGroupGitTypedDict": ".configgroup",
|
|
6392
6321
|
"ConfigGroupType": ".configgroup",
|
|
6393
6322
|
"ConfigGroupTypedDict": ".configgroup",
|
|
6394
|
-
"EstimatedIngestRate": ".configgroup",
|
|
6395
|
-
"Git": ".configgroup",
|
|
6396
|
-
"GitTypedDict": ".configgroup",
|
|
6397
6323
|
"ConfigGroupCloud": ".configgroupcloud",
|
|
6398
6324
|
"ConfigGroupCloudTypedDict": ".configgroupcloud",
|
|
6399
6325
|
"ConfigGroupLookups": ".configgrouplookups",
|
|
6400
6326
|
"ConfigGroupLookupsLookup": ".configgrouplookups",
|
|
6401
6327
|
"ConfigGroupLookupsLookupTypedDict": ".configgrouplookups",
|
|
6402
6328
|
"ConfigGroupLookupsTypedDict": ".configgrouplookups",
|
|
6403
|
-
"CreateAdminProductsMappingsActivateByProductRequest": ".createadminproductsmappingsactivatebyproductop",
|
|
6404
|
-
"CreateAdminProductsMappingsActivateByProductRequestTypedDict": ".createadminproductsmappingsactivatebyproductop",
|
|
6405
|
-
"CreateAdminProductsMappingsActivateByProductResponse": ".createadminproductsmappingsactivatebyproductop",
|
|
6406
|
-
"CreateAdminProductsMappingsActivateByProductResponseTypedDict": ".createadminproductsmappingsactivatebyproductop",
|
|
6407
|
-
"CreateAdminProductsMappingsByProductRequest": ".createadminproductsmappingsbyproductop",
|
|
6408
|
-
"CreateAdminProductsMappingsByProductRequestTypedDict": ".createadminproductsmappingsbyproductop",
|
|
6409
|
-
"CreateAdminProductsMappingsByProductResponse": ".createadminproductsmappingsbyproductop",
|
|
6410
|
-
"CreateAdminProductsMappingsByProductResponseTypedDict": ".createadminproductsmappingsbyproductop",
|
|
6411
6329
|
"CreateConfigGroupByProductRequest": ".createconfiggroupbyproductop",
|
|
6412
6330
|
"CreateConfigGroupByProductRequestTypedDict": ".createconfiggroupbyproductop",
|
|
6413
6331
|
"CreateConfigGroupByProductResponse": ".createconfiggroupbyproductop",
|
|
@@ -6465,10 +6383,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6465
6383
|
"ScanMode": ".datasetmetadata",
|
|
6466
6384
|
"DatasetMetadataRunInfo": ".datasetmetadataruninfo",
|
|
6467
6385
|
"DatasetMetadataRunInfoTypedDict": ".datasetmetadataruninfo",
|
|
6468
|
-
"DeleteAdminProductsMappingsByProductAndIDRequest": ".deleteadminproductsmappingsbyproductandidop",
|
|
6469
|
-
"DeleteAdminProductsMappingsByProductAndIDRequestTypedDict": ".deleteadminproductsmappingsbyproductandidop",
|
|
6470
|
-
"DeleteAdminProductsMappingsByProductAndIDResponse": ".deleteadminproductsmappingsbyproductandidop",
|
|
6471
|
-
"DeleteAdminProductsMappingsByProductAndIDResponseTypedDict": ".deleteadminproductsmappingsbyproductandidop",
|
|
6472
6386
|
"DeleteConfigGroupByProductAndIDRequest": ".deleteconfiggroupbyproductandidop",
|
|
6473
6387
|
"DeleteConfigGroupByProductAndIDRequestTypedDict": ".deleteconfiggroupbyproductandidop",
|
|
6474
6388
|
"DeleteConfigGroupByProductAndIDResponse": ".deleteconfiggroupbyproductandidop",
|
|
@@ -6525,16 +6439,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6525
6439
|
"DistributedSummaryTypedDict": ".distributedsummary",
|
|
6526
6440
|
"DistributedSummaryWorkers": ".distributedsummary",
|
|
6527
6441
|
"DistributedSummaryWorkersTypedDict": ".distributedsummary",
|
|
6528
|
-
"Error": ".error",
|
|
6529
|
-
"ErrorTypedDict": ".error",
|
|
6530
|
-
"GetAdminProductsMappingsByProductAndIDRequest": ".getadminproductsmappingsbyproductandidop",
|
|
6531
|
-
"GetAdminProductsMappingsByProductAndIDRequestTypedDict": ".getadminproductsmappingsbyproductandidop",
|
|
6532
|
-
"GetAdminProductsMappingsByProductAndIDResponse": ".getadminproductsmappingsbyproductandidop",
|
|
6533
|
-
"GetAdminProductsMappingsByProductAndIDResponseTypedDict": ".getadminproductsmappingsbyproductandidop",
|
|
6534
|
-
"GetAdminProductsMappingsByProductRequest": ".getadminproductsmappingsbyproductop",
|
|
6535
|
-
"GetAdminProductsMappingsByProductRequestTypedDict": ".getadminproductsmappingsbyproductop",
|
|
6536
|
-
"GetAdminProductsMappingsByProductResponse": ".getadminproductsmappingsbyproductop",
|
|
6537
|
-
"GetAdminProductsMappingsByProductResponseTypedDict": ".getadminproductsmappingsbyproductop",
|
|
6538
6442
|
"GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
|
|
6539
6443
|
"GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
|
|
6540
6444
|
"GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
|
|
@@ -6559,8 +6463,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6559
6463
|
"GetCriblLakeDatasetByLakeIDRequestTypedDict": ".getcribllakedatasetbylakeidop",
|
|
6560
6464
|
"GetCriblLakeDatasetByLakeIDResponse": ".getcribllakedatasetbylakeidop",
|
|
6561
6465
|
"GetCriblLakeDatasetByLakeIDResponseTypedDict": ".getcribllakedatasetbylakeidop",
|
|
6562
|
-
"GetHealthInfoResponse": ".gethealthinfoop",
|
|
6563
|
-
"GetHealthInfoResponseTypedDict": ".gethealthinfoop",
|
|
6564
6466
|
"GetInputByIDRequest": ".getinputbyidop",
|
|
6565
6467
|
"GetInputByIDRequestTypedDict": ".getinputbyidop",
|
|
6566
6468
|
"GetInputByIDResponse": ".getinputbyidop",
|
|
@@ -6670,6 +6572,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6670
6572
|
"GitStatusResultTypedDict": ".gitstatusresult",
|
|
6671
6573
|
"Renamed": ".gitstatusresult",
|
|
6672
6574
|
"RenamedTypedDict": ".gitstatusresult",
|
|
6575
|
+
"GroupCreateRequest": ".groupcreaterequest",
|
|
6576
|
+
"GroupCreateRequestEstimatedIngestRate": ".groupcreaterequest",
|
|
6577
|
+
"GroupCreateRequestGit": ".groupcreaterequest",
|
|
6578
|
+
"GroupCreateRequestGitTypedDict": ".groupcreaterequest",
|
|
6579
|
+
"GroupCreateRequestType": ".groupcreaterequest",
|
|
6580
|
+
"GroupCreateRequestTypedDict": ".groupcreaterequest",
|
|
6673
6581
|
"Config": ".hbcriblinfo",
|
|
6674
6582
|
"ConfigTypedDict": ".hbcriblinfo",
|
|
6675
6583
|
"DistMode": ".hbcriblinfo",
|
|
@@ -6677,10 +6585,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6677
6585
|
"HBCriblInfoTypedDict": ".hbcriblinfo",
|
|
6678
6586
|
"HBLeaderInfo": ".hbleaderinfo",
|
|
6679
6587
|
"HBLeaderInfoTypedDict": ".hbleaderinfo",
|
|
6680
|
-
"
|
|
6681
|
-
"
|
|
6682
|
-
"Role": ".
|
|
6683
|
-
"Status": ".
|
|
6588
|
+
"HealthServerStatus": ".healthserverstatus",
|
|
6589
|
+
"HealthServerStatusTypedDict": ".healthserverstatus",
|
|
6590
|
+
"Role": ".healthserverstatus",
|
|
6591
|
+
"Status": ".healthserverstatus",
|
|
6684
6592
|
"HeartbeatMetadata": ".heartbeatmetadata",
|
|
6685
6593
|
"HeartbeatMetadataAws": ".heartbeatmetadata",
|
|
6686
6594
|
"HeartbeatMetadataAwsTypedDict": ".heartbeatmetadata",
|
|
@@ -7998,17 +7906,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7998
7906
|
"LoginInfoTypedDict": ".logininfo",
|
|
7999
7907
|
"LookupVersions": ".lookupversions",
|
|
8000
7908
|
"LookupVersionsTypedDict": ".lookupversions",
|
|
8001
|
-
"Add": ".mappingruleset",
|
|
8002
|
-
"AddTypedDict": ".mappingruleset",
|
|
8003
|
-
"Function": ".mappingruleset",
|
|
8004
|
-
"FunctionConf": ".mappingruleset",
|
|
8005
|
-
"FunctionConfTypedDict": ".mappingruleset",
|
|
8006
|
-
"FunctionTypedDict": ".mappingruleset",
|
|
8007
|
-
"ID": ".mappingruleset",
|
|
8008
|
-
"MappingRuleset": ".mappingruleset",
|
|
8009
|
-
"MappingRulesetConf": ".mappingruleset",
|
|
8010
|
-
"MappingRulesetConfTypedDict": ".mappingruleset",
|
|
8011
|
-
"MappingRulesetTypedDict": ".mappingruleset",
|
|
8012
7909
|
"LastMetrics": ".masterworkerentry",
|
|
8013
7910
|
"LastMetricsTypedDict": ".masterworkerentry",
|
|
8014
7911
|
"MasterWorkerEntry": ".masterworkerentry",
|
|
@@ -9227,9 +9124,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9227
9124
|
"PackRequestBodyUnionTypedDict": ".packrequestbody_union",
|
|
9228
9125
|
"PackUpgradeRequest": ".packupgraderequest",
|
|
9229
9126
|
"PackUpgradeRequestTypedDict": ".packupgraderequest",
|
|
9127
|
+
"Conf": ".pipeline",
|
|
9128
|
+
"ConfTypedDict": ".pipeline",
|
|
9230
9129
|
"Pipeline": ".pipeline",
|
|
9231
|
-
"PipelineConf": ".pipeline",
|
|
9232
|
-
"PipelineConfTypedDict": ".pipeline",
|
|
9233
9130
|
"PipelineGroups": ".pipeline",
|
|
9234
9131
|
"PipelineGroupsTypedDict": ".pipeline",
|
|
9235
9132
|
"PipelineTypedDict": ".pipeline",
|
|
@@ -9251,8 +9148,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9251
9148
|
"RoutesTypedDict": ".routes",
|
|
9252
9149
|
"RoutesRoute": ".routesroute",
|
|
9253
9150
|
"RoutesRouteTypedDict": ".routesroute",
|
|
9254
|
-
"RulesetID": ".rulesetid",
|
|
9255
|
-
"RulesetIDTypedDict": ".rulesetid",
|
|
9256
9151
|
"RunnableJob": ".runnablejob",
|
|
9257
9152
|
"RunnableJobTypedDict": ".runnablejob",
|
|
9258
9153
|
"CaptureSettings": ".runnablejobcollection",
|
|
@@ -9322,10 +9217,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9322
9217
|
"SecurityTypedDict": ".security",
|
|
9323
9218
|
"TeamAccessControlList": ".teamaccesscontrollist",
|
|
9324
9219
|
"TeamAccessControlListTypedDict": ".teamaccesscontrollist",
|
|
9325
|
-
"UpdateAdminProductsMappingsByProductAndIDRequest": ".updateadminproductsmappingsbyproductandidop",
|
|
9326
|
-
"UpdateAdminProductsMappingsByProductAndIDRequestTypedDict": ".updateadminproductsmappingsbyproductandidop",
|
|
9327
|
-
"UpdateAdminProductsMappingsByProductAndIDResponse": ".updateadminproductsmappingsbyproductandidop",
|
|
9328
|
-
"UpdateAdminProductsMappingsByProductAndIDResponseTypedDict": ".updateadminproductsmappingsbyproductandidop",
|
|
9329
9220
|
"UpdateConfigGroupByProductAndIDRequest": ".updateconfiggroupbyproductandidop",
|
|
9330
9221
|
"UpdateConfigGroupByProductAndIDRequestTypedDict": ".updateconfiggroupbyproductandidop",
|
|
9331
9222
|
"UpdateConfigGroupByProductAndIDResponse": ".updateconfiggroupbyproductandidop",
|
|
@@ -3,18 +3,15 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from cribl_control_plane.types import BaseModel
|
|
5
5
|
import pydantic
|
|
6
|
-
from
|
|
7
|
-
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
8
7
|
|
|
9
8
|
|
|
10
9
|
class AuthTokenTypedDict(TypedDict):
|
|
10
|
+
force_password_change: bool
|
|
11
11
|
token: str
|
|
12
|
-
force_password_change: NotRequired[bool]
|
|
13
12
|
|
|
14
13
|
|
|
15
14
|
class AuthToken(BaseModel):
|
|
16
|
-
|
|
15
|
+
force_password_change: Annotated[bool, pydantic.Field(alias="forcePasswordChange")]
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
Optional[bool], pydantic.Field(alias="forcePasswordChange")
|
|
20
|
-
] = None
|
|
17
|
+
token: str
|
|
@@ -14,7 +14,7 @@ from typing import List, Optional
|
|
|
14
14
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
class
|
|
17
|
+
class ConfigGroupEstimatedIngestRate(int, Enum, metaclass=utils.OpenEnumMeta):
|
|
18
18
|
r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
|
|
19
19
|
|
|
20
20
|
# 12 MB/sec
|
|
@@ -37,13 +37,13 @@ class EstimatedIngestRate(int, Enum, metaclass=utils.OpenEnumMeta):
|
|
|
37
37
|
RATE180_MB_PER_SEC = 15360
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
class
|
|
40
|
+
class ConfigGroupGitTypedDict(TypedDict):
|
|
41
41
|
commit: NotRequired[str]
|
|
42
42
|
local_changes: NotRequired[float]
|
|
43
43
|
log: NotRequired[List[CommitTypedDict]]
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
class
|
|
46
|
+
class ConfigGroupGit(BaseModel):
|
|
47
47
|
commit: Optional[str] = None
|
|
48
48
|
|
|
49
49
|
local_changes: Annotated[Optional[float], pydantic.Field(alias="localChanges")] = (
|
|
@@ -63,9 +63,9 @@ class ConfigGroupTypedDict(TypedDict):
|
|
|
63
63
|
config_version: NotRequired[str]
|
|
64
64
|
deploying_worker_count: NotRequired[float]
|
|
65
65
|
description: NotRequired[str]
|
|
66
|
-
estimated_ingest_rate: NotRequired[
|
|
66
|
+
estimated_ingest_rate: NotRequired[ConfigGroupEstimatedIngestRate]
|
|
67
67
|
r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
|
|
68
|
-
git: NotRequired[
|
|
68
|
+
git: NotRequired[ConfigGroupGitTypedDict]
|
|
69
69
|
incompatible_worker_count: NotRequired[float]
|
|
70
70
|
inherits: NotRequired[str]
|
|
71
71
|
is_fleet: NotRequired[bool]
|
|
@@ -100,13 +100,14 @@ class ConfigGroup(BaseModel):
|
|
|
100
100
|
|
|
101
101
|
estimated_ingest_rate: Annotated[
|
|
102
102
|
Annotated[
|
|
103
|
-
Optional[
|
|
103
|
+
Optional[ConfigGroupEstimatedIngestRate],
|
|
104
|
+
PlainValidator(validate_open_enum(True)),
|
|
104
105
|
],
|
|
105
106
|
pydantic.Field(alias="estimatedIngestRate"),
|
|
106
107
|
] = None
|
|
107
108
|
r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
|
|
108
109
|
|
|
109
|
-
git: Optional[
|
|
110
|
+
git: Optional[ConfigGroupGit] = None
|
|
110
111
|
|
|
111
112
|
incompatible_worker_count: Annotated[
|
|
112
113
|
Optional[float], pydantic.Field(alias="incompatibleWorkerCount")
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from .configgroup import ConfigGroup, ConfigGroupTypedDict
|
|
5
|
+
from .groupcreaterequest import GroupCreateRequest, GroupCreateRequestTypedDict
|
|
5
6
|
from .productscore import ProductsCore
|
|
6
7
|
from cribl_control_plane.types import BaseModel
|
|
7
8
|
from cribl_control_plane.utils import (
|
|
@@ -18,8 +19,8 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
18
19
|
class CreateConfigGroupByProductRequestTypedDict(TypedDict):
|
|
19
20
|
product: ProductsCore
|
|
20
21
|
r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
21
|
-
|
|
22
|
-
r"""
|
|
22
|
+
group_create_request: GroupCreateRequestTypedDict
|
|
23
|
+
r"""GroupCreateRequest object"""
|
|
23
24
|
|
|
24
25
|
|
|
25
26
|
class CreateConfigGroupByProductRequest(BaseModel):
|
|
@@ -29,11 +30,11 @@ class CreateConfigGroupByProductRequest(BaseModel):
|
|
|
29
30
|
]
|
|
30
31
|
r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
|
|
31
32
|
|
|
32
|
-
|
|
33
|
-
|
|
33
|
+
group_create_request: Annotated[
|
|
34
|
+
GroupCreateRequest,
|
|
34
35
|
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
|
35
36
|
]
|
|
36
|
-
r"""
|
|
37
|
+
r"""GroupCreateRequest object"""
|
|
37
38
|
|
|
38
39
|
|
|
39
40
|
class CreateConfigGroupByProductResponseTypedDict(TypedDict):
|
|
@@ -11,7 +11,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
11
11
|
|
|
12
12
|
class CreateRoutesAppendByIDRequestTypedDict(TypedDict):
|
|
13
13
|
id: str
|
|
14
|
-
r"""The <code>id</code> of the Routing table to
|
|
14
|
+
r"""The <code>id</code> of the Routing table to add the Route to. The supported value is <code>default</code>."""
|
|
15
15
|
request_body: List[RouteConfTypedDict]
|
|
16
16
|
r"""RouteDefinitions object"""
|
|
17
17
|
|
|
@@ -20,7 +20,7 @@ class CreateRoutesAppendByIDRequest(BaseModel):
|
|
|
20
20
|
id: Annotated[
|
|
21
21
|
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
22
22
|
]
|
|
23
|
-
r"""The <code>id</code> of the Routing table to
|
|
23
|
+
r"""The <code>id</code> of the Routing table to add the Route to. The supported value is <code>default</code>."""
|
|
24
24
|
|
|
25
25
|
request_body: Annotated[
|
|
26
26
|
List[RouteConf],
|
|
@@ -20,7 +20,7 @@ class DeleteOutputPqByIDRequest(BaseModel):
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
class DeleteOutputPqByIDResponseTypedDict(TypedDict):
|
|
23
|
-
r"""
|
|
23
|
+
r"""A list of job ids for the background job that clears the persistent queue"""
|
|
24
24
|
|
|
25
25
|
count: NotRequired[int]
|
|
26
26
|
r"""number of items present in the items array"""
|
|
@@ -28,7 +28,7 @@ class DeleteOutputPqByIDResponseTypedDict(TypedDict):
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
class DeleteOutputPqByIDResponse(BaseModel):
|
|
31
|
-
r"""
|
|
31
|
+
r"""A list of job ids for the background job that clears the persistent queue"""
|
|
32
32
|
|
|
33
33
|
count: Optional[int] = None
|
|
34
34
|
r"""number of items present in the items array"""
|