cribl-control-plane 0.0.50rc1__py3-none-any.whl → 0.0.50rc2__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 +4 -4
- cribl_control_plane/groups_sdk.py +4 -4
- cribl_control_plane/httpclient.py +0 -1
- cribl_control_plane/models/__init__.py +35 -27
- cribl_control_plane/models/configgroup.py +17 -2
- cribl_control_plane/models/createversionundoop.py +3 -3
- cribl_control_plane/models/hbcriblinfo.py +14 -3
- cribl_control_plane/models/heartbeatmetadata.py +3 -0
- cribl_control_plane/models/input.py +65 -63
- cribl_control_plane/models/inputconfluentcloud.py +0 -18
- cribl_control_plane/models/inputkafka.py +0 -17
- cribl_control_plane/models/inputmsk.py +0 -17
- cribl_control_plane/models/jobinfo.py +1 -4
- cribl_control_plane/models/nodeprovidedinfo.py +4 -4
- cribl_control_plane/models/output.py +84 -79
- cribl_control_plane/models/outputconfluentcloud.py +0 -18
- cribl_control_plane/models/outputdatabricks.py +282 -0
- cribl_control_plane/models/outputkafka.py +0 -17
- cribl_control_plane/models/outputmsk.py +0 -17
- cribl_control_plane/models/packinfo.py +0 -3
- cribl_control_plane/models/packinstallinfo.py +0 -3
- cribl_control_plane/models/routeconf.py +3 -4
- {cribl_control_plane-0.0.50rc1.dist-info → cribl_control_plane-0.0.50rc2.dist-info}/METADATA +1 -1
- {cribl_control_plane-0.0.50rc1.dist-info → cribl_control_plane-0.0.50rc2.dist-info}/RECORD +25 -26
- cribl_control_plane/models/appmode.py +0 -14
- cribl_control_plane/models/routecloneconf.py +0 -13
- {cribl_control_plane-0.0.50rc1.dist-info → cribl_control_plane-0.0.50rc2.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,282 @@
|
|
|
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 cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import validate_open_enum
|
|
7
|
+
from enum import Enum
|
|
8
|
+
import pydantic
|
|
9
|
+
from pydantic.functional_validators import PlainValidator
|
|
10
|
+
from typing import List, Optional
|
|
11
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class OutputDatabricksType(str, Enum):
|
|
15
|
+
DATABRICKS = "databricks"
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class OutputDatabricksDataFormat(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
19
|
+
r"""Format of the output data"""
|
|
20
|
+
|
|
21
|
+
JSON = "json"
|
|
22
|
+
RAW = "raw"
|
|
23
|
+
PARQUET = "parquet"
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class OutputDatabricksBackpressureBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
27
|
+
r"""How to handle events when all receivers are exerting backpressure"""
|
|
28
|
+
|
|
29
|
+
BLOCK = "block"
|
|
30
|
+
DROP = "drop"
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class OutputDatabricksDiskSpaceProtection(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
34
|
+
r"""How to handle events when disk space is below the global 'Min free disk space' limit"""
|
|
35
|
+
|
|
36
|
+
BLOCK = "block"
|
|
37
|
+
DROP = "drop"
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class OutputDatabricksAuthenticationMethod(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
41
|
+
r"""Unity Catalog authentication method. Choose Manual to enter credentials directly, or Secret to use a stored secret."""
|
|
42
|
+
|
|
43
|
+
MANUAL = "manual"
|
|
44
|
+
SECRET = "secret"
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class OutputDatabricksTypedDict(TypedDict):
|
|
48
|
+
type: OutputDatabricksType
|
|
49
|
+
login_url: str
|
|
50
|
+
r"""URL for Unity Catalog OAuth token endpoint (example: 'https://your-workspace.cloud.databricks.com/oauth/token')"""
|
|
51
|
+
client_id: str
|
|
52
|
+
r"""JavaScript expression to compute the OAuth client ID for Unity Catalog authentication. Can be a constant."""
|
|
53
|
+
id: NotRequired[str]
|
|
54
|
+
r"""Unique ID for this output"""
|
|
55
|
+
pipeline: NotRequired[str]
|
|
56
|
+
r"""Pipeline to process data before sending out to this output"""
|
|
57
|
+
system_fields: NotRequired[List[str]]
|
|
58
|
+
r"""Fields to automatically add to events, such as cribl_pipe. Supports wildcards."""
|
|
59
|
+
environment: NotRequired[str]
|
|
60
|
+
r"""Optionally, enable this config only on a specified Git branch. If empty, will be enabled everywhere."""
|
|
61
|
+
streamtags: NotRequired[List[str]]
|
|
62
|
+
r"""Tags for filtering and grouping in @{product}"""
|
|
63
|
+
dest_path: NotRequired[str]
|
|
64
|
+
r"""Optional path to prepend to files before uploading. Must be a JavaScript expression (which can evaluate to a constant value), enclosed in quotes or backticks. Can be evaluated only at init time. Example referencing a Global Variable: `myEventsVolumePath-${C.vars.myVar}`"""
|
|
65
|
+
stage_path: NotRequired[str]
|
|
66
|
+
r"""Filesystem location in which to buffer files before compressing and moving to final destination. Use performant, stable storage."""
|
|
67
|
+
add_id_to_stage_path: NotRequired[bool]
|
|
68
|
+
r"""Add the Output ID value to staging location"""
|
|
69
|
+
remove_empty_dirs: NotRequired[bool]
|
|
70
|
+
r"""Remove empty staging directories after moving files"""
|
|
71
|
+
partition_expr: NotRequired[str]
|
|
72
|
+
r"""JavaScript expression defining how files are partitioned and organized. Default is date-based. If blank, Stream will fall back to the event's __partition field value – if present – otherwise to each location's root directory."""
|
|
73
|
+
format_: NotRequired[OutputDatabricksDataFormat]
|
|
74
|
+
r"""Format of the output data"""
|
|
75
|
+
base_file_name: NotRequired[str]
|
|
76
|
+
r"""JavaScript expression to define the output filename prefix (can be constant)"""
|
|
77
|
+
file_name_suffix: NotRequired[str]
|
|
78
|
+
r"""JavaScript expression to define the output filename suffix (can be constant). The `__format` variable refers to the value of the `Data format` field (`json` or `raw`). The `__compression` field refers to the kind of compression being used (`none` or `gzip`)."""
|
|
79
|
+
max_file_size_mb: NotRequired[float]
|
|
80
|
+
r"""Maximum uncompressed output file size. Files of this size will be closed and moved to final output location."""
|
|
81
|
+
max_file_open_time_sec: NotRequired[float]
|
|
82
|
+
r"""Maximum amount of time to write to a file. Files open for longer than this will be closed and moved to final output location."""
|
|
83
|
+
max_file_idle_time_sec: NotRequired[float]
|
|
84
|
+
r"""Maximum amount of time to keep inactive files open. Files open for longer than this will be closed and moved to final output location."""
|
|
85
|
+
max_open_files: NotRequired[float]
|
|
86
|
+
r"""Maximum number of files to keep open concurrently. When exceeded, @{product} will close the oldest open files and move them to the final output location."""
|
|
87
|
+
header_line: NotRequired[str]
|
|
88
|
+
r"""If set, this line will be written to the beginning of each output file"""
|
|
89
|
+
write_high_water_mark: NotRequired[float]
|
|
90
|
+
r"""Buffer size used to write to a file"""
|
|
91
|
+
on_backpressure: NotRequired[OutputDatabricksBackpressureBehavior]
|
|
92
|
+
r"""How to handle events when all receivers are exerting backpressure"""
|
|
93
|
+
deadletter_enabled: NotRequired[bool]
|
|
94
|
+
r"""If a file fails to move to its final destination after the maximum number of retries, move it to a designated directory to prevent further errors"""
|
|
95
|
+
on_disk_full_backpressure: NotRequired[OutputDatabricksDiskSpaceProtection]
|
|
96
|
+
r"""How to handle events when disk space is below the global 'Min free disk space' limit"""
|
|
97
|
+
unity_auth_method: NotRequired[OutputDatabricksAuthenticationMethod]
|
|
98
|
+
r"""Unity Catalog authentication method. Choose Manual to enter credentials directly, or Secret to use a stored secret."""
|
|
99
|
+
scope: NotRequired[str]
|
|
100
|
+
r"""OAuth scope for Unity Catalog authentication"""
|
|
101
|
+
token_timeout_secs: NotRequired[float]
|
|
102
|
+
r"""How often the OAuth token should be refreshed"""
|
|
103
|
+
default_catalog: NotRequired[str]
|
|
104
|
+
r"""Name of the catalog to use for the output"""
|
|
105
|
+
default_schema: NotRequired[str]
|
|
106
|
+
r"""Name of the catalog schema to use for the output"""
|
|
107
|
+
events_volume_name: NotRequired[str]
|
|
108
|
+
r"""Name of the events volume in Databricks"""
|
|
109
|
+
over_write_files: NotRequired[bool]
|
|
110
|
+
r"""Uploaded files should be overwritten if they already exist. If disabled, upload will fail if a file already exists."""
|
|
111
|
+
description: NotRequired[str]
|
|
112
|
+
client_secret: NotRequired[str]
|
|
113
|
+
r"""JavaScript expression to compute the OAuth client secret for Unity Catalog authentication. Can be a constant."""
|
|
114
|
+
client_text_secret: NotRequired[str]
|
|
115
|
+
r"""Select or create a stored text secret"""
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
class OutputDatabricks(BaseModel):
|
|
119
|
+
type: OutputDatabricksType
|
|
120
|
+
|
|
121
|
+
login_url: Annotated[str, pydantic.Field(alias="loginUrl")]
|
|
122
|
+
r"""URL for Unity Catalog OAuth token endpoint (example: 'https://your-workspace.cloud.databricks.com/oauth/token')"""
|
|
123
|
+
|
|
124
|
+
client_id: Annotated[str, pydantic.Field(alias="clientId")]
|
|
125
|
+
r"""JavaScript expression to compute the OAuth client ID for Unity Catalog authentication. Can be a constant."""
|
|
126
|
+
|
|
127
|
+
id: Optional[str] = None
|
|
128
|
+
r"""Unique ID for this output"""
|
|
129
|
+
|
|
130
|
+
pipeline: Optional[str] = None
|
|
131
|
+
r"""Pipeline to process data before sending out to this output"""
|
|
132
|
+
|
|
133
|
+
system_fields: Annotated[
|
|
134
|
+
Optional[List[str]], pydantic.Field(alias="systemFields")
|
|
135
|
+
] = None
|
|
136
|
+
r"""Fields to automatically add to events, such as cribl_pipe. Supports wildcards."""
|
|
137
|
+
|
|
138
|
+
environment: Optional[str] = None
|
|
139
|
+
r"""Optionally, enable this config only on a specified Git branch. If empty, will be enabled everywhere."""
|
|
140
|
+
|
|
141
|
+
streamtags: Optional[List[str]] = None
|
|
142
|
+
r"""Tags for filtering and grouping in @{product}"""
|
|
143
|
+
|
|
144
|
+
dest_path: Annotated[Optional[str], pydantic.Field(alias="destPath")] = ""
|
|
145
|
+
r"""Optional path to prepend to files before uploading. Must be a JavaScript expression (which can evaluate to a constant value), enclosed in quotes or backticks. Can be evaluated only at init time. Example referencing a Global Variable: `myEventsVolumePath-${C.vars.myVar}`"""
|
|
146
|
+
|
|
147
|
+
stage_path: Annotated[Optional[str], pydantic.Field(alias="stagePath")] = (
|
|
148
|
+
"$CRIBL_HOME/state/outputs/staging"
|
|
149
|
+
)
|
|
150
|
+
r"""Filesystem location in which to buffer files before compressing and moving to final destination. Use performant, stable storage."""
|
|
151
|
+
|
|
152
|
+
add_id_to_stage_path: Annotated[
|
|
153
|
+
Optional[bool], pydantic.Field(alias="addIdToStagePath")
|
|
154
|
+
] = True
|
|
155
|
+
r"""Add the Output ID value to staging location"""
|
|
156
|
+
|
|
157
|
+
remove_empty_dirs: Annotated[
|
|
158
|
+
Optional[bool], pydantic.Field(alias="removeEmptyDirs")
|
|
159
|
+
] = True
|
|
160
|
+
r"""Remove empty staging directories after moving files"""
|
|
161
|
+
|
|
162
|
+
partition_expr: Annotated[Optional[str], pydantic.Field(alias="partitionExpr")] = (
|
|
163
|
+
"C.Time.strftime(_time ? _time : Date.now()/1000, '%Y/%m/%d')"
|
|
164
|
+
)
|
|
165
|
+
r"""JavaScript expression defining how files are partitioned and organized. Default is date-based. If blank, Stream will fall back to the event's __partition field value – if present – otherwise to each location's root directory."""
|
|
166
|
+
|
|
167
|
+
format_: Annotated[
|
|
168
|
+
Annotated[
|
|
169
|
+
Optional[OutputDatabricksDataFormat],
|
|
170
|
+
PlainValidator(validate_open_enum(False)),
|
|
171
|
+
],
|
|
172
|
+
pydantic.Field(alias="format"),
|
|
173
|
+
] = OutputDatabricksDataFormat.JSON
|
|
174
|
+
r"""Format of the output data"""
|
|
175
|
+
|
|
176
|
+
base_file_name: Annotated[Optional[str], pydantic.Field(alias="baseFileName")] = (
|
|
177
|
+
"`CriblOut`"
|
|
178
|
+
)
|
|
179
|
+
r"""JavaScript expression to define the output filename prefix (can be constant)"""
|
|
180
|
+
|
|
181
|
+
file_name_suffix: Annotated[
|
|
182
|
+
Optional[str], pydantic.Field(alias="fileNameSuffix")
|
|
183
|
+
] = '`.${C.env["CRIBL_WORKER_ID"]}.${__format}${__compression === "gzip" ? ".gz" : ""}`'
|
|
184
|
+
r"""JavaScript expression to define the output filename suffix (can be constant). The `__format` variable refers to the value of the `Data format` field (`json` or `raw`). The `__compression` field refers to the kind of compression being used (`none` or `gzip`)."""
|
|
185
|
+
|
|
186
|
+
max_file_size_mb: Annotated[
|
|
187
|
+
Optional[float], pydantic.Field(alias="maxFileSizeMB")
|
|
188
|
+
] = 32
|
|
189
|
+
r"""Maximum uncompressed output file size. Files of this size will be closed and moved to final output location."""
|
|
190
|
+
|
|
191
|
+
max_file_open_time_sec: Annotated[
|
|
192
|
+
Optional[float], pydantic.Field(alias="maxFileOpenTimeSec")
|
|
193
|
+
] = 300
|
|
194
|
+
r"""Maximum amount of time to write to a file. Files open for longer than this will be closed and moved to final output location."""
|
|
195
|
+
|
|
196
|
+
max_file_idle_time_sec: Annotated[
|
|
197
|
+
Optional[float], pydantic.Field(alias="maxFileIdleTimeSec")
|
|
198
|
+
] = 30
|
|
199
|
+
r"""Maximum amount of time to keep inactive files open. Files open for longer than this will be closed and moved to final output location."""
|
|
200
|
+
|
|
201
|
+
max_open_files: Annotated[Optional[float], pydantic.Field(alias="maxOpenFiles")] = (
|
|
202
|
+
100
|
|
203
|
+
)
|
|
204
|
+
r"""Maximum number of files to keep open concurrently. When exceeded, @{product} will close the oldest open files and move them to the final output location."""
|
|
205
|
+
|
|
206
|
+
header_line: Annotated[Optional[str], pydantic.Field(alias="headerLine")] = ""
|
|
207
|
+
r"""If set, this line will be written to the beginning of each output file"""
|
|
208
|
+
|
|
209
|
+
write_high_water_mark: Annotated[
|
|
210
|
+
Optional[float], pydantic.Field(alias="writeHighWaterMark")
|
|
211
|
+
] = 64
|
|
212
|
+
r"""Buffer size used to write to a file"""
|
|
213
|
+
|
|
214
|
+
on_backpressure: Annotated[
|
|
215
|
+
Annotated[
|
|
216
|
+
Optional[OutputDatabricksBackpressureBehavior],
|
|
217
|
+
PlainValidator(validate_open_enum(False)),
|
|
218
|
+
],
|
|
219
|
+
pydantic.Field(alias="onBackpressure"),
|
|
220
|
+
] = OutputDatabricksBackpressureBehavior.BLOCK
|
|
221
|
+
r"""How to handle events when all receivers are exerting backpressure"""
|
|
222
|
+
|
|
223
|
+
deadletter_enabled: Annotated[
|
|
224
|
+
Optional[bool], pydantic.Field(alias="deadletterEnabled")
|
|
225
|
+
] = False
|
|
226
|
+
r"""If a file fails to move to its final destination after the maximum number of retries, move it to a designated directory to prevent further errors"""
|
|
227
|
+
|
|
228
|
+
on_disk_full_backpressure: Annotated[
|
|
229
|
+
Annotated[
|
|
230
|
+
Optional[OutputDatabricksDiskSpaceProtection],
|
|
231
|
+
PlainValidator(validate_open_enum(False)),
|
|
232
|
+
],
|
|
233
|
+
pydantic.Field(alias="onDiskFullBackpressure"),
|
|
234
|
+
] = OutputDatabricksDiskSpaceProtection.BLOCK
|
|
235
|
+
r"""How to handle events when disk space is below the global 'Min free disk space' limit"""
|
|
236
|
+
|
|
237
|
+
unity_auth_method: Annotated[
|
|
238
|
+
Annotated[
|
|
239
|
+
Optional[OutputDatabricksAuthenticationMethod],
|
|
240
|
+
PlainValidator(validate_open_enum(False)),
|
|
241
|
+
],
|
|
242
|
+
pydantic.Field(alias="unityAuthMethod"),
|
|
243
|
+
] = OutputDatabricksAuthenticationMethod.MANUAL
|
|
244
|
+
r"""Unity Catalog authentication method. Choose Manual to enter credentials directly, or Secret to use a stored secret."""
|
|
245
|
+
|
|
246
|
+
scope: Optional[str] = "all-apis"
|
|
247
|
+
r"""OAuth scope for Unity Catalog authentication"""
|
|
248
|
+
|
|
249
|
+
token_timeout_secs: Annotated[
|
|
250
|
+
Optional[float], pydantic.Field(alias="tokenTimeoutSecs")
|
|
251
|
+
] = 3600
|
|
252
|
+
r"""How often the OAuth token should be refreshed"""
|
|
253
|
+
|
|
254
|
+
default_catalog: Annotated[
|
|
255
|
+
Optional[str], pydantic.Field(alias="defaultCatalog")
|
|
256
|
+
] = "main"
|
|
257
|
+
r"""Name of the catalog to use for the output"""
|
|
258
|
+
|
|
259
|
+
default_schema: Annotated[Optional[str], pydantic.Field(alias="defaultSchema")] = (
|
|
260
|
+
"external"
|
|
261
|
+
)
|
|
262
|
+
r"""Name of the catalog schema to use for the output"""
|
|
263
|
+
|
|
264
|
+
events_volume_name: Annotated[
|
|
265
|
+
Optional[str], pydantic.Field(alias="eventsVolumeName")
|
|
266
|
+
] = "events"
|
|
267
|
+
r"""Name of the events volume in Databricks"""
|
|
268
|
+
|
|
269
|
+
over_write_files: Annotated[
|
|
270
|
+
Optional[bool], pydantic.Field(alias="overWriteFiles")
|
|
271
|
+
] = False
|
|
272
|
+
r"""Uploaded files should be overwritten if they already exist. If disabled, upload will fail if a file already exists."""
|
|
273
|
+
|
|
274
|
+
description: Optional[str] = None
|
|
275
|
+
|
|
276
|
+
client_secret: Annotated[Optional[str], pydantic.Field(alias="clientSecret")] = None
|
|
277
|
+
r"""JavaScript expression to compute the OAuth client secret for Unity Catalog authentication. Can be a constant."""
|
|
278
|
+
|
|
279
|
+
client_text_secret: Annotated[
|
|
280
|
+
Optional[str], pydantic.Field(alias="clientTextSecret")
|
|
281
|
+
] = None
|
|
282
|
+
r"""Select or create a stored text secret"""
|
|
@@ -40,13 +40,6 @@ class OutputKafkaCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
|
40
40
|
LZ4 = "lz4"
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
class OutputKafkaSchemaType(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
44
|
-
r"""The schema format used to encode and decode event data"""
|
|
45
|
-
|
|
46
|
-
AVRO = "avro"
|
|
47
|
-
JSON = "json"
|
|
48
|
-
|
|
49
|
-
|
|
50
43
|
class OutputKafkaAuthTypedDict(TypedDict):
|
|
51
44
|
r"""Credentials to use when authenticating with the schema registry using basic HTTP authentication"""
|
|
52
45
|
|
|
@@ -157,8 +150,6 @@ class OutputKafkaKafkaSchemaRegistryAuthenticationTypedDict(TypedDict):
|
|
|
157
150
|
disabled: NotRequired[bool]
|
|
158
151
|
schema_registry_url: NotRequired[str]
|
|
159
152
|
r"""URL for accessing the Confluent Schema Registry. Example: http://localhost:8081. To connect over TLS, use https instead of http."""
|
|
160
|
-
schema_type: NotRequired[OutputKafkaSchemaType]
|
|
161
|
-
r"""The schema format used to encode and decode event data"""
|
|
162
153
|
connection_timeout: NotRequired[float]
|
|
163
154
|
r"""Maximum time to wait for a Schema Registry connection to complete successfully"""
|
|
164
155
|
request_timeout: NotRequired[float]
|
|
@@ -182,14 +173,6 @@ class OutputKafkaKafkaSchemaRegistryAuthentication(BaseModel):
|
|
|
182
173
|
] = "http://localhost:8081"
|
|
183
174
|
r"""URL for accessing the Confluent Schema Registry. Example: http://localhost:8081. To connect over TLS, use https instead of http."""
|
|
184
175
|
|
|
185
|
-
schema_type: Annotated[
|
|
186
|
-
Annotated[
|
|
187
|
-
Optional[OutputKafkaSchemaType], PlainValidator(validate_open_enum(False))
|
|
188
|
-
],
|
|
189
|
-
pydantic.Field(alias="schemaType"),
|
|
190
|
-
] = OutputKafkaSchemaType.AVRO
|
|
191
|
-
r"""The schema format used to encode and decode event data"""
|
|
192
|
-
|
|
193
176
|
connection_timeout: Annotated[
|
|
194
177
|
Optional[float], pydantic.Field(alias="connectionTimeout")
|
|
195
178
|
] = 30000
|
|
@@ -40,13 +40,6 @@ class OutputMskCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
|
40
40
|
LZ4 = "lz4"
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
class OutputMskSchemaType(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
44
|
-
r"""The schema format used to encode and decode event data"""
|
|
45
|
-
|
|
46
|
-
AVRO = "avro"
|
|
47
|
-
JSON = "json"
|
|
48
|
-
|
|
49
|
-
|
|
50
43
|
class OutputMskAuthTypedDict(TypedDict):
|
|
51
44
|
r"""Credentials to use when authenticating with the schema registry using basic HTTP authentication"""
|
|
52
45
|
|
|
@@ -157,8 +150,6 @@ class OutputMskKafkaSchemaRegistryAuthenticationTypedDict(TypedDict):
|
|
|
157
150
|
disabled: NotRequired[bool]
|
|
158
151
|
schema_registry_url: NotRequired[str]
|
|
159
152
|
r"""URL for accessing the Confluent Schema Registry. Example: http://localhost:8081. To connect over TLS, use https instead of http."""
|
|
160
|
-
schema_type: NotRequired[OutputMskSchemaType]
|
|
161
|
-
r"""The schema format used to encode and decode event data"""
|
|
162
153
|
connection_timeout: NotRequired[float]
|
|
163
154
|
r"""Maximum time to wait for a Schema Registry connection to complete successfully"""
|
|
164
155
|
request_timeout: NotRequired[float]
|
|
@@ -182,14 +173,6 @@ class OutputMskKafkaSchemaRegistryAuthentication(BaseModel):
|
|
|
182
173
|
] = "http://localhost:8081"
|
|
183
174
|
r"""URL for accessing the Confluent Schema Registry. Example: http://localhost:8081. To connect over TLS, use https instead of http."""
|
|
184
175
|
|
|
185
|
-
schema_type: Annotated[
|
|
186
|
-
Annotated[
|
|
187
|
-
Optional[OutputMskSchemaType], PlainValidator(validate_open_enum(False))
|
|
188
|
-
],
|
|
189
|
-
pydantic.Field(alias="schemaType"),
|
|
190
|
-
] = OutputMskSchemaType.AVRO
|
|
191
|
-
r"""The schema format used to encode and decode event data"""
|
|
192
|
-
|
|
193
176
|
connection_timeout: Annotated[
|
|
194
177
|
Optional[float], pydantic.Field(alias="connectionTimeout")
|
|
195
178
|
] = 30000
|
|
@@ -28,7 +28,6 @@ class PackInfoTypedDict(TypedDict):
|
|
|
28
28
|
id: str
|
|
29
29
|
source: str
|
|
30
30
|
author: NotRequired[str]
|
|
31
|
-
dependencies: NotRequired[Dict[str, str]]
|
|
32
31
|
description: NotRequired[str]
|
|
33
32
|
display_name: NotRequired[str]
|
|
34
33
|
exports: NotRequired[List[str]]
|
|
@@ -49,8 +48,6 @@ class PackInfo(BaseModel):
|
|
|
49
48
|
|
|
50
49
|
author: Optional[str] = None
|
|
51
50
|
|
|
52
|
-
dependencies: Optional[Dict[str, str]] = None
|
|
53
|
-
|
|
54
51
|
description: Optional[str] = None
|
|
55
52
|
|
|
56
53
|
display_name: Annotated[Optional[str], pydantic.Field(alias="displayName")] = None
|
|
@@ -28,7 +28,6 @@ class PackInstallInfoTypedDict(TypedDict):
|
|
|
28
28
|
id: str
|
|
29
29
|
source: str
|
|
30
30
|
author: NotRequired[str]
|
|
31
|
-
dependencies: NotRequired[Dict[str, str]]
|
|
32
31
|
description: NotRequired[str]
|
|
33
32
|
display_name: NotRequired[str]
|
|
34
33
|
exports: NotRequired[List[str]]
|
|
@@ -50,8 +49,6 @@ class PackInstallInfo(BaseModel):
|
|
|
50
49
|
|
|
51
50
|
author: Optional[str] = None
|
|
52
51
|
|
|
53
|
-
dependencies: Optional[Dict[str, str]] = None
|
|
54
|
-
|
|
55
52
|
description: Optional[str] = None
|
|
56
53
|
|
|
57
54
|
display_name: Annotated[Optional[str], pydantic.Field(alias="displayName")] = None
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
-
from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
|
|
5
4
|
from cribl_control_plane.types import BaseModel
|
|
6
5
|
import pydantic
|
|
7
|
-
from typing import List, Optional
|
|
6
|
+
from typing import Dict, List, Optional
|
|
8
7
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
8
|
|
|
10
9
|
|
|
@@ -13,7 +12,7 @@ class RouteConfTypedDict(TypedDict):
|
|
|
13
12
|
id: str
|
|
14
13
|
name: str
|
|
15
14
|
pipeline: str
|
|
16
|
-
clones: NotRequired[List[
|
|
15
|
+
clones: NotRequired[List[Dict[str, str]]]
|
|
17
16
|
context: NotRequired[str]
|
|
18
17
|
description: NotRequired[str]
|
|
19
18
|
disabled: NotRequired[bool]
|
|
@@ -33,7 +32,7 @@ class RouteConf(BaseModel):
|
|
|
33
32
|
|
|
34
33
|
pipeline: str
|
|
35
34
|
|
|
36
|
-
clones: Optional[List[
|
|
35
|
+
clones: Optional[List[Dict[str, str]]] = None
|
|
37
36
|
|
|
38
37
|
context: Optional[str] = None
|
|
39
38
|
|
|
@@ -4,7 +4,7 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=p1WN7LL3PHrAf4AxXrsOZF_NB
|
|
|
4
4
|
cribl_control_plane/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
|
5
5
|
cribl_control_plane/_hooks/sdkhooks.py,sha256=ggXjME1_Rdv8CVCg1XHqB83eYtbxzKyhXyfQ36Yc1gA,2816
|
|
6
6
|
cribl_control_plane/_hooks/types.py,sha256=Tw_C4zTZm01rW_89VDEUpvQ8KQr1WxN0Gu_-s_fYSPc,2998
|
|
7
|
-
cribl_control_plane/_version.py,sha256=
|
|
7
|
+
cribl_control_plane/_version.py,sha256=Mfv2GYQ7t2fW3XNgveLSXy3AXwUdvP93myAhN-3ZHw4,548
|
|
8
8
|
cribl_control_plane/acl.py,sha256=8lvYOKAli4PzsQhOVaCU6YCwblPMh9jQo04L0r4HJuQ,9025
|
|
9
9
|
cribl_control_plane/auth_sdk.py,sha256=3sjf1VoyWwfhSyuMDQLixgWISSf03BOZwmkiT8g5Ruw,626
|
|
10
10
|
cribl_control_plane/basesdk.py,sha256=y4yIXSNVXLMd0sLS2htBFdTCI3gkPQbIWd-C671kg1I,12249
|
|
@@ -22,21 +22,20 @@ cribl_control_plane/errors/healthstatus_error.py,sha256=hakt3RO4e4mWnmiDy1rzBWCZ
|
|
|
22
22
|
cribl_control_plane/errors/no_response_error.py,sha256=Kb7hmMtDo72KrLSjUEDNeQxvzZiVxUjOZym8TPdZp5Y,462
|
|
23
23
|
cribl_control_plane/errors/responsevalidationerror.py,sha256=7vHiNVp0rm6nrult0NCC73VDabehUhM861LrWfaObvA,778
|
|
24
24
|
cribl_control_plane/groups_configs.py,sha256=dgi-W0ElnyygaVKXqk5df2ldAAgj9YmXRPCez2hP7yc,695
|
|
25
|
-
cribl_control_plane/groups_sdk.py,sha256=
|
|
25
|
+
cribl_control_plane/groups_sdk.py,sha256=pZy0owBWP-RFNp9CwA2fopDZSceUX1CFlAtaTsFctDc,61919
|
|
26
26
|
cribl_control_plane/health.py,sha256=N8pX8RHkJVtLFd4nZ8ypJPrzT_JezciEVry9s9qvCRc,7019
|
|
27
27
|
cribl_control_plane/hectokens.py,sha256=0EGgGGrM83m1YmTZwkN5S4xFkHQGnw1IZe3y6uMwmLw,19151
|
|
28
|
-
cribl_control_plane/httpclient.py,sha256=
|
|
28
|
+
cribl_control_plane/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
29
29
|
cribl_control_plane/lakedatasets.py,sha256=7WYWcjXMzliDW1j3TQlgikc_h54IUq4lsysVy_39l38,46578
|
|
30
|
-
cribl_control_plane/models/__init__.py,sha256=
|
|
30
|
+
cribl_control_plane/models/__init__.py,sha256=Bk5MYLCAKlg0_NHaxNbEvK1eg3_hszDJDPyViButAIs,387891
|
|
31
31
|
cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
|
|
32
|
-
cribl_control_plane/models/appmode.py,sha256=29pjcPnHZ7AzaIScZ2TuWEsPvhK53dBH5tfxtY95ig4,368
|
|
33
32
|
cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
|
|
34
33
|
cribl_control_plane/models/branchinfo.py,sha256=jCX31O5TMG9jTjqigPvvUiBwpgPpVxHtSuhYrNykXiI,291
|
|
35
34
|
cribl_control_plane/models/cacheconnection.py,sha256=IaqcKQhOxuY_SYdMpD2FqBGMbraqk8msS5DzkhvjHbQ,1802
|
|
36
35
|
cribl_control_plane/models/cacheconnectionbackfillstatus.py,sha256=EFJtxJ8EULR0JI4SjDoIsYSxx7uGHk-ULOeSxSzTCSc,380
|
|
37
36
|
cribl_control_plane/models/cloudprovider.py,sha256=OwlC4oXKrv5AjIgotkcSSTGgods-2QWeR0N5UgJ20Yw,268
|
|
38
37
|
cribl_control_plane/models/commit.py,sha256=wXQkjOYsffxWURHTrfU9kJ4HF2H65QfD1R9-vH0clvQ,641
|
|
39
|
-
cribl_control_plane/models/configgroup.py,sha256=
|
|
38
|
+
cribl_control_plane/models/configgroup.py,sha256=5t0IF-5BVrtJLM8XPBBrfriY9RXP9TxCzK2m46mDWiA,4302
|
|
40
39
|
cribl_control_plane/models/configgroupcloud.py,sha256=xme7fTZesBGwpma0huL-EXyPNaDYhP2CeYnvxBRxwU8,1589
|
|
41
40
|
cribl_control_plane/models/configgrouplookups.py,sha256=1z1DlvlVehqfD6hZMXG0XedZTfoCIpYd0cHav45tiRw,830
|
|
42
41
|
cribl_control_plane/models/createconfiggroupbyproductop.py,sha256=OZtUSrA4Lf81IhqH-PnO5nqbcWJ_plFLJJbe-vIBsSI,1728
|
|
@@ -51,7 +50,7 @@ cribl_control_plane/models/createroutesappendbyidop.py,sha256=OruUiz8gTR_SyMvKwo
|
|
|
51
50
|
cribl_control_plane/models/createversioncommitop.py,sha256=ijtv-PAHQT6MYtVpdytDRGDWLgVUJLlEozAnwvgN59o,1739
|
|
52
51
|
cribl_control_plane/models/createversionpushop.py,sha256=9cpZ_Ez8RDSuH9bfiffS0pisNsh0tqtwXiKzNps7DxQ,659
|
|
53
52
|
cribl_control_plane/models/createversionrevertop.py,sha256=rTPVEEkTpK3bOBcUS1AzYZbCPJP8gSFTviyfFx0WPyU,1876
|
|
54
|
-
cribl_control_plane/models/createversionundoop.py,sha256=
|
|
53
|
+
cribl_control_plane/models/createversionundoop.py,sha256=31rK3VKcgJGL6JV2jBK0gYIETOa9Gwh_mSLbVyTOv54,1269
|
|
55
54
|
cribl_control_plane/models/criblevent.py,sha256=eT6WbxhOOCx5OQLkAfhwG6IeSUuUmF7hLTxeCHut4bo,361
|
|
56
55
|
cribl_control_plane/models/cribllakedataset.py,sha256=hvfxljCGd4sFOGFuPZK5w4CWtgA-ZoL8JFl9c2V_I9k,2571
|
|
57
56
|
cribl_control_plane/models/currentbranchresult.py,sha256=qq1IRI_XeGrAI_-lV_xHCYuO3VwIFUVarvo0-lN-ymU,317
|
|
@@ -106,15 +105,15 @@ cribl_control_plane/models/gitrevertparams.py,sha256=wMVlEcrprmZHUA01vi3CC8fMMDF
|
|
|
106
105
|
cribl_control_plane/models/gitrevertresult.py,sha256=RQ7-QhPP7zerEEF2bUhVI_IVft7tqYVOZrNLCWeB32c,1056
|
|
107
106
|
cribl_control_plane/models/gitshowresult.py,sha256=XTYNDfyix6mxWGL1bzevhttxf6OMyvVVOSoS0duMh9Y,592
|
|
108
107
|
cribl_control_plane/models/gitstatusresult.py,sha256=7-pEpOnb4xzQwWo3rPBRN0tbM6UdG4KSIhkiUPyU3to,1166
|
|
109
|
-
cribl_control_plane/models/hbcriblinfo.py,sha256=
|
|
108
|
+
cribl_control_plane/models/hbcriblinfo.py,sha256=gpr4NYt7kAoDGSjyIND4vbMOtldcyyrLQ7p-P9GUmTM,3035
|
|
110
109
|
cribl_control_plane/models/hbleaderinfo.py,sha256=SU5iM_I4sqxoTOzAQsw-rpOMfXwKl1ymze9nUrw6z6U,503
|
|
111
110
|
cribl_control_plane/models/healthstatus.py,sha256=oGS-ntDNekMLdbjGQtGTDsFh7gDn_Fz9KUVyLix29m8,1056
|
|
112
|
-
cribl_control_plane/models/heartbeatmetadata.py,sha256=
|
|
113
|
-
cribl_control_plane/models/input.py,sha256=
|
|
111
|
+
cribl_control_plane/models/heartbeatmetadata.py,sha256=mKMhlT2jo0zX2UQ4qFQns2ft1zWtYBHtS96BXEvfKhs,2345
|
|
112
|
+
cribl_control_plane/models/input.py,sha256=Y7id3CFkKpxmJ79kk5BNGCrEohHV4z-hWD9QwZR5puc,9578
|
|
114
113
|
cribl_control_plane/models/inputappscope.py,sha256=4DBz29S82rynEUOuHuz_-kuB_F2lhpxsfJs_ZlaNNJ0,21057
|
|
115
114
|
cribl_control_plane/models/inputazureblob.py,sha256=-T9zWYCKwsy8p3BIRYewiXea92dPNdy2bFIBaL_7Cmc,15601
|
|
116
115
|
cribl_control_plane/models/inputcollection.py,sha256=1iBiUz5LLFag-n7mSqupwM1GdSgXkugumESDWOSbCog,9922
|
|
117
|
-
cribl_control_plane/models/inputconfluentcloud.py,sha256=
|
|
116
|
+
cribl_control_plane/models/inputconfluentcloud.py,sha256=g8rLOf7hk5B8WtQ39KvM5llrnz283TLa6BOoFES1smg,29810
|
|
118
117
|
cribl_control_plane/models/inputcribl.py,sha256=d5mS1RsSVTjOrMzTm2k35vk5-ehBRuYqAAFrADxEwUo,7588
|
|
119
118
|
cribl_control_plane/models/inputcriblhttp.py,sha256=KKhepZlvtOHWHPMtMGFd6KP3lzXFVoPJYBiOMJhZKL0,16213
|
|
120
119
|
cribl_control_plane/models/inputcribllakehttp.py,sha256=ugxBc7LoNQpbsN0HdoYDzRVmuOly571ehNx80nQKUhM,19698
|
|
@@ -134,7 +133,7 @@ cribl_control_plane/models/inputgrafana.py,sha256=21d-FCUBUC8MIGwTVCY-_d7WMlD9uk
|
|
|
134
133
|
cribl_control_plane/models/inputhttp.py,sha256=bCbg1LHnWc46HNXM9BFlV9xwWLuSU1i08cgRR84ufEM,18927
|
|
135
134
|
cribl_control_plane/models/inputhttpraw.py,sha256=oH7XZngzKH9MhyOaPJIbsd9X_HRQJfzoERJv3ktoT5s,19314
|
|
136
135
|
cribl_control_plane/models/inputjournalfiles.py,sha256=A-fL2FlhahycMrR_r63BgBAT3rhxmL7GqTJswfzWrQ8,10069
|
|
137
|
-
cribl_control_plane/models/inputkafka.py,sha256=
|
|
136
|
+
cribl_control_plane/models/inputkafka.py,sha256=TYC02E64yVcDh79EWVz5Y9kil7H4-k28h6yEnbX1tqQ,29352
|
|
138
137
|
cribl_control_plane/models/inputkinesis.py,sha256=4feXQwIBijQ_9QTeqbDVwAA8JPbI5bXoVlbREQJ1g28,16678
|
|
139
138
|
cribl_control_plane/models/inputkubeevents.py,sha256=Q6DS2jXGBZ-b2jOop4x9aeZSdjqdYCoqxCLjDeWLIcc,8360
|
|
140
139
|
cribl_control_plane/models/inputkubelogs.py,sha256=ZxBd4qQzpYxKHN6lHIIRwsQ2_84ZRsZnLdm-SpW9S8g,12555
|
|
@@ -142,7 +141,7 @@ cribl_control_plane/models/inputkubemetrics.py,sha256=wgbpd-7CpZ1QTNG9cvI8Zi1-6H
|
|
|
142
141
|
cribl_control_plane/models/inputloki.py,sha256=COV9nDP9F6aF_Vqbx8WtX3Ee2dal-4rzAur5z_LfOGE,21542
|
|
143
142
|
cribl_control_plane/models/inputmetrics.py,sha256=iHB5Wgwb6qolo25SwmSKjyAbUDLYt-EiUE-5p7-qvpc,13433
|
|
144
143
|
cribl_control_plane/models/inputmodeldriventelemetry.py,sha256=cW1xM0EjVYpiNo0bzF4m__8Z8iWMLRJaUoZhc-E2rfw,12429
|
|
145
|
-
cribl_control_plane/models/inputmsk.py,sha256=
|
|
144
|
+
cribl_control_plane/models/inputmsk.py,sha256=Qq37J7nLBrDslY5MjmCUuh9GpQlrJUPi1jycY8SqkwU,32258
|
|
146
145
|
cribl_control_plane/models/inputnetflow.py,sha256=YoM2Iy31iM-pFIWKyck8cRoib1ghZ2vj1m-oTT3PTec,11389
|
|
147
146
|
cribl_control_plane/models/inputoffice365mgmt.py,sha256=eSN5EuvnX6nq3XNMaKpgVuv0V4MNpmOQLUXH5agb0ho,18817
|
|
148
147
|
cribl_control_plane/models/inputoffice365msgtrace.py,sha256=MLpZs6BEIlA3SB3uyi-H0ceOjdCxxsNGaI5Kjv-2JP0,21326
|
|
@@ -170,7 +169,7 @@ cribl_control_plane/models/inputwineventlogs.py,sha256=m8VJ-VtcFl74RV6kS5lkjHcAb
|
|
|
170
169
|
cribl_control_plane/models/inputwiz.py,sha256=_in9LUMsZ7jGIONDGO7yd7EA01D_vAy0BMOt6MqjEMI,15361
|
|
171
170
|
cribl_control_plane/models/inputwizwebhook.py,sha256=zI57K9SnBcDfNDxwUQol8f778epG95_j46K-3FLCOB0,19480
|
|
172
171
|
cribl_control_plane/models/inputzscalerhec.py,sha256=Ie84onXxyo3U7MsgwuNmSoXdbxfCjLTHZY7Zo3cfO3g,21179
|
|
173
|
-
cribl_control_plane/models/jobinfo.py,sha256=
|
|
172
|
+
cribl_control_plane/models/jobinfo.py,sha256=DywkxnfEyU1ACJpVUAvLTRzYrdMiRiM-uIblWlmUnEM,607
|
|
174
173
|
cribl_control_plane/models/jobstatus.py,sha256=XFogf3iW-C1vQJ87QJ7_6B9ecHKnj9R00NezWpvD-AA,454
|
|
175
174
|
cribl_control_plane/models/lakedatasetsearchconfig.py,sha256=R0zz0K1FQ3gxPx44ezINy9y2bEFBGIWyvniF25D7Ydw,591
|
|
176
175
|
cribl_control_plane/models/lakehouseconnectiontype.py,sha256=vLCrFdKQMRHbbxIzS6AxTDkt_99ehqvtrCPKpi6Bbyw,291
|
|
@@ -185,22 +184,23 @@ cribl_control_plane/models/lookupversions.py,sha256=PLk5hD1WPEIoePfJbhllePawNTa1
|
|
|
185
184
|
cribl_control_plane/models/masterworkerentry.py,sha256=KT8bTu5t20ZwhybN8yz4MtG8CQZGpqv3I1JGjVItY7Q,2481
|
|
186
185
|
cribl_control_plane/models/nodeactiveupgradestatus.py,sha256=knwgNh1octWr6oY-TadH0StJmzv0cktlJ4tc5pq_ChM,279
|
|
187
186
|
cribl_control_plane/models/nodefailedupgradestatus.py,sha256=EE4tSjcWyQxASftW9xJCS8K5QjpLkjCl3YDIys4r7FA,267
|
|
188
|
-
cribl_control_plane/models/nodeprovidedinfo.py,sha256=
|
|
187
|
+
cribl_control_plane/models/nodeprovidedinfo.py,sha256=XElCf2bdE4ahiO7MaVmbtGziKgyJZIW7T143VPCUAvE,3742
|
|
189
188
|
cribl_control_plane/models/nodeskippedupgradestatus.py,sha256=EY-U3cUPwMa3H-X-hn5gdaEBmSAP3hB9gRPdiQZs5yU,294
|
|
190
189
|
cribl_control_plane/models/nodeupgradestate.py,sha256=EerzMMQeFl-iHKHsJwEIxRroH6w97S7-em9YoY2-ASk,286
|
|
191
190
|
cribl_control_plane/models/nodeupgradestatus.py,sha256=Ygdb7jTFOvD6M3Fjl3brliLCKbkdX3aCwkPYjTE4Dw0,1346
|
|
192
|
-
cribl_control_plane/models/output.py,sha256=
|
|
191
|
+
cribl_control_plane/models/output.py,sha256=FaaloGYhI_1OH94a2yeXdB83X1SvnUmXoA2CfAEPj-s,10908
|
|
193
192
|
cribl_control_plane/models/outputazureblob.py,sha256=l3N9XWrzsjgpoV8AZ59lmHXL7ZNrGek1VyO2bA13DKQ,23132
|
|
194
193
|
cribl_control_plane/models/outputazuredataexplorer.py,sha256=dHMj1qBpoNwusSety4OG3KgaKKNixTaqcdKSsxDAo2Q,31977
|
|
195
194
|
cribl_control_plane/models/outputazureeventhub.py,sha256=mccmtlZjwoeyr3AagtPRleOpZKB6roJvwekRjScqa8w,15710
|
|
196
195
|
cribl_control_plane/models/outputazurelogs.py,sha256=EYwBDVXq5PMZPsy36dCxaIrGSNespqwqFEhe2u3QeQI,20483
|
|
197
196
|
cribl_control_plane/models/outputclickhouse.py,sha256=NkvKphhga95zlbVGlD0iaVtdBiRY0wcZqR1las5DO1Y,30465
|
|
198
197
|
cribl_control_plane/models/outputcloudwatch.py,sha256=iSxxunhSekwgZTFw1HKYnzy8YzXRoDacn2pEWlWjs4k,12677
|
|
199
|
-
cribl_control_plane/models/outputconfluentcloud.py,sha256=
|
|
198
|
+
cribl_control_plane/models/outputconfluentcloud.py,sha256=4BQCKXjJ5Bc4C6YKDAjYimRkp4ryE2_0883bqdXAVic,27449
|
|
200
199
|
cribl_control_plane/models/outputcriblhttp.py,sha256=qH_DLlLfUDMTgyjLJ-EyMytmHAJC868gYofoNP1-_ec,24062
|
|
201
200
|
cribl_control_plane/models/outputcribllake.py,sha256=h-J1uPLPV3teRWJIyrJLV1oWjxiWlQAiwDoV3rNX-Ks,17914
|
|
202
201
|
cribl_control_plane/models/outputcribltcp.py,sha256=wpiSsXcSBFXe2ZO0muijlA58TFVgL1Fw7FTt_zodf_8,17482
|
|
203
202
|
cribl_control_plane/models/outputcrowdstrikenextgensiem.py,sha256=mFJowiqrVy6peiPXOcLZTyGtxGTLLuIpoG56gw81dMY,19864
|
|
203
|
+
cribl_control_plane/models/outputdatabricks.py,sha256=dmxj_K4nbO8nHAcWhOGZJIqs6KWlo1Q1RpO8Twez3WM,13934
|
|
204
204
|
cribl_control_plane/models/outputdatadog.py,sha256=KUFjLBY9FtfzSuS6XiWsvru_HmAgnSfeQFw_J-T3OVk,23291
|
|
205
205
|
cribl_control_plane/models/outputdataset.py,sha256=-iXA-e7awghBU6Plu-774F1P2TQN2w7oZX-JexG7hS4,21606
|
|
206
206
|
cribl_control_plane/models/outputdefault.py,sha256=2tjMKYSksR-0qWLd_u3PPLXL0gZiSlUdj9JTPYeYMps,1952
|
|
@@ -222,11 +222,11 @@ cribl_control_plane/models/outputgraphite.py,sha256=XMKOU6BQZ7E2H-RGFruKE2QIqD8F
|
|
|
222
222
|
cribl_control_plane/models/outputhoneycomb.py,sha256=vjdU1Mw7NVGiRHeT6XxcfSqJuXsdYUh7Ek_gItuC1d4,17971
|
|
223
223
|
cribl_control_plane/models/outputhumiohec.py,sha256=dylW7PH9J6Ya2WHEdMMo4e941QVghdtAwumud7RcSgo,19306
|
|
224
224
|
cribl_control_plane/models/outputinfluxdb.py,sha256=lSok0YjCkxnJ5YjXKTRQAXBcMhJo0Lj60qz04o8NgXY,24733
|
|
225
|
-
cribl_control_plane/models/outputkafka.py,sha256=
|
|
225
|
+
cribl_control_plane/models/outputkafka.py,sha256=PxL7KOrDo8QEt9daYE0RBYAqzCmYE8SWA3Ma4hyg7z8,26845
|
|
226
226
|
cribl_control_plane/models/outputkinesis.py,sha256=_DwZ-GtZGta2FFKWC2BxCyJFwFGsVFuhtvfQyPk4aN0,14124
|
|
227
227
|
cribl_control_plane/models/outputloki.py,sha256=TV2Bir0X9M0mkMZ9LQV-jsIYrmcIQ9ucIdtCqsURXYM,23017
|
|
228
228
|
cribl_control_plane/models/outputminio.py,sha256=Fx4Zpl4DjwYbPqITqRGewIUd5vehVC1h_mshgj_PU3g,23862
|
|
229
|
-
cribl_control_plane/models/outputmsk.py,sha256=
|
|
229
|
+
cribl_control_plane/models/outputmsk.py,sha256=2JuqEv92JwGta8YXJ1fusvcO9BBc3Xt3XmnAFgpMk3o,29735
|
|
230
230
|
cribl_control_plane/models/outputnetflow.py,sha256=xOBy2Q48SfhNT2ifAQU-bPVQ5nOpUqMJ5B40SlZ3-0o,2790
|
|
231
231
|
cribl_control_plane/models/outputnewrelic.py,sha256=mktht54b3JtYdQngRPaN712dmjY1wdNh8hQo03eeNrw,20527
|
|
232
232
|
cribl_control_plane/models/outputnewrelicevents.py,sha256=-WrvmX4K1t5qeh7q7ZaF7V9ol5seduQNHZYLAJfZH0c,19501
|
|
@@ -257,8 +257,8 @@ cribl_control_plane/models/outputtestresponse.py,sha256=cKeXPvSpCzU6cWpXvHoujp-p
|
|
|
257
257
|
cribl_control_plane/models/outputwavefront.py,sha256=KDQ84_ovcbz_swEKNazIw6X4mcSyMB3pdEy6xV-BAhM,18283
|
|
258
258
|
cribl_control_plane/models/outputwebhook.py,sha256=XxN7pfE6fu4ZilRQQtXaiC9q6h6ub21l4n6qyfCJAbs,34181
|
|
259
259
|
cribl_control_plane/models/outputxsiam.py,sha256=wkEIvRzWbql5FDP6lLwvJcB7pTYuYEmV9Z7TQH58l9w,20405
|
|
260
|
-
cribl_control_plane/models/packinfo.py,sha256=
|
|
261
|
-
cribl_control_plane/models/packinstallinfo.py,sha256=
|
|
260
|
+
cribl_control_plane/models/packinfo.py,sha256=8pP80pbzBJKjIViX_kcibH5EBWIrnyVvc9P53ga7Re8,1844
|
|
261
|
+
cribl_control_plane/models/packinstallinfo.py,sha256=RhIRUWRUYdk-FNEa2WyiPBs4RvdHsqovMH4dgLyd6Ds,1965
|
|
262
262
|
cribl_control_plane/models/packrequestbody_union.py,sha256=EGDpybuIL6SAXT_mHnaFCm6PtEH3dTdTu999-7rmgKA,3897
|
|
263
263
|
cribl_control_plane/models/packupgraderequest.py,sha256=T-d4cha7jj-ez0sJcqRPA5xGS2C9yuZ0KfGtPRulqj0,671
|
|
264
264
|
cribl_control_plane/models/pipeline.py,sha256=AaoC5euxac-fwul-LM1mNf03hCzrXmHQGZLMrUWuS4g,2130
|
|
@@ -266,8 +266,7 @@ cribl_control_plane/models/pipelinefunctionconf.py,sha256=X61RPaoYpa_UZWavnQiNSa
|
|
|
266
266
|
cribl_control_plane/models/productscore.py,sha256=iR4tV3eQI39kjOmyXM3RxJTxkisfVdio0p8nfmZ7t90,271
|
|
267
267
|
cribl_control_plane/models/rbacresource.py,sha256=gN2zY3kwlIC-gL_K2N4ORuyTaKuqAttzaZaVftT1qQ4,429
|
|
268
268
|
cribl_control_plane/models/resourcepolicy.py,sha256=NBWadVgjY9ctVazi9xRkj2bXg-_x_DAQXowYarTu5BU,696
|
|
269
|
-
cribl_control_plane/models/
|
|
270
|
-
cribl_control_plane/models/routeconf.py,sha256=whFyvzWwmEqAo_0HoTFKJTZqQ2p8kdPKaZJIlh9nS58,1451
|
|
269
|
+
cribl_control_plane/models/routeconf.py,sha256=5QEcL6QMsAfoofsS8OJr8LkgCekLq2P7-byTNcepuHQ,1380
|
|
271
270
|
cribl_control_plane/models/routes.py,sha256=2MRVmc4zvUjQw6moQmRYss_XaoGcaauj2Jpdb3VX8pA,2022
|
|
272
271
|
cribl_control_plane/models/routesroute.py,sha256=7hFUWpgVDBj0N117IFxZRGkFqJntbe4NyBakVyMKsTY,2339
|
|
273
272
|
cribl_control_plane/models/runnablejob.py,sha256=hyWHdW7SypvxfnwGcpRfXRAt7HgQWEyq3rqsm4TsEWM,812
|
|
@@ -323,6 +322,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
323
322
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
324
323
|
cribl_control_plane/versions.py,sha256=4xdTYbM84Xyjr5qkixqNpgn2q6V8aXVYXkEPDU2Ele0,1156
|
|
325
324
|
cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
|
|
326
|
-
cribl_control_plane-0.0.
|
|
327
|
-
cribl_control_plane-0.0.
|
|
328
|
-
cribl_control_plane-0.0.
|
|
325
|
+
cribl_control_plane-0.0.50rc2.dist-info/METADATA,sha256=mZ00x2vQZgmVDg4BfNKWbgFu30acRlVhXI30usR3WOg,38887
|
|
326
|
+
cribl_control_plane-0.0.50rc2.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
327
|
+
cribl_control_plane-0.0.50rc2.dist-info/RECORD,,
|
|
@@ -1,14 +0,0 @@
|
|
|
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"
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from cribl_control_plane.types import BaseModel
|
|
5
|
-
from typing_extensions import TypedDict
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class RouteCloneConfTypedDict(TypedDict):
|
|
9
|
-
pass
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
class RouteCloneConf(BaseModel):
|
|
13
|
-
pass
|
|
File without changes
|