cribl-control-plane 0.0.29__py3-none-any.whl → 0.0.31__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 (30) hide show
  1. cribl_control_plane/_version.py +3 -3
  2. cribl_control_plane/acl.py +30 -20
  3. cribl_control_plane/commits.py +180 -0
  4. cribl_control_plane/configs_versions.py +22 -16
  5. cribl_control_plane/groups_sdk.py +464 -428
  6. cribl_control_plane/models/__init__.py +206 -169
  7. cribl_control_plane/models/{createproductsgroupsbyproductop.py → createconfiggroupbyproductop.py} +10 -10
  8. cribl_control_plane/models/createroutesappendbyidop.py +6 -5
  9. cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +53 -0
  10. cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +78 -0
  11. cribl_control_plane/models/{getproductsgroupsaclteamsbyproductandidop.py → getconfiggroupaclteamsbyproductandidop.py} +15 -15
  12. cribl_control_plane/models/getconfiggroupbyproductandidop.py +65 -0
  13. cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +52 -0
  14. cribl_control_plane/models/{getsummaryworkersop.py → getmasterworkerentryop.py} +4 -4
  15. cribl_control_plane/models/getversionop.py +46 -0
  16. cribl_control_plane/models/gitcommitsummary.py +3 -3
  17. cribl_control_plane/models/gitlogresult.py +33 -0
  18. cribl_control_plane/models/{getproductsgroupsbyproductop.py → listconfiggroupbyproductop.py} +12 -12
  19. cribl_control_plane/models/{getworkersop.py → listmasterworkerentryop.py} +4 -4
  20. cribl_control_plane/models/{updategroupsbyidop.py → updateconfiggroupbyproductandidop.py} +22 -6
  21. cribl_control_plane/models/{updategroupsdeploybyidop.py → updateconfiggroupdeploybyproductandidop.py} +22 -6
  22. cribl_control_plane/nodes.py +70 -62
  23. cribl_control_plane/teams.py +20 -20
  24. {cribl_control_plane-0.0.29.dist-info → cribl_control_plane-0.0.31.dist-info}/METADATA +10 -9
  25. {cribl_control_plane-0.0.29.dist-info → cribl_control_plane-0.0.31.dist-info}/RECORD +26 -24
  26. cribl_control_plane/models/deletegroupsbyidop.py +0 -37
  27. cribl_control_plane/models/getgroupsaclbyidop.py +0 -63
  28. cribl_control_plane/models/getgroupsbyidop.py +0 -49
  29. cribl_control_plane/models/getgroupsconfigversionbyidop.py +0 -36
  30. {cribl_control_plane-0.0.29.dist-info → cribl_control_plane-0.0.31.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,
@@ -285,6 +282,12 @@ if TYPE_CHECKING:
285
282
  GetVersionInfoResponse,
286
283
  GetVersionInfoResponseTypedDict,
287
284
  )
285
+ from .getversionop import (
286
+ GetVersionRequest,
287
+ GetVersionRequestTypedDict,
288
+ GetVersionResponse,
289
+ GetVersionResponseTypedDict,
290
+ )
288
291
  from .getversionshowop import (
289
292
  GetVersionShowRequest,
290
293
  GetVersionShowRequestTypedDict,
@@ -297,12 +300,6 @@ if TYPE_CHECKING:
297
300
  GetVersionStatusResponse,
298
301
  GetVersionStatusResponseTypedDict,
299
302
  )
300
- from .getworkersop import (
301
- GetWorkersRequest,
302
- GetWorkersRequestTypedDict,
303
- GetWorkersResponse,
304
- GetWorkersResponseTypedDict,
305
- )
306
303
  from .gitcommitparams import GitCommitParams, GitCommitParamsTypedDict
307
304
  from .gitcommitsummary import (
308
305
  Author,
@@ -317,6 +314,7 @@ if TYPE_CHECKING:
317
314
  from .gitfile import GitFile, GitFileTypedDict
318
315
  from .gitfilesresponse import GitFilesResponse, GitFilesResponseTypedDict
319
316
  from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteTypedDict
317
+ from .gitlogresult import GitLogResult, GitLogResultTypedDict
320
318
  from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
321
319
  from .gitrevertresult import (
322
320
  Audit,
@@ -1607,7 +1605,20 @@ if TYPE_CHECKING:
1607
1605
  LakeDatasetSearchConfigTypedDict,
1608
1606
  )
1609
1607
  from .lakehouseconnectiontype import LakehouseConnectionType
1608
+ from .listconfiggroupbyproductop import (
1609
+ ListConfigGroupByProductProduct,
1610
+ ListConfigGroupByProductRequest,
1611
+ ListConfigGroupByProductRequestTypedDict,
1612
+ ListConfigGroupByProductResponse,
1613
+ ListConfigGroupByProductResponseTypedDict,
1614
+ )
1610
1615
  from .listinputop import ListInputResponse, ListInputResponseTypedDict
1616
+ from .listmasterworkerentryop import (
1617
+ ListMasterWorkerEntryRequest,
1618
+ ListMasterWorkerEntryRequestTypedDict,
1619
+ ListMasterWorkerEntryResponse,
1620
+ ListMasterWorkerEntryResponseTypedDict,
1621
+ )
1611
1622
  from .listoutputop import ListOutputResponse, ListOutputResponseTypedDict
1612
1623
  from .listpipelineop import ListPipelineResponse, ListPipelineResponseTypedDict
1613
1624
  from .listroutesop import ListRoutesResponse, ListRoutesResponseTypedDict
@@ -2954,24 +2965,26 @@ if TYPE_CHECKING:
2954
2965
  TeamAccessControlList,
2955
2966
  TeamAccessControlListTypedDict,
2956
2967
  )
2968
+ from .updateconfiggroupbyproductandidop import (
2969
+ UpdateConfigGroupByProductAndIDProduct,
2970
+ UpdateConfigGroupByProductAndIDRequest,
2971
+ UpdateConfigGroupByProductAndIDRequestTypedDict,
2972
+ UpdateConfigGroupByProductAndIDResponse,
2973
+ UpdateConfigGroupByProductAndIDResponseTypedDict,
2974
+ )
2975
+ from .updateconfiggroupdeploybyproductandidop import (
2976
+ UpdateConfigGroupDeployByProductAndIDProduct,
2977
+ UpdateConfigGroupDeployByProductAndIDRequest,
2978
+ UpdateConfigGroupDeployByProductAndIDRequestTypedDict,
2979
+ UpdateConfigGroupDeployByProductAndIDResponse,
2980
+ UpdateConfigGroupDeployByProductAndIDResponseTypedDict,
2981
+ )
2957
2982
  from .updatecribllakedatasetbylakeidandidop import (
2958
2983
  UpdateCriblLakeDatasetByLakeIDAndIDRequest,
2959
2984
  UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict,
2960
2985
  UpdateCriblLakeDatasetByLakeIDAndIDResponse,
2961
2986
  UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict,
2962
2987
  )
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
2988
  from .updatehectokenrequest import (
2976
2989
  UpdateHecTokenRequest,
2977
2990
  UpdateHecTokenRequestMetadatum,
@@ -3070,6 +3083,11 @@ __all__ = [
3070
3083
  "Container",
3071
3084
  "ContainerMode",
3072
3085
  "ContainerTypedDict",
3086
+ "CreateConfigGroupByProductProduct",
3087
+ "CreateConfigGroupByProductRequest",
3088
+ "CreateConfigGroupByProductRequestTypedDict",
3089
+ "CreateConfigGroupByProductResponse",
3090
+ "CreateConfigGroupByProductResponseTypedDict",
3073
3091
  "CreateCriblLakeDatasetByLakeIDRequest",
3074
3092
  "CreateCriblLakeDatasetByLakeIDRequestTypedDict",
3075
3093
  "CreateCriblLakeDatasetByLakeIDResponse",
@@ -3090,11 +3108,6 @@ __all__ = [
3090
3108
  "CreatePacksResponseTypedDict",
3091
3109
  "CreatePipelineResponse",
3092
3110
  "CreatePipelineResponseTypedDict",
3093
- "CreateProductsGroupsByProductProduct",
3094
- "CreateProductsGroupsByProductRequest",
3095
- "CreateProductsGroupsByProductRequestTypedDict",
3096
- "CreateProductsGroupsByProductResponse",
3097
- "CreateProductsGroupsByProductResponseTypedDict",
3098
3111
  "CreateRoutesAppendByIDRequest",
3099
3112
  "CreateRoutesAppendByIDRequestTypedDict",
3100
3113
  "CreateRoutesAppendByIDResponse",
@@ -3128,14 +3141,15 @@ __all__ = [
3128
3141
  "DatasetMetadataRunInfo",
3129
3142
  "DatasetMetadataRunInfoTypedDict",
3130
3143
  "DatasetMetadataTypedDict",
3144
+ "DeleteConfigGroupByProductAndIDProduct",
3145
+ "DeleteConfigGroupByProductAndIDRequest",
3146
+ "DeleteConfigGroupByProductAndIDRequestTypedDict",
3147
+ "DeleteConfigGroupByProductAndIDResponse",
3148
+ "DeleteConfigGroupByProductAndIDResponseTypedDict",
3131
3149
  "DeleteCriblLakeDatasetByLakeIDAndIDRequest",
3132
3150
  "DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
3133
3151
  "DeleteCriblLakeDatasetByLakeIDAndIDResponse",
3134
3152
  "DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict",
3135
- "DeleteGroupsByIDRequest",
3136
- "DeleteGroupsByIDRequestTypedDict",
3137
- "DeleteGroupsByIDResponse",
3138
- "DeleteGroupsByIDResponseTypedDict",
3139
3153
  "DeleteInputByIDRequest",
3140
3154
  "DeleteInputByIDRequestTypedDict",
3141
3155
  "DeleteInputByIDResponse",
@@ -3194,6 +3208,28 @@ __all__ = [
3194
3208
  "FlushPeriodSecTypedDict",
3195
3209
  "FunctionSpecificConfigs",
3196
3210
  "FunctionSpecificConfigsTypedDict",
3211
+ "GetConfigGroupACLByProductAndIDProduct",
3212
+ "GetConfigGroupACLByProductAndIDRequest",
3213
+ "GetConfigGroupACLByProductAndIDRequestTypedDict",
3214
+ "GetConfigGroupACLByProductAndIDResponse",
3215
+ "GetConfigGroupACLByProductAndIDResponseTypedDict",
3216
+ "GetConfigGroupACLByProductAndIDType",
3217
+ "GetConfigGroupACLTeamsByProductAndIDProduct",
3218
+ "GetConfigGroupACLTeamsByProductAndIDRequest",
3219
+ "GetConfigGroupACLTeamsByProductAndIDRequestTypedDict",
3220
+ "GetConfigGroupACLTeamsByProductAndIDResponse",
3221
+ "GetConfigGroupACLTeamsByProductAndIDResponseTypedDict",
3222
+ "GetConfigGroupACLTeamsByProductAndIDType",
3223
+ "GetConfigGroupByProductAndIDProduct",
3224
+ "GetConfigGroupByProductAndIDRequest",
3225
+ "GetConfigGroupByProductAndIDRequestTypedDict",
3226
+ "GetConfigGroupByProductAndIDResponse",
3227
+ "GetConfigGroupByProductAndIDResponseTypedDict",
3228
+ "GetConfigGroupConfigVersionByProductAndIDProduct",
3229
+ "GetConfigGroupConfigVersionByProductAndIDRequest",
3230
+ "GetConfigGroupConfigVersionByProductAndIDRequestTypedDict",
3231
+ "GetConfigGroupConfigVersionByProductAndIDResponse",
3232
+ "GetConfigGroupConfigVersionByProductAndIDResponseTypedDict",
3197
3233
  "GetCriblLakeDatasetByLakeIDAndIDRequest",
3198
3234
  "GetCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
3199
3235
  "GetCriblLakeDatasetByLakeIDAndIDResponse",
@@ -3202,23 +3238,14 @@ __all__ = [
3202
3238
  "GetCriblLakeDatasetByLakeIDRequestTypedDict",
3203
3239
  "GetCriblLakeDatasetByLakeIDResponse",
3204
3240
  "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
3241
  "GetInputByIDRequest",
3219
3242
  "GetInputByIDRequestTypedDict",
3220
3243
  "GetInputByIDResponse",
3221
3244
  "GetInputByIDResponseTypedDict",
3245
+ "GetMasterWorkerEntryRequest",
3246
+ "GetMasterWorkerEntryRequestTypedDict",
3247
+ "GetMasterWorkerEntryResponse",
3248
+ "GetMasterWorkerEntryResponseTypedDict",
3222
3249
  "GetOutputByIDRequest",
3223
3250
  "GetOutputByIDRequestTypedDict",
3224
3251
  "GetOutputByIDResponse",
@@ -3239,17 +3266,6 @@ __all__ = [
3239
3266
  "GetPipelineByIDRequestTypedDict",
3240
3267
  "GetPipelineByIDResponse",
3241
3268
  "GetPipelineByIDResponseTypedDict",
3242
- "GetProductsGroupsACLTeamsByProductAndIDProduct",
3243
- "GetProductsGroupsACLTeamsByProductAndIDRequest",
3244
- "GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict",
3245
- "GetProductsGroupsACLTeamsByProductAndIDResponse",
3246
- "GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict",
3247
- "GetProductsGroupsACLTeamsByProductAndIDType",
3248
- "GetProductsGroupsByProductProduct",
3249
- "GetProductsGroupsByProductRequest",
3250
- "GetProductsGroupsByProductRequestTypedDict",
3251
- "GetProductsGroupsByProductResponse",
3252
- "GetProductsGroupsByProductResponseTypedDict",
3253
3269
  "GetRoutesByIDRequest",
3254
3270
  "GetRoutesByIDRequestTypedDict",
3255
3271
  "GetRoutesByIDResponse",
@@ -3259,10 +3275,6 @@ __all__ = [
3259
3275
  "GetSummaryRequestTypedDict",
3260
3276
  "GetSummaryResponse",
3261
3277
  "GetSummaryResponseTypedDict",
3262
- "GetSummaryWorkersRequest",
3263
- "GetSummaryWorkersRequestTypedDict",
3264
- "GetSummaryWorkersResponse",
3265
- "GetSummaryWorkersResponseTypedDict",
3266
3278
  "GetVersionBranchResponse",
3267
3279
  "GetVersionBranchResponseTypedDict",
3268
3280
  "GetVersionCountRequest",
@@ -3279,6 +3291,10 @@ __all__ = [
3279
3291
  "GetVersionFilesResponseTypedDict",
3280
3292
  "GetVersionInfoResponse",
3281
3293
  "GetVersionInfoResponseTypedDict",
3294
+ "GetVersionRequest",
3295
+ "GetVersionRequestTypedDict",
3296
+ "GetVersionResponse",
3297
+ "GetVersionResponseTypedDict",
3282
3298
  "GetVersionShowRequest",
3283
3299
  "GetVersionShowRequestTypedDict",
3284
3300
  "GetVersionShowResponse",
@@ -3287,10 +3303,6 @@ __all__ = [
3287
3303
  "GetVersionStatusRequestTypedDict",
3288
3304
  "GetVersionStatusResponse",
3289
3305
  "GetVersionStatusResponseTypedDict",
3290
- "GetWorkersRequest",
3291
- "GetWorkersRequestTypedDict",
3292
- "GetWorkersResponse",
3293
- "GetWorkersResponseTypedDict",
3294
3306
  "Git",
3295
3307
  "GitCommitParams",
3296
3308
  "GitCommitParamsTypedDict",
@@ -3304,6 +3316,8 @@ __all__ = [
3304
3316
  "GitFilesResponseTypedDict",
3305
3317
  "GitInfo",
3306
3318
  "GitInfoTypedDict",
3319
+ "GitLogResult",
3320
+ "GitLogResultTypedDict",
3307
3321
  "GitRevertParams",
3308
3322
  "GitRevertParamsTypedDict",
3309
3323
  "GitRevertResult",
@@ -4409,8 +4423,17 @@ __all__ = [
4409
4423
  "LakehouseConnectionType",
4410
4424
  "LastMetrics",
4411
4425
  "LastMetricsTypedDict",
4426
+ "ListConfigGroupByProductProduct",
4427
+ "ListConfigGroupByProductRequest",
4428
+ "ListConfigGroupByProductRequestTypedDict",
4429
+ "ListConfigGroupByProductResponse",
4430
+ "ListConfigGroupByProductResponseTypedDict",
4412
4431
  "ListInputResponse",
4413
4432
  "ListInputResponseTypedDict",
4433
+ "ListMasterWorkerEntryRequest",
4434
+ "ListMasterWorkerEntryRequestTypedDict",
4435
+ "ListMasterWorkerEntryResponse",
4436
+ "ListMasterWorkerEntryResponseTypedDict",
4414
4437
  "ListOutputResponse",
4415
4438
  "ListOutputResponseTypedDict",
4416
4439
  "ListPipelineResponse",
@@ -5645,18 +5668,20 @@ __all__ = [
5645
5668
  "TelemetryType",
5646
5669
  "TimestampFormat",
5647
5670
  "TimestampPrecision",
5671
+ "UpdateConfigGroupByProductAndIDProduct",
5672
+ "UpdateConfigGroupByProductAndIDRequest",
5673
+ "UpdateConfigGroupByProductAndIDRequestTypedDict",
5674
+ "UpdateConfigGroupByProductAndIDResponse",
5675
+ "UpdateConfigGroupByProductAndIDResponseTypedDict",
5676
+ "UpdateConfigGroupDeployByProductAndIDProduct",
5677
+ "UpdateConfigGroupDeployByProductAndIDRequest",
5678
+ "UpdateConfigGroupDeployByProductAndIDRequestTypedDict",
5679
+ "UpdateConfigGroupDeployByProductAndIDResponse",
5680
+ "UpdateConfigGroupDeployByProductAndIDResponseTypedDict",
5648
5681
  "UpdateCriblLakeDatasetByLakeIDAndIDRequest",
5649
5682
  "UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
5650
5683
  "UpdateCriblLakeDatasetByLakeIDAndIDResponse",
5651
5684
  "UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict",
5652
- "UpdateGroupsByIDRequest",
5653
- "UpdateGroupsByIDRequestTypedDict",
5654
- "UpdateGroupsByIDResponse",
5655
- "UpdateGroupsByIDResponseTypedDict",
5656
- "UpdateGroupsDeployByIDRequest",
5657
- "UpdateGroupsDeployByIDRequestTypedDict",
5658
- "UpdateGroupsDeployByIDResponse",
5659
- "UpdateGroupsDeployByIDResponseTypedDict",
5660
5685
  "UpdateHecTokenRequest",
5661
5686
  "UpdateHecTokenRequestMetadatum",
5662
5687
  "UpdateHecTokenRequestMetadatumTypedDict",
@@ -5719,6 +5744,11 @@ _dynamic_imports: dict[str, str] = {
5719
5744
  "ConfigGroupLookupsLookup": ".configgrouplookups",
5720
5745
  "ConfigGroupLookupsLookupTypedDict": ".configgrouplookups",
5721
5746
  "ConfigGroupLookupsTypedDict": ".configgrouplookups",
5747
+ "CreateConfigGroupByProductProduct": ".createconfiggroupbyproductop",
5748
+ "CreateConfigGroupByProductRequest": ".createconfiggroupbyproductop",
5749
+ "CreateConfigGroupByProductRequestTypedDict": ".createconfiggroupbyproductop",
5750
+ "CreateConfigGroupByProductResponse": ".createconfiggroupbyproductop",
5751
+ "CreateConfigGroupByProductResponseTypedDict": ".createconfiggroupbyproductop",
5722
5752
  "CreateCriblLakeDatasetByLakeIDRequest": ".createcribllakedatasetbylakeidop",
5723
5753
  "CreateCriblLakeDatasetByLakeIDRequestTypedDict": ".createcribllakedatasetbylakeidop",
5724
5754
  "CreateCriblLakeDatasetByLakeIDResponse": ".createcribllakedatasetbylakeidop",
@@ -5739,11 +5769,6 @@ _dynamic_imports: dict[str, str] = {
5739
5769
  "CreatePacksResponseTypedDict": ".createpacksop",
5740
5770
  "CreatePipelineResponse": ".createpipelineop",
5741
5771
  "CreatePipelineResponseTypedDict": ".createpipelineop",
5742
- "CreateProductsGroupsByProductProduct": ".createproductsgroupsbyproductop",
5743
- "CreateProductsGroupsByProductRequest": ".createproductsgroupsbyproductop",
5744
- "CreateProductsGroupsByProductRequestTypedDict": ".createproductsgroupsbyproductop",
5745
- "CreateProductsGroupsByProductResponse": ".createproductsgroupsbyproductop",
5746
- "CreateProductsGroupsByProductResponseTypedDict": ".createproductsgroupsbyproductop",
5747
5772
  "CreateRoutesAppendByIDRequest": ".createroutesappendbyidop",
5748
5773
  "CreateRoutesAppendByIDRequestTypedDict": ".createroutesappendbyidop",
5749
5774
  "CreateRoutesAppendByIDResponse": ".createroutesappendbyidop",
@@ -5772,14 +5797,15 @@ _dynamic_imports: dict[str, str] = {
5772
5797
  "ScanMode": ".datasetmetadata",
5773
5798
  "DatasetMetadataRunInfo": ".datasetmetadataruninfo",
5774
5799
  "DatasetMetadataRunInfoTypedDict": ".datasetmetadataruninfo",
5800
+ "DeleteConfigGroupByProductAndIDProduct": ".deleteconfiggroupbyproductandidop",
5801
+ "DeleteConfigGroupByProductAndIDRequest": ".deleteconfiggroupbyproductandidop",
5802
+ "DeleteConfigGroupByProductAndIDRequestTypedDict": ".deleteconfiggroupbyproductandidop",
5803
+ "DeleteConfigGroupByProductAndIDResponse": ".deleteconfiggroupbyproductandidop",
5804
+ "DeleteConfigGroupByProductAndIDResponseTypedDict": ".deleteconfiggroupbyproductandidop",
5775
5805
  "DeleteCriblLakeDatasetByLakeIDAndIDRequest": ".deletecribllakedatasetbylakeidandidop",
5776
5806
  "DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".deletecribllakedatasetbylakeidandidop",
5777
5807
  "DeleteCriblLakeDatasetByLakeIDAndIDResponse": ".deletecribllakedatasetbylakeidandidop",
5778
5808
  "DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict": ".deletecribllakedatasetbylakeidandidop",
5779
- "DeleteGroupsByIDRequest": ".deletegroupsbyidop",
5780
- "DeleteGroupsByIDRequestTypedDict": ".deletegroupsbyidop",
5781
- "DeleteGroupsByIDResponse": ".deletegroupsbyidop",
5782
- "DeleteGroupsByIDResponseTypedDict": ".deletegroupsbyidop",
5783
5809
  "DeleteInputByIDRequest": ".deleteinputbyidop",
5784
5810
  "DeleteInputByIDRequestTypedDict": ".deleteinputbyidop",
5785
5811
  "DeleteInputByIDResponse": ".deleteinputbyidop",
@@ -5812,6 +5838,28 @@ _dynamic_imports: dict[str, str] = {
5812
5838
  "DistributedSummaryTypedDict": ".distributedsummary",
5813
5839
  "DistributedSummaryWorkers": ".distributedsummary",
5814
5840
  "DistributedSummaryWorkersTypedDict": ".distributedsummary",
5841
+ "GetConfigGroupACLByProductAndIDProduct": ".getconfiggroupaclbyproductandidop",
5842
+ "GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
5843
+ "GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
5844
+ "GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
5845
+ "GetConfigGroupACLByProductAndIDResponseTypedDict": ".getconfiggroupaclbyproductandidop",
5846
+ "GetConfigGroupACLByProductAndIDType": ".getconfiggroupaclbyproductandidop",
5847
+ "GetConfigGroupACLTeamsByProductAndIDProduct": ".getconfiggroupaclteamsbyproductandidop",
5848
+ "GetConfigGroupACLTeamsByProductAndIDRequest": ".getconfiggroupaclteamsbyproductandidop",
5849
+ "GetConfigGroupACLTeamsByProductAndIDRequestTypedDict": ".getconfiggroupaclteamsbyproductandidop",
5850
+ "GetConfigGroupACLTeamsByProductAndIDResponse": ".getconfiggroupaclteamsbyproductandidop",
5851
+ "GetConfigGroupACLTeamsByProductAndIDResponseTypedDict": ".getconfiggroupaclteamsbyproductandidop",
5852
+ "GetConfigGroupACLTeamsByProductAndIDType": ".getconfiggroupaclteamsbyproductandidop",
5853
+ "GetConfigGroupByProductAndIDProduct": ".getconfiggroupbyproductandidop",
5854
+ "GetConfigGroupByProductAndIDRequest": ".getconfiggroupbyproductandidop",
5855
+ "GetConfigGroupByProductAndIDRequestTypedDict": ".getconfiggroupbyproductandidop",
5856
+ "GetConfigGroupByProductAndIDResponse": ".getconfiggroupbyproductandidop",
5857
+ "GetConfigGroupByProductAndIDResponseTypedDict": ".getconfiggroupbyproductandidop",
5858
+ "GetConfigGroupConfigVersionByProductAndIDProduct": ".getconfiggroupconfigversionbyproductandidop",
5859
+ "GetConfigGroupConfigVersionByProductAndIDRequest": ".getconfiggroupconfigversionbyproductandidop",
5860
+ "GetConfigGroupConfigVersionByProductAndIDRequestTypedDict": ".getconfiggroupconfigversionbyproductandidop",
5861
+ "GetConfigGroupConfigVersionByProductAndIDResponse": ".getconfiggroupconfigversionbyproductandidop",
5862
+ "GetConfigGroupConfigVersionByProductAndIDResponseTypedDict": ".getconfiggroupconfigversionbyproductandidop",
5815
5863
  "GetCriblLakeDatasetByLakeIDAndIDRequest": ".getcribllakedatasetbylakeidandidop",
5816
5864
  "GetCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".getcribllakedatasetbylakeidandidop",
5817
5865
  "GetCriblLakeDatasetByLakeIDAndIDResponse": ".getcribllakedatasetbylakeidandidop",
@@ -5820,23 +5868,14 @@ _dynamic_imports: dict[str, str] = {
5820
5868
  "GetCriblLakeDatasetByLakeIDRequestTypedDict": ".getcribllakedatasetbylakeidop",
5821
5869
  "GetCriblLakeDatasetByLakeIDResponse": ".getcribllakedatasetbylakeidop",
5822
5870
  "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
5871
  "GetInputByIDRequest": ".getinputbyidop",
5837
5872
  "GetInputByIDRequestTypedDict": ".getinputbyidop",
5838
5873
  "GetInputByIDResponse": ".getinputbyidop",
5839
5874
  "GetInputByIDResponseTypedDict": ".getinputbyidop",
5875
+ "GetMasterWorkerEntryRequest": ".getmasterworkerentryop",
5876
+ "GetMasterWorkerEntryRequestTypedDict": ".getmasterworkerentryop",
5877
+ "GetMasterWorkerEntryResponse": ".getmasterworkerentryop",
5878
+ "GetMasterWorkerEntryResponseTypedDict": ".getmasterworkerentryop",
5840
5879
  "GetOutputByIDRequest": ".getoutputbyidop",
5841
5880
  "GetOutputByIDRequestTypedDict": ".getoutputbyidop",
5842
5881
  "GetOutputByIDResponse": ".getoutputbyidop",
@@ -5857,17 +5896,6 @@ _dynamic_imports: dict[str, str] = {
5857
5896
  "GetPipelineByIDRequestTypedDict": ".getpipelinebyidop",
5858
5897
  "GetPipelineByIDResponse": ".getpipelinebyidop",
5859
5898
  "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
5899
  "GetRoutesByIDRequest": ".getroutesbyidop",
5872
5900
  "GetRoutesByIDRequestTypedDict": ".getroutesbyidop",
5873
5901
  "GetRoutesByIDResponse": ".getroutesbyidop",
@@ -5877,10 +5905,6 @@ _dynamic_imports: dict[str, str] = {
5877
5905
  "GetSummaryRequestTypedDict": ".getsummaryop",
5878
5906
  "GetSummaryResponse": ".getsummaryop",
5879
5907
  "GetSummaryResponseTypedDict": ".getsummaryop",
5880
- "GetSummaryWorkersRequest": ".getsummaryworkersop",
5881
- "GetSummaryWorkersRequestTypedDict": ".getsummaryworkersop",
5882
- "GetSummaryWorkersResponse": ".getsummaryworkersop",
5883
- "GetSummaryWorkersResponseTypedDict": ".getsummaryworkersop",
5884
5908
  "GetVersionBranchResponse": ".getversionbranchop",
5885
5909
  "GetVersionBranchResponseTypedDict": ".getversionbranchop",
5886
5910
  "GetVersionCountRequest": ".getversioncountop",
@@ -5897,6 +5921,10 @@ _dynamic_imports: dict[str, str] = {
5897
5921
  "GetVersionFilesResponseTypedDict": ".getversionfilesop",
5898
5922
  "GetVersionInfoResponse": ".getversioninfoop",
5899
5923
  "GetVersionInfoResponseTypedDict": ".getversioninfoop",
5924
+ "GetVersionRequest": ".getversionop",
5925
+ "GetVersionRequestTypedDict": ".getversionop",
5926
+ "GetVersionResponse": ".getversionop",
5927
+ "GetVersionResponseTypedDict": ".getversionop",
5900
5928
  "GetVersionShowRequest": ".getversionshowop",
5901
5929
  "GetVersionShowRequestTypedDict": ".getversionshowop",
5902
5930
  "GetVersionShowResponse": ".getversionshowop",
@@ -5905,10 +5933,6 @@ _dynamic_imports: dict[str, str] = {
5905
5933
  "GetVersionStatusRequestTypedDict": ".getversionstatusop",
5906
5934
  "GetVersionStatusResponse": ".getversionstatusop",
5907
5935
  "GetVersionStatusResponseTypedDict": ".getversionstatusop",
5908
- "GetWorkersRequest": ".getworkersop",
5909
- "GetWorkersRequestTypedDict": ".getworkersop",
5910
- "GetWorkersResponse": ".getworkersop",
5911
- "GetWorkersResponseTypedDict": ".getworkersop",
5912
5936
  "GitCommitParams": ".gitcommitparams",
5913
5937
  "GitCommitParamsTypedDict": ".gitcommitparams",
5914
5938
  "Author": ".gitcommitsummary",
@@ -5927,6 +5951,8 @@ _dynamic_imports: dict[str, str] = {
5927
5951
  "GitInfoTypedDict": ".gitinfo",
5928
5952
  "Remote": ".gitinfo",
5929
5953
  "RemoteTypedDict": ".gitinfo",
5954
+ "GitLogResult": ".gitlogresult",
5955
+ "GitLogResultTypedDict": ".gitlogresult",
5930
5956
  "GitRevertParams": ".gitrevertparams",
5931
5957
  "GitRevertParamsTypedDict": ".gitrevertparams",
5932
5958
  "Audit": ".gitrevertresult",
@@ -7102,8 +7128,17 @@ _dynamic_imports: dict[str, str] = {
7102
7128
  "LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
7103
7129
  "LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
7104
7130
  "LakehouseConnectionType": ".lakehouseconnectiontype",
7131
+ "ListConfigGroupByProductProduct": ".listconfiggroupbyproductop",
7132
+ "ListConfigGroupByProductRequest": ".listconfiggroupbyproductop",
7133
+ "ListConfigGroupByProductRequestTypedDict": ".listconfiggroupbyproductop",
7134
+ "ListConfigGroupByProductResponse": ".listconfiggroupbyproductop",
7135
+ "ListConfigGroupByProductResponseTypedDict": ".listconfiggroupbyproductop",
7105
7136
  "ListInputResponse": ".listinputop",
7106
7137
  "ListInputResponseTypedDict": ".listinputop",
7138
+ "ListMasterWorkerEntryRequest": ".listmasterworkerentryop",
7139
+ "ListMasterWorkerEntryRequestTypedDict": ".listmasterworkerentryop",
7140
+ "ListMasterWorkerEntryResponse": ".listmasterworkerentryop",
7141
+ "ListMasterWorkerEntryResponseTypedDict": ".listmasterworkerentryop",
7107
7142
  "ListOutputResponse": ".listoutputop",
7108
7143
  "ListOutputResponseTypedDict": ".listoutputop",
7109
7144
  "ListPipelineResponse": ".listpipelineop",
@@ -8325,18 +8360,20 @@ _dynamic_imports: dict[str, str] = {
8325
8360
  "SecurityTypedDict": ".security",
8326
8361
  "TeamAccessControlList": ".teamaccesscontrollist",
8327
8362
  "TeamAccessControlListTypedDict": ".teamaccesscontrollist",
8363
+ "UpdateConfigGroupByProductAndIDProduct": ".updateconfiggroupbyproductandidop",
8364
+ "UpdateConfigGroupByProductAndIDRequest": ".updateconfiggroupbyproductandidop",
8365
+ "UpdateConfigGroupByProductAndIDRequestTypedDict": ".updateconfiggroupbyproductandidop",
8366
+ "UpdateConfigGroupByProductAndIDResponse": ".updateconfiggroupbyproductandidop",
8367
+ "UpdateConfigGroupByProductAndIDResponseTypedDict": ".updateconfiggroupbyproductandidop",
8368
+ "UpdateConfigGroupDeployByProductAndIDProduct": ".updateconfiggroupdeploybyproductandidop",
8369
+ "UpdateConfigGroupDeployByProductAndIDRequest": ".updateconfiggroupdeploybyproductandidop",
8370
+ "UpdateConfigGroupDeployByProductAndIDRequestTypedDict": ".updateconfiggroupdeploybyproductandidop",
8371
+ "UpdateConfigGroupDeployByProductAndIDResponse": ".updateconfiggroupdeploybyproductandidop",
8372
+ "UpdateConfigGroupDeployByProductAndIDResponseTypedDict": ".updateconfiggroupdeploybyproductandidop",
8328
8373
  "UpdateCriblLakeDatasetByLakeIDAndIDRequest": ".updatecribllakedatasetbylakeidandidop",
8329
8374
  "UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".updatecribllakedatasetbylakeidandidop",
8330
8375
  "UpdateCriblLakeDatasetByLakeIDAndIDResponse": ".updatecribllakedatasetbylakeidandidop",
8331
8376
  "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
8377
  "UpdateHecTokenRequest": ".updatehectokenrequest",
8341
8378
  "UpdateHecTokenRequestMetadatum": ".updatehectokenrequest",
8342
8379
  "UpdateHecTokenRequestMetadatumTypedDict": ".updatehectokenrequest",