cribl-control-plane 0.1.0b1__py3-none-any.whl → 0.2.0a1__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/_hooks/clientcredentials.py +91 -41
- cribl_control_plane/_version.py +4 -4
- cribl_control_plane/errors/apierror.py +1 -1
- cribl_control_plane/errors/criblcontrolplaneerror.py +1 -1
- cribl_control_plane/errors/error.py +1 -1
- cribl_control_plane/errors/healthstatus_error.py +1 -1
- cribl_control_plane/errors/no_response_error.py +1 -1
- cribl_control_plane/errors/responsevalidationerror.py +1 -1
- cribl_control_plane/httpclient.py +0 -1
- cribl_control_plane/lakedatasets.py +12 -12
- cribl_control_plane/models/__init__.py +106 -57
- cribl_control_plane/models/appmode.py +14 -0
- cribl_control_plane/models/cribllakedatasetupdate.py +81 -0
- cribl_control_plane/models/gitinfo.py +14 -3
- cribl_control_plane/models/hbcriblinfo.py +3 -14
- cribl_control_plane/models/heartbeatmetadata.py +0 -3
- cribl_control_plane/models/inputconfluentcloud.py +18 -0
- cribl_control_plane/models/inputkafka.py +17 -0
- cribl_control_plane/models/inputmsk.py +17 -0
- cribl_control_plane/models/inputsqs.py +8 -10
- cribl_control_plane/models/nodeprovidedinfo.py +0 -3
- cribl_control_plane/models/output.py +3 -3
- cribl_control_plane/models/outputchronicle.py +431 -0
- cribl_control_plane/models/outputconfluentcloud.py +18 -0
- cribl_control_plane/models/outputgooglechronicle.py +5 -4
- cribl_control_plane/models/outputgooglecloudlogging.py +9 -4
- cribl_control_plane/models/outputkafka.py +17 -0
- cribl_control_plane/models/outputmsk.py +17 -0
- cribl_control_plane/models/outputsqs.py +8 -10
- cribl_control_plane/models/routecloneconf.py +13 -0
- cribl_control_plane/models/routeconf.py +4 -3
- cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +9 -5
- {cribl_control_plane-0.1.0b1.dist-info → cribl_control_plane-0.2.0a1.dist-info}/METADATA +1 -8
- {cribl_control_plane-0.1.0b1.dist-info → cribl_control_plane-0.2.0a1.dist-info}/RECORD +35 -32
- cribl_control_plane/models/outputdatabricks.py +0 -439
- {cribl_control_plane-0.1.0b1.dist-info → cribl_control_plane-0.2.0a1.dist-info}/WHEEL +0 -0
|
@@ -12,6 +12,7 @@ if TYPE_CHECKING:
|
|
|
12
12
|
AddHecTokenRequestMetadatumTypedDict,
|
|
13
13
|
AddHecTokenRequestTypedDict,
|
|
14
14
|
)
|
|
15
|
+
from .appmode import AppMode
|
|
15
16
|
from .authtoken import AuthToken, AuthTokenTypedDict
|
|
16
17
|
from .branchinfo import BranchInfo, BranchInfoTypedDict
|
|
17
18
|
from .cacheconnection import CacheConnection, CacheConnectionTypedDict
|
|
@@ -97,6 +98,11 @@ if TYPE_CHECKING:
|
|
|
97
98
|
CriblLakeDatasetFormat,
|
|
98
99
|
CriblLakeDatasetTypedDict,
|
|
99
100
|
)
|
|
101
|
+
from .cribllakedatasetupdate import (
|
|
102
|
+
CriblLakeDatasetUpdate,
|
|
103
|
+
CriblLakeDatasetUpdateFormat,
|
|
104
|
+
CriblLakeDatasetUpdateTypedDict,
|
|
105
|
+
)
|
|
100
106
|
from .currentbranchresult import CurrentBranchResult, CurrentBranchResultTypedDict
|
|
101
107
|
from .datasetmetadata import DatasetMetadata, DatasetMetadataTypedDict, ScanMode
|
|
102
108
|
from .datasetmetadataruninfo import (
|
|
@@ -335,7 +341,7 @@ if TYPE_CHECKING:
|
|
|
335
341
|
from .gitdiffresult import GitDiffResult, GitDiffResultTypedDict
|
|
336
342
|
from .gitfile import GitFile, GitFileTypedDict
|
|
337
343
|
from .gitfilesresponse import GitFilesResponse, GitFilesResponseTypedDict
|
|
338
|
-
from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteTypedDict
|
|
344
|
+
from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteEnum, RemoteTypedDict
|
|
339
345
|
from .gitlogresult import GitLogResult, GitLogResultTypedDict
|
|
340
346
|
from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
|
|
341
347
|
from .gitrevertresult import (
|
|
@@ -355,13 +361,7 @@ if TYPE_CHECKING:
|
|
|
355
361
|
Renamed,
|
|
356
362
|
RenamedTypedDict,
|
|
357
363
|
)
|
|
358
|
-
from .hbcriblinfo import
|
|
359
|
-
Config,
|
|
360
|
-
ConfigTypedDict,
|
|
361
|
-
DistMode,
|
|
362
|
-
HBCriblInfo,
|
|
363
|
-
HBCriblInfoTypedDict,
|
|
364
|
-
)
|
|
364
|
+
from .hbcriblinfo import Config, ConfigTypedDict, HBCriblInfo, HBCriblInfoTypedDict
|
|
365
365
|
from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
|
|
366
366
|
from .healthstatus import HealthStatus, HealthStatusTypedDict, Role, Status
|
|
367
367
|
from .heartbeatmetadata import (
|
|
@@ -468,6 +468,7 @@ if TYPE_CHECKING:
|
|
|
468
468
|
InputConfluentCloudPqControlsTypedDict,
|
|
469
469
|
InputConfluentCloudPqTypedDict,
|
|
470
470
|
InputConfluentCloudSASLMechanism,
|
|
471
|
+
InputConfluentCloudSchemaType,
|
|
471
472
|
InputConfluentCloudTLSSettingsClientSide,
|
|
472
473
|
InputConfluentCloudTLSSettingsClientSideTypedDict,
|
|
473
474
|
InputConfluentCloudType,
|
|
@@ -926,6 +927,7 @@ if TYPE_CHECKING:
|
|
|
926
927
|
InputKafkaPqControlsTypedDict,
|
|
927
928
|
InputKafkaPqTypedDict,
|
|
928
929
|
InputKafkaSASLMechanism,
|
|
930
|
+
InputKafkaSchemaType,
|
|
929
931
|
InputKafkaTLSSettingsClientSide,
|
|
930
932
|
InputKafkaTLSSettingsClientSideTypedDict,
|
|
931
933
|
InputKafkaType,
|
|
@@ -1093,6 +1095,7 @@ if TYPE_CHECKING:
|
|
|
1093
1095
|
InputMskPqControls,
|
|
1094
1096
|
InputMskPqControlsTypedDict,
|
|
1095
1097
|
InputMskPqTypedDict,
|
|
1098
|
+
InputMskSchemaType,
|
|
1096
1099
|
InputMskSignatureVersion,
|
|
1097
1100
|
InputMskTLSSettingsClientSide,
|
|
1098
1101
|
InputMskTLSSettingsClientSideTypedDict,
|
|
@@ -1920,6 +1923,27 @@ if TYPE_CHECKING:
|
|
|
1920
1923
|
OutputAzureLogsType,
|
|
1921
1924
|
OutputAzureLogsTypedDict,
|
|
1922
1925
|
)
|
|
1926
|
+
from .outputchronicle import (
|
|
1927
|
+
OutputChronicle,
|
|
1928
|
+
OutputChronicleAuthenticationMethod,
|
|
1929
|
+
OutputChronicleBackpressureBehavior,
|
|
1930
|
+
OutputChronicleCompression,
|
|
1931
|
+
OutputChronicleCustomLabel,
|
|
1932
|
+
OutputChronicleCustomLabelTypedDict,
|
|
1933
|
+
OutputChronicleExtraHTTPHeader,
|
|
1934
|
+
OutputChronicleExtraHTTPHeaderTypedDict,
|
|
1935
|
+
OutputChronicleFailedRequestLoggingMode,
|
|
1936
|
+
OutputChronicleMode,
|
|
1937
|
+
OutputChroniclePqControls,
|
|
1938
|
+
OutputChroniclePqControlsTypedDict,
|
|
1939
|
+
OutputChronicleQueueFullBehavior,
|
|
1940
|
+
OutputChronicleResponseRetrySetting,
|
|
1941
|
+
OutputChronicleResponseRetrySettingTypedDict,
|
|
1942
|
+
OutputChronicleTimeoutRetrySettings,
|
|
1943
|
+
OutputChronicleTimeoutRetrySettingsTypedDict,
|
|
1944
|
+
OutputChronicleType,
|
|
1945
|
+
OutputChronicleTypedDict,
|
|
1946
|
+
)
|
|
1923
1947
|
from .outputclickhouse import (
|
|
1924
1948
|
ColumnMapping,
|
|
1925
1949
|
ColumnMappingTypedDict,
|
|
@@ -1987,6 +2011,7 @@ if TYPE_CHECKING:
|
|
|
1987
2011
|
OutputConfluentCloudQueueFullBehavior,
|
|
1988
2012
|
OutputConfluentCloudRecordDataFormat,
|
|
1989
2013
|
OutputConfluentCloudSASLMechanism,
|
|
2014
|
+
OutputConfluentCloudSchemaType,
|
|
1990
2015
|
OutputConfluentCloudTLSSettingsClientSide,
|
|
1991
2016
|
OutputConfluentCloudTLSSettingsClientSideTypedDict,
|
|
1992
2017
|
OutputConfluentCloudType,
|
|
@@ -2069,21 +2094,6 @@ if TYPE_CHECKING:
|
|
|
2069
2094
|
OutputCrowdstrikeNextGenSiemType,
|
|
2070
2095
|
OutputCrowdstrikeNextGenSiemTypedDict,
|
|
2071
2096
|
)
|
|
2072
|
-
from .outputdatabricks import (
|
|
2073
|
-
OutputDatabricks,
|
|
2074
|
-
OutputDatabricksAuthenticationMethod,
|
|
2075
|
-
OutputDatabricksBackpressureBehavior,
|
|
2076
|
-
OutputDatabricksCompression,
|
|
2077
|
-
OutputDatabricksCompressionLevel,
|
|
2078
|
-
OutputDatabricksDataFormat,
|
|
2079
|
-
OutputDatabricksDataPageVersion,
|
|
2080
|
-
OutputDatabricksDiskSpaceProtection,
|
|
2081
|
-
OutputDatabricksKeyValueMetadatum,
|
|
2082
|
-
OutputDatabricksKeyValueMetadatumTypedDict,
|
|
2083
|
-
OutputDatabricksParquetVersion,
|
|
2084
|
-
OutputDatabricksType,
|
|
2085
|
-
OutputDatabricksTypedDict,
|
|
2086
|
-
)
|
|
2087
2097
|
from .outputdatadog import (
|
|
2088
2098
|
DatadogSite,
|
|
2089
2099
|
OutputDatadog,
|
|
@@ -2277,8 +2287,6 @@ if TYPE_CHECKING:
|
|
|
2277
2287
|
OutputFilesystemTypedDict,
|
|
2278
2288
|
)
|
|
2279
2289
|
from .outputgooglechronicle import (
|
|
2280
|
-
CustomLabel,
|
|
2281
|
-
CustomLabelTypedDict,
|
|
2282
2290
|
ExtraLogType,
|
|
2283
2291
|
ExtraLogTypeTypedDict,
|
|
2284
2292
|
OutputGoogleChronicle,
|
|
@@ -2286,6 +2294,8 @@ if TYPE_CHECKING:
|
|
|
2286
2294
|
OutputGoogleChronicleAuthenticationMethod,
|
|
2287
2295
|
OutputGoogleChronicleBackpressureBehavior,
|
|
2288
2296
|
OutputGoogleChronicleCompression,
|
|
2297
|
+
OutputGoogleChronicleCustomLabel,
|
|
2298
|
+
OutputGoogleChronicleCustomLabelTypedDict,
|
|
2289
2299
|
OutputGoogleChronicleExtraHTTPHeader,
|
|
2290
2300
|
OutputGoogleChronicleExtraHTTPHeaderTypedDict,
|
|
2291
2301
|
OutputGoogleChronicleFailedRequestLoggingMode,
|
|
@@ -2502,6 +2512,7 @@ if TYPE_CHECKING:
|
|
|
2502
2512
|
OutputKafkaQueueFullBehavior,
|
|
2503
2513
|
OutputKafkaRecordDataFormat,
|
|
2504
2514
|
OutputKafkaSASLMechanism,
|
|
2515
|
+
OutputKafkaSchemaType,
|
|
2505
2516
|
OutputKafkaTLSSettingsClientSide,
|
|
2506
2517
|
OutputKafkaTLSSettingsClientSideTypedDict,
|
|
2507
2518
|
OutputKafkaType,
|
|
@@ -2584,6 +2595,7 @@ if TYPE_CHECKING:
|
|
|
2584
2595
|
OutputMskPqControlsTypedDict,
|
|
2585
2596
|
OutputMskQueueFullBehavior,
|
|
2586
2597
|
OutputMskRecordDataFormat,
|
|
2598
|
+
OutputMskSchemaType,
|
|
2587
2599
|
OutputMskSignatureVersion,
|
|
2588
2600
|
OutputMskTLSSettingsClientSide,
|
|
2589
2601
|
OutputMskTLSSettingsClientSideTypedDict,
|
|
@@ -3142,6 +3154,7 @@ if TYPE_CHECKING:
|
|
|
3142
3154
|
from .productscore import ProductsCore
|
|
3143
3155
|
from .rbacresource import RbacResource
|
|
3144
3156
|
from .resourcepolicy import ResourcePolicy, ResourcePolicyTypedDict
|
|
3157
|
+
from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
|
|
3145
3158
|
from .routeconf import RouteConf, RouteConfTypedDict
|
|
3146
3159
|
from .routes import (
|
|
3147
3160
|
Comment,
|
|
@@ -3302,6 +3315,7 @@ __all__ = [
|
|
|
3302
3315
|
"AdditionalPropertyTypedDict",
|
|
3303
3316
|
"Allow",
|
|
3304
3317
|
"AllowTypedDict",
|
|
3318
|
+
"AppMode",
|
|
3305
3319
|
"Audit",
|
|
3306
3320
|
"AuditTypedDict",
|
|
3307
3321
|
"AuthToken",
|
|
@@ -3401,10 +3415,11 @@ __all__ = [
|
|
|
3401
3415
|
"CriblLakeDataset",
|
|
3402
3416
|
"CriblLakeDatasetFormat",
|
|
3403
3417
|
"CriblLakeDatasetTypedDict",
|
|
3418
|
+
"CriblLakeDatasetUpdate",
|
|
3419
|
+
"CriblLakeDatasetUpdateFormat",
|
|
3420
|
+
"CriblLakeDatasetUpdateTypedDict",
|
|
3404
3421
|
"CurrentBranchResult",
|
|
3405
3422
|
"CurrentBranchResultTypedDict",
|
|
3406
|
-
"CustomLabel",
|
|
3407
|
-
"CustomLabelTypedDict",
|
|
3408
3423
|
"DNS",
|
|
3409
3424
|
"DNSTypedDict",
|
|
3410
3425
|
"DataSetSite",
|
|
@@ -3451,7 +3466,6 @@ __all__ = [
|
|
|
3451
3466
|
"DiffFilesTypedDict",
|
|
3452
3467
|
"DisksAndFileSystems",
|
|
3453
3468
|
"DisksAndFileSystemsTypedDict",
|
|
3454
|
-
"DistMode",
|
|
3455
3469
|
"DistributedSummary",
|
|
3456
3470
|
"DistributedSummaryGroups",
|
|
3457
3471
|
"DistributedSummaryGroupsTypedDict",
|
|
@@ -3721,6 +3735,7 @@ __all__ = [
|
|
|
3721
3735
|
"InputConfluentCloudPqControlsTypedDict",
|
|
3722
3736
|
"InputConfluentCloudPqTypedDict",
|
|
3723
3737
|
"InputConfluentCloudSASLMechanism",
|
|
3738
|
+
"InputConfluentCloudSchemaType",
|
|
3724
3739
|
"InputConfluentCloudTLSSettingsClientSide",
|
|
3725
3740
|
"InputConfluentCloudTLSSettingsClientSideTypedDict",
|
|
3726
3741
|
"InputConfluentCloudType",
|
|
@@ -4110,6 +4125,7 @@ __all__ = [
|
|
|
4110
4125
|
"InputKafkaPqControlsTypedDict",
|
|
4111
4126
|
"InputKafkaPqTypedDict",
|
|
4112
4127
|
"InputKafkaSASLMechanism",
|
|
4128
|
+
"InputKafkaSchemaType",
|
|
4113
4129
|
"InputKafkaTLSSettingsClientSide",
|
|
4114
4130
|
"InputKafkaTLSSettingsClientSideTypedDict",
|
|
4115
4131
|
"InputKafkaType",
|
|
@@ -4259,6 +4275,7 @@ __all__ = [
|
|
|
4259
4275
|
"InputMskPqControls",
|
|
4260
4276
|
"InputMskPqControlsTypedDict",
|
|
4261
4277
|
"InputMskPqTypedDict",
|
|
4278
|
+
"InputMskSchemaType",
|
|
4262
4279
|
"InputMskSignatureVersion",
|
|
4263
4280
|
"InputMskTLSSettingsClientSide",
|
|
4264
4281
|
"InputMskTLSSettingsClientSideTypedDict",
|
|
@@ -4997,6 +5014,25 @@ __all__ = [
|
|
|
4997
5014
|
"OutputAzureLogsTimeoutRetrySettingsTypedDict",
|
|
4998
5015
|
"OutputAzureLogsType",
|
|
4999
5016
|
"OutputAzureLogsTypedDict",
|
|
5017
|
+
"OutputChronicle",
|
|
5018
|
+
"OutputChronicleAuthenticationMethod",
|
|
5019
|
+
"OutputChronicleBackpressureBehavior",
|
|
5020
|
+
"OutputChronicleCompression",
|
|
5021
|
+
"OutputChronicleCustomLabel",
|
|
5022
|
+
"OutputChronicleCustomLabelTypedDict",
|
|
5023
|
+
"OutputChronicleExtraHTTPHeader",
|
|
5024
|
+
"OutputChronicleExtraHTTPHeaderTypedDict",
|
|
5025
|
+
"OutputChronicleFailedRequestLoggingMode",
|
|
5026
|
+
"OutputChronicleMode",
|
|
5027
|
+
"OutputChroniclePqControls",
|
|
5028
|
+
"OutputChroniclePqControlsTypedDict",
|
|
5029
|
+
"OutputChronicleQueueFullBehavior",
|
|
5030
|
+
"OutputChronicleResponseRetrySetting",
|
|
5031
|
+
"OutputChronicleResponseRetrySettingTypedDict",
|
|
5032
|
+
"OutputChronicleTimeoutRetrySettings",
|
|
5033
|
+
"OutputChronicleTimeoutRetrySettingsTypedDict",
|
|
5034
|
+
"OutputChronicleType",
|
|
5035
|
+
"OutputChronicleTypedDict",
|
|
5000
5036
|
"OutputClickHouse",
|
|
5001
5037
|
"OutputClickHouseAuthenticationType",
|
|
5002
5038
|
"OutputClickHouseBackpressureBehavior",
|
|
@@ -5056,6 +5092,7 @@ __all__ = [
|
|
|
5056
5092
|
"OutputConfluentCloudQueueFullBehavior",
|
|
5057
5093
|
"OutputConfluentCloudRecordDataFormat",
|
|
5058
5094
|
"OutputConfluentCloudSASLMechanism",
|
|
5095
|
+
"OutputConfluentCloudSchemaType",
|
|
5059
5096
|
"OutputConfluentCloudTLSSettingsClientSide",
|
|
5060
5097
|
"OutputConfluentCloudTLSSettingsClientSideTypedDict",
|
|
5061
5098
|
"OutputConfluentCloudType",
|
|
@@ -5128,19 +5165,6 @@ __all__ = [
|
|
|
5128
5165
|
"OutputCrowdstrikeNextGenSiemTimeoutRetrySettingsTypedDict",
|
|
5129
5166
|
"OutputCrowdstrikeNextGenSiemType",
|
|
5130
5167
|
"OutputCrowdstrikeNextGenSiemTypedDict",
|
|
5131
|
-
"OutputDatabricks",
|
|
5132
|
-
"OutputDatabricksAuthenticationMethod",
|
|
5133
|
-
"OutputDatabricksBackpressureBehavior",
|
|
5134
|
-
"OutputDatabricksCompression",
|
|
5135
|
-
"OutputDatabricksCompressionLevel",
|
|
5136
|
-
"OutputDatabricksDataFormat",
|
|
5137
|
-
"OutputDatabricksDataPageVersion",
|
|
5138
|
-
"OutputDatabricksDiskSpaceProtection",
|
|
5139
|
-
"OutputDatabricksKeyValueMetadatum",
|
|
5140
|
-
"OutputDatabricksKeyValueMetadatumTypedDict",
|
|
5141
|
-
"OutputDatabricksParquetVersion",
|
|
5142
|
-
"OutputDatabricksType",
|
|
5143
|
-
"OutputDatabricksTypedDict",
|
|
5144
5168
|
"OutputDatadog",
|
|
5145
5169
|
"OutputDatadogAuthenticationMethod",
|
|
5146
5170
|
"OutputDatadogBackpressureBehavior",
|
|
@@ -5314,6 +5338,8 @@ __all__ = [
|
|
|
5314
5338
|
"OutputGoogleChronicleAuthenticationMethod",
|
|
5315
5339
|
"OutputGoogleChronicleBackpressureBehavior",
|
|
5316
5340
|
"OutputGoogleChronicleCompression",
|
|
5341
|
+
"OutputGoogleChronicleCustomLabel",
|
|
5342
|
+
"OutputGoogleChronicleCustomLabelTypedDict",
|
|
5317
5343
|
"OutputGoogleChronicleExtraHTTPHeader",
|
|
5318
5344
|
"OutputGoogleChronicleExtraHTTPHeaderTypedDict",
|
|
5319
5345
|
"OutputGoogleChronicleFailedRequestLoggingMode",
|
|
@@ -5504,6 +5530,7 @@ __all__ = [
|
|
|
5504
5530
|
"OutputKafkaQueueFullBehavior",
|
|
5505
5531
|
"OutputKafkaRecordDataFormat",
|
|
5506
5532
|
"OutputKafkaSASLMechanism",
|
|
5533
|
+
"OutputKafkaSchemaType",
|
|
5507
5534
|
"OutputKafkaTLSSettingsClientSide",
|
|
5508
5535
|
"OutputKafkaTLSSettingsClientSideTypedDict",
|
|
5509
5536
|
"OutputKafkaType",
|
|
@@ -5578,6 +5605,7 @@ __all__ = [
|
|
|
5578
5605
|
"OutputMskPqControlsTypedDict",
|
|
5579
5606
|
"OutputMskQueueFullBehavior",
|
|
5580
5607
|
"OutputMskRecordDataFormat",
|
|
5608
|
+
"OutputMskSchemaType",
|
|
5581
5609
|
"OutputMskSignatureVersion",
|
|
5582
5610
|
"OutputMskTLSSettingsClientSide",
|
|
5583
5611
|
"OutputMskTLSSettingsClientSideTypedDict",
|
|
@@ -6073,6 +6101,7 @@ __all__ = [
|
|
|
6073
6101
|
"RbacResource",
|
|
6074
6102
|
"ReadMode",
|
|
6075
6103
|
"Remote",
|
|
6104
|
+
"RemoteEnum",
|
|
6076
6105
|
"RemoteTypedDict",
|
|
6077
6106
|
"Renamed",
|
|
6078
6107
|
"RenamedTypedDict",
|
|
@@ -6083,6 +6112,8 @@ __all__ = [
|
|
|
6083
6112
|
"ResourceTypeLabel",
|
|
6084
6113
|
"ResourceTypeLabelTypedDict",
|
|
6085
6114
|
"Role",
|
|
6115
|
+
"RouteCloneConf",
|
|
6116
|
+
"RouteCloneConfTypedDict",
|
|
6086
6117
|
"RouteConf",
|
|
6087
6118
|
"RouteConfTypedDict",
|
|
6088
6119
|
"Routes",
|
|
@@ -6233,6 +6264,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6233
6264
|
"AddHecTokenRequestMetadatum": ".addhectokenrequest",
|
|
6234
6265
|
"AddHecTokenRequestMetadatumTypedDict": ".addhectokenrequest",
|
|
6235
6266
|
"AddHecTokenRequestTypedDict": ".addhectokenrequest",
|
|
6267
|
+
"AppMode": ".appmode",
|
|
6236
6268
|
"AuthToken": ".authtoken",
|
|
6237
6269
|
"AuthTokenTypedDict": ".authtoken",
|
|
6238
6270
|
"BranchInfo": ".branchinfo",
|
|
@@ -6301,6 +6333,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6301
6333
|
"CriblLakeDataset": ".cribllakedataset",
|
|
6302
6334
|
"CriblLakeDatasetFormat": ".cribllakedataset",
|
|
6303
6335
|
"CriblLakeDatasetTypedDict": ".cribllakedataset",
|
|
6336
|
+
"CriblLakeDatasetUpdate": ".cribllakedatasetupdate",
|
|
6337
|
+
"CriblLakeDatasetUpdateFormat": ".cribllakedatasetupdate",
|
|
6338
|
+
"CriblLakeDatasetUpdateTypedDict": ".cribllakedatasetupdate",
|
|
6304
6339
|
"CurrentBranchResult": ".currentbranchresult",
|
|
6305
6340
|
"CurrentBranchResultTypedDict": ".currentbranchresult",
|
|
6306
6341
|
"DatasetMetadata": ".datasetmetadata",
|
|
@@ -6481,6 +6516,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6481
6516
|
"GitInfo": ".gitinfo",
|
|
6482
6517
|
"GitInfoTypedDict": ".gitinfo",
|
|
6483
6518
|
"Remote": ".gitinfo",
|
|
6519
|
+
"RemoteEnum": ".gitinfo",
|
|
6484
6520
|
"RemoteTypedDict": ".gitinfo",
|
|
6485
6521
|
"GitLogResult": ".gitlogresult",
|
|
6486
6522
|
"GitLogResultTypedDict": ".gitlogresult",
|
|
@@ -6502,7 +6538,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6502
6538
|
"RenamedTypedDict": ".gitstatusresult",
|
|
6503
6539
|
"Config": ".hbcriblinfo",
|
|
6504
6540
|
"ConfigTypedDict": ".hbcriblinfo",
|
|
6505
|
-
"DistMode": ".hbcriblinfo",
|
|
6506
6541
|
"HBCriblInfo": ".hbcriblinfo",
|
|
6507
6542
|
"HBCriblInfoTypedDict": ".hbcriblinfo",
|
|
6508
6543
|
"HBLeaderInfo": ".hbleaderinfo",
|
|
@@ -6607,6 +6642,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6607
6642
|
"InputConfluentCloudPqControlsTypedDict": ".inputconfluentcloud",
|
|
6608
6643
|
"InputConfluentCloudPqTypedDict": ".inputconfluentcloud",
|
|
6609
6644
|
"InputConfluentCloudSASLMechanism": ".inputconfluentcloud",
|
|
6645
|
+
"InputConfluentCloudSchemaType": ".inputconfluentcloud",
|
|
6610
6646
|
"InputConfluentCloudTLSSettingsClientSide": ".inputconfluentcloud",
|
|
6611
6647
|
"InputConfluentCloudTLSSettingsClientSideTypedDict": ".inputconfluentcloud",
|
|
6612
6648
|
"InputConfluentCloudType": ".inputconfluentcloud",
|
|
@@ -7025,6 +7061,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7025
7061
|
"InputKafkaPqControlsTypedDict": ".inputkafka",
|
|
7026
7062
|
"InputKafkaPqTypedDict": ".inputkafka",
|
|
7027
7063
|
"InputKafkaSASLMechanism": ".inputkafka",
|
|
7064
|
+
"InputKafkaSchemaType": ".inputkafka",
|
|
7028
7065
|
"InputKafkaTLSSettingsClientSide": ".inputkafka",
|
|
7029
7066
|
"InputKafkaTLSSettingsClientSideTypedDict": ".inputkafka",
|
|
7030
7067
|
"InputKafkaType": ".inputkafka",
|
|
@@ -7176,6 +7213,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7176
7213
|
"InputMskPqControls": ".inputmsk",
|
|
7177
7214
|
"InputMskPqControlsTypedDict": ".inputmsk",
|
|
7178
7215
|
"InputMskPqTypedDict": ".inputmsk",
|
|
7216
|
+
"InputMskSchemaType": ".inputmsk",
|
|
7179
7217
|
"InputMskSignatureVersion": ".inputmsk",
|
|
7180
7218
|
"InputMskTLSSettingsClientSide": ".inputmsk",
|
|
7181
7219
|
"InputMskTLSSettingsClientSideTypedDict": ".inputmsk",
|
|
@@ -7940,6 +7978,25 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7940
7978
|
"OutputAzureLogsTimeoutRetrySettingsTypedDict": ".outputazurelogs",
|
|
7941
7979
|
"OutputAzureLogsType": ".outputazurelogs",
|
|
7942
7980
|
"OutputAzureLogsTypedDict": ".outputazurelogs",
|
|
7981
|
+
"OutputChronicle": ".outputchronicle",
|
|
7982
|
+
"OutputChronicleAuthenticationMethod": ".outputchronicle",
|
|
7983
|
+
"OutputChronicleBackpressureBehavior": ".outputchronicle",
|
|
7984
|
+
"OutputChronicleCompression": ".outputchronicle",
|
|
7985
|
+
"OutputChronicleCustomLabel": ".outputchronicle",
|
|
7986
|
+
"OutputChronicleCustomLabelTypedDict": ".outputchronicle",
|
|
7987
|
+
"OutputChronicleExtraHTTPHeader": ".outputchronicle",
|
|
7988
|
+
"OutputChronicleExtraHTTPHeaderTypedDict": ".outputchronicle",
|
|
7989
|
+
"OutputChronicleFailedRequestLoggingMode": ".outputchronicle",
|
|
7990
|
+
"OutputChronicleMode": ".outputchronicle",
|
|
7991
|
+
"OutputChroniclePqControls": ".outputchronicle",
|
|
7992
|
+
"OutputChroniclePqControlsTypedDict": ".outputchronicle",
|
|
7993
|
+
"OutputChronicleQueueFullBehavior": ".outputchronicle",
|
|
7994
|
+
"OutputChronicleResponseRetrySetting": ".outputchronicle",
|
|
7995
|
+
"OutputChronicleResponseRetrySettingTypedDict": ".outputchronicle",
|
|
7996
|
+
"OutputChronicleTimeoutRetrySettings": ".outputchronicle",
|
|
7997
|
+
"OutputChronicleTimeoutRetrySettingsTypedDict": ".outputchronicle",
|
|
7998
|
+
"OutputChronicleType": ".outputchronicle",
|
|
7999
|
+
"OutputChronicleTypedDict": ".outputchronicle",
|
|
7943
8000
|
"ColumnMapping": ".outputclickhouse",
|
|
7944
8001
|
"ColumnMappingTypedDict": ".outputclickhouse",
|
|
7945
8002
|
"MappingType": ".outputclickhouse",
|
|
@@ -8002,6 +8059,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8002
8059
|
"OutputConfluentCloudQueueFullBehavior": ".outputconfluentcloud",
|
|
8003
8060
|
"OutputConfluentCloudRecordDataFormat": ".outputconfluentcloud",
|
|
8004
8061
|
"OutputConfluentCloudSASLMechanism": ".outputconfluentcloud",
|
|
8062
|
+
"OutputConfluentCloudSchemaType": ".outputconfluentcloud",
|
|
8005
8063
|
"OutputConfluentCloudTLSSettingsClientSide": ".outputconfluentcloud",
|
|
8006
8064
|
"OutputConfluentCloudTLSSettingsClientSideTypedDict": ".outputconfluentcloud",
|
|
8007
8065
|
"OutputConfluentCloudType": ".outputconfluentcloud",
|
|
@@ -8075,19 +8133,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8075
8133
|
"OutputCrowdstrikeNextGenSiemTimeoutRetrySettingsTypedDict": ".outputcrowdstrikenextgensiem",
|
|
8076
8134
|
"OutputCrowdstrikeNextGenSiemType": ".outputcrowdstrikenextgensiem",
|
|
8077
8135
|
"OutputCrowdstrikeNextGenSiemTypedDict": ".outputcrowdstrikenextgensiem",
|
|
8078
|
-
"OutputDatabricks": ".outputdatabricks",
|
|
8079
|
-
"OutputDatabricksAuthenticationMethod": ".outputdatabricks",
|
|
8080
|
-
"OutputDatabricksBackpressureBehavior": ".outputdatabricks",
|
|
8081
|
-
"OutputDatabricksCompression": ".outputdatabricks",
|
|
8082
|
-
"OutputDatabricksCompressionLevel": ".outputdatabricks",
|
|
8083
|
-
"OutputDatabricksDataFormat": ".outputdatabricks",
|
|
8084
|
-
"OutputDatabricksDataPageVersion": ".outputdatabricks",
|
|
8085
|
-
"OutputDatabricksDiskSpaceProtection": ".outputdatabricks",
|
|
8086
|
-
"OutputDatabricksKeyValueMetadatum": ".outputdatabricks",
|
|
8087
|
-
"OutputDatabricksKeyValueMetadatumTypedDict": ".outputdatabricks",
|
|
8088
|
-
"OutputDatabricksParquetVersion": ".outputdatabricks",
|
|
8089
|
-
"OutputDatabricksType": ".outputdatabricks",
|
|
8090
|
-
"OutputDatabricksTypedDict": ".outputdatabricks",
|
|
8091
8136
|
"DatadogSite": ".outputdatadog",
|
|
8092
8137
|
"OutputDatadog": ".outputdatadog",
|
|
8093
8138
|
"OutputDatadogAuthenticationMethod": ".outputdatadog",
|
|
@@ -8264,8 +8309,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8264
8309
|
"OutputFilesystemParquetVersion": ".outputfilesystem",
|
|
8265
8310
|
"OutputFilesystemType": ".outputfilesystem",
|
|
8266
8311
|
"OutputFilesystemTypedDict": ".outputfilesystem",
|
|
8267
|
-
"CustomLabel": ".outputgooglechronicle",
|
|
8268
|
-
"CustomLabelTypedDict": ".outputgooglechronicle",
|
|
8269
8312
|
"ExtraLogType": ".outputgooglechronicle",
|
|
8270
8313
|
"ExtraLogTypeTypedDict": ".outputgooglechronicle",
|
|
8271
8314
|
"OutputGoogleChronicle": ".outputgooglechronicle",
|
|
@@ -8273,6 +8316,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8273
8316
|
"OutputGoogleChronicleAuthenticationMethod": ".outputgooglechronicle",
|
|
8274
8317
|
"OutputGoogleChronicleBackpressureBehavior": ".outputgooglechronicle",
|
|
8275
8318
|
"OutputGoogleChronicleCompression": ".outputgooglechronicle",
|
|
8319
|
+
"OutputGoogleChronicleCustomLabel": ".outputgooglechronicle",
|
|
8320
|
+
"OutputGoogleChronicleCustomLabelTypedDict": ".outputgooglechronicle",
|
|
8276
8321
|
"OutputGoogleChronicleExtraHTTPHeader": ".outputgooglechronicle",
|
|
8277
8322
|
"OutputGoogleChronicleExtraHTTPHeaderTypedDict": ".outputgooglechronicle",
|
|
8278
8323
|
"OutputGoogleChronicleFailedRequestLoggingMode": ".outputgooglechronicle",
|
|
@@ -8471,6 +8516,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8471
8516
|
"OutputKafkaQueueFullBehavior": ".outputkafka",
|
|
8472
8517
|
"OutputKafkaRecordDataFormat": ".outputkafka",
|
|
8473
8518
|
"OutputKafkaSASLMechanism": ".outputkafka",
|
|
8519
|
+
"OutputKafkaSchemaType": ".outputkafka",
|
|
8474
8520
|
"OutputKafkaTLSSettingsClientSide": ".outputkafka",
|
|
8475
8521
|
"OutputKafkaTLSSettingsClientSideTypedDict": ".outputkafka",
|
|
8476
8522
|
"OutputKafkaType": ".outputkafka",
|
|
@@ -8545,6 +8591,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8545
8591
|
"OutputMskPqControlsTypedDict": ".outputmsk",
|
|
8546
8592
|
"OutputMskQueueFullBehavior": ".outputmsk",
|
|
8547
8593
|
"OutputMskRecordDataFormat": ".outputmsk",
|
|
8594
|
+
"OutputMskSchemaType": ".outputmsk",
|
|
8548
8595
|
"OutputMskSignatureVersion": ".outputmsk",
|
|
8549
8596
|
"OutputMskTLSSettingsClientSide": ".outputmsk",
|
|
8550
8597
|
"OutputMskTLSSettingsClientSideTypedDict": ".outputmsk",
|
|
@@ -9040,6 +9087,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
9040
9087
|
"RbacResource": ".rbacresource",
|
|
9041
9088
|
"ResourcePolicy": ".resourcepolicy",
|
|
9042
9089
|
"ResourcePolicyTypedDict": ".resourcepolicy",
|
|
9090
|
+
"RouteCloneConf": ".routecloneconf",
|
|
9091
|
+
"RouteCloneConfTypedDict": ".routecloneconf",
|
|
9043
9092
|
"RouteConf": ".routeconf",
|
|
9044
9093
|
"RouteConfTypedDict": ".routeconf",
|
|
9045
9094
|
"Comment": ".routes",
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane import utils
|
|
5
|
+
from enum import Enum
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class AppMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
9
|
+
SINGLE = "single"
|
|
10
|
+
MASTER = "master"
|
|
11
|
+
WORKER = "worker"
|
|
12
|
+
EDGE = "edge"
|
|
13
|
+
MANAGED_EDGE = "managed-edge"
|
|
14
|
+
OUTPOST = "outpost"
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .cacheconnection import CacheConnection, CacheConnectionTypedDict
|
|
5
|
+
from .lakedatasetsearchconfig import (
|
|
6
|
+
LakeDatasetSearchConfig,
|
|
7
|
+
LakeDatasetSearchConfigTypedDict,
|
|
8
|
+
)
|
|
9
|
+
from cribl_control_plane import utils
|
|
10
|
+
from cribl_control_plane.types import BaseModel
|
|
11
|
+
from cribl_control_plane.utils import validate_open_enum
|
|
12
|
+
from enum import Enum
|
|
13
|
+
import pydantic
|
|
14
|
+
from pydantic.functional_validators import PlainValidator
|
|
15
|
+
from typing import List, Optional
|
|
16
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class CriblLakeDatasetUpdateFormat(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
20
|
+
JSON = "json"
|
|
21
|
+
DDSS = "ddss"
|
|
22
|
+
PARQUET = "parquet"
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class CriblLakeDatasetUpdateTypedDict(TypedDict):
|
|
26
|
+
accelerated_fields: NotRequired[List[str]]
|
|
27
|
+
bucket_name: NotRequired[str]
|
|
28
|
+
cache_connection: NotRequired[CacheConnectionTypedDict]
|
|
29
|
+
deletion_started_at: NotRequired[float]
|
|
30
|
+
description: NotRequired[str]
|
|
31
|
+
format_: NotRequired[CriblLakeDatasetUpdateFormat]
|
|
32
|
+
http_da_used: NotRequired[bool]
|
|
33
|
+
id: NotRequired[str]
|
|
34
|
+
retention_period_in_days: NotRequired[float]
|
|
35
|
+
search_config: NotRequired[LakeDatasetSearchConfigTypedDict]
|
|
36
|
+
storage_location_id: NotRequired[str]
|
|
37
|
+
view_name: NotRequired[str]
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class CriblLakeDatasetUpdate(BaseModel):
|
|
41
|
+
accelerated_fields: Annotated[
|
|
42
|
+
Optional[List[str]], pydantic.Field(alias="acceleratedFields")
|
|
43
|
+
] = None
|
|
44
|
+
|
|
45
|
+
bucket_name: Annotated[Optional[str], pydantic.Field(alias="bucketName")] = None
|
|
46
|
+
|
|
47
|
+
cache_connection: Annotated[
|
|
48
|
+
Optional[CacheConnection], pydantic.Field(alias="cacheConnection")
|
|
49
|
+
] = None
|
|
50
|
+
|
|
51
|
+
deletion_started_at: Annotated[
|
|
52
|
+
Optional[float], pydantic.Field(alias="deletionStartedAt")
|
|
53
|
+
] = None
|
|
54
|
+
|
|
55
|
+
description: Optional[str] = None
|
|
56
|
+
|
|
57
|
+
format_: Annotated[
|
|
58
|
+
Annotated[
|
|
59
|
+
Optional[CriblLakeDatasetUpdateFormat],
|
|
60
|
+
PlainValidator(validate_open_enum(False)),
|
|
61
|
+
],
|
|
62
|
+
pydantic.Field(alias="format"),
|
|
63
|
+
] = None
|
|
64
|
+
|
|
65
|
+
http_da_used: Annotated[Optional[bool], pydantic.Field(alias="httpDAUsed")] = None
|
|
66
|
+
|
|
67
|
+
id: Optional[str] = None
|
|
68
|
+
|
|
69
|
+
retention_period_in_days: Annotated[
|
|
70
|
+
Optional[float], pydantic.Field(alias="retentionPeriodInDays")
|
|
71
|
+
] = None
|
|
72
|
+
|
|
73
|
+
search_config: Annotated[
|
|
74
|
+
Optional[LakeDatasetSearchConfig], pydantic.Field(alias="searchConfig")
|
|
75
|
+
] = None
|
|
76
|
+
|
|
77
|
+
storage_location_id: Annotated[
|
|
78
|
+
Optional[str], pydantic.Field(alias="storageLocationId")
|
|
79
|
+
] = None
|
|
80
|
+
|
|
81
|
+
view_name: Annotated[Optional[str], pydantic.Field(alias="viewName")] = None
|
|
@@ -1,15 +1,26 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane import utils
|
|
4
5
|
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import validate_open_enum
|
|
7
|
+
from enum import Enum
|
|
8
|
+
from pydantic.functional_validators import PlainValidator
|
|
5
9
|
from typing import Union
|
|
6
|
-
from typing_extensions import TypeAliasType, TypedDict
|
|
10
|
+
from typing_extensions import Annotated, TypeAliasType, TypedDict
|
|
7
11
|
|
|
8
12
|
|
|
9
|
-
|
|
13
|
+
class RemoteEnum(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
14
|
+
FALSE = "false"
|
|
10
15
|
|
|
11
16
|
|
|
12
|
-
|
|
17
|
+
RemoteTypedDict = TypeAliasType("RemoteTypedDict", Union[str, RemoteEnum])
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
Remote = TypeAliasType(
|
|
21
|
+
"Remote",
|
|
22
|
+
Union[str, Annotated[RemoteEnum, PlainValidator(validate_open_enum(False))]],
|
|
23
|
+
)
|
|
13
24
|
|
|
14
25
|
|
|
15
26
|
class GitInfoTypedDict(TypedDict):
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
+
from .appmode import AppMode
|
|
4
5
|
from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
|
|
5
6
|
from .lookupversions import LookupVersions, LookupVersionsTypedDict
|
|
6
|
-
from cribl_control_plane import utils
|
|
7
7
|
from cribl_control_plane.types import BaseModel
|
|
8
8
|
from cribl_control_plane.utils import validate_open_enum
|
|
9
|
-
from enum import Enum
|
|
10
9
|
import pydantic
|
|
11
10
|
from pydantic.functional_validators import PlainValidator
|
|
12
11
|
from typing import List, Optional
|
|
@@ -37,19 +36,9 @@ class Config(BaseModel):
|
|
|
37
36
|
version: Optional[str] = None
|
|
38
37
|
|
|
39
38
|
|
|
40
|
-
class DistMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
41
|
-
EDGE = "edge"
|
|
42
|
-
WORKER = "worker"
|
|
43
|
-
SINGLE = "single"
|
|
44
|
-
MASTER = "master"
|
|
45
|
-
MANAGED_EDGE = "managed-edge"
|
|
46
|
-
OUTPOST = "outpost"
|
|
47
|
-
SEARCH_SUPERVISOR = "search-supervisor"
|
|
48
|
-
|
|
49
|
-
|
|
50
39
|
class HBCriblInfoTypedDict(TypedDict):
|
|
51
40
|
config: ConfigTypedDict
|
|
52
|
-
dist_mode:
|
|
41
|
+
dist_mode: AppMode
|
|
53
42
|
group: str
|
|
54
43
|
guid: str
|
|
55
44
|
start_time: float
|
|
@@ -69,7 +58,7 @@ class HBCriblInfo(BaseModel):
|
|
|
69
58
|
config: Config
|
|
70
59
|
|
|
71
60
|
dist_mode: Annotated[
|
|
72
|
-
Annotated[
|
|
61
|
+
Annotated[AppMode, PlainValidator(validate_open_enum(False))],
|
|
73
62
|
pydantic.Field(alias="distMode"),
|
|
74
63
|
]
|
|
75
64
|
|
|
@@ -17,7 +17,6 @@ class HeartbeatMetadataTags(BaseModel):
|
|
|
17
17
|
|
|
18
18
|
class HeartbeatMetadataAwsTypedDict(TypedDict):
|
|
19
19
|
enabled: bool
|
|
20
|
-
instance_id: str
|
|
21
20
|
region: str
|
|
22
21
|
type: str
|
|
23
22
|
zone: str
|
|
@@ -27,8 +26,6 @@ class HeartbeatMetadataAwsTypedDict(TypedDict):
|
|
|
27
26
|
class HeartbeatMetadataAws(BaseModel):
|
|
28
27
|
enabled: bool
|
|
29
28
|
|
|
30
|
-
instance_id: Annotated[str, pydantic.Field(alias="instanceId")]
|
|
31
|
-
|
|
32
29
|
region: str
|
|
33
30
|
|
|
34
31
|
type: str
|