cribl-control-plane 0.0.29__py3-none-any.whl → 0.0.30__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.

Files changed (26) hide show
  1. cribl_control_plane/_version.py +3 -3
  2. cribl_control_plane/acl.py +30 -20
  3. cribl_control_plane/configs_versions.py +22 -16
  4. cribl_control_plane/groups_sdk.py +464 -428
  5. cribl_control_plane/models/__init__.py +187 -169
  6. cribl_control_plane/models/{createproductsgroupsbyproductop.py → createconfiggroupbyproductop.py} +10 -10
  7. cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +53 -0
  8. cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +78 -0
  9. cribl_control_plane/models/{getproductsgroupsaclteamsbyproductandidop.py → getconfiggroupaclteamsbyproductandidop.py} +15 -15
  10. cribl_control_plane/models/getconfiggroupbyproductandidop.py +65 -0
  11. cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +52 -0
  12. cribl_control_plane/models/{getsummaryworkersop.py → getmasterworkerentryop.py} +4 -4
  13. cribl_control_plane/models/gitcommitsummary.py +3 -3
  14. cribl_control_plane/models/{getproductsgroupsbyproductop.py → listconfiggroupbyproductop.py} +12 -12
  15. cribl_control_plane/models/{getworkersop.py → listmasterworkerentryop.py} +4 -4
  16. cribl_control_plane/models/{updategroupsbyidop.py → updateconfiggroupbyproductandidop.py} +22 -6
  17. cribl_control_plane/models/{updategroupsdeploybyidop.py → updateconfiggroupdeploybyproductandidop.py} +22 -6
  18. cribl_control_plane/nodes.py +70 -62
  19. cribl_control_plane/teams.py +20 -20
  20. {cribl_control_plane-0.0.29.dist-info → cribl_control_plane-0.0.30.dist-info}/METADATA +8 -8
  21. {cribl_control_plane-0.0.29.dist-info → cribl_control_plane-0.0.30.dist-info}/RECORD +22 -22
  22. cribl_control_plane/models/deletegroupsbyidop.py +0 -37
  23. cribl_control_plane/models/getgroupsaclbyidop.py +0 -63
  24. cribl_control_plane/models/getgroupsbyidop.py +0 -49
  25. cribl_control_plane/models/getgroupsconfigversionbyidop.py +0 -36
  26. {cribl_control_plane-0.0.29.dist-info → cribl_control_plane-0.0.30.dist-info}/WHEEL +0 -0
@@ -31,6 +31,13 @@ if TYPE_CHECKING:
31
31
  ConfigGroupLookupsLookupTypedDict,
32
32
  ConfigGroupLookupsTypedDict,
33
33
  )
34
+ from .createconfiggroupbyproductop import (
35
+ CreateConfigGroupByProductProduct,
36
+ CreateConfigGroupByProductRequest,
37
+ CreateConfigGroupByProductRequestTypedDict,
38
+ CreateConfigGroupByProductResponse,
39
+ CreateConfigGroupByProductResponseTypedDict,
40
+ )
34
41
  from .createcribllakedatasetbylakeidop import (
35
42
  CreateCriblLakeDatasetByLakeIDRequest,
36
43
  CreateCriblLakeDatasetByLakeIDRequestTypedDict,
@@ -56,13 +63,6 @@ if TYPE_CHECKING:
56
63
  CreatePipelineResponse,
57
64
  CreatePipelineResponseTypedDict,
58
65
  )
59
- from .createproductsgroupsbyproductop import (
60
- CreateProductsGroupsByProductProduct,
61
- CreateProductsGroupsByProductRequest,
62
- CreateProductsGroupsByProductRequestTypedDict,
63
- CreateProductsGroupsByProductResponse,
64
- CreateProductsGroupsByProductResponseTypedDict,
65
- )
66
66
  from .createroutesappendbyidop import (
67
67
  CreateRoutesAppendByIDRequest,
68
68
  CreateRoutesAppendByIDRequestTypedDict,
@@ -101,18 +101,19 @@ if TYPE_CHECKING:
101
101
  DatasetMetadataRunInfo,
102
102
  DatasetMetadataRunInfoTypedDict,
103
103
  )
104
+ from .deleteconfiggroupbyproductandidop import (
105
+ DeleteConfigGroupByProductAndIDProduct,
106
+ DeleteConfigGroupByProductAndIDRequest,
107
+ DeleteConfigGroupByProductAndIDRequestTypedDict,
108
+ DeleteConfigGroupByProductAndIDResponse,
109
+ DeleteConfigGroupByProductAndIDResponseTypedDict,
110
+ )
104
111
  from .deletecribllakedatasetbylakeidandidop import (
105
112
  DeleteCriblLakeDatasetByLakeIDAndIDRequest,
106
113
  DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict,
107
114
  DeleteCriblLakeDatasetByLakeIDAndIDResponse,
108
115
  DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict,
109
116
  )
110
- from .deletegroupsbyidop import (
111
- DeleteGroupsByIDRequest,
112
- DeleteGroupsByIDRequestTypedDict,
113
- DeleteGroupsByIDResponse,
114
- DeleteGroupsByIDResponseTypedDict,
115
- )
116
117
  from .deleteinputbyidop import (
117
118
  DeleteInputByIDRequest,
118
119
  DeleteInputByIDRequestTypedDict,
@@ -158,6 +159,36 @@ if TYPE_CHECKING:
158
159
  DistributedSummaryWorkers,
159
160
  DistributedSummaryWorkersTypedDict,
160
161
  )
162
+ from .getconfiggroupaclbyproductandidop import (
163
+ GetConfigGroupACLByProductAndIDProduct,
164
+ GetConfigGroupACLByProductAndIDRequest,
165
+ GetConfigGroupACLByProductAndIDRequestTypedDict,
166
+ GetConfigGroupACLByProductAndIDResponse,
167
+ GetConfigGroupACLByProductAndIDResponseTypedDict,
168
+ GetConfigGroupACLByProductAndIDType,
169
+ )
170
+ from .getconfiggroupaclteamsbyproductandidop import (
171
+ GetConfigGroupACLTeamsByProductAndIDProduct,
172
+ GetConfigGroupACLTeamsByProductAndIDRequest,
173
+ GetConfigGroupACLTeamsByProductAndIDRequestTypedDict,
174
+ GetConfigGroupACLTeamsByProductAndIDResponse,
175
+ GetConfigGroupACLTeamsByProductAndIDResponseTypedDict,
176
+ GetConfigGroupACLTeamsByProductAndIDType,
177
+ )
178
+ from .getconfiggroupbyproductandidop import (
179
+ GetConfigGroupByProductAndIDProduct,
180
+ GetConfigGroupByProductAndIDRequest,
181
+ GetConfigGroupByProductAndIDRequestTypedDict,
182
+ GetConfigGroupByProductAndIDResponse,
183
+ GetConfigGroupByProductAndIDResponseTypedDict,
184
+ )
185
+ from .getconfiggroupconfigversionbyproductandidop import (
186
+ GetConfigGroupConfigVersionByProductAndIDProduct,
187
+ GetConfigGroupConfigVersionByProductAndIDRequest,
188
+ GetConfigGroupConfigVersionByProductAndIDRequestTypedDict,
189
+ GetConfigGroupConfigVersionByProductAndIDResponse,
190
+ GetConfigGroupConfigVersionByProductAndIDResponseTypedDict,
191
+ )
161
192
  from .getcribllakedatasetbylakeidandidop import (
162
193
  GetCriblLakeDatasetByLakeIDAndIDRequest,
163
194
  GetCriblLakeDatasetByLakeIDAndIDRequestTypedDict,
@@ -170,31 +201,18 @@ if TYPE_CHECKING:
170
201
  GetCriblLakeDatasetByLakeIDResponse,
171
202
  GetCriblLakeDatasetByLakeIDResponseTypedDict,
172
203
  )
173
- from .getgroupsaclbyidop import (
174
- GetGroupsACLByIDRequest,
175
- GetGroupsACLByIDRequestTypedDict,
176
- GetGroupsACLByIDResponse,
177
- GetGroupsACLByIDResponseTypedDict,
178
- GetGroupsACLByIDType,
179
- )
180
- from .getgroupsbyidop import (
181
- GetGroupsByIDRequest,
182
- GetGroupsByIDRequestTypedDict,
183
- GetGroupsByIDResponse,
184
- GetGroupsByIDResponseTypedDict,
185
- )
186
- from .getgroupsconfigversionbyidop import (
187
- GetGroupsConfigVersionByIDRequest,
188
- GetGroupsConfigVersionByIDRequestTypedDict,
189
- GetGroupsConfigVersionByIDResponse,
190
- GetGroupsConfigVersionByIDResponseTypedDict,
191
- )
192
204
  from .getinputbyidop import (
193
205
  GetInputByIDRequest,
194
206
  GetInputByIDRequestTypedDict,
195
207
  GetInputByIDResponse,
196
208
  GetInputByIDResponseTypedDict,
197
209
  )
210
+ from .getmasterworkerentryop import (
211
+ GetMasterWorkerEntryRequest,
212
+ GetMasterWorkerEntryRequestTypedDict,
213
+ GetMasterWorkerEntryResponse,
214
+ GetMasterWorkerEntryResponseTypedDict,
215
+ )
198
216
  from .getoutputbyidop import (
199
217
  GetOutputByIDRequest,
200
218
  GetOutputByIDRequestTypedDict,
@@ -225,21 +243,6 @@ if TYPE_CHECKING:
225
243
  GetPipelineByIDResponse,
226
244
  GetPipelineByIDResponseTypedDict,
227
245
  )
228
- from .getproductsgroupsaclteamsbyproductandidop import (
229
- GetProductsGroupsACLTeamsByProductAndIDProduct,
230
- GetProductsGroupsACLTeamsByProductAndIDRequest,
231
- GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict,
232
- GetProductsGroupsACLTeamsByProductAndIDResponse,
233
- GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict,
234
- GetProductsGroupsACLTeamsByProductAndIDType,
235
- )
236
- from .getproductsgroupsbyproductop import (
237
- GetProductsGroupsByProductProduct,
238
- GetProductsGroupsByProductRequest,
239
- GetProductsGroupsByProductRequestTypedDict,
240
- GetProductsGroupsByProductResponse,
241
- GetProductsGroupsByProductResponseTypedDict,
242
- )
243
246
  from .getroutesbyidop import (
244
247
  GetRoutesByIDRequest,
245
248
  GetRoutesByIDRequestTypedDict,
@@ -253,12 +256,6 @@ if TYPE_CHECKING:
253
256
  GetSummaryResponse,
254
257
  GetSummaryResponseTypedDict,
255
258
  )
256
- from .getsummaryworkersop import (
257
- GetSummaryWorkersRequest,
258
- GetSummaryWorkersRequestTypedDict,
259
- GetSummaryWorkersResponse,
260
- GetSummaryWorkersResponseTypedDict,
261
- )
262
259
  from .getversionbranchop import (
263
260
  GetVersionBranchResponse,
264
261
  GetVersionBranchResponseTypedDict,
@@ -297,12 +294,6 @@ if TYPE_CHECKING:
297
294
  GetVersionStatusResponse,
298
295
  GetVersionStatusResponseTypedDict,
299
296
  )
300
- from .getworkersop import (
301
- GetWorkersRequest,
302
- GetWorkersRequestTypedDict,
303
- GetWorkersResponse,
304
- GetWorkersResponseTypedDict,
305
- )
306
297
  from .gitcommitparams import GitCommitParams, GitCommitParamsTypedDict
307
298
  from .gitcommitsummary import (
308
299
  Author,
@@ -1607,7 +1598,20 @@ if TYPE_CHECKING:
1607
1598
  LakeDatasetSearchConfigTypedDict,
1608
1599
  )
1609
1600
  from .lakehouseconnectiontype import LakehouseConnectionType
1601
+ from .listconfiggroupbyproductop import (
1602
+ ListConfigGroupByProductProduct,
1603
+ ListConfigGroupByProductRequest,
1604
+ ListConfigGroupByProductRequestTypedDict,
1605
+ ListConfigGroupByProductResponse,
1606
+ ListConfigGroupByProductResponseTypedDict,
1607
+ )
1610
1608
  from .listinputop import ListInputResponse, ListInputResponseTypedDict
1609
+ from .listmasterworkerentryop import (
1610
+ ListMasterWorkerEntryRequest,
1611
+ ListMasterWorkerEntryRequestTypedDict,
1612
+ ListMasterWorkerEntryResponse,
1613
+ ListMasterWorkerEntryResponseTypedDict,
1614
+ )
1611
1615
  from .listoutputop import ListOutputResponse, ListOutputResponseTypedDict
1612
1616
  from .listpipelineop import ListPipelineResponse, ListPipelineResponseTypedDict
1613
1617
  from .listroutesop import ListRoutesResponse, ListRoutesResponseTypedDict
@@ -2954,24 +2958,26 @@ if TYPE_CHECKING:
2954
2958
  TeamAccessControlList,
2955
2959
  TeamAccessControlListTypedDict,
2956
2960
  )
2961
+ from .updateconfiggroupbyproductandidop import (
2962
+ UpdateConfigGroupByProductAndIDProduct,
2963
+ UpdateConfigGroupByProductAndIDRequest,
2964
+ UpdateConfigGroupByProductAndIDRequestTypedDict,
2965
+ UpdateConfigGroupByProductAndIDResponse,
2966
+ UpdateConfigGroupByProductAndIDResponseTypedDict,
2967
+ )
2968
+ from .updateconfiggroupdeploybyproductandidop import (
2969
+ UpdateConfigGroupDeployByProductAndIDProduct,
2970
+ UpdateConfigGroupDeployByProductAndIDRequest,
2971
+ UpdateConfigGroupDeployByProductAndIDRequestTypedDict,
2972
+ UpdateConfigGroupDeployByProductAndIDResponse,
2973
+ UpdateConfigGroupDeployByProductAndIDResponseTypedDict,
2974
+ )
2957
2975
  from .updatecribllakedatasetbylakeidandidop import (
2958
2976
  UpdateCriblLakeDatasetByLakeIDAndIDRequest,
2959
2977
  UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict,
2960
2978
  UpdateCriblLakeDatasetByLakeIDAndIDResponse,
2961
2979
  UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict,
2962
2980
  )
2963
- from .updategroupsbyidop import (
2964
- UpdateGroupsByIDRequest,
2965
- UpdateGroupsByIDRequestTypedDict,
2966
- UpdateGroupsByIDResponse,
2967
- UpdateGroupsByIDResponseTypedDict,
2968
- )
2969
- from .updategroupsdeploybyidop import (
2970
- UpdateGroupsDeployByIDRequest,
2971
- UpdateGroupsDeployByIDRequestTypedDict,
2972
- UpdateGroupsDeployByIDResponse,
2973
- UpdateGroupsDeployByIDResponseTypedDict,
2974
- )
2975
2981
  from .updatehectokenrequest import (
2976
2982
  UpdateHecTokenRequest,
2977
2983
  UpdateHecTokenRequestMetadatum,
@@ -3070,6 +3076,11 @@ __all__ = [
3070
3076
  "Container",
3071
3077
  "ContainerMode",
3072
3078
  "ContainerTypedDict",
3079
+ "CreateConfigGroupByProductProduct",
3080
+ "CreateConfigGroupByProductRequest",
3081
+ "CreateConfigGroupByProductRequestTypedDict",
3082
+ "CreateConfigGroupByProductResponse",
3083
+ "CreateConfigGroupByProductResponseTypedDict",
3073
3084
  "CreateCriblLakeDatasetByLakeIDRequest",
3074
3085
  "CreateCriblLakeDatasetByLakeIDRequestTypedDict",
3075
3086
  "CreateCriblLakeDatasetByLakeIDResponse",
@@ -3090,11 +3101,6 @@ __all__ = [
3090
3101
  "CreatePacksResponseTypedDict",
3091
3102
  "CreatePipelineResponse",
3092
3103
  "CreatePipelineResponseTypedDict",
3093
- "CreateProductsGroupsByProductProduct",
3094
- "CreateProductsGroupsByProductRequest",
3095
- "CreateProductsGroupsByProductRequestTypedDict",
3096
- "CreateProductsGroupsByProductResponse",
3097
- "CreateProductsGroupsByProductResponseTypedDict",
3098
3104
  "CreateRoutesAppendByIDRequest",
3099
3105
  "CreateRoutesAppendByIDRequestTypedDict",
3100
3106
  "CreateRoutesAppendByIDResponse",
@@ -3128,14 +3134,15 @@ __all__ = [
3128
3134
  "DatasetMetadataRunInfo",
3129
3135
  "DatasetMetadataRunInfoTypedDict",
3130
3136
  "DatasetMetadataTypedDict",
3137
+ "DeleteConfigGroupByProductAndIDProduct",
3138
+ "DeleteConfigGroupByProductAndIDRequest",
3139
+ "DeleteConfigGroupByProductAndIDRequestTypedDict",
3140
+ "DeleteConfigGroupByProductAndIDResponse",
3141
+ "DeleteConfigGroupByProductAndIDResponseTypedDict",
3131
3142
  "DeleteCriblLakeDatasetByLakeIDAndIDRequest",
3132
3143
  "DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
3133
3144
  "DeleteCriblLakeDatasetByLakeIDAndIDResponse",
3134
3145
  "DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict",
3135
- "DeleteGroupsByIDRequest",
3136
- "DeleteGroupsByIDRequestTypedDict",
3137
- "DeleteGroupsByIDResponse",
3138
- "DeleteGroupsByIDResponseTypedDict",
3139
3146
  "DeleteInputByIDRequest",
3140
3147
  "DeleteInputByIDRequestTypedDict",
3141
3148
  "DeleteInputByIDResponse",
@@ -3194,6 +3201,28 @@ __all__ = [
3194
3201
  "FlushPeriodSecTypedDict",
3195
3202
  "FunctionSpecificConfigs",
3196
3203
  "FunctionSpecificConfigsTypedDict",
3204
+ "GetConfigGroupACLByProductAndIDProduct",
3205
+ "GetConfigGroupACLByProductAndIDRequest",
3206
+ "GetConfigGroupACLByProductAndIDRequestTypedDict",
3207
+ "GetConfigGroupACLByProductAndIDResponse",
3208
+ "GetConfigGroupACLByProductAndIDResponseTypedDict",
3209
+ "GetConfigGroupACLByProductAndIDType",
3210
+ "GetConfigGroupACLTeamsByProductAndIDProduct",
3211
+ "GetConfigGroupACLTeamsByProductAndIDRequest",
3212
+ "GetConfigGroupACLTeamsByProductAndIDRequestTypedDict",
3213
+ "GetConfigGroupACLTeamsByProductAndIDResponse",
3214
+ "GetConfigGroupACLTeamsByProductAndIDResponseTypedDict",
3215
+ "GetConfigGroupACLTeamsByProductAndIDType",
3216
+ "GetConfigGroupByProductAndIDProduct",
3217
+ "GetConfigGroupByProductAndIDRequest",
3218
+ "GetConfigGroupByProductAndIDRequestTypedDict",
3219
+ "GetConfigGroupByProductAndIDResponse",
3220
+ "GetConfigGroupByProductAndIDResponseTypedDict",
3221
+ "GetConfigGroupConfigVersionByProductAndIDProduct",
3222
+ "GetConfigGroupConfigVersionByProductAndIDRequest",
3223
+ "GetConfigGroupConfigVersionByProductAndIDRequestTypedDict",
3224
+ "GetConfigGroupConfigVersionByProductAndIDResponse",
3225
+ "GetConfigGroupConfigVersionByProductAndIDResponseTypedDict",
3197
3226
  "GetCriblLakeDatasetByLakeIDAndIDRequest",
3198
3227
  "GetCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
3199
3228
  "GetCriblLakeDatasetByLakeIDAndIDResponse",
@@ -3202,23 +3231,14 @@ __all__ = [
3202
3231
  "GetCriblLakeDatasetByLakeIDRequestTypedDict",
3203
3232
  "GetCriblLakeDatasetByLakeIDResponse",
3204
3233
  "GetCriblLakeDatasetByLakeIDResponseTypedDict",
3205
- "GetGroupsACLByIDRequest",
3206
- "GetGroupsACLByIDRequestTypedDict",
3207
- "GetGroupsACLByIDResponse",
3208
- "GetGroupsACLByIDResponseTypedDict",
3209
- "GetGroupsACLByIDType",
3210
- "GetGroupsByIDRequest",
3211
- "GetGroupsByIDRequestTypedDict",
3212
- "GetGroupsByIDResponse",
3213
- "GetGroupsByIDResponseTypedDict",
3214
- "GetGroupsConfigVersionByIDRequest",
3215
- "GetGroupsConfigVersionByIDRequestTypedDict",
3216
- "GetGroupsConfigVersionByIDResponse",
3217
- "GetGroupsConfigVersionByIDResponseTypedDict",
3218
3234
  "GetInputByIDRequest",
3219
3235
  "GetInputByIDRequestTypedDict",
3220
3236
  "GetInputByIDResponse",
3221
3237
  "GetInputByIDResponseTypedDict",
3238
+ "GetMasterWorkerEntryRequest",
3239
+ "GetMasterWorkerEntryRequestTypedDict",
3240
+ "GetMasterWorkerEntryResponse",
3241
+ "GetMasterWorkerEntryResponseTypedDict",
3222
3242
  "GetOutputByIDRequest",
3223
3243
  "GetOutputByIDRequestTypedDict",
3224
3244
  "GetOutputByIDResponse",
@@ -3239,17 +3259,6 @@ __all__ = [
3239
3259
  "GetPipelineByIDRequestTypedDict",
3240
3260
  "GetPipelineByIDResponse",
3241
3261
  "GetPipelineByIDResponseTypedDict",
3242
- "GetProductsGroupsACLTeamsByProductAndIDProduct",
3243
- "GetProductsGroupsACLTeamsByProductAndIDRequest",
3244
- "GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict",
3245
- "GetProductsGroupsACLTeamsByProductAndIDResponse",
3246
- "GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict",
3247
- "GetProductsGroupsACLTeamsByProductAndIDType",
3248
- "GetProductsGroupsByProductProduct",
3249
- "GetProductsGroupsByProductRequest",
3250
- "GetProductsGroupsByProductRequestTypedDict",
3251
- "GetProductsGroupsByProductResponse",
3252
- "GetProductsGroupsByProductResponseTypedDict",
3253
3262
  "GetRoutesByIDRequest",
3254
3263
  "GetRoutesByIDRequestTypedDict",
3255
3264
  "GetRoutesByIDResponse",
@@ -3259,10 +3268,6 @@ __all__ = [
3259
3268
  "GetSummaryRequestTypedDict",
3260
3269
  "GetSummaryResponse",
3261
3270
  "GetSummaryResponseTypedDict",
3262
- "GetSummaryWorkersRequest",
3263
- "GetSummaryWorkersRequestTypedDict",
3264
- "GetSummaryWorkersResponse",
3265
- "GetSummaryWorkersResponseTypedDict",
3266
3271
  "GetVersionBranchResponse",
3267
3272
  "GetVersionBranchResponseTypedDict",
3268
3273
  "GetVersionCountRequest",
@@ -3287,10 +3292,6 @@ __all__ = [
3287
3292
  "GetVersionStatusRequestTypedDict",
3288
3293
  "GetVersionStatusResponse",
3289
3294
  "GetVersionStatusResponseTypedDict",
3290
- "GetWorkersRequest",
3291
- "GetWorkersRequestTypedDict",
3292
- "GetWorkersResponse",
3293
- "GetWorkersResponseTypedDict",
3294
3295
  "Git",
3295
3296
  "GitCommitParams",
3296
3297
  "GitCommitParamsTypedDict",
@@ -4409,8 +4410,17 @@ __all__ = [
4409
4410
  "LakehouseConnectionType",
4410
4411
  "LastMetrics",
4411
4412
  "LastMetricsTypedDict",
4413
+ "ListConfigGroupByProductProduct",
4414
+ "ListConfigGroupByProductRequest",
4415
+ "ListConfigGroupByProductRequestTypedDict",
4416
+ "ListConfigGroupByProductResponse",
4417
+ "ListConfigGroupByProductResponseTypedDict",
4412
4418
  "ListInputResponse",
4413
4419
  "ListInputResponseTypedDict",
4420
+ "ListMasterWorkerEntryRequest",
4421
+ "ListMasterWorkerEntryRequestTypedDict",
4422
+ "ListMasterWorkerEntryResponse",
4423
+ "ListMasterWorkerEntryResponseTypedDict",
4414
4424
  "ListOutputResponse",
4415
4425
  "ListOutputResponseTypedDict",
4416
4426
  "ListPipelineResponse",
@@ -5645,18 +5655,20 @@ __all__ = [
5645
5655
  "TelemetryType",
5646
5656
  "TimestampFormat",
5647
5657
  "TimestampPrecision",
5658
+ "UpdateConfigGroupByProductAndIDProduct",
5659
+ "UpdateConfigGroupByProductAndIDRequest",
5660
+ "UpdateConfigGroupByProductAndIDRequestTypedDict",
5661
+ "UpdateConfigGroupByProductAndIDResponse",
5662
+ "UpdateConfigGroupByProductAndIDResponseTypedDict",
5663
+ "UpdateConfigGroupDeployByProductAndIDProduct",
5664
+ "UpdateConfigGroupDeployByProductAndIDRequest",
5665
+ "UpdateConfigGroupDeployByProductAndIDRequestTypedDict",
5666
+ "UpdateConfigGroupDeployByProductAndIDResponse",
5667
+ "UpdateConfigGroupDeployByProductAndIDResponseTypedDict",
5648
5668
  "UpdateCriblLakeDatasetByLakeIDAndIDRequest",
5649
5669
  "UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
5650
5670
  "UpdateCriblLakeDatasetByLakeIDAndIDResponse",
5651
5671
  "UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict",
5652
- "UpdateGroupsByIDRequest",
5653
- "UpdateGroupsByIDRequestTypedDict",
5654
- "UpdateGroupsByIDResponse",
5655
- "UpdateGroupsByIDResponseTypedDict",
5656
- "UpdateGroupsDeployByIDRequest",
5657
- "UpdateGroupsDeployByIDRequestTypedDict",
5658
- "UpdateGroupsDeployByIDResponse",
5659
- "UpdateGroupsDeployByIDResponseTypedDict",
5660
5672
  "UpdateHecTokenRequest",
5661
5673
  "UpdateHecTokenRequestMetadatum",
5662
5674
  "UpdateHecTokenRequestMetadatumTypedDict",
@@ -5719,6 +5731,11 @@ _dynamic_imports: dict[str, str] = {
5719
5731
  "ConfigGroupLookupsLookup": ".configgrouplookups",
5720
5732
  "ConfigGroupLookupsLookupTypedDict": ".configgrouplookups",
5721
5733
  "ConfigGroupLookupsTypedDict": ".configgrouplookups",
5734
+ "CreateConfigGroupByProductProduct": ".createconfiggroupbyproductop",
5735
+ "CreateConfigGroupByProductRequest": ".createconfiggroupbyproductop",
5736
+ "CreateConfigGroupByProductRequestTypedDict": ".createconfiggroupbyproductop",
5737
+ "CreateConfigGroupByProductResponse": ".createconfiggroupbyproductop",
5738
+ "CreateConfigGroupByProductResponseTypedDict": ".createconfiggroupbyproductop",
5722
5739
  "CreateCriblLakeDatasetByLakeIDRequest": ".createcribllakedatasetbylakeidop",
5723
5740
  "CreateCriblLakeDatasetByLakeIDRequestTypedDict": ".createcribllakedatasetbylakeidop",
5724
5741
  "CreateCriblLakeDatasetByLakeIDResponse": ".createcribllakedatasetbylakeidop",
@@ -5739,11 +5756,6 @@ _dynamic_imports: dict[str, str] = {
5739
5756
  "CreatePacksResponseTypedDict": ".createpacksop",
5740
5757
  "CreatePipelineResponse": ".createpipelineop",
5741
5758
  "CreatePipelineResponseTypedDict": ".createpipelineop",
5742
- "CreateProductsGroupsByProductProduct": ".createproductsgroupsbyproductop",
5743
- "CreateProductsGroupsByProductRequest": ".createproductsgroupsbyproductop",
5744
- "CreateProductsGroupsByProductRequestTypedDict": ".createproductsgroupsbyproductop",
5745
- "CreateProductsGroupsByProductResponse": ".createproductsgroupsbyproductop",
5746
- "CreateProductsGroupsByProductResponseTypedDict": ".createproductsgroupsbyproductop",
5747
5759
  "CreateRoutesAppendByIDRequest": ".createroutesappendbyidop",
5748
5760
  "CreateRoutesAppendByIDRequestTypedDict": ".createroutesappendbyidop",
5749
5761
  "CreateRoutesAppendByIDResponse": ".createroutesappendbyidop",
@@ -5772,14 +5784,15 @@ _dynamic_imports: dict[str, str] = {
5772
5784
  "ScanMode": ".datasetmetadata",
5773
5785
  "DatasetMetadataRunInfo": ".datasetmetadataruninfo",
5774
5786
  "DatasetMetadataRunInfoTypedDict": ".datasetmetadataruninfo",
5787
+ "DeleteConfigGroupByProductAndIDProduct": ".deleteconfiggroupbyproductandidop",
5788
+ "DeleteConfigGroupByProductAndIDRequest": ".deleteconfiggroupbyproductandidop",
5789
+ "DeleteConfigGroupByProductAndIDRequestTypedDict": ".deleteconfiggroupbyproductandidop",
5790
+ "DeleteConfigGroupByProductAndIDResponse": ".deleteconfiggroupbyproductandidop",
5791
+ "DeleteConfigGroupByProductAndIDResponseTypedDict": ".deleteconfiggroupbyproductandidop",
5775
5792
  "DeleteCriblLakeDatasetByLakeIDAndIDRequest": ".deletecribllakedatasetbylakeidandidop",
5776
5793
  "DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".deletecribllakedatasetbylakeidandidop",
5777
5794
  "DeleteCriblLakeDatasetByLakeIDAndIDResponse": ".deletecribllakedatasetbylakeidandidop",
5778
5795
  "DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict": ".deletecribllakedatasetbylakeidandidop",
5779
- "DeleteGroupsByIDRequest": ".deletegroupsbyidop",
5780
- "DeleteGroupsByIDRequestTypedDict": ".deletegroupsbyidop",
5781
- "DeleteGroupsByIDResponse": ".deletegroupsbyidop",
5782
- "DeleteGroupsByIDResponseTypedDict": ".deletegroupsbyidop",
5783
5796
  "DeleteInputByIDRequest": ".deleteinputbyidop",
5784
5797
  "DeleteInputByIDRequestTypedDict": ".deleteinputbyidop",
5785
5798
  "DeleteInputByIDResponse": ".deleteinputbyidop",
@@ -5812,6 +5825,28 @@ _dynamic_imports: dict[str, str] = {
5812
5825
  "DistributedSummaryTypedDict": ".distributedsummary",
5813
5826
  "DistributedSummaryWorkers": ".distributedsummary",
5814
5827
  "DistributedSummaryWorkersTypedDict": ".distributedsummary",
5828
+ "GetConfigGroupACLByProductAndIDProduct": ".getconfiggroupaclbyproductandidop",
5829
+ "GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
5830
+ "GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
5831
+ "GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
5832
+ "GetConfigGroupACLByProductAndIDResponseTypedDict": ".getconfiggroupaclbyproductandidop",
5833
+ "GetConfigGroupACLByProductAndIDType": ".getconfiggroupaclbyproductandidop",
5834
+ "GetConfigGroupACLTeamsByProductAndIDProduct": ".getconfiggroupaclteamsbyproductandidop",
5835
+ "GetConfigGroupACLTeamsByProductAndIDRequest": ".getconfiggroupaclteamsbyproductandidop",
5836
+ "GetConfigGroupACLTeamsByProductAndIDRequestTypedDict": ".getconfiggroupaclteamsbyproductandidop",
5837
+ "GetConfigGroupACLTeamsByProductAndIDResponse": ".getconfiggroupaclteamsbyproductandidop",
5838
+ "GetConfigGroupACLTeamsByProductAndIDResponseTypedDict": ".getconfiggroupaclteamsbyproductandidop",
5839
+ "GetConfigGroupACLTeamsByProductAndIDType": ".getconfiggroupaclteamsbyproductandidop",
5840
+ "GetConfigGroupByProductAndIDProduct": ".getconfiggroupbyproductandidop",
5841
+ "GetConfigGroupByProductAndIDRequest": ".getconfiggroupbyproductandidop",
5842
+ "GetConfigGroupByProductAndIDRequestTypedDict": ".getconfiggroupbyproductandidop",
5843
+ "GetConfigGroupByProductAndIDResponse": ".getconfiggroupbyproductandidop",
5844
+ "GetConfigGroupByProductAndIDResponseTypedDict": ".getconfiggroupbyproductandidop",
5845
+ "GetConfigGroupConfigVersionByProductAndIDProduct": ".getconfiggroupconfigversionbyproductandidop",
5846
+ "GetConfigGroupConfigVersionByProductAndIDRequest": ".getconfiggroupconfigversionbyproductandidop",
5847
+ "GetConfigGroupConfigVersionByProductAndIDRequestTypedDict": ".getconfiggroupconfigversionbyproductandidop",
5848
+ "GetConfigGroupConfigVersionByProductAndIDResponse": ".getconfiggroupconfigversionbyproductandidop",
5849
+ "GetConfigGroupConfigVersionByProductAndIDResponseTypedDict": ".getconfiggroupconfigversionbyproductandidop",
5815
5850
  "GetCriblLakeDatasetByLakeIDAndIDRequest": ".getcribllakedatasetbylakeidandidop",
5816
5851
  "GetCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".getcribllakedatasetbylakeidandidop",
5817
5852
  "GetCriblLakeDatasetByLakeIDAndIDResponse": ".getcribllakedatasetbylakeidandidop",
@@ -5820,23 +5855,14 @@ _dynamic_imports: dict[str, str] = {
5820
5855
  "GetCriblLakeDatasetByLakeIDRequestTypedDict": ".getcribllakedatasetbylakeidop",
5821
5856
  "GetCriblLakeDatasetByLakeIDResponse": ".getcribllakedatasetbylakeidop",
5822
5857
  "GetCriblLakeDatasetByLakeIDResponseTypedDict": ".getcribllakedatasetbylakeidop",
5823
- "GetGroupsACLByIDRequest": ".getgroupsaclbyidop",
5824
- "GetGroupsACLByIDRequestTypedDict": ".getgroupsaclbyidop",
5825
- "GetGroupsACLByIDResponse": ".getgroupsaclbyidop",
5826
- "GetGroupsACLByIDResponseTypedDict": ".getgroupsaclbyidop",
5827
- "GetGroupsACLByIDType": ".getgroupsaclbyidop",
5828
- "GetGroupsByIDRequest": ".getgroupsbyidop",
5829
- "GetGroupsByIDRequestTypedDict": ".getgroupsbyidop",
5830
- "GetGroupsByIDResponse": ".getgroupsbyidop",
5831
- "GetGroupsByIDResponseTypedDict": ".getgroupsbyidop",
5832
- "GetGroupsConfigVersionByIDRequest": ".getgroupsconfigversionbyidop",
5833
- "GetGroupsConfigVersionByIDRequestTypedDict": ".getgroupsconfigversionbyidop",
5834
- "GetGroupsConfigVersionByIDResponse": ".getgroupsconfigversionbyidop",
5835
- "GetGroupsConfigVersionByIDResponseTypedDict": ".getgroupsconfigversionbyidop",
5836
5858
  "GetInputByIDRequest": ".getinputbyidop",
5837
5859
  "GetInputByIDRequestTypedDict": ".getinputbyidop",
5838
5860
  "GetInputByIDResponse": ".getinputbyidop",
5839
5861
  "GetInputByIDResponseTypedDict": ".getinputbyidop",
5862
+ "GetMasterWorkerEntryRequest": ".getmasterworkerentryop",
5863
+ "GetMasterWorkerEntryRequestTypedDict": ".getmasterworkerentryop",
5864
+ "GetMasterWorkerEntryResponse": ".getmasterworkerentryop",
5865
+ "GetMasterWorkerEntryResponseTypedDict": ".getmasterworkerentryop",
5840
5866
  "GetOutputByIDRequest": ".getoutputbyidop",
5841
5867
  "GetOutputByIDRequestTypedDict": ".getoutputbyidop",
5842
5868
  "GetOutputByIDResponse": ".getoutputbyidop",
@@ -5857,17 +5883,6 @@ _dynamic_imports: dict[str, str] = {
5857
5883
  "GetPipelineByIDRequestTypedDict": ".getpipelinebyidop",
5858
5884
  "GetPipelineByIDResponse": ".getpipelinebyidop",
5859
5885
  "GetPipelineByIDResponseTypedDict": ".getpipelinebyidop",
5860
- "GetProductsGroupsACLTeamsByProductAndIDProduct": ".getproductsgroupsaclteamsbyproductandidop",
5861
- "GetProductsGroupsACLTeamsByProductAndIDRequest": ".getproductsgroupsaclteamsbyproductandidop",
5862
- "GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict": ".getproductsgroupsaclteamsbyproductandidop",
5863
- "GetProductsGroupsACLTeamsByProductAndIDResponse": ".getproductsgroupsaclteamsbyproductandidop",
5864
- "GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict": ".getproductsgroupsaclteamsbyproductandidop",
5865
- "GetProductsGroupsACLTeamsByProductAndIDType": ".getproductsgroupsaclteamsbyproductandidop",
5866
- "GetProductsGroupsByProductProduct": ".getproductsgroupsbyproductop",
5867
- "GetProductsGroupsByProductRequest": ".getproductsgroupsbyproductop",
5868
- "GetProductsGroupsByProductRequestTypedDict": ".getproductsgroupsbyproductop",
5869
- "GetProductsGroupsByProductResponse": ".getproductsgroupsbyproductop",
5870
- "GetProductsGroupsByProductResponseTypedDict": ".getproductsgroupsbyproductop",
5871
5886
  "GetRoutesByIDRequest": ".getroutesbyidop",
5872
5887
  "GetRoutesByIDRequestTypedDict": ".getroutesbyidop",
5873
5888
  "GetRoutesByIDResponse": ".getroutesbyidop",
@@ -5877,10 +5892,6 @@ _dynamic_imports: dict[str, str] = {
5877
5892
  "GetSummaryRequestTypedDict": ".getsummaryop",
5878
5893
  "GetSummaryResponse": ".getsummaryop",
5879
5894
  "GetSummaryResponseTypedDict": ".getsummaryop",
5880
- "GetSummaryWorkersRequest": ".getsummaryworkersop",
5881
- "GetSummaryWorkersRequestTypedDict": ".getsummaryworkersop",
5882
- "GetSummaryWorkersResponse": ".getsummaryworkersop",
5883
- "GetSummaryWorkersResponseTypedDict": ".getsummaryworkersop",
5884
5895
  "GetVersionBranchResponse": ".getversionbranchop",
5885
5896
  "GetVersionBranchResponseTypedDict": ".getversionbranchop",
5886
5897
  "GetVersionCountRequest": ".getversioncountop",
@@ -5905,10 +5916,6 @@ _dynamic_imports: dict[str, str] = {
5905
5916
  "GetVersionStatusRequestTypedDict": ".getversionstatusop",
5906
5917
  "GetVersionStatusResponse": ".getversionstatusop",
5907
5918
  "GetVersionStatusResponseTypedDict": ".getversionstatusop",
5908
- "GetWorkersRequest": ".getworkersop",
5909
- "GetWorkersRequestTypedDict": ".getworkersop",
5910
- "GetWorkersResponse": ".getworkersop",
5911
- "GetWorkersResponseTypedDict": ".getworkersop",
5912
5919
  "GitCommitParams": ".gitcommitparams",
5913
5920
  "GitCommitParamsTypedDict": ".gitcommitparams",
5914
5921
  "Author": ".gitcommitsummary",
@@ -7102,8 +7109,17 @@ _dynamic_imports: dict[str, str] = {
7102
7109
  "LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
7103
7110
  "LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
7104
7111
  "LakehouseConnectionType": ".lakehouseconnectiontype",
7112
+ "ListConfigGroupByProductProduct": ".listconfiggroupbyproductop",
7113
+ "ListConfigGroupByProductRequest": ".listconfiggroupbyproductop",
7114
+ "ListConfigGroupByProductRequestTypedDict": ".listconfiggroupbyproductop",
7115
+ "ListConfigGroupByProductResponse": ".listconfiggroupbyproductop",
7116
+ "ListConfigGroupByProductResponseTypedDict": ".listconfiggroupbyproductop",
7105
7117
  "ListInputResponse": ".listinputop",
7106
7118
  "ListInputResponseTypedDict": ".listinputop",
7119
+ "ListMasterWorkerEntryRequest": ".listmasterworkerentryop",
7120
+ "ListMasterWorkerEntryRequestTypedDict": ".listmasterworkerentryop",
7121
+ "ListMasterWorkerEntryResponse": ".listmasterworkerentryop",
7122
+ "ListMasterWorkerEntryResponseTypedDict": ".listmasterworkerentryop",
7107
7123
  "ListOutputResponse": ".listoutputop",
7108
7124
  "ListOutputResponseTypedDict": ".listoutputop",
7109
7125
  "ListPipelineResponse": ".listpipelineop",
@@ -8325,18 +8341,20 @@ _dynamic_imports: dict[str, str] = {
8325
8341
  "SecurityTypedDict": ".security",
8326
8342
  "TeamAccessControlList": ".teamaccesscontrollist",
8327
8343
  "TeamAccessControlListTypedDict": ".teamaccesscontrollist",
8344
+ "UpdateConfigGroupByProductAndIDProduct": ".updateconfiggroupbyproductandidop",
8345
+ "UpdateConfigGroupByProductAndIDRequest": ".updateconfiggroupbyproductandidop",
8346
+ "UpdateConfigGroupByProductAndIDRequestTypedDict": ".updateconfiggroupbyproductandidop",
8347
+ "UpdateConfigGroupByProductAndIDResponse": ".updateconfiggroupbyproductandidop",
8348
+ "UpdateConfigGroupByProductAndIDResponseTypedDict": ".updateconfiggroupbyproductandidop",
8349
+ "UpdateConfigGroupDeployByProductAndIDProduct": ".updateconfiggroupdeploybyproductandidop",
8350
+ "UpdateConfigGroupDeployByProductAndIDRequest": ".updateconfiggroupdeploybyproductandidop",
8351
+ "UpdateConfigGroupDeployByProductAndIDRequestTypedDict": ".updateconfiggroupdeploybyproductandidop",
8352
+ "UpdateConfigGroupDeployByProductAndIDResponse": ".updateconfiggroupdeploybyproductandidop",
8353
+ "UpdateConfigGroupDeployByProductAndIDResponseTypedDict": ".updateconfiggroupdeploybyproductandidop",
8328
8354
  "UpdateCriblLakeDatasetByLakeIDAndIDRequest": ".updatecribllakedatasetbylakeidandidop",
8329
8355
  "UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".updatecribllakedatasetbylakeidandidop",
8330
8356
  "UpdateCriblLakeDatasetByLakeIDAndIDResponse": ".updatecribllakedatasetbylakeidandidop",
8331
8357
  "UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict": ".updatecribllakedatasetbylakeidandidop",
8332
- "UpdateGroupsByIDRequest": ".updategroupsbyidop",
8333
- "UpdateGroupsByIDRequestTypedDict": ".updategroupsbyidop",
8334
- "UpdateGroupsByIDResponse": ".updategroupsbyidop",
8335
- "UpdateGroupsByIDResponseTypedDict": ".updategroupsbyidop",
8336
- "UpdateGroupsDeployByIDRequest": ".updategroupsdeploybyidop",
8337
- "UpdateGroupsDeployByIDRequestTypedDict": ".updategroupsdeploybyidop",
8338
- "UpdateGroupsDeployByIDResponse": ".updategroupsdeploybyidop",
8339
- "UpdateGroupsDeployByIDResponseTypedDict": ".updategroupsdeploybyidop",
8340
8358
  "UpdateHecTokenRequest": ".updatehectokenrequest",
8341
8359
  "UpdateHecTokenRequestMetadatum": ".updatehectokenrequest",
8342
8360
  "UpdateHecTokenRequestMetadatumTypedDict": ".updatehectokenrequest",
@@ -9,26 +9,26 @@ from typing import List, Optional
9
9
  from typing_extensions import Annotated, NotRequired, TypedDict
10
10
 
11
11
 
12
- class CreateProductsGroupsByProductProduct(str, Enum):
13
- r"""Cribl Product"""
12
+ class CreateConfigGroupByProductProduct(str, Enum):
13
+ r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
14
14
 
15
15
  STREAM = "stream"
16
16
  EDGE = "edge"
17
17
 
18
18
 
19
- class CreateProductsGroupsByProductRequestTypedDict(TypedDict):
20
- product: CreateProductsGroupsByProductProduct
21
- r"""Cribl Product"""
19
+ class CreateConfigGroupByProductRequestTypedDict(TypedDict):
20
+ product: CreateConfigGroupByProductProduct
21
+ r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
22
22
  config_group: ConfigGroupTypedDict
23
23
  r"""ConfigGroup object"""
24
24
 
25
25
 
26
- class CreateProductsGroupsByProductRequest(BaseModel):
26
+ class CreateConfigGroupByProductRequest(BaseModel):
27
27
  product: Annotated[
28
- CreateProductsGroupsByProductProduct,
28
+ CreateConfigGroupByProductProduct,
29
29
  FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
30
30
  ]
31
- r"""Cribl Product"""
31
+ r"""Name of the Cribl product to add the Worker Group or Edge Fleet to."""
32
32
 
33
33
  config_group: Annotated[
34
34
  ConfigGroup,
@@ -37,7 +37,7 @@ class CreateProductsGroupsByProductRequest(BaseModel):
37
37
  r"""ConfigGroup object"""
38
38
 
39
39
 
40
- class CreateProductsGroupsByProductResponseTypedDict(TypedDict):
40
+ class CreateConfigGroupByProductResponseTypedDict(TypedDict):
41
41
  r"""a list of ConfigGroup objects"""
42
42
 
43
43
  count: NotRequired[int]
@@ -45,7 +45,7 @@ class CreateProductsGroupsByProductResponseTypedDict(TypedDict):
45
45
  items: NotRequired[List[ConfigGroupTypedDict]]
46
46
 
47
47
 
48
- class CreateProductsGroupsByProductResponse(BaseModel):
48
+ class CreateConfigGroupByProductResponse(BaseModel):
49
49
  r"""a list of ConfigGroup objects"""
50
50
 
51
51
  count: Optional[int] = None