cribl-control-plane 0.0.18__py3-none-any.whl → 0.0.19__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 (65) hide show
  1. cribl_control_plane/_version.py +3 -3
  2. cribl_control_plane/distributed.py +187 -0
  3. cribl_control_plane/errors/healthstatus_error.py +1 -1
  4. cribl_control_plane/groups_sdk.py +1291 -0
  5. cribl_control_plane/lake.py +479 -0
  6. cribl_control_plane/models/__init__.py +602 -3
  7. cribl_control_plane/models/appmode.py +13 -0
  8. cribl_control_plane/models/cacheconnection.py +44 -0
  9. cribl_control_plane/models/cacheconnectionbackfillstatus.py +12 -0
  10. cribl_control_plane/models/cloudprovider.py +9 -0
  11. cribl_control_plane/models/commit.py +30 -0
  12. cribl_control_plane/models/configgroup.py +116 -0
  13. cribl_control_plane/models/configgroupcloud.py +48 -0
  14. cribl_control_plane/models/configgrouplookups.py +34 -0
  15. cribl_control_plane/models/createcribllakedatasetbylakeidop.py +48 -0
  16. cribl_control_plane/models/createpacksop.py +24 -0
  17. cribl_control_plane/models/createproductsgroupsbyproductop.py +54 -0
  18. cribl_control_plane/models/cribllakedataset.py +74 -0
  19. cribl_control_plane/models/datasetmetadata.py +39 -0
  20. cribl_control_plane/models/datasetmetadataruninfo.py +28 -0
  21. cribl_control_plane/models/deployrequest.py +18 -0
  22. cribl_control_plane/models/deployrequestlookups.py +28 -0
  23. cribl_control_plane/models/distributedsummary.py +63 -0
  24. cribl_control_plane/models/getcribllakedatasetbylakeidop.py +40 -0
  25. cribl_control_plane/models/getgroupsaclbyidop.py +63 -0
  26. cribl_control_plane/models/getgroupsbyidop.py +49 -0
  27. cribl_control_plane/models/getgroupsconfigversionbyidop.py +36 -0
  28. cribl_control_plane/models/getpacksop.py +40 -0
  29. cribl_control_plane/models/getproductsgroupsaclteamsbyproductandidop.py +78 -0
  30. cribl_control_plane/models/getproductsgroupsbyproductop.py +58 -0
  31. cribl_control_plane/models/getsummaryop.py +46 -0
  32. cribl_control_plane/models/getsummaryworkersop.py +39 -0
  33. cribl_control_plane/models/getworkersop.py +82 -0
  34. cribl_control_plane/models/hbcriblinfo.py +80 -0
  35. cribl_control_plane/models/hbleaderinfo.py +23 -0
  36. cribl_control_plane/models/healthstatus.py +3 -3
  37. cribl_control_plane/models/heartbeatmetadata.py +122 -0
  38. cribl_control_plane/models/lakedatasetsearchconfig.py +18 -0
  39. cribl_control_plane/models/lakehouseconnectiontype.py +9 -0
  40. cribl_control_plane/models/lookupversions.py +13 -0
  41. cribl_control_plane/models/masterworkerentry.py +84 -0
  42. cribl_control_plane/models/nodeactiveupgradestatus.py +10 -0
  43. cribl_control_plane/models/nodefailedupgradestatus.py +9 -0
  44. cribl_control_plane/models/nodeprovidedinfo.py +184 -0
  45. cribl_control_plane/models/nodeskippedupgradestatus.py +11 -0
  46. cribl_control_plane/models/nodeupgradestate.py +11 -0
  47. cribl_control_plane/models/nodeupgradestatus.py +30 -0
  48. cribl_control_plane/models/packinfo.py +73 -0
  49. cribl_control_plane/models/packinstallinfo.py +76 -0
  50. cribl_control_plane/models/packrequestbody.py +75 -0
  51. cribl_control_plane/models/rbacresource.py +14 -0
  52. cribl_control_plane/models/resourcepolicy.py +24 -0
  53. cribl_control_plane/models/restartresponse.py +26 -0
  54. cribl_control_plane/models/teamaccesscontrollist.py +18 -0
  55. cribl_control_plane/models/updategroupsdeploybyidop.py +46 -0
  56. cribl_control_plane/models/updatepacksop.py +37 -0
  57. cribl_control_plane/models/updateworkersrestartop.py +24 -0
  58. cribl_control_plane/models/useraccesscontrollist.py +18 -0
  59. cribl_control_plane/packs.py +623 -0
  60. cribl_control_plane/sdk.py +24 -0
  61. cribl_control_plane/teams.py +203 -0
  62. cribl_control_plane/workers_sdk.py +555 -0
  63. {cribl_control_plane-0.0.18.dist-info → cribl_control_plane-0.0.19.dist-info}/METADATA +42 -8
  64. {cribl_control_plane-0.0.18.dist-info → cribl_control_plane-0.0.19.dist-info}/RECORD +65 -8
  65. {cribl_control_plane-0.0.18.dist-info → cribl_control_plane-0.0.19.dist-info}/WHEEL +0 -0
@@ -10,7 +10,32 @@ if TYPE_CHECKING:
10
10
  AddHecTokenRequestMetadatumTypedDict,
11
11
  AddHecTokenRequestTypedDict,
12
12
  )
13
+ from .appmode import AppMode
13
14
  from .authtoken import AuthToken, AuthTokenTypedDict
15
+ from .cacheconnection import CacheConnection, CacheConnectionTypedDict
16
+ from .cacheconnectionbackfillstatus import CacheConnectionBackfillStatus
17
+ from .cloudprovider import CloudProvider
18
+ from .commit import Commit, CommitTypedDict
19
+ from .configgroup import (
20
+ ConfigGroup,
21
+ ConfigGroupType,
22
+ ConfigGroupTypedDict,
23
+ Git,
24
+ GitTypedDict,
25
+ )
26
+ from .configgroupcloud import ConfigGroupCloud, ConfigGroupCloudTypedDict
27
+ from .configgrouplookups import (
28
+ ConfigGroupLookups,
29
+ ConfigGroupLookupsLookup,
30
+ ConfigGroupLookupsLookupTypedDict,
31
+ ConfigGroupLookupsTypedDict,
32
+ )
33
+ from .createcribllakedatasetbylakeidop import (
34
+ CreateCriblLakeDatasetByLakeIDRequest,
35
+ CreateCriblLakeDatasetByLakeIDRequestTypedDict,
36
+ CreateCriblLakeDatasetByLakeIDResponse,
37
+ CreateCriblLakeDatasetByLakeIDResponseTypedDict,
38
+ )
14
39
  from .createinputhectokenbyidop import (
15
40
  CreateInputHecTokenByIDRequest,
16
41
  CreateInputHecTokenByIDRequestTypedDict,
@@ -1773,10 +1798,18 @@ if TYPE_CHECKING:
1773
1798
  CreateOutputTestByIDResponse,
1774
1799
  CreateOutputTestByIDResponseTypedDict,
1775
1800
  )
1801
+ from .createpacksop import CreatePacksResponse, CreatePacksResponseTypedDict
1776
1802
  from .createpipelineop import (
1777
1803
  CreatePipelineResponse,
1778
1804
  CreatePipelineResponseTypedDict,
1779
1805
  )
1806
+ from .createproductsgroupsbyproductop import (
1807
+ CreateProductsGroupsByProductProduct,
1808
+ CreateProductsGroupsByProductRequest,
1809
+ CreateProductsGroupsByProductRequestTypedDict,
1810
+ CreateProductsGroupsByProductResponse,
1811
+ CreateProductsGroupsByProductResponseTypedDict,
1812
+ )
1780
1813
  from .createroutesappendbyidop import (
1781
1814
  CreateRoutesAppendByIDRequest,
1782
1815
  CreateRoutesAppendByIDRequestTypedDict,
@@ -1808,6 +1841,16 @@ if TYPE_CHECKING:
1808
1841
  CreateVersionUndoResponseTypedDict,
1809
1842
  )
1810
1843
  from .criblevent import CriblEvent, CriblEventTypedDict
1844
+ from .cribllakedataset import (
1845
+ CriblLakeDataset,
1846
+ CriblLakeDatasetFormat,
1847
+ CriblLakeDatasetTypedDict,
1848
+ )
1849
+ from .datasetmetadata import DatasetMetadata, DatasetMetadataTypedDict, ScanMode
1850
+ from .datasetmetadataruninfo import (
1851
+ DatasetMetadataRunInfo,
1852
+ DatasetMetadataRunInfoTypedDict,
1853
+ )
1811
1854
  from .deleteinputbyidop import (
1812
1855
  DeleteInputByIDRequest,
1813
1856
  DeleteInputByIDRequestTypedDict,
@@ -1832,6 +1875,46 @@ if TYPE_CHECKING:
1832
1875
  DeletePipelineByIDResponse,
1833
1876
  DeletePipelineByIDResponseTypedDict,
1834
1877
  )
1878
+ from .deployrequest import DeployRequest, DeployRequestTypedDict
1879
+ from .deployrequestlookups import (
1880
+ DeployRequestLookups,
1881
+ DeployRequestLookupsLookup,
1882
+ DeployRequestLookupsLookupTypedDict,
1883
+ DeployRequestLookupsTypedDict,
1884
+ )
1885
+ from .distributedsummary import (
1886
+ DistributedSummary,
1887
+ DistributedSummaryGroups,
1888
+ DistributedSummaryGroupsTypedDict,
1889
+ DistributedSummaryTypedDict,
1890
+ DistributedSummaryWorkers,
1891
+ DistributedSummaryWorkersTypedDict,
1892
+ )
1893
+ from .getcribllakedatasetbylakeidop import (
1894
+ GetCriblLakeDatasetByLakeIDRequest,
1895
+ GetCriblLakeDatasetByLakeIDRequestTypedDict,
1896
+ GetCriblLakeDatasetByLakeIDResponse,
1897
+ GetCriblLakeDatasetByLakeIDResponseTypedDict,
1898
+ )
1899
+ from .getgroupsaclbyidop import (
1900
+ GetGroupsACLByIDRequest,
1901
+ GetGroupsACLByIDRequestTypedDict,
1902
+ GetGroupsACLByIDResponse,
1903
+ GetGroupsACLByIDResponseTypedDict,
1904
+ GetGroupsACLByIDType,
1905
+ )
1906
+ from .getgroupsbyidop import (
1907
+ GetGroupsByIDRequest,
1908
+ GetGroupsByIDRequestTypedDict,
1909
+ GetGroupsByIDResponse,
1910
+ GetGroupsByIDResponseTypedDict,
1911
+ )
1912
+ from .getgroupsconfigversionbyidop import (
1913
+ GetGroupsConfigVersionByIDRequest,
1914
+ GetGroupsConfigVersionByIDRequestTypedDict,
1915
+ GetGroupsConfigVersionByIDResponse,
1916
+ GetGroupsConfigVersionByIDResponseTypedDict,
1917
+ )
1835
1918
  from .getinputbyidop import (
1836
1919
  GetInputByIDRequest,
1837
1920
  GetInputByIDRequestTypedDict,
@@ -1856,18 +1939,52 @@ if TYPE_CHECKING:
1856
1939
  GetOutputSamplesByIDResponse,
1857
1940
  GetOutputSamplesByIDResponseTypedDict,
1858
1941
  )
1942
+ from .getpacksop import (
1943
+ GetPacksRequest,
1944
+ GetPacksRequestTypedDict,
1945
+ GetPacksResponse,
1946
+ GetPacksResponseTypedDict,
1947
+ )
1859
1948
  from .getpipelinebyidop import (
1860
1949
  GetPipelineByIDRequest,
1861
1950
  GetPipelineByIDRequestTypedDict,
1862
1951
  GetPipelineByIDResponse,
1863
1952
  GetPipelineByIDResponseTypedDict,
1864
1953
  )
1954
+ from .getproductsgroupsaclteamsbyproductandidop import (
1955
+ GetProductsGroupsACLTeamsByProductAndIDProduct,
1956
+ GetProductsGroupsACLTeamsByProductAndIDRequest,
1957
+ GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict,
1958
+ GetProductsGroupsACLTeamsByProductAndIDResponse,
1959
+ GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict,
1960
+ GetProductsGroupsACLTeamsByProductAndIDType,
1961
+ )
1962
+ from .getproductsgroupsbyproductop import (
1963
+ GetProductsGroupsByProductProduct,
1964
+ GetProductsGroupsByProductRequest,
1965
+ GetProductsGroupsByProductRequestTypedDict,
1966
+ GetProductsGroupsByProductResponse,
1967
+ GetProductsGroupsByProductResponseTypedDict,
1968
+ )
1865
1969
  from .getroutesbyidop import (
1866
1970
  GetRoutesByIDRequest,
1867
1971
  GetRoutesByIDRequestTypedDict,
1868
1972
  GetRoutesByIDResponse,
1869
1973
  GetRoutesByIDResponseTypedDict,
1870
1974
  )
1975
+ from .getsummaryop import (
1976
+ GetSummaryMode,
1977
+ GetSummaryRequest,
1978
+ GetSummaryRequestTypedDict,
1979
+ GetSummaryResponse,
1980
+ GetSummaryResponseTypedDict,
1981
+ )
1982
+ from .getsummaryworkersop import (
1983
+ GetSummaryWorkersRequest,
1984
+ GetSummaryWorkersRequestTypedDict,
1985
+ GetSummaryWorkersResponse,
1986
+ GetSummaryWorkersResponseTypedDict,
1987
+ )
1871
1988
  from .getversionbranchop import (
1872
1989
  GetVersionBranchResponse,
1873
1990
  GetVersionBranchResponseTypedDict,
@@ -1910,6 +2027,12 @@ if TYPE_CHECKING:
1910
2027
  GetVersionStatusResponse,
1911
2028
  GetVersionStatusResponseTypedDict,
1912
2029
  )
2030
+ from .getworkersop import (
2031
+ GetWorkersRequest,
2032
+ GetWorkersRequestTypedDict,
2033
+ GetWorkersResponse,
2034
+ GetWorkersResponseTypedDict,
2035
+ )
1913
2036
  from .gitcommitparams import GitCommitParams, GitCommitParamsTypedDict
1914
2037
  from .gitcommitsummary import (
1915
2038
  Author,
@@ -1941,7 +2064,30 @@ if TYPE_CHECKING:
1941
2064
  Renamed,
1942
2065
  RenamedTypedDict,
1943
2066
  )
1944
- from .healthstatus import HealthStatus, HealthStatusTypedDict, Role, Status
2067
+ from .hbcriblinfo import Config, ConfigTypedDict, HBCriblInfo, HBCriblInfoTypedDict
2068
+ from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
2069
+ from .healthstatus import (
2070
+ HealthStatus,
2071
+ HealthStatusStatus,
2072
+ HealthStatusTypedDict,
2073
+ Role,
2074
+ )
2075
+ from .heartbeatmetadata import (
2076
+ HeartbeatMetadata,
2077
+ HeartbeatMetadataAws,
2078
+ HeartbeatMetadataAwsTypedDict,
2079
+ HeartbeatMetadataHostOs,
2080
+ HeartbeatMetadataHostOsTypedDict,
2081
+ HeartbeatMetadataKube,
2082
+ HeartbeatMetadataKubeTypedDict,
2083
+ HeartbeatMetadataOs,
2084
+ HeartbeatMetadataOsTypedDict,
2085
+ HeartbeatMetadataOwner,
2086
+ HeartbeatMetadataOwnerTypedDict,
2087
+ HeartbeatMetadataTags,
2088
+ HeartbeatMetadataTagsTypedDict,
2089
+ HeartbeatMetadataTypedDict,
2090
+ )
1945
2091
  from .input import Input, InputTypedDict
1946
2092
  from .inputappscope import (
1947
2093
  Allow,
@@ -3184,11 +3330,51 @@ if TYPE_CHECKING:
3184
3330
  InputZscalerHecType,
3185
3331
  InputZscalerHecTypedDict,
3186
3332
  )
3333
+ from .lakedatasetsearchconfig import (
3334
+ LakeDatasetSearchConfig,
3335
+ LakeDatasetSearchConfigTypedDict,
3336
+ )
3337
+ from .lakehouseconnectiontype import LakehouseConnectionType
3187
3338
  from .listinputop import ListInputResponse, ListInputResponseTypedDict
3188
3339
  from .listoutputop import ListOutputResponse, ListOutputResponseTypedDict
3189
3340
  from .listpipelineop import ListPipelineResponse, ListPipelineResponseTypedDict
3190
3341
  from .listroutesop import ListRoutesResponse, ListRoutesResponseTypedDict
3191
3342
  from .logininfo import LoginInfo, LoginInfoTypedDict
3343
+ from .lookupversions import LookupVersions, LookupVersionsTypedDict
3344
+ from .masterworkerentry import (
3345
+ LastMetrics,
3346
+ LastMetricsTypedDict,
3347
+ MasterWorkerEntry,
3348
+ MasterWorkerEntryType,
3349
+ MasterWorkerEntryTypedDict,
3350
+ MasterWorkerEntryWorkers,
3351
+ MasterWorkerEntryWorkersTypedDict,
3352
+ )
3353
+ from .nodeactiveupgradestatus import NodeActiveUpgradeStatus
3354
+ from .nodefailedupgradestatus import NodeFailedUpgradeStatus
3355
+ from .nodeprovidedinfo import (
3356
+ NodeProvidedInfo,
3357
+ NodeProvidedInfoAws,
3358
+ NodeProvidedInfoAwsTypedDict,
3359
+ NodeProvidedInfoHostOs,
3360
+ NodeProvidedInfoHostOsTypedDict,
3361
+ NodeProvidedInfoKube,
3362
+ NodeProvidedInfoKubeTypedDict,
3363
+ NodeProvidedInfoOs1,
3364
+ NodeProvidedInfoOs1TypedDict,
3365
+ NodeProvidedInfoOs2,
3366
+ NodeProvidedInfoOs2TypedDict,
3367
+ NodeProvidedInfoOwner,
3368
+ NodeProvidedInfoOwnerTypedDict,
3369
+ NodeProvidedInfoTags,
3370
+ NodeProvidedInfoTagsTypedDict,
3371
+ NodeProvidedInfoTypedDict,
3372
+ Os,
3373
+ OsTypedDict,
3374
+ )
3375
+ from .nodeskippedupgradestatus import NodeSkippedUpgradeStatus
3376
+ from .nodeupgradestate import NodeUpgradeState
3377
+ from .nodeupgradestatus import NodeUpgradeStatus, NodeUpgradeStatusTypedDict
3192
3378
  from .output import Output, OutputTypedDict
3193
3379
  from .outputazureblob import (
3194
3380
  BlobAccessTier,
@@ -4442,6 +4628,24 @@ if TYPE_CHECKING:
4442
4628
  OutputXsiamURL,
4443
4629
  OutputXsiamURLTypedDict,
4444
4630
  )
4631
+ from .packinfo import (
4632
+ PackInfo,
4633
+ PackInfoTags,
4634
+ PackInfoTagsTypedDict,
4635
+ PackInfoTypedDict,
4636
+ )
4637
+ from .packinstallinfo import (
4638
+ PackInstallInfo,
4639
+ PackInstallInfoTags,
4640
+ PackInstallInfoTagsTypedDict,
4641
+ PackInstallInfoTypedDict,
4642
+ )
4643
+ from .packrequestbody import (
4644
+ PackRequestBody,
4645
+ PackRequestBodyTags,
4646
+ PackRequestBodyTagsTypedDict,
4647
+ PackRequestBodyTypedDict,
4648
+ )
4445
4649
  from .pipeline import (
4446
4650
  Conf,
4447
4651
  ConfTypedDict,
@@ -4456,6 +4660,13 @@ if TYPE_CHECKING:
4456
4660
  PipelineFunctionConf,
4457
4661
  PipelineFunctionConfTypedDict,
4458
4662
  )
4663
+ from .rbacresource import RbacResource
4664
+ from .resourcepolicy import ResourcePolicy, ResourcePolicyTypedDict
4665
+ from .restartresponse import (
4666
+ RestartResponse,
4667
+ RestartResponseStatus,
4668
+ RestartResponseTypedDict,
4669
+ )
4459
4670
  from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
4460
4671
  from .routeconf import RouteConf, RouteConfTypedDict
4461
4672
  from .routes import (
@@ -4472,6 +4683,16 @@ if TYPE_CHECKING:
4472
4683
  from .routesroute_input import RoutesRouteInput, RoutesRouteInputTypedDict
4473
4684
  from .schemeclientoauth import SchemeClientOauth, SchemeClientOauthTypedDict
4474
4685
  from .security import Security, SecurityTypedDict
4686
+ from .teamaccesscontrollist import (
4687
+ TeamAccessControlList,
4688
+ TeamAccessControlListTypedDict,
4689
+ )
4690
+ from .updategroupsdeploybyidop import (
4691
+ UpdateGroupsDeployByIDRequest,
4692
+ UpdateGroupsDeployByIDRequestTypedDict,
4693
+ UpdateGroupsDeployByIDResponse,
4694
+ UpdateGroupsDeployByIDResponseTypedDict,
4695
+ )
4475
4696
  from .updatehectokenrequest import (
4476
4697
  UpdateHecTokenRequest,
4477
4698
  UpdateHecTokenRequestMetadatum,
@@ -4496,6 +4717,12 @@ if TYPE_CHECKING:
4496
4717
  UpdateOutputByIDResponse,
4497
4718
  UpdateOutputByIDResponseTypedDict,
4498
4719
  )
4720
+ from .updatepacksop import (
4721
+ UpdatePacksRequest,
4722
+ UpdatePacksRequestTypedDict,
4723
+ UpdatePacksResponse,
4724
+ UpdatePacksResponseTypedDict,
4725
+ )
4499
4726
  from .updatepipelinebyidop import (
4500
4727
  UpdatePipelineByIDRequest,
4501
4728
  UpdatePipelineByIDRequestTypedDict,
@@ -4508,6 +4735,14 @@ if TYPE_CHECKING:
4508
4735
  UpdateRoutesByIDResponse,
4509
4736
  UpdateRoutesByIDResponseTypedDict,
4510
4737
  )
4738
+ from .updateworkersrestartop import (
4739
+ UpdateWorkersRestartResponse,
4740
+ UpdateWorkersRestartResponseTypedDict,
4741
+ )
4742
+ from .useraccesscontrollist import (
4743
+ UserAccessControlList,
4744
+ UserAccessControlListTypedDict,
4745
+ )
4511
4746
 
4512
4747
  __all__ = [
4513
4748
  "AISIEMEndpointPath",
@@ -4523,6 +4758,7 @@ __all__ = [
4523
4758
  "AdditionalPropertyTypedDict",
4524
4759
  "Allow",
4525
4760
  "AllowTypedDict",
4761
+ "AppMode",
4526
4762
  "Audit",
4527
4763
  "AuditTypedDict",
4528
4764
  "AuthAuthenticationMethodElastic",
@@ -4644,6 +4880,9 @@ __all__ = [
4644
4880
  "BackpressureBehaviorSumoLogic",
4645
4881
  "BackpressureBehaviorWavefront",
4646
4882
  "BlobAccessTier",
4883
+ "CacheConnection",
4884
+ "CacheConnectionBackfillStatus",
4885
+ "CacheConnectionTypedDict",
4647
4886
  "CertOptions",
4648
4887
  "CertOptionsTypedDict",
4649
4888
  "CertificateAzureDataExplorer",
@@ -4656,12 +4895,15 @@ __all__ = [
4656
4895
  "CheckpointingS3TypedDict",
4657
4896
  "CheckpointingSecurityLake",
4658
4897
  "CheckpointingSecurityLakeTypedDict",
4898
+ "CloudProvider",
4659
4899
  "Collectors",
4660
4900
  "CollectorsTypedDict",
4661
4901
  "ColumnMapping",
4662
4902
  "ColumnMappingTypedDict",
4663
4903
  "Comment",
4664
4904
  "CommentTypedDict",
4905
+ "Commit",
4906
+ "CommitTypedDict",
4665
4907
  "CompressCompression131",
4666
4908
  "CompressCompressionAzureDataExplorer",
4667
4909
  "CompressCompressionSplunkLb",
@@ -4725,6 +4967,17 @@ __all__ = [
4725
4967
  "CompressionZscalerHec",
4726
4968
  "Conf",
4727
4969
  "ConfTypedDict",
4970
+ "Config",
4971
+ "ConfigGroup",
4972
+ "ConfigGroupCloud",
4973
+ "ConfigGroupCloudTypedDict",
4974
+ "ConfigGroupLookups",
4975
+ "ConfigGroupLookupsLookup",
4976
+ "ConfigGroupLookupsLookupTypedDict",
4977
+ "ConfigGroupLookupsTypedDict",
4978
+ "ConfigGroupType",
4979
+ "ConfigGroupTypedDict",
4980
+ "ConfigTypedDict",
4728
4981
  "ConnectionAzureBlob",
4729
4982
  "ConnectionAzureBlobTypedDict",
4730
4983
  "ConnectionConfluentCloud",
@@ -4820,6 +5073,10 @@ __all__ = [
4820
5073
  "ContentConfigOffice365ServiceTypedDict",
4821
5074
  "ContentConfigWiz",
4822
5075
  "ContentConfigWizTypedDict",
5076
+ "CreateCriblLakeDatasetByLakeIDRequest",
5077
+ "CreateCriblLakeDatasetByLakeIDRequestTypedDict",
5078
+ "CreateCriblLakeDatasetByLakeIDResponse",
5079
+ "CreateCriblLakeDatasetByLakeIDResponseTypedDict",
4823
5080
  "CreateInputAPIVersion",
4824
5081
  "CreateInputAuthConfluentCloud",
4825
5082
  "CreateInputAuthConfluentCloudTypedDict",
@@ -5531,8 +5788,15 @@ __all__ = [
5531
5788
  "CreateOutputURL",
5532
5789
  "CreateOutputURLTypedDict",
5533
5790
  "CreateOutputWriteAction",
5791
+ "CreatePacksResponse",
5792
+ "CreatePacksResponseTypedDict",
5534
5793
  "CreatePipelineResponse",
5535
5794
  "CreatePipelineResponseTypedDict",
5795
+ "CreateProductsGroupsByProductProduct",
5796
+ "CreateProductsGroupsByProductRequest",
5797
+ "CreateProductsGroupsByProductRequestTypedDict",
5798
+ "CreateProductsGroupsByProductResponse",
5799
+ "CreateProductsGroupsByProductResponseTypedDict",
5536
5800
  "CreateRoutesAppendByIDRequest",
5537
5801
  "CreateRoutesAppendByIDRequestTypedDict",
5538
5802
  "CreateRoutesAppendByIDResponse",
@@ -5553,6 +5817,9 @@ __all__ = [
5553
5817
  "CreateVersionUndoResponseTypedDict",
5554
5818
  "CriblEvent",
5555
5819
  "CriblEventTypedDict",
5820
+ "CriblLakeDataset",
5821
+ "CriblLakeDatasetFormat",
5822
+ "CriblLakeDatasetTypedDict",
5556
5823
  "CustomLabel",
5557
5824
  "CustomLabelTypedDict",
5558
5825
  "DNS",
@@ -5572,6 +5839,10 @@ __all__ = [
5572
5839
  "DataPageVersionSecurityLake",
5573
5840
  "DataSetSite",
5574
5841
  "DatadogSite",
5842
+ "DatasetMetadata",
5843
+ "DatasetMetadataRunInfo",
5844
+ "DatasetMetadataRunInfoTypedDict",
5845
+ "DatasetMetadataTypedDict",
5575
5846
  "DeleteInputByIDRequest",
5576
5847
  "DeleteInputByIDRequestTypedDict",
5577
5848
  "DeleteInputByIDResponse",
@@ -5588,6 +5859,12 @@ __all__ = [
5588
5859
  "DeletePipelineByIDRequestTypedDict",
5589
5860
  "DeletePipelineByIDResponse",
5590
5861
  "DeletePipelineByIDResponseTypedDict",
5862
+ "DeployRequest",
5863
+ "DeployRequestLookups",
5864
+ "DeployRequestLookupsLookup",
5865
+ "DeployRequestLookupsLookupTypedDict",
5866
+ "DeployRequestLookupsTypedDict",
5867
+ "DeployRequestTypedDict",
5591
5868
  "DestinationProtocolGraphite",
5592
5869
  "DestinationProtocolStatsd",
5593
5870
  "DestinationProtocolStatsdExt",
@@ -5603,6 +5880,12 @@ __all__ = [
5603
5880
  "DiskSpaceProtectionSecurityLake",
5604
5881
  "DisksAndFileSystems",
5605
5882
  "DisksAndFileSystemsTypedDict",
5883
+ "DistributedSummary",
5884
+ "DistributedSummaryGroups",
5885
+ "DistributedSummaryGroupsTypedDict",
5886
+ "DistributedSummaryTypedDict",
5887
+ "DistributedSummaryWorkers",
5888
+ "DistributedSummaryWorkersTypedDict",
5606
5889
  "ElasticVersion",
5607
5890
  "Endpoint",
5608
5891
  "EndpointConfiguration",
@@ -5695,6 +5978,23 @@ __all__ = [
5695
5978
  "FormatSentinel",
5696
5979
  "FunctionSpecificConfigs",
5697
5980
  "FunctionSpecificConfigsTypedDict",
5981
+ "GetCriblLakeDatasetByLakeIDRequest",
5982
+ "GetCriblLakeDatasetByLakeIDRequestTypedDict",
5983
+ "GetCriblLakeDatasetByLakeIDResponse",
5984
+ "GetCriblLakeDatasetByLakeIDResponseTypedDict",
5985
+ "GetGroupsACLByIDRequest",
5986
+ "GetGroupsACLByIDRequestTypedDict",
5987
+ "GetGroupsACLByIDResponse",
5988
+ "GetGroupsACLByIDResponseTypedDict",
5989
+ "GetGroupsACLByIDType",
5990
+ "GetGroupsByIDRequest",
5991
+ "GetGroupsByIDRequestTypedDict",
5992
+ "GetGroupsByIDResponse",
5993
+ "GetGroupsByIDResponseTypedDict",
5994
+ "GetGroupsConfigVersionByIDRequest",
5995
+ "GetGroupsConfigVersionByIDRequestTypedDict",
5996
+ "GetGroupsConfigVersionByIDResponse",
5997
+ "GetGroupsConfigVersionByIDResponseTypedDict",
5698
5998
  "GetInputByIDRequest",
5699
5999
  "GetInputByIDRequestTypedDict",
5700
6000
  "GetInputByIDResponse",
@@ -5711,14 +6011,38 @@ __all__ = [
5711
6011
  "GetOutputSamplesByIDRequestTypedDict",
5712
6012
  "GetOutputSamplesByIDResponse",
5713
6013
  "GetOutputSamplesByIDResponseTypedDict",
6014
+ "GetPacksRequest",
6015
+ "GetPacksRequestTypedDict",
6016
+ "GetPacksResponse",
6017
+ "GetPacksResponseTypedDict",
5714
6018
  "GetPipelineByIDRequest",
5715
6019
  "GetPipelineByIDRequestTypedDict",
5716
6020
  "GetPipelineByIDResponse",
5717
6021
  "GetPipelineByIDResponseTypedDict",
6022
+ "GetProductsGroupsACLTeamsByProductAndIDProduct",
6023
+ "GetProductsGroupsACLTeamsByProductAndIDRequest",
6024
+ "GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict",
6025
+ "GetProductsGroupsACLTeamsByProductAndIDResponse",
6026
+ "GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict",
6027
+ "GetProductsGroupsACLTeamsByProductAndIDType",
6028
+ "GetProductsGroupsByProductProduct",
6029
+ "GetProductsGroupsByProductRequest",
6030
+ "GetProductsGroupsByProductRequestTypedDict",
6031
+ "GetProductsGroupsByProductResponse",
6032
+ "GetProductsGroupsByProductResponseTypedDict",
5718
6033
  "GetRoutesByIDRequest",
5719
6034
  "GetRoutesByIDRequestTypedDict",
5720
6035
  "GetRoutesByIDResponse",
5721
6036
  "GetRoutesByIDResponseTypedDict",
6037
+ "GetSummaryMode",
6038
+ "GetSummaryRequest",
6039
+ "GetSummaryRequestTypedDict",
6040
+ "GetSummaryResponse",
6041
+ "GetSummaryResponseTypedDict",
6042
+ "GetSummaryWorkersRequest",
6043
+ "GetSummaryWorkersRequestTypedDict",
6044
+ "GetSummaryWorkersResponse",
6045
+ "GetSummaryWorkersResponseTypedDict",
5722
6046
  "GetVersionBranchResponse",
5723
6047
  "GetVersionBranchResponseTypedDict",
5724
6048
  "GetVersionCountRequest",
@@ -5745,6 +6069,11 @@ __all__ = [
5745
6069
  "GetVersionStatusRequestTypedDict",
5746
6070
  "GetVersionStatusResponse",
5747
6071
  "GetVersionStatusResponseTypedDict",
6072
+ "GetWorkersRequest",
6073
+ "GetWorkersRequestTypedDict",
6074
+ "GetWorkersResponse",
6075
+ "GetWorkersResponseTypedDict",
6076
+ "Git",
5748
6077
  "GitCommitParams",
5749
6078
  "GitCommitParamsTypedDict",
5750
6079
  "GitCommitSummary",
@@ -5765,12 +6094,32 @@ __all__ = [
5765
6094
  "GitRevertResultTypedDict",
5766
6095
  "GitStatusResult",
5767
6096
  "GitStatusResultTypedDict",
6097
+ "GitTypedDict",
5768
6098
  "GoogleAuthenticationMethodGoogleCloudLogging",
6099
+ "HBCriblInfo",
6100
+ "HBCriblInfoTypedDict",
6101
+ "HBLeaderInfo",
6102
+ "HBLeaderInfoTypedDict",
5769
6103
  "HTTPCompressCompression131",
5770
6104
  "HTTPCompressCompressionHTTP",
5771
6105
  "HTTPCompressCompressionOpenTelemetry",
5772
6106
  "HealthStatus",
6107
+ "HealthStatusStatus",
5773
6108
  "HealthStatusTypedDict",
6109
+ "HeartbeatMetadata",
6110
+ "HeartbeatMetadataAws",
6111
+ "HeartbeatMetadataAwsTypedDict",
6112
+ "HeartbeatMetadataHostOs",
6113
+ "HeartbeatMetadataHostOsTypedDict",
6114
+ "HeartbeatMetadataKube",
6115
+ "HeartbeatMetadataKubeTypedDict",
6116
+ "HeartbeatMetadataOs",
6117
+ "HeartbeatMetadataOsTypedDict",
6118
+ "HeartbeatMetadataOwner",
6119
+ "HeartbeatMetadataOwnerTypedDict",
6120
+ "HeartbeatMetadataTags",
6121
+ "HeartbeatMetadataTagsTypedDict",
6122
+ "HeartbeatMetadataTypedDict",
5774
6123
  "HostInfo",
5775
6124
  "HostInfoTypedDict",
5776
6125
  "HostNetflow",
@@ -6856,6 +7205,11 @@ __all__ = [
6856
7205
  "KeyValueMetadatumS3TypedDict",
6857
7206
  "KeyValueMetadatumSecurityLake",
6858
7207
  "KeyValueMetadatumSecurityLakeTypedDict",
7208
+ "LakeDatasetSearchConfig",
7209
+ "LakeDatasetSearchConfigTypedDict",
7210
+ "LakehouseConnectionType",
7211
+ "LastMetrics",
7212
+ "LastMetricsTypedDict",
6859
7213
  "ListInputResponse",
6860
7214
  "ListInputResponseTypedDict",
6861
7215
  "ListOutputResponse",
@@ -6886,9 +7240,16 @@ __all__ = [
6886
7240
  "LokiAuthOauthParam1TypedDict",
6887
7241
  "LokiAuthOauthParam2",
6888
7242
  "LokiAuthOauthParam2TypedDict",
7243
+ "LookupVersions",
7244
+ "LookupVersionsTypedDict",
6889
7245
  "MTLSSettings",
6890
7246
  "MTLSSettingsTypedDict",
6891
7247
  "MappingType",
7248
+ "MasterWorkerEntry",
7249
+ "MasterWorkerEntryType",
7250
+ "MasterWorkerEntryTypedDict",
7251
+ "MasterWorkerEntryWorkers",
7252
+ "MasterWorkerEntryWorkersTypedDict",
6892
7253
  "MaxS2SVersionSplunkLb",
6893
7254
  "MaximumTLSVersion131",
6894
7255
  "MaximumTLSVersionClickHouse",
@@ -7074,6 +7435,28 @@ __all__ = [
7074
7435
  "ModeZscalerHec",
7075
7436
  "NestedFieldSerializationSplunk",
7076
7437
  "NestedFieldSerializationSplunkLb",
7438
+ "NodeActiveUpgradeStatus",
7439
+ "NodeFailedUpgradeStatus",
7440
+ "NodeProvidedInfo",
7441
+ "NodeProvidedInfoAws",
7442
+ "NodeProvidedInfoAwsTypedDict",
7443
+ "NodeProvidedInfoHostOs",
7444
+ "NodeProvidedInfoHostOsTypedDict",
7445
+ "NodeProvidedInfoKube",
7446
+ "NodeProvidedInfoKubeTypedDict",
7447
+ "NodeProvidedInfoOs1",
7448
+ "NodeProvidedInfoOs1TypedDict",
7449
+ "NodeProvidedInfoOs2",
7450
+ "NodeProvidedInfoOs2TypedDict",
7451
+ "NodeProvidedInfoOwner",
7452
+ "NodeProvidedInfoOwnerTypedDict",
7453
+ "NodeProvidedInfoTags",
7454
+ "NodeProvidedInfoTagsTypedDict",
7455
+ "NodeProvidedInfoTypedDict",
7456
+ "NodeSkippedUpgradeStatus",
7457
+ "NodeUpgradeState",
7458
+ "NodeUpgradeStatus",
7459
+ "NodeUpgradeStatusTypedDict",
7077
7460
  "OTLPVersionHTTP",
7078
7461
  "OauthHeaderClickHouse",
7079
7462
  "OauthHeaderClickHouseTypedDict",
@@ -7104,6 +7487,8 @@ __all__ = [
7104
7487
  "ObjectACLGoogleCloudStorage",
7105
7488
  "ObjectACLS3",
7106
7489
  "ObjectACLSecurityLake",
7490
+ "Os",
7491
+ "OsTypedDict",
7107
7492
  "Output",
7108
7493
  "OutputAzureBlob",
7109
7494
  "OutputAzureBlobAuthenticationMethod",
@@ -8192,6 +8577,18 @@ __all__ = [
8192
8577
  "OutputXsiamTypedDict",
8193
8578
  "OutputXsiamURL",
8194
8579
  "OutputXsiamURLTypedDict",
8580
+ "PackInfo",
8581
+ "PackInfoTags",
8582
+ "PackInfoTagsTypedDict",
8583
+ "PackInfoTypedDict",
8584
+ "PackInstallInfo",
8585
+ "PackInstallInfoTags",
8586
+ "PackInstallInfoTagsTypedDict",
8587
+ "PackInstallInfoTypedDict",
8588
+ "PackRequestBody",
8589
+ "PackRequestBodyTags",
8590
+ "PackRequestBodyTagsTypedDict",
8591
+ "PackRequestBodyTypedDict",
8195
8592
  "ParquetVersionAzureBlob",
8196
8593
  "ParquetVersionDlS3",
8197
8594
  "ParquetVersionFilesystem",
@@ -8443,6 +8840,7 @@ __all__ = [
8443
8840
  "QueueFullBehaviorStatsdExt",
8444
8841
  "QueueFullBehaviorSumoLogic",
8445
8842
  "QueueFullBehaviorWavefront",
8843
+ "RbacResource",
8446
8844
  "ReadMode",
8447
8845
  "RecordDataFormatAzureEventhub",
8448
8846
  "RecordDataFormatConfluentCloud",
@@ -8460,6 +8858,8 @@ __all__ = [
8460
8858
  "ReportMethod",
8461
8859
  "RequestFormatCrowdstrikeNextGenSiem",
8462
8860
  "RequestFormatHumioHec",
8861
+ "ResourcePolicy",
8862
+ "ResourcePolicyTypedDict",
8463
8863
  "ResourceTypeLabel",
8464
8864
  "ResourceTypeLabelTypedDict",
8465
8865
  "ResponseRetrySetting131",
@@ -8506,6 +8906,9 @@ __all__ = [
8506
8906
  "ResponseRetrySettingSumoLogicTypedDict",
8507
8907
  "ResponseRetrySettingWavefront",
8508
8908
  "ResponseRetrySettingWavefrontTypedDict",
8909
+ "RestartResponse",
8910
+ "RestartResponseStatus",
8911
+ "RestartResponseTypedDict",
8509
8912
  "RetryRulesOffice365Mgmt",
8510
8913
  "RetryRulesOffice365MgmtTypedDict",
8511
8914
  "RetryRulesOffice365MsgTrace",
@@ -8542,6 +8945,7 @@ __all__ = [
8542
8945
  "SNMPv3AuthenticationTypedDict",
8543
8946
  "Sample",
8544
8947
  "SampleTypedDict",
8948
+ "ScanMode",
8545
8949
  "ScheduleType",
8546
8950
  "SchemeClientOauth",
8547
8951
  "SchemeClientOauthTypedDict",
@@ -8570,7 +8974,6 @@ __all__ = [
8570
8974
  "SignatureVersionPrometheus",
8571
8975
  "SignatureVersionS3Inventory",
8572
8976
  "SignatureVersionSns",
8573
- "Status",
8574
8977
  "StorageClassDlS3",
8575
8978
  "StorageClassExabeam",
8576
8979
  "StorageClassGoogleCloudStorage",
@@ -8641,6 +9044,8 @@ __all__ = [
8641
9044
  "Target",
8642
9045
  "TargetProtocolEdgePrometheus",
8643
9046
  "TargetTypedDict",
9047
+ "TeamAccessControlList",
9048
+ "TeamAccessControlListTypedDict",
8644
9049
  "TelemetryType",
8645
9050
  "TimeoutRetrySettings131",
8646
9051
  "TimeoutRetrySettings131TypedDict",
@@ -8690,6 +9095,10 @@ __all__ = [
8690
9095
  "TimestampPrecision",
8691
9096
  "Type131",
8692
9097
  "TypeHTTPDynatraceOtlp",
9098
+ "UpdateGroupsDeployByIDRequest",
9099
+ "UpdateGroupsDeployByIDRequestTypedDict",
9100
+ "UpdateGroupsDeployByIDResponse",
9101
+ "UpdateGroupsDeployByIDResponseTypedDict",
8693
9102
  "UpdateHecTokenRequest",
8694
9103
  "UpdateHecTokenRequestMetadatum",
8695
9104
  "UpdateHecTokenRequestMetadatumTypedDict",
@@ -8706,6 +9115,10 @@ __all__ = [
8706
9115
  "UpdateOutputByIDRequestTypedDict",
8707
9116
  "UpdateOutputByIDResponse",
8708
9117
  "UpdateOutputByIDResponseTypedDict",
9118
+ "UpdatePacksRequest",
9119
+ "UpdatePacksRequestTypedDict",
9120
+ "UpdatePacksResponse",
9121
+ "UpdatePacksResponseTypedDict",
8709
9122
  "UpdatePipelineByIDRequest",
8710
9123
  "UpdatePipelineByIDRequestTypedDict",
8711
9124
  "UpdatePipelineByIDResponse",
@@ -8714,6 +9127,10 @@ __all__ = [
8714
9127
  "UpdateRoutesByIDRequestTypedDict",
8715
9128
  "UpdateRoutesByIDResponse",
8716
9129
  "UpdateRoutesByIDResponseTypedDict",
9130
+ "UpdateWorkersRestartResponse",
9131
+ "UpdateWorkersRestartResponseTypedDict",
9132
+ "UserAccessControlList",
9133
+ "UserAccessControlListTypedDict",
8717
9134
  "UsersAndGroups",
8718
9135
  "UsersAndGroupsTypedDict",
8719
9136
  "V3User",
@@ -8726,8 +9143,30 @@ _dynamic_imports: dict[str, str] = {
8726
9143
  "AddHecTokenRequestMetadatum": ".addhectokenrequest",
8727
9144
  "AddHecTokenRequestMetadatumTypedDict": ".addhectokenrequest",
8728
9145
  "AddHecTokenRequestTypedDict": ".addhectokenrequest",
9146
+ "AppMode": ".appmode",
8729
9147
  "AuthToken": ".authtoken",
8730
9148
  "AuthTokenTypedDict": ".authtoken",
9149
+ "CacheConnection": ".cacheconnection",
9150
+ "CacheConnectionTypedDict": ".cacheconnection",
9151
+ "CacheConnectionBackfillStatus": ".cacheconnectionbackfillstatus",
9152
+ "CloudProvider": ".cloudprovider",
9153
+ "Commit": ".commit",
9154
+ "CommitTypedDict": ".commit",
9155
+ "ConfigGroup": ".configgroup",
9156
+ "ConfigGroupType": ".configgroup",
9157
+ "ConfigGroupTypedDict": ".configgroup",
9158
+ "Git": ".configgroup",
9159
+ "GitTypedDict": ".configgroup",
9160
+ "ConfigGroupCloud": ".configgroupcloud",
9161
+ "ConfigGroupCloudTypedDict": ".configgroupcloud",
9162
+ "ConfigGroupLookups": ".configgrouplookups",
9163
+ "ConfigGroupLookupsLookup": ".configgrouplookups",
9164
+ "ConfigGroupLookupsLookupTypedDict": ".configgrouplookups",
9165
+ "ConfigGroupLookupsTypedDict": ".configgrouplookups",
9166
+ "CreateCriblLakeDatasetByLakeIDRequest": ".createcribllakedatasetbylakeidop",
9167
+ "CreateCriblLakeDatasetByLakeIDRequestTypedDict": ".createcribllakedatasetbylakeidop",
9168
+ "CreateCriblLakeDatasetByLakeIDResponse": ".createcribllakedatasetbylakeidop",
9169
+ "CreateCriblLakeDatasetByLakeIDResponseTypedDict": ".createcribllakedatasetbylakeidop",
8731
9170
  "CreateInputHecTokenByIDRequest": ".createinputhectokenbyidop",
8732
9171
  "CreateInputHecTokenByIDRequestTypedDict": ".createinputhectokenbyidop",
8733
9172
  "CreateInputHecTokenByIDResponse": ".createinputhectokenbyidop",
@@ -10482,8 +10921,15 @@ _dynamic_imports: dict[str, str] = {
10482
10921
  "CreateOutputTestByIDRequestTypedDict": ".createoutputtestbyidop",
10483
10922
  "CreateOutputTestByIDResponse": ".createoutputtestbyidop",
10484
10923
  "CreateOutputTestByIDResponseTypedDict": ".createoutputtestbyidop",
10924
+ "CreatePacksResponse": ".createpacksop",
10925
+ "CreatePacksResponseTypedDict": ".createpacksop",
10485
10926
  "CreatePipelineResponse": ".createpipelineop",
10486
10927
  "CreatePipelineResponseTypedDict": ".createpipelineop",
10928
+ "CreateProductsGroupsByProductProduct": ".createproductsgroupsbyproductop",
10929
+ "CreateProductsGroupsByProductRequest": ".createproductsgroupsbyproductop",
10930
+ "CreateProductsGroupsByProductRequestTypedDict": ".createproductsgroupsbyproductop",
10931
+ "CreateProductsGroupsByProductResponse": ".createproductsgroupsbyproductop",
10932
+ "CreateProductsGroupsByProductResponseTypedDict": ".createproductsgroupsbyproductop",
10487
10933
  "CreateRoutesAppendByIDRequest": ".createroutesappendbyidop",
10488
10934
  "CreateRoutesAppendByIDRequestTypedDict": ".createroutesappendbyidop",
10489
10935
  "CreateRoutesAppendByIDResponse": ".createroutesappendbyidop",
@@ -10504,6 +10950,14 @@ _dynamic_imports: dict[str, str] = {
10504
10950
  "CreateVersionUndoResponseTypedDict": ".createversionundoop",
10505
10951
  "CriblEvent": ".criblevent",
10506
10952
  "CriblEventTypedDict": ".criblevent",
10953
+ "CriblLakeDataset": ".cribllakedataset",
10954
+ "CriblLakeDatasetFormat": ".cribllakedataset",
10955
+ "CriblLakeDatasetTypedDict": ".cribllakedataset",
10956
+ "DatasetMetadata": ".datasetmetadata",
10957
+ "DatasetMetadataTypedDict": ".datasetmetadata",
10958
+ "ScanMode": ".datasetmetadata",
10959
+ "DatasetMetadataRunInfo": ".datasetmetadataruninfo",
10960
+ "DatasetMetadataRunInfoTypedDict": ".datasetmetadataruninfo",
10507
10961
  "DeleteInputByIDRequest": ".deleteinputbyidop",
10508
10962
  "DeleteInputByIDRequestTypedDict": ".deleteinputbyidop",
10509
10963
  "DeleteInputByIDResponse": ".deleteinputbyidop",
@@ -10520,6 +10974,35 @@ _dynamic_imports: dict[str, str] = {
10520
10974
  "DeletePipelineByIDRequestTypedDict": ".deletepipelinebyidop",
10521
10975
  "DeletePipelineByIDResponse": ".deletepipelinebyidop",
10522
10976
  "DeletePipelineByIDResponseTypedDict": ".deletepipelinebyidop",
10977
+ "DeployRequest": ".deployrequest",
10978
+ "DeployRequestTypedDict": ".deployrequest",
10979
+ "DeployRequestLookups": ".deployrequestlookups",
10980
+ "DeployRequestLookupsLookup": ".deployrequestlookups",
10981
+ "DeployRequestLookupsLookupTypedDict": ".deployrequestlookups",
10982
+ "DeployRequestLookupsTypedDict": ".deployrequestlookups",
10983
+ "DistributedSummary": ".distributedsummary",
10984
+ "DistributedSummaryGroups": ".distributedsummary",
10985
+ "DistributedSummaryGroupsTypedDict": ".distributedsummary",
10986
+ "DistributedSummaryTypedDict": ".distributedsummary",
10987
+ "DistributedSummaryWorkers": ".distributedsummary",
10988
+ "DistributedSummaryWorkersTypedDict": ".distributedsummary",
10989
+ "GetCriblLakeDatasetByLakeIDRequest": ".getcribllakedatasetbylakeidop",
10990
+ "GetCriblLakeDatasetByLakeIDRequestTypedDict": ".getcribllakedatasetbylakeidop",
10991
+ "GetCriblLakeDatasetByLakeIDResponse": ".getcribllakedatasetbylakeidop",
10992
+ "GetCriblLakeDatasetByLakeIDResponseTypedDict": ".getcribllakedatasetbylakeidop",
10993
+ "GetGroupsACLByIDRequest": ".getgroupsaclbyidop",
10994
+ "GetGroupsACLByIDRequestTypedDict": ".getgroupsaclbyidop",
10995
+ "GetGroupsACLByIDResponse": ".getgroupsaclbyidop",
10996
+ "GetGroupsACLByIDResponseTypedDict": ".getgroupsaclbyidop",
10997
+ "GetGroupsACLByIDType": ".getgroupsaclbyidop",
10998
+ "GetGroupsByIDRequest": ".getgroupsbyidop",
10999
+ "GetGroupsByIDRequestTypedDict": ".getgroupsbyidop",
11000
+ "GetGroupsByIDResponse": ".getgroupsbyidop",
11001
+ "GetGroupsByIDResponseTypedDict": ".getgroupsbyidop",
11002
+ "GetGroupsConfigVersionByIDRequest": ".getgroupsconfigversionbyidop",
11003
+ "GetGroupsConfigVersionByIDRequestTypedDict": ".getgroupsconfigversionbyidop",
11004
+ "GetGroupsConfigVersionByIDResponse": ".getgroupsconfigversionbyidop",
11005
+ "GetGroupsConfigVersionByIDResponseTypedDict": ".getgroupsconfigversionbyidop",
10523
11006
  "GetInputByIDRequest": ".getinputbyidop",
10524
11007
  "GetInputByIDRequestTypedDict": ".getinputbyidop",
10525
11008
  "GetInputByIDResponse": ".getinputbyidop",
@@ -10536,14 +11019,38 @@ _dynamic_imports: dict[str, str] = {
10536
11019
  "GetOutputSamplesByIDRequestTypedDict": ".getoutputsamplesbyidop",
10537
11020
  "GetOutputSamplesByIDResponse": ".getoutputsamplesbyidop",
10538
11021
  "GetOutputSamplesByIDResponseTypedDict": ".getoutputsamplesbyidop",
11022
+ "GetPacksRequest": ".getpacksop",
11023
+ "GetPacksRequestTypedDict": ".getpacksop",
11024
+ "GetPacksResponse": ".getpacksop",
11025
+ "GetPacksResponseTypedDict": ".getpacksop",
10539
11026
  "GetPipelineByIDRequest": ".getpipelinebyidop",
10540
11027
  "GetPipelineByIDRequestTypedDict": ".getpipelinebyidop",
10541
11028
  "GetPipelineByIDResponse": ".getpipelinebyidop",
10542
11029
  "GetPipelineByIDResponseTypedDict": ".getpipelinebyidop",
11030
+ "GetProductsGroupsACLTeamsByProductAndIDProduct": ".getproductsgroupsaclteamsbyproductandidop",
11031
+ "GetProductsGroupsACLTeamsByProductAndIDRequest": ".getproductsgroupsaclteamsbyproductandidop",
11032
+ "GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict": ".getproductsgroupsaclteamsbyproductandidop",
11033
+ "GetProductsGroupsACLTeamsByProductAndIDResponse": ".getproductsgroupsaclteamsbyproductandidop",
11034
+ "GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict": ".getproductsgroupsaclteamsbyproductandidop",
11035
+ "GetProductsGroupsACLTeamsByProductAndIDType": ".getproductsgroupsaclteamsbyproductandidop",
11036
+ "GetProductsGroupsByProductProduct": ".getproductsgroupsbyproductop",
11037
+ "GetProductsGroupsByProductRequest": ".getproductsgroupsbyproductop",
11038
+ "GetProductsGroupsByProductRequestTypedDict": ".getproductsgroupsbyproductop",
11039
+ "GetProductsGroupsByProductResponse": ".getproductsgroupsbyproductop",
11040
+ "GetProductsGroupsByProductResponseTypedDict": ".getproductsgroupsbyproductop",
10543
11041
  "GetRoutesByIDRequest": ".getroutesbyidop",
10544
11042
  "GetRoutesByIDRequestTypedDict": ".getroutesbyidop",
10545
11043
  "GetRoutesByIDResponse": ".getroutesbyidop",
10546
11044
  "GetRoutesByIDResponseTypedDict": ".getroutesbyidop",
11045
+ "GetSummaryMode": ".getsummaryop",
11046
+ "GetSummaryRequest": ".getsummaryop",
11047
+ "GetSummaryRequestTypedDict": ".getsummaryop",
11048
+ "GetSummaryResponse": ".getsummaryop",
11049
+ "GetSummaryResponseTypedDict": ".getsummaryop",
11050
+ "GetSummaryWorkersRequest": ".getsummaryworkersop",
11051
+ "GetSummaryWorkersRequestTypedDict": ".getsummaryworkersop",
11052
+ "GetSummaryWorkersResponse": ".getsummaryworkersop",
11053
+ "GetSummaryWorkersResponseTypedDict": ".getsummaryworkersop",
10547
11054
  "GetVersionBranchResponse": ".getversionbranchop",
10548
11055
  "GetVersionBranchResponseTypedDict": ".getversionbranchop",
10549
11056
  "GetVersionCountRequest": ".getversioncountop",
@@ -10570,6 +11077,10 @@ _dynamic_imports: dict[str, str] = {
10570
11077
  "GetVersionStatusRequestTypedDict": ".getversionstatusop",
10571
11078
  "GetVersionStatusResponse": ".getversionstatusop",
10572
11079
  "GetVersionStatusResponseTypedDict": ".getversionstatusop",
11080
+ "GetWorkersRequest": ".getworkersop",
11081
+ "GetWorkersRequestTypedDict": ".getworkersop",
11082
+ "GetWorkersResponse": ".getworkersop",
11083
+ "GetWorkersResponseTypedDict": ".getworkersop",
10573
11084
  "GitCommitParams": ".gitcommitparams",
10574
11085
  "GitCommitParamsTypedDict": ".gitcommitparams",
10575
11086
  "Author": ".gitcommitsummary",
@@ -10602,10 +11113,30 @@ _dynamic_imports: dict[str, str] = {
10602
11113
  "GitStatusResultTypedDict": ".gitstatusresult",
10603
11114
  "Renamed": ".gitstatusresult",
10604
11115
  "RenamedTypedDict": ".gitstatusresult",
11116
+ "Config": ".hbcriblinfo",
11117
+ "ConfigTypedDict": ".hbcriblinfo",
11118
+ "HBCriblInfo": ".hbcriblinfo",
11119
+ "HBCriblInfoTypedDict": ".hbcriblinfo",
11120
+ "HBLeaderInfo": ".hbleaderinfo",
11121
+ "HBLeaderInfoTypedDict": ".hbleaderinfo",
10605
11122
  "HealthStatus": ".healthstatus",
11123
+ "HealthStatusStatus": ".healthstatus",
10606
11124
  "HealthStatusTypedDict": ".healthstatus",
10607
11125
  "Role": ".healthstatus",
10608
- "Status": ".healthstatus",
11126
+ "HeartbeatMetadata": ".heartbeatmetadata",
11127
+ "HeartbeatMetadataAws": ".heartbeatmetadata",
11128
+ "HeartbeatMetadataAwsTypedDict": ".heartbeatmetadata",
11129
+ "HeartbeatMetadataHostOs": ".heartbeatmetadata",
11130
+ "HeartbeatMetadataHostOsTypedDict": ".heartbeatmetadata",
11131
+ "HeartbeatMetadataKube": ".heartbeatmetadata",
11132
+ "HeartbeatMetadataKubeTypedDict": ".heartbeatmetadata",
11133
+ "HeartbeatMetadataOs": ".heartbeatmetadata",
11134
+ "HeartbeatMetadataOsTypedDict": ".heartbeatmetadata",
11135
+ "HeartbeatMetadataOwner": ".heartbeatmetadata",
11136
+ "HeartbeatMetadataOwnerTypedDict": ".heartbeatmetadata",
11137
+ "HeartbeatMetadataTags": ".heartbeatmetadata",
11138
+ "HeartbeatMetadataTagsTypedDict": ".heartbeatmetadata",
11139
+ "HeartbeatMetadataTypedDict": ".heartbeatmetadata",
10609
11140
  "Input": ".input",
10610
11141
  "InputTypedDict": ".input",
10611
11142
  "Allow": ".inputappscope",
@@ -11733,6 +12264,9 @@ _dynamic_imports: dict[str, str] = {
11733
12264
  "InputZscalerHecTLSSettingsServerSideTypedDict": ".inputzscalerhec",
11734
12265
  "InputZscalerHecType": ".inputzscalerhec",
11735
12266
  "InputZscalerHecTypedDict": ".inputzscalerhec",
12267
+ "LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
12268
+ "LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
12269
+ "LakehouseConnectionType": ".lakehouseconnectiontype",
11736
12270
  "ListInputResponse": ".listinputop",
11737
12271
  "ListInputResponseTypedDict": ".listinputop",
11738
12272
  "ListOutputResponse": ".listoutputop",
@@ -11743,6 +12277,39 @@ _dynamic_imports: dict[str, str] = {
11743
12277
  "ListRoutesResponseTypedDict": ".listroutesop",
11744
12278
  "LoginInfo": ".logininfo",
11745
12279
  "LoginInfoTypedDict": ".logininfo",
12280
+ "LookupVersions": ".lookupversions",
12281
+ "LookupVersionsTypedDict": ".lookupversions",
12282
+ "LastMetrics": ".masterworkerentry",
12283
+ "LastMetricsTypedDict": ".masterworkerentry",
12284
+ "MasterWorkerEntry": ".masterworkerentry",
12285
+ "MasterWorkerEntryType": ".masterworkerentry",
12286
+ "MasterWorkerEntryTypedDict": ".masterworkerentry",
12287
+ "MasterWorkerEntryWorkers": ".masterworkerentry",
12288
+ "MasterWorkerEntryWorkersTypedDict": ".masterworkerentry",
12289
+ "NodeActiveUpgradeStatus": ".nodeactiveupgradestatus",
12290
+ "NodeFailedUpgradeStatus": ".nodefailedupgradestatus",
12291
+ "NodeProvidedInfo": ".nodeprovidedinfo",
12292
+ "NodeProvidedInfoAws": ".nodeprovidedinfo",
12293
+ "NodeProvidedInfoAwsTypedDict": ".nodeprovidedinfo",
12294
+ "NodeProvidedInfoHostOs": ".nodeprovidedinfo",
12295
+ "NodeProvidedInfoHostOsTypedDict": ".nodeprovidedinfo",
12296
+ "NodeProvidedInfoKube": ".nodeprovidedinfo",
12297
+ "NodeProvidedInfoKubeTypedDict": ".nodeprovidedinfo",
12298
+ "NodeProvidedInfoOs1": ".nodeprovidedinfo",
12299
+ "NodeProvidedInfoOs1TypedDict": ".nodeprovidedinfo",
12300
+ "NodeProvidedInfoOs2": ".nodeprovidedinfo",
12301
+ "NodeProvidedInfoOs2TypedDict": ".nodeprovidedinfo",
12302
+ "NodeProvidedInfoOwner": ".nodeprovidedinfo",
12303
+ "NodeProvidedInfoOwnerTypedDict": ".nodeprovidedinfo",
12304
+ "NodeProvidedInfoTags": ".nodeprovidedinfo",
12305
+ "NodeProvidedInfoTagsTypedDict": ".nodeprovidedinfo",
12306
+ "NodeProvidedInfoTypedDict": ".nodeprovidedinfo",
12307
+ "Os": ".nodeprovidedinfo",
12308
+ "OsTypedDict": ".nodeprovidedinfo",
12309
+ "NodeSkippedUpgradeStatus": ".nodeskippedupgradestatus",
12310
+ "NodeUpgradeState": ".nodeupgradestate",
12311
+ "NodeUpgradeStatus": ".nodeupgradestatus",
12312
+ "NodeUpgradeStatusTypedDict": ".nodeupgradestatus",
11746
12313
  "Output": ".output",
11747
12314
  "OutputTypedDict": ".output",
11748
12315
  "BlobAccessTier": ".outputazureblob",
@@ -12877,6 +13444,18 @@ _dynamic_imports: dict[str, str] = {
12877
13444
  "OutputXsiamTypedDict": ".outputxsiam",
12878
13445
  "OutputXsiamURL": ".outputxsiam",
12879
13446
  "OutputXsiamURLTypedDict": ".outputxsiam",
13447
+ "PackInfo": ".packinfo",
13448
+ "PackInfoTags": ".packinfo",
13449
+ "PackInfoTagsTypedDict": ".packinfo",
13450
+ "PackInfoTypedDict": ".packinfo",
13451
+ "PackInstallInfo": ".packinstallinfo",
13452
+ "PackInstallInfoTags": ".packinstallinfo",
13453
+ "PackInstallInfoTagsTypedDict": ".packinstallinfo",
13454
+ "PackInstallInfoTypedDict": ".packinstallinfo",
13455
+ "PackRequestBody": ".packrequestbody",
13456
+ "PackRequestBodyTags": ".packrequestbody",
13457
+ "PackRequestBodyTagsTypedDict": ".packrequestbody",
13458
+ "PackRequestBodyTypedDict": ".packrequestbody",
12880
13459
  "Conf": ".pipeline",
12881
13460
  "ConfTypedDict": ".pipeline",
12882
13461
  "Pipeline": ".pipeline",
@@ -12887,6 +13466,12 @@ _dynamic_imports: dict[str, str] = {
12887
13466
  "FunctionSpecificConfigsTypedDict": ".pipelinefunctionconf",
12888
13467
  "PipelineFunctionConf": ".pipelinefunctionconf",
12889
13468
  "PipelineFunctionConfTypedDict": ".pipelinefunctionconf",
13469
+ "RbacResource": ".rbacresource",
13470
+ "ResourcePolicy": ".resourcepolicy",
13471
+ "ResourcePolicyTypedDict": ".resourcepolicy",
13472
+ "RestartResponse": ".restartresponse",
13473
+ "RestartResponseStatus": ".restartresponse",
13474
+ "RestartResponseTypedDict": ".restartresponse",
12890
13475
  "RouteCloneConf": ".routecloneconf",
12891
13476
  "RouteCloneConfTypedDict": ".routecloneconf",
12892
13477
  "RouteConf": ".routeconf",
@@ -12907,6 +13492,12 @@ _dynamic_imports: dict[str, str] = {
12907
13492
  "SchemeClientOauthTypedDict": ".schemeclientoauth",
12908
13493
  "Security": ".security",
12909
13494
  "SecurityTypedDict": ".security",
13495
+ "TeamAccessControlList": ".teamaccesscontrollist",
13496
+ "TeamAccessControlListTypedDict": ".teamaccesscontrollist",
13497
+ "UpdateGroupsDeployByIDRequest": ".updategroupsdeploybyidop",
13498
+ "UpdateGroupsDeployByIDRequestTypedDict": ".updategroupsdeploybyidop",
13499
+ "UpdateGroupsDeployByIDResponse": ".updategroupsdeploybyidop",
13500
+ "UpdateGroupsDeployByIDResponseTypedDict": ".updategroupsdeploybyidop",
12910
13501
  "UpdateHecTokenRequest": ".updatehectokenrequest",
12911
13502
  "UpdateHecTokenRequestMetadatum": ".updatehectokenrequest",
12912
13503
  "UpdateHecTokenRequestMetadatumTypedDict": ".updatehectokenrequest",
@@ -12923,6 +13514,10 @@ _dynamic_imports: dict[str, str] = {
12923
13514
  "UpdateOutputByIDRequestTypedDict": ".updateoutputbyidop",
12924
13515
  "UpdateOutputByIDResponse": ".updateoutputbyidop",
12925
13516
  "UpdateOutputByIDResponseTypedDict": ".updateoutputbyidop",
13517
+ "UpdatePacksRequest": ".updatepacksop",
13518
+ "UpdatePacksRequestTypedDict": ".updatepacksop",
13519
+ "UpdatePacksResponse": ".updatepacksop",
13520
+ "UpdatePacksResponseTypedDict": ".updatepacksop",
12926
13521
  "UpdatePipelineByIDRequest": ".updatepipelinebyidop",
12927
13522
  "UpdatePipelineByIDRequestTypedDict": ".updatepipelinebyidop",
12928
13523
  "UpdatePipelineByIDResponse": ".updatepipelinebyidop",
@@ -12931,6 +13526,10 @@ _dynamic_imports: dict[str, str] = {
12931
13526
  "UpdateRoutesByIDRequestTypedDict": ".updateroutesbyidop",
12932
13527
  "UpdateRoutesByIDResponse": ".updateroutesbyidop",
12933
13528
  "UpdateRoutesByIDResponseTypedDict": ".updateroutesbyidop",
13529
+ "UpdateWorkersRestartResponse": ".updateworkersrestartop",
13530
+ "UpdateWorkersRestartResponseTypedDict": ".updateworkersrestartop",
13531
+ "UserAccessControlList": ".useraccesscontrollist",
13532
+ "UserAccessControlListTypedDict": ".useraccesscontrollist",
12934
13533
  }
12935
13534
 
12936
13535