cribl-control-plane 0.0.38a1__py3-none-any.whl → 0.0.39__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/commits.py +52 -42
- cribl_control_plane/commits_files.py +12 -12
- cribl_control_plane/destinations.py +3 -3
- cribl_control_plane/groups_sdk.py +8 -8
- cribl_control_plane/models/__init__.py +46 -368
- cribl_control_plane/models/configgroup.py +5 -3
- cribl_control_plane/models/createversioncommitop.py +26 -1
- cribl_control_plane/models/createversionrevertop.py +4 -2
- cribl_control_plane/models/createversionundoop.py +4 -2
- cribl_control_plane/models/getversioncountop.py +3 -2
- cribl_control_plane/models/getversiondiffop.py +3 -2
- cribl_control_plane/models/getversionfilesop.py +3 -2
- cribl_control_plane/models/getversionop.py +4 -2
- cribl_control_plane/models/getversionshowop.py +3 -2
- cribl_control_plane/models/getversionstatusop.py +4 -2
- cribl_control_plane/models/inputcribllakehttp.py +5 -4
- cribl_control_plane/models/inputcrowdstrike.py +2 -2
- cribl_control_plane/models/inputs3.py +2 -2
- cribl_control_plane/models/inputs3inventory.py +2 -2
- cribl_control_plane/models/inputsecuritylake.py +2 -2
- cribl_control_plane/models/outputcrowdstrikenextgensiem.py +1 -1
- cribl_control_plane/models/outputgooglepubsub.py +7 -28
- cribl_control_plane/models/outputsentineloneaisiem.py +3 -3
- cribl_control_plane/models/packinfo.py +5 -5
- cribl_control_plane/models/packinstallinfo.py +5 -5
- cribl_control_plane/models/packrequestbody_union.py +140 -0
- cribl_control_plane/models/packupgraderequest.py +26 -0
- cribl_control_plane/models/updatepacksbyidop.py +9 -28
- cribl_control_plane/packs.py +62 -116
- cribl_control_plane/{destinations_samples.py → samples.py} +1 -1
- cribl_control_plane/sdk.py +0 -3
- cribl_control_plane/statuses.py +6 -6
- {cribl_control_plane-0.0.38a1.dist-info → cribl_control_plane-0.0.39.dist-info}/METADATA +6 -22
- {cribl_control_plane-0.0.38a1.dist-info → cribl_control_plane-0.0.39.dist-info}/RECORD +36 -63
- cribl_control_plane/cribl.py +0 -513
- cribl_control_plane/models/authconfig.py +0 -43
- cribl_control_plane/models/commonservicelimitconfigs.py +0 -14
- cribl_control_plane/models/edgeheartbeatmetricsmode.py +0 -11
- cribl_control_plane/models/getsystemsettingsauthop.py +0 -24
- cribl_control_plane/models/getsystemsettingsconfop.py +0 -24
- cribl_control_plane/models/getsystemsettingsgitsettingsop.py +0 -24
- cribl_control_plane/models/gitopstype.py +0 -10
- cribl_control_plane/models/gitsettings.py +0 -70
- cribl_control_plane/models/jobsettings.py +0 -83
- cribl_control_plane/models/limits.py +0 -127
- cribl_control_plane/models/packrequestbody.py +0 -75
- cribl_control_plane/models/rediscachelimits.py +0 -38
- cribl_control_plane/models/redisconnectionlimits.py +0 -20
- cribl_control_plane/models/redislimits.py +0 -14
- cribl_control_plane/models/searchsettings.py +0 -71
- cribl_control_plane/models/serviceslimits.py +0 -23
- cribl_control_plane/models/systemsettings.py +0 -358
- cribl_control_plane/models/systemsettingsconf.py +0 -311
- cribl_control_plane/models/updatesystemsettingsauthop.py +0 -24
- cribl_control_plane/models/updatesystemsettingsconfop.py +0 -24
- cribl_control_plane/models/updatesystemsettingsgitsettingsop.py +0 -24
- cribl_control_plane/models/upgradegroupsettings.py +0 -24
- cribl_control_plane/models/upgradepackageurls.py +0 -20
- cribl_control_plane/models/upgradesettings.py +0 -36
- cribl_control_plane/settings.py +0 -23
- cribl_control_plane/settings_auth.py +0 -339
- cribl_control_plane/settings_git.py +0 -339
- cribl_control_plane/system_sdk.py +0 -17
- {cribl_control_plane-0.0.38a1.dist-info → cribl_control_plane-0.0.39.dist-info}/WHEEL +0 -0
|
@@ -12,16 +12,11 @@ if TYPE_CHECKING:
|
|
|
12
12
|
AddHecTokenRequestTypedDict,
|
|
13
13
|
)
|
|
14
14
|
from .appmode import AppMode
|
|
15
|
-
from .authconfig import AuthConfig, AuthConfigType, AuthConfigTypedDict
|
|
16
15
|
from .authtoken import AuthToken, AuthTokenTypedDict
|
|
17
16
|
from .cacheconnection import CacheConnection, CacheConnectionTypedDict
|
|
18
17
|
from .cacheconnectionbackfillstatus import CacheConnectionBackfillStatus
|
|
19
18
|
from .cloudprovider import CloudProvider
|
|
20
19
|
from .commit import Commit, CommitTypedDict
|
|
21
|
-
from .commonservicelimitconfigs import (
|
|
22
|
-
CommonServiceLimitConfigs,
|
|
23
|
-
CommonServiceLimitConfigsTypedDict,
|
|
24
|
-
)
|
|
25
20
|
from .configgroup import (
|
|
26
21
|
ConfigGroup,
|
|
27
22
|
ConfigGroupType,
|
|
@@ -74,6 +69,8 @@ if TYPE_CHECKING:
|
|
|
74
69
|
CreateRoutesAppendByIDResponseTypedDict,
|
|
75
70
|
)
|
|
76
71
|
from .createversioncommitop import (
|
|
72
|
+
CreateVersionCommitRequest,
|
|
73
|
+
CreateVersionCommitRequestTypedDict,
|
|
77
74
|
CreateVersionCommitResponse,
|
|
78
75
|
CreateVersionCommitResponseTypedDict,
|
|
79
76
|
)
|
|
@@ -162,7 +159,6 @@ if TYPE_CHECKING:
|
|
|
162
159
|
DistributedSummaryWorkers,
|
|
163
160
|
DistributedSummaryWorkersTypedDict,
|
|
164
161
|
)
|
|
165
|
-
from .edgeheartbeatmetricsmode import EdgeHeartbeatMetricsMode
|
|
166
162
|
from .getconfiggroupaclbyproductandidop import (
|
|
167
163
|
GetConfigGroupACLByProductAndIDRequest,
|
|
168
164
|
GetConfigGroupACLByProductAndIDRequestTypedDict,
|
|
@@ -259,18 +255,6 @@ if TYPE_CHECKING:
|
|
|
259
255
|
GetSummaryResponse,
|
|
260
256
|
GetSummaryResponseTypedDict,
|
|
261
257
|
)
|
|
262
|
-
from .getsystemsettingsauthop import (
|
|
263
|
-
GetSystemSettingsAuthResponse,
|
|
264
|
-
GetSystemSettingsAuthResponseTypedDict,
|
|
265
|
-
)
|
|
266
|
-
from .getsystemsettingsconfop import (
|
|
267
|
-
GetSystemSettingsConfResponse,
|
|
268
|
-
GetSystemSettingsConfResponseTypedDict,
|
|
269
|
-
)
|
|
270
|
-
from .getsystemsettingsgitsettingsop import (
|
|
271
|
-
GetSystemSettingsGitSettingsResponse,
|
|
272
|
-
GetSystemSettingsGitSettingsResponseTypedDict,
|
|
273
|
-
)
|
|
274
258
|
from .getversionbranchop import (
|
|
275
259
|
GetVersionBranchResponse,
|
|
276
260
|
GetVersionBranchResponseTypedDict,
|
|
@@ -330,7 +314,6 @@ if TYPE_CHECKING:
|
|
|
330
314
|
from .gitfilesresponse import GitFilesResponse, GitFilesResponseTypedDict
|
|
331
315
|
from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteTypedDict
|
|
332
316
|
from .gitlogresult import GitLogResult, GitLogResultTypedDict
|
|
333
|
-
from .gitopstype import GitOpsType
|
|
334
317
|
from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
|
|
335
318
|
from .gitrevertresult import (
|
|
336
319
|
Audit,
|
|
@@ -340,7 +323,6 @@ if TYPE_CHECKING:
|
|
|
340
323
|
GitRevertResultFilesTypedDict,
|
|
341
324
|
GitRevertResultTypedDict,
|
|
342
325
|
)
|
|
343
|
-
from .gitsettings import GitSettings, GitSettingsTypedDict
|
|
344
326
|
from .gitstatusresult import (
|
|
345
327
|
File,
|
|
346
328
|
FileTypedDict,
|
|
@@ -1638,13 +1620,11 @@ if TYPE_CHECKING:
|
|
|
1638
1620
|
InputZscalerHecType,
|
|
1639
1621
|
InputZscalerHecTypedDict,
|
|
1640
1622
|
)
|
|
1641
|
-
from .jobsettings import JobSettings, JobSettingsTypedDict
|
|
1642
1623
|
from .lakedatasetsearchconfig import (
|
|
1643
1624
|
LakeDatasetSearchConfig,
|
|
1644
1625
|
LakeDatasetSearchConfigTypedDict,
|
|
1645
1626
|
)
|
|
1646
1627
|
from .lakehouseconnectiontype import LakehouseConnectionType
|
|
1647
|
-
from .limits import Limits, LimitsTypedDict, Samples, SamplesTypedDict
|
|
1648
1628
|
from .listconfiggroupbyproductop import (
|
|
1649
1629
|
ListConfigGroupByProductRequest,
|
|
1650
1630
|
ListConfigGroupByProductRequestTypedDict,
|
|
@@ -2189,9 +2169,6 @@ if TYPE_CHECKING:
|
|
|
2189
2169
|
OutputGoogleCloudStorageTypedDict,
|
|
2190
2170
|
)
|
|
2191
2171
|
from .outputgooglepubsub import (
|
|
2192
|
-
FlushPeriodSec,
|
|
2193
|
-
FlushPeriodSecType,
|
|
2194
|
-
FlushPeriodSecTypedDict,
|
|
2195
2172
|
OutputGooglePubsub,
|
|
2196
2173
|
OutputGooglePubsubBackpressureBehavior,
|
|
2197
2174
|
OutputGooglePubsubCompression,
|
|
@@ -2200,7 +2177,7 @@ if TYPE_CHECKING:
|
|
|
2200
2177
|
OutputGooglePubsubPqControls,
|
|
2201
2178
|
OutputGooglePubsubPqControlsTypedDict,
|
|
2202
2179
|
OutputGooglePubsubQueueFullBehavior,
|
|
2203
|
-
|
|
2180
|
+
OutputGooglePubsubType,
|
|
2204
2181
|
OutputGooglePubsubTypedDict,
|
|
2205
2182
|
)
|
|
2206
2183
|
from .outputgrafanacloud import (
|
|
@@ -2965,12 +2942,19 @@ if TYPE_CHECKING:
|
|
|
2965
2942
|
PackInstallInfoTagsTypedDict,
|
|
2966
2943
|
PackInstallInfoTypedDict,
|
|
2967
2944
|
)
|
|
2968
|
-
from .
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2945
|
+
from .packrequestbody_union import (
|
|
2946
|
+
PackRequestBody1,
|
|
2947
|
+
PackRequestBody1TypedDict,
|
|
2948
|
+
PackRequestBody2,
|
|
2949
|
+
PackRequestBody2TypedDict,
|
|
2950
|
+
PackRequestBodyTags1,
|
|
2951
|
+
PackRequestBodyTags1TypedDict,
|
|
2952
|
+
PackRequestBodyTags2,
|
|
2953
|
+
PackRequestBodyTags2TypedDict,
|
|
2954
|
+
PackRequestBodyUnion,
|
|
2955
|
+
PackRequestBodyUnionTypedDict,
|
|
2956
|
+
)
|
|
2957
|
+
from .packupgraderequest import PackUpgradeRequest, PackUpgradeRequestTypedDict
|
|
2974
2958
|
from .pipeline import (
|
|
2975
2959
|
Conf,
|
|
2976
2960
|
ConfTypedDict,
|
|
@@ -2987,12 +2971,6 @@ if TYPE_CHECKING:
|
|
|
2987
2971
|
)
|
|
2988
2972
|
from .productscore import ProductsCore
|
|
2989
2973
|
from .rbacresource import RbacResource
|
|
2990
|
-
from .rediscachelimits import RedisCacheLimits, RedisCacheLimitsTypedDict
|
|
2991
|
-
from .redisconnectionlimits import (
|
|
2992
|
-
RedisConnectionLimits,
|
|
2993
|
-
RedisConnectionLimitsTypedDict,
|
|
2994
|
-
)
|
|
2995
|
-
from .redislimits import RedisLimits, RedisLimitsTypedDict
|
|
2996
2974
|
from .resourcepolicy import ResourcePolicy, ResourcePolicyTypedDict
|
|
2997
2975
|
from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
|
|
2998
2976
|
from .routeconf import RouteConf, RouteConfTypedDict
|
|
@@ -3006,83 +2984,7 @@ if TYPE_CHECKING:
|
|
|
3006
2984
|
)
|
|
3007
2985
|
from .routesroute import RoutesRoute, RoutesRouteTypedDict
|
|
3008
2986
|
from .schemeclientoauth import SchemeClientOauth, SchemeClientOauthTypedDict
|
|
3009
|
-
from .searchsettings import (
|
|
3010
|
-
SearchSettings,
|
|
3011
|
-
SearchSettingsTypedDict,
|
|
3012
|
-
WarmPoolSize,
|
|
3013
|
-
WarmPoolSizeEnum,
|
|
3014
|
-
WarmPoolSizeTypedDict,
|
|
3015
|
-
)
|
|
3016
2987
|
from .security import Security, SecurityTypedDict
|
|
3017
|
-
from .serviceslimits import ServicesLimits, ServicesLimitsTypedDict
|
|
3018
|
-
from .systemsettings import (
|
|
3019
|
-
Distributed,
|
|
3020
|
-
DistributedTypedDict,
|
|
3021
|
-
SystemSettings,
|
|
3022
|
-
SystemSettingsAPI,
|
|
3023
|
-
SystemSettingsAPITypedDict,
|
|
3024
|
-
SystemSettingsBackups,
|
|
3025
|
-
SystemSettingsBackupsTypedDict,
|
|
3026
|
-
SystemSettingsCustomLogo,
|
|
3027
|
-
SystemSettingsCustomLogoTypedDict,
|
|
3028
|
-
SystemSettingsHeaders,
|
|
3029
|
-
SystemSettingsHeadersTypedDict,
|
|
3030
|
-
SystemSettingsPii,
|
|
3031
|
-
SystemSettingsPiiTypedDict,
|
|
3032
|
-
SystemSettingsProxy,
|
|
3033
|
-
SystemSettingsProxyTypedDict,
|
|
3034
|
-
SystemSettingsRollback,
|
|
3035
|
-
SystemSettingsRollbackTypedDict,
|
|
3036
|
-
SystemSettingsShutdown,
|
|
3037
|
-
SystemSettingsShutdownTypedDict,
|
|
3038
|
-
SystemSettingsSni,
|
|
3039
|
-
SystemSettingsSniTypedDict,
|
|
3040
|
-
SystemSettingsSockets,
|
|
3041
|
-
SystemSettingsSocketsTypedDict,
|
|
3042
|
-
SystemSettingsSsl,
|
|
3043
|
-
SystemSettingsSslTypedDict,
|
|
3044
|
-
SystemSettingsSystem,
|
|
3045
|
-
SystemSettingsSystemTypedDict,
|
|
3046
|
-
SystemSettingsTLS,
|
|
3047
|
-
SystemSettingsTLSTypedDict,
|
|
3048
|
-
SystemSettingsTypedDict,
|
|
3049
|
-
SystemSettingsUpgrade,
|
|
3050
|
-
SystemSettingsWorkers,
|
|
3051
|
-
SystemSettingsWorkersTypedDict,
|
|
3052
|
-
)
|
|
3053
|
-
from .systemsettingsconf import (
|
|
3054
|
-
SystemSettingsConf,
|
|
3055
|
-
SystemSettingsConfAPI,
|
|
3056
|
-
SystemSettingsConfAPITypedDict,
|
|
3057
|
-
SystemSettingsConfBackups,
|
|
3058
|
-
SystemSettingsConfBackupsTypedDict,
|
|
3059
|
-
SystemSettingsConfCustomLogo,
|
|
3060
|
-
SystemSettingsConfCustomLogoTypedDict,
|
|
3061
|
-
SystemSettingsConfHeaders,
|
|
3062
|
-
SystemSettingsConfHeadersTypedDict,
|
|
3063
|
-
SystemSettingsConfPii,
|
|
3064
|
-
SystemSettingsConfPiiTypedDict,
|
|
3065
|
-
SystemSettingsConfProxy,
|
|
3066
|
-
SystemSettingsConfProxyTypedDict,
|
|
3067
|
-
SystemSettingsConfRollback,
|
|
3068
|
-
SystemSettingsConfRollbackTypedDict,
|
|
3069
|
-
SystemSettingsConfShutdown,
|
|
3070
|
-
SystemSettingsConfShutdownTypedDict,
|
|
3071
|
-
SystemSettingsConfSni,
|
|
3072
|
-
SystemSettingsConfSniTypedDict,
|
|
3073
|
-
SystemSettingsConfSockets,
|
|
3074
|
-
SystemSettingsConfSocketsTypedDict,
|
|
3075
|
-
SystemSettingsConfSsl,
|
|
3076
|
-
SystemSettingsConfSslTypedDict,
|
|
3077
|
-
SystemSettingsConfSystem,
|
|
3078
|
-
SystemSettingsConfSystemTypedDict,
|
|
3079
|
-
SystemSettingsConfTLS,
|
|
3080
|
-
SystemSettingsConfTLSTypedDict,
|
|
3081
|
-
SystemSettingsConfTypedDict,
|
|
3082
|
-
SystemSettingsConfUpgrade,
|
|
3083
|
-
SystemSettingsConfWorkers,
|
|
3084
|
-
SystemSettingsConfWorkersTypedDict,
|
|
3085
|
-
)
|
|
3086
2988
|
from .teamaccesscontrollist import (
|
|
3087
2989
|
TeamAccessControlList,
|
|
3088
2990
|
TeamAccessControlListTypedDict,
|
|
@@ -3147,24 +3049,6 @@ if TYPE_CHECKING:
|
|
|
3147
3049
|
UpdateRoutesByIDResponse,
|
|
3148
3050
|
UpdateRoutesByIDResponseTypedDict,
|
|
3149
3051
|
)
|
|
3150
|
-
from .updatesystemsettingsauthop import (
|
|
3151
|
-
UpdateSystemSettingsAuthResponse,
|
|
3152
|
-
UpdateSystemSettingsAuthResponseTypedDict,
|
|
3153
|
-
)
|
|
3154
|
-
from .updatesystemsettingsconfop import (
|
|
3155
|
-
UpdateSystemSettingsConfResponse,
|
|
3156
|
-
UpdateSystemSettingsConfResponseTypedDict,
|
|
3157
|
-
)
|
|
3158
|
-
from .updatesystemsettingsgitsettingsop import (
|
|
3159
|
-
UpdateSystemSettingsGitSettingsResponse,
|
|
3160
|
-
UpdateSystemSettingsGitSettingsResponseTypedDict,
|
|
3161
|
-
)
|
|
3162
|
-
from .upgradegroupsettings import (
|
|
3163
|
-
UpgradeGroupSettings,
|
|
3164
|
-
UpgradeGroupSettingsTypedDict,
|
|
3165
|
-
)
|
|
3166
|
-
from .upgradepackageurls import UpgradePackageUrls, UpgradePackageUrlsTypedDict
|
|
3167
|
-
from .upgradesettings import UpgradeSettings, UpgradeSettingsTypedDict
|
|
3168
3052
|
from .useraccesscontrollist import (
|
|
3169
3053
|
UserAccessControlList,
|
|
3170
3054
|
UserAccessControlListTypedDict,
|
|
@@ -3184,9 +3068,6 @@ __all__ = [
|
|
|
3184
3068
|
"AppMode",
|
|
3185
3069
|
"Audit",
|
|
3186
3070
|
"AuditTypedDict",
|
|
3187
|
-
"AuthConfig",
|
|
3188
|
-
"AuthConfigType",
|
|
3189
|
-
"AuthConfigTypedDict",
|
|
3190
3071
|
"AuthToken",
|
|
3191
3072
|
"AuthTokenTypedDict",
|
|
3192
3073
|
"AuthType",
|
|
@@ -3209,8 +3090,6 @@ __all__ = [
|
|
|
3209
3090
|
"CommentTypedDict",
|
|
3210
3091
|
"Commit",
|
|
3211
3092
|
"CommitTypedDict",
|
|
3212
|
-
"CommonServiceLimitConfigs",
|
|
3213
|
-
"CommonServiceLimitConfigsTypedDict",
|
|
3214
3093
|
"Conf",
|
|
3215
3094
|
"ConfTypedDict",
|
|
3216
3095
|
"Config",
|
|
@@ -3255,6 +3134,8 @@ __all__ = [
|
|
|
3255
3134
|
"CreateRoutesAppendByIDRequestTypedDict",
|
|
3256
3135
|
"CreateRoutesAppendByIDResponse",
|
|
3257
3136
|
"CreateRoutesAppendByIDResponseTypedDict",
|
|
3137
|
+
"CreateVersionCommitRequest",
|
|
3138
|
+
"CreateVersionCommitRequestTypedDict",
|
|
3258
3139
|
"CreateVersionCommitResponse",
|
|
3259
3140
|
"CreateVersionCommitResponseTypedDict",
|
|
3260
3141
|
"CreateVersionPushResponse",
|
|
@@ -3320,15 +3201,12 @@ __all__ = [
|
|
|
3320
3201
|
"DeployRequestTypedDict",
|
|
3321
3202
|
"DisksAndFileSystems",
|
|
3322
3203
|
"DisksAndFileSystemsTypedDict",
|
|
3323
|
-
"Distributed",
|
|
3324
3204
|
"DistributedSummary",
|
|
3325
3205
|
"DistributedSummaryGroups",
|
|
3326
3206
|
"DistributedSummaryGroupsTypedDict",
|
|
3327
3207
|
"DistributedSummaryTypedDict",
|
|
3328
3208
|
"DistributedSummaryWorkers",
|
|
3329
3209
|
"DistributedSummaryWorkersTypedDict",
|
|
3330
|
-
"DistributedTypedDict",
|
|
3331
|
-
"EdgeHeartbeatMetricsMode",
|
|
3332
3210
|
"ElasticVersion",
|
|
3333
3211
|
"Endpoint",
|
|
3334
3212
|
"EndpointConfiguration",
|
|
@@ -3348,9 +3226,6 @@ __all__ = [
|
|
|
3348
3226
|
"FileTypedDict",
|
|
3349
3227
|
"Firewall",
|
|
3350
3228
|
"FirewallTypedDict",
|
|
3351
|
-
"FlushPeriodSec",
|
|
3352
|
-
"FlushPeriodSecType",
|
|
3353
|
-
"FlushPeriodSecTypedDict",
|
|
3354
3229
|
"FunctionSpecificConfigs",
|
|
3355
3230
|
"FunctionSpecificConfigsTypedDict",
|
|
3356
3231
|
"GetConfigGroupACLByProductAndIDRequest",
|
|
@@ -3417,12 +3292,6 @@ __all__ = [
|
|
|
3417
3292
|
"GetSummaryRequestTypedDict",
|
|
3418
3293
|
"GetSummaryResponse",
|
|
3419
3294
|
"GetSummaryResponseTypedDict",
|
|
3420
|
-
"GetSystemSettingsAuthResponse",
|
|
3421
|
-
"GetSystemSettingsAuthResponseTypedDict",
|
|
3422
|
-
"GetSystemSettingsConfResponse",
|
|
3423
|
-
"GetSystemSettingsConfResponseTypedDict",
|
|
3424
|
-
"GetSystemSettingsGitSettingsResponse",
|
|
3425
|
-
"GetSystemSettingsGitSettingsResponseTypedDict",
|
|
3426
3295
|
"GetVersionBranchResponse",
|
|
3427
3296
|
"GetVersionBranchResponseTypedDict",
|
|
3428
3297
|
"GetVersionCountRequest",
|
|
@@ -3466,15 +3335,12 @@ __all__ = [
|
|
|
3466
3335
|
"GitInfoTypedDict",
|
|
3467
3336
|
"GitLogResult",
|
|
3468
3337
|
"GitLogResultTypedDict",
|
|
3469
|
-
"GitOpsType",
|
|
3470
3338
|
"GitRevertParams",
|
|
3471
3339
|
"GitRevertParamsTypedDict",
|
|
3472
3340
|
"GitRevertResult",
|
|
3473
3341
|
"GitRevertResultFiles",
|
|
3474
3342
|
"GitRevertResultFilesTypedDict",
|
|
3475
3343
|
"GitRevertResultTypedDict",
|
|
3476
|
-
"GitSettings",
|
|
3477
|
-
"GitSettingsTypedDict",
|
|
3478
3344
|
"GitStatusResult",
|
|
3479
3345
|
"GitStatusResultTypedDict",
|
|
3480
3346
|
"GitTypedDict",
|
|
@@ -4588,15 +4454,11 @@ __all__ = [
|
|
|
4588
4454
|
"InputZscalerHecTypedDict",
|
|
4589
4455
|
"Interfaces",
|
|
4590
4456
|
"InterfacesTypedDict",
|
|
4591
|
-
"JobSettings",
|
|
4592
|
-
"JobSettingsTypedDict",
|
|
4593
4457
|
"LakeDatasetSearchConfig",
|
|
4594
4458
|
"LakeDatasetSearchConfigTypedDict",
|
|
4595
4459
|
"LakehouseConnectionType",
|
|
4596
4460
|
"LastMetrics",
|
|
4597
4461
|
"LastMetricsTypedDict",
|
|
4598
|
-
"Limits",
|
|
4599
|
-
"LimitsTypedDict",
|
|
4600
4462
|
"ListConfigGroupByProductRequest",
|
|
4601
4463
|
"ListConfigGroupByProductRequestTypedDict",
|
|
4602
4464
|
"ListConfigGroupByProductResponse",
|
|
@@ -5086,7 +4948,7 @@ __all__ = [
|
|
|
5086
4948
|
"OutputGooglePubsubPqControls",
|
|
5087
4949
|
"OutputGooglePubsubPqControlsTypedDict",
|
|
5088
4950
|
"OutputGooglePubsubQueueFullBehavior",
|
|
5089
|
-
"
|
|
4951
|
+
"OutputGooglePubsubType",
|
|
5090
4952
|
"OutputGooglePubsubTypedDict",
|
|
5091
4953
|
"OutputGrafanaCloud",
|
|
5092
4954
|
"OutputGrafanaCloudBackpressureBehavior1",
|
|
@@ -5762,10 +5624,18 @@ __all__ = [
|
|
|
5762
5624
|
"PackInstallInfoTags",
|
|
5763
5625
|
"PackInstallInfoTagsTypedDict",
|
|
5764
5626
|
"PackInstallInfoTypedDict",
|
|
5765
|
-
"
|
|
5766
|
-
"
|
|
5767
|
-
"
|
|
5768
|
-
"
|
|
5627
|
+
"PackRequestBody1",
|
|
5628
|
+
"PackRequestBody1TypedDict",
|
|
5629
|
+
"PackRequestBody2",
|
|
5630
|
+
"PackRequestBody2TypedDict",
|
|
5631
|
+
"PackRequestBodyTags1",
|
|
5632
|
+
"PackRequestBodyTags1TypedDict",
|
|
5633
|
+
"PackRequestBodyTags2",
|
|
5634
|
+
"PackRequestBodyTags2TypedDict",
|
|
5635
|
+
"PackRequestBodyUnion",
|
|
5636
|
+
"PackRequestBodyUnionTypedDict",
|
|
5637
|
+
"PackUpgradeRequest",
|
|
5638
|
+
"PackUpgradeRequestTypedDict",
|
|
5769
5639
|
"PayloadFormat",
|
|
5770
5640
|
"Pipeline",
|
|
5771
5641
|
"PipelineFunctionConf",
|
|
@@ -5788,12 +5658,6 @@ __all__ = [
|
|
|
5788
5658
|
"QueryBuilderMode",
|
|
5789
5659
|
"RbacResource",
|
|
5790
5660
|
"ReadMode",
|
|
5791
|
-
"RedisCacheLimits",
|
|
5792
|
-
"RedisCacheLimitsTypedDict",
|
|
5793
|
-
"RedisConnectionLimits",
|
|
5794
|
-
"RedisConnectionLimitsTypedDict",
|
|
5795
|
-
"RedisLimits",
|
|
5796
|
-
"RedisLimitsTypedDict",
|
|
5797
5661
|
"Remote",
|
|
5798
5662
|
"RemoteTypedDict",
|
|
5799
5663
|
"Renamed",
|
|
@@ -5819,23 +5683,17 @@ __all__ = [
|
|
|
5819
5683
|
"SNMPv3AuthenticationTypedDict",
|
|
5820
5684
|
"Sample",
|
|
5821
5685
|
"SampleTypedDict",
|
|
5822
|
-
"Samples",
|
|
5823
|
-
"SamplesTypedDict",
|
|
5824
5686
|
"ScanMode",
|
|
5825
5687
|
"ScheduleType",
|
|
5826
5688
|
"SchemeClientOauth",
|
|
5827
5689
|
"SchemeClientOauthTypedDict",
|
|
5828
5690
|
"ScrapeProtocolProtocol",
|
|
5829
|
-
"SearchSettings",
|
|
5830
|
-
"SearchSettingsTypedDict",
|
|
5831
5691
|
"Security",
|
|
5832
5692
|
"SecurityTypedDict",
|
|
5833
5693
|
"SendEventsAs",
|
|
5834
5694
|
"SendLogsAs",
|
|
5835
5695
|
"ServerSideEncryption",
|
|
5836
5696
|
"Services",
|
|
5837
|
-
"ServicesLimits",
|
|
5838
|
-
"ServicesLimitsTypedDict",
|
|
5839
5697
|
"ServicesTypedDict",
|
|
5840
5698
|
"ShardIteratorStart",
|
|
5841
5699
|
"ShardLoadBalancing",
|
|
@@ -5846,68 +5704,6 @@ __all__ = [
|
|
|
5846
5704
|
"SubscriptionTypedDict",
|
|
5847
5705
|
"Summary",
|
|
5848
5706
|
"SummaryTypedDict",
|
|
5849
|
-
"SystemSettings",
|
|
5850
|
-
"SystemSettingsAPI",
|
|
5851
|
-
"SystemSettingsAPITypedDict",
|
|
5852
|
-
"SystemSettingsBackups",
|
|
5853
|
-
"SystemSettingsBackupsTypedDict",
|
|
5854
|
-
"SystemSettingsConf",
|
|
5855
|
-
"SystemSettingsConfAPI",
|
|
5856
|
-
"SystemSettingsConfAPITypedDict",
|
|
5857
|
-
"SystemSettingsConfBackups",
|
|
5858
|
-
"SystemSettingsConfBackupsTypedDict",
|
|
5859
|
-
"SystemSettingsConfCustomLogo",
|
|
5860
|
-
"SystemSettingsConfCustomLogoTypedDict",
|
|
5861
|
-
"SystemSettingsConfHeaders",
|
|
5862
|
-
"SystemSettingsConfHeadersTypedDict",
|
|
5863
|
-
"SystemSettingsConfPii",
|
|
5864
|
-
"SystemSettingsConfPiiTypedDict",
|
|
5865
|
-
"SystemSettingsConfProxy",
|
|
5866
|
-
"SystemSettingsConfProxyTypedDict",
|
|
5867
|
-
"SystemSettingsConfRollback",
|
|
5868
|
-
"SystemSettingsConfRollbackTypedDict",
|
|
5869
|
-
"SystemSettingsConfShutdown",
|
|
5870
|
-
"SystemSettingsConfShutdownTypedDict",
|
|
5871
|
-
"SystemSettingsConfSni",
|
|
5872
|
-
"SystemSettingsConfSniTypedDict",
|
|
5873
|
-
"SystemSettingsConfSockets",
|
|
5874
|
-
"SystemSettingsConfSocketsTypedDict",
|
|
5875
|
-
"SystemSettingsConfSsl",
|
|
5876
|
-
"SystemSettingsConfSslTypedDict",
|
|
5877
|
-
"SystemSettingsConfSystem",
|
|
5878
|
-
"SystemSettingsConfSystemTypedDict",
|
|
5879
|
-
"SystemSettingsConfTLS",
|
|
5880
|
-
"SystemSettingsConfTLSTypedDict",
|
|
5881
|
-
"SystemSettingsConfTypedDict",
|
|
5882
|
-
"SystemSettingsConfUpgrade",
|
|
5883
|
-
"SystemSettingsConfWorkers",
|
|
5884
|
-
"SystemSettingsConfWorkersTypedDict",
|
|
5885
|
-
"SystemSettingsCustomLogo",
|
|
5886
|
-
"SystemSettingsCustomLogoTypedDict",
|
|
5887
|
-
"SystemSettingsHeaders",
|
|
5888
|
-
"SystemSettingsHeadersTypedDict",
|
|
5889
|
-
"SystemSettingsPii",
|
|
5890
|
-
"SystemSettingsPiiTypedDict",
|
|
5891
|
-
"SystemSettingsProxy",
|
|
5892
|
-
"SystemSettingsProxyTypedDict",
|
|
5893
|
-
"SystemSettingsRollback",
|
|
5894
|
-
"SystemSettingsRollbackTypedDict",
|
|
5895
|
-
"SystemSettingsShutdown",
|
|
5896
|
-
"SystemSettingsShutdownTypedDict",
|
|
5897
|
-
"SystemSettingsSni",
|
|
5898
|
-
"SystemSettingsSniTypedDict",
|
|
5899
|
-
"SystemSettingsSockets",
|
|
5900
|
-
"SystemSettingsSocketsTypedDict",
|
|
5901
|
-
"SystemSettingsSsl",
|
|
5902
|
-
"SystemSettingsSslTypedDict",
|
|
5903
|
-
"SystemSettingsSystem",
|
|
5904
|
-
"SystemSettingsSystemTypedDict",
|
|
5905
|
-
"SystemSettingsTLS",
|
|
5906
|
-
"SystemSettingsTLSTypedDict",
|
|
5907
|
-
"SystemSettingsTypedDict",
|
|
5908
|
-
"SystemSettingsUpgrade",
|
|
5909
|
-
"SystemSettingsWorkers",
|
|
5910
|
-
"SystemSettingsWorkersTypedDict",
|
|
5911
5707
|
"Target",
|
|
5912
5708
|
"TargetProtocol",
|
|
5913
5709
|
"TargetTypedDict",
|
|
@@ -5956,27 +5752,12 @@ __all__ = [
|
|
|
5956
5752
|
"UpdateRoutesByIDRequestTypedDict",
|
|
5957
5753
|
"UpdateRoutesByIDResponse",
|
|
5958
5754
|
"UpdateRoutesByIDResponseTypedDict",
|
|
5959
|
-
"UpdateSystemSettingsAuthResponse",
|
|
5960
|
-
"UpdateSystemSettingsAuthResponseTypedDict",
|
|
5961
|
-
"UpdateSystemSettingsConfResponse",
|
|
5962
|
-
"UpdateSystemSettingsConfResponseTypedDict",
|
|
5963
|
-
"UpdateSystemSettingsGitSettingsResponse",
|
|
5964
|
-
"UpdateSystemSettingsGitSettingsResponseTypedDict",
|
|
5965
|
-
"UpgradeGroupSettings",
|
|
5966
|
-
"UpgradeGroupSettingsTypedDict",
|
|
5967
|
-
"UpgradePackageUrls",
|
|
5968
|
-
"UpgradePackageUrlsTypedDict",
|
|
5969
|
-
"UpgradeSettings",
|
|
5970
|
-
"UpgradeSettingsTypedDict",
|
|
5971
5755
|
"UserAccessControlList",
|
|
5972
5756
|
"UserAccessControlListTypedDict",
|
|
5973
5757
|
"UsersAndGroups",
|
|
5974
5758
|
"UsersAndGroupsTypedDict",
|
|
5975
5759
|
"V3User",
|
|
5976
5760
|
"V3UserTypedDict",
|
|
5977
|
-
"WarmPoolSize",
|
|
5978
|
-
"WarmPoolSizeEnum",
|
|
5979
|
-
"WarmPoolSizeTypedDict",
|
|
5980
5761
|
"WorkerTypes",
|
|
5981
5762
|
"WriteAction",
|
|
5982
5763
|
]
|
|
@@ -5987,9 +5768,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5987
5768
|
"AddHecTokenRequestMetadatumTypedDict": ".addhectokenrequest",
|
|
5988
5769
|
"AddHecTokenRequestTypedDict": ".addhectokenrequest",
|
|
5989
5770
|
"AppMode": ".appmode",
|
|
5990
|
-
"AuthConfig": ".authconfig",
|
|
5991
|
-
"AuthConfigType": ".authconfig",
|
|
5992
|
-
"AuthConfigTypedDict": ".authconfig",
|
|
5993
5771
|
"AuthToken": ".authtoken",
|
|
5994
5772
|
"AuthTokenTypedDict": ".authtoken",
|
|
5995
5773
|
"CacheConnection": ".cacheconnection",
|
|
@@ -5998,8 +5776,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5998
5776
|
"CloudProvider": ".cloudprovider",
|
|
5999
5777
|
"Commit": ".commit",
|
|
6000
5778
|
"CommitTypedDict": ".commit",
|
|
6001
|
-
"CommonServiceLimitConfigs": ".commonservicelimitconfigs",
|
|
6002
|
-
"CommonServiceLimitConfigsTypedDict": ".commonservicelimitconfigs",
|
|
6003
5779
|
"ConfigGroup": ".configgroup",
|
|
6004
5780
|
"ConfigGroupType": ".configgroup",
|
|
6005
5781
|
"ConfigGroupTypedDict": ".configgroup",
|
|
@@ -6039,6 +5815,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6039
5815
|
"CreateRoutesAppendByIDRequestTypedDict": ".createroutesappendbyidop",
|
|
6040
5816
|
"CreateRoutesAppendByIDResponse": ".createroutesappendbyidop",
|
|
6041
5817
|
"CreateRoutesAppendByIDResponseTypedDict": ".createroutesappendbyidop",
|
|
5818
|
+
"CreateVersionCommitRequest": ".createversioncommitop",
|
|
5819
|
+
"CreateVersionCommitRequestTypedDict": ".createversioncommitop",
|
|
6042
5820
|
"CreateVersionCommitResponse": ".createversioncommitop",
|
|
6043
5821
|
"CreateVersionCommitResponseTypedDict": ".createversioncommitop",
|
|
6044
5822
|
"CreateVersionPushResponse": ".createversionpushop",
|
|
@@ -6103,7 +5881,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6103
5881
|
"DistributedSummaryTypedDict": ".distributedsummary",
|
|
6104
5882
|
"DistributedSummaryWorkers": ".distributedsummary",
|
|
6105
5883
|
"DistributedSummaryWorkersTypedDict": ".distributedsummary",
|
|
6106
|
-
"EdgeHeartbeatMetricsMode": ".edgeheartbeatmetricsmode",
|
|
6107
5884
|
"GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
|
|
6108
5885
|
"GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
|
|
6109
5886
|
"GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
|
|
@@ -6168,12 +5945,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6168
5945
|
"GetSummaryRequestTypedDict": ".getsummaryop",
|
|
6169
5946
|
"GetSummaryResponse": ".getsummaryop",
|
|
6170
5947
|
"GetSummaryResponseTypedDict": ".getsummaryop",
|
|
6171
|
-
"GetSystemSettingsAuthResponse": ".getsystemsettingsauthop",
|
|
6172
|
-
"GetSystemSettingsAuthResponseTypedDict": ".getsystemsettingsauthop",
|
|
6173
|
-
"GetSystemSettingsConfResponse": ".getsystemsettingsconfop",
|
|
6174
|
-
"GetSystemSettingsConfResponseTypedDict": ".getsystemsettingsconfop",
|
|
6175
|
-
"GetSystemSettingsGitSettingsResponse": ".getsystemsettingsgitsettingsop",
|
|
6176
|
-
"GetSystemSettingsGitSettingsResponseTypedDict": ".getsystemsettingsgitsettingsop",
|
|
6177
5948
|
"GetVersionBranchResponse": ".getversionbranchop",
|
|
6178
5949
|
"GetVersionBranchResponseTypedDict": ".getversionbranchop",
|
|
6179
5950
|
"GetVersionCountRequest": ".getversioncountop",
|
|
@@ -6222,7 +5993,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6222
5993
|
"RemoteTypedDict": ".gitinfo",
|
|
6223
5994
|
"GitLogResult": ".gitlogresult",
|
|
6224
5995
|
"GitLogResultTypedDict": ".gitlogresult",
|
|
6225
|
-
"GitOpsType": ".gitopstype",
|
|
6226
5996
|
"GitRevertParams": ".gitrevertparams",
|
|
6227
5997
|
"GitRevertParamsTypedDict": ".gitrevertparams",
|
|
6228
5998
|
"Audit": ".gitrevertresult",
|
|
@@ -6231,8 +6001,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6231
6001
|
"GitRevertResultFiles": ".gitrevertresult",
|
|
6232
6002
|
"GitRevertResultFilesTypedDict": ".gitrevertresult",
|
|
6233
6003
|
"GitRevertResultTypedDict": ".gitrevertresult",
|
|
6234
|
-
"GitSettings": ".gitsettings",
|
|
6235
|
-
"GitSettingsTypedDict": ".gitsettings",
|
|
6236
6004
|
"File": ".gitstatusresult",
|
|
6237
6005
|
"FileTypedDict": ".gitstatusresult",
|
|
6238
6006
|
"GitStatusResult": ".gitstatusresult",
|
|
@@ -7416,15 +7184,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7416
7184
|
"InputZscalerHecTLSSettingsServerSideTypedDict": ".inputzscalerhec",
|
|
7417
7185
|
"InputZscalerHecType": ".inputzscalerhec",
|
|
7418
7186
|
"InputZscalerHecTypedDict": ".inputzscalerhec",
|
|
7419
|
-
"JobSettings": ".jobsettings",
|
|
7420
|
-
"JobSettingsTypedDict": ".jobsettings",
|
|
7421
7187
|
"LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
|
|
7422
7188
|
"LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
|
|
7423
7189
|
"LakehouseConnectionType": ".lakehouseconnectiontype",
|
|
7424
|
-
"Limits": ".limits",
|
|
7425
|
-
"LimitsTypedDict": ".limits",
|
|
7426
|
-
"Samples": ".limits",
|
|
7427
|
-
"SamplesTypedDict": ".limits",
|
|
7428
7190
|
"ListConfigGroupByProductRequest": ".listconfiggroupbyproductop",
|
|
7429
7191
|
"ListConfigGroupByProductRequestTypedDict": ".listconfiggroupbyproductop",
|
|
7430
7192
|
"ListConfigGroupByProductResponse": ".listconfiggroupbyproductop",
|
|
@@ -7924,9 +7686,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7924
7686
|
"OutputGoogleCloudStorageStorageClass": ".outputgooglecloudstorage",
|
|
7925
7687
|
"OutputGoogleCloudStorageType": ".outputgooglecloudstorage",
|
|
7926
7688
|
"OutputGoogleCloudStorageTypedDict": ".outputgooglecloudstorage",
|
|
7927
|
-
"FlushPeriodSec": ".outputgooglepubsub",
|
|
7928
|
-
"FlushPeriodSecType": ".outputgooglepubsub",
|
|
7929
|
-
"FlushPeriodSecTypedDict": ".outputgooglepubsub",
|
|
7930
7689
|
"OutputGooglePubsub": ".outputgooglepubsub",
|
|
7931
7690
|
"OutputGooglePubsubBackpressureBehavior": ".outputgooglepubsub",
|
|
7932
7691
|
"OutputGooglePubsubCompression": ".outputgooglepubsub",
|
|
@@ -7935,7 +7694,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7935
7694
|
"OutputGooglePubsubPqControls": ".outputgooglepubsub",
|
|
7936
7695
|
"OutputGooglePubsubPqControlsTypedDict": ".outputgooglepubsub",
|
|
7937
7696
|
"OutputGooglePubsubQueueFullBehavior": ".outputgooglepubsub",
|
|
7938
|
-
"
|
|
7697
|
+
"OutputGooglePubsubType": ".outputgooglepubsub",
|
|
7939
7698
|
"OutputGooglePubsubTypedDict": ".outputgooglepubsub",
|
|
7940
7699
|
"OutputGrafanaCloud": ".outputgrafanacloud",
|
|
7941
7700
|
"OutputGrafanaCloudBackpressureBehavior1": ".outputgrafanacloud",
|
|
@@ -8621,10 +8380,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8621
8380
|
"PackInstallInfoTags": ".packinstallinfo",
|
|
8622
8381
|
"PackInstallInfoTagsTypedDict": ".packinstallinfo",
|
|
8623
8382
|
"PackInstallInfoTypedDict": ".packinstallinfo",
|
|
8624
|
-
"
|
|
8625
|
-
"
|
|
8626
|
-
"
|
|
8627
|
-
"
|
|
8383
|
+
"PackRequestBody1": ".packrequestbody_union",
|
|
8384
|
+
"PackRequestBody1TypedDict": ".packrequestbody_union",
|
|
8385
|
+
"PackRequestBody2": ".packrequestbody_union",
|
|
8386
|
+
"PackRequestBody2TypedDict": ".packrequestbody_union",
|
|
8387
|
+
"PackRequestBodyTags1": ".packrequestbody_union",
|
|
8388
|
+
"PackRequestBodyTags1TypedDict": ".packrequestbody_union",
|
|
8389
|
+
"PackRequestBodyTags2": ".packrequestbody_union",
|
|
8390
|
+
"PackRequestBodyTags2TypedDict": ".packrequestbody_union",
|
|
8391
|
+
"PackRequestBodyUnion": ".packrequestbody_union",
|
|
8392
|
+
"PackRequestBodyUnionTypedDict": ".packrequestbody_union",
|
|
8393
|
+
"PackUpgradeRequest": ".packupgraderequest",
|
|
8394
|
+
"PackUpgradeRequestTypedDict": ".packupgraderequest",
|
|
8628
8395
|
"Conf": ".pipeline",
|
|
8629
8396
|
"ConfTypedDict": ".pipeline",
|
|
8630
8397
|
"Pipeline": ".pipeline",
|
|
@@ -8637,12 +8404,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8637
8404
|
"PipelineFunctionConfTypedDict": ".pipelinefunctionconf",
|
|
8638
8405
|
"ProductsCore": ".productscore",
|
|
8639
8406
|
"RbacResource": ".rbacresource",
|
|
8640
|
-
"RedisCacheLimits": ".rediscachelimits",
|
|
8641
|
-
"RedisCacheLimitsTypedDict": ".rediscachelimits",
|
|
8642
|
-
"RedisConnectionLimits": ".redisconnectionlimits",
|
|
8643
|
-
"RedisConnectionLimitsTypedDict": ".redisconnectionlimits",
|
|
8644
|
-
"RedisLimits": ".redislimits",
|
|
8645
|
-
"RedisLimitsTypedDict": ".redislimits",
|
|
8646
8407
|
"ResourcePolicy": ".resourcepolicy",
|
|
8647
8408
|
"ResourcePolicyTypedDict": ".resourcepolicy",
|
|
8648
8409
|
"RouteCloneConf": ".routecloneconf",
|
|
@@ -8659,79 +8420,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8659
8420
|
"RoutesRouteTypedDict": ".routesroute",
|
|
8660
8421
|
"SchemeClientOauth": ".schemeclientoauth",
|
|
8661
8422
|
"SchemeClientOauthTypedDict": ".schemeclientoauth",
|
|
8662
|
-
"SearchSettings": ".searchsettings",
|
|
8663
|
-
"SearchSettingsTypedDict": ".searchsettings",
|
|
8664
|
-
"WarmPoolSize": ".searchsettings",
|
|
8665
|
-
"WarmPoolSizeEnum": ".searchsettings",
|
|
8666
|
-
"WarmPoolSizeTypedDict": ".searchsettings",
|
|
8667
8423
|
"Security": ".security",
|
|
8668
8424
|
"SecurityTypedDict": ".security",
|
|
8669
|
-
"ServicesLimits": ".serviceslimits",
|
|
8670
|
-
"ServicesLimitsTypedDict": ".serviceslimits",
|
|
8671
|
-
"Distributed": ".systemsettings",
|
|
8672
|
-
"DistributedTypedDict": ".systemsettings",
|
|
8673
|
-
"SystemSettings": ".systemsettings",
|
|
8674
|
-
"SystemSettingsAPI": ".systemsettings",
|
|
8675
|
-
"SystemSettingsAPITypedDict": ".systemsettings",
|
|
8676
|
-
"SystemSettingsBackups": ".systemsettings",
|
|
8677
|
-
"SystemSettingsBackupsTypedDict": ".systemsettings",
|
|
8678
|
-
"SystemSettingsCustomLogo": ".systemsettings",
|
|
8679
|
-
"SystemSettingsCustomLogoTypedDict": ".systemsettings",
|
|
8680
|
-
"SystemSettingsHeaders": ".systemsettings",
|
|
8681
|
-
"SystemSettingsHeadersTypedDict": ".systemsettings",
|
|
8682
|
-
"SystemSettingsPii": ".systemsettings",
|
|
8683
|
-
"SystemSettingsPiiTypedDict": ".systemsettings",
|
|
8684
|
-
"SystemSettingsProxy": ".systemsettings",
|
|
8685
|
-
"SystemSettingsProxyTypedDict": ".systemsettings",
|
|
8686
|
-
"SystemSettingsRollback": ".systemsettings",
|
|
8687
|
-
"SystemSettingsRollbackTypedDict": ".systemsettings",
|
|
8688
|
-
"SystemSettingsShutdown": ".systemsettings",
|
|
8689
|
-
"SystemSettingsShutdownTypedDict": ".systemsettings",
|
|
8690
|
-
"SystemSettingsSni": ".systemsettings",
|
|
8691
|
-
"SystemSettingsSniTypedDict": ".systemsettings",
|
|
8692
|
-
"SystemSettingsSockets": ".systemsettings",
|
|
8693
|
-
"SystemSettingsSocketsTypedDict": ".systemsettings",
|
|
8694
|
-
"SystemSettingsSsl": ".systemsettings",
|
|
8695
|
-
"SystemSettingsSslTypedDict": ".systemsettings",
|
|
8696
|
-
"SystemSettingsSystem": ".systemsettings",
|
|
8697
|
-
"SystemSettingsSystemTypedDict": ".systemsettings",
|
|
8698
|
-
"SystemSettingsTLS": ".systemsettings",
|
|
8699
|
-
"SystemSettingsTLSTypedDict": ".systemsettings",
|
|
8700
|
-
"SystemSettingsTypedDict": ".systemsettings",
|
|
8701
|
-
"SystemSettingsUpgrade": ".systemsettings",
|
|
8702
|
-
"SystemSettingsWorkers": ".systemsettings",
|
|
8703
|
-
"SystemSettingsWorkersTypedDict": ".systemsettings",
|
|
8704
|
-
"SystemSettingsConf": ".systemsettingsconf",
|
|
8705
|
-
"SystemSettingsConfAPI": ".systemsettingsconf",
|
|
8706
|
-
"SystemSettingsConfAPITypedDict": ".systemsettingsconf",
|
|
8707
|
-
"SystemSettingsConfBackups": ".systemsettingsconf",
|
|
8708
|
-
"SystemSettingsConfBackupsTypedDict": ".systemsettingsconf",
|
|
8709
|
-
"SystemSettingsConfCustomLogo": ".systemsettingsconf",
|
|
8710
|
-
"SystemSettingsConfCustomLogoTypedDict": ".systemsettingsconf",
|
|
8711
|
-
"SystemSettingsConfHeaders": ".systemsettingsconf",
|
|
8712
|
-
"SystemSettingsConfHeadersTypedDict": ".systemsettingsconf",
|
|
8713
|
-
"SystemSettingsConfPii": ".systemsettingsconf",
|
|
8714
|
-
"SystemSettingsConfPiiTypedDict": ".systemsettingsconf",
|
|
8715
|
-
"SystemSettingsConfProxy": ".systemsettingsconf",
|
|
8716
|
-
"SystemSettingsConfProxyTypedDict": ".systemsettingsconf",
|
|
8717
|
-
"SystemSettingsConfRollback": ".systemsettingsconf",
|
|
8718
|
-
"SystemSettingsConfRollbackTypedDict": ".systemsettingsconf",
|
|
8719
|
-
"SystemSettingsConfShutdown": ".systemsettingsconf",
|
|
8720
|
-
"SystemSettingsConfShutdownTypedDict": ".systemsettingsconf",
|
|
8721
|
-
"SystemSettingsConfSni": ".systemsettingsconf",
|
|
8722
|
-
"SystemSettingsConfSniTypedDict": ".systemsettingsconf",
|
|
8723
|
-
"SystemSettingsConfSockets": ".systemsettingsconf",
|
|
8724
|
-
"SystemSettingsConfSocketsTypedDict": ".systemsettingsconf",
|
|
8725
|
-
"SystemSettingsConfSsl": ".systemsettingsconf",
|
|
8726
|
-
"SystemSettingsConfSslTypedDict": ".systemsettingsconf",
|
|
8727
|
-
"SystemSettingsConfSystem": ".systemsettingsconf",
|
|
8728
|
-
"SystemSettingsConfSystemTypedDict": ".systemsettingsconf",
|
|
8729
|
-
"SystemSettingsConfTLS": ".systemsettingsconf",
|
|
8730
|
-
"SystemSettingsConfTLSTypedDict": ".systemsettingsconf",
|
|
8731
|
-
"SystemSettingsConfTypedDict": ".systemsettingsconf",
|
|
8732
|
-
"SystemSettingsConfUpgrade": ".systemsettingsconf",
|
|
8733
|
-
"SystemSettingsConfWorkers": ".systemsettingsconf",
|
|
8734
|
-
"SystemSettingsConfWorkersTypedDict": ".systemsettingsconf",
|
|
8735
8425
|
"TeamAccessControlList": ".teamaccesscontrollist",
|
|
8736
8426
|
"TeamAccessControlListTypedDict": ".teamaccesscontrollist",
|
|
8737
8427
|
"UpdateConfigGroupByProductAndIDRequest": ".updateconfiggroupbyproductandidop",
|
|
@@ -8774,18 +8464,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8774
8464
|
"UpdateRoutesByIDRequestTypedDict": ".updateroutesbyidop",
|
|
8775
8465
|
"UpdateRoutesByIDResponse": ".updateroutesbyidop",
|
|
8776
8466
|
"UpdateRoutesByIDResponseTypedDict": ".updateroutesbyidop",
|
|
8777
|
-
"UpdateSystemSettingsAuthResponse": ".updatesystemsettingsauthop",
|
|
8778
|
-
"UpdateSystemSettingsAuthResponseTypedDict": ".updatesystemsettingsauthop",
|
|
8779
|
-
"UpdateSystemSettingsConfResponse": ".updatesystemsettingsconfop",
|
|
8780
|
-
"UpdateSystemSettingsConfResponseTypedDict": ".updatesystemsettingsconfop",
|
|
8781
|
-
"UpdateSystemSettingsGitSettingsResponse": ".updatesystemsettingsgitsettingsop",
|
|
8782
|
-
"UpdateSystemSettingsGitSettingsResponseTypedDict": ".updatesystemsettingsgitsettingsop",
|
|
8783
|
-
"UpgradeGroupSettings": ".upgradegroupsettings",
|
|
8784
|
-
"UpgradeGroupSettingsTypedDict": ".upgradegroupsettings",
|
|
8785
|
-
"UpgradePackageUrls": ".upgradepackageurls",
|
|
8786
|
-
"UpgradePackageUrlsTypedDict": ".upgradepackageurls",
|
|
8787
|
-
"UpgradeSettings": ".upgradesettings",
|
|
8788
|
-
"UpgradeSettingsTypedDict": ".upgradesettings",
|
|
8789
8467
|
"UserAccessControlList": ".useraccesscontrollist",
|
|
8790
8468
|
"UserAccessControlListTypedDict": ".useraccesscontrollist",
|
|
8791
8469
|
"WorkerTypes": ".workertypes",
|