cribl-control-plane 0.0.18__py3-none-any.whl → 0.0.20__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 +1141 -0
- cribl_control_plane/models/__init__.py +672 -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/cribllakedataset.py +74 -0
- cribl_control_plane/models/datasetmetadata.py +39 -0
- cribl_control_plane/models/datasetmetadataruninfo.py +28 -0
- cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py +47 -0
- cribl_control_plane/models/deletepacksbyidop.py +37 -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/getcribllakedatasetbylakeidandidop.py +47 -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/getworkersop.py +82 -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/updatecribllakedatasetbylakeidandidop.py +57 -0
- cribl_control_plane/models/updategroupsdeploybyidop.py +46 -0
- cribl_control_plane/models/updatepacksbyidop.py +65 -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 +989 -0
- cribl_control_plane/sdk.py +24 -0
- cribl_control_plane/teams.py +203 -0
- cribl_control_plane/workers_sdk.py +555 -0
- {cribl_control_plane-0.0.18.dist-info → cribl_control_plane-0.0.20.dist-info}/METADATA +47 -8
- {cribl_control_plane-0.0.18.dist-info → cribl_control_plane-0.0.20.dist-info}/RECORD +70 -8
- {cribl_control_plane-0.0.18.dist-info → cribl_control_plane-0.0.20.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,22 @@ 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
|
+
)
|
|
1854
|
+
from .deletecribllakedatasetbylakeidandidop import (
|
|
1855
|
+
DeleteCriblLakeDatasetByLakeIDAndIDRequest,
|
|
1856
|
+
DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict,
|
|
1857
|
+
DeleteCriblLakeDatasetByLakeIDAndIDResponse,
|
|
1858
|
+
DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict,
|
|
1859
|
+
)
|
|
1811
1860
|
from .deleteinputbyidop import (
|
|
1812
1861
|
DeleteInputByIDRequest,
|
|
1813
1862
|
DeleteInputByIDRequestTypedDict,
|
|
@@ -1826,12 +1875,64 @@ if TYPE_CHECKING:
|
|
|
1826
1875
|
DeleteOutputPqByIDResponse,
|
|
1827
1876
|
DeleteOutputPqByIDResponseTypedDict,
|
|
1828
1877
|
)
|
|
1878
|
+
from .deletepacksbyidop import (
|
|
1879
|
+
DeletePacksByIDRequest,
|
|
1880
|
+
DeletePacksByIDRequestTypedDict,
|
|
1881
|
+
DeletePacksByIDResponse,
|
|
1882
|
+
DeletePacksByIDResponseTypedDict,
|
|
1883
|
+
)
|
|
1829
1884
|
from .deletepipelinebyidop import (
|
|
1830
1885
|
DeletePipelineByIDRequest,
|
|
1831
1886
|
DeletePipelineByIDRequestTypedDict,
|
|
1832
1887
|
DeletePipelineByIDResponse,
|
|
1833
1888
|
DeletePipelineByIDResponseTypedDict,
|
|
1834
1889
|
)
|
|
1890
|
+
from .deployrequest import DeployRequest, DeployRequestTypedDict
|
|
1891
|
+
from .deployrequestlookups import (
|
|
1892
|
+
DeployRequestLookups,
|
|
1893
|
+
DeployRequestLookupsLookup,
|
|
1894
|
+
DeployRequestLookupsLookupTypedDict,
|
|
1895
|
+
DeployRequestLookupsTypedDict,
|
|
1896
|
+
)
|
|
1897
|
+
from .distributedsummary import (
|
|
1898
|
+
DistributedSummary,
|
|
1899
|
+
DistributedSummaryGroups,
|
|
1900
|
+
DistributedSummaryGroupsTypedDict,
|
|
1901
|
+
DistributedSummaryTypedDict,
|
|
1902
|
+
DistributedSummaryWorkers,
|
|
1903
|
+
DistributedSummaryWorkersTypedDict,
|
|
1904
|
+
)
|
|
1905
|
+
from .getcribllakedatasetbylakeidandidop import (
|
|
1906
|
+
GetCriblLakeDatasetByLakeIDAndIDRequest,
|
|
1907
|
+
GetCriblLakeDatasetByLakeIDAndIDRequestTypedDict,
|
|
1908
|
+
GetCriblLakeDatasetByLakeIDAndIDResponse,
|
|
1909
|
+
GetCriblLakeDatasetByLakeIDAndIDResponseTypedDict,
|
|
1910
|
+
)
|
|
1911
|
+
from .getcribllakedatasetbylakeidop import (
|
|
1912
|
+
GetCriblLakeDatasetByLakeIDRequest,
|
|
1913
|
+
GetCriblLakeDatasetByLakeIDRequestTypedDict,
|
|
1914
|
+
GetCriblLakeDatasetByLakeIDResponse,
|
|
1915
|
+
GetCriblLakeDatasetByLakeIDResponseTypedDict,
|
|
1916
|
+
)
|
|
1917
|
+
from .getgroupsaclbyidop import (
|
|
1918
|
+
GetGroupsACLByIDRequest,
|
|
1919
|
+
GetGroupsACLByIDRequestTypedDict,
|
|
1920
|
+
GetGroupsACLByIDResponse,
|
|
1921
|
+
GetGroupsACLByIDResponseTypedDict,
|
|
1922
|
+
GetGroupsACLByIDType,
|
|
1923
|
+
)
|
|
1924
|
+
from .getgroupsbyidop import (
|
|
1925
|
+
GetGroupsByIDRequest,
|
|
1926
|
+
GetGroupsByIDRequestTypedDict,
|
|
1927
|
+
GetGroupsByIDResponse,
|
|
1928
|
+
GetGroupsByIDResponseTypedDict,
|
|
1929
|
+
)
|
|
1930
|
+
from .getgroupsconfigversionbyidop import (
|
|
1931
|
+
GetGroupsConfigVersionByIDRequest,
|
|
1932
|
+
GetGroupsConfigVersionByIDRequestTypedDict,
|
|
1933
|
+
GetGroupsConfigVersionByIDResponse,
|
|
1934
|
+
GetGroupsConfigVersionByIDResponseTypedDict,
|
|
1935
|
+
)
|
|
1835
1936
|
from .getinputbyidop import (
|
|
1836
1937
|
GetInputByIDRequest,
|
|
1837
1938
|
GetInputByIDRequestTypedDict,
|
|
@@ -1856,18 +1957,52 @@ if TYPE_CHECKING:
|
|
|
1856
1957
|
GetOutputSamplesByIDResponse,
|
|
1857
1958
|
GetOutputSamplesByIDResponseTypedDict,
|
|
1858
1959
|
)
|
|
1960
|
+
from .getpacksop import (
|
|
1961
|
+
GetPacksRequest,
|
|
1962
|
+
GetPacksRequestTypedDict,
|
|
1963
|
+
GetPacksResponse,
|
|
1964
|
+
GetPacksResponseTypedDict,
|
|
1965
|
+
)
|
|
1859
1966
|
from .getpipelinebyidop import (
|
|
1860
1967
|
GetPipelineByIDRequest,
|
|
1861
1968
|
GetPipelineByIDRequestTypedDict,
|
|
1862
1969
|
GetPipelineByIDResponse,
|
|
1863
1970
|
GetPipelineByIDResponseTypedDict,
|
|
1864
1971
|
)
|
|
1972
|
+
from .getproductsgroupsaclteamsbyproductandidop import (
|
|
1973
|
+
GetProductsGroupsACLTeamsByProductAndIDProduct,
|
|
1974
|
+
GetProductsGroupsACLTeamsByProductAndIDRequest,
|
|
1975
|
+
GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict,
|
|
1976
|
+
GetProductsGroupsACLTeamsByProductAndIDResponse,
|
|
1977
|
+
GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict,
|
|
1978
|
+
GetProductsGroupsACLTeamsByProductAndIDType,
|
|
1979
|
+
)
|
|
1980
|
+
from .getproductsgroupsbyproductop import (
|
|
1981
|
+
GetProductsGroupsByProductProduct,
|
|
1982
|
+
GetProductsGroupsByProductRequest,
|
|
1983
|
+
GetProductsGroupsByProductRequestTypedDict,
|
|
1984
|
+
GetProductsGroupsByProductResponse,
|
|
1985
|
+
GetProductsGroupsByProductResponseTypedDict,
|
|
1986
|
+
)
|
|
1865
1987
|
from .getroutesbyidop import (
|
|
1866
1988
|
GetRoutesByIDRequest,
|
|
1867
1989
|
GetRoutesByIDRequestTypedDict,
|
|
1868
1990
|
GetRoutesByIDResponse,
|
|
1869
1991
|
GetRoutesByIDResponseTypedDict,
|
|
1870
1992
|
)
|
|
1993
|
+
from .getsummaryop import (
|
|
1994
|
+
GetSummaryMode,
|
|
1995
|
+
GetSummaryRequest,
|
|
1996
|
+
GetSummaryRequestTypedDict,
|
|
1997
|
+
GetSummaryResponse,
|
|
1998
|
+
GetSummaryResponseTypedDict,
|
|
1999
|
+
)
|
|
2000
|
+
from .getsummaryworkersop import (
|
|
2001
|
+
GetSummaryWorkersRequest,
|
|
2002
|
+
GetSummaryWorkersRequestTypedDict,
|
|
2003
|
+
GetSummaryWorkersResponse,
|
|
2004
|
+
GetSummaryWorkersResponseTypedDict,
|
|
2005
|
+
)
|
|
1871
2006
|
from .getversionbranchop import (
|
|
1872
2007
|
GetVersionBranchResponse,
|
|
1873
2008
|
GetVersionBranchResponseTypedDict,
|
|
@@ -1910,6 +2045,12 @@ if TYPE_CHECKING:
|
|
|
1910
2045
|
GetVersionStatusResponse,
|
|
1911
2046
|
GetVersionStatusResponseTypedDict,
|
|
1912
2047
|
)
|
|
2048
|
+
from .getworkersop import (
|
|
2049
|
+
GetWorkersRequest,
|
|
2050
|
+
GetWorkersRequestTypedDict,
|
|
2051
|
+
GetWorkersResponse,
|
|
2052
|
+
GetWorkersResponseTypedDict,
|
|
2053
|
+
)
|
|
1913
2054
|
from .gitcommitparams import GitCommitParams, GitCommitParamsTypedDict
|
|
1914
2055
|
from .gitcommitsummary import (
|
|
1915
2056
|
Author,
|
|
@@ -1941,7 +2082,30 @@ if TYPE_CHECKING:
|
|
|
1941
2082
|
Renamed,
|
|
1942
2083
|
RenamedTypedDict,
|
|
1943
2084
|
)
|
|
1944
|
-
from .
|
|
2085
|
+
from .hbcriblinfo import Config, ConfigTypedDict, HBCriblInfo, HBCriblInfoTypedDict
|
|
2086
|
+
from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
|
|
2087
|
+
from .healthstatus import (
|
|
2088
|
+
HealthStatus,
|
|
2089
|
+
HealthStatusStatus,
|
|
2090
|
+
HealthStatusTypedDict,
|
|
2091
|
+
Role,
|
|
2092
|
+
)
|
|
2093
|
+
from .heartbeatmetadata import (
|
|
2094
|
+
HeartbeatMetadata,
|
|
2095
|
+
HeartbeatMetadataAws,
|
|
2096
|
+
HeartbeatMetadataAwsTypedDict,
|
|
2097
|
+
HeartbeatMetadataHostOs,
|
|
2098
|
+
HeartbeatMetadataHostOsTypedDict,
|
|
2099
|
+
HeartbeatMetadataKube,
|
|
2100
|
+
HeartbeatMetadataKubeTypedDict,
|
|
2101
|
+
HeartbeatMetadataOs,
|
|
2102
|
+
HeartbeatMetadataOsTypedDict,
|
|
2103
|
+
HeartbeatMetadataOwner,
|
|
2104
|
+
HeartbeatMetadataOwnerTypedDict,
|
|
2105
|
+
HeartbeatMetadataTags,
|
|
2106
|
+
HeartbeatMetadataTagsTypedDict,
|
|
2107
|
+
HeartbeatMetadataTypedDict,
|
|
2108
|
+
)
|
|
1945
2109
|
from .input import Input, InputTypedDict
|
|
1946
2110
|
from .inputappscope import (
|
|
1947
2111
|
Allow,
|
|
@@ -3184,11 +3348,51 @@ if TYPE_CHECKING:
|
|
|
3184
3348
|
InputZscalerHecType,
|
|
3185
3349
|
InputZscalerHecTypedDict,
|
|
3186
3350
|
)
|
|
3351
|
+
from .lakedatasetsearchconfig import (
|
|
3352
|
+
LakeDatasetSearchConfig,
|
|
3353
|
+
LakeDatasetSearchConfigTypedDict,
|
|
3354
|
+
)
|
|
3355
|
+
from .lakehouseconnectiontype import LakehouseConnectionType
|
|
3187
3356
|
from .listinputop import ListInputResponse, ListInputResponseTypedDict
|
|
3188
3357
|
from .listoutputop import ListOutputResponse, ListOutputResponseTypedDict
|
|
3189
3358
|
from .listpipelineop import ListPipelineResponse, ListPipelineResponseTypedDict
|
|
3190
3359
|
from .listroutesop import ListRoutesResponse, ListRoutesResponseTypedDict
|
|
3191
3360
|
from .logininfo import LoginInfo, LoginInfoTypedDict
|
|
3361
|
+
from .lookupversions import LookupVersions, LookupVersionsTypedDict
|
|
3362
|
+
from .masterworkerentry import (
|
|
3363
|
+
LastMetrics,
|
|
3364
|
+
LastMetricsTypedDict,
|
|
3365
|
+
MasterWorkerEntry,
|
|
3366
|
+
MasterWorkerEntryType,
|
|
3367
|
+
MasterWorkerEntryTypedDict,
|
|
3368
|
+
MasterWorkerEntryWorkers,
|
|
3369
|
+
MasterWorkerEntryWorkersTypedDict,
|
|
3370
|
+
)
|
|
3371
|
+
from .nodeactiveupgradestatus import NodeActiveUpgradeStatus
|
|
3372
|
+
from .nodefailedupgradestatus import NodeFailedUpgradeStatus
|
|
3373
|
+
from .nodeprovidedinfo import (
|
|
3374
|
+
NodeProvidedInfo,
|
|
3375
|
+
NodeProvidedInfoAws,
|
|
3376
|
+
NodeProvidedInfoAwsTypedDict,
|
|
3377
|
+
NodeProvidedInfoHostOs,
|
|
3378
|
+
NodeProvidedInfoHostOsTypedDict,
|
|
3379
|
+
NodeProvidedInfoKube,
|
|
3380
|
+
NodeProvidedInfoKubeTypedDict,
|
|
3381
|
+
NodeProvidedInfoOs1,
|
|
3382
|
+
NodeProvidedInfoOs1TypedDict,
|
|
3383
|
+
NodeProvidedInfoOs2,
|
|
3384
|
+
NodeProvidedInfoOs2TypedDict,
|
|
3385
|
+
NodeProvidedInfoOwner,
|
|
3386
|
+
NodeProvidedInfoOwnerTypedDict,
|
|
3387
|
+
NodeProvidedInfoTags,
|
|
3388
|
+
NodeProvidedInfoTagsTypedDict,
|
|
3389
|
+
NodeProvidedInfoTypedDict,
|
|
3390
|
+
Os,
|
|
3391
|
+
OsTypedDict,
|
|
3392
|
+
)
|
|
3393
|
+
from .nodeskippedupgradestatus import NodeSkippedUpgradeStatus
|
|
3394
|
+
from .nodeupgradestate import NodeUpgradeState
|
|
3395
|
+
from .nodeupgradestatus import NodeUpgradeStatus, NodeUpgradeStatusTypedDict
|
|
3192
3396
|
from .output import Output, OutputTypedDict
|
|
3193
3397
|
from .outputazureblob import (
|
|
3194
3398
|
BlobAccessTier,
|
|
@@ -4442,6 +4646,24 @@ if TYPE_CHECKING:
|
|
|
4442
4646
|
OutputXsiamURL,
|
|
4443
4647
|
OutputXsiamURLTypedDict,
|
|
4444
4648
|
)
|
|
4649
|
+
from .packinfo import (
|
|
4650
|
+
PackInfo,
|
|
4651
|
+
PackInfoTags,
|
|
4652
|
+
PackInfoTagsTypedDict,
|
|
4653
|
+
PackInfoTypedDict,
|
|
4654
|
+
)
|
|
4655
|
+
from .packinstallinfo import (
|
|
4656
|
+
PackInstallInfo,
|
|
4657
|
+
PackInstallInfoTags,
|
|
4658
|
+
PackInstallInfoTagsTypedDict,
|
|
4659
|
+
PackInstallInfoTypedDict,
|
|
4660
|
+
)
|
|
4661
|
+
from .packrequestbody import (
|
|
4662
|
+
PackRequestBody,
|
|
4663
|
+
PackRequestBodyTags,
|
|
4664
|
+
PackRequestBodyTagsTypedDict,
|
|
4665
|
+
PackRequestBodyTypedDict,
|
|
4666
|
+
)
|
|
4445
4667
|
from .pipeline import (
|
|
4446
4668
|
Conf,
|
|
4447
4669
|
ConfTypedDict,
|
|
@@ -4456,6 +4678,13 @@ if TYPE_CHECKING:
|
|
|
4456
4678
|
PipelineFunctionConf,
|
|
4457
4679
|
PipelineFunctionConfTypedDict,
|
|
4458
4680
|
)
|
|
4681
|
+
from .rbacresource import RbacResource
|
|
4682
|
+
from .resourcepolicy import ResourcePolicy, ResourcePolicyTypedDict
|
|
4683
|
+
from .restartresponse import (
|
|
4684
|
+
RestartResponse,
|
|
4685
|
+
RestartResponseStatus,
|
|
4686
|
+
RestartResponseTypedDict,
|
|
4687
|
+
)
|
|
4459
4688
|
from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
|
|
4460
4689
|
from .routeconf import RouteConf, RouteConfTypedDict
|
|
4461
4690
|
from .routes import (
|
|
@@ -4472,6 +4701,22 @@ if TYPE_CHECKING:
|
|
|
4472
4701
|
from .routesroute_input import RoutesRouteInput, RoutesRouteInputTypedDict
|
|
4473
4702
|
from .schemeclientoauth import SchemeClientOauth, SchemeClientOauthTypedDict
|
|
4474
4703
|
from .security import Security, SecurityTypedDict
|
|
4704
|
+
from .teamaccesscontrollist import (
|
|
4705
|
+
TeamAccessControlList,
|
|
4706
|
+
TeamAccessControlListTypedDict,
|
|
4707
|
+
)
|
|
4708
|
+
from .updatecribllakedatasetbylakeidandidop import (
|
|
4709
|
+
UpdateCriblLakeDatasetByLakeIDAndIDRequest,
|
|
4710
|
+
UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict,
|
|
4711
|
+
UpdateCriblLakeDatasetByLakeIDAndIDResponse,
|
|
4712
|
+
UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict,
|
|
4713
|
+
)
|
|
4714
|
+
from .updategroupsdeploybyidop import (
|
|
4715
|
+
UpdateGroupsDeployByIDRequest,
|
|
4716
|
+
UpdateGroupsDeployByIDRequestTypedDict,
|
|
4717
|
+
UpdateGroupsDeployByIDResponse,
|
|
4718
|
+
UpdateGroupsDeployByIDResponseTypedDict,
|
|
4719
|
+
)
|
|
4475
4720
|
from .updatehectokenrequest import (
|
|
4476
4721
|
UpdateHecTokenRequest,
|
|
4477
4722
|
UpdateHecTokenRequestMetadatum,
|
|
@@ -4496,6 +4741,18 @@ if TYPE_CHECKING:
|
|
|
4496
4741
|
UpdateOutputByIDResponse,
|
|
4497
4742
|
UpdateOutputByIDResponseTypedDict,
|
|
4498
4743
|
)
|
|
4744
|
+
from .updatepacksbyidop import (
|
|
4745
|
+
UpdatePacksByIDRequest,
|
|
4746
|
+
UpdatePacksByIDRequestTypedDict,
|
|
4747
|
+
UpdatePacksByIDResponse,
|
|
4748
|
+
UpdatePacksByIDResponseTypedDict,
|
|
4749
|
+
)
|
|
4750
|
+
from .updatepacksop import (
|
|
4751
|
+
UpdatePacksRequest,
|
|
4752
|
+
UpdatePacksRequestTypedDict,
|
|
4753
|
+
UpdatePacksResponse,
|
|
4754
|
+
UpdatePacksResponseTypedDict,
|
|
4755
|
+
)
|
|
4499
4756
|
from .updatepipelinebyidop import (
|
|
4500
4757
|
UpdatePipelineByIDRequest,
|
|
4501
4758
|
UpdatePipelineByIDRequestTypedDict,
|
|
@@ -4508,6 +4765,14 @@ if TYPE_CHECKING:
|
|
|
4508
4765
|
UpdateRoutesByIDResponse,
|
|
4509
4766
|
UpdateRoutesByIDResponseTypedDict,
|
|
4510
4767
|
)
|
|
4768
|
+
from .updateworkersrestartop import (
|
|
4769
|
+
UpdateWorkersRestartResponse,
|
|
4770
|
+
UpdateWorkersRestartResponseTypedDict,
|
|
4771
|
+
)
|
|
4772
|
+
from .useraccesscontrollist import (
|
|
4773
|
+
UserAccessControlList,
|
|
4774
|
+
UserAccessControlListTypedDict,
|
|
4775
|
+
)
|
|
4511
4776
|
|
|
4512
4777
|
__all__ = [
|
|
4513
4778
|
"AISIEMEndpointPath",
|
|
@@ -4523,6 +4788,7 @@ __all__ = [
|
|
|
4523
4788
|
"AdditionalPropertyTypedDict",
|
|
4524
4789
|
"Allow",
|
|
4525
4790
|
"AllowTypedDict",
|
|
4791
|
+
"AppMode",
|
|
4526
4792
|
"Audit",
|
|
4527
4793
|
"AuditTypedDict",
|
|
4528
4794
|
"AuthAuthenticationMethodElastic",
|
|
@@ -4644,6 +4910,9 @@ __all__ = [
|
|
|
4644
4910
|
"BackpressureBehaviorSumoLogic",
|
|
4645
4911
|
"BackpressureBehaviorWavefront",
|
|
4646
4912
|
"BlobAccessTier",
|
|
4913
|
+
"CacheConnection",
|
|
4914
|
+
"CacheConnectionBackfillStatus",
|
|
4915
|
+
"CacheConnectionTypedDict",
|
|
4647
4916
|
"CertOptions",
|
|
4648
4917
|
"CertOptionsTypedDict",
|
|
4649
4918
|
"CertificateAzureDataExplorer",
|
|
@@ -4656,12 +4925,15 @@ __all__ = [
|
|
|
4656
4925
|
"CheckpointingS3TypedDict",
|
|
4657
4926
|
"CheckpointingSecurityLake",
|
|
4658
4927
|
"CheckpointingSecurityLakeTypedDict",
|
|
4928
|
+
"CloudProvider",
|
|
4659
4929
|
"Collectors",
|
|
4660
4930
|
"CollectorsTypedDict",
|
|
4661
4931
|
"ColumnMapping",
|
|
4662
4932
|
"ColumnMappingTypedDict",
|
|
4663
4933
|
"Comment",
|
|
4664
4934
|
"CommentTypedDict",
|
|
4935
|
+
"Commit",
|
|
4936
|
+
"CommitTypedDict",
|
|
4665
4937
|
"CompressCompression131",
|
|
4666
4938
|
"CompressCompressionAzureDataExplorer",
|
|
4667
4939
|
"CompressCompressionSplunkLb",
|
|
@@ -4725,6 +4997,17 @@ __all__ = [
|
|
|
4725
4997
|
"CompressionZscalerHec",
|
|
4726
4998
|
"Conf",
|
|
4727
4999
|
"ConfTypedDict",
|
|
5000
|
+
"Config",
|
|
5001
|
+
"ConfigGroup",
|
|
5002
|
+
"ConfigGroupCloud",
|
|
5003
|
+
"ConfigGroupCloudTypedDict",
|
|
5004
|
+
"ConfigGroupLookups",
|
|
5005
|
+
"ConfigGroupLookupsLookup",
|
|
5006
|
+
"ConfigGroupLookupsLookupTypedDict",
|
|
5007
|
+
"ConfigGroupLookupsTypedDict",
|
|
5008
|
+
"ConfigGroupType",
|
|
5009
|
+
"ConfigGroupTypedDict",
|
|
5010
|
+
"ConfigTypedDict",
|
|
4728
5011
|
"ConnectionAzureBlob",
|
|
4729
5012
|
"ConnectionAzureBlobTypedDict",
|
|
4730
5013
|
"ConnectionConfluentCloud",
|
|
@@ -4820,6 +5103,10 @@ __all__ = [
|
|
|
4820
5103
|
"ContentConfigOffice365ServiceTypedDict",
|
|
4821
5104
|
"ContentConfigWiz",
|
|
4822
5105
|
"ContentConfigWizTypedDict",
|
|
5106
|
+
"CreateCriblLakeDatasetByLakeIDRequest",
|
|
5107
|
+
"CreateCriblLakeDatasetByLakeIDRequestTypedDict",
|
|
5108
|
+
"CreateCriblLakeDatasetByLakeIDResponse",
|
|
5109
|
+
"CreateCriblLakeDatasetByLakeIDResponseTypedDict",
|
|
4823
5110
|
"CreateInputAPIVersion",
|
|
4824
5111
|
"CreateInputAuthConfluentCloud",
|
|
4825
5112
|
"CreateInputAuthConfluentCloudTypedDict",
|
|
@@ -5531,8 +5818,15 @@ __all__ = [
|
|
|
5531
5818
|
"CreateOutputURL",
|
|
5532
5819
|
"CreateOutputURLTypedDict",
|
|
5533
5820
|
"CreateOutputWriteAction",
|
|
5821
|
+
"CreatePacksResponse",
|
|
5822
|
+
"CreatePacksResponseTypedDict",
|
|
5534
5823
|
"CreatePipelineResponse",
|
|
5535
5824
|
"CreatePipelineResponseTypedDict",
|
|
5825
|
+
"CreateProductsGroupsByProductProduct",
|
|
5826
|
+
"CreateProductsGroupsByProductRequest",
|
|
5827
|
+
"CreateProductsGroupsByProductRequestTypedDict",
|
|
5828
|
+
"CreateProductsGroupsByProductResponse",
|
|
5829
|
+
"CreateProductsGroupsByProductResponseTypedDict",
|
|
5536
5830
|
"CreateRoutesAppendByIDRequest",
|
|
5537
5831
|
"CreateRoutesAppendByIDRequestTypedDict",
|
|
5538
5832
|
"CreateRoutesAppendByIDResponse",
|
|
@@ -5553,6 +5847,9 @@ __all__ = [
|
|
|
5553
5847
|
"CreateVersionUndoResponseTypedDict",
|
|
5554
5848
|
"CriblEvent",
|
|
5555
5849
|
"CriblEventTypedDict",
|
|
5850
|
+
"CriblLakeDataset",
|
|
5851
|
+
"CriblLakeDatasetFormat",
|
|
5852
|
+
"CriblLakeDatasetTypedDict",
|
|
5556
5853
|
"CustomLabel",
|
|
5557
5854
|
"CustomLabelTypedDict",
|
|
5558
5855
|
"DNS",
|
|
@@ -5572,6 +5869,14 @@ __all__ = [
|
|
|
5572
5869
|
"DataPageVersionSecurityLake",
|
|
5573
5870
|
"DataSetSite",
|
|
5574
5871
|
"DatadogSite",
|
|
5872
|
+
"DatasetMetadata",
|
|
5873
|
+
"DatasetMetadataRunInfo",
|
|
5874
|
+
"DatasetMetadataRunInfoTypedDict",
|
|
5875
|
+
"DatasetMetadataTypedDict",
|
|
5876
|
+
"DeleteCriblLakeDatasetByLakeIDAndIDRequest",
|
|
5877
|
+
"DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
|
|
5878
|
+
"DeleteCriblLakeDatasetByLakeIDAndIDResponse",
|
|
5879
|
+
"DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict",
|
|
5575
5880
|
"DeleteInputByIDRequest",
|
|
5576
5881
|
"DeleteInputByIDRequestTypedDict",
|
|
5577
5882
|
"DeleteInputByIDResponse",
|
|
@@ -5584,10 +5889,20 @@ __all__ = [
|
|
|
5584
5889
|
"DeleteOutputPqByIDRequestTypedDict",
|
|
5585
5890
|
"DeleteOutputPqByIDResponse",
|
|
5586
5891
|
"DeleteOutputPqByIDResponseTypedDict",
|
|
5892
|
+
"DeletePacksByIDRequest",
|
|
5893
|
+
"DeletePacksByIDRequestTypedDict",
|
|
5894
|
+
"DeletePacksByIDResponse",
|
|
5895
|
+
"DeletePacksByIDResponseTypedDict",
|
|
5587
5896
|
"DeletePipelineByIDRequest",
|
|
5588
5897
|
"DeletePipelineByIDRequestTypedDict",
|
|
5589
5898
|
"DeletePipelineByIDResponse",
|
|
5590
5899
|
"DeletePipelineByIDResponseTypedDict",
|
|
5900
|
+
"DeployRequest",
|
|
5901
|
+
"DeployRequestLookups",
|
|
5902
|
+
"DeployRequestLookupsLookup",
|
|
5903
|
+
"DeployRequestLookupsLookupTypedDict",
|
|
5904
|
+
"DeployRequestLookupsTypedDict",
|
|
5905
|
+
"DeployRequestTypedDict",
|
|
5591
5906
|
"DestinationProtocolGraphite",
|
|
5592
5907
|
"DestinationProtocolStatsd",
|
|
5593
5908
|
"DestinationProtocolStatsdExt",
|
|
@@ -5603,6 +5918,12 @@ __all__ = [
|
|
|
5603
5918
|
"DiskSpaceProtectionSecurityLake",
|
|
5604
5919
|
"DisksAndFileSystems",
|
|
5605
5920
|
"DisksAndFileSystemsTypedDict",
|
|
5921
|
+
"DistributedSummary",
|
|
5922
|
+
"DistributedSummaryGroups",
|
|
5923
|
+
"DistributedSummaryGroupsTypedDict",
|
|
5924
|
+
"DistributedSummaryTypedDict",
|
|
5925
|
+
"DistributedSummaryWorkers",
|
|
5926
|
+
"DistributedSummaryWorkersTypedDict",
|
|
5606
5927
|
"ElasticVersion",
|
|
5607
5928
|
"Endpoint",
|
|
5608
5929
|
"EndpointConfiguration",
|
|
@@ -5695,6 +6016,27 @@ __all__ = [
|
|
|
5695
6016
|
"FormatSentinel",
|
|
5696
6017
|
"FunctionSpecificConfigs",
|
|
5697
6018
|
"FunctionSpecificConfigsTypedDict",
|
|
6019
|
+
"GetCriblLakeDatasetByLakeIDAndIDRequest",
|
|
6020
|
+
"GetCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
|
|
6021
|
+
"GetCriblLakeDatasetByLakeIDAndIDResponse",
|
|
6022
|
+
"GetCriblLakeDatasetByLakeIDAndIDResponseTypedDict",
|
|
6023
|
+
"GetCriblLakeDatasetByLakeIDRequest",
|
|
6024
|
+
"GetCriblLakeDatasetByLakeIDRequestTypedDict",
|
|
6025
|
+
"GetCriblLakeDatasetByLakeIDResponse",
|
|
6026
|
+
"GetCriblLakeDatasetByLakeIDResponseTypedDict",
|
|
6027
|
+
"GetGroupsACLByIDRequest",
|
|
6028
|
+
"GetGroupsACLByIDRequestTypedDict",
|
|
6029
|
+
"GetGroupsACLByIDResponse",
|
|
6030
|
+
"GetGroupsACLByIDResponseTypedDict",
|
|
6031
|
+
"GetGroupsACLByIDType",
|
|
6032
|
+
"GetGroupsByIDRequest",
|
|
6033
|
+
"GetGroupsByIDRequestTypedDict",
|
|
6034
|
+
"GetGroupsByIDResponse",
|
|
6035
|
+
"GetGroupsByIDResponseTypedDict",
|
|
6036
|
+
"GetGroupsConfigVersionByIDRequest",
|
|
6037
|
+
"GetGroupsConfigVersionByIDRequestTypedDict",
|
|
6038
|
+
"GetGroupsConfigVersionByIDResponse",
|
|
6039
|
+
"GetGroupsConfigVersionByIDResponseTypedDict",
|
|
5698
6040
|
"GetInputByIDRequest",
|
|
5699
6041
|
"GetInputByIDRequestTypedDict",
|
|
5700
6042
|
"GetInputByIDResponse",
|
|
@@ -5711,14 +6053,38 @@ __all__ = [
|
|
|
5711
6053
|
"GetOutputSamplesByIDRequestTypedDict",
|
|
5712
6054
|
"GetOutputSamplesByIDResponse",
|
|
5713
6055
|
"GetOutputSamplesByIDResponseTypedDict",
|
|
6056
|
+
"GetPacksRequest",
|
|
6057
|
+
"GetPacksRequestTypedDict",
|
|
6058
|
+
"GetPacksResponse",
|
|
6059
|
+
"GetPacksResponseTypedDict",
|
|
5714
6060
|
"GetPipelineByIDRequest",
|
|
5715
6061
|
"GetPipelineByIDRequestTypedDict",
|
|
5716
6062
|
"GetPipelineByIDResponse",
|
|
5717
6063
|
"GetPipelineByIDResponseTypedDict",
|
|
6064
|
+
"GetProductsGroupsACLTeamsByProductAndIDProduct",
|
|
6065
|
+
"GetProductsGroupsACLTeamsByProductAndIDRequest",
|
|
6066
|
+
"GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict",
|
|
6067
|
+
"GetProductsGroupsACLTeamsByProductAndIDResponse",
|
|
6068
|
+
"GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict",
|
|
6069
|
+
"GetProductsGroupsACLTeamsByProductAndIDType",
|
|
6070
|
+
"GetProductsGroupsByProductProduct",
|
|
6071
|
+
"GetProductsGroupsByProductRequest",
|
|
6072
|
+
"GetProductsGroupsByProductRequestTypedDict",
|
|
6073
|
+
"GetProductsGroupsByProductResponse",
|
|
6074
|
+
"GetProductsGroupsByProductResponseTypedDict",
|
|
5718
6075
|
"GetRoutesByIDRequest",
|
|
5719
6076
|
"GetRoutesByIDRequestTypedDict",
|
|
5720
6077
|
"GetRoutesByIDResponse",
|
|
5721
6078
|
"GetRoutesByIDResponseTypedDict",
|
|
6079
|
+
"GetSummaryMode",
|
|
6080
|
+
"GetSummaryRequest",
|
|
6081
|
+
"GetSummaryRequestTypedDict",
|
|
6082
|
+
"GetSummaryResponse",
|
|
6083
|
+
"GetSummaryResponseTypedDict",
|
|
6084
|
+
"GetSummaryWorkersRequest",
|
|
6085
|
+
"GetSummaryWorkersRequestTypedDict",
|
|
6086
|
+
"GetSummaryWorkersResponse",
|
|
6087
|
+
"GetSummaryWorkersResponseTypedDict",
|
|
5722
6088
|
"GetVersionBranchResponse",
|
|
5723
6089
|
"GetVersionBranchResponseTypedDict",
|
|
5724
6090
|
"GetVersionCountRequest",
|
|
@@ -5745,6 +6111,11 @@ __all__ = [
|
|
|
5745
6111
|
"GetVersionStatusRequestTypedDict",
|
|
5746
6112
|
"GetVersionStatusResponse",
|
|
5747
6113
|
"GetVersionStatusResponseTypedDict",
|
|
6114
|
+
"GetWorkersRequest",
|
|
6115
|
+
"GetWorkersRequestTypedDict",
|
|
6116
|
+
"GetWorkersResponse",
|
|
6117
|
+
"GetWorkersResponseTypedDict",
|
|
6118
|
+
"Git",
|
|
5748
6119
|
"GitCommitParams",
|
|
5749
6120
|
"GitCommitParamsTypedDict",
|
|
5750
6121
|
"GitCommitSummary",
|
|
@@ -5765,12 +6136,32 @@ __all__ = [
|
|
|
5765
6136
|
"GitRevertResultTypedDict",
|
|
5766
6137
|
"GitStatusResult",
|
|
5767
6138
|
"GitStatusResultTypedDict",
|
|
6139
|
+
"GitTypedDict",
|
|
5768
6140
|
"GoogleAuthenticationMethodGoogleCloudLogging",
|
|
6141
|
+
"HBCriblInfo",
|
|
6142
|
+
"HBCriblInfoTypedDict",
|
|
6143
|
+
"HBLeaderInfo",
|
|
6144
|
+
"HBLeaderInfoTypedDict",
|
|
5769
6145
|
"HTTPCompressCompression131",
|
|
5770
6146
|
"HTTPCompressCompressionHTTP",
|
|
5771
6147
|
"HTTPCompressCompressionOpenTelemetry",
|
|
5772
6148
|
"HealthStatus",
|
|
6149
|
+
"HealthStatusStatus",
|
|
5773
6150
|
"HealthStatusTypedDict",
|
|
6151
|
+
"HeartbeatMetadata",
|
|
6152
|
+
"HeartbeatMetadataAws",
|
|
6153
|
+
"HeartbeatMetadataAwsTypedDict",
|
|
6154
|
+
"HeartbeatMetadataHostOs",
|
|
6155
|
+
"HeartbeatMetadataHostOsTypedDict",
|
|
6156
|
+
"HeartbeatMetadataKube",
|
|
6157
|
+
"HeartbeatMetadataKubeTypedDict",
|
|
6158
|
+
"HeartbeatMetadataOs",
|
|
6159
|
+
"HeartbeatMetadataOsTypedDict",
|
|
6160
|
+
"HeartbeatMetadataOwner",
|
|
6161
|
+
"HeartbeatMetadataOwnerTypedDict",
|
|
6162
|
+
"HeartbeatMetadataTags",
|
|
6163
|
+
"HeartbeatMetadataTagsTypedDict",
|
|
6164
|
+
"HeartbeatMetadataTypedDict",
|
|
5774
6165
|
"HostInfo",
|
|
5775
6166
|
"HostInfoTypedDict",
|
|
5776
6167
|
"HostNetflow",
|
|
@@ -6856,6 +7247,11 @@ __all__ = [
|
|
|
6856
7247
|
"KeyValueMetadatumS3TypedDict",
|
|
6857
7248
|
"KeyValueMetadatumSecurityLake",
|
|
6858
7249
|
"KeyValueMetadatumSecurityLakeTypedDict",
|
|
7250
|
+
"LakeDatasetSearchConfig",
|
|
7251
|
+
"LakeDatasetSearchConfigTypedDict",
|
|
7252
|
+
"LakehouseConnectionType",
|
|
7253
|
+
"LastMetrics",
|
|
7254
|
+
"LastMetricsTypedDict",
|
|
6859
7255
|
"ListInputResponse",
|
|
6860
7256
|
"ListInputResponseTypedDict",
|
|
6861
7257
|
"ListOutputResponse",
|
|
@@ -6886,9 +7282,16 @@ __all__ = [
|
|
|
6886
7282
|
"LokiAuthOauthParam1TypedDict",
|
|
6887
7283
|
"LokiAuthOauthParam2",
|
|
6888
7284
|
"LokiAuthOauthParam2TypedDict",
|
|
7285
|
+
"LookupVersions",
|
|
7286
|
+
"LookupVersionsTypedDict",
|
|
6889
7287
|
"MTLSSettings",
|
|
6890
7288
|
"MTLSSettingsTypedDict",
|
|
6891
7289
|
"MappingType",
|
|
7290
|
+
"MasterWorkerEntry",
|
|
7291
|
+
"MasterWorkerEntryType",
|
|
7292
|
+
"MasterWorkerEntryTypedDict",
|
|
7293
|
+
"MasterWorkerEntryWorkers",
|
|
7294
|
+
"MasterWorkerEntryWorkersTypedDict",
|
|
6892
7295
|
"MaxS2SVersionSplunkLb",
|
|
6893
7296
|
"MaximumTLSVersion131",
|
|
6894
7297
|
"MaximumTLSVersionClickHouse",
|
|
@@ -7074,6 +7477,28 @@ __all__ = [
|
|
|
7074
7477
|
"ModeZscalerHec",
|
|
7075
7478
|
"NestedFieldSerializationSplunk",
|
|
7076
7479
|
"NestedFieldSerializationSplunkLb",
|
|
7480
|
+
"NodeActiveUpgradeStatus",
|
|
7481
|
+
"NodeFailedUpgradeStatus",
|
|
7482
|
+
"NodeProvidedInfo",
|
|
7483
|
+
"NodeProvidedInfoAws",
|
|
7484
|
+
"NodeProvidedInfoAwsTypedDict",
|
|
7485
|
+
"NodeProvidedInfoHostOs",
|
|
7486
|
+
"NodeProvidedInfoHostOsTypedDict",
|
|
7487
|
+
"NodeProvidedInfoKube",
|
|
7488
|
+
"NodeProvidedInfoKubeTypedDict",
|
|
7489
|
+
"NodeProvidedInfoOs1",
|
|
7490
|
+
"NodeProvidedInfoOs1TypedDict",
|
|
7491
|
+
"NodeProvidedInfoOs2",
|
|
7492
|
+
"NodeProvidedInfoOs2TypedDict",
|
|
7493
|
+
"NodeProvidedInfoOwner",
|
|
7494
|
+
"NodeProvidedInfoOwnerTypedDict",
|
|
7495
|
+
"NodeProvidedInfoTags",
|
|
7496
|
+
"NodeProvidedInfoTagsTypedDict",
|
|
7497
|
+
"NodeProvidedInfoTypedDict",
|
|
7498
|
+
"NodeSkippedUpgradeStatus",
|
|
7499
|
+
"NodeUpgradeState",
|
|
7500
|
+
"NodeUpgradeStatus",
|
|
7501
|
+
"NodeUpgradeStatusTypedDict",
|
|
7077
7502
|
"OTLPVersionHTTP",
|
|
7078
7503
|
"OauthHeaderClickHouse",
|
|
7079
7504
|
"OauthHeaderClickHouseTypedDict",
|
|
@@ -7104,6 +7529,8 @@ __all__ = [
|
|
|
7104
7529
|
"ObjectACLGoogleCloudStorage",
|
|
7105
7530
|
"ObjectACLS3",
|
|
7106
7531
|
"ObjectACLSecurityLake",
|
|
7532
|
+
"Os",
|
|
7533
|
+
"OsTypedDict",
|
|
7107
7534
|
"Output",
|
|
7108
7535
|
"OutputAzureBlob",
|
|
7109
7536
|
"OutputAzureBlobAuthenticationMethod",
|
|
@@ -8192,6 +8619,18 @@ __all__ = [
|
|
|
8192
8619
|
"OutputXsiamTypedDict",
|
|
8193
8620
|
"OutputXsiamURL",
|
|
8194
8621
|
"OutputXsiamURLTypedDict",
|
|
8622
|
+
"PackInfo",
|
|
8623
|
+
"PackInfoTags",
|
|
8624
|
+
"PackInfoTagsTypedDict",
|
|
8625
|
+
"PackInfoTypedDict",
|
|
8626
|
+
"PackInstallInfo",
|
|
8627
|
+
"PackInstallInfoTags",
|
|
8628
|
+
"PackInstallInfoTagsTypedDict",
|
|
8629
|
+
"PackInstallInfoTypedDict",
|
|
8630
|
+
"PackRequestBody",
|
|
8631
|
+
"PackRequestBodyTags",
|
|
8632
|
+
"PackRequestBodyTagsTypedDict",
|
|
8633
|
+
"PackRequestBodyTypedDict",
|
|
8195
8634
|
"ParquetVersionAzureBlob",
|
|
8196
8635
|
"ParquetVersionDlS3",
|
|
8197
8636
|
"ParquetVersionFilesystem",
|
|
@@ -8443,6 +8882,7 @@ __all__ = [
|
|
|
8443
8882
|
"QueueFullBehaviorStatsdExt",
|
|
8444
8883
|
"QueueFullBehaviorSumoLogic",
|
|
8445
8884
|
"QueueFullBehaviorWavefront",
|
|
8885
|
+
"RbacResource",
|
|
8446
8886
|
"ReadMode",
|
|
8447
8887
|
"RecordDataFormatAzureEventhub",
|
|
8448
8888
|
"RecordDataFormatConfluentCloud",
|
|
@@ -8460,6 +8900,8 @@ __all__ = [
|
|
|
8460
8900
|
"ReportMethod",
|
|
8461
8901
|
"RequestFormatCrowdstrikeNextGenSiem",
|
|
8462
8902
|
"RequestFormatHumioHec",
|
|
8903
|
+
"ResourcePolicy",
|
|
8904
|
+
"ResourcePolicyTypedDict",
|
|
8463
8905
|
"ResourceTypeLabel",
|
|
8464
8906
|
"ResourceTypeLabelTypedDict",
|
|
8465
8907
|
"ResponseRetrySetting131",
|
|
@@ -8506,6 +8948,9 @@ __all__ = [
|
|
|
8506
8948
|
"ResponseRetrySettingSumoLogicTypedDict",
|
|
8507
8949
|
"ResponseRetrySettingWavefront",
|
|
8508
8950
|
"ResponseRetrySettingWavefrontTypedDict",
|
|
8951
|
+
"RestartResponse",
|
|
8952
|
+
"RestartResponseStatus",
|
|
8953
|
+
"RestartResponseTypedDict",
|
|
8509
8954
|
"RetryRulesOffice365Mgmt",
|
|
8510
8955
|
"RetryRulesOffice365MgmtTypedDict",
|
|
8511
8956
|
"RetryRulesOffice365MsgTrace",
|
|
@@ -8542,6 +8987,7 @@ __all__ = [
|
|
|
8542
8987
|
"SNMPv3AuthenticationTypedDict",
|
|
8543
8988
|
"Sample",
|
|
8544
8989
|
"SampleTypedDict",
|
|
8990
|
+
"ScanMode",
|
|
8545
8991
|
"ScheduleType",
|
|
8546
8992
|
"SchemeClientOauth",
|
|
8547
8993
|
"SchemeClientOauthTypedDict",
|
|
@@ -8570,7 +9016,6 @@ __all__ = [
|
|
|
8570
9016
|
"SignatureVersionPrometheus",
|
|
8571
9017
|
"SignatureVersionS3Inventory",
|
|
8572
9018
|
"SignatureVersionSns",
|
|
8573
|
-
"Status",
|
|
8574
9019
|
"StorageClassDlS3",
|
|
8575
9020
|
"StorageClassExabeam",
|
|
8576
9021
|
"StorageClassGoogleCloudStorage",
|
|
@@ -8641,6 +9086,8 @@ __all__ = [
|
|
|
8641
9086
|
"Target",
|
|
8642
9087
|
"TargetProtocolEdgePrometheus",
|
|
8643
9088
|
"TargetTypedDict",
|
|
9089
|
+
"TeamAccessControlList",
|
|
9090
|
+
"TeamAccessControlListTypedDict",
|
|
8644
9091
|
"TelemetryType",
|
|
8645
9092
|
"TimeoutRetrySettings131",
|
|
8646
9093
|
"TimeoutRetrySettings131TypedDict",
|
|
@@ -8690,6 +9137,14 @@ __all__ = [
|
|
|
8690
9137
|
"TimestampPrecision",
|
|
8691
9138
|
"Type131",
|
|
8692
9139
|
"TypeHTTPDynatraceOtlp",
|
|
9140
|
+
"UpdateCriblLakeDatasetByLakeIDAndIDRequest",
|
|
9141
|
+
"UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
|
|
9142
|
+
"UpdateCriblLakeDatasetByLakeIDAndIDResponse",
|
|
9143
|
+
"UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict",
|
|
9144
|
+
"UpdateGroupsDeployByIDRequest",
|
|
9145
|
+
"UpdateGroupsDeployByIDRequestTypedDict",
|
|
9146
|
+
"UpdateGroupsDeployByIDResponse",
|
|
9147
|
+
"UpdateGroupsDeployByIDResponseTypedDict",
|
|
8693
9148
|
"UpdateHecTokenRequest",
|
|
8694
9149
|
"UpdateHecTokenRequestMetadatum",
|
|
8695
9150
|
"UpdateHecTokenRequestMetadatumTypedDict",
|
|
@@ -8706,6 +9161,14 @@ __all__ = [
|
|
|
8706
9161
|
"UpdateOutputByIDRequestTypedDict",
|
|
8707
9162
|
"UpdateOutputByIDResponse",
|
|
8708
9163
|
"UpdateOutputByIDResponseTypedDict",
|
|
9164
|
+
"UpdatePacksByIDRequest",
|
|
9165
|
+
"UpdatePacksByIDRequestTypedDict",
|
|
9166
|
+
"UpdatePacksByIDResponse",
|
|
9167
|
+
"UpdatePacksByIDResponseTypedDict",
|
|
9168
|
+
"UpdatePacksRequest",
|
|
9169
|
+
"UpdatePacksRequestTypedDict",
|
|
9170
|
+
"UpdatePacksResponse",
|
|
9171
|
+
"UpdatePacksResponseTypedDict",
|
|
8709
9172
|
"UpdatePipelineByIDRequest",
|
|
8710
9173
|
"UpdatePipelineByIDRequestTypedDict",
|
|
8711
9174
|
"UpdatePipelineByIDResponse",
|
|
@@ -8714,6 +9177,10 @@ __all__ = [
|
|
|
8714
9177
|
"UpdateRoutesByIDRequestTypedDict",
|
|
8715
9178
|
"UpdateRoutesByIDResponse",
|
|
8716
9179
|
"UpdateRoutesByIDResponseTypedDict",
|
|
9180
|
+
"UpdateWorkersRestartResponse",
|
|
9181
|
+
"UpdateWorkersRestartResponseTypedDict",
|
|
9182
|
+
"UserAccessControlList",
|
|
9183
|
+
"UserAccessControlListTypedDict",
|
|
8717
9184
|
"UsersAndGroups",
|
|
8718
9185
|
"UsersAndGroupsTypedDict",
|
|
8719
9186
|
"V3User",
|
|
@@ -8726,8 +9193,30 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8726
9193
|
"AddHecTokenRequestMetadatum": ".addhectokenrequest",
|
|
8727
9194
|
"AddHecTokenRequestMetadatumTypedDict": ".addhectokenrequest",
|
|
8728
9195
|
"AddHecTokenRequestTypedDict": ".addhectokenrequest",
|
|
9196
|
+
"AppMode": ".appmode",
|
|
8729
9197
|
"AuthToken": ".authtoken",
|
|
8730
9198
|
"AuthTokenTypedDict": ".authtoken",
|
|
9199
|
+
"CacheConnection": ".cacheconnection",
|
|
9200
|
+
"CacheConnectionTypedDict": ".cacheconnection",
|
|
9201
|
+
"CacheConnectionBackfillStatus": ".cacheconnectionbackfillstatus",
|
|
9202
|
+
"CloudProvider": ".cloudprovider",
|
|
9203
|
+
"Commit": ".commit",
|
|
9204
|
+
"CommitTypedDict": ".commit",
|
|
9205
|
+
"ConfigGroup": ".configgroup",
|
|
9206
|
+
"ConfigGroupType": ".configgroup",
|
|
9207
|
+
"ConfigGroupTypedDict": ".configgroup",
|
|
9208
|
+
"Git": ".configgroup",
|
|
9209
|
+
"GitTypedDict": ".configgroup",
|
|
9210
|
+
"ConfigGroupCloud": ".configgroupcloud",
|
|
9211
|
+
"ConfigGroupCloudTypedDict": ".configgroupcloud",
|
|
9212
|
+
"ConfigGroupLookups": ".configgrouplookups",
|
|
9213
|
+
"ConfigGroupLookupsLookup": ".configgrouplookups",
|
|
9214
|
+
"ConfigGroupLookupsLookupTypedDict": ".configgrouplookups",
|
|
9215
|
+
"ConfigGroupLookupsTypedDict": ".configgrouplookups",
|
|
9216
|
+
"CreateCriblLakeDatasetByLakeIDRequest": ".createcribllakedatasetbylakeidop",
|
|
9217
|
+
"CreateCriblLakeDatasetByLakeIDRequestTypedDict": ".createcribllakedatasetbylakeidop",
|
|
9218
|
+
"CreateCriblLakeDatasetByLakeIDResponse": ".createcribllakedatasetbylakeidop",
|
|
9219
|
+
"CreateCriblLakeDatasetByLakeIDResponseTypedDict": ".createcribllakedatasetbylakeidop",
|
|
8731
9220
|
"CreateInputHecTokenByIDRequest": ".createinputhectokenbyidop",
|
|
8732
9221
|
"CreateInputHecTokenByIDRequestTypedDict": ".createinputhectokenbyidop",
|
|
8733
9222
|
"CreateInputHecTokenByIDResponse": ".createinputhectokenbyidop",
|
|
@@ -10482,8 +10971,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10482
10971
|
"CreateOutputTestByIDRequestTypedDict": ".createoutputtestbyidop",
|
|
10483
10972
|
"CreateOutputTestByIDResponse": ".createoutputtestbyidop",
|
|
10484
10973
|
"CreateOutputTestByIDResponseTypedDict": ".createoutputtestbyidop",
|
|
10974
|
+
"CreatePacksResponse": ".createpacksop",
|
|
10975
|
+
"CreatePacksResponseTypedDict": ".createpacksop",
|
|
10485
10976
|
"CreatePipelineResponse": ".createpipelineop",
|
|
10486
10977
|
"CreatePipelineResponseTypedDict": ".createpipelineop",
|
|
10978
|
+
"CreateProductsGroupsByProductProduct": ".createproductsgroupsbyproductop",
|
|
10979
|
+
"CreateProductsGroupsByProductRequest": ".createproductsgroupsbyproductop",
|
|
10980
|
+
"CreateProductsGroupsByProductRequestTypedDict": ".createproductsgroupsbyproductop",
|
|
10981
|
+
"CreateProductsGroupsByProductResponse": ".createproductsgroupsbyproductop",
|
|
10982
|
+
"CreateProductsGroupsByProductResponseTypedDict": ".createproductsgroupsbyproductop",
|
|
10487
10983
|
"CreateRoutesAppendByIDRequest": ".createroutesappendbyidop",
|
|
10488
10984
|
"CreateRoutesAppendByIDRequestTypedDict": ".createroutesappendbyidop",
|
|
10489
10985
|
"CreateRoutesAppendByIDResponse": ".createroutesappendbyidop",
|
|
@@ -10504,6 +11000,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10504
11000
|
"CreateVersionUndoResponseTypedDict": ".createversionundoop",
|
|
10505
11001
|
"CriblEvent": ".criblevent",
|
|
10506
11002
|
"CriblEventTypedDict": ".criblevent",
|
|
11003
|
+
"CriblLakeDataset": ".cribllakedataset",
|
|
11004
|
+
"CriblLakeDatasetFormat": ".cribllakedataset",
|
|
11005
|
+
"CriblLakeDatasetTypedDict": ".cribllakedataset",
|
|
11006
|
+
"DatasetMetadata": ".datasetmetadata",
|
|
11007
|
+
"DatasetMetadataTypedDict": ".datasetmetadata",
|
|
11008
|
+
"ScanMode": ".datasetmetadata",
|
|
11009
|
+
"DatasetMetadataRunInfo": ".datasetmetadataruninfo",
|
|
11010
|
+
"DatasetMetadataRunInfoTypedDict": ".datasetmetadataruninfo",
|
|
11011
|
+
"DeleteCriblLakeDatasetByLakeIDAndIDRequest": ".deletecribllakedatasetbylakeidandidop",
|
|
11012
|
+
"DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".deletecribllakedatasetbylakeidandidop",
|
|
11013
|
+
"DeleteCriblLakeDatasetByLakeIDAndIDResponse": ".deletecribllakedatasetbylakeidandidop",
|
|
11014
|
+
"DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict": ".deletecribllakedatasetbylakeidandidop",
|
|
10507
11015
|
"DeleteInputByIDRequest": ".deleteinputbyidop",
|
|
10508
11016
|
"DeleteInputByIDRequestTypedDict": ".deleteinputbyidop",
|
|
10509
11017
|
"DeleteInputByIDResponse": ".deleteinputbyidop",
|
|
@@ -10516,10 +11024,47 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10516
11024
|
"DeleteOutputPqByIDRequestTypedDict": ".deleteoutputpqbyidop",
|
|
10517
11025
|
"DeleteOutputPqByIDResponse": ".deleteoutputpqbyidop",
|
|
10518
11026
|
"DeleteOutputPqByIDResponseTypedDict": ".deleteoutputpqbyidop",
|
|
11027
|
+
"DeletePacksByIDRequest": ".deletepacksbyidop",
|
|
11028
|
+
"DeletePacksByIDRequestTypedDict": ".deletepacksbyidop",
|
|
11029
|
+
"DeletePacksByIDResponse": ".deletepacksbyidop",
|
|
11030
|
+
"DeletePacksByIDResponseTypedDict": ".deletepacksbyidop",
|
|
10519
11031
|
"DeletePipelineByIDRequest": ".deletepipelinebyidop",
|
|
10520
11032
|
"DeletePipelineByIDRequestTypedDict": ".deletepipelinebyidop",
|
|
10521
11033
|
"DeletePipelineByIDResponse": ".deletepipelinebyidop",
|
|
10522
11034
|
"DeletePipelineByIDResponseTypedDict": ".deletepipelinebyidop",
|
|
11035
|
+
"DeployRequest": ".deployrequest",
|
|
11036
|
+
"DeployRequestTypedDict": ".deployrequest",
|
|
11037
|
+
"DeployRequestLookups": ".deployrequestlookups",
|
|
11038
|
+
"DeployRequestLookupsLookup": ".deployrequestlookups",
|
|
11039
|
+
"DeployRequestLookupsLookupTypedDict": ".deployrequestlookups",
|
|
11040
|
+
"DeployRequestLookupsTypedDict": ".deployrequestlookups",
|
|
11041
|
+
"DistributedSummary": ".distributedsummary",
|
|
11042
|
+
"DistributedSummaryGroups": ".distributedsummary",
|
|
11043
|
+
"DistributedSummaryGroupsTypedDict": ".distributedsummary",
|
|
11044
|
+
"DistributedSummaryTypedDict": ".distributedsummary",
|
|
11045
|
+
"DistributedSummaryWorkers": ".distributedsummary",
|
|
11046
|
+
"DistributedSummaryWorkersTypedDict": ".distributedsummary",
|
|
11047
|
+
"GetCriblLakeDatasetByLakeIDAndIDRequest": ".getcribllakedatasetbylakeidandidop",
|
|
11048
|
+
"GetCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".getcribllakedatasetbylakeidandidop",
|
|
11049
|
+
"GetCriblLakeDatasetByLakeIDAndIDResponse": ".getcribllakedatasetbylakeidandidop",
|
|
11050
|
+
"GetCriblLakeDatasetByLakeIDAndIDResponseTypedDict": ".getcribllakedatasetbylakeidandidop",
|
|
11051
|
+
"GetCriblLakeDatasetByLakeIDRequest": ".getcribllakedatasetbylakeidop",
|
|
11052
|
+
"GetCriblLakeDatasetByLakeIDRequestTypedDict": ".getcribllakedatasetbylakeidop",
|
|
11053
|
+
"GetCriblLakeDatasetByLakeIDResponse": ".getcribllakedatasetbylakeidop",
|
|
11054
|
+
"GetCriblLakeDatasetByLakeIDResponseTypedDict": ".getcribllakedatasetbylakeidop",
|
|
11055
|
+
"GetGroupsACLByIDRequest": ".getgroupsaclbyidop",
|
|
11056
|
+
"GetGroupsACLByIDRequestTypedDict": ".getgroupsaclbyidop",
|
|
11057
|
+
"GetGroupsACLByIDResponse": ".getgroupsaclbyidop",
|
|
11058
|
+
"GetGroupsACLByIDResponseTypedDict": ".getgroupsaclbyidop",
|
|
11059
|
+
"GetGroupsACLByIDType": ".getgroupsaclbyidop",
|
|
11060
|
+
"GetGroupsByIDRequest": ".getgroupsbyidop",
|
|
11061
|
+
"GetGroupsByIDRequestTypedDict": ".getgroupsbyidop",
|
|
11062
|
+
"GetGroupsByIDResponse": ".getgroupsbyidop",
|
|
11063
|
+
"GetGroupsByIDResponseTypedDict": ".getgroupsbyidop",
|
|
11064
|
+
"GetGroupsConfigVersionByIDRequest": ".getgroupsconfigversionbyidop",
|
|
11065
|
+
"GetGroupsConfigVersionByIDRequestTypedDict": ".getgroupsconfigversionbyidop",
|
|
11066
|
+
"GetGroupsConfigVersionByIDResponse": ".getgroupsconfigversionbyidop",
|
|
11067
|
+
"GetGroupsConfigVersionByIDResponseTypedDict": ".getgroupsconfigversionbyidop",
|
|
10523
11068
|
"GetInputByIDRequest": ".getinputbyidop",
|
|
10524
11069
|
"GetInputByIDRequestTypedDict": ".getinputbyidop",
|
|
10525
11070
|
"GetInputByIDResponse": ".getinputbyidop",
|
|
@@ -10536,14 +11081,38 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10536
11081
|
"GetOutputSamplesByIDRequestTypedDict": ".getoutputsamplesbyidop",
|
|
10537
11082
|
"GetOutputSamplesByIDResponse": ".getoutputsamplesbyidop",
|
|
10538
11083
|
"GetOutputSamplesByIDResponseTypedDict": ".getoutputsamplesbyidop",
|
|
11084
|
+
"GetPacksRequest": ".getpacksop",
|
|
11085
|
+
"GetPacksRequestTypedDict": ".getpacksop",
|
|
11086
|
+
"GetPacksResponse": ".getpacksop",
|
|
11087
|
+
"GetPacksResponseTypedDict": ".getpacksop",
|
|
10539
11088
|
"GetPipelineByIDRequest": ".getpipelinebyidop",
|
|
10540
11089
|
"GetPipelineByIDRequestTypedDict": ".getpipelinebyidop",
|
|
10541
11090
|
"GetPipelineByIDResponse": ".getpipelinebyidop",
|
|
10542
11091
|
"GetPipelineByIDResponseTypedDict": ".getpipelinebyidop",
|
|
11092
|
+
"GetProductsGroupsACLTeamsByProductAndIDProduct": ".getproductsgroupsaclteamsbyproductandidop",
|
|
11093
|
+
"GetProductsGroupsACLTeamsByProductAndIDRequest": ".getproductsgroupsaclteamsbyproductandidop",
|
|
11094
|
+
"GetProductsGroupsACLTeamsByProductAndIDRequestTypedDict": ".getproductsgroupsaclteamsbyproductandidop",
|
|
11095
|
+
"GetProductsGroupsACLTeamsByProductAndIDResponse": ".getproductsgroupsaclteamsbyproductandidop",
|
|
11096
|
+
"GetProductsGroupsACLTeamsByProductAndIDResponseTypedDict": ".getproductsgroupsaclteamsbyproductandidop",
|
|
11097
|
+
"GetProductsGroupsACLTeamsByProductAndIDType": ".getproductsgroupsaclteamsbyproductandidop",
|
|
11098
|
+
"GetProductsGroupsByProductProduct": ".getproductsgroupsbyproductop",
|
|
11099
|
+
"GetProductsGroupsByProductRequest": ".getproductsgroupsbyproductop",
|
|
11100
|
+
"GetProductsGroupsByProductRequestTypedDict": ".getproductsgroupsbyproductop",
|
|
11101
|
+
"GetProductsGroupsByProductResponse": ".getproductsgroupsbyproductop",
|
|
11102
|
+
"GetProductsGroupsByProductResponseTypedDict": ".getproductsgroupsbyproductop",
|
|
10543
11103
|
"GetRoutesByIDRequest": ".getroutesbyidop",
|
|
10544
11104
|
"GetRoutesByIDRequestTypedDict": ".getroutesbyidop",
|
|
10545
11105
|
"GetRoutesByIDResponse": ".getroutesbyidop",
|
|
10546
11106
|
"GetRoutesByIDResponseTypedDict": ".getroutesbyidop",
|
|
11107
|
+
"GetSummaryMode": ".getsummaryop",
|
|
11108
|
+
"GetSummaryRequest": ".getsummaryop",
|
|
11109
|
+
"GetSummaryRequestTypedDict": ".getsummaryop",
|
|
11110
|
+
"GetSummaryResponse": ".getsummaryop",
|
|
11111
|
+
"GetSummaryResponseTypedDict": ".getsummaryop",
|
|
11112
|
+
"GetSummaryWorkersRequest": ".getsummaryworkersop",
|
|
11113
|
+
"GetSummaryWorkersRequestTypedDict": ".getsummaryworkersop",
|
|
11114
|
+
"GetSummaryWorkersResponse": ".getsummaryworkersop",
|
|
11115
|
+
"GetSummaryWorkersResponseTypedDict": ".getsummaryworkersop",
|
|
10547
11116
|
"GetVersionBranchResponse": ".getversionbranchop",
|
|
10548
11117
|
"GetVersionBranchResponseTypedDict": ".getversionbranchop",
|
|
10549
11118
|
"GetVersionCountRequest": ".getversioncountop",
|
|
@@ -10570,6 +11139,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10570
11139
|
"GetVersionStatusRequestTypedDict": ".getversionstatusop",
|
|
10571
11140
|
"GetVersionStatusResponse": ".getversionstatusop",
|
|
10572
11141
|
"GetVersionStatusResponseTypedDict": ".getversionstatusop",
|
|
11142
|
+
"GetWorkersRequest": ".getworkersop",
|
|
11143
|
+
"GetWorkersRequestTypedDict": ".getworkersop",
|
|
11144
|
+
"GetWorkersResponse": ".getworkersop",
|
|
11145
|
+
"GetWorkersResponseTypedDict": ".getworkersop",
|
|
10573
11146
|
"GitCommitParams": ".gitcommitparams",
|
|
10574
11147
|
"GitCommitParamsTypedDict": ".gitcommitparams",
|
|
10575
11148
|
"Author": ".gitcommitsummary",
|
|
@@ -10602,10 +11175,30 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10602
11175
|
"GitStatusResultTypedDict": ".gitstatusresult",
|
|
10603
11176
|
"Renamed": ".gitstatusresult",
|
|
10604
11177
|
"RenamedTypedDict": ".gitstatusresult",
|
|
11178
|
+
"Config": ".hbcriblinfo",
|
|
11179
|
+
"ConfigTypedDict": ".hbcriblinfo",
|
|
11180
|
+
"HBCriblInfo": ".hbcriblinfo",
|
|
11181
|
+
"HBCriblInfoTypedDict": ".hbcriblinfo",
|
|
11182
|
+
"HBLeaderInfo": ".hbleaderinfo",
|
|
11183
|
+
"HBLeaderInfoTypedDict": ".hbleaderinfo",
|
|
10605
11184
|
"HealthStatus": ".healthstatus",
|
|
11185
|
+
"HealthStatusStatus": ".healthstatus",
|
|
10606
11186
|
"HealthStatusTypedDict": ".healthstatus",
|
|
10607
11187
|
"Role": ".healthstatus",
|
|
10608
|
-
"
|
|
11188
|
+
"HeartbeatMetadata": ".heartbeatmetadata",
|
|
11189
|
+
"HeartbeatMetadataAws": ".heartbeatmetadata",
|
|
11190
|
+
"HeartbeatMetadataAwsTypedDict": ".heartbeatmetadata",
|
|
11191
|
+
"HeartbeatMetadataHostOs": ".heartbeatmetadata",
|
|
11192
|
+
"HeartbeatMetadataHostOsTypedDict": ".heartbeatmetadata",
|
|
11193
|
+
"HeartbeatMetadataKube": ".heartbeatmetadata",
|
|
11194
|
+
"HeartbeatMetadataKubeTypedDict": ".heartbeatmetadata",
|
|
11195
|
+
"HeartbeatMetadataOs": ".heartbeatmetadata",
|
|
11196
|
+
"HeartbeatMetadataOsTypedDict": ".heartbeatmetadata",
|
|
11197
|
+
"HeartbeatMetadataOwner": ".heartbeatmetadata",
|
|
11198
|
+
"HeartbeatMetadataOwnerTypedDict": ".heartbeatmetadata",
|
|
11199
|
+
"HeartbeatMetadataTags": ".heartbeatmetadata",
|
|
11200
|
+
"HeartbeatMetadataTagsTypedDict": ".heartbeatmetadata",
|
|
11201
|
+
"HeartbeatMetadataTypedDict": ".heartbeatmetadata",
|
|
10609
11202
|
"Input": ".input",
|
|
10610
11203
|
"InputTypedDict": ".input",
|
|
10611
11204
|
"Allow": ".inputappscope",
|
|
@@ -11733,6 +12326,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
11733
12326
|
"InputZscalerHecTLSSettingsServerSideTypedDict": ".inputzscalerhec",
|
|
11734
12327
|
"InputZscalerHecType": ".inputzscalerhec",
|
|
11735
12328
|
"InputZscalerHecTypedDict": ".inputzscalerhec",
|
|
12329
|
+
"LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
|
|
12330
|
+
"LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
|
|
12331
|
+
"LakehouseConnectionType": ".lakehouseconnectiontype",
|
|
11736
12332
|
"ListInputResponse": ".listinputop",
|
|
11737
12333
|
"ListInputResponseTypedDict": ".listinputop",
|
|
11738
12334
|
"ListOutputResponse": ".listoutputop",
|
|
@@ -11743,6 +12339,39 @@ _dynamic_imports: dict[str, str] = {
|
|
|
11743
12339
|
"ListRoutesResponseTypedDict": ".listroutesop",
|
|
11744
12340
|
"LoginInfo": ".logininfo",
|
|
11745
12341
|
"LoginInfoTypedDict": ".logininfo",
|
|
12342
|
+
"LookupVersions": ".lookupversions",
|
|
12343
|
+
"LookupVersionsTypedDict": ".lookupversions",
|
|
12344
|
+
"LastMetrics": ".masterworkerentry",
|
|
12345
|
+
"LastMetricsTypedDict": ".masterworkerentry",
|
|
12346
|
+
"MasterWorkerEntry": ".masterworkerentry",
|
|
12347
|
+
"MasterWorkerEntryType": ".masterworkerentry",
|
|
12348
|
+
"MasterWorkerEntryTypedDict": ".masterworkerentry",
|
|
12349
|
+
"MasterWorkerEntryWorkers": ".masterworkerentry",
|
|
12350
|
+
"MasterWorkerEntryWorkersTypedDict": ".masterworkerentry",
|
|
12351
|
+
"NodeActiveUpgradeStatus": ".nodeactiveupgradestatus",
|
|
12352
|
+
"NodeFailedUpgradeStatus": ".nodefailedupgradestatus",
|
|
12353
|
+
"NodeProvidedInfo": ".nodeprovidedinfo",
|
|
12354
|
+
"NodeProvidedInfoAws": ".nodeprovidedinfo",
|
|
12355
|
+
"NodeProvidedInfoAwsTypedDict": ".nodeprovidedinfo",
|
|
12356
|
+
"NodeProvidedInfoHostOs": ".nodeprovidedinfo",
|
|
12357
|
+
"NodeProvidedInfoHostOsTypedDict": ".nodeprovidedinfo",
|
|
12358
|
+
"NodeProvidedInfoKube": ".nodeprovidedinfo",
|
|
12359
|
+
"NodeProvidedInfoKubeTypedDict": ".nodeprovidedinfo",
|
|
12360
|
+
"NodeProvidedInfoOs1": ".nodeprovidedinfo",
|
|
12361
|
+
"NodeProvidedInfoOs1TypedDict": ".nodeprovidedinfo",
|
|
12362
|
+
"NodeProvidedInfoOs2": ".nodeprovidedinfo",
|
|
12363
|
+
"NodeProvidedInfoOs2TypedDict": ".nodeprovidedinfo",
|
|
12364
|
+
"NodeProvidedInfoOwner": ".nodeprovidedinfo",
|
|
12365
|
+
"NodeProvidedInfoOwnerTypedDict": ".nodeprovidedinfo",
|
|
12366
|
+
"NodeProvidedInfoTags": ".nodeprovidedinfo",
|
|
12367
|
+
"NodeProvidedInfoTagsTypedDict": ".nodeprovidedinfo",
|
|
12368
|
+
"NodeProvidedInfoTypedDict": ".nodeprovidedinfo",
|
|
12369
|
+
"Os": ".nodeprovidedinfo",
|
|
12370
|
+
"OsTypedDict": ".nodeprovidedinfo",
|
|
12371
|
+
"NodeSkippedUpgradeStatus": ".nodeskippedupgradestatus",
|
|
12372
|
+
"NodeUpgradeState": ".nodeupgradestate",
|
|
12373
|
+
"NodeUpgradeStatus": ".nodeupgradestatus",
|
|
12374
|
+
"NodeUpgradeStatusTypedDict": ".nodeupgradestatus",
|
|
11746
12375
|
"Output": ".output",
|
|
11747
12376
|
"OutputTypedDict": ".output",
|
|
11748
12377
|
"BlobAccessTier": ".outputazureblob",
|
|
@@ -12877,6 +13506,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
12877
13506
|
"OutputXsiamTypedDict": ".outputxsiam",
|
|
12878
13507
|
"OutputXsiamURL": ".outputxsiam",
|
|
12879
13508
|
"OutputXsiamURLTypedDict": ".outputxsiam",
|
|
13509
|
+
"PackInfo": ".packinfo",
|
|
13510
|
+
"PackInfoTags": ".packinfo",
|
|
13511
|
+
"PackInfoTagsTypedDict": ".packinfo",
|
|
13512
|
+
"PackInfoTypedDict": ".packinfo",
|
|
13513
|
+
"PackInstallInfo": ".packinstallinfo",
|
|
13514
|
+
"PackInstallInfoTags": ".packinstallinfo",
|
|
13515
|
+
"PackInstallInfoTagsTypedDict": ".packinstallinfo",
|
|
13516
|
+
"PackInstallInfoTypedDict": ".packinstallinfo",
|
|
13517
|
+
"PackRequestBody": ".packrequestbody",
|
|
13518
|
+
"PackRequestBodyTags": ".packrequestbody",
|
|
13519
|
+
"PackRequestBodyTagsTypedDict": ".packrequestbody",
|
|
13520
|
+
"PackRequestBodyTypedDict": ".packrequestbody",
|
|
12880
13521
|
"Conf": ".pipeline",
|
|
12881
13522
|
"ConfTypedDict": ".pipeline",
|
|
12882
13523
|
"Pipeline": ".pipeline",
|
|
@@ -12887,6 +13528,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
12887
13528
|
"FunctionSpecificConfigsTypedDict": ".pipelinefunctionconf",
|
|
12888
13529
|
"PipelineFunctionConf": ".pipelinefunctionconf",
|
|
12889
13530
|
"PipelineFunctionConfTypedDict": ".pipelinefunctionconf",
|
|
13531
|
+
"RbacResource": ".rbacresource",
|
|
13532
|
+
"ResourcePolicy": ".resourcepolicy",
|
|
13533
|
+
"ResourcePolicyTypedDict": ".resourcepolicy",
|
|
13534
|
+
"RestartResponse": ".restartresponse",
|
|
13535
|
+
"RestartResponseStatus": ".restartresponse",
|
|
13536
|
+
"RestartResponseTypedDict": ".restartresponse",
|
|
12890
13537
|
"RouteCloneConf": ".routecloneconf",
|
|
12891
13538
|
"RouteCloneConfTypedDict": ".routecloneconf",
|
|
12892
13539
|
"RouteConf": ".routeconf",
|
|
@@ -12907,6 +13554,16 @@ _dynamic_imports: dict[str, str] = {
|
|
|
12907
13554
|
"SchemeClientOauthTypedDict": ".schemeclientoauth",
|
|
12908
13555
|
"Security": ".security",
|
|
12909
13556
|
"SecurityTypedDict": ".security",
|
|
13557
|
+
"TeamAccessControlList": ".teamaccesscontrollist",
|
|
13558
|
+
"TeamAccessControlListTypedDict": ".teamaccesscontrollist",
|
|
13559
|
+
"UpdateCriblLakeDatasetByLakeIDAndIDRequest": ".updatecribllakedatasetbylakeidandidop",
|
|
13560
|
+
"UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".updatecribllakedatasetbylakeidandidop",
|
|
13561
|
+
"UpdateCriblLakeDatasetByLakeIDAndIDResponse": ".updatecribllakedatasetbylakeidandidop",
|
|
13562
|
+
"UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict": ".updatecribllakedatasetbylakeidandidop",
|
|
13563
|
+
"UpdateGroupsDeployByIDRequest": ".updategroupsdeploybyidop",
|
|
13564
|
+
"UpdateGroupsDeployByIDRequestTypedDict": ".updategroupsdeploybyidop",
|
|
13565
|
+
"UpdateGroupsDeployByIDResponse": ".updategroupsdeploybyidop",
|
|
13566
|
+
"UpdateGroupsDeployByIDResponseTypedDict": ".updategroupsdeploybyidop",
|
|
12910
13567
|
"UpdateHecTokenRequest": ".updatehectokenrequest",
|
|
12911
13568
|
"UpdateHecTokenRequestMetadatum": ".updatehectokenrequest",
|
|
12912
13569
|
"UpdateHecTokenRequestMetadatumTypedDict": ".updatehectokenrequest",
|
|
@@ -12923,6 +13580,14 @@ _dynamic_imports: dict[str, str] = {
|
|
|
12923
13580
|
"UpdateOutputByIDRequestTypedDict": ".updateoutputbyidop",
|
|
12924
13581
|
"UpdateOutputByIDResponse": ".updateoutputbyidop",
|
|
12925
13582
|
"UpdateOutputByIDResponseTypedDict": ".updateoutputbyidop",
|
|
13583
|
+
"UpdatePacksByIDRequest": ".updatepacksbyidop",
|
|
13584
|
+
"UpdatePacksByIDRequestTypedDict": ".updatepacksbyidop",
|
|
13585
|
+
"UpdatePacksByIDResponse": ".updatepacksbyidop",
|
|
13586
|
+
"UpdatePacksByIDResponseTypedDict": ".updatepacksbyidop",
|
|
13587
|
+
"UpdatePacksRequest": ".updatepacksop",
|
|
13588
|
+
"UpdatePacksRequestTypedDict": ".updatepacksop",
|
|
13589
|
+
"UpdatePacksResponse": ".updatepacksop",
|
|
13590
|
+
"UpdatePacksResponseTypedDict": ".updatepacksop",
|
|
12926
13591
|
"UpdatePipelineByIDRequest": ".updatepipelinebyidop",
|
|
12927
13592
|
"UpdatePipelineByIDRequestTypedDict": ".updatepipelinebyidop",
|
|
12928
13593
|
"UpdatePipelineByIDResponse": ".updatepipelinebyidop",
|
|
@@ -12931,6 +13596,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
12931
13596
|
"UpdateRoutesByIDRequestTypedDict": ".updateroutesbyidop",
|
|
12932
13597
|
"UpdateRoutesByIDResponse": ".updateroutesbyidop",
|
|
12933
13598
|
"UpdateRoutesByIDResponseTypedDict": ".updateroutesbyidop",
|
|
13599
|
+
"UpdateWorkersRestartResponse": ".updateworkersrestartop",
|
|
13600
|
+
"UpdateWorkersRestartResponseTypedDict": ".updateworkersrestartop",
|
|
13601
|
+
"UserAccessControlList": ".useraccesscontrollist",
|
|
13602
|
+
"UserAccessControlListTypedDict": ".useraccesscontrollist",
|
|
12934
13603
|
}
|
|
12935
13604
|
|
|
12936
13605
|
|