cribl-control-plane 0.0.17__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.
- cribl_control_plane/_version.py +3 -3
- cribl_control_plane/distributed.py +187 -0
- cribl_control_plane/errors/healthstatus_error.py +1 -1
- cribl_control_plane/groups_sdk.py +1291 -0
- cribl_control_plane/lake.py +479 -0
- cribl_control_plane/models/__init__.py +843 -3
- cribl_control_plane/models/appmode.py +13 -0
- cribl_control_plane/models/cacheconnection.py +44 -0
- cribl_control_plane/models/cacheconnectionbackfillstatus.py +12 -0
- cribl_control_plane/models/cloudprovider.py +9 -0
- cribl_control_plane/models/commit.py +30 -0
- cribl_control_plane/models/configgroup.py +116 -0
- cribl_control_plane/models/configgroupcloud.py +48 -0
- cribl_control_plane/models/configgrouplookups.py +34 -0
- cribl_control_plane/models/createcribllakedatasetbylakeidop.py +48 -0
- cribl_control_plane/models/createpacksop.py +24 -0
- cribl_control_plane/models/createproductsgroupsbyproductop.py +54 -0
- cribl_control_plane/models/createversioncommitop.py +24 -0
- cribl_control_plane/models/createversionpushop.py +23 -0
- cribl_control_plane/models/createversionrevertop.py +47 -0
- cribl_control_plane/models/createversionsyncop.py +23 -0
- cribl_control_plane/models/createversionundoop.py +37 -0
- cribl_control_plane/models/cribllakedataset.py +74 -0
- cribl_control_plane/models/datasetmetadata.py +39 -0
- cribl_control_plane/models/datasetmetadataruninfo.py +28 -0
- cribl_control_plane/models/deployrequest.py +18 -0
- cribl_control_plane/models/deployrequestlookups.py +28 -0
- cribl_control_plane/models/distributedsummary.py +63 -0
- cribl_control_plane/models/getcribllakedatasetbylakeidop.py +40 -0
- cribl_control_plane/models/getgroupsaclbyidop.py +63 -0
- cribl_control_plane/models/getgroupsbyidop.py +49 -0
- cribl_control_plane/models/getgroupsconfigversionbyidop.py +36 -0
- cribl_control_plane/models/getpacksop.py +40 -0
- cribl_control_plane/models/getproductsgroupsaclteamsbyproductandidop.py +78 -0
- cribl_control_plane/models/getproductsgroupsbyproductop.py +58 -0
- cribl_control_plane/models/getsummaryop.py +46 -0
- cribl_control_plane/models/getsummaryworkersop.py +39 -0
- cribl_control_plane/models/getversionbranchop.py +23 -0
- cribl_control_plane/models/getversioncountop.py +47 -0
- cribl_control_plane/models/getversioncurrentbranchop.py +23 -0
- cribl_control_plane/models/getversiondiffop.py +63 -0
- cribl_control_plane/models/getversionfilesop.py +48 -0
- cribl_control_plane/models/getversioninfoop.py +24 -0
- cribl_control_plane/models/getversionshowop.py +63 -0
- cribl_control_plane/models/getversionstatusop.py +38 -0
- cribl_control_plane/models/getworkersop.py +82 -0
- cribl_control_plane/models/gitcommitparams.py +23 -0
- cribl_control_plane/models/gitcommitsummary.py +68 -0
- cribl_control_plane/models/gitfile.py +20 -0
- cribl_control_plane/models/gitfilesresponse.py +22 -0
- cribl_control_plane/models/gitinfo.py +23 -0
- cribl_control_plane/models/gitrevertparams.py +20 -0
- cribl_control_plane/models/gitrevertresult.py +48 -0
- cribl_control_plane/models/gitstatusresult.py +73 -0
- cribl_control_plane/models/hbcriblinfo.py +80 -0
- cribl_control_plane/models/hbleaderinfo.py +23 -0
- cribl_control_plane/models/healthstatus.py +3 -3
- cribl_control_plane/models/heartbeatmetadata.py +122 -0
- cribl_control_plane/models/lakedatasetsearchconfig.py +18 -0
- cribl_control_plane/models/lakehouseconnectiontype.py +9 -0
- cribl_control_plane/models/lookupversions.py +13 -0
- cribl_control_plane/models/masterworkerentry.py +84 -0
- cribl_control_plane/models/nodeactiveupgradestatus.py +10 -0
- cribl_control_plane/models/nodefailedupgradestatus.py +9 -0
- cribl_control_plane/models/nodeprovidedinfo.py +184 -0
- cribl_control_plane/models/nodeskippedupgradestatus.py +11 -0
- cribl_control_plane/models/nodeupgradestate.py +11 -0
- cribl_control_plane/models/nodeupgradestatus.py +30 -0
- cribl_control_plane/models/packinfo.py +73 -0
- cribl_control_plane/models/packinstallinfo.py +76 -0
- cribl_control_plane/models/packrequestbody.py +75 -0
- cribl_control_plane/models/rbacresource.py +14 -0
- cribl_control_plane/models/resourcepolicy.py +24 -0
- cribl_control_plane/models/restartresponse.py +26 -0
- cribl_control_plane/models/teamaccesscontrollist.py +18 -0
- cribl_control_plane/models/updategroupsdeploybyidop.py +46 -0
- cribl_control_plane/models/updatepacksop.py +37 -0
- cribl_control_plane/models/updateworkersrestartop.py +24 -0
- cribl_control_plane/models/useraccesscontrollist.py +18 -0
- cribl_control_plane/packs.py +623 -0
- cribl_control_plane/sdk.py +28 -0
- cribl_control_plane/teams.py +203 -0
- cribl_control_plane/versioning.py +2309 -0
- cribl_control_plane/workers_sdk.py +555 -0
- {cribl_control_plane-0.0.17.dist-info → cribl_control_plane-0.0.19.dist-info}/METADATA +58 -8
- {cribl_control_plane-0.0.17.dist-info → cribl_control_plane-0.0.19.dist-info}/RECORD +87 -8
- {cribl_control_plane-0.0.17.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,17 +1798,59 @@ 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,
|
|
1783
1816
|
CreateRoutesAppendByIDResponse,
|
|
1784
1817
|
CreateRoutesAppendByIDResponseTypedDict,
|
|
1785
1818
|
)
|
|
1819
|
+
from .createversioncommitop import (
|
|
1820
|
+
CreateVersionCommitResponse,
|
|
1821
|
+
CreateVersionCommitResponseTypedDict,
|
|
1822
|
+
)
|
|
1823
|
+
from .createversionpushop import (
|
|
1824
|
+
CreateVersionPushResponse,
|
|
1825
|
+
CreateVersionPushResponseTypedDict,
|
|
1826
|
+
)
|
|
1827
|
+
from .createversionrevertop import (
|
|
1828
|
+
CreateVersionRevertRequest,
|
|
1829
|
+
CreateVersionRevertRequestTypedDict,
|
|
1830
|
+
CreateVersionRevertResponse,
|
|
1831
|
+
CreateVersionRevertResponseTypedDict,
|
|
1832
|
+
)
|
|
1833
|
+
from .createversionsyncop import (
|
|
1834
|
+
CreateVersionSyncResponse,
|
|
1835
|
+
CreateVersionSyncResponseTypedDict,
|
|
1836
|
+
)
|
|
1837
|
+
from .createversionundoop import (
|
|
1838
|
+
CreateVersionUndoRequest,
|
|
1839
|
+
CreateVersionUndoRequestTypedDict,
|
|
1840
|
+
CreateVersionUndoResponse,
|
|
1841
|
+
CreateVersionUndoResponseTypedDict,
|
|
1842
|
+
)
|
|
1786
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
|
+
)
|
|
1787
1854
|
from .deleteinputbyidop import (
|
|
1788
1855
|
DeleteInputByIDRequest,
|
|
1789
1856
|
DeleteInputByIDRequestTypedDict,
|
|
@@ -1808,6 +1875,46 @@ if TYPE_CHECKING:
|
|
|
1808
1875
|
DeletePipelineByIDResponse,
|
|
1809
1876
|
DeletePipelineByIDResponseTypedDict,
|
|
1810
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
|
+
)
|
|
1811
1918
|
from .getinputbyidop import (
|
|
1812
1919
|
GetInputByIDRequest,
|
|
1813
1920
|
GetInputByIDRequestTypedDict,
|
|
@@ -1832,19 +1939,155 @@ if TYPE_CHECKING:
|
|
|
1832
1939
|
GetOutputSamplesByIDResponse,
|
|
1833
1940
|
GetOutputSamplesByIDResponseTypedDict,
|
|
1834
1941
|
)
|
|
1942
|
+
from .getpacksop import (
|
|
1943
|
+
GetPacksRequest,
|
|
1944
|
+
GetPacksRequestTypedDict,
|
|
1945
|
+
GetPacksResponse,
|
|
1946
|
+
GetPacksResponseTypedDict,
|
|
1947
|
+
)
|
|
1835
1948
|
from .getpipelinebyidop import (
|
|
1836
1949
|
GetPipelineByIDRequest,
|
|
1837
1950
|
GetPipelineByIDRequestTypedDict,
|
|
1838
1951
|
GetPipelineByIDResponse,
|
|
1839
1952
|
GetPipelineByIDResponseTypedDict,
|
|
1840
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
|
+
)
|
|
1841
1969
|
from .getroutesbyidop import (
|
|
1842
1970
|
GetRoutesByIDRequest,
|
|
1843
1971
|
GetRoutesByIDRequestTypedDict,
|
|
1844
1972
|
GetRoutesByIDResponse,
|
|
1845
1973
|
GetRoutesByIDResponseTypedDict,
|
|
1846
1974
|
)
|
|
1847
|
-
from .
|
|
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
|
+
)
|
|
1988
|
+
from .getversionbranchop import (
|
|
1989
|
+
GetVersionBranchResponse,
|
|
1990
|
+
GetVersionBranchResponseTypedDict,
|
|
1991
|
+
)
|
|
1992
|
+
from .getversioncountop import (
|
|
1993
|
+
GetVersionCountRequest,
|
|
1994
|
+
GetVersionCountRequestTypedDict,
|
|
1995
|
+
GetVersionCountResponse,
|
|
1996
|
+
GetVersionCountResponseTypedDict,
|
|
1997
|
+
)
|
|
1998
|
+
from .getversioncurrentbranchop import (
|
|
1999
|
+
GetVersionCurrentBranchResponse,
|
|
2000
|
+
GetVersionCurrentBranchResponseTypedDict,
|
|
2001
|
+
)
|
|
2002
|
+
from .getversiondiffop import (
|
|
2003
|
+
GetVersionDiffRequest,
|
|
2004
|
+
GetVersionDiffRequestTypedDict,
|
|
2005
|
+
GetVersionDiffResponse,
|
|
2006
|
+
GetVersionDiffResponseTypedDict,
|
|
2007
|
+
)
|
|
2008
|
+
from .getversionfilesop import (
|
|
2009
|
+
GetVersionFilesRequest,
|
|
2010
|
+
GetVersionFilesRequestTypedDict,
|
|
2011
|
+
GetVersionFilesResponse,
|
|
2012
|
+
GetVersionFilesResponseTypedDict,
|
|
2013
|
+
)
|
|
2014
|
+
from .getversioninfoop import (
|
|
2015
|
+
GetVersionInfoResponse,
|
|
2016
|
+
GetVersionInfoResponseTypedDict,
|
|
2017
|
+
)
|
|
2018
|
+
from .getversionshowop import (
|
|
2019
|
+
GetVersionShowRequest,
|
|
2020
|
+
GetVersionShowRequestTypedDict,
|
|
2021
|
+
GetVersionShowResponse,
|
|
2022
|
+
GetVersionShowResponseTypedDict,
|
|
2023
|
+
)
|
|
2024
|
+
from .getversionstatusop import (
|
|
2025
|
+
GetVersionStatusRequest,
|
|
2026
|
+
GetVersionStatusRequestTypedDict,
|
|
2027
|
+
GetVersionStatusResponse,
|
|
2028
|
+
GetVersionStatusResponseTypedDict,
|
|
2029
|
+
)
|
|
2030
|
+
from .getworkersop import (
|
|
2031
|
+
GetWorkersRequest,
|
|
2032
|
+
GetWorkersRequestTypedDict,
|
|
2033
|
+
GetWorkersResponse,
|
|
2034
|
+
GetWorkersResponseTypedDict,
|
|
2035
|
+
)
|
|
2036
|
+
from .gitcommitparams import GitCommitParams, GitCommitParamsTypedDict
|
|
2037
|
+
from .gitcommitsummary import (
|
|
2038
|
+
Author,
|
|
2039
|
+
AuthorTypedDict,
|
|
2040
|
+
GitCommitSummary,
|
|
2041
|
+
GitCommitSummaryFiles,
|
|
2042
|
+
GitCommitSummaryFilesTypedDict,
|
|
2043
|
+
GitCommitSummaryTypedDict,
|
|
2044
|
+
Summary,
|
|
2045
|
+
SummaryTypedDict,
|
|
2046
|
+
)
|
|
2047
|
+
from .gitfile import GitFile, GitFileTypedDict
|
|
2048
|
+
from .gitfilesresponse import GitFilesResponse, GitFilesResponseTypedDict
|
|
2049
|
+
from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteTypedDict
|
|
2050
|
+
from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
|
|
2051
|
+
from .gitrevertresult import (
|
|
2052
|
+
Audit,
|
|
2053
|
+
AuditTypedDict,
|
|
2054
|
+
GitRevertResult,
|
|
2055
|
+
GitRevertResultFiles,
|
|
2056
|
+
GitRevertResultFilesTypedDict,
|
|
2057
|
+
GitRevertResultTypedDict,
|
|
2058
|
+
)
|
|
2059
|
+
from .gitstatusresult import (
|
|
2060
|
+
File,
|
|
2061
|
+
FileTypedDict,
|
|
2062
|
+
GitStatusResult,
|
|
2063
|
+
GitStatusResultTypedDict,
|
|
2064
|
+
Renamed,
|
|
2065
|
+
RenamedTypedDict,
|
|
2066
|
+
)
|
|
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
|
+
)
|
|
1848
2091
|
from .input import Input, InputTypedDict
|
|
1849
2092
|
from .inputappscope import (
|
|
1850
2093
|
Allow,
|
|
@@ -3087,11 +3330,51 @@ if TYPE_CHECKING:
|
|
|
3087
3330
|
InputZscalerHecType,
|
|
3088
3331
|
InputZscalerHecTypedDict,
|
|
3089
3332
|
)
|
|
3333
|
+
from .lakedatasetsearchconfig import (
|
|
3334
|
+
LakeDatasetSearchConfig,
|
|
3335
|
+
LakeDatasetSearchConfigTypedDict,
|
|
3336
|
+
)
|
|
3337
|
+
from .lakehouseconnectiontype import LakehouseConnectionType
|
|
3090
3338
|
from .listinputop import ListInputResponse, ListInputResponseTypedDict
|
|
3091
3339
|
from .listoutputop import ListOutputResponse, ListOutputResponseTypedDict
|
|
3092
3340
|
from .listpipelineop import ListPipelineResponse, ListPipelineResponseTypedDict
|
|
3093
3341
|
from .listroutesop import ListRoutesResponse, ListRoutesResponseTypedDict
|
|
3094
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
|
|
3095
3378
|
from .output import Output, OutputTypedDict
|
|
3096
3379
|
from .outputazureblob import (
|
|
3097
3380
|
BlobAccessTier,
|
|
@@ -4345,6 +4628,24 @@ if TYPE_CHECKING:
|
|
|
4345
4628
|
OutputXsiamURL,
|
|
4346
4629
|
OutputXsiamURLTypedDict,
|
|
4347
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
|
+
)
|
|
4348
4649
|
from .pipeline import (
|
|
4349
4650
|
Conf,
|
|
4350
4651
|
ConfTypedDict,
|
|
@@ -4359,6 +4660,13 @@ if TYPE_CHECKING:
|
|
|
4359
4660
|
PipelineFunctionConf,
|
|
4360
4661
|
PipelineFunctionConfTypedDict,
|
|
4361
4662
|
)
|
|
4663
|
+
from .rbacresource import RbacResource
|
|
4664
|
+
from .resourcepolicy import ResourcePolicy, ResourcePolicyTypedDict
|
|
4665
|
+
from .restartresponse import (
|
|
4666
|
+
RestartResponse,
|
|
4667
|
+
RestartResponseStatus,
|
|
4668
|
+
RestartResponseTypedDict,
|
|
4669
|
+
)
|
|
4362
4670
|
from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
|
|
4363
4671
|
from .routeconf import RouteConf, RouteConfTypedDict
|
|
4364
4672
|
from .routes import (
|
|
@@ -4375,6 +4683,16 @@ if TYPE_CHECKING:
|
|
|
4375
4683
|
from .routesroute_input import RoutesRouteInput, RoutesRouteInputTypedDict
|
|
4376
4684
|
from .schemeclientoauth import SchemeClientOauth, SchemeClientOauthTypedDict
|
|
4377
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
|
+
)
|
|
4378
4696
|
from .updatehectokenrequest import (
|
|
4379
4697
|
UpdateHecTokenRequest,
|
|
4380
4698
|
UpdateHecTokenRequestMetadatum,
|
|
@@ -4399,6 +4717,12 @@ if TYPE_CHECKING:
|
|
|
4399
4717
|
UpdateOutputByIDResponse,
|
|
4400
4718
|
UpdateOutputByIDResponseTypedDict,
|
|
4401
4719
|
)
|
|
4720
|
+
from .updatepacksop import (
|
|
4721
|
+
UpdatePacksRequest,
|
|
4722
|
+
UpdatePacksRequestTypedDict,
|
|
4723
|
+
UpdatePacksResponse,
|
|
4724
|
+
UpdatePacksResponseTypedDict,
|
|
4725
|
+
)
|
|
4402
4726
|
from .updatepipelinebyidop import (
|
|
4403
4727
|
UpdatePipelineByIDRequest,
|
|
4404
4728
|
UpdatePipelineByIDRequestTypedDict,
|
|
@@ -4411,6 +4735,14 @@ if TYPE_CHECKING:
|
|
|
4411
4735
|
UpdateRoutesByIDResponse,
|
|
4412
4736
|
UpdateRoutesByIDResponseTypedDict,
|
|
4413
4737
|
)
|
|
4738
|
+
from .updateworkersrestartop import (
|
|
4739
|
+
UpdateWorkersRestartResponse,
|
|
4740
|
+
UpdateWorkersRestartResponseTypedDict,
|
|
4741
|
+
)
|
|
4742
|
+
from .useraccesscontrollist import (
|
|
4743
|
+
UserAccessControlList,
|
|
4744
|
+
UserAccessControlListTypedDict,
|
|
4745
|
+
)
|
|
4414
4746
|
|
|
4415
4747
|
__all__ = [
|
|
4416
4748
|
"AISIEMEndpointPath",
|
|
@@ -4426,6 +4758,9 @@ __all__ = [
|
|
|
4426
4758
|
"AdditionalPropertyTypedDict",
|
|
4427
4759
|
"Allow",
|
|
4428
4760
|
"AllowTypedDict",
|
|
4761
|
+
"AppMode",
|
|
4762
|
+
"Audit",
|
|
4763
|
+
"AuditTypedDict",
|
|
4429
4764
|
"AuthAuthenticationMethodElastic",
|
|
4430
4765
|
"AuthElastic",
|
|
4431
4766
|
"AuthElasticCloud",
|
|
@@ -4495,6 +4830,8 @@ __all__ = [
|
|
|
4495
4830
|
"AuthenticationTypePrometheus",
|
|
4496
4831
|
"AuthenticationTypePrometheusRw",
|
|
4497
4832
|
"AuthenticationTypeSplunkSearch",
|
|
4833
|
+
"Author",
|
|
4834
|
+
"AuthorTypedDict",
|
|
4498
4835
|
"AwsAuthenticationMethod",
|
|
4499
4836
|
"AwsAuthenticationMethodAuthenticationMethodEdgePrometheus",
|
|
4500
4837
|
"AwsAuthenticationMethodAuthenticationMethodPrometheus",
|
|
@@ -4543,6 +4880,9 @@ __all__ = [
|
|
|
4543
4880
|
"BackpressureBehaviorSumoLogic",
|
|
4544
4881
|
"BackpressureBehaviorWavefront",
|
|
4545
4882
|
"BlobAccessTier",
|
|
4883
|
+
"CacheConnection",
|
|
4884
|
+
"CacheConnectionBackfillStatus",
|
|
4885
|
+
"CacheConnectionTypedDict",
|
|
4546
4886
|
"CertOptions",
|
|
4547
4887
|
"CertOptionsTypedDict",
|
|
4548
4888
|
"CertificateAzureDataExplorer",
|
|
@@ -4555,12 +4895,15 @@ __all__ = [
|
|
|
4555
4895
|
"CheckpointingS3TypedDict",
|
|
4556
4896
|
"CheckpointingSecurityLake",
|
|
4557
4897
|
"CheckpointingSecurityLakeTypedDict",
|
|
4898
|
+
"CloudProvider",
|
|
4558
4899
|
"Collectors",
|
|
4559
4900
|
"CollectorsTypedDict",
|
|
4560
4901
|
"ColumnMapping",
|
|
4561
4902
|
"ColumnMappingTypedDict",
|
|
4562
4903
|
"Comment",
|
|
4563
4904
|
"CommentTypedDict",
|
|
4905
|
+
"Commit",
|
|
4906
|
+
"CommitTypedDict",
|
|
4564
4907
|
"CompressCompression131",
|
|
4565
4908
|
"CompressCompressionAzureDataExplorer",
|
|
4566
4909
|
"CompressCompressionSplunkLb",
|
|
@@ -4624,6 +4967,17 @@ __all__ = [
|
|
|
4624
4967
|
"CompressionZscalerHec",
|
|
4625
4968
|
"Conf",
|
|
4626
4969
|
"ConfTypedDict",
|
|
4970
|
+
"Config",
|
|
4971
|
+
"ConfigGroup",
|
|
4972
|
+
"ConfigGroupCloud",
|
|
4973
|
+
"ConfigGroupCloudTypedDict",
|
|
4974
|
+
"ConfigGroupLookups",
|
|
4975
|
+
"ConfigGroupLookupsLookup",
|
|
4976
|
+
"ConfigGroupLookupsLookupTypedDict",
|
|
4977
|
+
"ConfigGroupLookupsTypedDict",
|
|
4978
|
+
"ConfigGroupType",
|
|
4979
|
+
"ConfigGroupTypedDict",
|
|
4980
|
+
"ConfigTypedDict",
|
|
4627
4981
|
"ConnectionAzureBlob",
|
|
4628
4982
|
"ConnectionAzureBlobTypedDict",
|
|
4629
4983
|
"ConnectionConfluentCloud",
|
|
@@ -4719,6 +5073,10 @@ __all__ = [
|
|
|
4719
5073
|
"ContentConfigOffice365ServiceTypedDict",
|
|
4720
5074
|
"ContentConfigWiz",
|
|
4721
5075
|
"ContentConfigWizTypedDict",
|
|
5076
|
+
"CreateCriblLakeDatasetByLakeIDRequest",
|
|
5077
|
+
"CreateCriblLakeDatasetByLakeIDRequestTypedDict",
|
|
5078
|
+
"CreateCriblLakeDatasetByLakeIDResponse",
|
|
5079
|
+
"CreateCriblLakeDatasetByLakeIDResponseTypedDict",
|
|
4722
5080
|
"CreateInputAPIVersion",
|
|
4723
5081
|
"CreateInputAuthConfluentCloud",
|
|
4724
5082
|
"CreateInputAuthConfluentCloudTypedDict",
|
|
@@ -5430,14 +5788,38 @@ __all__ = [
|
|
|
5430
5788
|
"CreateOutputURL",
|
|
5431
5789
|
"CreateOutputURLTypedDict",
|
|
5432
5790
|
"CreateOutputWriteAction",
|
|
5791
|
+
"CreatePacksResponse",
|
|
5792
|
+
"CreatePacksResponseTypedDict",
|
|
5433
5793
|
"CreatePipelineResponse",
|
|
5434
5794
|
"CreatePipelineResponseTypedDict",
|
|
5795
|
+
"CreateProductsGroupsByProductProduct",
|
|
5796
|
+
"CreateProductsGroupsByProductRequest",
|
|
5797
|
+
"CreateProductsGroupsByProductRequestTypedDict",
|
|
5798
|
+
"CreateProductsGroupsByProductResponse",
|
|
5799
|
+
"CreateProductsGroupsByProductResponseTypedDict",
|
|
5435
5800
|
"CreateRoutesAppendByIDRequest",
|
|
5436
5801
|
"CreateRoutesAppendByIDRequestTypedDict",
|
|
5437
5802
|
"CreateRoutesAppendByIDResponse",
|
|
5438
5803
|
"CreateRoutesAppendByIDResponseTypedDict",
|
|
5804
|
+
"CreateVersionCommitResponse",
|
|
5805
|
+
"CreateVersionCommitResponseTypedDict",
|
|
5806
|
+
"CreateVersionPushResponse",
|
|
5807
|
+
"CreateVersionPushResponseTypedDict",
|
|
5808
|
+
"CreateVersionRevertRequest",
|
|
5809
|
+
"CreateVersionRevertRequestTypedDict",
|
|
5810
|
+
"CreateVersionRevertResponse",
|
|
5811
|
+
"CreateVersionRevertResponseTypedDict",
|
|
5812
|
+
"CreateVersionSyncResponse",
|
|
5813
|
+
"CreateVersionSyncResponseTypedDict",
|
|
5814
|
+
"CreateVersionUndoRequest",
|
|
5815
|
+
"CreateVersionUndoRequestTypedDict",
|
|
5816
|
+
"CreateVersionUndoResponse",
|
|
5817
|
+
"CreateVersionUndoResponseTypedDict",
|
|
5439
5818
|
"CriblEvent",
|
|
5440
5819
|
"CriblEventTypedDict",
|
|
5820
|
+
"CriblLakeDataset",
|
|
5821
|
+
"CriblLakeDatasetFormat",
|
|
5822
|
+
"CriblLakeDatasetTypedDict",
|
|
5441
5823
|
"CustomLabel",
|
|
5442
5824
|
"CustomLabelTypedDict",
|
|
5443
5825
|
"DNS",
|
|
@@ -5457,6 +5839,10 @@ __all__ = [
|
|
|
5457
5839
|
"DataPageVersionSecurityLake",
|
|
5458
5840
|
"DataSetSite",
|
|
5459
5841
|
"DatadogSite",
|
|
5842
|
+
"DatasetMetadata",
|
|
5843
|
+
"DatasetMetadataRunInfo",
|
|
5844
|
+
"DatasetMetadataRunInfoTypedDict",
|
|
5845
|
+
"DatasetMetadataTypedDict",
|
|
5460
5846
|
"DeleteInputByIDRequest",
|
|
5461
5847
|
"DeleteInputByIDRequestTypedDict",
|
|
5462
5848
|
"DeleteInputByIDResponse",
|
|
@@ -5473,6 +5859,12 @@ __all__ = [
|
|
|
5473
5859
|
"DeletePipelineByIDRequestTypedDict",
|
|
5474
5860
|
"DeletePipelineByIDResponse",
|
|
5475
5861
|
"DeletePipelineByIDResponseTypedDict",
|
|
5862
|
+
"DeployRequest",
|
|
5863
|
+
"DeployRequestLookups",
|
|
5864
|
+
"DeployRequestLookupsLookup",
|
|
5865
|
+
"DeployRequestLookupsLookupTypedDict",
|
|
5866
|
+
"DeployRequestLookupsTypedDict",
|
|
5867
|
+
"DeployRequestTypedDict",
|
|
5476
5868
|
"DestinationProtocolGraphite",
|
|
5477
5869
|
"DestinationProtocolStatsd",
|
|
5478
5870
|
"DestinationProtocolStatsdExt",
|
|
@@ -5488,6 +5880,12 @@ __all__ = [
|
|
|
5488
5880
|
"DiskSpaceProtectionSecurityLake",
|
|
5489
5881
|
"DisksAndFileSystems",
|
|
5490
5882
|
"DisksAndFileSystemsTypedDict",
|
|
5883
|
+
"DistributedSummary",
|
|
5884
|
+
"DistributedSummaryGroups",
|
|
5885
|
+
"DistributedSummaryGroupsTypedDict",
|
|
5886
|
+
"DistributedSummaryTypedDict",
|
|
5887
|
+
"DistributedSummaryWorkers",
|
|
5888
|
+
"DistributedSummaryWorkersTypedDict",
|
|
5491
5889
|
"ElasticVersion",
|
|
5492
5890
|
"Endpoint",
|
|
5493
5891
|
"EndpointConfiguration",
|
|
@@ -5568,6 +5966,8 @@ __all__ = [
|
|
|
5568
5966
|
"FailedRequestLoggingModeSumoLogic",
|
|
5569
5967
|
"FailedRequestLoggingModeWavefront",
|
|
5570
5968
|
"FieldName",
|
|
5969
|
+
"File",
|
|
5970
|
+
"FileTypedDict",
|
|
5571
5971
|
"Firewall",
|
|
5572
5972
|
"FirewallTypedDict",
|
|
5573
5973
|
"FlushPeriodSec",
|
|
@@ -5578,6 +5978,23 @@ __all__ = [
|
|
|
5578
5978
|
"FormatSentinel",
|
|
5579
5979
|
"FunctionSpecificConfigs",
|
|
5580
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",
|
|
5581
5998
|
"GetInputByIDRequest",
|
|
5582
5999
|
"GetInputByIDRequestTypedDict",
|
|
5583
6000
|
"GetInputByIDResponse",
|
|
@@ -5594,20 +6011,115 @@ __all__ = [
|
|
|
5594
6011
|
"GetOutputSamplesByIDRequestTypedDict",
|
|
5595
6012
|
"GetOutputSamplesByIDResponse",
|
|
5596
6013
|
"GetOutputSamplesByIDResponseTypedDict",
|
|
6014
|
+
"GetPacksRequest",
|
|
6015
|
+
"GetPacksRequestTypedDict",
|
|
6016
|
+
"GetPacksResponse",
|
|
6017
|
+
"GetPacksResponseTypedDict",
|
|
5597
6018
|
"GetPipelineByIDRequest",
|
|
5598
6019
|
"GetPipelineByIDRequestTypedDict",
|
|
5599
6020
|
"GetPipelineByIDResponse",
|
|
5600
6021
|
"GetPipelineByIDResponseTypedDict",
|
|
6022
|
+
"GetProductsGroupsACLTeamsByProductAndIDProduct",
|
|
6023
|
+
"GetProductsGroupsACLTeamsByProductAndIDRequest",
|
|
6024
|
+
"GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict",
|
|
6025
|
+
"GetProductsGroupsACLTeamsByProductAndIDResponse",
|
|
6026
|
+
"GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict",
|
|
6027
|
+
"GetProductsGroupsACLTeamsByProductAndIDType",
|
|
6028
|
+
"GetProductsGroupsByProductProduct",
|
|
6029
|
+
"GetProductsGroupsByProductRequest",
|
|
6030
|
+
"GetProductsGroupsByProductRequestTypedDict",
|
|
6031
|
+
"GetProductsGroupsByProductResponse",
|
|
6032
|
+
"GetProductsGroupsByProductResponseTypedDict",
|
|
5601
6033
|
"GetRoutesByIDRequest",
|
|
5602
6034
|
"GetRoutesByIDRequestTypedDict",
|
|
5603
6035
|
"GetRoutesByIDResponse",
|
|
5604
6036
|
"GetRoutesByIDResponseTypedDict",
|
|
6037
|
+
"GetSummaryMode",
|
|
6038
|
+
"GetSummaryRequest",
|
|
6039
|
+
"GetSummaryRequestTypedDict",
|
|
6040
|
+
"GetSummaryResponse",
|
|
6041
|
+
"GetSummaryResponseTypedDict",
|
|
6042
|
+
"GetSummaryWorkersRequest",
|
|
6043
|
+
"GetSummaryWorkersRequestTypedDict",
|
|
6044
|
+
"GetSummaryWorkersResponse",
|
|
6045
|
+
"GetSummaryWorkersResponseTypedDict",
|
|
6046
|
+
"GetVersionBranchResponse",
|
|
6047
|
+
"GetVersionBranchResponseTypedDict",
|
|
6048
|
+
"GetVersionCountRequest",
|
|
6049
|
+
"GetVersionCountRequestTypedDict",
|
|
6050
|
+
"GetVersionCountResponse",
|
|
6051
|
+
"GetVersionCountResponseTypedDict",
|
|
6052
|
+
"GetVersionCurrentBranchResponse",
|
|
6053
|
+
"GetVersionCurrentBranchResponseTypedDict",
|
|
6054
|
+
"GetVersionDiffRequest",
|
|
6055
|
+
"GetVersionDiffRequestTypedDict",
|
|
6056
|
+
"GetVersionDiffResponse",
|
|
6057
|
+
"GetVersionDiffResponseTypedDict",
|
|
6058
|
+
"GetVersionFilesRequest",
|
|
6059
|
+
"GetVersionFilesRequestTypedDict",
|
|
6060
|
+
"GetVersionFilesResponse",
|
|
6061
|
+
"GetVersionFilesResponseTypedDict",
|
|
6062
|
+
"GetVersionInfoResponse",
|
|
6063
|
+
"GetVersionInfoResponseTypedDict",
|
|
6064
|
+
"GetVersionShowRequest",
|
|
6065
|
+
"GetVersionShowRequestTypedDict",
|
|
6066
|
+
"GetVersionShowResponse",
|
|
6067
|
+
"GetVersionShowResponseTypedDict",
|
|
6068
|
+
"GetVersionStatusRequest",
|
|
6069
|
+
"GetVersionStatusRequestTypedDict",
|
|
6070
|
+
"GetVersionStatusResponse",
|
|
6071
|
+
"GetVersionStatusResponseTypedDict",
|
|
6072
|
+
"GetWorkersRequest",
|
|
6073
|
+
"GetWorkersRequestTypedDict",
|
|
6074
|
+
"GetWorkersResponse",
|
|
6075
|
+
"GetWorkersResponseTypedDict",
|
|
6076
|
+
"Git",
|
|
6077
|
+
"GitCommitParams",
|
|
6078
|
+
"GitCommitParamsTypedDict",
|
|
6079
|
+
"GitCommitSummary",
|
|
6080
|
+
"GitCommitSummaryFiles",
|
|
6081
|
+
"GitCommitSummaryFilesTypedDict",
|
|
6082
|
+
"GitCommitSummaryTypedDict",
|
|
6083
|
+
"GitFile",
|
|
6084
|
+
"GitFileTypedDict",
|
|
6085
|
+
"GitFilesResponse",
|
|
6086
|
+
"GitFilesResponseTypedDict",
|
|
6087
|
+
"GitInfo",
|
|
6088
|
+
"GitInfoTypedDict",
|
|
6089
|
+
"GitRevertParams",
|
|
6090
|
+
"GitRevertParamsTypedDict",
|
|
6091
|
+
"GitRevertResult",
|
|
6092
|
+
"GitRevertResultFiles",
|
|
6093
|
+
"GitRevertResultFilesTypedDict",
|
|
6094
|
+
"GitRevertResultTypedDict",
|
|
6095
|
+
"GitStatusResult",
|
|
6096
|
+
"GitStatusResultTypedDict",
|
|
6097
|
+
"GitTypedDict",
|
|
5605
6098
|
"GoogleAuthenticationMethodGoogleCloudLogging",
|
|
6099
|
+
"HBCriblInfo",
|
|
6100
|
+
"HBCriblInfoTypedDict",
|
|
6101
|
+
"HBLeaderInfo",
|
|
6102
|
+
"HBLeaderInfoTypedDict",
|
|
5606
6103
|
"HTTPCompressCompression131",
|
|
5607
6104
|
"HTTPCompressCompressionHTTP",
|
|
5608
6105
|
"HTTPCompressCompressionOpenTelemetry",
|
|
5609
6106
|
"HealthStatus",
|
|
6107
|
+
"HealthStatusStatus",
|
|
5610
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",
|
|
5611
6123
|
"HostInfo",
|
|
5612
6124
|
"HostInfoTypedDict",
|
|
5613
6125
|
"HostNetflow",
|
|
@@ -6693,6 +7205,11 @@ __all__ = [
|
|
|
6693
7205
|
"KeyValueMetadatumS3TypedDict",
|
|
6694
7206
|
"KeyValueMetadatumSecurityLake",
|
|
6695
7207
|
"KeyValueMetadatumSecurityLakeTypedDict",
|
|
7208
|
+
"LakeDatasetSearchConfig",
|
|
7209
|
+
"LakeDatasetSearchConfigTypedDict",
|
|
7210
|
+
"LakehouseConnectionType",
|
|
7211
|
+
"LastMetrics",
|
|
7212
|
+
"LastMetricsTypedDict",
|
|
6696
7213
|
"ListInputResponse",
|
|
6697
7214
|
"ListInputResponseTypedDict",
|
|
6698
7215
|
"ListOutputResponse",
|
|
@@ -6723,9 +7240,16 @@ __all__ = [
|
|
|
6723
7240
|
"LokiAuthOauthParam1TypedDict",
|
|
6724
7241
|
"LokiAuthOauthParam2",
|
|
6725
7242
|
"LokiAuthOauthParam2TypedDict",
|
|
7243
|
+
"LookupVersions",
|
|
7244
|
+
"LookupVersionsTypedDict",
|
|
6726
7245
|
"MTLSSettings",
|
|
6727
7246
|
"MTLSSettingsTypedDict",
|
|
6728
7247
|
"MappingType",
|
|
7248
|
+
"MasterWorkerEntry",
|
|
7249
|
+
"MasterWorkerEntryType",
|
|
7250
|
+
"MasterWorkerEntryTypedDict",
|
|
7251
|
+
"MasterWorkerEntryWorkers",
|
|
7252
|
+
"MasterWorkerEntryWorkersTypedDict",
|
|
6729
7253
|
"MaxS2SVersionSplunkLb",
|
|
6730
7254
|
"MaximumTLSVersion131",
|
|
6731
7255
|
"MaximumTLSVersionClickHouse",
|
|
@@ -6911,6 +7435,28 @@ __all__ = [
|
|
|
6911
7435
|
"ModeZscalerHec",
|
|
6912
7436
|
"NestedFieldSerializationSplunk",
|
|
6913
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",
|
|
6914
7460
|
"OTLPVersionHTTP",
|
|
6915
7461
|
"OauthHeaderClickHouse",
|
|
6916
7462
|
"OauthHeaderClickHouseTypedDict",
|
|
@@ -6941,6 +7487,8 @@ __all__ = [
|
|
|
6941
7487
|
"ObjectACLGoogleCloudStorage",
|
|
6942
7488
|
"ObjectACLS3",
|
|
6943
7489
|
"ObjectACLSecurityLake",
|
|
7490
|
+
"Os",
|
|
7491
|
+
"OsTypedDict",
|
|
6944
7492
|
"Output",
|
|
6945
7493
|
"OutputAzureBlob",
|
|
6946
7494
|
"OutputAzureBlobAuthenticationMethod",
|
|
@@ -8029,6 +8577,18 @@ __all__ = [
|
|
|
8029
8577
|
"OutputXsiamTypedDict",
|
|
8030
8578
|
"OutputXsiamURL",
|
|
8031
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",
|
|
8032
8592
|
"ParquetVersionAzureBlob",
|
|
8033
8593
|
"ParquetVersionDlS3",
|
|
8034
8594
|
"ParquetVersionFilesystem",
|
|
@@ -8280,6 +8840,7 @@ __all__ = [
|
|
|
8280
8840
|
"QueueFullBehaviorStatsdExt",
|
|
8281
8841
|
"QueueFullBehaviorSumoLogic",
|
|
8282
8842
|
"QueueFullBehaviorWavefront",
|
|
8843
|
+
"RbacResource",
|
|
8283
8844
|
"ReadMode",
|
|
8284
8845
|
"RecordDataFormatAzureEventhub",
|
|
8285
8846
|
"RecordDataFormatConfluentCloud",
|
|
@@ -8289,10 +8850,16 @@ __all__ = [
|
|
|
8289
8850
|
"RecordTypePrometheus",
|
|
8290
8851
|
"RegionNewrelicEvents",
|
|
8291
8852
|
"RegionSentinelOneAiSiem",
|
|
8853
|
+
"Remote",
|
|
8854
|
+
"RemoteTypedDict",
|
|
8855
|
+
"Renamed",
|
|
8856
|
+
"RenamedTypedDict",
|
|
8292
8857
|
"ReportLevel",
|
|
8293
8858
|
"ReportMethod",
|
|
8294
8859
|
"RequestFormatCrowdstrikeNextGenSiem",
|
|
8295
8860
|
"RequestFormatHumioHec",
|
|
8861
|
+
"ResourcePolicy",
|
|
8862
|
+
"ResourcePolicyTypedDict",
|
|
8296
8863
|
"ResourceTypeLabel",
|
|
8297
8864
|
"ResourceTypeLabelTypedDict",
|
|
8298
8865
|
"ResponseRetrySetting131",
|
|
@@ -8339,6 +8906,9 @@ __all__ = [
|
|
|
8339
8906
|
"ResponseRetrySettingSumoLogicTypedDict",
|
|
8340
8907
|
"ResponseRetrySettingWavefront",
|
|
8341
8908
|
"ResponseRetrySettingWavefrontTypedDict",
|
|
8909
|
+
"RestartResponse",
|
|
8910
|
+
"RestartResponseStatus",
|
|
8911
|
+
"RestartResponseTypedDict",
|
|
8342
8912
|
"RetryRulesOffice365Mgmt",
|
|
8343
8913
|
"RetryRulesOffice365MgmtTypedDict",
|
|
8344
8914
|
"RetryRulesOffice365MsgTrace",
|
|
@@ -8375,6 +8945,7 @@ __all__ = [
|
|
|
8375
8945
|
"SNMPv3AuthenticationTypedDict",
|
|
8376
8946
|
"Sample",
|
|
8377
8947
|
"SampleTypedDict",
|
|
8948
|
+
"ScanMode",
|
|
8378
8949
|
"ScheduleType",
|
|
8379
8950
|
"SchemeClientOauth",
|
|
8380
8951
|
"SchemeClientOauthTypedDict",
|
|
@@ -8403,7 +8974,6 @@ __all__ = [
|
|
|
8403
8974
|
"SignatureVersionPrometheus",
|
|
8404
8975
|
"SignatureVersionS3Inventory",
|
|
8405
8976
|
"SignatureVersionSns",
|
|
8406
|
-
"Status",
|
|
8407
8977
|
"StorageClassDlS3",
|
|
8408
8978
|
"StorageClassExabeam",
|
|
8409
8979
|
"StorageClassGoogleCloudStorage",
|
|
@@ -8416,6 +8986,8 @@ __all__ = [
|
|
|
8416
8986
|
"SubscriptionPlanOffice365MsgTrace",
|
|
8417
8987
|
"SubscriptionPlanOffice365Service",
|
|
8418
8988
|
"SubscriptionTypedDict",
|
|
8989
|
+
"Summary",
|
|
8990
|
+
"SummaryTypedDict",
|
|
8419
8991
|
"TLSSettingsClientSide131",
|
|
8420
8992
|
"TLSSettingsClientSide131TypedDict",
|
|
8421
8993
|
"TLSSettingsClientSideAzureEventhub",
|
|
@@ -8472,6 +9044,8 @@ __all__ = [
|
|
|
8472
9044
|
"Target",
|
|
8473
9045
|
"TargetProtocolEdgePrometheus",
|
|
8474
9046
|
"TargetTypedDict",
|
|
9047
|
+
"TeamAccessControlList",
|
|
9048
|
+
"TeamAccessControlListTypedDict",
|
|
8475
9049
|
"TelemetryType",
|
|
8476
9050
|
"TimeoutRetrySettings131",
|
|
8477
9051
|
"TimeoutRetrySettings131TypedDict",
|
|
@@ -8521,6 +9095,10 @@ __all__ = [
|
|
|
8521
9095
|
"TimestampPrecision",
|
|
8522
9096
|
"Type131",
|
|
8523
9097
|
"TypeHTTPDynatraceOtlp",
|
|
9098
|
+
"UpdateGroupsDeployByIDRequest",
|
|
9099
|
+
"UpdateGroupsDeployByIDRequestTypedDict",
|
|
9100
|
+
"UpdateGroupsDeployByIDResponse",
|
|
9101
|
+
"UpdateGroupsDeployByIDResponseTypedDict",
|
|
8524
9102
|
"UpdateHecTokenRequest",
|
|
8525
9103
|
"UpdateHecTokenRequestMetadatum",
|
|
8526
9104
|
"UpdateHecTokenRequestMetadatumTypedDict",
|
|
@@ -8537,6 +9115,10 @@ __all__ = [
|
|
|
8537
9115
|
"UpdateOutputByIDRequestTypedDict",
|
|
8538
9116
|
"UpdateOutputByIDResponse",
|
|
8539
9117
|
"UpdateOutputByIDResponseTypedDict",
|
|
9118
|
+
"UpdatePacksRequest",
|
|
9119
|
+
"UpdatePacksRequestTypedDict",
|
|
9120
|
+
"UpdatePacksResponse",
|
|
9121
|
+
"UpdatePacksResponseTypedDict",
|
|
8540
9122
|
"UpdatePipelineByIDRequest",
|
|
8541
9123
|
"UpdatePipelineByIDRequestTypedDict",
|
|
8542
9124
|
"UpdatePipelineByIDResponse",
|
|
@@ -8545,6 +9127,10 @@ __all__ = [
|
|
|
8545
9127
|
"UpdateRoutesByIDRequestTypedDict",
|
|
8546
9128
|
"UpdateRoutesByIDResponse",
|
|
8547
9129
|
"UpdateRoutesByIDResponseTypedDict",
|
|
9130
|
+
"UpdateWorkersRestartResponse",
|
|
9131
|
+
"UpdateWorkersRestartResponseTypedDict",
|
|
9132
|
+
"UserAccessControlList",
|
|
9133
|
+
"UserAccessControlListTypedDict",
|
|
8548
9134
|
"UsersAndGroups",
|
|
8549
9135
|
"UsersAndGroupsTypedDict",
|
|
8550
9136
|
"V3User",
|
|
@@ -8557,8 +9143,30 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8557
9143
|
"AddHecTokenRequestMetadatum": ".addhectokenrequest",
|
|
8558
9144
|
"AddHecTokenRequestMetadatumTypedDict": ".addhectokenrequest",
|
|
8559
9145
|
"AddHecTokenRequestTypedDict": ".addhectokenrequest",
|
|
9146
|
+
"AppMode": ".appmode",
|
|
8560
9147
|
"AuthToken": ".authtoken",
|
|
8561
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",
|
|
8562
9170
|
"CreateInputHecTokenByIDRequest": ".createinputhectokenbyidop",
|
|
8563
9171
|
"CreateInputHecTokenByIDRequestTypedDict": ".createinputhectokenbyidop",
|
|
8564
9172
|
"CreateInputHecTokenByIDResponse": ".createinputhectokenbyidop",
|
|
@@ -10313,14 +10921,43 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10313
10921
|
"CreateOutputTestByIDRequestTypedDict": ".createoutputtestbyidop",
|
|
10314
10922
|
"CreateOutputTestByIDResponse": ".createoutputtestbyidop",
|
|
10315
10923
|
"CreateOutputTestByIDResponseTypedDict": ".createoutputtestbyidop",
|
|
10924
|
+
"CreatePacksResponse": ".createpacksop",
|
|
10925
|
+
"CreatePacksResponseTypedDict": ".createpacksop",
|
|
10316
10926
|
"CreatePipelineResponse": ".createpipelineop",
|
|
10317
10927
|
"CreatePipelineResponseTypedDict": ".createpipelineop",
|
|
10928
|
+
"CreateProductsGroupsByProductProduct": ".createproductsgroupsbyproductop",
|
|
10929
|
+
"CreateProductsGroupsByProductRequest": ".createproductsgroupsbyproductop",
|
|
10930
|
+
"CreateProductsGroupsByProductRequestTypedDict": ".createproductsgroupsbyproductop",
|
|
10931
|
+
"CreateProductsGroupsByProductResponse": ".createproductsgroupsbyproductop",
|
|
10932
|
+
"CreateProductsGroupsByProductResponseTypedDict": ".createproductsgroupsbyproductop",
|
|
10318
10933
|
"CreateRoutesAppendByIDRequest": ".createroutesappendbyidop",
|
|
10319
10934
|
"CreateRoutesAppendByIDRequestTypedDict": ".createroutesappendbyidop",
|
|
10320
10935
|
"CreateRoutesAppendByIDResponse": ".createroutesappendbyidop",
|
|
10321
10936
|
"CreateRoutesAppendByIDResponseTypedDict": ".createroutesappendbyidop",
|
|
10937
|
+
"CreateVersionCommitResponse": ".createversioncommitop",
|
|
10938
|
+
"CreateVersionCommitResponseTypedDict": ".createversioncommitop",
|
|
10939
|
+
"CreateVersionPushResponse": ".createversionpushop",
|
|
10940
|
+
"CreateVersionPushResponseTypedDict": ".createversionpushop",
|
|
10941
|
+
"CreateVersionRevertRequest": ".createversionrevertop",
|
|
10942
|
+
"CreateVersionRevertRequestTypedDict": ".createversionrevertop",
|
|
10943
|
+
"CreateVersionRevertResponse": ".createversionrevertop",
|
|
10944
|
+
"CreateVersionRevertResponseTypedDict": ".createversionrevertop",
|
|
10945
|
+
"CreateVersionSyncResponse": ".createversionsyncop",
|
|
10946
|
+
"CreateVersionSyncResponseTypedDict": ".createversionsyncop",
|
|
10947
|
+
"CreateVersionUndoRequest": ".createversionundoop",
|
|
10948
|
+
"CreateVersionUndoRequestTypedDict": ".createversionundoop",
|
|
10949
|
+
"CreateVersionUndoResponse": ".createversionundoop",
|
|
10950
|
+
"CreateVersionUndoResponseTypedDict": ".createversionundoop",
|
|
10322
10951
|
"CriblEvent": ".criblevent",
|
|
10323
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",
|
|
10324
10961
|
"DeleteInputByIDRequest": ".deleteinputbyidop",
|
|
10325
10962
|
"DeleteInputByIDRequestTypedDict": ".deleteinputbyidop",
|
|
10326
10963
|
"DeleteInputByIDResponse": ".deleteinputbyidop",
|
|
@@ -10337,6 +10974,35 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10337
10974
|
"DeletePipelineByIDRequestTypedDict": ".deletepipelinebyidop",
|
|
10338
10975
|
"DeletePipelineByIDResponse": ".deletepipelinebyidop",
|
|
10339
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",
|
|
10340
11006
|
"GetInputByIDRequest": ".getinputbyidop",
|
|
10341
11007
|
"GetInputByIDRequestTypedDict": ".getinputbyidop",
|
|
10342
11008
|
"GetInputByIDResponse": ".getinputbyidop",
|
|
@@ -10353,18 +11019,124 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10353
11019
|
"GetOutputSamplesByIDRequestTypedDict": ".getoutputsamplesbyidop",
|
|
10354
11020
|
"GetOutputSamplesByIDResponse": ".getoutputsamplesbyidop",
|
|
10355
11021
|
"GetOutputSamplesByIDResponseTypedDict": ".getoutputsamplesbyidop",
|
|
11022
|
+
"GetPacksRequest": ".getpacksop",
|
|
11023
|
+
"GetPacksRequestTypedDict": ".getpacksop",
|
|
11024
|
+
"GetPacksResponse": ".getpacksop",
|
|
11025
|
+
"GetPacksResponseTypedDict": ".getpacksop",
|
|
10356
11026
|
"GetPipelineByIDRequest": ".getpipelinebyidop",
|
|
10357
11027
|
"GetPipelineByIDRequestTypedDict": ".getpipelinebyidop",
|
|
10358
11028
|
"GetPipelineByIDResponse": ".getpipelinebyidop",
|
|
10359
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",
|
|
10360
11041
|
"GetRoutesByIDRequest": ".getroutesbyidop",
|
|
10361
11042
|
"GetRoutesByIDRequestTypedDict": ".getroutesbyidop",
|
|
10362
11043
|
"GetRoutesByIDResponse": ".getroutesbyidop",
|
|
10363
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",
|
|
11054
|
+
"GetVersionBranchResponse": ".getversionbranchop",
|
|
11055
|
+
"GetVersionBranchResponseTypedDict": ".getversionbranchop",
|
|
11056
|
+
"GetVersionCountRequest": ".getversioncountop",
|
|
11057
|
+
"GetVersionCountRequestTypedDict": ".getversioncountop",
|
|
11058
|
+
"GetVersionCountResponse": ".getversioncountop",
|
|
11059
|
+
"GetVersionCountResponseTypedDict": ".getversioncountop",
|
|
11060
|
+
"GetVersionCurrentBranchResponse": ".getversioncurrentbranchop",
|
|
11061
|
+
"GetVersionCurrentBranchResponseTypedDict": ".getversioncurrentbranchop",
|
|
11062
|
+
"GetVersionDiffRequest": ".getversiondiffop",
|
|
11063
|
+
"GetVersionDiffRequestTypedDict": ".getversiondiffop",
|
|
11064
|
+
"GetVersionDiffResponse": ".getversiondiffop",
|
|
11065
|
+
"GetVersionDiffResponseTypedDict": ".getversiondiffop",
|
|
11066
|
+
"GetVersionFilesRequest": ".getversionfilesop",
|
|
11067
|
+
"GetVersionFilesRequestTypedDict": ".getversionfilesop",
|
|
11068
|
+
"GetVersionFilesResponse": ".getversionfilesop",
|
|
11069
|
+
"GetVersionFilesResponseTypedDict": ".getversionfilesop",
|
|
11070
|
+
"GetVersionInfoResponse": ".getversioninfoop",
|
|
11071
|
+
"GetVersionInfoResponseTypedDict": ".getversioninfoop",
|
|
11072
|
+
"GetVersionShowRequest": ".getversionshowop",
|
|
11073
|
+
"GetVersionShowRequestTypedDict": ".getversionshowop",
|
|
11074
|
+
"GetVersionShowResponse": ".getversionshowop",
|
|
11075
|
+
"GetVersionShowResponseTypedDict": ".getversionshowop",
|
|
11076
|
+
"GetVersionStatusRequest": ".getversionstatusop",
|
|
11077
|
+
"GetVersionStatusRequestTypedDict": ".getversionstatusop",
|
|
11078
|
+
"GetVersionStatusResponse": ".getversionstatusop",
|
|
11079
|
+
"GetVersionStatusResponseTypedDict": ".getversionstatusop",
|
|
11080
|
+
"GetWorkersRequest": ".getworkersop",
|
|
11081
|
+
"GetWorkersRequestTypedDict": ".getworkersop",
|
|
11082
|
+
"GetWorkersResponse": ".getworkersop",
|
|
11083
|
+
"GetWorkersResponseTypedDict": ".getworkersop",
|
|
11084
|
+
"GitCommitParams": ".gitcommitparams",
|
|
11085
|
+
"GitCommitParamsTypedDict": ".gitcommitparams",
|
|
11086
|
+
"Author": ".gitcommitsummary",
|
|
11087
|
+
"AuthorTypedDict": ".gitcommitsummary",
|
|
11088
|
+
"GitCommitSummary": ".gitcommitsummary",
|
|
11089
|
+
"GitCommitSummaryFiles": ".gitcommitsummary",
|
|
11090
|
+
"GitCommitSummaryFilesTypedDict": ".gitcommitsummary",
|
|
11091
|
+
"GitCommitSummaryTypedDict": ".gitcommitsummary",
|
|
11092
|
+
"Summary": ".gitcommitsummary",
|
|
11093
|
+
"SummaryTypedDict": ".gitcommitsummary",
|
|
11094
|
+
"GitFile": ".gitfile",
|
|
11095
|
+
"GitFileTypedDict": ".gitfile",
|
|
11096
|
+
"GitFilesResponse": ".gitfilesresponse",
|
|
11097
|
+
"GitFilesResponseTypedDict": ".gitfilesresponse",
|
|
11098
|
+
"GitInfo": ".gitinfo",
|
|
11099
|
+
"GitInfoTypedDict": ".gitinfo",
|
|
11100
|
+
"Remote": ".gitinfo",
|
|
11101
|
+
"RemoteTypedDict": ".gitinfo",
|
|
11102
|
+
"GitRevertParams": ".gitrevertparams",
|
|
11103
|
+
"GitRevertParamsTypedDict": ".gitrevertparams",
|
|
11104
|
+
"Audit": ".gitrevertresult",
|
|
11105
|
+
"AuditTypedDict": ".gitrevertresult",
|
|
11106
|
+
"GitRevertResult": ".gitrevertresult",
|
|
11107
|
+
"GitRevertResultFiles": ".gitrevertresult",
|
|
11108
|
+
"GitRevertResultFilesTypedDict": ".gitrevertresult",
|
|
11109
|
+
"GitRevertResultTypedDict": ".gitrevertresult",
|
|
11110
|
+
"File": ".gitstatusresult",
|
|
11111
|
+
"FileTypedDict": ".gitstatusresult",
|
|
11112
|
+
"GitStatusResult": ".gitstatusresult",
|
|
11113
|
+
"GitStatusResultTypedDict": ".gitstatusresult",
|
|
11114
|
+
"Renamed": ".gitstatusresult",
|
|
11115
|
+
"RenamedTypedDict": ".gitstatusresult",
|
|
11116
|
+
"Config": ".hbcriblinfo",
|
|
11117
|
+
"ConfigTypedDict": ".hbcriblinfo",
|
|
11118
|
+
"HBCriblInfo": ".hbcriblinfo",
|
|
11119
|
+
"HBCriblInfoTypedDict": ".hbcriblinfo",
|
|
11120
|
+
"HBLeaderInfo": ".hbleaderinfo",
|
|
11121
|
+
"HBLeaderInfoTypedDict": ".hbleaderinfo",
|
|
10364
11122
|
"HealthStatus": ".healthstatus",
|
|
11123
|
+
"HealthStatusStatus": ".healthstatus",
|
|
10365
11124
|
"HealthStatusTypedDict": ".healthstatus",
|
|
10366
11125
|
"Role": ".healthstatus",
|
|
10367
|
-
"
|
|
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",
|
|
10368
11140
|
"Input": ".input",
|
|
10369
11141
|
"InputTypedDict": ".input",
|
|
10370
11142
|
"Allow": ".inputappscope",
|
|
@@ -11492,6 +12264,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
11492
12264
|
"InputZscalerHecTLSSettingsServerSideTypedDict": ".inputzscalerhec",
|
|
11493
12265
|
"InputZscalerHecType": ".inputzscalerhec",
|
|
11494
12266
|
"InputZscalerHecTypedDict": ".inputzscalerhec",
|
|
12267
|
+
"LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
|
|
12268
|
+
"LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
|
|
12269
|
+
"LakehouseConnectionType": ".lakehouseconnectiontype",
|
|
11495
12270
|
"ListInputResponse": ".listinputop",
|
|
11496
12271
|
"ListInputResponseTypedDict": ".listinputop",
|
|
11497
12272
|
"ListOutputResponse": ".listoutputop",
|
|
@@ -11502,6 +12277,39 @@ _dynamic_imports: dict[str, str] = {
|
|
|
11502
12277
|
"ListRoutesResponseTypedDict": ".listroutesop",
|
|
11503
12278
|
"LoginInfo": ".logininfo",
|
|
11504
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",
|
|
11505
12313
|
"Output": ".output",
|
|
11506
12314
|
"OutputTypedDict": ".output",
|
|
11507
12315
|
"BlobAccessTier": ".outputazureblob",
|
|
@@ -12636,6 +13444,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
12636
13444
|
"OutputXsiamTypedDict": ".outputxsiam",
|
|
12637
13445
|
"OutputXsiamURL": ".outputxsiam",
|
|
12638
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",
|
|
12639
13459
|
"Conf": ".pipeline",
|
|
12640
13460
|
"ConfTypedDict": ".pipeline",
|
|
12641
13461
|
"Pipeline": ".pipeline",
|
|
@@ -12646,6 +13466,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
12646
13466
|
"FunctionSpecificConfigsTypedDict": ".pipelinefunctionconf",
|
|
12647
13467
|
"PipelineFunctionConf": ".pipelinefunctionconf",
|
|
12648
13468
|
"PipelineFunctionConfTypedDict": ".pipelinefunctionconf",
|
|
13469
|
+
"RbacResource": ".rbacresource",
|
|
13470
|
+
"ResourcePolicy": ".resourcepolicy",
|
|
13471
|
+
"ResourcePolicyTypedDict": ".resourcepolicy",
|
|
13472
|
+
"RestartResponse": ".restartresponse",
|
|
13473
|
+
"RestartResponseStatus": ".restartresponse",
|
|
13474
|
+
"RestartResponseTypedDict": ".restartresponse",
|
|
12649
13475
|
"RouteCloneConf": ".routecloneconf",
|
|
12650
13476
|
"RouteCloneConfTypedDict": ".routecloneconf",
|
|
12651
13477
|
"RouteConf": ".routeconf",
|
|
@@ -12666,6 +13492,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
12666
13492
|
"SchemeClientOauthTypedDict": ".schemeclientoauth",
|
|
12667
13493
|
"Security": ".security",
|
|
12668
13494
|
"SecurityTypedDict": ".security",
|
|
13495
|
+
"TeamAccessControlList": ".teamaccesscontrollist",
|
|
13496
|
+
"TeamAccessControlListTypedDict": ".teamaccesscontrollist",
|
|
13497
|
+
"UpdateGroupsDeployByIDRequest": ".updategroupsdeploybyidop",
|
|
13498
|
+
"UpdateGroupsDeployByIDRequestTypedDict": ".updategroupsdeploybyidop",
|
|
13499
|
+
"UpdateGroupsDeployByIDResponse": ".updategroupsdeploybyidop",
|
|
13500
|
+
"UpdateGroupsDeployByIDResponseTypedDict": ".updategroupsdeploybyidop",
|
|
12669
13501
|
"UpdateHecTokenRequest": ".updatehectokenrequest",
|
|
12670
13502
|
"UpdateHecTokenRequestMetadatum": ".updatehectokenrequest",
|
|
12671
13503
|
"UpdateHecTokenRequestMetadatumTypedDict": ".updatehectokenrequest",
|
|
@@ -12682,6 +13514,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
12682
13514
|
"UpdateOutputByIDRequestTypedDict": ".updateoutputbyidop",
|
|
12683
13515
|
"UpdateOutputByIDResponse": ".updateoutputbyidop",
|
|
12684
13516
|
"UpdateOutputByIDResponseTypedDict": ".updateoutputbyidop",
|
|
13517
|
+
"UpdatePacksRequest": ".updatepacksop",
|
|
13518
|
+
"UpdatePacksRequestTypedDict": ".updatepacksop",
|
|
13519
|
+
"UpdatePacksResponse": ".updatepacksop",
|
|
13520
|
+
"UpdatePacksResponseTypedDict": ".updatepacksop",
|
|
12685
13521
|
"UpdatePipelineByIDRequest": ".updatepipelinebyidop",
|
|
12686
13522
|
"UpdatePipelineByIDRequestTypedDict": ".updatepipelinebyidop",
|
|
12687
13523
|
"UpdatePipelineByIDResponse": ".updatepipelinebyidop",
|
|
@@ -12690,6 +13526,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
12690
13526
|
"UpdateRoutesByIDRequestTypedDict": ".updateroutesbyidop",
|
|
12691
13527
|
"UpdateRoutesByIDResponse": ".updateroutesbyidop",
|
|
12692
13528
|
"UpdateRoutesByIDResponseTypedDict": ".updateroutesbyidop",
|
|
13529
|
+
"UpdateWorkersRestartResponse": ".updateworkersrestartop",
|
|
13530
|
+
"UpdateWorkersRestartResponseTypedDict": ".updateworkersrestartop",
|
|
13531
|
+
"UserAccessControlList": ".useraccesscontrollist",
|
|
13532
|
+
"UserAccessControlListTypedDict": ".useraccesscontrollist",
|
|
12693
13533
|
}
|
|
12694
13534
|
|
|
12695
13535
|
|