cribl-control-plane 0.0.28__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.
- cribl_control_plane/_version.py +3 -3
- cribl_control_plane/acl.py +30 -20
- cribl_control_plane/branches.py +4 -8
- cribl_control_plane/configs_versions.py +22 -16
- cribl_control_plane/groups_sdk.py +464 -428
- cribl_control_plane/models/__init__.py +204 -177
- cribl_control_plane/models/{createproductsgroupsbyproductop.py → createconfiggroupbyproductop.py} +10 -10
- cribl_control_plane/models/currentbranchresult.py +13 -0
- cribl_control_plane/models/deleteconfiggroupbyproductandidop.py +53 -0
- cribl_control_plane/models/getconfiggroupaclbyproductandidop.py +78 -0
- cribl_control_plane/models/{getproductsgroupsaclteamsbyproductandidop.py → getconfiggroupaclteamsbyproductandidop.py} +15 -15
- cribl_control_plane/models/getconfiggroupbyproductandidop.py +65 -0
- cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py +52 -0
- cribl_control_plane/models/{getsummaryworkersop.py → getmasterworkerentryop.py} +4 -4
- cribl_control_plane/models/gitcommitsummary.py +3 -3
- cribl_control_plane/models/gitstatusresult.py +0 -3
- cribl_control_plane/models/input.py +30 -30
- cribl_control_plane/models/inputcribllakehttp.py +63 -0
- cribl_control_plane/models/inputcrowdstrike.py +7 -0
- cribl_control_plane/models/inputs3.py +7 -0
- cribl_control_plane/models/inputs3inventory.py +7 -0
- cribl_control_plane/models/inputsecuritylake.py +7 -0
- cribl_control_plane/models/{getproductsgroupsbyproductop.py → listconfiggroupbyproductop.py} +12 -12
- cribl_control_plane/models/{getworkersop.py → listmasterworkerentryop.py} +4 -4
- cribl_control_plane/models/{updategroupsbyidop.py → updateconfiggroupbyproductandidop.py} +22 -6
- cribl_control_plane/models/{updategroupsdeploybyidop.py → updateconfiggroupdeploybyproductandidop.py} +22 -6
- cribl_control_plane/nodes.py +70 -62
- cribl_control_plane/teams.py +20 -20
- {cribl_control_plane-0.0.28.dist-info → cribl_control_plane-0.0.30.dist-info}/METADATA +8 -8
- {cribl_control_plane-0.0.28.dist-info → cribl_control_plane-0.0.30.dist-info}/RECORD +31 -31
- cribl_control_plane/models/deletegroupsbyidop.py +0 -37
- cribl_control_plane/models/getgroupsaclbyidop.py +0 -63
- cribl_control_plane/models/getgroupsbyidop.py +0 -49
- cribl_control_plane/models/getgroupsconfigversionbyidop.py +0 -36
- cribl_control_plane/models/getversioncurrentbranchop.py +0 -23
- {cribl_control_plane-0.0.28.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,
|
|
@@ -95,23 +95,25 @@ if TYPE_CHECKING:
|
|
|
95
95
|
CriblLakeDatasetFormat,
|
|
96
96
|
CriblLakeDatasetTypedDict,
|
|
97
97
|
)
|
|
98
|
+
from .currentbranchresult import CurrentBranchResult, CurrentBranchResultTypedDict
|
|
98
99
|
from .datasetmetadata import DatasetMetadata, DatasetMetadataTypedDict, ScanMode
|
|
99
100
|
from .datasetmetadataruninfo import (
|
|
100
101
|
DatasetMetadataRunInfo,
|
|
101
102
|
DatasetMetadataRunInfoTypedDict,
|
|
102
103
|
)
|
|
104
|
+
from .deleteconfiggroupbyproductandidop import (
|
|
105
|
+
DeleteConfigGroupByProductAndIDProduct,
|
|
106
|
+
DeleteConfigGroupByProductAndIDRequest,
|
|
107
|
+
DeleteConfigGroupByProductAndIDRequestTypedDict,
|
|
108
|
+
DeleteConfigGroupByProductAndIDResponse,
|
|
109
|
+
DeleteConfigGroupByProductAndIDResponseTypedDict,
|
|
110
|
+
)
|
|
103
111
|
from .deletecribllakedatasetbylakeidandidop import (
|
|
104
112
|
DeleteCriblLakeDatasetByLakeIDAndIDRequest,
|
|
105
113
|
DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict,
|
|
106
114
|
DeleteCriblLakeDatasetByLakeIDAndIDResponse,
|
|
107
115
|
DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict,
|
|
108
116
|
)
|
|
109
|
-
from .deletegroupsbyidop import (
|
|
110
|
-
DeleteGroupsByIDRequest,
|
|
111
|
-
DeleteGroupsByIDRequestTypedDict,
|
|
112
|
-
DeleteGroupsByIDResponse,
|
|
113
|
-
DeleteGroupsByIDResponseTypedDict,
|
|
114
|
-
)
|
|
115
117
|
from .deleteinputbyidop import (
|
|
116
118
|
DeleteInputByIDRequest,
|
|
117
119
|
DeleteInputByIDRequestTypedDict,
|
|
@@ -157,6 +159,36 @@ if TYPE_CHECKING:
|
|
|
157
159
|
DistributedSummaryWorkers,
|
|
158
160
|
DistributedSummaryWorkersTypedDict,
|
|
159
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
|
+
)
|
|
160
192
|
from .getcribllakedatasetbylakeidandidop import (
|
|
161
193
|
GetCriblLakeDatasetByLakeIDAndIDRequest,
|
|
162
194
|
GetCriblLakeDatasetByLakeIDAndIDRequestTypedDict,
|
|
@@ -169,31 +201,18 @@ if TYPE_CHECKING:
|
|
|
169
201
|
GetCriblLakeDatasetByLakeIDResponse,
|
|
170
202
|
GetCriblLakeDatasetByLakeIDResponseTypedDict,
|
|
171
203
|
)
|
|
172
|
-
from .getgroupsaclbyidop import (
|
|
173
|
-
GetGroupsACLByIDRequest,
|
|
174
|
-
GetGroupsACLByIDRequestTypedDict,
|
|
175
|
-
GetGroupsACLByIDResponse,
|
|
176
|
-
GetGroupsACLByIDResponseTypedDict,
|
|
177
|
-
GetGroupsACLByIDType,
|
|
178
|
-
)
|
|
179
|
-
from .getgroupsbyidop import (
|
|
180
|
-
GetGroupsByIDRequest,
|
|
181
|
-
GetGroupsByIDRequestTypedDict,
|
|
182
|
-
GetGroupsByIDResponse,
|
|
183
|
-
GetGroupsByIDResponseTypedDict,
|
|
184
|
-
)
|
|
185
|
-
from .getgroupsconfigversionbyidop import (
|
|
186
|
-
GetGroupsConfigVersionByIDRequest,
|
|
187
|
-
GetGroupsConfigVersionByIDRequestTypedDict,
|
|
188
|
-
GetGroupsConfigVersionByIDResponse,
|
|
189
|
-
GetGroupsConfigVersionByIDResponseTypedDict,
|
|
190
|
-
)
|
|
191
204
|
from .getinputbyidop import (
|
|
192
205
|
GetInputByIDRequest,
|
|
193
206
|
GetInputByIDRequestTypedDict,
|
|
194
207
|
GetInputByIDResponse,
|
|
195
208
|
GetInputByIDResponseTypedDict,
|
|
196
209
|
)
|
|
210
|
+
from .getmasterworkerentryop import (
|
|
211
|
+
GetMasterWorkerEntryRequest,
|
|
212
|
+
GetMasterWorkerEntryRequestTypedDict,
|
|
213
|
+
GetMasterWorkerEntryResponse,
|
|
214
|
+
GetMasterWorkerEntryResponseTypedDict,
|
|
215
|
+
)
|
|
197
216
|
from .getoutputbyidop import (
|
|
198
217
|
GetOutputByIDRequest,
|
|
199
218
|
GetOutputByIDRequestTypedDict,
|
|
@@ -224,21 +243,6 @@ if TYPE_CHECKING:
|
|
|
224
243
|
GetPipelineByIDResponse,
|
|
225
244
|
GetPipelineByIDResponseTypedDict,
|
|
226
245
|
)
|
|
227
|
-
from .getproductsgroupsaclteamsbyproductandidop import (
|
|
228
|
-
GetProductsGroupsACLTeamsByProductAndIDProduct,
|
|
229
|
-
GetProductsGroupsACLTeamsByProductAndIDRequest,
|
|
230
|
-
GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict,
|
|
231
|
-
GetProductsGroupsACLTeamsByProductAndIDResponse,
|
|
232
|
-
GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict,
|
|
233
|
-
GetProductsGroupsACLTeamsByProductAndIDType,
|
|
234
|
-
)
|
|
235
|
-
from .getproductsgroupsbyproductop import (
|
|
236
|
-
GetProductsGroupsByProductProduct,
|
|
237
|
-
GetProductsGroupsByProductRequest,
|
|
238
|
-
GetProductsGroupsByProductRequestTypedDict,
|
|
239
|
-
GetProductsGroupsByProductResponse,
|
|
240
|
-
GetProductsGroupsByProductResponseTypedDict,
|
|
241
|
-
)
|
|
242
246
|
from .getroutesbyidop import (
|
|
243
247
|
GetRoutesByIDRequest,
|
|
244
248
|
GetRoutesByIDRequestTypedDict,
|
|
@@ -252,12 +256,6 @@ if TYPE_CHECKING:
|
|
|
252
256
|
GetSummaryResponse,
|
|
253
257
|
GetSummaryResponseTypedDict,
|
|
254
258
|
)
|
|
255
|
-
from .getsummaryworkersop import (
|
|
256
|
-
GetSummaryWorkersRequest,
|
|
257
|
-
GetSummaryWorkersRequestTypedDict,
|
|
258
|
-
GetSummaryWorkersResponse,
|
|
259
|
-
GetSummaryWorkersResponseTypedDict,
|
|
260
|
-
)
|
|
261
259
|
from .getversionbranchop import (
|
|
262
260
|
GetVersionBranchResponse,
|
|
263
261
|
GetVersionBranchResponseTypedDict,
|
|
@@ -268,10 +266,6 @@ if TYPE_CHECKING:
|
|
|
268
266
|
GetVersionCountResponse,
|
|
269
267
|
GetVersionCountResponseTypedDict,
|
|
270
268
|
)
|
|
271
|
-
from .getversioncurrentbranchop import (
|
|
272
|
-
GetVersionCurrentBranchResponse,
|
|
273
|
-
GetVersionCurrentBranchResponseTypedDict,
|
|
274
|
-
)
|
|
275
269
|
from .getversiondiffop import (
|
|
276
270
|
GetVersionDiffRequest,
|
|
277
271
|
GetVersionDiffRequestTypedDict,
|
|
@@ -300,12 +294,6 @@ if TYPE_CHECKING:
|
|
|
300
294
|
GetVersionStatusResponse,
|
|
301
295
|
GetVersionStatusResponseTypedDict,
|
|
302
296
|
)
|
|
303
|
-
from .getworkersop import (
|
|
304
|
-
GetWorkersRequest,
|
|
305
|
-
GetWorkersRequestTypedDict,
|
|
306
|
-
GetWorkersResponse,
|
|
307
|
-
GetWorkersResponseTypedDict,
|
|
308
|
-
)
|
|
309
297
|
from .gitcommitparams import GitCommitParams, GitCommitParamsTypedDict
|
|
310
298
|
from .gitcommitsummary import (
|
|
311
299
|
Author,
|
|
@@ -474,6 +462,10 @@ if TYPE_CHECKING:
|
|
|
474
462
|
)
|
|
475
463
|
from .inputcribllakehttp import (
|
|
476
464
|
InputCriblLakeHTTP,
|
|
465
|
+
InputCriblLakeHTTPAuthTokensExt,
|
|
466
|
+
InputCriblLakeHTTPAuthTokensExtMetadatum,
|
|
467
|
+
InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict,
|
|
468
|
+
InputCriblLakeHTTPAuthTokensExtTypedDict,
|
|
477
469
|
InputCriblLakeHTTPCompression,
|
|
478
470
|
InputCriblLakeHTTPConnection,
|
|
479
471
|
InputCriblLakeHTTPConnectionTypedDict,
|
|
@@ -1606,7 +1598,20 @@ if TYPE_CHECKING:
|
|
|
1606
1598
|
LakeDatasetSearchConfigTypedDict,
|
|
1607
1599
|
)
|
|
1608
1600
|
from .lakehouseconnectiontype import LakehouseConnectionType
|
|
1601
|
+
from .listconfiggroupbyproductop import (
|
|
1602
|
+
ListConfigGroupByProductProduct,
|
|
1603
|
+
ListConfigGroupByProductRequest,
|
|
1604
|
+
ListConfigGroupByProductRequestTypedDict,
|
|
1605
|
+
ListConfigGroupByProductResponse,
|
|
1606
|
+
ListConfigGroupByProductResponseTypedDict,
|
|
1607
|
+
)
|
|
1609
1608
|
from .listinputop import ListInputResponse, ListInputResponseTypedDict
|
|
1609
|
+
from .listmasterworkerentryop import (
|
|
1610
|
+
ListMasterWorkerEntryRequest,
|
|
1611
|
+
ListMasterWorkerEntryRequestTypedDict,
|
|
1612
|
+
ListMasterWorkerEntryResponse,
|
|
1613
|
+
ListMasterWorkerEntryResponseTypedDict,
|
|
1614
|
+
)
|
|
1610
1615
|
from .listoutputop import ListOutputResponse, ListOutputResponseTypedDict
|
|
1611
1616
|
from .listpipelineop import ListPipelineResponse, ListPipelineResponseTypedDict
|
|
1612
1617
|
from .listroutesop import ListRoutesResponse, ListRoutesResponseTypedDict
|
|
@@ -2953,24 +2958,26 @@ if TYPE_CHECKING:
|
|
|
2953
2958
|
TeamAccessControlList,
|
|
2954
2959
|
TeamAccessControlListTypedDict,
|
|
2955
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
|
+
)
|
|
2956
2975
|
from .updatecribllakedatasetbylakeidandidop import (
|
|
2957
2976
|
UpdateCriblLakeDatasetByLakeIDAndIDRequest,
|
|
2958
2977
|
UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict,
|
|
2959
2978
|
UpdateCriblLakeDatasetByLakeIDAndIDResponse,
|
|
2960
2979
|
UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict,
|
|
2961
2980
|
)
|
|
2962
|
-
from .updategroupsbyidop import (
|
|
2963
|
-
UpdateGroupsByIDRequest,
|
|
2964
|
-
UpdateGroupsByIDRequestTypedDict,
|
|
2965
|
-
UpdateGroupsByIDResponse,
|
|
2966
|
-
UpdateGroupsByIDResponseTypedDict,
|
|
2967
|
-
)
|
|
2968
|
-
from .updategroupsdeploybyidop import (
|
|
2969
|
-
UpdateGroupsDeployByIDRequest,
|
|
2970
|
-
UpdateGroupsDeployByIDRequestTypedDict,
|
|
2971
|
-
UpdateGroupsDeployByIDResponse,
|
|
2972
|
-
UpdateGroupsDeployByIDResponseTypedDict,
|
|
2973
|
-
)
|
|
2974
2981
|
from .updatehectokenrequest import (
|
|
2975
2982
|
UpdateHecTokenRequest,
|
|
2976
2983
|
UpdateHecTokenRequestMetadatum,
|
|
@@ -3069,6 +3076,11 @@ __all__ = [
|
|
|
3069
3076
|
"Container",
|
|
3070
3077
|
"ContainerMode",
|
|
3071
3078
|
"ContainerTypedDict",
|
|
3079
|
+
"CreateConfigGroupByProductProduct",
|
|
3080
|
+
"CreateConfigGroupByProductRequest",
|
|
3081
|
+
"CreateConfigGroupByProductRequestTypedDict",
|
|
3082
|
+
"CreateConfigGroupByProductResponse",
|
|
3083
|
+
"CreateConfigGroupByProductResponseTypedDict",
|
|
3072
3084
|
"CreateCriblLakeDatasetByLakeIDRequest",
|
|
3073
3085
|
"CreateCriblLakeDatasetByLakeIDRequestTypedDict",
|
|
3074
3086
|
"CreateCriblLakeDatasetByLakeIDResponse",
|
|
@@ -3089,11 +3101,6 @@ __all__ = [
|
|
|
3089
3101
|
"CreatePacksResponseTypedDict",
|
|
3090
3102
|
"CreatePipelineResponse",
|
|
3091
3103
|
"CreatePipelineResponseTypedDict",
|
|
3092
|
-
"CreateProductsGroupsByProductProduct",
|
|
3093
|
-
"CreateProductsGroupsByProductRequest",
|
|
3094
|
-
"CreateProductsGroupsByProductRequestTypedDict",
|
|
3095
|
-
"CreateProductsGroupsByProductResponse",
|
|
3096
|
-
"CreateProductsGroupsByProductResponseTypedDict",
|
|
3097
3104
|
"CreateRoutesAppendByIDRequest",
|
|
3098
3105
|
"CreateRoutesAppendByIDRequestTypedDict",
|
|
3099
3106
|
"CreateRoutesAppendByIDResponse",
|
|
@@ -3115,6 +3122,8 @@ __all__ = [
|
|
|
3115
3122
|
"CriblLakeDataset",
|
|
3116
3123
|
"CriblLakeDatasetFormat",
|
|
3117
3124
|
"CriblLakeDatasetTypedDict",
|
|
3125
|
+
"CurrentBranchResult",
|
|
3126
|
+
"CurrentBranchResultTypedDict",
|
|
3118
3127
|
"CustomLabel",
|
|
3119
3128
|
"CustomLabelTypedDict",
|
|
3120
3129
|
"DNS",
|
|
@@ -3125,14 +3134,15 @@ __all__ = [
|
|
|
3125
3134
|
"DatasetMetadataRunInfo",
|
|
3126
3135
|
"DatasetMetadataRunInfoTypedDict",
|
|
3127
3136
|
"DatasetMetadataTypedDict",
|
|
3137
|
+
"DeleteConfigGroupByProductAndIDProduct",
|
|
3138
|
+
"DeleteConfigGroupByProductAndIDRequest",
|
|
3139
|
+
"DeleteConfigGroupByProductAndIDRequestTypedDict",
|
|
3140
|
+
"DeleteConfigGroupByProductAndIDResponse",
|
|
3141
|
+
"DeleteConfigGroupByProductAndIDResponseTypedDict",
|
|
3128
3142
|
"DeleteCriblLakeDatasetByLakeIDAndIDRequest",
|
|
3129
3143
|
"DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
|
|
3130
3144
|
"DeleteCriblLakeDatasetByLakeIDAndIDResponse",
|
|
3131
3145
|
"DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict",
|
|
3132
|
-
"DeleteGroupsByIDRequest",
|
|
3133
|
-
"DeleteGroupsByIDRequestTypedDict",
|
|
3134
|
-
"DeleteGroupsByIDResponse",
|
|
3135
|
-
"DeleteGroupsByIDResponseTypedDict",
|
|
3136
3146
|
"DeleteInputByIDRequest",
|
|
3137
3147
|
"DeleteInputByIDRequestTypedDict",
|
|
3138
3148
|
"DeleteInputByIDResponse",
|
|
@@ -3191,6 +3201,28 @@ __all__ = [
|
|
|
3191
3201
|
"FlushPeriodSecTypedDict",
|
|
3192
3202
|
"FunctionSpecificConfigs",
|
|
3193
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",
|
|
3194
3226
|
"GetCriblLakeDatasetByLakeIDAndIDRequest",
|
|
3195
3227
|
"GetCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
|
|
3196
3228
|
"GetCriblLakeDatasetByLakeIDAndIDResponse",
|
|
@@ -3199,23 +3231,14 @@ __all__ = [
|
|
|
3199
3231
|
"GetCriblLakeDatasetByLakeIDRequestTypedDict",
|
|
3200
3232
|
"GetCriblLakeDatasetByLakeIDResponse",
|
|
3201
3233
|
"GetCriblLakeDatasetByLakeIDResponseTypedDict",
|
|
3202
|
-
"GetGroupsACLByIDRequest",
|
|
3203
|
-
"GetGroupsACLByIDRequestTypedDict",
|
|
3204
|
-
"GetGroupsACLByIDResponse",
|
|
3205
|
-
"GetGroupsACLByIDResponseTypedDict",
|
|
3206
|
-
"GetGroupsACLByIDType",
|
|
3207
|
-
"GetGroupsByIDRequest",
|
|
3208
|
-
"GetGroupsByIDRequestTypedDict",
|
|
3209
|
-
"GetGroupsByIDResponse",
|
|
3210
|
-
"GetGroupsByIDResponseTypedDict",
|
|
3211
|
-
"GetGroupsConfigVersionByIDRequest",
|
|
3212
|
-
"GetGroupsConfigVersionByIDRequestTypedDict",
|
|
3213
|
-
"GetGroupsConfigVersionByIDResponse",
|
|
3214
|
-
"GetGroupsConfigVersionByIDResponseTypedDict",
|
|
3215
3234
|
"GetInputByIDRequest",
|
|
3216
3235
|
"GetInputByIDRequestTypedDict",
|
|
3217
3236
|
"GetInputByIDResponse",
|
|
3218
3237
|
"GetInputByIDResponseTypedDict",
|
|
3238
|
+
"GetMasterWorkerEntryRequest",
|
|
3239
|
+
"GetMasterWorkerEntryRequestTypedDict",
|
|
3240
|
+
"GetMasterWorkerEntryResponse",
|
|
3241
|
+
"GetMasterWorkerEntryResponseTypedDict",
|
|
3219
3242
|
"GetOutputByIDRequest",
|
|
3220
3243
|
"GetOutputByIDRequestTypedDict",
|
|
3221
3244
|
"GetOutputByIDResponse",
|
|
@@ -3236,17 +3259,6 @@ __all__ = [
|
|
|
3236
3259
|
"GetPipelineByIDRequestTypedDict",
|
|
3237
3260
|
"GetPipelineByIDResponse",
|
|
3238
3261
|
"GetPipelineByIDResponseTypedDict",
|
|
3239
|
-
"GetProductsGroupsACLTeamsByProductAndIDProduct",
|
|
3240
|
-
"GetProductsGroupsACLTeamsByProductAndIDRequest",
|
|
3241
|
-
"GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict",
|
|
3242
|
-
"GetProductsGroupsACLTeamsByProductAndIDResponse",
|
|
3243
|
-
"GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict",
|
|
3244
|
-
"GetProductsGroupsACLTeamsByProductAndIDType",
|
|
3245
|
-
"GetProductsGroupsByProductProduct",
|
|
3246
|
-
"GetProductsGroupsByProductRequest",
|
|
3247
|
-
"GetProductsGroupsByProductRequestTypedDict",
|
|
3248
|
-
"GetProductsGroupsByProductResponse",
|
|
3249
|
-
"GetProductsGroupsByProductResponseTypedDict",
|
|
3250
3262
|
"GetRoutesByIDRequest",
|
|
3251
3263
|
"GetRoutesByIDRequestTypedDict",
|
|
3252
3264
|
"GetRoutesByIDResponse",
|
|
@@ -3256,18 +3268,12 @@ __all__ = [
|
|
|
3256
3268
|
"GetSummaryRequestTypedDict",
|
|
3257
3269
|
"GetSummaryResponse",
|
|
3258
3270
|
"GetSummaryResponseTypedDict",
|
|
3259
|
-
"GetSummaryWorkersRequest",
|
|
3260
|
-
"GetSummaryWorkersRequestTypedDict",
|
|
3261
|
-
"GetSummaryWorkersResponse",
|
|
3262
|
-
"GetSummaryWorkersResponseTypedDict",
|
|
3263
3271
|
"GetVersionBranchResponse",
|
|
3264
3272
|
"GetVersionBranchResponseTypedDict",
|
|
3265
3273
|
"GetVersionCountRequest",
|
|
3266
3274
|
"GetVersionCountRequestTypedDict",
|
|
3267
3275
|
"GetVersionCountResponse",
|
|
3268
3276
|
"GetVersionCountResponseTypedDict",
|
|
3269
|
-
"GetVersionCurrentBranchResponse",
|
|
3270
|
-
"GetVersionCurrentBranchResponseTypedDict",
|
|
3271
3277
|
"GetVersionDiffRequest",
|
|
3272
3278
|
"GetVersionDiffRequestTypedDict",
|
|
3273
3279
|
"GetVersionDiffResponse",
|
|
@@ -3286,10 +3292,6 @@ __all__ = [
|
|
|
3286
3292
|
"GetVersionStatusRequestTypedDict",
|
|
3287
3293
|
"GetVersionStatusResponse",
|
|
3288
3294
|
"GetVersionStatusResponseTypedDict",
|
|
3289
|
-
"GetWorkersRequest",
|
|
3290
|
-
"GetWorkersRequestTypedDict",
|
|
3291
|
-
"GetWorkersResponse",
|
|
3292
|
-
"GetWorkersResponseTypedDict",
|
|
3293
3295
|
"Git",
|
|
3294
3296
|
"GitCommitParams",
|
|
3295
3297
|
"GitCommitParamsTypedDict",
|
|
@@ -3439,6 +3441,10 @@ __all__ = [
|
|
|
3439
3441
|
"InputCriblHTTPType",
|
|
3440
3442
|
"InputCriblHTTPTypedDict",
|
|
3441
3443
|
"InputCriblLakeHTTP",
|
|
3444
|
+
"InputCriblLakeHTTPAuthTokensExt",
|
|
3445
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatum",
|
|
3446
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict",
|
|
3447
|
+
"InputCriblLakeHTTPAuthTokensExtTypedDict",
|
|
3442
3448
|
"InputCriblLakeHTTPCompression",
|
|
3443
3449
|
"InputCriblLakeHTTPConnection",
|
|
3444
3450
|
"InputCriblLakeHTTPConnectionTypedDict",
|
|
@@ -4404,8 +4410,17 @@ __all__ = [
|
|
|
4404
4410
|
"LakehouseConnectionType",
|
|
4405
4411
|
"LastMetrics",
|
|
4406
4412
|
"LastMetricsTypedDict",
|
|
4413
|
+
"ListConfigGroupByProductProduct",
|
|
4414
|
+
"ListConfigGroupByProductRequest",
|
|
4415
|
+
"ListConfigGroupByProductRequestTypedDict",
|
|
4416
|
+
"ListConfigGroupByProductResponse",
|
|
4417
|
+
"ListConfigGroupByProductResponseTypedDict",
|
|
4407
4418
|
"ListInputResponse",
|
|
4408
4419
|
"ListInputResponseTypedDict",
|
|
4420
|
+
"ListMasterWorkerEntryRequest",
|
|
4421
|
+
"ListMasterWorkerEntryRequestTypedDict",
|
|
4422
|
+
"ListMasterWorkerEntryResponse",
|
|
4423
|
+
"ListMasterWorkerEntryResponseTypedDict",
|
|
4409
4424
|
"ListOutputResponse",
|
|
4410
4425
|
"ListOutputResponseTypedDict",
|
|
4411
4426
|
"ListPipelineResponse",
|
|
@@ -5640,18 +5655,20 @@ __all__ = [
|
|
|
5640
5655
|
"TelemetryType",
|
|
5641
5656
|
"TimestampFormat",
|
|
5642
5657
|
"TimestampPrecision",
|
|
5658
|
+
"UpdateConfigGroupByProductAndIDProduct",
|
|
5659
|
+
"UpdateConfigGroupByProductAndIDRequest",
|
|
5660
|
+
"UpdateConfigGroupByProductAndIDRequestTypedDict",
|
|
5661
|
+
"UpdateConfigGroupByProductAndIDResponse",
|
|
5662
|
+
"UpdateConfigGroupByProductAndIDResponseTypedDict",
|
|
5663
|
+
"UpdateConfigGroupDeployByProductAndIDProduct",
|
|
5664
|
+
"UpdateConfigGroupDeployByProductAndIDRequest",
|
|
5665
|
+
"UpdateConfigGroupDeployByProductAndIDRequestTypedDict",
|
|
5666
|
+
"UpdateConfigGroupDeployByProductAndIDResponse",
|
|
5667
|
+
"UpdateConfigGroupDeployByProductAndIDResponseTypedDict",
|
|
5643
5668
|
"UpdateCriblLakeDatasetByLakeIDAndIDRequest",
|
|
5644
5669
|
"UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
|
|
5645
5670
|
"UpdateCriblLakeDatasetByLakeIDAndIDResponse",
|
|
5646
5671
|
"UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict",
|
|
5647
|
-
"UpdateGroupsByIDRequest",
|
|
5648
|
-
"UpdateGroupsByIDRequestTypedDict",
|
|
5649
|
-
"UpdateGroupsByIDResponse",
|
|
5650
|
-
"UpdateGroupsByIDResponseTypedDict",
|
|
5651
|
-
"UpdateGroupsDeployByIDRequest",
|
|
5652
|
-
"UpdateGroupsDeployByIDRequestTypedDict",
|
|
5653
|
-
"UpdateGroupsDeployByIDResponse",
|
|
5654
|
-
"UpdateGroupsDeployByIDResponseTypedDict",
|
|
5655
5672
|
"UpdateHecTokenRequest",
|
|
5656
5673
|
"UpdateHecTokenRequestMetadatum",
|
|
5657
5674
|
"UpdateHecTokenRequestMetadatumTypedDict",
|
|
@@ -5714,6 +5731,11 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5714
5731
|
"ConfigGroupLookupsLookup": ".configgrouplookups",
|
|
5715
5732
|
"ConfigGroupLookupsLookupTypedDict": ".configgrouplookups",
|
|
5716
5733
|
"ConfigGroupLookupsTypedDict": ".configgrouplookups",
|
|
5734
|
+
"CreateConfigGroupByProductProduct": ".createconfiggroupbyproductop",
|
|
5735
|
+
"CreateConfigGroupByProductRequest": ".createconfiggroupbyproductop",
|
|
5736
|
+
"CreateConfigGroupByProductRequestTypedDict": ".createconfiggroupbyproductop",
|
|
5737
|
+
"CreateConfigGroupByProductResponse": ".createconfiggroupbyproductop",
|
|
5738
|
+
"CreateConfigGroupByProductResponseTypedDict": ".createconfiggroupbyproductop",
|
|
5717
5739
|
"CreateCriblLakeDatasetByLakeIDRequest": ".createcribllakedatasetbylakeidop",
|
|
5718
5740
|
"CreateCriblLakeDatasetByLakeIDRequestTypedDict": ".createcribllakedatasetbylakeidop",
|
|
5719
5741
|
"CreateCriblLakeDatasetByLakeIDResponse": ".createcribllakedatasetbylakeidop",
|
|
@@ -5734,11 +5756,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5734
5756
|
"CreatePacksResponseTypedDict": ".createpacksop",
|
|
5735
5757
|
"CreatePipelineResponse": ".createpipelineop",
|
|
5736
5758
|
"CreatePipelineResponseTypedDict": ".createpipelineop",
|
|
5737
|
-
"CreateProductsGroupsByProductProduct": ".createproductsgroupsbyproductop",
|
|
5738
|
-
"CreateProductsGroupsByProductRequest": ".createproductsgroupsbyproductop",
|
|
5739
|
-
"CreateProductsGroupsByProductRequestTypedDict": ".createproductsgroupsbyproductop",
|
|
5740
|
-
"CreateProductsGroupsByProductResponse": ".createproductsgroupsbyproductop",
|
|
5741
|
-
"CreateProductsGroupsByProductResponseTypedDict": ".createproductsgroupsbyproductop",
|
|
5742
5759
|
"CreateRoutesAppendByIDRequest": ".createroutesappendbyidop",
|
|
5743
5760
|
"CreateRoutesAppendByIDRequestTypedDict": ".createroutesappendbyidop",
|
|
5744
5761
|
"CreateRoutesAppendByIDResponse": ".createroutesappendbyidop",
|
|
@@ -5760,19 +5777,22 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5760
5777
|
"CriblLakeDataset": ".cribllakedataset",
|
|
5761
5778
|
"CriblLakeDatasetFormat": ".cribllakedataset",
|
|
5762
5779
|
"CriblLakeDatasetTypedDict": ".cribllakedataset",
|
|
5780
|
+
"CurrentBranchResult": ".currentbranchresult",
|
|
5781
|
+
"CurrentBranchResultTypedDict": ".currentbranchresult",
|
|
5763
5782
|
"DatasetMetadata": ".datasetmetadata",
|
|
5764
5783
|
"DatasetMetadataTypedDict": ".datasetmetadata",
|
|
5765
5784
|
"ScanMode": ".datasetmetadata",
|
|
5766
5785
|
"DatasetMetadataRunInfo": ".datasetmetadataruninfo",
|
|
5767
5786
|
"DatasetMetadataRunInfoTypedDict": ".datasetmetadataruninfo",
|
|
5787
|
+
"DeleteConfigGroupByProductAndIDProduct": ".deleteconfiggroupbyproductandidop",
|
|
5788
|
+
"DeleteConfigGroupByProductAndIDRequest": ".deleteconfiggroupbyproductandidop",
|
|
5789
|
+
"DeleteConfigGroupByProductAndIDRequestTypedDict": ".deleteconfiggroupbyproductandidop",
|
|
5790
|
+
"DeleteConfigGroupByProductAndIDResponse": ".deleteconfiggroupbyproductandidop",
|
|
5791
|
+
"DeleteConfigGroupByProductAndIDResponseTypedDict": ".deleteconfiggroupbyproductandidop",
|
|
5768
5792
|
"DeleteCriblLakeDatasetByLakeIDAndIDRequest": ".deletecribllakedatasetbylakeidandidop",
|
|
5769
5793
|
"DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".deletecribllakedatasetbylakeidandidop",
|
|
5770
5794
|
"DeleteCriblLakeDatasetByLakeIDAndIDResponse": ".deletecribllakedatasetbylakeidandidop",
|
|
5771
5795
|
"DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict": ".deletecribllakedatasetbylakeidandidop",
|
|
5772
|
-
"DeleteGroupsByIDRequest": ".deletegroupsbyidop",
|
|
5773
|
-
"DeleteGroupsByIDRequestTypedDict": ".deletegroupsbyidop",
|
|
5774
|
-
"DeleteGroupsByIDResponse": ".deletegroupsbyidop",
|
|
5775
|
-
"DeleteGroupsByIDResponseTypedDict": ".deletegroupsbyidop",
|
|
5776
5796
|
"DeleteInputByIDRequest": ".deleteinputbyidop",
|
|
5777
5797
|
"DeleteInputByIDRequestTypedDict": ".deleteinputbyidop",
|
|
5778
5798
|
"DeleteInputByIDResponse": ".deleteinputbyidop",
|
|
@@ -5805,6 +5825,28 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5805
5825
|
"DistributedSummaryTypedDict": ".distributedsummary",
|
|
5806
5826
|
"DistributedSummaryWorkers": ".distributedsummary",
|
|
5807
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",
|
|
5808
5850
|
"GetCriblLakeDatasetByLakeIDAndIDRequest": ".getcribllakedatasetbylakeidandidop",
|
|
5809
5851
|
"GetCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".getcribllakedatasetbylakeidandidop",
|
|
5810
5852
|
"GetCriblLakeDatasetByLakeIDAndIDResponse": ".getcribllakedatasetbylakeidandidop",
|
|
@@ -5813,23 +5855,14 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5813
5855
|
"GetCriblLakeDatasetByLakeIDRequestTypedDict": ".getcribllakedatasetbylakeidop",
|
|
5814
5856
|
"GetCriblLakeDatasetByLakeIDResponse": ".getcribllakedatasetbylakeidop",
|
|
5815
5857
|
"GetCriblLakeDatasetByLakeIDResponseTypedDict": ".getcribllakedatasetbylakeidop",
|
|
5816
|
-
"GetGroupsACLByIDRequest": ".getgroupsaclbyidop",
|
|
5817
|
-
"GetGroupsACLByIDRequestTypedDict": ".getgroupsaclbyidop",
|
|
5818
|
-
"GetGroupsACLByIDResponse": ".getgroupsaclbyidop",
|
|
5819
|
-
"GetGroupsACLByIDResponseTypedDict": ".getgroupsaclbyidop",
|
|
5820
|
-
"GetGroupsACLByIDType": ".getgroupsaclbyidop",
|
|
5821
|
-
"GetGroupsByIDRequest": ".getgroupsbyidop",
|
|
5822
|
-
"GetGroupsByIDRequestTypedDict": ".getgroupsbyidop",
|
|
5823
|
-
"GetGroupsByIDResponse": ".getgroupsbyidop",
|
|
5824
|
-
"GetGroupsByIDResponseTypedDict": ".getgroupsbyidop",
|
|
5825
|
-
"GetGroupsConfigVersionByIDRequest": ".getgroupsconfigversionbyidop",
|
|
5826
|
-
"GetGroupsConfigVersionByIDRequestTypedDict": ".getgroupsconfigversionbyidop",
|
|
5827
|
-
"GetGroupsConfigVersionByIDResponse": ".getgroupsconfigversionbyidop",
|
|
5828
|
-
"GetGroupsConfigVersionByIDResponseTypedDict": ".getgroupsconfigversionbyidop",
|
|
5829
5858
|
"GetInputByIDRequest": ".getinputbyidop",
|
|
5830
5859
|
"GetInputByIDRequestTypedDict": ".getinputbyidop",
|
|
5831
5860
|
"GetInputByIDResponse": ".getinputbyidop",
|
|
5832
5861
|
"GetInputByIDResponseTypedDict": ".getinputbyidop",
|
|
5862
|
+
"GetMasterWorkerEntryRequest": ".getmasterworkerentryop",
|
|
5863
|
+
"GetMasterWorkerEntryRequestTypedDict": ".getmasterworkerentryop",
|
|
5864
|
+
"GetMasterWorkerEntryResponse": ".getmasterworkerentryop",
|
|
5865
|
+
"GetMasterWorkerEntryResponseTypedDict": ".getmasterworkerentryop",
|
|
5833
5866
|
"GetOutputByIDRequest": ".getoutputbyidop",
|
|
5834
5867
|
"GetOutputByIDRequestTypedDict": ".getoutputbyidop",
|
|
5835
5868
|
"GetOutputByIDResponse": ".getoutputbyidop",
|
|
@@ -5850,17 +5883,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5850
5883
|
"GetPipelineByIDRequestTypedDict": ".getpipelinebyidop",
|
|
5851
5884
|
"GetPipelineByIDResponse": ".getpipelinebyidop",
|
|
5852
5885
|
"GetPipelineByIDResponseTypedDict": ".getpipelinebyidop",
|
|
5853
|
-
"GetProductsGroupsACLTeamsByProductAndIDProduct": ".getproductsgroupsaclteamsbyproductandidop",
|
|
5854
|
-
"GetProductsGroupsACLTeamsByProductAndIDRequest": ".getproductsgroupsaclteamsbyproductandidop",
|
|
5855
|
-
"GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict": ".getproductsgroupsaclteamsbyproductandidop",
|
|
5856
|
-
"GetProductsGroupsACLTeamsByProductAndIDResponse": ".getproductsgroupsaclteamsbyproductandidop",
|
|
5857
|
-
"GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict": ".getproductsgroupsaclteamsbyproductandidop",
|
|
5858
|
-
"GetProductsGroupsACLTeamsByProductAndIDType": ".getproductsgroupsaclteamsbyproductandidop",
|
|
5859
|
-
"GetProductsGroupsByProductProduct": ".getproductsgroupsbyproductop",
|
|
5860
|
-
"GetProductsGroupsByProductRequest": ".getproductsgroupsbyproductop",
|
|
5861
|
-
"GetProductsGroupsByProductRequestTypedDict": ".getproductsgroupsbyproductop",
|
|
5862
|
-
"GetProductsGroupsByProductResponse": ".getproductsgroupsbyproductop",
|
|
5863
|
-
"GetProductsGroupsByProductResponseTypedDict": ".getproductsgroupsbyproductop",
|
|
5864
5886
|
"GetRoutesByIDRequest": ".getroutesbyidop",
|
|
5865
5887
|
"GetRoutesByIDRequestTypedDict": ".getroutesbyidop",
|
|
5866
5888
|
"GetRoutesByIDResponse": ".getroutesbyidop",
|
|
@@ -5870,18 +5892,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5870
5892
|
"GetSummaryRequestTypedDict": ".getsummaryop",
|
|
5871
5893
|
"GetSummaryResponse": ".getsummaryop",
|
|
5872
5894
|
"GetSummaryResponseTypedDict": ".getsummaryop",
|
|
5873
|
-
"GetSummaryWorkersRequest": ".getsummaryworkersop",
|
|
5874
|
-
"GetSummaryWorkersRequestTypedDict": ".getsummaryworkersop",
|
|
5875
|
-
"GetSummaryWorkersResponse": ".getsummaryworkersop",
|
|
5876
|
-
"GetSummaryWorkersResponseTypedDict": ".getsummaryworkersop",
|
|
5877
5895
|
"GetVersionBranchResponse": ".getversionbranchop",
|
|
5878
5896
|
"GetVersionBranchResponseTypedDict": ".getversionbranchop",
|
|
5879
5897
|
"GetVersionCountRequest": ".getversioncountop",
|
|
5880
5898
|
"GetVersionCountRequestTypedDict": ".getversioncountop",
|
|
5881
5899
|
"GetVersionCountResponse": ".getversioncountop",
|
|
5882
5900
|
"GetVersionCountResponseTypedDict": ".getversioncountop",
|
|
5883
|
-
"GetVersionCurrentBranchResponse": ".getversioncurrentbranchop",
|
|
5884
|
-
"GetVersionCurrentBranchResponseTypedDict": ".getversioncurrentbranchop",
|
|
5885
5901
|
"GetVersionDiffRequest": ".getversiondiffop",
|
|
5886
5902
|
"GetVersionDiffRequestTypedDict": ".getversiondiffop",
|
|
5887
5903
|
"GetVersionDiffResponse": ".getversiondiffop",
|
|
@@ -5900,10 +5916,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5900
5916
|
"GetVersionStatusRequestTypedDict": ".getversionstatusop",
|
|
5901
5917
|
"GetVersionStatusResponse": ".getversionstatusop",
|
|
5902
5918
|
"GetVersionStatusResponseTypedDict": ".getversionstatusop",
|
|
5903
|
-
"GetWorkersRequest": ".getworkersop",
|
|
5904
|
-
"GetWorkersRequestTypedDict": ".getworkersop",
|
|
5905
|
-
"GetWorkersResponse": ".getworkersop",
|
|
5906
|
-
"GetWorkersResponseTypedDict": ".getworkersop",
|
|
5907
5919
|
"GitCommitParams": ".gitcommitparams",
|
|
5908
5920
|
"GitCommitParamsTypedDict": ".gitcommitparams",
|
|
5909
5921
|
"Author": ".gitcommitsummary",
|
|
@@ -6066,6 +6078,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6066
6078
|
"InputCriblHTTPType": ".inputcriblhttp",
|
|
6067
6079
|
"InputCriblHTTPTypedDict": ".inputcriblhttp",
|
|
6068
6080
|
"InputCriblLakeHTTP": ".inputcribllakehttp",
|
|
6081
|
+
"InputCriblLakeHTTPAuthTokensExt": ".inputcribllakehttp",
|
|
6082
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatum": ".inputcribllakehttp",
|
|
6083
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict": ".inputcribllakehttp",
|
|
6084
|
+
"InputCriblLakeHTTPAuthTokensExtTypedDict": ".inputcribllakehttp",
|
|
6069
6085
|
"InputCriblLakeHTTPCompression": ".inputcribllakehttp",
|
|
6070
6086
|
"InputCriblLakeHTTPConnection": ".inputcribllakehttp",
|
|
6071
6087
|
"InputCriblLakeHTTPConnectionTypedDict": ".inputcribllakehttp",
|
|
@@ -7093,8 +7109,17 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7093
7109
|
"LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
|
|
7094
7110
|
"LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
|
|
7095
7111
|
"LakehouseConnectionType": ".lakehouseconnectiontype",
|
|
7112
|
+
"ListConfigGroupByProductProduct": ".listconfiggroupbyproductop",
|
|
7113
|
+
"ListConfigGroupByProductRequest": ".listconfiggroupbyproductop",
|
|
7114
|
+
"ListConfigGroupByProductRequestTypedDict": ".listconfiggroupbyproductop",
|
|
7115
|
+
"ListConfigGroupByProductResponse": ".listconfiggroupbyproductop",
|
|
7116
|
+
"ListConfigGroupByProductResponseTypedDict": ".listconfiggroupbyproductop",
|
|
7096
7117
|
"ListInputResponse": ".listinputop",
|
|
7097
7118
|
"ListInputResponseTypedDict": ".listinputop",
|
|
7119
|
+
"ListMasterWorkerEntryRequest": ".listmasterworkerentryop",
|
|
7120
|
+
"ListMasterWorkerEntryRequestTypedDict": ".listmasterworkerentryop",
|
|
7121
|
+
"ListMasterWorkerEntryResponse": ".listmasterworkerentryop",
|
|
7122
|
+
"ListMasterWorkerEntryResponseTypedDict": ".listmasterworkerentryop",
|
|
7098
7123
|
"ListOutputResponse": ".listoutputop",
|
|
7099
7124
|
"ListOutputResponseTypedDict": ".listoutputop",
|
|
7100
7125
|
"ListPipelineResponse": ".listpipelineop",
|
|
@@ -8316,18 +8341,20 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8316
8341
|
"SecurityTypedDict": ".security",
|
|
8317
8342
|
"TeamAccessControlList": ".teamaccesscontrollist",
|
|
8318
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",
|
|
8319
8354
|
"UpdateCriblLakeDatasetByLakeIDAndIDRequest": ".updatecribllakedatasetbylakeidandidop",
|
|
8320
8355
|
"UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".updatecribllakedatasetbylakeidandidop",
|
|
8321
8356
|
"UpdateCriblLakeDatasetByLakeIDAndIDResponse": ".updatecribllakedatasetbylakeidandidop",
|
|
8322
8357
|
"UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict": ".updatecribllakedatasetbylakeidandidop",
|
|
8323
|
-
"UpdateGroupsByIDRequest": ".updategroupsbyidop",
|
|
8324
|
-
"UpdateGroupsByIDRequestTypedDict": ".updategroupsbyidop",
|
|
8325
|
-
"UpdateGroupsByIDResponse": ".updategroupsbyidop",
|
|
8326
|
-
"UpdateGroupsByIDResponseTypedDict": ".updategroupsbyidop",
|
|
8327
|
-
"UpdateGroupsDeployByIDRequest": ".updategroupsdeploybyidop",
|
|
8328
|
-
"UpdateGroupsDeployByIDRequestTypedDict": ".updategroupsdeploybyidop",
|
|
8329
|
-
"UpdateGroupsDeployByIDResponse": ".updategroupsdeploybyidop",
|
|
8330
|
-
"UpdateGroupsDeployByIDResponseTypedDict": ".updategroupsdeploybyidop",
|
|
8331
8358
|
"UpdateHecTokenRequest": ".updatehectokenrequest",
|
|
8332
8359
|
"UpdateHecTokenRequestMetadatum": ".updatehectokenrequest",
|
|
8333
8360
|
"UpdateHecTokenRequestMetadatumTypedDict": ".updatehectokenrequest",
|