cribl-control-plane 0.0.37a1__py3-none-any.whl → 0.0.38a1__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 +4 -4
- cribl_control_plane/cribl.py +513 -0
- cribl_control_plane/destinations.py +3 -3
- cribl_control_plane/{samples.py → destinations_samples.py} +1 -1
- cribl_control_plane/models/__init__.py +829 -189
- cribl_control_plane/models/authconfig.py +43 -0
- cribl_control_plane/models/commonservicelimitconfigs.py +14 -0
- cribl_control_plane/models/edgeheartbeatmetricsmode.py +11 -0
- cribl_control_plane/models/getpacksbyidop.py +37 -0
- cribl_control_plane/models/getsystemsettingsauthop.py +24 -0
- cribl_control_plane/models/getsystemsettingsconfop.py +24 -0
- cribl_control_plane/models/getsystemsettingsgitsettingsop.py +24 -0
- cribl_control_plane/models/gitopstype.py +10 -0
- cribl_control_plane/models/gitrevertparams.py +3 -3
- cribl_control_plane/models/gitsettings.py +70 -0
- cribl_control_plane/models/input.py +77 -76
- cribl_control_plane/models/inputgrafana.py +678 -67
- cribl_control_plane/models/inputsyslog.py +406 -37
- cribl_control_plane/models/inputwizwebhook.py +393 -0
- cribl_control_plane/models/jobsettings.py +83 -0
- cribl_control_plane/models/limits.py +127 -0
- cribl_control_plane/models/output.py +75 -77
- cribl_control_plane/models/outputgrafanacloud.py +565 -69
- cribl_control_plane/models/rediscachelimits.py +38 -0
- cribl_control_plane/models/redisconnectionlimits.py +20 -0
- cribl_control_plane/models/redislimits.py +14 -0
- cribl_control_plane/models/searchsettings.py +71 -0
- cribl_control_plane/models/serviceslimits.py +23 -0
- cribl_control_plane/models/systemsettings.py +358 -0
- cribl_control_plane/models/systemsettingsconf.py +311 -0
- cribl_control_plane/models/updatesystemsettingsauthop.py +24 -0
- cribl_control_plane/models/updatesystemsettingsconfop.py +24 -0
- cribl_control_plane/models/updatesystemsettingsgitsettingsop.py +24 -0
- cribl_control_plane/models/upgradegroupsettings.py +24 -0
- cribl_control_plane/models/upgradepackageurls.py +20 -0
- cribl_control_plane/models/upgradesettings.py +36 -0
- cribl_control_plane/packs.py +174 -0
- cribl_control_plane/sdk.py +3 -0
- cribl_control_plane/settings.py +23 -0
- cribl_control_plane/settings_auth.py +339 -0
- cribl_control_plane/settings_git.py +339 -0
- cribl_control_plane/system_sdk.py +17 -0
- {cribl_control_plane-0.0.37a1.dist-info → cribl_control_plane-0.0.38a1.dist-info}/METADATA +22 -5
- {cribl_control_plane-0.0.37a1.dist-info → cribl_control_plane-0.0.38a1.dist-info}/RECORD +46 -16
- {cribl_control_plane-0.0.37a1.dist-info → cribl_control_plane-0.0.38a1.dist-info}/WHEEL +0 -0
|
@@ -12,11 +12,16 @@ if TYPE_CHECKING:
|
|
|
12
12
|
AddHecTokenRequestTypedDict,
|
|
13
13
|
)
|
|
14
14
|
from .appmode import AppMode
|
|
15
|
+
from .authconfig import AuthConfig, AuthConfigType, AuthConfigTypedDict
|
|
15
16
|
from .authtoken import AuthToken, AuthTokenTypedDict
|
|
16
17
|
from .cacheconnection import CacheConnection, CacheConnectionTypedDict
|
|
17
18
|
from .cacheconnectionbackfillstatus import CacheConnectionBackfillStatus
|
|
18
19
|
from .cloudprovider import CloudProvider
|
|
19
20
|
from .commit import Commit, CommitTypedDict
|
|
21
|
+
from .commonservicelimitconfigs import (
|
|
22
|
+
CommonServiceLimitConfigs,
|
|
23
|
+
CommonServiceLimitConfigsTypedDict,
|
|
24
|
+
)
|
|
20
25
|
from .configgroup import (
|
|
21
26
|
ConfigGroup,
|
|
22
27
|
ConfigGroupType,
|
|
@@ -157,6 +162,7 @@ if TYPE_CHECKING:
|
|
|
157
162
|
DistributedSummaryWorkers,
|
|
158
163
|
DistributedSummaryWorkersTypedDict,
|
|
159
164
|
)
|
|
165
|
+
from .edgeheartbeatmetricsmode import EdgeHeartbeatMetricsMode
|
|
160
166
|
from .getconfiggroupaclbyproductandidop import (
|
|
161
167
|
GetConfigGroupACLByProductAndIDRequest,
|
|
162
168
|
GetConfigGroupACLByProductAndIDRequestTypedDict,
|
|
@@ -223,6 +229,12 @@ if TYPE_CHECKING:
|
|
|
223
229
|
GetOutputSamplesByIDResponse,
|
|
224
230
|
GetOutputSamplesByIDResponseTypedDict,
|
|
225
231
|
)
|
|
232
|
+
from .getpacksbyidop import (
|
|
233
|
+
GetPacksByIDRequest,
|
|
234
|
+
GetPacksByIDRequestTypedDict,
|
|
235
|
+
GetPacksByIDResponse,
|
|
236
|
+
GetPacksByIDResponseTypedDict,
|
|
237
|
+
)
|
|
226
238
|
from .getpacksop import (
|
|
227
239
|
GetPacksRequest,
|
|
228
240
|
GetPacksRequestTypedDict,
|
|
@@ -247,6 +259,18 @@ if TYPE_CHECKING:
|
|
|
247
259
|
GetSummaryResponse,
|
|
248
260
|
GetSummaryResponseTypedDict,
|
|
249
261
|
)
|
|
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
|
+
)
|
|
250
274
|
from .getversionbranchop import (
|
|
251
275
|
GetVersionBranchResponse,
|
|
252
276
|
GetVersionBranchResponseTypedDict,
|
|
@@ -306,6 +330,7 @@ if TYPE_CHECKING:
|
|
|
306
330
|
from .gitfilesresponse import GitFilesResponse, GitFilesResponseTypedDict
|
|
307
331
|
from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteTypedDict
|
|
308
332
|
from .gitlogresult import GitLogResult, GitLogResultTypedDict
|
|
333
|
+
from .gitopstype import GitOpsType
|
|
309
334
|
from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
|
|
310
335
|
from .gitrevertresult import (
|
|
311
336
|
Audit,
|
|
@@ -315,6 +340,7 @@ if TYPE_CHECKING:
|
|
|
315
340
|
GitRevertResultFilesTypedDict,
|
|
316
341
|
GitRevertResultTypedDict,
|
|
317
342
|
)
|
|
343
|
+
from .gitsettings import GitSettings, GitSettingsTypedDict
|
|
318
344
|
from .gitstatusresult import (
|
|
319
345
|
File,
|
|
320
346
|
FileTypedDict,
|
|
@@ -695,34 +721,65 @@ if TYPE_CHECKING:
|
|
|
695
721
|
)
|
|
696
722
|
from .inputgrafana import (
|
|
697
723
|
InputGrafana,
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
724
|
+
InputGrafanaCompression1,
|
|
725
|
+
InputGrafanaCompression2,
|
|
726
|
+
InputGrafanaConnection1,
|
|
727
|
+
InputGrafanaConnection1TypedDict,
|
|
728
|
+
InputGrafanaConnection2,
|
|
729
|
+
InputGrafanaConnection2TypedDict,
|
|
730
|
+
InputGrafanaGrafana1,
|
|
731
|
+
InputGrafanaGrafana1TypedDict,
|
|
732
|
+
InputGrafanaGrafana2,
|
|
733
|
+
InputGrafanaGrafana2TypedDict,
|
|
734
|
+
InputGrafanaLokiAuth1,
|
|
735
|
+
InputGrafanaLokiAuth1TypedDict,
|
|
736
|
+
InputGrafanaLokiAuth2,
|
|
737
|
+
InputGrafanaLokiAuth2TypedDict,
|
|
738
|
+
InputGrafanaLokiAuthAuthenticationType1,
|
|
739
|
+
InputGrafanaLokiAuthAuthenticationType2,
|
|
740
|
+
InputGrafanaMaximumTLSVersion1,
|
|
741
|
+
InputGrafanaMaximumTLSVersion2,
|
|
742
|
+
InputGrafanaMetadatum1,
|
|
743
|
+
InputGrafanaMetadatum1TypedDict,
|
|
744
|
+
InputGrafanaMetadatum2,
|
|
745
|
+
InputGrafanaMetadatum2TypedDict,
|
|
746
|
+
InputGrafanaMinimumTLSVersion1,
|
|
747
|
+
InputGrafanaMinimumTLSVersion2,
|
|
748
|
+
InputGrafanaMode1,
|
|
749
|
+
InputGrafanaMode2,
|
|
750
|
+
InputGrafanaPq1,
|
|
751
|
+
InputGrafanaPq1TypedDict,
|
|
752
|
+
InputGrafanaPq2,
|
|
753
|
+
InputGrafanaPq2TypedDict,
|
|
754
|
+
InputGrafanaPrometheusAuth1,
|
|
755
|
+
InputGrafanaPrometheusAuth1TypedDict,
|
|
756
|
+
InputGrafanaPrometheusAuth2,
|
|
757
|
+
InputGrafanaPrometheusAuth2TypedDict,
|
|
758
|
+
InputGrafanaPrometheusAuthAuthenticationType1,
|
|
759
|
+
InputGrafanaPrometheusAuthAuthenticationType2,
|
|
760
|
+
InputGrafanaTLSSettingsServerSide1,
|
|
761
|
+
InputGrafanaTLSSettingsServerSide1TypedDict,
|
|
762
|
+
InputGrafanaTLSSettingsServerSide2,
|
|
763
|
+
InputGrafanaTLSSettingsServerSide2TypedDict,
|
|
764
|
+
InputGrafanaType1,
|
|
765
|
+
InputGrafanaType2,
|
|
717
766
|
InputGrafanaTypedDict,
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
767
|
+
LokiAuthOauthHeader1,
|
|
768
|
+
LokiAuthOauthHeader1TypedDict,
|
|
769
|
+
LokiAuthOauthHeader2,
|
|
770
|
+
LokiAuthOauthHeader2TypedDict,
|
|
771
|
+
LokiAuthOauthParam1,
|
|
772
|
+
LokiAuthOauthParam1TypedDict,
|
|
773
|
+
LokiAuthOauthParam2,
|
|
774
|
+
LokiAuthOauthParam2TypedDict,
|
|
775
|
+
PrometheusAuthOauthHeader1,
|
|
776
|
+
PrometheusAuthOauthHeader1TypedDict,
|
|
777
|
+
PrometheusAuthOauthHeader2,
|
|
778
|
+
PrometheusAuthOauthHeader2TypedDict,
|
|
779
|
+
PrometheusAuthOauthParam1,
|
|
780
|
+
PrometheusAuthOauthParam1TypedDict,
|
|
781
|
+
PrometheusAuthOauthParam2,
|
|
782
|
+
PrometheusAuthOauthParam2TypedDict,
|
|
726
783
|
)
|
|
727
784
|
from .inputhttp import (
|
|
728
785
|
InputHTTP,
|
|
@@ -1285,19 +1342,36 @@ if TYPE_CHECKING:
|
|
|
1285
1342
|
)
|
|
1286
1343
|
from .inputsyslog import (
|
|
1287
1344
|
InputSyslog,
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1345
|
+
InputSyslogCompression1,
|
|
1346
|
+
InputSyslogCompression2,
|
|
1347
|
+
InputSyslogConnection1,
|
|
1348
|
+
InputSyslogConnection1TypedDict,
|
|
1349
|
+
InputSyslogConnection2,
|
|
1350
|
+
InputSyslogConnection2TypedDict,
|
|
1351
|
+
InputSyslogMaximumTLSVersion1,
|
|
1352
|
+
InputSyslogMaximumTLSVersion2,
|
|
1353
|
+
InputSyslogMetadatum1,
|
|
1354
|
+
InputSyslogMetadatum1TypedDict,
|
|
1355
|
+
InputSyslogMetadatum2,
|
|
1356
|
+
InputSyslogMetadatum2TypedDict,
|
|
1357
|
+
InputSyslogMinimumTLSVersion1,
|
|
1358
|
+
InputSyslogMinimumTLSVersion2,
|
|
1359
|
+
InputSyslogMode1,
|
|
1360
|
+
InputSyslogMode2,
|
|
1361
|
+
InputSyslogPq1,
|
|
1362
|
+
InputSyslogPq1TypedDict,
|
|
1363
|
+
InputSyslogPq2,
|
|
1364
|
+
InputSyslogPq2TypedDict,
|
|
1365
|
+
InputSyslogSyslog1,
|
|
1366
|
+
InputSyslogSyslog1TypedDict,
|
|
1367
|
+
InputSyslogSyslog2,
|
|
1368
|
+
InputSyslogSyslog2TypedDict,
|
|
1369
|
+
InputSyslogTLSSettingsServerSide1,
|
|
1370
|
+
InputSyslogTLSSettingsServerSide1TypedDict,
|
|
1371
|
+
InputSyslogTLSSettingsServerSide2,
|
|
1372
|
+
InputSyslogTLSSettingsServerSide2TypedDict,
|
|
1373
|
+
InputSyslogType1,
|
|
1374
|
+
InputSyslogType2,
|
|
1301
1375
|
InputSyslogTypedDict,
|
|
1302
1376
|
)
|
|
1303
1377
|
from .inputsystemmetrics import (
|
|
@@ -1521,6 +1595,27 @@ if TYPE_CHECKING:
|
|
|
1521
1595
|
InputWizType,
|
|
1522
1596
|
InputWizTypedDict,
|
|
1523
1597
|
)
|
|
1598
|
+
from .inputwizwebhook import (
|
|
1599
|
+
InputWizWebhook,
|
|
1600
|
+
InputWizWebhookAuthTokensExt,
|
|
1601
|
+
InputWizWebhookAuthTokensExtMetadatum,
|
|
1602
|
+
InputWizWebhookAuthTokensExtMetadatumTypedDict,
|
|
1603
|
+
InputWizWebhookAuthTokensExtTypedDict,
|
|
1604
|
+
InputWizWebhookCompression,
|
|
1605
|
+
InputWizWebhookConnection,
|
|
1606
|
+
InputWizWebhookConnectionTypedDict,
|
|
1607
|
+
InputWizWebhookMaximumTLSVersion,
|
|
1608
|
+
InputWizWebhookMetadatum,
|
|
1609
|
+
InputWizWebhookMetadatumTypedDict,
|
|
1610
|
+
InputWizWebhookMinimumTLSVersion,
|
|
1611
|
+
InputWizWebhookMode,
|
|
1612
|
+
InputWizWebhookPq,
|
|
1613
|
+
InputWizWebhookPqTypedDict,
|
|
1614
|
+
InputWizWebhookTLSSettingsServerSide,
|
|
1615
|
+
InputWizWebhookTLSSettingsServerSideTypedDict,
|
|
1616
|
+
InputWizWebhookType,
|
|
1617
|
+
InputWizWebhookTypedDict,
|
|
1618
|
+
)
|
|
1524
1619
|
from .inputzscalerhec import (
|
|
1525
1620
|
InputZscalerHec,
|
|
1526
1621
|
InputZscalerHecAuthToken,
|
|
@@ -1543,11 +1638,13 @@ if TYPE_CHECKING:
|
|
|
1543
1638
|
InputZscalerHecType,
|
|
1544
1639
|
InputZscalerHecTypedDict,
|
|
1545
1640
|
)
|
|
1641
|
+
from .jobsettings import JobSettings, JobSettingsTypedDict
|
|
1546
1642
|
from .lakedatasetsearchconfig import (
|
|
1547
1643
|
LakeDatasetSearchConfig,
|
|
1548
1644
|
LakeDatasetSearchConfigTypedDict,
|
|
1549
1645
|
)
|
|
1550
1646
|
from .lakehouseconnectiontype import LakehouseConnectionType
|
|
1647
|
+
from .limits import Limits, LimitsTypedDict, Samples, SamplesTypedDict
|
|
1551
1648
|
from .listconfiggroupbyproductop import (
|
|
1552
1649
|
ListConfigGroupByProductRequest,
|
|
1553
1650
|
ListConfigGroupByProductRequestTypedDict,
|
|
@@ -2108,29 +2205,56 @@ if TYPE_CHECKING:
|
|
|
2108
2205
|
)
|
|
2109
2206
|
from .outputgrafanacloud import (
|
|
2110
2207
|
OutputGrafanaCloud,
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2208
|
+
OutputGrafanaCloudBackpressureBehavior1,
|
|
2209
|
+
OutputGrafanaCloudBackpressureBehavior2,
|
|
2210
|
+
OutputGrafanaCloudCompression1,
|
|
2211
|
+
OutputGrafanaCloudCompression2,
|
|
2212
|
+
OutputGrafanaCloudExtraHTTPHeader1,
|
|
2213
|
+
OutputGrafanaCloudExtraHTTPHeader1TypedDict,
|
|
2214
|
+
OutputGrafanaCloudExtraHTTPHeader2,
|
|
2215
|
+
OutputGrafanaCloudExtraHTTPHeader2TypedDict,
|
|
2216
|
+
OutputGrafanaCloudFailedRequestLoggingMode1,
|
|
2217
|
+
OutputGrafanaCloudFailedRequestLoggingMode2,
|
|
2218
|
+
OutputGrafanaCloudGrafanaCloud1,
|
|
2219
|
+
OutputGrafanaCloudGrafanaCloud1TypedDict,
|
|
2220
|
+
OutputGrafanaCloudGrafanaCloud2,
|
|
2221
|
+
OutputGrafanaCloudGrafanaCloud2TypedDict,
|
|
2222
|
+
OutputGrafanaCloudLabel1,
|
|
2223
|
+
OutputGrafanaCloudLabel1TypedDict,
|
|
2224
|
+
OutputGrafanaCloudLabel2,
|
|
2225
|
+
OutputGrafanaCloudLabel2TypedDict,
|
|
2226
|
+
OutputGrafanaCloudLokiAuth1,
|
|
2227
|
+
OutputGrafanaCloudLokiAuth1TypedDict,
|
|
2228
|
+
OutputGrafanaCloudLokiAuth2,
|
|
2229
|
+
OutputGrafanaCloudLokiAuth2TypedDict,
|
|
2230
|
+
OutputGrafanaCloudLokiAuthAuthenticationType1,
|
|
2231
|
+
OutputGrafanaCloudLokiAuthAuthenticationType2,
|
|
2232
|
+
OutputGrafanaCloudMessageFormat1,
|
|
2233
|
+
OutputGrafanaCloudMessageFormat2,
|
|
2234
|
+
OutputGrafanaCloudMode1,
|
|
2235
|
+
OutputGrafanaCloudMode2,
|
|
2236
|
+
OutputGrafanaCloudPqControls1,
|
|
2237
|
+
OutputGrafanaCloudPqControls1TypedDict,
|
|
2238
|
+
OutputGrafanaCloudPqControls2,
|
|
2239
|
+
OutputGrafanaCloudPqControls2TypedDict,
|
|
2240
|
+
OutputGrafanaCloudPrometheusAuth1,
|
|
2241
|
+
OutputGrafanaCloudPrometheusAuth1TypedDict,
|
|
2242
|
+
OutputGrafanaCloudPrometheusAuth2,
|
|
2243
|
+
OutputGrafanaCloudPrometheusAuth2TypedDict,
|
|
2244
|
+
OutputGrafanaCloudPrometheusAuthAuthenticationType1,
|
|
2245
|
+
OutputGrafanaCloudPrometheusAuthAuthenticationType2,
|
|
2246
|
+
OutputGrafanaCloudQueueFullBehavior1,
|
|
2247
|
+
OutputGrafanaCloudQueueFullBehavior2,
|
|
2248
|
+
OutputGrafanaCloudResponseRetrySetting1,
|
|
2249
|
+
OutputGrafanaCloudResponseRetrySetting1TypedDict,
|
|
2250
|
+
OutputGrafanaCloudResponseRetrySetting2,
|
|
2251
|
+
OutputGrafanaCloudResponseRetrySetting2TypedDict,
|
|
2252
|
+
OutputGrafanaCloudTimeoutRetrySettings1,
|
|
2253
|
+
OutputGrafanaCloudTimeoutRetrySettings1TypedDict,
|
|
2254
|
+
OutputGrafanaCloudTimeoutRetrySettings2,
|
|
2255
|
+
OutputGrafanaCloudTimeoutRetrySettings2TypedDict,
|
|
2256
|
+
OutputGrafanaCloudType1,
|
|
2257
|
+
OutputGrafanaCloudType2,
|
|
2134
2258
|
OutputGrafanaCloudTypedDict,
|
|
2135
2259
|
)
|
|
2136
2260
|
from .outputgraphite import (
|
|
@@ -2863,6 +2987,12 @@ if TYPE_CHECKING:
|
|
|
2863
2987
|
)
|
|
2864
2988
|
from .productscore import ProductsCore
|
|
2865
2989
|
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
|
|
2866
2996
|
from .resourcepolicy import ResourcePolicy, ResourcePolicyTypedDict
|
|
2867
2997
|
from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
|
|
2868
2998
|
from .routeconf import RouteConf, RouteConfTypedDict
|
|
@@ -2876,7 +3006,83 @@ if TYPE_CHECKING:
|
|
|
2876
3006
|
)
|
|
2877
3007
|
from .routesroute import RoutesRoute, RoutesRouteTypedDict
|
|
2878
3008
|
from .schemeclientoauth import SchemeClientOauth, SchemeClientOauthTypedDict
|
|
3009
|
+
from .searchsettings import (
|
|
3010
|
+
SearchSettings,
|
|
3011
|
+
SearchSettingsTypedDict,
|
|
3012
|
+
WarmPoolSize,
|
|
3013
|
+
WarmPoolSizeEnum,
|
|
3014
|
+
WarmPoolSizeTypedDict,
|
|
3015
|
+
)
|
|
2879
3016
|
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
|
+
)
|
|
2880
3086
|
from .teamaccesscontrollist import (
|
|
2881
3087
|
TeamAccessControlList,
|
|
2882
3088
|
TeamAccessControlListTypedDict,
|
|
@@ -2941,6 +3147,24 @@ if TYPE_CHECKING:
|
|
|
2941
3147
|
UpdateRoutesByIDResponse,
|
|
2942
3148
|
UpdateRoutesByIDResponseTypedDict,
|
|
2943
3149
|
)
|
|
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
|
|
2944
3168
|
from .useraccesscontrollist import (
|
|
2945
3169
|
UserAccessControlList,
|
|
2946
3170
|
UserAccessControlListTypedDict,
|
|
@@ -2960,6 +3184,9 @@ __all__ = [
|
|
|
2960
3184
|
"AppMode",
|
|
2961
3185
|
"Audit",
|
|
2962
3186
|
"AuditTypedDict",
|
|
3187
|
+
"AuthConfig",
|
|
3188
|
+
"AuthConfigType",
|
|
3189
|
+
"AuthConfigTypedDict",
|
|
2963
3190
|
"AuthToken",
|
|
2964
3191
|
"AuthTokenTypedDict",
|
|
2965
3192
|
"AuthType",
|
|
@@ -2982,6 +3209,8 @@ __all__ = [
|
|
|
2982
3209
|
"CommentTypedDict",
|
|
2983
3210
|
"Commit",
|
|
2984
3211
|
"CommitTypedDict",
|
|
3212
|
+
"CommonServiceLimitConfigs",
|
|
3213
|
+
"CommonServiceLimitConfigsTypedDict",
|
|
2985
3214
|
"Conf",
|
|
2986
3215
|
"ConfTypedDict",
|
|
2987
3216
|
"Config",
|
|
@@ -3091,12 +3320,15 @@ __all__ = [
|
|
|
3091
3320
|
"DeployRequestTypedDict",
|
|
3092
3321
|
"DisksAndFileSystems",
|
|
3093
3322
|
"DisksAndFileSystemsTypedDict",
|
|
3323
|
+
"Distributed",
|
|
3094
3324
|
"DistributedSummary",
|
|
3095
3325
|
"DistributedSummaryGroups",
|
|
3096
3326
|
"DistributedSummaryGroupsTypedDict",
|
|
3097
3327
|
"DistributedSummaryTypedDict",
|
|
3098
3328
|
"DistributedSummaryWorkers",
|
|
3099
3329
|
"DistributedSummaryWorkersTypedDict",
|
|
3330
|
+
"DistributedTypedDict",
|
|
3331
|
+
"EdgeHeartbeatMetricsMode",
|
|
3100
3332
|
"ElasticVersion",
|
|
3101
3333
|
"Endpoint",
|
|
3102
3334
|
"EndpointConfiguration",
|
|
@@ -3165,6 +3397,10 @@ __all__ = [
|
|
|
3165
3397
|
"GetOutputSamplesByIDRequestTypedDict",
|
|
3166
3398
|
"GetOutputSamplesByIDResponse",
|
|
3167
3399
|
"GetOutputSamplesByIDResponseTypedDict",
|
|
3400
|
+
"GetPacksByIDRequest",
|
|
3401
|
+
"GetPacksByIDRequestTypedDict",
|
|
3402
|
+
"GetPacksByIDResponse",
|
|
3403
|
+
"GetPacksByIDResponseTypedDict",
|
|
3168
3404
|
"GetPacksRequest",
|
|
3169
3405
|
"GetPacksRequestTypedDict",
|
|
3170
3406
|
"GetPacksResponse",
|
|
@@ -3181,6 +3417,12 @@ __all__ = [
|
|
|
3181
3417
|
"GetSummaryRequestTypedDict",
|
|
3182
3418
|
"GetSummaryResponse",
|
|
3183
3419
|
"GetSummaryResponseTypedDict",
|
|
3420
|
+
"GetSystemSettingsAuthResponse",
|
|
3421
|
+
"GetSystemSettingsAuthResponseTypedDict",
|
|
3422
|
+
"GetSystemSettingsConfResponse",
|
|
3423
|
+
"GetSystemSettingsConfResponseTypedDict",
|
|
3424
|
+
"GetSystemSettingsGitSettingsResponse",
|
|
3425
|
+
"GetSystemSettingsGitSettingsResponseTypedDict",
|
|
3184
3426
|
"GetVersionBranchResponse",
|
|
3185
3427
|
"GetVersionBranchResponseTypedDict",
|
|
3186
3428
|
"GetVersionCountRequest",
|
|
@@ -3224,12 +3466,15 @@ __all__ = [
|
|
|
3224
3466
|
"GitInfoTypedDict",
|
|
3225
3467
|
"GitLogResult",
|
|
3226
3468
|
"GitLogResultTypedDict",
|
|
3469
|
+
"GitOpsType",
|
|
3227
3470
|
"GitRevertParams",
|
|
3228
3471
|
"GitRevertParamsTypedDict",
|
|
3229
3472
|
"GitRevertResult",
|
|
3230
3473
|
"GitRevertResultFiles",
|
|
3231
3474
|
"GitRevertResultFilesTypedDict",
|
|
3232
3475
|
"GitRevertResultTypedDict",
|
|
3476
|
+
"GitSettings",
|
|
3477
|
+
"GitSettingsTypedDict",
|
|
3233
3478
|
"GitStatusResult",
|
|
3234
3479
|
"GitStatusResultTypedDict",
|
|
3235
3480
|
"GitTypedDict",
|
|
@@ -3567,25 +3812,48 @@ __all__ = [
|
|
|
3567
3812
|
"InputGooglePubsubType",
|
|
3568
3813
|
"InputGooglePubsubTypedDict",
|
|
3569
3814
|
"InputGrafana",
|
|
3570
|
-
"
|
|
3571
|
-
"
|
|
3572
|
-
"
|
|
3573
|
-
"
|
|
3574
|
-
"
|
|
3575
|
-
"
|
|
3576
|
-
"
|
|
3577
|
-
"
|
|
3578
|
-
"
|
|
3579
|
-
"
|
|
3580
|
-
"
|
|
3581
|
-
"
|
|
3582
|
-
"
|
|
3583
|
-
"
|
|
3584
|
-
"
|
|
3585
|
-
"
|
|
3586
|
-
"
|
|
3587
|
-
"
|
|
3588
|
-
"
|
|
3815
|
+
"InputGrafanaCompression1",
|
|
3816
|
+
"InputGrafanaCompression2",
|
|
3817
|
+
"InputGrafanaConnection1",
|
|
3818
|
+
"InputGrafanaConnection1TypedDict",
|
|
3819
|
+
"InputGrafanaConnection2",
|
|
3820
|
+
"InputGrafanaConnection2TypedDict",
|
|
3821
|
+
"InputGrafanaGrafana1",
|
|
3822
|
+
"InputGrafanaGrafana1TypedDict",
|
|
3823
|
+
"InputGrafanaGrafana2",
|
|
3824
|
+
"InputGrafanaGrafana2TypedDict",
|
|
3825
|
+
"InputGrafanaLokiAuth1",
|
|
3826
|
+
"InputGrafanaLokiAuth1TypedDict",
|
|
3827
|
+
"InputGrafanaLokiAuth2",
|
|
3828
|
+
"InputGrafanaLokiAuth2TypedDict",
|
|
3829
|
+
"InputGrafanaLokiAuthAuthenticationType1",
|
|
3830
|
+
"InputGrafanaLokiAuthAuthenticationType2",
|
|
3831
|
+
"InputGrafanaMaximumTLSVersion1",
|
|
3832
|
+
"InputGrafanaMaximumTLSVersion2",
|
|
3833
|
+
"InputGrafanaMetadatum1",
|
|
3834
|
+
"InputGrafanaMetadatum1TypedDict",
|
|
3835
|
+
"InputGrafanaMetadatum2",
|
|
3836
|
+
"InputGrafanaMetadatum2TypedDict",
|
|
3837
|
+
"InputGrafanaMinimumTLSVersion1",
|
|
3838
|
+
"InputGrafanaMinimumTLSVersion2",
|
|
3839
|
+
"InputGrafanaMode1",
|
|
3840
|
+
"InputGrafanaMode2",
|
|
3841
|
+
"InputGrafanaPq1",
|
|
3842
|
+
"InputGrafanaPq1TypedDict",
|
|
3843
|
+
"InputGrafanaPq2",
|
|
3844
|
+
"InputGrafanaPq2TypedDict",
|
|
3845
|
+
"InputGrafanaPrometheusAuth1",
|
|
3846
|
+
"InputGrafanaPrometheusAuth1TypedDict",
|
|
3847
|
+
"InputGrafanaPrometheusAuth2",
|
|
3848
|
+
"InputGrafanaPrometheusAuth2TypedDict",
|
|
3849
|
+
"InputGrafanaPrometheusAuthAuthenticationType1",
|
|
3850
|
+
"InputGrafanaPrometheusAuthAuthenticationType2",
|
|
3851
|
+
"InputGrafanaTLSSettingsServerSide1",
|
|
3852
|
+
"InputGrafanaTLSSettingsServerSide1TypedDict",
|
|
3853
|
+
"InputGrafanaTLSSettingsServerSide2",
|
|
3854
|
+
"InputGrafanaTLSSettingsServerSide2TypedDict",
|
|
3855
|
+
"InputGrafanaType1",
|
|
3856
|
+
"InputGrafanaType2",
|
|
3589
3857
|
"InputGrafanaTypedDict",
|
|
3590
3858
|
"InputHTTP",
|
|
3591
3859
|
"InputHTTPAuthTokensExt",
|
|
@@ -4076,19 +4344,36 @@ __all__ = [
|
|
|
4076
4344
|
"InputSqsType",
|
|
4077
4345
|
"InputSqsTypedDict",
|
|
4078
4346
|
"InputSyslog",
|
|
4079
|
-
"
|
|
4080
|
-
"
|
|
4081
|
-
"
|
|
4082
|
-
"
|
|
4083
|
-
"
|
|
4084
|
-
"
|
|
4085
|
-
"
|
|
4086
|
-
"
|
|
4087
|
-
"
|
|
4088
|
-
"
|
|
4089
|
-
"
|
|
4090
|
-
"
|
|
4091
|
-
"
|
|
4347
|
+
"InputSyslogCompression1",
|
|
4348
|
+
"InputSyslogCompression2",
|
|
4349
|
+
"InputSyslogConnection1",
|
|
4350
|
+
"InputSyslogConnection1TypedDict",
|
|
4351
|
+
"InputSyslogConnection2",
|
|
4352
|
+
"InputSyslogConnection2TypedDict",
|
|
4353
|
+
"InputSyslogMaximumTLSVersion1",
|
|
4354
|
+
"InputSyslogMaximumTLSVersion2",
|
|
4355
|
+
"InputSyslogMetadatum1",
|
|
4356
|
+
"InputSyslogMetadatum1TypedDict",
|
|
4357
|
+
"InputSyslogMetadatum2",
|
|
4358
|
+
"InputSyslogMetadatum2TypedDict",
|
|
4359
|
+
"InputSyslogMinimumTLSVersion1",
|
|
4360
|
+
"InputSyslogMinimumTLSVersion2",
|
|
4361
|
+
"InputSyslogMode1",
|
|
4362
|
+
"InputSyslogMode2",
|
|
4363
|
+
"InputSyslogPq1",
|
|
4364
|
+
"InputSyslogPq1TypedDict",
|
|
4365
|
+
"InputSyslogPq2",
|
|
4366
|
+
"InputSyslogPq2TypedDict",
|
|
4367
|
+
"InputSyslogSyslog1",
|
|
4368
|
+
"InputSyslogSyslog1TypedDict",
|
|
4369
|
+
"InputSyslogSyslog2",
|
|
4370
|
+
"InputSyslogSyslog2TypedDict",
|
|
4371
|
+
"InputSyslogTLSSettingsServerSide1",
|
|
4372
|
+
"InputSyslogTLSSettingsServerSide1TypedDict",
|
|
4373
|
+
"InputSyslogTLSSettingsServerSide2",
|
|
4374
|
+
"InputSyslogTLSSettingsServerSide2TypedDict",
|
|
4375
|
+
"InputSyslogType1",
|
|
4376
|
+
"InputSyslogType2",
|
|
4092
4377
|
"InputSyslogTypedDict",
|
|
4093
4378
|
"InputSystemMetrics",
|
|
4094
4379
|
"InputSystemMetricsCPU",
|
|
@@ -4262,6 +4547,25 @@ __all__ = [
|
|
|
4262
4547
|
"InputWizRetryType",
|
|
4263
4548
|
"InputWizType",
|
|
4264
4549
|
"InputWizTypedDict",
|
|
4550
|
+
"InputWizWebhook",
|
|
4551
|
+
"InputWizWebhookAuthTokensExt",
|
|
4552
|
+
"InputWizWebhookAuthTokensExtMetadatum",
|
|
4553
|
+
"InputWizWebhookAuthTokensExtMetadatumTypedDict",
|
|
4554
|
+
"InputWizWebhookAuthTokensExtTypedDict",
|
|
4555
|
+
"InputWizWebhookCompression",
|
|
4556
|
+
"InputWizWebhookConnection",
|
|
4557
|
+
"InputWizWebhookConnectionTypedDict",
|
|
4558
|
+
"InputWizWebhookMaximumTLSVersion",
|
|
4559
|
+
"InputWizWebhookMetadatum",
|
|
4560
|
+
"InputWizWebhookMetadatumTypedDict",
|
|
4561
|
+
"InputWizWebhookMinimumTLSVersion",
|
|
4562
|
+
"InputWizWebhookMode",
|
|
4563
|
+
"InputWizWebhookPq",
|
|
4564
|
+
"InputWizWebhookPqTypedDict",
|
|
4565
|
+
"InputWizWebhookTLSSettingsServerSide",
|
|
4566
|
+
"InputWizWebhookTLSSettingsServerSideTypedDict",
|
|
4567
|
+
"InputWizWebhookType",
|
|
4568
|
+
"InputWizWebhookTypedDict",
|
|
4265
4569
|
"InputZscalerHec",
|
|
4266
4570
|
"InputZscalerHecAuthToken",
|
|
4267
4571
|
"InputZscalerHecAuthTokenMetadatum",
|
|
@@ -4284,11 +4588,15 @@ __all__ = [
|
|
|
4284
4588
|
"InputZscalerHecTypedDict",
|
|
4285
4589
|
"Interfaces",
|
|
4286
4590
|
"InterfacesTypedDict",
|
|
4591
|
+
"JobSettings",
|
|
4592
|
+
"JobSettingsTypedDict",
|
|
4287
4593
|
"LakeDatasetSearchConfig",
|
|
4288
4594
|
"LakeDatasetSearchConfigTypedDict",
|
|
4289
4595
|
"LakehouseConnectionType",
|
|
4290
4596
|
"LastMetrics",
|
|
4291
4597
|
"LastMetricsTypedDict",
|
|
4598
|
+
"Limits",
|
|
4599
|
+
"LimitsTypedDict",
|
|
4292
4600
|
"ListConfigGroupByProductRequest",
|
|
4293
4601
|
"ListConfigGroupByProductRequestTypedDict",
|
|
4294
4602
|
"ListConfigGroupByProductResponse",
|
|
@@ -4314,10 +4622,14 @@ __all__ = [
|
|
|
4314
4622
|
"LoggedInUsersTypedDict",
|
|
4315
4623
|
"LoginInfo",
|
|
4316
4624
|
"LoginInfoTypedDict",
|
|
4317
|
-
"
|
|
4318
|
-
"
|
|
4319
|
-
"
|
|
4320
|
-
"
|
|
4625
|
+
"LokiAuthOauthHeader1",
|
|
4626
|
+
"LokiAuthOauthHeader1TypedDict",
|
|
4627
|
+
"LokiAuthOauthHeader2",
|
|
4628
|
+
"LokiAuthOauthHeader2TypedDict",
|
|
4629
|
+
"LokiAuthOauthParam1",
|
|
4630
|
+
"LokiAuthOauthParam1TypedDict",
|
|
4631
|
+
"LokiAuthOauthParam2",
|
|
4632
|
+
"LokiAuthOauthParam2TypedDict",
|
|
4321
4633
|
"LookupVersions",
|
|
4322
4634
|
"LookupVersionsTypedDict",
|
|
4323
4635
|
"MTLSSettings",
|
|
@@ -4777,29 +5089,56 @@ __all__ = [
|
|
|
4777
5089
|
"OutputGooglePubsubTypeGooglePubsub",
|
|
4778
5090
|
"OutputGooglePubsubTypedDict",
|
|
4779
5091
|
"OutputGrafanaCloud",
|
|
4780
|
-
"
|
|
4781
|
-
"
|
|
4782
|
-
"
|
|
4783
|
-
"
|
|
4784
|
-
"
|
|
4785
|
-
"
|
|
4786
|
-
"
|
|
4787
|
-
"
|
|
4788
|
-
"
|
|
4789
|
-
"
|
|
4790
|
-
"
|
|
4791
|
-
"
|
|
4792
|
-
"
|
|
4793
|
-
"
|
|
4794
|
-
"
|
|
4795
|
-
"
|
|
4796
|
-
"
|
|
4797
|
-
"
|
|
4798
|
-
"
|
|
4799
|
-
"
|
|
4800
|
-
"
|
|
4801
|
-
"
|
|
4802
|
-
"
|
|
5092
|
+
"OutputGrafanaCloudBackpressureBehavior1",
|
|
5093
|
+
"OutputGrafanaCloudBackpressureBehavior2",
|
|
5094
|
+
"OutputGrafanaCloudCompression1",
|
|
5095
|
+
"OutputGrafanaCloudCompression2",
|
|
5096
|
+
"OutputGrafanaCloudExtraHTTPHeader1",
|
|
5097
|
+
"OutputGrafanaCloudExtraHTTPHeader1TypedDict",
|
|
5098
|
+
"OutputGrafanaCloudExtraHTTPHeader2",
|
|
5099
|
+
"OutputGrafanaCloudExtraHTTPHeader2TypedDict",
|
|
5100
|
+
"OutputGrafanaCloudFailedRequestLoggingMode1",
|
|
5101
|
+
"OutputGrafanaCloudFailedRequestLoggingMode2",
|
|
5102
|
+
"OutputGrafanaCloudGrafanaCloud1",
|
|
5103
|
+
"OutputGrafanaCloudGrafanaCloud1TypedDict",
|
|
5104
|
+
"OutputGrafanaCloudGrafanaCloud2",
|
|
5105
|
+
"OutputGrafanaCloudGrafanaCloud2TypedDict",
|
|
5106
|
+
"OutputGrafanaCloudLabel1",
|
|
5107
|
+
"OutputGrafanaCloudLabel1TypedDict",
|
|
5108
|
+
"OutputGrafanaCloudLabel2",
|
|
5109
|
+
"OutputGrafanaCloudLabel2TypedDict",
|
|
5110
|
+
"OutputGrafanaCloudLokiAuth1",
|
|
5111
|
+
"OutputGrafanaCloudLokiAuth1TypedDict",
|
|
5112
|
+
"OutputGrafanaCloudLokiAuth2",
|
|
5113
|
+
"OutputGrafanaCloudLokiAuth2TypedDict",
|
|
5114
|
+
"OutputGrafanaCloudLokiAuthAuthenticationType1",
|
|
5115
|
+
"OutputGrafanaCloudLokiAuthAuthenticationType2",
|
|
5116
|
+
"OutputGrafanaCloudMessageFormat1",
|
|
5117
|
+
"OutputGrafanaCloudMessageFormat2",
|
|
5118
|
+
"OutputGrafanaCloudMode1",
|
|
5119
|
+
"OutputGrafanaCloudMode2",
|
|
5120
|
+
"OutputGrafanaCloudPqControls1",
|
|
5121
|
+
"OutputGrafanaCloudPqControls1TypedDict",
|
|
5122
|
+
"OutputGrafanaCloudPqControls2",
|
|
5123
|
+
"OutputGrafanaCloudPqControls2TypedDict",
|
|
5124
|
+
"OutputGrafanaCloudPrometheusAuth1",
|
|
5125
|
+
"OutputGrafanaCloudPrometheusAuth1TypedDict",
|
|
5126
|
+
"OutputGrafanaCloudPrometheusAuth2",
|
|
5127
|
+
"OutputGrafanaCloudPrometheusAuth2TypedDict",
|
|
5128
|
+
"OutputGrafanaCloudPrometheusAuthAuthenticationType1",
|
|
5129
|
+
"OutputGrafanaCloudPrometheusAuthAuthenticationType2",
|
|
5130
|
+
"OutputGrafanaCloudQueueFullBehavior1",
|
|
5131
|
+
"OutputGrafanaCloudQueueFullBehavior2",
|
|
5132
|
+
"OutputGrafanaCloudResponseRetrySetting1",
|
|
5133
|
+
"OutputGrafanaCloudResponseRetrySetting1TypedDict",
|
|
5134
|
+
"OutputGrafanaCloudResponseRetrySetting2",
|
|
5135
|
+
"OutputGrafanaCloudResponseRetrySetting2TypedDict",
|
|
5136
|
+
"OutputGrafanaCloudTimeoutRetrySettings1",
|
|
5137
|
+
"OutputGrafanaCloudTimeoutRetrySettings1TypedDict",
|
|
5138
|
+
"OutputGrafanaCloudTimeoutRetrySettings2",
|
|
5139
|
+
"OutputGrafanaCloudTimeoutRetrySettings2TypedDict",
|
|
5140
|
+
"OutputGrafanaCloudType1",
|
|
5141
|
+
"OutputGrafanaCloudType2",
|
|
4803
5142
|
"OutputGrafanaCloudTypedDict",
|
|
4804
5143
|
"OutputGraphite",
|
|
4805
5144
|
"OutputGraphiteBackpressureBehavior",
|
|
@@ -5438,13 +5777,23 @@ __all__ = [
|
|
|
5438
5777
|
"PodFilterTypedDict",
|
|
5439
5778
|
"PrefixOptional",
|
|
5440
5779
|
"ProductsCore",
|
|
5441
|
-
"
|
|
5442
|
-
"
|
|
5443
|
-
"
|
|
5444
|
-
"
|
|
5780
|
+
"PrometheusAuthOauthHeader1",
|
|
5781
|
+
"PrometheusAuthOauthHeader1TypedDict",
|
|
5782
|
+
"PrometheusAuthOauthHeader2",
|
|
5783
|
+
"PrometheusAuthOauthHeader2TypedDict",
|
|
5784
|
+
"PrometheusAuthOauthParam1",
|
|
5785
|
+
"PrometheusAuthOauthParam1TypedDict",
|
|
5786
|
+
"PrometheusAuthOauthParam2",
|
|
5787
|
+
"PrometheusAuthOauthParam2TypedDict",
|
|
5445
5788
|
"QueryBuilderMode",
|
|
5446
5789
|
"RbacResource",
|
|
5447
5790
|
"ReadMode",
|
|
5791
|
+
"RedisCacheLimits",
|
|
5792
|
+
"RedisCacheLimitsTypedDict",
|
|
5793
|
+
"RedisConnectionLimits",
|
|
5794
|
+
"RedisConnectionLimitsTypedDict",
|
|
5795
|
+
"RedisLimits",
|
|
5796
|
+
"RedisLimitsTypedDict",
|
|
5448
5797
|
"Remote",
|
|
5449
5798
|
"RemoteTypedDict",
|
|
5450
5799
|
"Renamed",
|
|
@@ -5470,17 +5819,23 @@ __all__ = [
|
|
|
5470
5819
|
"SNMPv3AuthenticationTypedDict",
|
|
5471
5820
|
"Sample",
|
|
5472
5821
|
"SampleTypedDict",
|
|
5822
|
+
"Samples",
|
|
5823
|
+
"SamplesTypedDict",
|
|
5473
5824
|
"ScanMode",
|
|
5474
5825
|
"ScheduleType",
|
|
5475
5826
|
"SchemeClientOauth",
|
|
5476
5827
|
"SchemeClientOauthTypedDict",
|
|
5477
5828
|
"ScrapeProtocolProtocol",
|
|
5829
|
+
"SearchSettings",
|
|
5830
|
+
"SearchSettingsTypedDict",
|
|
5478
5831
|
"Security",
|
|
5479
5832
|
"SecurityTypedDict",
|
|
5480
5833
|
"SendEventsAs",
|
|
5481
5834
|
"SendLogsAs",
|
|
5482
5835
|
"ServerSideEncryption",
|
|
5483
5836
|
"Services",
|
|
5837
|
+
"ServicesLimits",
|
|
5838
|
+
"ServicesLimitsTypedDict",
|
|
5484
5839
|
"ServicesTypedDict",
|
|
5485
5840
|
"ShardIteratorStart",
|
|
5486
5841
|
"ShardLoadBalancing",
|
|
@@ -5491,6 +5846,68 @@ __all__ = [
|
|
|
5491
5846
|
"SubscriptionTypedDict",
|
|
5492
5847
|
"Summary",
|
|
5493
5848
|
"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",
|
|
5494
5911
|
"Target",
|
|
5495
5912
|
"TargetProtocol",
|
|
5496
5913
|
"TargetTypedDict",
|
|
@@ -5539,12 +5956,27 @@ __all__ = [
|
|
|
5539
5956
|
"UpdateRoutesByIDRequestTypedDict",
|
|
5540
5957
|
"UpdateRoutesByIDResponse",
|
|
5541
5958
|
"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",
|
|
5542
5971
|
"UserAccessControlList",
|
|
5543
5972
|
"UserAccessControlListTypedDict",
|
|
5544
5973
|
"UsersAndGroups",
|
|
5545
5974
|
"UsersAndGroupsTypedDict",
|
|
5546
5975
|
"V3User",
|
|
5547
5976
|
"V3UserTypedDict",
|
|
5977
|
+
"WarmPoolSize",
|
|
5978
|
+
"WarmPoolSizeEnum",
|
|
5979
|
+
"WarmPoolSizeTypedDict",
|
|
5548
5980
|
"WorkerTypes",
|
|
5549
5981
|
"WriteAction",
|
|
5550
5982
|
]
|
|
@@ -5555,6 +5987,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5555
5987
|
"AddHecTokenRequestMetadatumTypedDict": ".addhectokenrequest",
|
|
5556
5988
|
"AddHecTokenRequestTypedDict": ".addhectokenrequest",
|
|
5557
5989
|
"AppMode": ".appmode",
|
|
5990
|
+
"AuthConfig": ".authconfig",
|
|
5991
|
+
"AuthConfigType": ".authconfig",
|
|
5992
|
+
"AuthConfigTypedDict": ".authconfig",
|
|
5558
5993
|
"AuthToken": ".authtoken",
|
|
5559
5994
|
"AuthTokenTypedDict": ".authtoken",
|
|
5560
5995
|
"CacheConnection": ".cacheconnection",
|
|
@@ -5563,6 +5998,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5563
5998
|
"CloudProvider": ".cloudprovider",
|
|
5564
5999
|
"Commit": ".commit",
|
|
5565
6000
|
"CommitTypedDict": ".commit",
|
|
6001
|
+
"CommonServiceLimitConfigs": ".commonservicelimitconfigs",
|
|
6002
|
+
"CommonServiceLimitConfigsTypedDict": ".commonservicelimitconfigs",
|
|
5566
6003
|
"ConfigGroup": ".configgroup",
|
|
5567
6004
|
"ConfigGroupType": ".configgroup",
|
|
5568
6005
|
"ConfigGroupTypedDict": ".configgroup",
|
|
@@ -5666,6 +6103,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5666
6103
|
"DistributedSummaryTypedDict": ".distributedsummary",
|
|
5667
6104
|
"DistributedSummaryWorkers": ".distributedsummary",
|
|
5668
6105
|
"DistributedSummaryWorkersTypedDict": ".distributedsummary",
|
|
6106
|
+
"EdgeHeartbeatMetricsMode": ".edgeheartbeatmetricsmode",
|
|
5669
6107
|
"GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
|
|
5670
6108
|
"GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
|
|
5671
6109
|
"GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
|
|
@@ -5710,6 +6148,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5710
6148
|
"GetOutputSamplesByIDRequestTypedDict": ".getoutputsamplesbyidop",
|
|
5711
6149
|
"GetOutputSamplesByIDResponse": ".getoutputsamplesbyidop",
|
|
5712
6150
|
"GetOutputSamplesByIDResponseTypedDict": ".getoutputsamplesbyidop",
|
|
6151
|
+
"GetPacksByIDRequest": ".getpacksbyidop",
|
|
6152
|
+
"GetPacksByIDRequestTypedDict": ".getpacksbyidop",
|
|
6153
|
+
"GetPacksByIDResponse": ".getpacksbyidop",
|
|
6154
|
+
"GetPacksByIDResponseTypedDict": ".getpacksbyidop",
|
|
5713
6155
|
"GetPacksRequest": ".getpacksop",
|
|
5714
6156
|
"GetPacksRequestTypedDict": ".getpacksop",
|
|
5715
6157
|
"GetPacksResponse": ".getpacksop",
|
|
@@ -5726,6 +6168,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5726
6168
|
"GetSummaryRequestTypedDict": ".getsummaryop",
|
|
5727
6169
|
"GetSummaryResponse": ".getsummaryop",
|
|
5728
6170
|
"GetSummaryResponseTypedDict": ".getsummaryop",
|
|
6171
|
+
"GetSystemSettingsAuthResponse": ".getsystemsettingsauthop",
|
|
6172
|
+
"GetSystemSettingsAuthResponseTypedDict": ".getsystemsettingsauthop",
|
|
6173
|
+
"GetSystemSettingsConfResponse": ".getsystemsettingsconfop",
|
|
6174
|
+
"GetSystemSettingsConfResponseTypedDict": ".getsystemsettingsconfop",
|
|
6175
|
+
"GetSystemSettingsGitSettingsResponse": ".getsystemsettingsgitsettingsop",
|
|
6176
|
+
"GetSystemSettingsGitSettingsResponseTypedDict": ".getsystemsettingsgitsettingsop",
|
|
5729
6177
|
"GetVersionBranchResponse": ".getversionbranchop",
|
|
5730
6178
|
"GetVersionBranchResponseTypedDict": ".getversionbranchop",
|
|
5731
6179
|
"GetVersionCountRequest": ".getversioncountop",
|
|
@@ -5774,6 +6222,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5774
6222
|
"RemoteTypedDict": ".gitinfo",
|
|
5775
6223
|
"GitLogResult": ".gitlogresult",
|
|
5776
6224
|
"GitLogResultTypedDict": ".gitlogresult",
|
|
6225
|
+
"GitOpsType": ".gitopstype",
|
|
5777
6226
|
"GitRevertParams": ".gitrevertparams",
|
|
5778
6227
|
"GitRevertParamsTypedDict": ".gitrevertparams",
|
|
5779
6228
|
"Audit": ".gitrevertresult",
|
|
@@ -5782,6 +6231,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5782
6231
|
"GitRevertResultFiles": ".gitrevertresult",
|
|
5783
6232
|
"GitRevertResultFilesTypedDict": ".gitrevertresult",
|
|
5784
6233
|
"GitRevertResultTypedDict": ".gitrevertresult",
|
|
6234
|
+
"GitSettings": ".gitsettings",
|
|
6235
|
+
"GitSettingsTypedDict": ".gitsettings",
|
|
5785
6236
|
"File": ".gitstatusresult",
|
|
5786
6237
|
"FileTypedDict": ".gitstatusresult",
|
|
5787
6238
|
"GitStatusResult": ".gitstatusresult",
|
|
@@ -6127,34 +6578,65 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6127
6578
|
"InputGooglePubsubType": ".inputgooglepubsub",
|
|
6128
6579
|
"InputGooglePubsubTypedDict": ".inputgooglepubsub",
|
|
6129
6580
|
"InputGrafana": ".inputgrafana",
|
|
6130
|
-
"
|
|
6131
|
-
"
|
|
6132
|
-
"
|
|
6133
|
-
"
|
|
6134
|
-
"
|
|
6135
|
-
"
|
|
6136
|
-
"
|
|
6137
|
-
"
|
|
6138
|
-
"
|
|
6139
|
-
"
|
|
6140
|
-
"
|
|
6141
|
-
"
|
|
6142
|
-
"
|
|
6143
|
-
"
|
|
6144
|
-
"
|
|
6145
|
-
"
|
|
6146
|
-
"
|
|
6147
|
-
"
|
|
6148
|
-
"
|
|
6581
|
+
"InputGrafanaCompression1": ".inputgrafana",
|
|
6582
|
+
"InputGrafanaCompression2": ".inputgrafana",
|
|
6583
|
+
"InputGrafanaConnection1": ".inputgrafana",
|
|
6584
|
+
"InputGrafanaConnection1TypedDict": ".inputgrafana",
|
|
6585
|
+
"InputGrafanaConnection2": ".inputgrafana",
|
|
6586
|
+
"InputGrafanaConnection2TypedDict": ".inputgrafana",
|
|
6587
|
+
"InputGrafanaGrafana1": ".inputgrafana",
|
|
6588
|
+
"InputGrafanaGrafana1TypedDict": ".inputgrafana",
|
|
6589
|
+
"InputGrafanaGrafana2": ".inputgrafana",
|
|
6590
|
+
"InputGrafanaGrafana2TypedDict": ".inputgrafana",
|
|
6591
|
+
"InputGrafanaLokiAuth1": ".inputgrafana",
|
|
6592
|
+
"InputGrafanaLokiAuth1TypedDict": ".inputgrafana",
|
|
6593
|
+
"InputGrafanaLokiAuth2": ".inputgrafana",
|
|
6594
|
+
"InputGrafanaLokiAuth2TypedDict": ".inputgrafana",
|
|
6595
|
+
"InputGrafanaLokiAuthAuthenticationType1": ".inputgrafana",
|
|
6596
|
+
"InputGrafanaLokiAuthAuthenticationType2": ".inputgrafana",
|
|
6597
|
+
"InputGrafanaMaximumTLSVersion1": ".inputgrafana",
|
|
6598
|
+
"InputGrafanaMaximumTLSVersion2": ".inputgrafana",
|
|
6599
|
+
"InputGrafanaMetadatum1": ".inputgrafana",
|
|
6600
|
+
"InputGrafanaMetadatum1TypedDict": ".inputgrafana",
|
|
6601
|
+
"InputGrafanaMetadatum2": ".inputgrafana",
|
|
6602
|
+
"InputGrafanaMetadatum2TypedDict": ".inputgrafana",
|
|
6603
|
+
"InputGrafanaMinimumTLSVersion1": ".inputgrafana",
|
|
6604
|
+
"InputGrafanaMinimumTLSVersion2": ".inputgrafana",
|
|
6605
|
+
"InputGrafanaMode1": ".inputgrafana",
|
|
6606
|
+
"InputGrafanaMode2": ".inputgrafana",
|
|
6607
|
+
"InputGrafanaPq1": ".inputgrafana",
|
|
6608
|
+
"InputGrafanaPq1TypedDict": ".inputgrafana",
|
|
6609
|
+
"InputGrafanaPq2": ".inputgrafana",
|
|
6610
|
+
"InputGrafanaPq2TypedDict": ".inputgrafana",
|
|
6611
|
+
"InputGrafanaPrometheusAuth1": ".inputgrafana",
|
|
6612
|
+
"InputGrafanaPrometheusAuth1TypedDict": ".inputgrafana",
|
|
6613
|
+
"InputGrafanaPrometheusAuth2": ".inputgrafana",
|
|
6614
|
+
"InputGrafanaPrometheusAuth2TypedDict": ".inputgrafana",
|
|
6615
|
+
"InputGrafanaPrometheusAuthAuthenticationType1": ".inputgrafana",
|
|
6616
|
+
"InputGrafanaPrometheusAuthAuthenticationType2": ".inputgrafana",
|
|
6617
|
+
"InputGrafanaTLSSettingsServerSide1": ".inputgrafana",
|
|
6618
|
+
"InputGrafanaTLSSettingsServerSide1TypedDict": ".inputgrafana",
|
|
6619
|
+
"InputGrafanaTLSSettingsServerSide2": ".inputgrafana",
|
|
6620
|
+
"InputGrafanaTLSSettingsServerSide2TypedDict": ".inputgrafana",
|
|
6621
|
+
"InputGrafanaType1": ".inputgrafana",
|
|
6622
|
+
"InputGrafanaType2": ".inputgrafana",
|
|
6149
6623
|
"InputGrafanaTypedDict": ".inputgrafana",
|
|
6150
|
-
"
|
|
6151
|
-
"
|
|
6152
|
-
"
|
|
6153
|
-
"
|
|
6154
|
-
"
|
|
6155
|
-
"
|
|
6156
|
-
"
|
|
6157
|
-
"
|
|
6624
|
+
"LokiAuthOauthHeader1": ".inputgrafana",
|
|
6625
|
+
"LokiAuthOauthHeader1TypedDict": ".inputgrafana",
|
|
6626
|
+
"LokiAuthOauthHeader2": ".inputgrafana",
|
|
6627
|
+
"LokiAuthOauthHeader2TypedDict": ".inputgrafana",
|
|
6628
|
+
"LokiAuthOauthParam1": ".inputgrafana",
|
|
6629
|
+
"LokiAuthOauthParam1TypedDict": ".inputgrafana",
|
|
6630
|
+
"LokiAuthOauthParam2": ".inputgrafana",
|
|
6631
|
+
"LokiAuthOauthParam2TypedDict": ".inputgrafana",
|
|
6632
|
+
"PrometheusAuthOauthHeader1": ".inputgrafana",
|
|
6633
|
+
"PrometheusAuthOauthHeader1TypedDict": ".inputgrafana",
|
|
6634
|
+
"PrometheusAuthOauthHeader2": ".inputgrafana",
|
|
6635
|
+
"PrometheusAuthOauthHeader2TypedDict": ".inputgrafana",
|
|
6636
|
+
"PrometheusAuthOauthParam1": ".inputgrafana",
|
|
6637
|
+
"PrometheusAuthOauthParam1TypedDict": ".inputgrafana",
|
|
6638
|
+
"PrometheusAuthOauthParam2": ".inputgrafana",
|
|
6639
|
+
"PrometheusAuthOauthParam2TypedDict": ".inputgrafana",
|
|
6158
6640
|
"InputHTTP": ".inputhttp",
|
|
6159
6641
|
"InputHTTPAuthTokensExt": ".inputhttp",
|
|
6160
6642
|
"InputHTTPAuthTokensExtMetadatum": ".inputhttp",
|
|
@@ -6659,19 +7141,36 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6659
7141
|
"InputSqsType": ".inputsqs",
|
|
6660
7142
|
"InputSqsTypedDict": ".inputsqs",
|
|
6661
7143
|
"InputSyslog": ".inputsyslog",
|
|
6662
|
-
"
|
|
6663
|
-
"
|
|
6664
|
-
"
|
|
6665
|
-
"
|
|
6666
|
-
"
|
|
6667
|
-
"
|
|
6668
|
-
"
|
|
6669
|
-
"
|
|
6670
|
-
"
|
|
6671
|
-
"
|
|
6672
|
-
"
|
|
6673
|
-
"
|
|
6674
|
-
"
|
|
7144
|
+
"InputSyslogCompression1": ".inputsyslog",
|
|
7145
|
+
"InputSyslogCompression2": ".inputsyslog",
|
|
7146
|
+
"InputSyslogConnection1": ".inputsyslog",
|
|
7147
|
+
"InputSyslogConnection1TypedDict": ".inputsyslog",
|
|
7148
|
+
"InputSyslogConnection2": ".inputsyslog",
|
|
7149
|
+
"InputSyslogConnection2TypedDict": ".inputsyslog",
|
|
7150
|
+
"InputSyslogMaximumTLSVersion1": ".inputsyslog",
|
|
7151
|
+
"InputSyslogMaximumTLSVersion2": ".inputsyslog",
|
|
7152
|
+
"InputSyslogMetadatum1": ".inputsyslog",
|
|
7153
|
+
"InputSyslogMetadatum1TypedDict": ".inputsyslog",
|
|
7154
|
+
"InputSyslogMetadatum2": ".inputsyslog",
|
|
7155
|
+
"InputSyslogMetadatum2TypedDict": ".inputsyslog",
|
|
7156
|
+
"InputSyslogMinimumTLSVersion1": ".inputsyslog",
|
|
7157
|
+
"InputSyslogMinimumTLSVersion2": ".inputsyslog",
|
|
7158
|
+
"InputSyslogMode1": ".inputsyslog",
|
|
7159
|
+
"InputSyslogMode2": ".inputsyslog",
|
|
7160
|
+
"InputSyslogPq1": ".inputsyslog",
|
|
7161
|
+
"InputSyslogPq1TypedDict": ".inputsyslog",
|
|
7162
|
+
"InputSyslogPq2": ".inputsyslog",
|
|
7163
|
+
"InputSyslogPq2TypedDict": ".inputsyslog",
|
|
7164
|
+
"InputSyslogSyslog1": ".inputsyslog",
|
|
7165
|
+
"InputSyslogSyslog1TypedDict": ".inputsyslog",
|
|
7166
|
+
"InputSyslogSyslog2": ".inputsyslog",
|
|
7167
|
+
"InputSyslogSyslog2TypedDict": ".inputsyslog",
|
|
7168
|
+
"InputSyslogTLSSettingsServerSide1": ".inputsyslog",
|
|
7169
|
+
"InputSyslogTLSSettingsServerSide1TypedDict": ".inputsyslog",
|
|
7170
|
+
"InputSyslogTLSSettingsServerSide2": ".inputsyslog",
|
|
7171
|
+
"InputSyslogTLSSettingsServerSide2TypedDict": ".inputsyslog",
|
|
7172
|
+
"InputSyslogType1": ".inputsyslog",
|
|
7173
|
+
"InputSyslogType2": ".inputsyslog",
|
|
6675
7174
|
"InputSyslogTypedDict": ".inputsyslog",
|
|
6676
7175
|
"Container": ".inputsystemmetrics",
|
|
6677
7176
|
"ContainerMode": ".inputsystemmetrics",
|
|
@@ -6878,6 +7377,25 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6878
7377
|
"InputWizRetryType": ".inputwiz",
|
|
6879
7378
|
"InputWizType": ".inputwiz",
|
|
6880
7379
|
"InputWizTypedDict": ".inputwiz",
|
|
7380
|
+
"InputWizWebhook": ".inputwizwebhook",
|
|
7381
|
+
"InputWizWebhookAuthTokensExt": ".inputwizwebhook",
|
|
7382
|
+
"InputWizWebhookAuthTokensExtMetadatum": ".inputwizwebhook",
|
|
7383
|
+
"InputWizWebhookAuthTokensExtMetadatumTypedDict": ".inputwizwebhook",
|
|
7384
|
+
"InputWizWebhookAuthTokensExtTypedDict": ".inputwizwebhook",
|
|
7385
|
+
"InputWizWebhookCompression": ".inputwizwebhook",
|
|
7386
|
+
"InputWizWebhookConnection": ".inputwizwebhook",
|
|
7387
|
+
"InputWizWebhookConnectionTypedDict": ".inputwizwebhook",
|
|
7388
|
+
"InputWizWebhookMaximumTLSVersion": ".inputwizwebhook",
|
|
7389
|
+
"InputWizWebhookMetadatum": ".inputwizwebhook",
|
|
7390
|
+
"InputWizWebhookMetadatumTypedDict": ".inputwizwebhook",
|
|
7391
|
+
"InputWizWebhookMinimumTLSVersion": ".inputwizwebhook",
|
|
7392
|
+
"InputWizWebhookMode": ".inputwizwebhook",
|
|
7393
|
+
"InputWizWebhookPq": ".inputwizwebhook",
|
|
7394
|
+
"InputWizWebhookPqTypedDict": ".inputwizwebhook",
|
|
7395
|
+
"InputWizWebhookTLSSettingsServerSide": ".inputwizwebhook",
|
|
7396
|
+
"InputWizWebhookTLSSettingsServerSideTypedDict": ".inputwizwebhook",
|
|
7397
|
+
"InputWizWebhookType": ".inputwizwebhook",
|
|
7398
|
+
"InputWizWebhookTypedDict": ".inputwizwebhook",
|
|
6881
7399
|
"InputZscalerHec": ".inputzscalerhec",
|
|
6882
7400
|
"InputZscalerHecAuthToken": ".inputzscalerhec",
|
|
6883
7401
|
"InputZscalerHecAuthTokenMetadatum": ".inputzscalerhec",
|
|
@@ -6898,9 +7416,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6898
7416
|
"InputZscalerHecTLSSettingsServerSideTypedDict": ".inputzscalerhec",
|
|
6899
7417
|
"InputZscalerHecType": ".inputzscalerhec",
|
|
6900
7418
|
"InputZscalerHecTypedDict": ".inputzscalerhec",
|
|
7419
|
+
"JobSettings": ".jobsettings",
|
|
7420
|
+
"JobSettingsTypedDict": ".jobsettings",
|
|
6901
7421
|
"LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
|
|
6902
7422
|
"LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
|
|
6903
7423
|
"LakehouseConnectionType": ".lakehouseconnectiontype",
|
|
7424
|
+
"Limits": ".limits",
|
|
7425
|
+
"LimitsTypedDict": ".limits",
|
|
7426
|
+
"Samples": ".limits",
|
|
7427
|
+
"SamplesTypedDict": ".limits",
|
|
6904
7428
|
"ListConfigGroupByProductRequest": ".listconfiggroupbyproductop",
|
|
6905
7429
|
"ListConfigGroupByProductRequestTypedDict": ".listconfiggroupbyproductop",
|
|
6906
7430
|
"ListConfigGroupByProductResponse": ".listconfiggroupbyproductop",
|
|
@@ -7414,29 +7938,56 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7414
7938
|
"OutputGooglePubsubTypeGooglePubsub": ".outputgooglepubsub",
|
|
7415
7939
|
"OutputGooglePubsubTypedDict": ".outputgooglepubsub",
|
|
7416
7940
|
"OutputGrafanaCloud": ".outputgrafanacloud",
|
|
7417
|
-
"
|
|
7418
|
-
"
|
|
7419
|
-
"
|
|
7420
|
-
"
|
|
7421
|
-
"
|
|
7422
|
-
"
|
|
7423
|
-
"
|
|
7424
|
-
"
|
|
7425
|
-
"
|
|
7426
|
-
"
|
|
7427
|
-
"
|
|
7428
|
-
"
|
|
7429
|
-
"
|
|
7430
|
-
"
|
|
7431
|
-
"
|
|
7432
|
-
"
|
|
7433
|
-
"
|
|
7434
|
-
"
|
|
7435
|
-
"
|
|
7436
|
-
"
|
|
7437
|
-
"
|
|
7438
|
-
"
|
|
7439
|
-
"
|
|
7941
|
+
"OutputGrafanaCloudBackpressureBehavior1": ".outputgrafanacloud",
|
|
7942
|
+
"OutputGrafanaCloudBackpressureBehavior2": ".outputgrafanacloud",
|
|
7943
|
+
"OutputGrafanaCloudCompression1": ".outputgrafanacloud",
|
|
7944
|
+
"OutputGrafanaCloudCompression2": ".outputgrafanacloud",
|
|
7945
|
+
"OutputGrafanaCloudExtraHTTPHeader1": ".outputgrafanacloud",
|
|
7946
|
+
"OutputGrafanaCloudExtraHTTPHeader1TypedDict": ".outputgrafanacloud",
|
|
7947
|
+
"OutputGrafanaCloudExtraHTTPHeader2": ".outputgrafanacloud",
|
|
7948
|
+
"OutputGrafanaCloudExtraHTTPHeader2TypedDict": ".outputgrafanacloud",
|
|
7949
|
+
"OutputGrafanaCloudFailedRequestLoggingMode1": ".outputgrafanacloud",
|
|
7950
|
+
"OutputGrafanaCloudFailedRequestLoggingMode2": ".outputgrafanacloud",
|
|
7951
|
+
"OutputGrafanaCloudGrafanaCloud1": ".outputgrafanacloud",
|
|
7952
|
+
"OutputGrafanaCloudGrafanaCloud1TypedDict": ".outputgrafanacloud",
|
|
7953
|
+
"OutputGrafanaCloudGrafanaCloud2": ".outputgrafanacloud",
|
|
7954
|
+
"OutputGrafanaCloudGrafanaCloud2TypedDict": ".outputgrafanacloud",
|
|
7955
|
+
"OutputGrafanaCloudLabel1": ".outputgrafanacloud",
|
|
7956
|
+
"OutputGrafanaCloudLabel1TypedDict": ".outputgrafanacloud",
|
|
7957
|
+
"OutputGrafanaCloudLabel2": ".outputgrafanacloud",
|
|
7958
|
+
"OutputGrafanaCloudLabel2TypedDict": ".outputgrafanacloud",
|
|
7959
|
+
"OutputGrafanaCloudLokiAuth1": ".outputgrafanacloud",
|
|
7960
|
+
"OutputGrafanaCloudLokiAuth1TypedDict": ".outputgrafanacloud",
|
|
7961
|
+
"OutputGrafanaCloudLokiAuth2": ".outputgrafanacloud",
|
|
7962
|
+
"OutputGrafanaCloudLokiAuth2TypedDict": ".outputgrafanacloud",
|
|
7963
|
+
"OutputGrafanaCloudLokiAuthAuthenticationType1": ".outputgrafanacloud",
|
|
7964
|
+
"OutputGrafanaCloudLokiAuthAuthenticationType2": ".outputgrafanacloud",
|
|
7965
|
+
"OutputGrafanaCloudMessageFormat1": ".outputgrafanacloud",
|
|
7966
|
+
"OutputGrafanaCloudMessageFormat2": ".outputgrafanacloud",
|
|
7967
|
+
"OutputGrafanaCloudMode1": ".outputgrafanacloud",
|
|
7968
|
+
"OutputGrafanaCloudMode2": ".outputgrafanacloud",
|
|
7969
|
+
"OutputGrafanaCloudPqControls1": ".outputgrafanacloud",
|
|
7970
|
+
"OutputGrafanaCloudPqControls1TypedDict": ".outputgrafanacloud",
|
|
7971
|
+
"OutputGrafanaCloudPqControls2": ".outputgrafanacloud",
|
|
7972
|
+
"OutputGrafanaCloudPqControls2TypedDict": ".outputgrafanacloud",
|
|
7973
|
+
"OutputGrafanaCloudPrometheusAuth1": ".outputgrafanacloud",
|
|
7974
|
+
"OutputGrafanaCloudPrometheusAuth1TypedDict": ".outputgrafanacloud",
|
|
7975
|
+
"OutputGrafanaCloudPrometheusAuth2": ".outputgrafanacloud",
|
|
7976
|
+
"OutputGrafanaCloudPrometheusAuth2TypedDict": ".outputgrafanacloud",
|
|
7977
|
+
"OutputGrafanaCloudPrometheusAuthAuthenticationType1": ".outputgrafanacloud",
|
|
7978
|
+
"OutputGrafanaCloudPrometheusAuthAuthenticationType2": ".outputgrafanacloud",
|
|
7979
|
+
"OutputGrafanaCloudQueueFullBehavior1": ".outputgrafanacloud",
|
|
7980
|
+
"OutputGrafanaCloudQueueFullBehavior2": ".outputgrafanacloud",
|
|
7981
|
+
"OutputGrafanaCloudResponseRetrySetting1": ".outputgrafanacloud",
|
|
7982
|
+
"OutputGrafanaCloudResponseRetrySetting1TypedDict": ".outputgrafanacloud",
|
|
7983
|
+
"OutputGrafanaCloudResponseRetrySetting2": ".outputgrafanacloud",
|
|
7984
|
+
"OutputGrafanaCloudResponseRetrySetting2TypedDict": ".outputgrafanacloud",
|
|
7985
|
+
"OutputGrafanaCloudTimeoutRetrySettings1": ".outputgrafanacloud",
|
|
7986
|
+
"OutputGrafanaCloudTimeoutRetrySettings1TypedDict": ".outputgrafanacloud",
|
|
7987
|
+
"OutputGrafanaCloudTimeoutRetrySettings2": ".outputgrafanacloud",
|
|
7988
|
+
"OutputGrafanaCloudTimeoutRetrySettings2TypedDict": ".outputgrafanacloud",
|
|
7989
|
+
"OutputGrafanaCloudType1": ".outputgrafanacloud",
|
|
7990
|
+
"OutputGrafanaCloudType2": ".outputgrafanacloud",
|
|
7440
7991
|
"OutputGrafanaCloudTypedDict": ".outputgrafanacloud",
|
|
7441
7992
|
"OutputGraphite": ".outputgraphite",
|
|
7442
7993
|
"OutputGraphiteBackpressureBehavior": ".outputgraphite",
|
|
@@ -8086,6 +8637,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8086
8637
|
"PipelineFunctionConfTypedDict": ".pipelinefunctionconf",
|
|
8087
8638
|
"ProductsCore": ".productscore",
|
|
8088
8639
|
"RbacResource": ".rbacresource",
|
|
8640
|
+
"RedisCacheLimits": ".rediscachelimits",
|
|
8641
|
+
"RedisCacheLimitsTypedDict": ".rediscachelimits",
|
|
8642
|
+
"RedisConnectionLimits": ".redisconnectionlimits",
|
|
8643
|
+
"RedisConnectionLimitsTypedDict": ".redisconnectionlimits",
|
|
8644
|
+
"RedisLimits": ".redislimits",
|
|
8645
|
+
"RedisLimitsTypedDict": ".redislimits",
|
|
8089
8646
|
"ResourcePolicy": ".resourcepolicy",
|
|
8090
8647
|
"ResourcePolicyTypedDict": ".resourcepolicy",
|
|
8091
8648
|
"RouteCloneConf": ".routecloneconf",
|
|
@@ -8102,8 +8659,79 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8102
8659
|
"RoutesRouteTypedDict": ".routesroute",
|
|
8103
8660
|
"SchemeClientOauth": ".schemeclientoauth",
|
|
8104
8661
|
"SchemeClientOauthTypedDict": ".schemeclientoauth",
|
|
8662
|
+
"SearchSettings": ".searchsettings",
|
|
8663
|
+
"SearchSettingsTypedDict": ".searchsettings",
|
|
8664
|
+
"WarmPoolSize": ".searchsettings",
|
|
8665
|
+
"WarmPoolSizeEnum": ".searchsettings",
|
|
8666
|
+
"WarmPoolSizeTypedDict": ".searchsettings",
|
|
8105
8667
|
"Security": ".security",
|
|
8106
8668
|
"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",
|
|
8107
8735
|
"TeamAccessControlList": ".teamaccesscontrollist",
|
|
8108
8736
|
"TeamAccessControlListTypedDict": ".teamaccesscontrollist",
|
|
8109
8737
|
"UpdateConfigGroupByProductAndIDRequest": ".updateconfiggroupbyproductandidop",
|
|
@@ -8146,6 +8774,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8146
8774
|
"UpdateRoutesByIDRequestTypedDict": ".updateroutesbyidop",
|
|
8147
8775
|
"UpdateRoutesByIDResponse": ".updateroutesbyidop",
|
|
8148
8776
|
"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",
|
|
8149
8789
|
"UserAccessControlList": ".useraccesscontrollist",
|
|
8150
8790
|
"UserAccessControlListTypedDict": ".useraccesscontrollist",
|
|
8151
8791
|
"WorkerTypes": ".workertypes",
|