cribl-control-plane 0.2.0b8__py3-none-any.whl → 0.2.1rc1__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 +4 -4
- cribl_control_plane/groups_sdk.py +3 -0
- cribl_control_plane/mappings.py +1185 -0
- cribl_control_plane/models/__init__.py +153 -9
- 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/getadminproductsmappingsbyproductandidop.py +51 -0
- cribl_control_plane/models/getadminproductsmappingsbyproductop.py +44 -0
- cribl_control_plane/models/mappingruleset.py +95 -0
- cribl_control_plane/models/nodeprovidedinfo.py +4 -0
- cribl_control_plane/models/outpostnodeinfo.py +16 -0
- cribl_control_plane/models/output.py +11 -11
- cribl_control_plane/models/outputdatabricks.py +173 -53
- cribl_control_plane/models/pipeline.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.0b8.dist-info → cribl_control_plane-0.2.1rc1.dist-info}/METADATA +24 -6
- {cribl_control_plane-0.2.0b8.dist-info → cribl_control_plane-0.2.1rc1.dist-info}/RECORD +21 -11
- {cribl_control_plane-0.2.0b8.dist-info → cribl_control_plane-0.2.1rc1.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,
|
|
@@ -185,6 +203,18 @@ if TYPE_CHECKING:
|
|
|
185
203
|
DistributedSummaryWorkersTypedDict,
|
|
186
204
|
)
|
|
187
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
|
+
)
|
|
188
218
|
from .getconfiggroupaclbyproductandidop import (
|
|
189
219
|
GetConfigGroupACLByProductAndIDRequest,
|
|
190
220
|
GetConfigGroupACLByProductAndIDRequestTypedDict,
|
|
@@ -1804,6 +1834,19 @@ if TYPE_CHECKING:
|
|
|
1804
1834
|
from .listroutesop import ListRoutesResponse, ListRoutesResponseTypedDict
|
|
1805
1835
|
from .logininfo import LoginInfo, LoginInfoTypedDict
|
|
1806
1836
|
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
|
+
)
|
|
1807
1850
|
from .masterworkerentry import (
|
|
1808
1851
|
LastMetrics,
|
|
1809
1852
|
LastMetricsTypedDict,
|
|
@@ -1838,6 +1881,7 @@ if TYPE_CHECKING:
|
|
|
1838
1881
|
from .nodeskippedupgradestatus import NodeSkippedUpgradeStatus
|
|
1839
1882
|
from .nodeupgradestate import NodeUpgradeState
|
|
1840
1883
|
from .nodeupgradestatus import NodeUpgradeStatus, NodeUpgradeStatusTypedDict
|
|
1884
|
+
from .outpostnodeinfo import OutpostNodeInfo, OutpostNodeInfoTypedDict
|
|
1841
1885
|
from .output import Output, OutputTypedDict
|
|
1842
1886
|
from .outputazureblob import (
|
|
1843
1887
|
BlobAccessTier,
|
|
@@ -2098,10 +2142,15 @@ if TYPE_CHECKING:
|
|
|
2098
2142
|
)
|
|
2099
2143
|
from .outputdatabricks import (
|
|
2100
2144
|
OutputDatabricks,
|
|
2101
|
-
OutputDatabricksAuthenticationMethod,
|
|
2102
2145
|
OutputDatabricksBackpressureBehavior,
|
|
2146
|
+
OutputDatabricksCompression,
|
|
2147
|
+
OutputDatabricksCompressionLevel,
|
|
2103
2148
|
OutputDatabricksDataFormat,
|
|
2149
|
+
OutputDatabricksDataPageVersion,
|
|
2104
2150
|
OutputDatabricksDiskSpaceProtection,
|
|
2151
|
+
OutputDatabricksKeyValueMetadatum,
|
|
2152
|
+
OutputDatabricksKeyValueMetadatumTypedDict,
|
|
2153
|
+
OutputDatabricksParquetVersion,
|
|
2105
2154
|
OutputDatabricksType,
|
|
2106
2155
|
OutputDatabricksTypedDict,
|
|
2107
2156
|
)
|
|
@@ -3147,9 +3196,9 @@ if TYPE_CHECKING:
|
|
|
3147
3196
|
)
|
|
3148
3197
|
from .packupgraderequest import PackUpgradeRequest, PackUpgradeRequestTypedDict
|
|
3149
3198
|
from .pipeline import (
|
|
3150
|
-
Conf,
|
|
3151
|
-
ConfTypedDict,
|
|
3152
3199
|
Pipeline,
|
|
3200
|
+
PipelineConf,
|
|
3201
|
+
PipelineConfTypedDict,
|
|
3153
3202
|
PipelineGroups,
|
|
3154
3203
|
PipelineGroupsTypedDict,
|
|
3155
3204
|
PipelineTypedDict,
|
|
@@ -3173,6 +3222,7 @@ if TYPE_CHECKING:
|
|
|
3173
3222
|
RoutesTypedDict,
|
|
3174
3223
|
)
|
|
3175
3224
|
from .routesroute import RoutesRoute, RoutesRouteTypedDict
|
|
3225
|
+
from .rulesetid import RulesetID, RulesetIDTypedDict
|
|
3176
3226
|
from .runnablejob import RunnableJob, RunnableJobTypedDict
|
|
3177
3227
|
from .runnablejobcollection import (
|
|
3178
3228
|
CaptureSettings,
|
|
@@ -3247,6 +3297,12 @@ if TYPE_CHECKING:
|
|
|
3247
3297
|
TeamAccessControlList,
|
|
3248
3298
|
TeamAccessControlListTypedDict,
|
|
3249
3299
|
)
|
|
3300
|
+
from .updateadminproductsmappingsbyproductandidop import (
|
|
3301
|
+
UpdateAdminProductsMappingsByProductAndIDRequest,
|
|
3302
|
+
UpdateAdminProductsMappingsByProductAndIDRequestTypedDict,
|
|
3303
|
+
UpdateAdminProductsMappingsByProductAndIDResponse,
|
|
3304
|
+
UpdateAdminProductsMappingsByProductAndIDResponseTypedDict,
|
|
3305
|
+
)
|
|
3250
3306
|
from .updateconfiggroupbyproductandidop import (
|
|
3251
3307
|
UpdateConfigGroupByProductAndIDRequest,
|
|
3252
3308
|
UpdateConfigGroupByProductAndIDRequestTypedDict,
|
|
@@ -3317,10 +3373,12 @@ if TYPE_CHECKING:
|
|
|
3317
3373
|
|
|
3318
3374
|
__all__ = [
|
|
3319
3375
|
"AISIEMEndpointPath",
|
|
3376
|
+
"Add",
|
|
3320
3377
|
"AddHecTokenRequest",
|
|
3321
3378
|
"AddHecTokenRequestMetadatum",
|
|
3322
3379
|
"AddHecTokenRequestMetadatumTypedDict",
|
|
3323
3380
|
"AddHecTokenRequestTypedDict",
|
|
3381
|
+
"AddTypedDict",
|
|
3324
3382
|
"AdditionalProperty",
|
|
3325
3383
|
"AdditionalPropertyTypedDict",
|
|
3326
3384
|
"Allow",
|
|
@@ -3361,8 +3419,6 @@ __all__ = [
|
|
|
3361
3419
|
"CommentTypedDict",
|
|
3362
3420
|
"Commit",
|
|
3363
3421
|
"CommitTypedDict",
|
|
3364
|
-
"Conf",
|
|
3365
|
-
"ConfTypedDict",
|
|
3366
3422
|
"Config",
|
|
3367
3423
|
"ConfigGroup",
|
|
3368
3424
|
"ConfigGroupCloud",
|
|
@@ -3377,6 +3433,14 @@ __all__ = [
|
|
|
3377
3433
|
"Container",
|
|
3378
3434
|
"ContainerMode",
|
|
3379
3435
|
"ContainerTypedDict",
|
|
3436
|
+
"CreateAdminProductsMappingsActivateByProductRequest",
|
|
3437
|
+
"CreateAdminProductsMappingsActivateByProductRequestTypedDict",
|
|
3438
|
+
"CreateAdminProductsMappingsActivateByProductResponse",
|
|
3439
|
+
"CreateAdminProductsMappingsActivateByProductResponseTypedDict",
|
|
3440
|
+
"CreateAdminProductsMappingsByProductRequest",
|
|
3441
|
+
"CreateAdminProductsMappingsByProductRequestTypedDict",
|
|
3442
|
+
"CreateAdminProductsMappingsByProductResponse",
|
|
3443
|
+
"CreateAdminProductsMappingsByProductResponseTypedDict",
|
|
3380
3444
|
"CreateConfigGroupByProductRequest",
|
|
3381
3445
|
"CreateConfigGroupByProductRequestTypedDict",
|
|
3382
3446
|
"CreateConfigGroupByProductResponse",
|
|
@@ -3437,6 +3501,10 @@ __all__ = [
|
|
|
3437
3501
|
"DatasetMetadataRunInfo",
|
|
3438
3502
|
"DatasetMetadataRunInfoTypedDict",
|
|
3439
3503
|
"DatasetMetadataTypedDict",
|
|
3504
|
+
"DeleteAdminProductsMappingsByProductAndIDRequest",
|
|
3505
|
+
"DeleteAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
3506
|
+
"DeleteAdminProductsMappingsByProductAndIDResponse",
|
|
3507
|
+
"DeleteAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
3440
3508
|
"DeleteConfigGroupByProductAndIDRequest",
|
|
3441
3509
|
"DeleteConfigGroupByProductAndIDRequestTypedDict",
|
|
3442
3510
|
"DeleteConfigGroupByProductAndIDResponse",
|
|
@@ -3510,8 +3578,20 @@ __all__ = [
|
|
|
3510
3578
|
"FileTypedDict",
|
|
3511
3579
|
"Firewall",
|
|
3512
3580
|
"FirewallTypedDict",
|
|
3581
|
+
"Function",
|
|
3582
|
+
"FunctionConf",
|
|
3583
|
+
"FunctionConfTypedDict",
|
|
3513
3584
|
"FunctionSpecificConfigs",
|
|
3514
3585
|
"FunctionSpecificConfigsTypedDict",
|
|
3586
|
+
"FunctionTypedDict",
|
|
3587
|
+
"GetAdminProductsMappingsByProductAndIDRequest",
|
|
3588
|
+
"GetAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
3589
|
+
"GetAdminProductsMappingsByProductAndIDResponse",
|
|
3590
|
+
"GetAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
3591
|
+
"GetAdminProductsMappingsByProductRequest",
|
|
3592
|
+
"GetAdminProductsMappingsByProductRequestTypedDict",
|
|
3593
|
+
"GetAdminProductsMappingsByProductResponse",
|
|
3594
|
+
"GetAdminProductsMappingsByProductResponseTypedDict",
|
|
3515
3595
|
"GetConfigGroupACLByProductAndIDRequest",
|
|
3516
3596
|
"GetConfigGroupACLByProductAndIDRequestTypedDict",
|
|
3517
3597
|
"GetConfigGroupACLByProductAndIDResponse",
|
|
@@ -3660,6 +3740,7 @@ __all__ = [
|
|
|
3660
3740
|
"HostInfoTypedDict",
|
|
3661
3741
|
"HostsFile",
|
|
3662
3742
|
"HostsFileTypedDict",
|
|
3743
|
+
"ID",
|
|
3663
3744
|
"IndexerDiscoveryConfigs",
|
|
3664
3745
|
"IndexerDiscoveryConfigsAuthTokenAuthenticationMethod",
|
|
3665
3746
|
"IndexerDiscoveryConfigsAuthenticationMethod",
|
|
@@ -4920,6 +5001,10 @@ __all__ = [
|
|
|
4920
5001
|
"LookupVersionsTypedDict",
|
|
4921
5002
|
"MTLSSettings",
|
|
4922
5003
|
"MTLSSettingsTypedDict",
|
|
5004
|
+
"MappingRuleset",
|
|
5005
|
+
"MappingRulesetConf",
|
|
5006
|
+
"MappingRulesetConfTypedDict",
|
|
5007
|
+
"MappingRulesetTypedDict",
|
|
4923
5008
|
"MappingType",
|
|
4924
5009
|
"MasterWorkerEntry",
|
|
4925
5010
|
"MasterWorkerEntryType",
|
|
@@ -4954,6 +5039,8 @@ __all__ = [
|
|
|
4954
5039
|
"OldModeTypedDict",
|
|
4955
5040
|
"Os",
|
|
4956
5041
|
"OsTypedDict",
|
|
5042
|
+
"OutpostNodeInfo",
|
|
5043
|
+
"OutpostNodeInfoTypedDict",
|
|
4957
5044
|
"Output",
|
|
4958
5045
|
"OutputAzureBlob",
|
|
4959
5046
|
"OutputAzureBlobAuthenticationMethod",
|
|
@@ -5173,10 +5260,15 @@ __all__ = [
|
|
|
5173
5260
|
"OutputCrowdstrikeNextGenSiemType",
|
|
5174
5261
|
"OutputCrowdstrikeNextGenSiemTypedDict",
|
|
5175
5262
|
"OutputDatabricks",
|
|
5176
|
-
"OutputDatabricksAuthenticationMethod",
|
|
5177
5263
|
"OutputDatabricksBackpressureBehavior",
|
|
5264
|
+
"OutputDatabricksCompression",
|
|
5265
|
+
"OutputDatabricksCompressionLevel",
|
|
5178
5266
|
"OutputDatabricksDataFormat",
|
|
5267
|
+
"OutputDatabricksDataPageVersion",
|
|
5179
5268
|
"OutputDatabricksDiskSpaceProtection",
|
|
5269
|
+
"OutputDatabricksKeyValueMetadatum",
|
|
5270
|
+
"OutputDatabricksKeyValueMetadatumTypedDict",
|
|
5271
|
+
"OutputDatabricksParquetVersion",
|
|
5180
5272
|
"OutputDatabricksType",
|
|
5181
5273
|
"OutputDatabricksTypedDict",
|
|
5182
5274
|
"OutputDatadog",
|
|
@@ -6092,6 +6184,8 @@ __all__ = [
|
|
|
6092
6184
|
"PackUpgradeRequestTypedDict",
|
|
6093
6185
|
"PayloadFormat",
|
|
6094
6186
|
"Pipeline",
|
|
6187
|
+
"PipelineConf",
|
|
6188
|
+
"PipelineConfTypedDict",
|
|
6095
6189
|
"PipelineFunctionConf",
|
|
6096
6190
|
"PipelineFunctionConfTypedDict",
|
|
6097
6191
|
"PipelineGroups",
|
|
@@ -6132,6 +6226,8 @@ __all__ = [
|
|
|
6132
6226
|
"RoutesRoute",
|
|
6133
6227
|
"RoutesRouteTypedDict",
|
|
6134
6228
|
"RoutesTypedDict",
|
|
6229
|
+
"RulesetID",
|
|
6230
|
+
"RulesetIDTypedDict",
|
|
6135
6231
|
"RunnableJob",
|
|
6136
6232
|
"RunnableJobCollection",
|
|
6137
6233
|
"RunnableJobCollectionInput",
|
|
@@ -6218,6 +6314,10 @@ __all__ = [
|
|
|
6218
6314
|
"TimeRange",
|
|
6219
6315
|
"TimestampFormat",
|
|
6220
6316
|
"TimestampPrecision",
|
|
6317
|
+
"UpdateAdminProductsMappingsByProductAndIDRequest",
|
|
6318
|
+
"UpdateAdminProductsMappingsByProductAndIDRequestTypedDict",
|
|
6319
|
+
"UpdateAdminProductsMappingsByProductAndIDResponse",
|
|
6320
|
+
"UpdateAdminProductsMappingsByProductAndIDResponseTypedDict",
|
|
6221
6321
|
"UpdateConfigGroupByProductAndIDRequest",
|
|
6222
6322
|
"UpdateConfigGroupByProductAndIDRequestTypedDict",
|
|
6223
6323
|
"UpdateConfigGroupByProductAndIDResponse",
|
|
@@ -6300,6 +6400,14 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6300
6400
|
"ConfigGroupLookupsLookup": ".configgrouplookups",
|
|
6301
6401
|
"ConfigGroupLookupsLookupTypedDict": ".configgrouplookups",
|
|
6302
6402
|
"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",
|
|
6303
6411
|
"CreateConfigGroupByProductRequest": ".createconfiggroupbyproductop",
|
|
6304
6412
|
"CreateConfigGroupByProductRequestTypedDict": ".createconfiggroupbyproductop",
|
|
6305
6413
|
"CreateConfigGroupByProductResponse": ".createconfiggroupbyproductop",
|
|
@@ -6357,6 +6465,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6357
6465
|
"ScanMode": ".datasetmetadata",
|
|
6358
6466
|
"DatasetMetadataRunInfo": ".datasetmetadataruninfo",
|
|
6359
6467
|
"DatasetMetadataRunInfoTypedDict": ".datasetmetadataruninfo",
|
|
6468
|
+
"DeleteAdminProductsMappingsByProductAndIDRequest": ".deleteadminproductsmappingsbyproductandidop",
|
|
6469
|
+
"DeleteAdminProductsMappingsByProductAndIDRequestTypedDict": ".deleteadminproductsmappingsbyproductandidop",
|
|
6470
|
+
"DeleteAdminProductsMappingsByProductAndIDResponse": ".deleteadminproductsmappingsbyproductandidop",
|
|
6471
|
+
"DeleteAdminProductsMappingsByProductAndIDResponseTypedDict": ".deleteadminproductsmappingsbyproductandidop",
|
|
6360
6472
|
"DeleteConfigGroupByProductAndIDRequest": ".deleteconfiggroupbyproductandidop",
|
|
6361
6473
|
"DeleteConfigGroupByProductAndIDRequestTypedDict": ".deleteconfiggroupbyproductandidop",
|
|
6362
6474
|
"DeleteConfigGroupByProductAndIDResponse": ".deleteconfiggroupbyproductandidop",
|
|
@@ -6415,6 +6527,14 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6415
6527
|
"DistributedSummaryWorkersTypedDict": ".distributedsummary",
|
|
6416
6528
|
"Error": ".error",
|
|
6417
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",
|
|
6418
6538
|
"GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
|
|
6419
6539
|
"GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
|
|
6420
6540
|
"GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
|
|
@@ -7878,6 +7998,17 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7878
7998
|
"LoginInfoTypedDict": ".logininfo",
|
|
7879
7999
|
"LookupVersions": ".lookupversions",
|
|
7880
8000
|
"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",
|
|
7881
8012
|
"LastMetrics": ".masterworkerentry",
|
|
7882
8013
|
"LastMetricsTypedDict": ".masterworkerentry",
|
|
7883
8014
|
"MasterWorkerEntry": ".masterworkerentry",
|
|
@@ -7909,6 +8040,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7909
8040
|
"NodeUpgradeState": ".nodeupgradestate",
|
|
7910
8041
|
"NodeUpgradeStatus": ".nodeupgradestatus",
|
|
7911
8042
|
"NodeUpgradeStatusTypedDict": ".nodeupgradestatus",
|
|
8043
|
+
"OutpostNodeInfo": ".outpostnodeinfo",
|
|
8044
|
+
"OutpostNodeInfoTypedDict": ".outpostnodeinfo",
|
|
7912
8045
|
"Output": ".output",
|
|
7913
8046
|
"OutputTypedDict": ".output",
|
|
7914
8047
|
"BlobAccessTier": ".outputazureblob",
|
|
@@ -8145,10 +8278,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8145
8278
|
"OutputCrowdstrikeNextGenSiemType": ".outputcrowdstrikenextgensiem",
|
|
8146
8279
|
"OutputCrowdstrikeNextGenSiemTypedDict": ".outputcrowdstrikenextgensiem",
|
|
8147
8280
|
"OutputDatabricks": ".outputdatabricks",
|
|
8148
|
-
"OutputDatabricksAuthenticationMethod": ".outputdatabricks",
|
|
8149
8281
|
"OutputDatabricksBackpressureBehavior": ".outputdatabricks",
|
|
8282
|
+
"OutputDatabricksCompression": ".outputdatabricks",
|
|
8283
|
+
"OutputDatabricksCompressionLevel": ".outputdatabricks",
|
|
8150
8284
|
"OutputDatabricksDataFormat": ".outputdatabricks",
|
|
8285
|
+
"OutputDatabricksDataPageVersion": ".outputdatabricks",
|
|
8151
8286
|
"OutputDatabricksDiskSpaceProtection": ".outputdatabricks",
|
|
8287
|
+
"OutputDatabricksKeyValueMetadatum": ".outputdatabricks",
|
|
8288
|
+
"OutputDatabricksKeyValueMetadatumTypedDict": ".outputdatabricks",
|
|
8289
|
+
"OutputDatabricksParquetVersion": ".outputdatabricks",
|
|
8152
8290
|
"OutputDatabricksType": ".outputdatabricks",
|
|
8153
8291
|
"OutputDatabricksTypedDict": ".outputdatabricks",
|
|
8154
8292
|
"DatadogSite": ".outputdatadog",
|
|
@@ -9089,9 +9227,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9089
9227
|
"PackRequestBodyUnionTypedDict": ".packrequestbody_union",
|
|
9090
9228
|
"PackUpgradeRequest": ".packupgraderequest",
|
|
9091
9229
|
"PackUpgradeRequestTypedDict": ".packupgraderequest",
|
|
9092
|
-
"Conf": ".pipeline",
|
|
9093
|
-
"ConfTypedDict": ".pipeline",
|
|
9094
9230
|
"Pipeline": ".pipeline",
|
|
9231
|
+
"PipelineConf": ".pipeline",
|
|
9232
|
+
"PipelineConfTypedDict": ".pipeline",
|
|
9095
9233
|
"PipelineGroups": ".pipeline",
|
|
9096
9234
|
"PipelineGroupsTypedDict": ".pipeline",
|
|
9097
9235
|
"PipelineTypedDict": ".pipeline",
|
|
@@ -9113,6 +9251,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9113
9251
|
"RoutesTypedDict": ".routes",
|
|
9114
9252
|
"RoutesRoute": ".routesroute",
|
|
9115
9253
|
"RoutesRouteTypedDict": ".routesroute",
|
|
9254
|
+
"RulesetID": ".rulesetid",
|
|
9255
|
+
"RulesetIDTypedDict": ".rulesetid",
|
|
9116
9256
|
"RunnableJob": ".runnablejob",
|
|
9117
9257
|
"RunnableJobTypedDict": ".runnablejob",
|
|
9118
9258
|
"CaptureSettings": ".runnablejobcollection",
|
|
@@ -9182,6 +9322,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9182
9322
|
"SecurityTypedDict": ".security",
|
|
9183
9323
|
"TeamAccessControlList": ".teamaccesscontrollist",
|
|
9184
9324
|
"TeamAccessControlListTypedDict": ".teamaccesscontrollist",
|
|
9325
|
+
"UpdateAdminProductsMappingsByProductAndIDRequest": ".updateadminproductsmappingsbyproductandidop",
|
|
9326
|
+
"UpdateAdminProductsMappingsByProductAndIDRequestTypedDict": ".updateadminproductsmappingsbyproductandidop",
|
|
9327
|
+
"UpdateAdminProductsMappingsByProductAndIDResponse": ".updateadminproductsmappingsbyproductandidop",
|
|
9328
|
+
"UpdateAdminProductsMappingsByProductAndIDResponseTypedDict": ".updateadminproductsmappingsbyproductandidop",
|
|
9185
9329
|
"UpdateConfigGroupByProductAndIDRequest": ".updateconfiggroupbyproductandidop",
|
|
9186
9330
|
"UpdateConfigGroupByProductAndIDRequestTypedDict": ".updateconfiggroupbyproductandidop",
|
|
9187
9331
|
"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,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 GetAdminProductsMappingsByProductAndIDRequestTypedDict(TypedDict):
|
|
18
|
+
product: ProductsCore
|
|
19
|
+
r"""Name of the Cribl product to get the Mappings for"""
|
|
20
|
+
id: str
|
|
21
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet Mapping Ruleset to get"""
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class GetAdminProductsMappingsByProductAndIDRequest(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 get the Mappings for"""
|
|
30
|
+
|
|
31
|
+
id: Annotated[
|
|
32
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
33
|
+
]
|
|
34
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet Mapping Ruleset to get"""
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class GetAdminProductsMappingsByProductAndIDResponseTypedDict(TypedDict):
|
|
38
|
+
r"""a list of MappingRuleset 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 GetAdminProductsMappingsByProductAndIDResponse(BaseModel):
|
|
46
|
+
r"""a list of MappingRuleset 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,44 @@
|
|
|
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 GetAdminProductsMappingsByProductRequestTypedDict(TypedDict):
|
|
18
|
+
product: ProductsCore
|
|
19
|
+
r"""Name of the Cribl product to list the Mapping Rulesets for"""
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class GetAdminProductsMappingsByProductRequest(BaseModel):
|
|
23
|
+
product: Annotated[
|
|
24
|
+
Annotated[ProductsCore, PlainValidator(validate_open_enum(False))],
|
|
25
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
26
|
+
]
|
|
27
|
+
r"""Name of the Cribl product to list the Mapping Rulesets for"""
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class GetAdminProductsMappingsByProductResponseTypedDict(TypedDict):
|
|
31
|
+
r"""a list of MappingRuleset objects"""
|
|
32
|
+
|
|
33
|
+
count: NotRequired[int]
|
|
34
|
+
r"""number of items present in the items array"""
|
|
35
|
+
items: NotRequired[List[MappingRulesetTypedDict]]
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
class GetAdminProductsMappingsByProductResponse(BaseModel):
|
|
39
|
+
r"""a list of MappingRuleset objects"""
|
|
40
|
+
|
|
41
|
+
count: Optional[int] = None
|
|
42
|
+
r"""number of items present in the items array"""
|
|
43
|
+
|
|
44
|
+
items: Optional[List[MappingRuleset]] = None
|