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
|
@@ -123,6 +123,13 @@ class OutputConfluentCloudCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
|
123
123
|
LZ4 = "lz4"
|
|
124
124
|
|
|
125
125
|
|
|
126
|
+
class OutputConfluentCloudSchemaType(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
127
|
+
r"""The schema format used to encode and decode event data"""
|
|
128
|
+
|
|
129
|
+
AVRO = "avro"
|
|
130
|
+
JSON = "json"
|
|
131
|
+
|
|
132
|
+
|
|
126
133
|
class OutputConfluentCloudAuthTypedDict(TypedDict):
|
|
127
134
|
r"""Credentials to use when authenticating with the schema registry using basic HTTP authentication"""
|
|
128
135
|
|
|
@@ -233,6 +240,8 @@ class OutputConfluentCloudKafkaSchemaRegistryAuthenticationTypedDict(TypedDict):
|
|
|
233
240
|
disabled: NotRequired[bool]
|
|
234
241
|
schema_registry_url: NotRequired[str]
|
|
235
242
|
r"""URL for accessing the Confluent Schema Registry. Example: http://localhost:8081. To connect over TLS, use https instead of http."""
|
|
243
|
+
schema_type: NotRequired[OutputConfluentCloudSchemaType]
|
|
244
|
+
r"""The schema format used to encode and decode event data"""
|
|
236
245
|
connection_timeout: NotRequired[float]
|
|
237
246
|
r"""Maximum time to wait for a Schema Registry connection to complete successfully"""
|
|
238
247
|
request_timeout: NotRequired[float]
|
|
@@ -258,6 +267,15 @@ class OutputConfluentCloudKafkaSchemaRegistryAuthentication(BaseModel):
|
|
|
258
267
|
] = "http://localhost:8081"
|
|
259
268
|
r"""URL for accessing the Confluent Schema Registry. Example: http://localhost:8081. To connect over TLS, use https instead of http."""
|
|
260
269
|
|
|
270
|
+
schema_type: Annotated[
|
|
271
|
+
Annotated[
|
|
272
|
+
Optional[OutputConfluentCloudSchemaType],
|
|
273
|
+
PlainValidator(validate_open_enum(False)),
|
|
274
|
+
],
|
|
275
|
+
pydantic.Field(alias="schemaType"),
|
|
276
|
+
] = OutputConfluentCloudSchemaType.AVRO
|
|
277
|
+
r"""The schema format used to encode and decode event data"""
|
|
278
|
+
|
|
261
279
|
connection_timeout: Annotated[
|
|
262
280
|
Optional[float], pydantic.Field(alias="connectionTimeout")
|
|
263
281
|
] = 30000
|
|
@@ -130,12 +130,12 @@ class ExtraLogType(BaseModel):
|
|
|
130
130
|
description: Optional[str] = None
|
|
131
131
|
|
|
132
132
|
|
|
133
|
-
class
|
|
133
|
+
class OutputGoogleChronicleCustomLabelTypedDict(TypedDict):
|
|
134
134
|
key: str
|
|
135
135
|
value: str
|
|
136
136
|
|
|
137
137
|
|
|
138
|
-
class
|
|
138
|
+
class OutputGoogleChronicleCustomLabel(BaseModel):
|
|
139
139
|
key: str
|
|
140
140
|
|
|
141
141
|
value: str
|
|
@@ -239,7 +239,7 @@ class OutputGoogleChronicleTypedDict(TypedDict):
|
|
|
239
239
|
r"""A unique identifier (UUID) for your Google SecOps instance. This is provided by your Google representative and is required for API V2 authentication."""
|
|
240
240
|
namespace: NotRequired[str]
|
|
241
241
|
r"""User-configured environment namespace to identify the data domain the logs originated from. Use namespace as a tag to identify the appropriate data domain for indexing and enrichment functionality. Can be overwritten by event field __namespace."""
|
|
242
|
-
custom_labels: NotRequired[List[
|
|
242
|
+
custom_labels: NotRequired[List[OutputGoogleChronicleCustomLabelTypedDict]]
|
|
243
243
|
r"""Custom labels to be added to every batch"""
|
|
244
244
|
api_key: NotRequired[str]
|
|
245
245
|
r"""Organization's API key in Google SecOps"""
|
|
@@ -417,7 +417,8 @@ class OutputGoogleChronicle(BaseModel):
|
|
|
417
417
|
r"""User-configured environment namespace to identify the data domain the logs originated from. Use namespace as a tag to identify the appropriate data domain for indexing and enrichment functionality. Can be overwritten by event field __namespace."""
|
|
418
418
|
|
|
419
419
|
custom_labels: Annotated[
|
|
420
|
-
Optional[List[
|
|
420
|
+
Optional[List[OutputGoogleChronicleCustomLabel]],
|
|
421
|
+
pydantic.Field(alias="customLabels"),
|
|
421
422
|
] = None
|
|
422
423
|
r"""Custom labels to be added to every batch"""
|
|
423
424
|
|
|
@@ -115,9 +115,9 @@ class OutputGoogleCloudLoggingTypedDict(TypedDict):
|
|
|
115
115
|
type: OutputGoogleCloudLoggingType
|
|
116
116
|
log_location_type: LogLocationType
|
|
117
117
|
log_name_expression: str
|
|
118
|
-
r"""JavaScript expression to compute the value of the log name."""
|
|
118
|
+
r"""JavaScript expression to compute the value of the log name. If Validate and correct log name is enabled, invalid characters (characters other than alphanumerics, forward-slashes, underscores, hyphens, and periods) will be replaced with an underscore."""
|
|
119
119
|
log_location_expression: str
|
|
120
|
-
r"""JavaScript expression to compute the value of the folder ID with which log entries should be associated."""
|
|
120
|
+
r"""JavaScript expression to compute the value of the folder ID with which log entries should be associated. If Validate and correct log name is enabled, invalid characters (characters other than alphanumerics, forward-slashes, underscores, hyphens, and periods) will be replaced with an underscore."""
|
|
121
121
|
id: NotRequired[str]
|
|
122
122
|
r"""Unique ID for this output"""
|
|
123
123
|
pipeline: NotRequired[str]
|
|
@@ -128,6 +128,7 @@ class OutputGoogleCloudLoggingTypedDict(TypedDict):
|
|
|
128
128
|
r"""Optionally, enable this config only on a specified Git branch. If empty, will be enabled everywhere."""
|
|
129
129
|
streamtags: NotRequired[List[str]]
|
|
130
130
|
r"""Tags for filtering and grouping in @{product}"""
|
|
131
|
+
sanitize_log_names: NotRequired[bool]
|
|
131
132
|
payload_format: NotRequired[PayloadFormat]
|
|
132
133
|
r"""Format to use when sending payload. Defaults to Text."""
|
|
133
134
|
log_labels: NotRequired[List[LogLabelTypedDict]]
|
|
@@ -247,12 +248,12 @@ class OutputGoogleCloudLogging(BaseModel):
|
|
|
247
248
|
]
|
|
248
249
|
|
|
249
250
|
log_name_expression: Annotated[str, pydantic.Field(alias="logNameExpression")]
|
|
250
|
-
r"""JavaScript expression to compute the value of the log name."""
|
|
251
|
+
r"""JavaScript expression to compute the value of the log name. If Validate and correct log name is enabled, invalid characters (characters other than alphanumerics, forward-slashes, underscores, hyphens, and periods) will be replaced with an underscore."""
|
|
251
252
|
|
|
252
253
|
log_location_expression: Annotated[
|
|
253
254
|
str, pydantic.Field(alias="logLocationExpression")
|
|
254
255
|
]
|
|
255
|
-
r"""JavaScript expression to compute the value of the folder ID with which log entries should be associated."""
|
|
256
|
+
r"""JavaScript expression to compute the value of the folder ID with which log entries should be associated. If Validate and correct log name is enabled, invalid characters (characters other than alphanumerics, forward-slashes, underscores, hyphens, and periods) will be replaced with an underscore."""
|
|
256
257
|
|
|
257
258
|
id: Optional[str] = None
|
|
258
259
|
r"""Unique ID for this output"""
|
|
@@ -271,6 +272,10 @@ class OutputGoogleCloudLogging(BaseModel):
|
|
|
271
272
|
streamtags: Optional[List[str]] = None
|
|
272
273
|
r"""Tags for filtering and grouping in @{product}"""
|
|
273
274
|
|
|
275
|
+
sanitize_log_names: Annotated[
|
|
276
|
+
Optional[bool], pydantic.Field(alias="sanitizeLogNames")
|
|
277
|
+
] = False
|
|
278
|
+
|
|
274
279
|
payload_format: Annotated[
|
|
275
280
|
Annotated[Optional[PayloadFormat], PlainValidator(validate_open_enum(False))],
|
|
276
281
|
pydantic.Field(alias="payloadFormat"),
|
|
@@ -40,6 +40,13 @@ 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
|
+
|
|
43
50
|
class OutputKafkaAuthTypedDict(TypedDict):
|
|
44
51
|
r"""Credentials to use when authenticating with the schema registry using basic HTTP authentication"""
|
|
45
52
|
|
|
@@ -150,6 +157,8 @@ class OutputKafkaKafkaSchemaRegistryAuthenticationTypedDict(TypedDict):
|
|
|
150
157
|
disabled: NotRequired[bool]
|
|
151
158
|
schema_registry_url: NotRequired[str]
|
|
152
159
|
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"""
|
|
153
162
|
connection_timeout: NotRequired[float]
|
|
154
163
|
r"""Maximum time to wait for a Schema Registry connection to complete successfully"""
|
|
155
164
|
request_timeout: NotRequired[float]
|
|
@@ -173,6 +182,14 @@ class OutputKafkaKafkaSchemaRegistryAuthentication(BaseModel):
|
|
|
173
182
|
] = "http://localhost:8081"
|
|
174
183
|
r"""URL for accessing the Confluent Schema Registry. Example: http://localhost:8081. To connect over TLS, use https instead of http."""
|
|
175
184
|
|
|
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
|
+
|
|
176
193
|
connection_timeout: Annotated[
|
|
177
194
|
Optional[float], pydantic.Field(alias="connectionTimeout")
|
|
178
195
|
] = 30000
|
|
@@ -40,6 +40,13 @@ 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
|
+
|
|
43
50
|
class OutputMskAuthTypedDict(TypedDict):
|
|
44
51
|
r"""Credentials to use when authenticating with the schema registry using basic HTTP authentication"""
|
|
45
52
|
|
|
@@ -150,6 +157,8 @@ class OutputMskKafkaSchemaRegistryAuthenticationTypedDict(TypedDict):
|
|
|
150
157
|
disabled: NotRequired[bool]
|
|
151
158
|
schema_registry_url: NotRequired[str]
|
|
152
159
|
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"""
|
|
153
162
|
connection_timeout: NotRequired[float]
|
|
154
163
|
r"""Maximum time to wait for a Schema Registry connection to complete successfully"""
|
|
155
164
|
request_timeout: NotRequired[float]
|
|
@@ -173,6 +182,14 @@ class OutputMskKafkaSchemaRegistryAuthentication(BaseModel):
|
|
|
173
182
|
] = "http://localhost:8081"
|
|
174
183
|
r"""URL for accessing the Confluent Schema Registry. Example: http://localhost:8081. To connect over TLS, use https instead of http."""
|
|
175
184
|
|
|
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
|
+
|
|
176
193
|
connection_timeout: Annotated[
|
|
177
194
|
Optional[float], pydantic.Field(alias="connectionTimeout")
|
|
178
195
|
] = 30000
|
|
@@ -79,6 +79,8 @@ class OutputSqsTypedDict(TypedDict):
|
|
|
79
79
|
type: OutputSqsType
|
|
80
80
|
queue_name: str
|
|
81
81
|
r"""The name, URL, or ARN of the SQS queue to send events to. When a non-AWS URL is specified, format must be: '{url}/myQueueName'. Example: 'https://host:port/myQueueName'. 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: `https://host:port/myQueue-${C.vars.myVar}`."""
|
|
82
|
+
queue_type: OutputSqsQueueType
|
|
83
|
+
r"""The queue type used (or created). Defaults to Standard."""
|
|
82
84
|
id: NotRequired[str]
|
|
83
85
|
r"""Unique ID for this output"""
|
|
84
86
|
pipeline: NotRequired[str]
|
|
@@ -89,8 +91,6 @@ class OutputSqsTypedDict(TypedDict):
|
|
|
89
91
|
r"""Optionally, enable this config only on a specified Git branch. If empty, will be enabled everywhere."""
|
|
90
92
|
streamtags: NotRequired[List[str]]
|
|
91
93
|
r"""Tags for filtering and grouping in @{product}"""
|
|
92
|
-
queue_type: NotRequired[OutputSqsQueueType]
|
|
93
|
-
r"""The queue type used (or created). Defaults to Standard."""
|
|
94
94
|
aws_account_id: NotRequired[str]
|
|
95
95
|
r"""SQS queue owner's AWS account ID. Leave empty if SQS queue is in same AWS account."""
|
|
96
96
|
message_group_id: NotRequired[str]
|
|
@@ -153,6 +153,12 @@ class OutputSqs(BaseModel):
|
|
|
153
153
|
queue_name: Annotated[str, pydantic.Field(alias="queueName")]
|
|
154
154
|
r"""The name, URL, or ARN of the SQS queue to send events to. When a non-AWS URL is specified, format must be: '{url}/myQueueName'. Example: 'https://host:port/myQueueName'. 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: `https://host:port/myQueue-${C.vars.myVar}`."""
|
|
155
155
|
|
|
156
|
+
queue_type: Annotated[
|
|
157
|
+
Annotated[OutputSqsQueueType, PlainValidator(validate_open_enum(False))],
|
|
158
|
+
pydantic.Field(alias="queueType"),
|
|
159
|
+
]
|
|
160
|
+
r"""The queue type used (or created). Defaults to Standard."""
|
|
161
|
+
|
|
156
162
|
id: Optional[str] = None
|
|
157
163
|
r"""Unique ID for this output"""
|
|
158
164
|
|
|
@@ -170,14 +176,6 @@ class OutputSqs(BaseModel):
|
|
|
170
176
|
streamtags: Optional[List[str]] = None
|
|
171
177
|
r"""Tags for filtering and grouping in @{product}"""
|
|
172
178
|
|
|
173
|
-
queue_type: Annotated[
|
|
174
|
-
Annotated[
|
|
175
|
-
Optional[OutputSqsQueueType], PlainValidator(validate_open_enum(False))
|
|
176
|
-
],
|
|
177
|
-
pydantic.Field(alias="queueType"),
|
|
178
|
-
] = OutputSqsQueueType.STANDARD
|
|
179
|
-
r"""The queue type used (or created). Defaults to Standard."""
|
|
180
|
-
|
|
181
179
|
aws_account_id: Annotated[Optional[str], pydantic.Field(alias="awsAccountId")] = (
|
|
182
180
|
None
|
|
183
181
|
)
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
|
@@ -1,9 +1,10 @@
|
|
|
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
|
|
4
5
|
from cribl_control_plane.types import BaseModel
|
|
5
6
|
import pydantic
|
|
6
|
-
from typing import
|
|
7
|
+
from typing import List, Optional
|
|
7
8
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
8
9
|
|
|
9
10
|
|
|
@@ -12,7 +13,7 @@ class RouteConfTypedDict(TypedDict):
|
|
|
12
13
|
id: str
|
|
13
14
|
name: str
|
|
14
15
|
pipeline: str
|
|
15
|
-
clones: NotRequired[List[
|
|
16
|
+
clones: NotRequired[List[RouteCloneConfTypedDict]]
|
|
16
17
|
context: NotRequired[str]
|
|
17
18
|
description: NotRequired[str]
|
|
18
19
|
disabled: NotRequired[bool]
|
|
@@ -32,7 +33,7 @@ class RouteConf(BaseModel):
|
|
|
32
33
|
|
|
33
34
|
pipeline: str
|
|
34
35
|
|
|
35
|
-
clones: Optional[List[
|
|
36
|
+
clones: Optional[List[RouteCloneConf]] = None
|
|
36
37
|
|
|
37
38
|
context: Optional[str] = None
|
|
38
39
|
|
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from .cribllakedataset import CriblLakeDataset, CriblLakeDatasetTypedDict
|
|
5
|
+
from .cribllakedatasetupdate import (
|
|
6
|
+
CriblLakeDatasetUpdate,
|
|
7
|
+
CriblLakeDatasetUpdateTypedDict,
|
|
8
|
+
)
|
|
5
9
|
from cribl_control_plane.types import BaseModel
|
|
6
10
|
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata, RequestMetadata
|
|
7
11
|
import pydantic
|
|
@@ -14,8 +18,8 @@ class UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict(TypedDict):
|
|
|
14
18
|
r"""The <code>id</code> of the Lake that contains the Lake Dataset to update."""
|
|
15
19
|
id_param: str
|
|
16
20
|
r"""The <code>id</code> of the Lake Dataset to update."""
|
|
17
|
-
|
|
18
|
-
r"""
|
|
21
|
+
cribl_lake_dataset_update: CriblLakeDatasetUpdateTypedDict
|
|
22
|
+
r"""CriblLakeDatasetUpdate object"""
|
|
19
23
|
|
|
20
24
|
|
|
21
25
|
class UpdateCriblLakeDatasetByLakeIDAndIDRequest(BaseModel):
|
|
@@ -33,11 +37,11 @@ class UpdateCriblLakeDatasetByLakeIDAndIDRequest(BaseModel):
|
|
|
33
37
|
]
|
|
34
38
|
r"""The <code>id</code> of the Lake Dataset to update."""
|
|
35
39
|
|
|
36
|
-
|
|
37
|
-
|
|
40
|
+
cribl_lake_dataset_update: Annotated[
|
|
41
|
+
CriblLakeDatasetUpdate,
|
|
38
42
|
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
|
39
43
|
]
|
|
40
|
-
r"""
|
|
44
|
+
r"""CriblLakeDatasetUpdate object"""
|
|
41
45
|
|
|
42
46
|
|
|
43
47
|
class UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict(TypedDict):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0a1
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -306,14 +306,10 @@ with CriblControlPlane(
|
|
|
306
306
|
<details open>
|
|
307
307
|
<summary>Available methods</summary>
|
|
308
308
|
|
|
309
|
-
### [auth](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/authsdk/README.md)
|
|
310
|
-
|
|
311
|
-
|
|
312
309
|
#### [auth.tokens](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md)
|
|
313
310
|
|
|
314
311
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/tokens/README.md#get) - Log in and fetch an authentication token
|
|
315
312
|
|
|
316
|
-
|
|
317
313
|
### [destinations](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md)
|
|
318
314
|
|
|
319
315
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/destinations/README.md#list) - List all Destinations
|
|
@@ -410,9 +406,6 @@ with CriblControlPlane(
|
|
|
410
406
|
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#create) - Add an HEC token and optional metadata to a Splunk HEC Source
|
|
411
407
|
* [update](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/hectokens/README.md#update) - Update metadata for an HEC token for a Splunk HEC Source
|
|
412
408
|
|
|
413
|
-
### [versions](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/versions/README.md)
|
|
414
|
-
|
|
415
|
-
|
|
416
409
|
#### [versions.branches](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md)
|
|
417
410
|
|
|
418
411
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/branches/README.md#list) - List all branches in the Git repository used for Cribl configuration
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
cribl_control_plane/__init__.py,sha256=w2u919V3Tzv4zEPQ-OYJ79gQ_4_SyW7GOFFoHtqXDFA,401
|
|
2
2
|
cribl_control_plane/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
|
|
3
|
-
cribl_control_plane/_hooks/clientcredentials.py,sha256=
|
|
3
|
+
cribl_control_plane/_hooks/clientcredentials.py,sha256=CeI19FzRb2V6kiNPgSFGn0CgI_Iu7lkdEcPkeWFVG1Q,9441
|
|
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=c-wsVYxFgE1XpzPYZj50cW1kEBa9drTMNIgriMuiwZk,546
|
|
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
|
|
@@ -15,20 +15,21 @@ cribl_control_plane/configs_versions.py,sha256=Ov9FqT4q9aKcCBUs1Qn65CdjnJK1pXXWP
|
|
|
15
15
|
cribl_control_plane/destinations.py,sha256=N5MApCQUc2KpTCFAQHZvXmrweuI0gSQ2mk8uTQhJjww,37519
|
|
16
16
|
cribl_control_plane/destinations_pq.py,sha256=bp25ihNaTH8Je2ifM8EgR9Cc-w4naz-snS2jJlsyq7E,14871
|
|
17
17
|
cribl_control_plane/errors/__init__.py,sha256=lzdSKjXlCz90wIT8Aylqw9-0BmLdu5P5BQFQB37rCBE,2221
|
|
18
|
-
cribl_control_plane/errors/apierror.py,sha256=
|
|
19
|
-
cribl_control_plane/errors/criblcontrolplaneerror.py,sha256=
|
|
20
|
-
cribl_control_plane/errors/error.py,sha256=
|
|
21
|
-
cribl_control_plane/errors/healthstatus_error.py,sha256=
|
|
22
|
-
cribl_control_plane/errors/no_response_error.py,sha256=
|
|
23
|
-
cribl_control_plane/errors/responsevalidationerror.py,sha256=
|
|
18
|
+
cribl_control_plane/errors/apierror.py,sha256=jCXjH_rX6hCI3Ka3hWCfLA6k2YD2Mw4z8kWial4XEdQ,1316
|
|
19
|
+
cribl_control_plane/errors/criblcontrolplaneerror.py,sha256=OtQvKiQwsbotChFzuJGbX8Z3UJ_CZK6zDas7NO3XM2A,966
|
|
20
|
+
cribl_control_plane/errors/error.py,sha256=3DUDv7CykNvse-Ecmq028fAGnwP304B6-wQQjKuV9JY,805
|
|
21
|
+
cribl_control_plane/errors/healthstatus_error.py,sha256=Psoup4s1La6jZU8Z7kXQxO6wKu0QKZyyIWsLviG0fD8,1313
|
|
22
|
+
cribl_control_plane/errors/no_response_error.py,sha256=DaZukP5ManflzAN-11MtmBitfTIct37sRvfszvfM13o,467
|
|
23
|
+
cribl_control_plane/errors/responsevalidationerror.py,sha256=l8CMARNT46VW1u2GuWlH7Ki_rF8Ulky4J_2fQ7rMwnU,783
|
|
24
24
|
cribl_control_plane/groups_configs.py,sha256=dgi-W0ElnyygaVKXqk5df2ldAAgj9YmXRPCez2hP7yc,695
|
|
25
25
|
cribl_control_plane/groups_sdk.py,sha256=EkviXQbbtP9HIv8tSkRtyOTPqxVTySgzMlgx_zhudig,61835
|
|
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=
|
|
29
|
-
cribl_control_plane/lakedatasets.py,sha256=
|
|
30
|
-
cribl_control_plane/models/__init__.py,sha256=
|
|
28
|
+
cribl_control_plane/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
29
|
+
cribl_control_plane/lakedatasets.py,sha256=VaacfDeQDMJKibABnkZibVMfOYxeh9ITcHKjM9QDqw8,46676
|
|
30
|
+
cribl_control_plane/models/__init__.py,sha256=Z8WDtDNdyJ574bt7ZDxdoOdu_JyBU6-fn-7Vmtxk5Bo,390961
|
|
31
31
|
cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
|
|
32
|
+
cribl_control_plane/models/appmode.py,sha256=29pjcPnHZ7AzaIScZ2TuWEsPvhK53dBH5tfxtY95ig4,368
|
|
32
33
|
cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
|
|
33
34
|
cribl_control_plane/models/branchinfo.py,sha256=jCX31O5TMG9jTjqigPvvUiBwpgPpVxHtSuhYrNykXiI,291
|
|
34
35
|
cribl_control_plane/models/cacheconnection.py,sha256=IaqcKQhOxuY_SYdMpD2FqBGMbraqk8msS5DzkhvjHbQ,1802
|
|
@@ -53,6 +54,7 @@ cribl_control_plane/models/createversionrevertop.py,sha256=rTPVEEkTpK3bOBcUS1AzY
|
|
|
53
54
|
cribl_control_plane/models/createversionundoop.py,sha256=31rK3VKcgJGL6JV2jBK0gYIETOa9Gwh_mSLbVyTOv54,1269
|
|
54
55
|
cribl_control_plane/models/criblevent.py,sha256=eT6WbxhOOCx5OQLkAfhwG6IeSUuUmF7hLTxeCHut4bo,361
|
|
55
56
|
cribl_control_plane/models/cribllakedataset.py,sha256=hvfxljCGd4sFOGFuPZK5w4CWtgA-ZoL8JFl9c2V_I9k,2571
|
|
57
|
+
cribl_control_plane/models/cribllakedatasetupdate.py,sha256=kym11ebNed6hcYMbVBRKeLErxpEbD8XmuTnvZo0VsvQ,2644
|
|
56
58
|
cribl_control_plane/models/currentbranchresult.py,sha256=qq1IRI_XeGrAI_-lV_xHCYuO3VwIFUVarvo0-lN-ymU,317
|
|
57
59
|
cribl_control_plane/models/datasetmetadata.py,sha256=-MI4Be38A21D8lsTEHPoAYcEdonhG1iu7TSb7r4kBK0,1350
|
|
58
60
|
cribl_control_plane/models/datasetmetadataruninfo.py,sha256=4UrKPwg1oCs7uk3s24dsVzyNXE8TpDJE9vCioZyK7t0,937
|
|
@@ -99,21 +101,21 @@ cribl_control_plane/models/gitcountresult.py,sha256=VTC0J-ShpvHbpMiZ0Ote3Wf-9Bz9
|
|
|
99
101
|
cribl_control_plane/models/gitdiffresult.py,sha256=UHek_rWxrF7AllVU0tXJe7NolWC08yBDQe0EaoUJ74o,493
|
|
100
102
|
cribl_control_plane/models/gitfile.py,sha256=CMk0Xm08WFtUX73TaKBNAyRagZh-DMIY-m33RFgfFHg,493
|
|
101
103
|
cribl_control_plane/models/gitfilesresponse.py,sha256=_xLOHOuJLUdy3BYCrkUQN8x5YLfrXcdCis57x2N32jo,670
|
|
102
|
-
cribl_control_plane/models/gitinfo.py,sha256=
|
|
104
|
+
cribl_control_plane/models/gitinfo.py,sha256=mBLQaIXUUKmKtaUjmOztylGE7SNkWM9pkVW8bL4Jicc,859
|
|
103
105
|
cribl_control_plane/models/gitlogresult.py,sha256=JSTXgsLOce7j1z0mJGALXWeOR7pclWzY0T_8gUJdzNk,830
|
|
104
106
|
cribl_control_plane/models/gitrevertparams.py,sha256=wMVlEcrprmZHUA01vi3CC8fMMDFqURJndv-1LaF2gik,478
|
|
105
107
|
cribl_control_plane/models/gitrevertresult.py,sha256=RQ7-QhPP7zerEEF2bUhVI_IVft7tqYVOZrNLCWeB32c,1056
|
|
106
108
|
cribl_control_plane/models/gitshowresult.py,sha256=XTYNDfyix6mxWGL1bzevhttxf6OMyvVVOSoS0duMh9Y,592
|
|
107
109
|
cribl_control_plane/models/gitstatusresult.py,sha256=7-pEpOnb4xzQwWo3rPBRN0tbM6UdG4KSIhkiUPyU3to,1166
|
|
108
|
-
cribl_control_plane/models/hbcriblinfo.py,sha256=
|
|
110
|
+
cribl_control_plane/models/hbcriblinfo.py,sha256=CcdBrpApexHsPsAv3vIcl2I9qV4fmz_0dfcnJZkEAlo,2757
|
|
109
111
|
cribl_control_plane/models/hbleaderinfo.py,sha256=SU5iM_I4sqxoTOzAQsw-rpOMfXwKl1ymze9nUrw6z6U,503
|
|
110
112
|
cribl_control_plane/models/healthstatus.py,sha256=oGS-ntDNekMLdbjGQtGTDsFh7gDn_Fz9KUVyLix29m8,1056
|
|
111
|
-
cribl_control_plane/models/heartbeatmetadata.py,sha256=
|
|
113
|
+
cribl_control_plane/models/heartbeatmetadata.py,sha256=IlLu0BnjnwBeXQtZSk4YUj9gKiI8n95ipYJ2Og2x1IQ,2255
|
|
112
114
|
cribl_control_plane/models/input.py,sha256=Zd6wdxKwa9pdoT3GmGKnlzwhV8oqIKG2CAnjy2khTxk,7682
|
|
113
115
|
cribl_control_plane/models/inputappscope.py,sha256=4DBz29S82rynEUOuHuz_-kuB_F2lhpxsfJs_ZlaNNJ0,21057
|
|
114
116
|
cribl_control_plane/models/inputazureblob.py,sha256=-T9zWYCKwsy8p3BIRYewiXea92dPNdy2bFIBaL_7Cmc,15601
|
|
115
117
|
cribl_control_plane/models/inputcollection.py,sha256=1iBiUz5LLFag-n7mSqupwM1GdSgXkugumESDWOSbCog,9922
|
|
116
|
-
cribl_control_plane/models/inputconfluentcloud.py,sha256=
|
|
118
|
+
cribl_control_plane/models/inputconfluentcloud.py,sha256=GNdKMp3k1H-s02rwHxfbnHSsRd7uNtj8qCAF4zPFav8,30439
|
|
117
119
|
cribl_control_plane/models/inputcribl.py,sha256=d5mS1RsSVTjOrMzTm2k35vk5-ehBRuYqAAFrADxEwUo,7588
|
|
118
120
|
cribl_control_plane/models/inputcriblhttp.py,sha256=KKhepZlvtOHWHPMtMGFd6KP3lzXFVoPJYBiOMJhZKL0,16213
|
|
119
121
|
cribl_control_plane/models/inputcribllakehttp.py,sha256=ugxBc7LoNQpbsN0HdoYDzRVmuOly571ehNx80nQKUhM,19698
|
|
@@ -133,7 +135,7 @@ cribl_control_plane/models/inputgrafana.py,sha256=21d-FCUBUC8MIGwTVCY-_d7WMlD9uk
|
|
|
133
135
|
cribl_control_plane/models/inputhttp.py,sha256=bCbg1LHnWc46HNXM9BFlV9xwWLuSU1i08cgRR84ufEM,18927
|
|
134
136
|
cribl_control_plane/models/inputhttpraw.py,sha256=oH7XZngzKH9MhyOaPJIbsd9X_HRQJfzoERJv3ktoT5s,19314
|
|
135
137
|
cribl_control_plane/models/inputjournalfiles.py,sha256=A-fL2FlhahycMrR_r63BgBAT3rhxmL7GqTJswfzWrQ8,10069
|
|
136
|
-
cribl_control_plane/models/inputkafka.py,sha256=
|
|
138
|
+
cribl_control_plane/models/inputkafka.py,sha256=Ts5oNPNBhqzQC2FDzl7AzLOdQcssHk9M34UGL4v16KE,29932
|
|
137
139
|
cribl_control_plane/models/inputkinesis.py,sha256=4feXQwIBijQ_9QTeqbDVwAA8JPbI5bXoVlbREQJ1g28,16678
|
|
138
140
|
cribl_control_plane/models/inputkubeevents.py,sha256=Q6DS2jXGBZ-b2jOop4x9aeZSdjqdYCoqxCLjDeWLIcc,8360
|
|
139
141
|
cribl_control_plane/models/inputkubelogs.py,sha256=ZxBd4qQzpYxKHN6lHIIRwsQ2_84ZRsZnLdm-SpW9S8g,12555
|
|
@@ -141,7 +143,7 @@ cribl_control_plane/models/inputkubemetrics.py,sha256=wgbpd-7CpZ1QTNG9cvI8Zi1-6H
|
|
|
141
143
|
cribl_control_plane/models/inputloki.py,sha256=COV9nDP9F6aF_Vqbx8WtX3Ee2dal-4rzAur5z_LfOGE,21542
|
|
142
144
|
cribl_control_plane/models/inputmetrics.py,sha256=iHB5Wgwb6qolo25SwmSKjyAbUDLYt-EiUE-5p7-qvpc,13433
|
|
143
145
|
cribl_control_plane/models/inputmodeldriventelemetry.py,sha256=cW1xM0EjVYpiNo0bzF4m__8Z8iWMLRJaUoZhc-E2rfw,12429
|
|
144
|
-
cribl_control_plane/models/inputmsk.py,sha256=
|
|
146
|
+
cribl_control_plane/models/inputmsk.py,sha256=L9p4XuHFfIiPs87cMlz4JZaXxyin8g9vuDp3AOgPp9c,32830
|
|
145
147
|
cribl_control_plane/models/inputnetflow.py,sha256=YoM2Iy31iM-pFIWKyck8cRoib1ghZ2vj1m-oTT3PTec,11389
|
|
146
148
|
cribl_control_plane/models/inputoffice365mgmt.py,sha256=eSN5EuvnX6nq3XNMaKpgVuv0V4MNpmOQLUXH5agb0ho,18817
|
|
147
149
|
cribl_control_plane/models/inputoffice365msgtrace.py,sha256=MLpZs6BEIlA3SB3uyi-H0ceOjdCxxsNGaI5Kjv-2JP0,21326
|
|
@@ -157,7 +159,7 @@ cribl_control_plane/models/inputsnmp.py,sha256=NcE64qTMuZw2imnl_e4t9tgii9XGeS4u7
|
|
|
157
159
|
cribl_control_plane/models/inputsplunk.py,sha256=pNijY69daHN1L-eQ4zo8YmLRoz0c8YJDa30rZrmwF9c,18399
|
|
158
160
|
cribl_control_plane/models/inputsplunkhec.py,sha256=NQL5QRaBCm8ojPUcMhsT791c9VzygEYGVrpaXO-RtVs,23475
|
|
159
161
|
cribl_control_plane/models/inputsplunksearch.py,sha256=C7i4-Q0Ti73GsubND_TkQXFdiE3gReUOgxjXnYVhetY,25536
|
|
160
|
-
cribl_control_plane/models/inputsqs.py,sha256=
|
|
162
|
+
cribl_control_plane/models/inputsqs.py,sha256=w8dBxkcZhnfC3_LBMb5yd2WlnKNJ-kO17pgSPfeFpMI,15862
|
|
161
163
|
cribl_control_plane/models/inputsyslog.py,sha256=axSbk9xImJZx9r9TvIFK9bbsHXRFhuMKQLdg6OPnxYA,37709
|
|
162
164
|
cribl_control_plane/models/inputsystemmetrics.py,sha256=1hBBRMwBY8D-0LDRRCbm8fXqnvTBbKsSqCwIbggFJ6A,21101
|
|
163
165
|
cribl_control_plane/models/inputsystemstate.py,sha256=VjOkYpwnQ6GxSy2AlQbYq-lr6XF0foJj2cTCbnsyzZI,16127
|
|
@@ -184,23 +186,23 @@ cribl_control_plane/models/lookupversions.py,sha256=PLk5hD1WPEIoePfJbhllePawNTa1
|
|
|
184
186
|
cribl_control_plane/models/masterworkerentry.py,sha256=KT8bTu5t20ZwhybN8yz4MtG8CQZGpqv3I1JGjVItY7Q,2481
|
|
185
187
|
cribl_control_plane/models/nodeactiveupgradestatus.py,sha256=knwgNh1octWr6oY-TadH0StJmzv0cktlJ4tc5pq_ChM,279
|
|
186
188
|
cribl_control_plane/models/nodefailedupgradestatus.py,sha256=EE4tSjcWyQxASftW9xJCS8K5QjpLkjCl3YDIys4r7FA,267
|
|
187
|
-
cribl_control_plane/models/nodeprovidedinfo.py,sha256=
|
|
189
|
+
cribl_control_plane/models/nodeprovidedinfo.py,sha256=lw5JFVcnoetmbF0XSxX4Cyw0_QmTFbEZ56znS-u5UBg,3652
|
|
188
190
|
cribl_control_plane/models/nodeskippedupgradestatus.py,sha256=EY-U3cUPwMa3H-X-hn5gdaEBmSAP3hB9gRPdiQZs5yU,294
|
|
189
191
|
cribl_control_plane/models/nodeupgradestate.py,sha256=EerzMMQeFl-iHKHsJwEIxRroH6w97S7-em9YoY2-ASk,286
|
|
190
192
|
cribl_control_plane/models/nodeupgradestatus.py,sha256=Ygdb7jTFOvD6M3Fjl3brliLCKbkdX3aCwkPYjTE4Dw0,1346
|
|
191
|
-
cribl_control_plane/models/output.py,sha256=
|
|
193
|
+
cribl_control_plane/models/output.py,sha256=6_qDdqnKk6qI-PHUixOriWUVp8OKRsTb6wxYQOr6ik8,8825
|
|
192
194
|
cribl_control_plane/models/outputazureblob.py,sha256=l3N9XWrzsjgpoV8AZ59lmHXL7ZNrGek1VyO2bA13DKQ,23132
|
|
193
195
|
cribl_control_plane/models/outputazuredataexplorer.py,sha256=dHMj1qBpoNwusSety4OG3KgaKKNixTaqcdKSsxDAo2Q,31977
|
|
194
196
|
cribl_control_plane/models/outputazureeventhub.py,sha256=mccmtlZjwoeyr3AagtPRleOpZKB6roJvwekRjScqa8w,15710
|
|
195
197
|
cribl_control_plane/models/outputazurelogs.py,sha256=EYwBDVXq5PMZPsy36dCxaIrGSNespqwqFEhe2u3QeQI,20483
|
|
198
|
+
cribl_control_plane/models/outputchronicle.py,sha256=xd7bbhsj8HZPJTZ4rLhTq0BKLPyR-iqa_csSmA3Fdxc,21188
|
|
196
199
|
cribl_control_plane/models/outputclickhouse.py,sha256=NkvKphhga95zlbVGlD0iaVtdBiRY0wcZqR1las5DO1Y,30465
|
|
197
200
|
cribl_control_plane/models/outputcloudwatch.py,sha256=iSxxunhSekwgZTFw1HKYnzy8YzXRoDacn2pEWlWjs4k,12677
|
|
198
|
-
cribl_control_plane/models/outputconfluentcloud.py,sha256=
|
|
201
|
+
cribl_control_plane/models/outputconfluentcloud.py,sha256=FMmqtN8AYhJzckvJKEhbVEPaGduxYO26E7G11_ZG5OQ,28082
|
|
199
202
|
cribl_control_plane/models/outputcriblhttp.py,sha256=qH_DLlLfUDMTgyjLJ-EyMytmHAJC868gYofoNP1-_ec,24062
|
|
200
203
|
cribl_control_plane/models/outputcribllake.py,sha256=h-J1uPLPV3teRWJIyrJLV1oWjxiWlQAiwDoV3rNX-Ks,17914
|
|
201
204
|
cribl_control_plane/models/outputcribltcp.py,sha256=wpiSsXcSBFXe2ZO0muijlA58TFVgL1Fw7FTt_zodf_8,17482
|
|
202
205
|
cribl_control_plane/models/outputcrowdstrikenextgensiem.py,sha256=mFJowiqrVy6peiPXOcLZTyGtxGTLLuIpoG56gw81dMY,19864
|
|
203
|
-
cribl_control_plane/models/outputdatabricks.py,sha256=SsZhmfnZ-VMxa_dcuLj0_y98NASgKHl_CDQi5UzQuGs,21879
|
|
204
206
|
cribl_control_plane/models/outputdatadog.py,sha256=KUFjLBY9FtfzSuS6XiWsvru_HmAgnSfeQFw_J-T3OVk,23291
|
|
205
207
|
cribl_control_plane/models/outputdataset.py,sha256=-iXA-e7awghBU6Plu-774F1P2TQN2w7oZX-JexG7hS4,21606
|
|
206
208
|
cribl_control_plane/models/outputdefault.py,sha256=2tjMKYSksR-0qWLd_u3PPLXL0gZiSlUdj9JTPYeYMps,1952
|
|
@@ -213,8 +215,8 @@ cribl_control_plane/models/outputelastic.py,sha256=HlQSkP9id0vrDiGGHy6eRzTsIFgzi
|
|
|
213
215
|
cribl_control_plane/models/outputelasticcloud.py,sha256=JG4IYnunuC7q-5ylciyIDdoJ6lj-sZhRh1k4_gkpGv0,19008
|
|
214
216
|
cribl_control_plane/models/outputexabeam.py,sha256=Hs7Xz_lilL52b9YVDfmqIajcMazXdE9PPhkuD409J9w,13378
|
|
215
217
|
cribl_control_plane/models/outputfilesystem.py,sha256=c1NNBsXG0KVG7BLPEeAs36st5AhGkQCHbBGC6cG9E6Q,17416
|
|
216
|
-
cribl_control_plane/models/outputgooglechronicle.py,sha256=
|
|
217
|
-
cribl_control_plane/models/outputgooglecloudlogging.py,sha256=
|
|
218
|
+
cribl_control_plane/models/outputgooglechronicle.py,sha256=kX6hC4AXmkV2uqATxh-8W5W5bUW-E9dXaQV_gQ-Ok98,23296
|
|
219
|
+
cribl_control_plane/models/outputgooglecloudlogging.py,sha256=JKzUqUY7tOfjXXhcpKuhQEIgfdE0JOiH8OhjQWi8e4M,35467
|
|
218
220
|
cribl_control_plane/models/outputgooglecloudstorage.py,sha256=6OTByksM6K9by4ogmQJiORBQ8gRzW0l6GuEl4rn7NJs,23855
|
|
219
221
|
cribl_control_plane/models/outputgooglepubsub.py,sha256=GE6QizUyIFMo96mUxGfJWPzoz7-Z8p6S3jJ1-acAKyU,12408
|
|
220
222
|
cribl_control_plane/models/outputgrafanacloud.py,sha256=zzm9DM9hm-i_tMRosiLpakuticaGDj1BN8PmHishN18,54232
|
|
@@ -222,11 +224,11 @@ cribl_control_plane/models/outputgraphite.py,sha256=XMKOU6BQZ7E2H-RGFruKE2QIqD8F
|
|
|
222
224
|
cribl_control_plane/models/outputhoneycomb.py,sha256=vjdU1Mw7NVGiRHeT6XxcfSqJuXsdYUh7Ek_gItuC1d4,17971
|
|
223
225
|
cribl_control_plane/models/outputhumiohec.py,sha256=dylW7PH9J6Ya2WHEdMMo4e941QVghdtAwumud7RcSgo,19306
|
|
224
226
|
cribl_control_plane/models/outputinfluxdb.py,sha256=lSok0YjCkxnJ5YjXKTRQAXBcMhJo0Lj60qz04o8NgXY,24733
|
|
225
|
-
cribl_control_plane/models/outputkafka.py,sha256=
|
|
227
|
+
cribl_control_plane/models/outputkafka.py,sha256=sGvsOzQw-7JitVZ-E1GjHWObTsHe675kofRgGbCcDM0,27429
|
|
226
228
|
cribl_control_plane/models/outputkinesis.py,sha256=_DwZ-GtZGta2FFKWC2BxCyJFwFGsVFuhtvfQyPk4aN0,14124
|
|
227
229
|
cribl_control_plane/models/outputloki.py,sha256=TV2Bir0X9M0mkMZ9LQV-jsIYrmcIQ9ucIdtCqsURXYM,23017
|
|
228
230
|
cribl_control_plane/models/outputminio.py,sha256=Fx4Zpl4DjwYbPqITqRGewIUd5vehVC1h_mshgj_PU3g,23862
|
|
229
|
-
cribl_control_plane/models/outputmsk.py,sha256=
|
|
231
|
+
cribl_control_plane/models/outputmsk.py,sha256=wEN43soMu3amG_zyjU7OOewON-gqyW6DcrKr0x-JU0k,30311
|
|
230
232
|
cribl_control_plane/models/outputnetflow.py,sha256=xOBy2Q48SfhNT2ifAQU-bPVQ5nOpUqMJ5B40SlZ3-0o,2790
|
|
231
233
|
cribl_control_plane/models/outputnewrelic.py,sha256=mktht54b3JtYdQngRPaN712dmjY1wdNh8hQo03eeNrw,20527
|
|
232
234
|
cribl_control_plane/models/outputnewrelicevents.py,sha256=-WrvmX4K1t5qeh7q7ZaF7V9ol5seduQNHZYLAJfZH0c,19501
|
|
@@ -246,7 +248,7 @@ cribl_control_plane/models/outputsns.py,sha256=bxpzA1Yefq17CjdnYAZterd9BiK0m6j10
|
|
|
246
248
|
cribl_control_plane/models/outputsplunk.py,sha256=4o_A77Yf-T50_qiYRKkkuAyt0EN9UpxEgx1uihLYvq0,17378
|
|
247
249
|
cribl_control_plane/models/outputsplunkhec.py,sha256=7kKY8PpJv60DRQHKhuAP5n47_PYP371stBWLPpo_aW0,21650
|
|
248
250
|
cribl_control_plane/models/outputsplunklb.py,sha256=FdUYeuNjry8Eqlu1YMR2zi5Ppf17phUUIlHXEl8wJ4w,26415
|
|
249
|
-
cribl_control_plane/models/outputsqs.py,sha256=
|
|
251
|
+
cribl_control_plane/models/outputsqs.py,sha256=RD8XGPtqZK34MOgkFYGv5Kq2huKFwFHfZbqRp05188o,15408
|
|
250
252
|
cribl_control_plane/models/outputstatsd.py,sha256=DehIzQnXHOvEvB0G35roh-sp6aEmoiy2heDj8z8pF1s,10418
|
|
251
253
|
cribl_control_plane/models/outputstatsdext.py,sha256=jct_SsCkbuOxcCoxUeWqDaJ6hRoWBjhUJAmt-kZdeho,10526
|
|
252
254
|
cribl_control_plane/models/outputsumologic.py,sha256=bBwC_i-d-Z7naaFnouLbtaOIgLejC0OlPq1737gTVtU,18942
|
|
@@ -266,7 +268,8 @@ cribl_control_plane/models/pipelinefunctionconf.py,sha256=X61RPaoYpa_UZWavnQiNSa
|
|
|
266
268
|
cribl_control_plane/models/productscore.py,sha256=iR4tV3eQI39kjOmyXM3RxJTxkisfVdio0p8nfmZ7t90,271
|
|
267
269
|
cribl_control_plane/models/rbacresource.py,sha256=gN2zY3kwlIC-gL_K2N4ORuyTaKuqAttzaZaVftT1qQ4,429
|
|
268
270
|
cribl_control_plane/models/resourcepolicy.py,sha256=NBWadVgjY9ctVazi9xRkj2bXg-_x_DAQXowYarTu5BU,696
|
|
269
|
-
cribl_control_plane/models/
|
|
271
|
+
cribl_control_plane/models/routecloneconf.py,sha256=ESvEj0vl58BGOwJB5kYu3vMAm88JizYHXU7qorGdw9M,293
|
|
272
|
+
cribl_control_plane/models/routeconf.py,sha256=whFyvzWwmEqAo_0HoTFKJTZqQ2p8kdPKaZJIlh9nS58,1451
|
|
270
273
|
cribl_control_plane/models/routes.py,sha256=2MRVmc4zvUjQw6moQmRYss_XaoGcaauj2Jpdb3VX8pA,2022
|
|
271
274
|
cribl_control_plane/models/routesroute.py,sha256=7hFUWpgVDBj0N117IFxZRGkFqJntbe4NyBakVyMKsTY,2339
|
|
272
275
|
cribl_control_plane/models/runnablejob.py,sha256=hyWHdW7SypvxfnwGcpRfXRAt7HgQWEyq3rqsm4TsEWM,812
|
|
@@ -278,7 +281,7 @@ cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D
|
|
|
278
281
|
cribl_control_plane/models/teamaccesscontrollist.py,sha256=HLMck-wyuJYiKD-adSS5ti4yLbHE2snZaOAI0GwgfOI,483
|
|
279
282
|
cribl_control_plane/models/updateconfiggroupbyproductandidop.py,sha256=kBzTO_8INoagYfVdMZ56Tm6iLnkgsf56_RFH0B4OV9Q,2099
|
|
280
283
|
cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py,sha256=4vfGnRiWhhQketlN0pXGgSKgSvQiSgNBboL3x_2B6DY,2165
|
|
281
|
-
cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=
|
|
284
|
+
cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=awEhvZ0TuHL48F_b5b-sW85FguNr76LVZpTAg9wXnWo,2133
|
|
282
285
|
cribl_control_plane/models/updatehectokenrequest.py,sha256=Pq0JnAZuDqdU_g6mmCvfxfMgeK9Pu3uVXfD9sFWfjKQ,787
|
|
283
286
|
cribl_control_plane/models/updateinputbyidop.py,sha256=fWbSRQQ1WdHI6_e-fV32T99vDFQ1Yv6oHM-80u5kbHE,1322
|
|
284
287
|
cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=di6CX6521rBdx1h5pcUrtC-glnRFeDNehcx2U3px5_U,1893
|
|
@@ -322,6 +325,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
322
325
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
323
326
|
cribl_control_plane/versions.py,sha256=4xdTYbM84Xyjr5qkixqNpgn2q6V8aXVYXkEPDU2Ele0,1156
|
|
324
327
|
cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
|
|
325
|
-
cribl_control_plane-0.
|
|
326
|
-
cribl_control_plane-0.
|
|
327
|
-
cribl_control_plane-0.
|
|
328
|
+
cribl_control_plane-0.2.0a1.dist-info/METADATA,sha256=zEYKeI-rZs34gqpi9ilbJPg1kwpXl6RTpo3pyQEm6Gg,38655
|
|
329
|
+
cribl_control_plane-0.2.0a1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
330
|
+
cribl_control_plane-0.2.0a1.dist-info/RECORD,,
|