cribl-control-plane 0.1.0b2__py3-none-any.whl → 0.2.0b1__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/models/__init__.py +68 -7
- cribl_control_plane/models/createversionundoop.py +3 -3
- cribl_control_plane/models/distributedsummary.py +6 -0
- cribl_control_plane/models/gitinfo.py +14 -3
- cribl_control_plane/models/input.py +65 -63
- cribl_control_plane/models/inputappscope.py +4 -0
- cribl_control_plane/models/inputazureblob.py +4 -0
- cribl_control_plane/models/inputcollection.py +4 -0
- cribl_control_plane/models/inputconfluentcloud.py +8 -0
- cribl_control_plane/models/inputcribl.py +4 -0
- cribl_control_plane/models/inputcriblhttp.py +4 -0
- cribl_control_plane/models/inputcribllakehttp.py +4 -0
- cribl_control_plane/models/inputcriblmetrics.py +4 -0
- cribl_control_plane/models/inputcribltcp.py +4 -0
- cribl_control_plane/models/inputcrowdstrike.py +7 -0
- cribl_control_plane/models/inputdatadogagent.py +4 -0
- cribl_control_plane/models/inputdatagen.py +4 -0
- cribl_control_plane/models/inputedgeprometheus.py +12 -0
- cribl_control_plane/models/inputelastic.py +11 -0
- cribl_control_plane/models/inputeventhub.py +6 -0
- cribl_control_plane/models/inputexec.py +4 -0
- cribl_control_plane/models/inputfile.py +6 -0
- cribl_control_plane/models/inputfirehose.py +4 -0
- cribl_control_plane/models/inputgooglepubsub.py +7 -0
- cribl_control_plane/models/inputgrafana.py +8 -0
- cribl_control_plane/models/inputhttp.py +4 -0
- cribl_control_plane/models/inputhttpraw.py +4 -0
- cribl_control_plane/models/inputjournalfiles.py +4 -0
- cribl_control_plane/models/inputkafka.py +8 -0
- cribl_control_plane/models/inputkinesis.py +15 -0
- cribl_control_plane/models/inputkubeevents.py +4 -0
- cribl_control_plane/models/inputkubelogs.py +4 -0
- cribl_control_plane/models/inputkubemetrics.py +4 -0
- cribl_control_plane/models/inputloki.py +4 -0
- cribl_control_plane/models/inputmetrics.py +4 -0
- cribl_control_plane/models/inputmodeldriventelemetry.py +4 -0
- cribl_control_plane/models/inputmsk.py +7 -0
- cribl_control_plane/models/inputnetflow.py +4 -0
- cribl_control_plane/models/inputoffice365mgmt.py +11 -0
- cribl_control_plane/models/inputoffice365msgtrace.py +11 -0
- cribl_control_plane/models/inputoffice365service.py +11 -0
- cribl_control_plane/models/inputopentelemetry.py +8 -0
- cribl_control_plane/models/inputprometheus.py +10 -0
- cribl_control_plane/models/inputprometheusrw.py +4 -0
- cribl_control_plane/models/inputrawudp.py +4 -0
- cribl_control_plane/models/inputs3.py +7 -0
- cribl_control_plane/models/inputs3inventory.py +7 -0
- cribl_control_plane/models/inputsecuritylake.py +7 -0
- cribl_control_plane/models/inputsnmp.py +11 -0
- cribl_control_plane/models/inputsplunk.py +9 -0
- cribl_control_plane/models/inputsplunkhec.py +4 -0
- cribl_control_plane/models/inputsplunksearch.py +7 -0
- cribl_control_plane/models/inputsqs.py +17 -10
- cribl_control_plane/models/inputsyslog.py +8 -0
- cribl_control_plane/models/inputsystemmetrics.py +32 -0
- cribl_control_plane/models/inputsystemstate.py +4 -0
- cribl_control_plane/models/inputtcp.py +4 -0
- cribl_control_plane/models/inputtcpjson.py +4 -0
- cribl_control_plane/models/inputwef.py +6 -0
- cribl_control_plane/models/inputwindowsmetrics.py +28 -0
- cribl_control_plane/models/inputwineventlogs.py +8 -0
- cribl_control_plane/models/inputwiz.py +7 -0
- cribl_control_plane/models/inputwizwebhook.py +4 -0
- cribl_control_plane/models/inputzscalerhec.py +4 -0
- cribl_control_plane/models/jobinfo.py +4 -1
- cribl_control_plane/models/nodeprovidedinfo.py +4 -1
- cribl_control_plane/models/output.py +74 -69
- cribl_control_plane/models/outputazureblob.py +20 -0
- cribl_control_plane/models/outputazuredataexplorer.py +28 -0
- cribl_control_plane/models/outputazureeventhub.py +17 -0
- cribl_control_plane/models/outputazurelogs.py +13 -0
- cribl_control_plane/models/outputchronicle.py +444 -0
- cribl_control_plane/models/outputclickhouse.py +17 -0
- cribl_control_plane/models/outputcloudwatch.py +13 -0
- cribl_control_plane/models/outputconfluentcloud.py +24 -0
- cribl_control_plane/models/outputcriblhttp.py +15 -0
- cribl_control_plane/models/outputcribllake.py +21 -0
- cribl_control_plane/models/outputcribltcp.py +12 -0
- cribl_control_plane/models/outputcrowdstrikenextgensiem.py +15 -0
- cribl_control_plane/models/outputdatabricks.py +9 -0
- cribl_control_plane/models/outputdatadog.py +30 -0
- cribl_control_plane/models/outputdataset.py +23 -0
- cribl_control_plane/models/outputdls3.py +35 -0
- cribl_control_plane/models/outputdynatracehttp.py +22 -0
- cribl_control_plane/models/outputdynatraceotlp.py +22 -0
- cribl_control_plane/models/outputelastic.py +18 -0
- cribl_control_plane/models/outputelasticcloud.py +13 -0
- cribl_control_plane/models/outputexabeam.py +14 -0
- cribl_control_plane/models/outputfilesystem.py +15 -0
- cribl_control_plane/models/outputgooglechronicle.py +26 -4
- cribl_control_plane/models/outputgooglecloudlogging.py +28 -4
- cribl_control_plane/models/outputgooglecloudstorage.py +28 -0
- cribl_control_plane/models/outputgooglepubsub.py +13 -0
- cribl_control_plane/models/outputgrafanacloud.py +50 -0
- cribl_control_plane/models/outputgraphite.py +12 -0
- cribl_control_plane/models/outputhoneycomb.py +13 -0
- cribl_control_plane/models/outputhumiohec.py +15 -0
- cribl_control_plane/models/outputinfluxdb.py +19 -0
- cribl_control_plane/models/outputkafka.py +24 -0
- cribl_control_plane/models/outputkinesis.py +15 -0
- cribl_control_plane/models/outputloki.py +20 -0
- cribl_control_plane/models/outputminio.py +28 -0
- cribl_control_plane/models/outputmsk.py +23 -0
- cribl_control_plane/models/outputnewrelic.py +16 -0
- cribl_control_plane/models/outputnewrelicevents.py +16 -0
- cribl_control_plane/models/outputopentelemetry.py +22 -0
- cribl_control_plane/models/outputprometheus.py +13 -0
- cribl_control_plane/models/outputring.py +2 -0
- cribl_control_plane/models/outputs3.py +35 -0
- cribl_control_plane/models/outputsecuritylake.py +29 -0
- cribl_control_plane/models/outputsentinel.py +15 -0
- cribl_control_plane/models/outputsentineloneaisiem.py +13 -0
- cribl_control_plane/models/outputservicenow.py +21 -0
- cribl_control_plane/models/outputsignalfx.py +13 -0
- cribl_control_plane/models/outputsns.py +13 -0
- cribl_control_plane/models/outputsplunk.py +15 -0
- cribl_control_plane/models/outputsplunkhec.py +13 -0
- cribl_control_plane/models/outputsplunklb.py +15 -0
- cribl_control_plane/models/outputsqs.py +23 -10
- cribl_control_plane/models/outputstatsd.py +12 -0
- cribl_control_plane/models/outputstatsdext.py +12 -0
- cribl_control_plane/models/outputsumologic.py +15 -0
- cribl_control_plane/models/outputsyslog.py +24 -0
- cribl_control_plane/models/outputtcpjson.py +12 -0
- cribl_control_plane/models/outputwavefront.py +13 -0
- cribl_control_plane/models/outputwebhook.py +23 -0
- cribl_control_plane/models/outputxsiam.py +13 -0
- cribl_control_plane/models/packinfo.py +3 -0
- cribl_control_plane/models/packinstallinfo.py +3 -0
- cribl_control_plane/models/runnablejobcollection.py +4 -0
- {cribl_control_plane-0.1.0b2.dist-info → cribl_control_plane-0.2.0b1.dist-info}/METADATA +1 -8
- {cribl_control_plane-0.1.0b2.dist-info → cribl_control_plane-0.2.0b1.dist-info}/RECORD +142 -141
- {cribl_control_plane-0.1.0b2.dist-info → cribl_control_plane-0.2.0b1.dist-info}/WHEEL +0 -0
|
@@ -101,7 +101,9 @@ class OutputCriblHTTPTLSSettingsClientSide(BaseModel):
|
|
|
101
101
|
class OutputCriblHTTPCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
102
102
|
r"""Codec to use to compress the data before sending"""
|
|
103
103
|
|
|
104
|
+
# None
|
|
104
105
|
NONE = "none"
|
|
106
|
+
# Gzip
|
|
105
107
|
GZIP = "gzip"
|
|
106
108
|
|
|
107
109
|
|
|
@@ -119,8 +121,11 @@ class OutputCriblHTTPExtraHTTPHeader(BaseModel):
|
|
|
119
121
|
class OutputCriblHTTPFailedRequestLoggingMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
120
122
|
r"""Data to log when a request fails. All headers are redacted by default, unless listed as safe headers below."""
|
|
121
123
|
|
|
124
|
+
# Payload
|
|
122
125
|
PAYLOAD = "payload"
|
|
126
|
+
# Payload + Headers
|
|
123
127
|
PAYLOAD_AND_HEADERS = "payloadAndHeaders"
|
|
128
|
+
# None
|
|
124
129
|
NONE = "none"
|
|
125
130
|
|
|
126
131
|
|
|
@@ -181,8 +186,11 @@ class OutputCriblHTTPTimeoutRetrySettings(BaseModel):
|
|
|
181
186
|
class OutputCriblHTTPBackpressureBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
182
187
|
r"""How to handle events when all receivers are exerting backpressure"""
|
|
183
188
|
|
|
189
|
+
# Block
|
|
184
190
|
BLOCK = "block"
|
|
191
|
+
# Drop
|
|
185
192
|
DROP = "drop"
|
|
193
|
+
# Persistent Queue
|
|
186
194
|
QUEUE = "queue"
|
|
187
195
|
|
|
188
196
|
|
|
@@ -204,22 +212,29 @@ class OutputCriblHTTPURL(BaseModel):
|
|
|
204
212
|
class OutputCriblHTTPPqCompressCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
205
213
|
r"""Codec to use to compress the persisted data"""
|
|
206
214
|
|
|
215
|
+
# None
|
|
207
216
|
NONE = "none"
|
|
217
|
+
# Gzip
|
|
208
218
|
GZIP = "gzip"
|
|
209
219
|
|
|
210
220
|
|
|
211
221
|
class OutputCriblHTTPQueueFullBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
212
222
|
r"""How to handle events when the queue is exerting backpressure (full capacity or low disk). 'Block' is the same behavior as non-PQ blocking. 'Drop new data' throws away incoming data, while leaving the contents of the PQ unchanged."""
|
|
213
223
|
|
|
224
|
+
# Block
|
|
214
225
|
BLOCK = "block"
|
|
226
|
+
# Drop new data
|
|
215
227
|
DROP = "drop"
|
|
216
228
|
|
|
217
229
|
|
|
218
230
|
class OutputCriblHTTPMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
219
231
|
r"""In Error mode, PQ writes events to the filesystem if the Destination is unavailable. In Backpressure mode, PQ writes events to the filesystem when it detects backpressure from the Destination. In Always On mode, PQ always writes events to the filesystem."""
|
|
220
232
|
|
|
233
|
+
# Error
|
|
221
234
|
ERROR = "error"
|
|
235
|
+
# Backpressure
|
|
222
236
|
BACKPRESSURE = "backpressure"
|
|
237
|
+
# Always On
|
|
223
238
|
ALWAYS = "always"
|
|
224
239
|
|
|
225
240
|
|
|
@@ -25,46 +25,67 @@ class OutputCriblLakeSignatureVersion(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
|
25
25
|
class OutputCriblLakeObjectACL(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
26
26
|
r"""Object ACL to assign to uploaded objects"""
|
|
27
27
|
|
|
28
|
+
# Private
|
|
28
29
|
PRIVATE = "private"
|
|
30
|
+
# Public Read Only
|
|
29
31
|
PUBLIC_READ = "public-read"
|
|
32
|
+
# Public Read/Write
|
|
30
33
|
PUBLIC_READ_WRITE = "public-read-write"
|
|
34
|
+
# Authenticated Read Only
|
|
31
35
|
AUTHENTICATED_READ = "authenticated-read"
|
|
36
|
+
# AWS EC2 AMI Read Only
|
|
32
37
|
AWS_EXEC_READ = "aws-exec-read"
|
|
38
|
+
# Bucket Owner Read Only
|
|
33
39
|
BUCKET_OWNER_READ = "bucket-owner-read"
|
|
40
|
+
# Bucket Owner Full Control
|
|
34
41
|
BUCKET_OWNER_FULL_CONTROL = "bucket-owner-full-control"
|
|
35
42
|
|
|
36
43
|
|
|
37
44
|
class OutputCriblLakeStorageClass(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
38
45
|
r"""Storage class to select for uploaded objects"""
|
|
39
46
|
|
|
47
|
+
# Standard
|
|
40
48
|
STANDARD = "STANDARD"
|
|
49
|
+
# Reduced Redundancy Storage
|
|
41
50
|
REDUCED_REDUNDANCY = "REDUCED_REDUNDANCY"
|
|
51
|
+
# Standard, Infrequent Access
|
|
42
52
|
STANDARD_IA = "STANDARD_IA"
|
|
53
|
+
# One Zone, Infrequent Access
|
|
43
54
|
ONEZONE_IA = "ONEZONE_IA"
|
|
55
|
+
# Intelligent Tiering
|
|
44
56
|
INTELLIGENT_TIERING = "INTELLIGENT_TIERING"
|
|
57
|
+
# Glacier Flexible Retrieval
|
|
45
58
|
GLACIER = "GLACIER"
|
|
59
|
+
# Glacier Instant Retrieval
|
|
46
60
|
GLACIER_IR = "GLACIER_IR"
|
|
61
|
+
# Glacier Deep Archive
|
|
47
62
|
DEEP_ARCHIVE = "DEEP_ARCHIVE"
|
|
48
63
|
|
|
49
64
|
|
|
50
65
|
class OutputCriblLakeServerSideEncryptionForUploadedObjects(
|
|
51
66
|
str, Enum, metaclass=utils.OpenEnumMeta
|
|
52
67
|
):
|
|
68
|
+
# Amazon S3 Managed Key
|
|
53
69
|
AES256 = "AES256"
|
|
70
|
+
# AWS KMS Managed Key
|
|
54
71
|
AWS_KMS = "aws:kms"
|
|
55
72
|
|
|
56
73
|
|
|
57
74
|
class OutputCriblLakeBackpressureBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
58
75
|
r"""How to handle events when all receivers are exerting backpressure"""
|
|
59
76
|
|
|
77
|
+
# Block
|
|
60
78
|
BLOCK = "block"
|
|
79
|
+
# Drop
|
|
61
80
|
DROP = "drop"
|
|
62
81
|
|
|
63
82
|
|
|
64
83
|
class OutputCriblLakeDiskSpaceProtection(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
65
84
|
r"""How to handle events when disk space is below the global 'Min free disk space' limit"""
|
|
66
85
|
|
|
86
|
+
# Block
|
|
67
87
|
BLOCK = "block"
|
|
88
|
+
# Drop
|
|
68
89
|
DROP = "drop"
|
|
69
90
|
|
|
70
91
|
|
|
@@ -18,7 +18,9 @@ class OutputCriblTCPType(str, Enum):
|
|
|
18
18
|
class OutputCriblTCPCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
19
19
|
r"""Codec to use to compress the data before sending"""
|
|
20
20
|
|
|
21
|
+
# None
|
|
21
22
|
NONE = "none"
|
|
23
|
+
# Gzip
|
|
22
24
|
GZIP = "gzip"
|
|
23
25
|
|
|
24
26
|
|
|
@@ -108,8 +110,11 @@ class OutputCriblTCPTLSSettingsClientSide(BaseModel):
|
|
|
108
110
|
class OutputCriblTCPBackpressureBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
109
111
|
r"""How to handle events when all receivers are exerting backpressure"""
|
|
110
112
|
|
|
113
|
+
# Block
|
|
111
114
|
BLOCK = "block"
|
|
115
|
+
# Drop
|
|
112
116
|
DROP = "drop"
|
|
117
|
+
# Persistent Queue
|
|
113
118
|
QUEUE = "queue"
|
|
114
119
|
|
|
115
120
|
|
|
@@ -155,22 +160,29 @@ class OutputCriblTCPHost(BaseModel):
|
|
|
155
160
|
class OutputCriblTCPPqCompressCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
156
161
|
r"""Codec to use to compress the persisted data"""
|
|
157
162
|
|
|
163
|
+
# None
|
|
158
164
|
NONE = "none"
|
|
165
|
+
# Gzip
|
|
159
166
|
GZIP = "gzip"
|
|
160
167
|
|
|
161
168
|
|
|
162
169
|
class OutputCriblTCPQueueFullBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
163
170
|
r"""How to handle events when the queue is exerting backpressure (full capacity or low disk). 'Block' is the same behavior as non-PQ blocking. 'Drop new data' throws away incoming data, while leaving the contents of the PQ unchanged."""
|
|
164
171
|
|
|
172
|
+
# Block
|
|
165
173
|
BLOCK = "block"
|
|
174
|
+
# Drop new data
|
|
166
175
|
DROP = "drop"
|
|
167
176
|
|
|
168
177
|
|
|
169
178
|
class OutputCriblTCPMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
170
179
|
r"""In Error mode, PQ writes events to the filesystem if the Destination is unavailable. In Backpressure mode, PQ writes events to the filesystem when it detects backpressure from the Destination. In Always On mode, PQ always writes events to the filesystem."""
|
|
171
180
|
|
|
181
|
+
# Error
|
|
172
182
|
ERROR = "error"
|
|
183
|
+
# Backpressure
|
|
173
184
|
BACKPRESSURE = "backpressure"
|
|
185
|
+
# Always On
|
|
174
186
|
ALWAYS = "always"
|
|
175
187
|
|
|
176
188
|
|
|
@@ -31,8 +31,11 @@ class OutputCrowdstrikeNextGenSiemFailedRequestLoggingMode(
|
|
|
31
31
|
):
|
|
32
32
|
r"""Data to log when a request fails. All headers are redacted by default, unless listed as safe headers below."""
|
|
33
33
|
|
|
34
|
+
# Payload
|
|
34
35
|
PAYLOAD = "payload"
|
|
36
|
+
# Payload + Headers
|
|
35
37
|
PAYLOAD_AND_HEADERS = "payloadAndHeaders"
|
|
38
|
+
# None
|
|
36
39
|
NONE = "none"
|
|
37
40
|
|
|
38
41
|
|
|
@@ -41,7 +44,9 @@ class OutputCrowdstrikeNextGenSiemRequestFormat(
|
|
|
41
44
|
):
|
|
42
45
|
r"""When set to JSON, the event is automatically formatted with required fields before sending. When set to Raw, only the event's `_raw` value is sent."""
|
|
43
46
|
|
|
47
|
+
# JSON
|
|
44
48
|
JSON = "JSON"
|
|
49
|
+
# Raw
|
|
45
50
|
RAW = "raw"
|
|
46
51
|
|
|
47
52
|
|
|
@@ -113,15 +118,20 @@ class OutputCrowdstrikeNextGenSiemBackpressureBehavior(
|
|
|
113
118
|
):
|
|
114
119
|
r"""How to handle events when all receivers are exerting backpressure"""
|
|
115
120
|
|
|
121
|
+
# Block
|
|
116
122
|
BLOCK = "block"
|
|
123
|
+
# Drop
|
|
117
124
|
DROP = "drop"
|
|
125
|
+
# Persistent Queue
|
|
118
126
|
QUEUE = "queue"
|
|
119
127
|
|
|
120
128
|
|
|
121
129
|
class OutputCrowdstrikeNextGenSiemCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
122
130
|
r"""Codec to use to compress the persisted data"""
|
|
123
131
|
|
|
132
|
+
# None
|
|
124
133
|
NONE = "none"
|
|
134
|
+
# Gzip
|
|
125
135
|
GZIP = "gzip"
|
|
126
136
|
|
|
127
137
|
|
|
@@ -130,15 +140,20 @@ class OutputCrowdstrikeNextGenSiemQueueFullBehavior(
|
|
|
130
140
|
):
|
|
131
141
|
r"""How to handle events when the queue is exerting backpressure (full capacity or low disk). 'Block' is the same behavior as non-PQ blocking. 'Drop new data' throws away incoming data, while leaving the contents of the PQ unchanged."""
|
|
132
142
|
|
|
143
|
+
# Block
|
|
133
144
|
BLOCK = "block"
|
|
145
|
+
# Drop new data
|
|
134
146
|
DROP = "drop"
|
|
135
147
|
|
|
136
148
|
|
|
137
149
|
class OutputCrowdstrikeNextGenSiemMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
138
150
|
r"""In Error mode, PQ writes events to the filesystem if the Destination is unavailable. In Backpressure mode, PQ writes events to the filesystem when it detects backpressure from the Destination. In Always On mode, PQ always writes events to the filesystem."""
|
|
139
151
|
|
|
152
|
+
# Error
|
|
140
153
|
ERROR = "error"
|
|
154
|
+
# Backpressure
|
|
141
155
|
BACKPRESSURE = "backpressure"
|
|
156
|
+
# Always On
|
|
142
157
|
ALWAYS = "always"
|
|
143
158
|
|
|
144
159
|
|
|
@@ -18,29 +18,38 @@ class OutputDatabricksType(str, Enum):
|
|
|
18
18
|
class OutputDatabricksDataFormat(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
19
19
|
r"""Format of the output data"""
|
|
20
20
|
|
|
21
|
+
# JSON
|
|
21
22
|
JSON = "json"
|
|
23
|
+
# Raw
|
|
22
24
|
RAW = "raw"
|
|
25
|
+
# Parquet
|
|
23
26
|
PARQUET = "parquet"
|
|
24
27
|
|
|
25
28
|
|
|
26
29
|
class OutputDatabricksBackpressureBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
27
30
|
r"""How to handle events when all receivers are exerting backpressure"""
|
|
28
31
|
|
|
32
|
+
# Block
|
|
29
33
|
BLOCK = "block"
|
|
34
|
+
# Drop
|
|
30
35
|
DROP = "drop"
|
|
31
36
|
|
|
32
37
|
|
|
33
38
|
class OutputDatabricksDiskSpaceProtection(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
34
39
|
r"""How to handle events when disk space is below the global 'Min free disk space' limit"""
|
|
35
40
|
|
|
41
|
+
# Block
|
|
36
42
|
BLOCK = "block"
|
|
43
|
+
# Drop
|
|
37
44
|
DROP = "drop"
|
|
38
45
|
|
|
39
46
|
|
|
40
47
|
class OutputDatabricksAuthenticationMethod(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
41
48
|
r"""Unity Catalog authentication method. Choose Manual to enter credentials directly, or Secret to use a stored secret."""
|
|
42
49
|
|
|
50
|
+
# Manual
|
|
43
51
|
MANUAL = "manual"
|
|
52
|
+
# Secret Key pair
|
|
44
53
|
SECRET = "secret"
|
|
45
54
|
|
|
46
55
|
|
|
@@ -18,32 +18,49 @@ class OutputDatadogType(str, Enum):
|
|
|
18
18
|
class SendLogsAs(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
19
19
|
r"""The content type to use when sending logs"""
|
|
20
20
|
|
|
21
|
+
# text/plain
|
|
21
22
|
TEXT = "text"
|
|
23
|
+
# application/json
|
|
22
24
|
JSON = "json"
|
|
23
25
|
|
|
24
26
|
|
|
25
27
|
class OutputDatadogSeverity(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
26
28
|
r"""Default value for message severity. When you send logs as JSON objects, the event's '__severity' field (if set) will override this value."""
|
|
27
29
|
|
|
30
|
+
# emergency
|
|
28
31
|
EMERGENCY = "emergency"
|
|
32
|
+
# alert
|
|
29
33
|
ALERT = "alert"
|
|
34
|
+
# critical
|
|
30
35
|
CRITICAL = "critical"
|
|
36
|
+
# error
|
|
31
37
|
ERROR = "error"
|
|
38
|
+
# warning
|
|
32
39
|
WARNING = "warning"
|
|
40
|
+
# notice
|
|
33
41
|
NOTICE = "notice"
|
|
42
|
+
# info
|
|
34
43
|
INFO = "info"
|
|
44
|
+
# debug
|
|
35
45
|
DEBUG = "debug"
|
|
36
46
|
|
|
37
47
|
|
|
38
48
|
class DatadogSite(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
39
49
|
r"""Datadog site to which events should be sent"""
|
|
40
50
|
|
|
51
|
+
# US
|
|
41
52
|
US = "us"
|
|
53
|
+
# US3
|
|
42
54
|
US3 = "us3"
|
|
55
|
+
# US5
|
|
43
56
|
US5 = "us5"
|
|
57
|
+
# Europe
|
|
44
58
|
EU = "eu"
|
|
59
|
+
# US1-FED
|
|
45
60
|
FED1 = "fed1"
|
|
61
|
+
# AP1
|
|
46
62
|
AP1 = "ap1"
|
|
63
|
+
# Custom
|
|
47
64
|
CUSTOM = "custom"
|
|
48
65
|
|
|
49
66
|
|
|
@@ -61,8 +78,11 @@ class OutputDatadogExtraHTTPHeader(BaseModel):
|
|
|
61
78
|
class OutputDatadogFailedRequestLoggingMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
62
79
|
r"""Data to log when a request fails. All headers are redacted by default, unless listed as safe headers below."""
|
|
63
80
|
|
|
81
|
+
# Payload
|
|
64
82
|
PAYLOAD = "payload"
|
|
83
|
+
# Payload + Headers
|
|
65
84
|
PAYLOAD_AND_HEADERS = "payloadAndHeaders"
|
|
85
|
+
# None
|
|
66
86
|
NONE = "none"
|
|
67
87
|
|
|
68
88
|
|
|
@@ -123,8 +143,11 @@ class OutputDatadogTimeoutRetrySettings(BaseModel):
|
|
|
123
143
|
class OutputDatadogBackpressureBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
124
144
|
r"""How to handle events when all receivers are exerting backpressure"""
|
|
125
145
|
|
|
146
|
+
# Block
|
|
126
147
|
BLOCK = "block"
|
|
148
|
+
# Drop
|
|
127
149
|
DROP = "drop"
|
|
150
|
+
# Persistent Queue
|
|
128
151
|
QUEUE = "queue"
|
|
129
152
|
|
|
130
153
|
|
|
@@ -138,22 +161,29 @@ class OutputDatadogAuthenticationMethod(str, Enum, metaclass=utils.OpenEnumMeta)
|
|
|
138
161
|
class OutputDatadogCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
139
162
|
r"""Codec to use to compress the persisted data"""
|
|
140
163
|
|
|
164
|
+
# None
|
|
141
165
|
NONE = "none"
|
|
166
|
+
# Gzip
|
|
142
167
|
GZIP = "gzip"
|
|
143
168
|
|
|
144
169
|
|
|
145
170
|
class OutputDatadogQueueFullBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
146
171
|
r"""How to handle events when the queue is exerting backpressure (full capacity or low disk). 'Block' is the same behavior as non-PQ blocking. 'Drop new data' throws away incoming data, while leaving the contents of the PQ unchanged."""
|
|
147
172
|
|
|
173
|
+
# Block
|
|
148
174
|
BLOCK = "block"
|
|
175
|
+
# Drop new data
|
|
149
176
|
DROP = "drop"
|
|
150
177
|
|
|
151
178
|
|
|
152
179
|
class OutputDatadogMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
153
180
|
r"""In Error mode, PQ writes events to the filesystem if the Destination is unavailable. In Backpressure mode, PQ writes events to the filesystem when it detects backpressure from the Destination. In Always On mode, PQ always writes events to the filesystem."""
|
|
154
181
|
|
|
182
|
+
# Error
|
|
155
183
|
ERROR = "error"
|
|
184
|
+
# Backpressure
|
|
156
185
|
BACKPRESSURE = "backpressure"
|
|
186
|
+
# Always On
|
|
157
187
|
ALWAYS = "always"
|
|
158
188
|
|
|
159
189
|
|
|
@@ -18,12 +18,19 @@ class OutputDatasetType(str, Enum):
|
|
|
18
18
|
class OutputDatasetSeverity(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
19
19
|
r"""Default value for event severity. If the `sev` or `__severity` fields are set on an event, the first one matching will override this value."""
|
|
20
20
|
|
|
21
|
+
# 0 - finest
|
|
21
22
|
FINEST = "finest"
|
|
23
|
+
# 1 - finer
|
|
22
24
|
FINER = "finer"
|
|
25
|
+
# 2 - fine
|
|
23
26
|
FINE = "fine"
|
|
27
|
+
# 3 - info
|
|
24
28
|
INFO = "info"
|
|
29
|
+
# 4 - warning
|
|
25
30
|
WARNING = "warning"
|
|
31
|
+
# 5 - error
|
|
26
32
|
ERROR = "error"
|
|
33
|
+
# 6 - fatal
|
|
27
34
|
FATAL = "fatal"
|
|
28
35
|
|
|
29
36
|
|
|
@@ -84,8 +91,11 @@ class OutputDatasetTimeoutRetrySettings(BaseModel):
|
|
|
84
91
|
class DataSetSite(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
85
92
|
r"""DataSet site to which events should be sent"""
|
|
86
93
|
|
|
94
|
+
# US
|
|
87
95
|
US = "us"
|
|
96
|
+
# Europe
|
|
88
97
|
EU = "eu"
|
|
98
|
+
# Custom
|
|
89
99
|
CUSTOM = "custom"
|
|
90
100
|
|
|
91
101
|
|
|
@@ -103,16 +113,22 @@ class OutputDatasetExtraHTTPHeader(BaseModel):
|
|
|
103
113
|
class OutputDatasetFailedRequestLoggingMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
104
114
|
r"""Data to log when a request fails. All headers are redacted by default, unless listed as safe headers below."""
|
|
105
115
|
|
|
116
|
+
# Payload
|
|
106
117
|
PAYLOAD = "payload"
|
|
118
|
+
# Payload + Headers
|
|
107
119
|
PAYLOAD_AND_HEADERS = "payloadAndHeaders"
|
|
120
|
+
# None
|
|
108
121
|
NONE = "none"
|
|
109
122
|
|
|
110
123
|
|
|
111
124
|
class OutputDatasetBackpressureBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
112
125
|
r"""How to handle events when all receivers are exerting backpressure"""
|
|
113
126
|
|
|
127
|
+
# Block
|
|
114
128
|
BLOCK = "block"
|
|
129
|
+
# Drop
|
|
115
130
|
DROP = "drop"
|
|
131
|
+
# Persistent Queue
|
|
116
132
|
QUEUE = "queue"
|
|
117
133
|
|
|
118
134
|
|
|
@@ -126,22 +142,29 @@ class OutputDatasetAuthenticationMethod(str, Enum, metaclass=utils.OpenEnumMeta)
|
|
|
126
142
|
class OutputDatasetCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
127
143
|
r"""Codec to use to compress the persisted data"""
|
|
128
144
|
|
|
145
|
+
# None
|
|
129
146
|
NONE = "none"
|
|
147
|
+
# Gzip
|
|
130
148
|
GZIP = "gzip"
|
|
131
149
|
|
|
132
150
|
|
|
133
151
|
class OutputDatasetQueueFullBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
134
152
|
r"""How to handle events when the queue is exerting backpressure (full capacity or low disk). 'Block' is the same behavior as non-PQ blocking. 'Drop new data' throws away incoming data, while leaving the contents of the PQ unchanged."""
|
|
135
153
|
|
|
154
|
+
# Block
|
|
136
155
|
BLOCK = "block"
|
|
156
|
+
# Drop new data
|
|
137
157
|
DROP = "drop"
|
|
138
158
|
|
|
139
159
|
|
|
140
160
|
class OutputDatasetMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
141
161
|
r"""In Error mode, PQ writes events to the filesystem if the Destination is unavailable. In Backpressure mode, PQ writes events to the filesystem when it detects backpressure from the Destination. In Always On mode, PQ always writes events to the filesystem."""
|
|
142
162
|
|
|
163
|
+
# Error
|
|
143
164
|
ERROR = "error"
|
|
165
|
+
# Backpressure
|
|
144
166
|
BACKPRESSURE = "backpressure"
|
|
167
|
+
# Always On
|
|
145
168
|
ALWAYS = "always"
|
|
146
169
|
|
|
147
170
|
|
|
@@ -18,8 +18,11 @@ class OutputDlS3Type(str, Enum):
|
|
|
18
18
|
class OutputDlS3AuthenticationMethod(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
19
19
|
r"""AWS authentication method. Choose Auto to use IAM roles."""
|
|
20
20
|
|
|
21
|
+
# Auto
|
|
21
22
|
AUTO = "auto"
|
|
23
|
+
# Manual
|
|
22
24
|
MANUAL = "manual"
|
|
25
|
+
# Secret Key pair
|
|
23
26
|
SECRET = "secret"
|
|
24
27
|
|
|
25
28
|
|
|
@@ -33,54 +36,78 @@ class OutputDlS3SignatureVersion(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
|
33
36
|
class OutputDlS3ObjectACL(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
34
37
|
r"""Object ACL to assign to uploaded objects"""
|
|
35
38
|
|
|
39
|
+
# Private
|
|
36
40
|
PRIVATE = "private"
|
|
41
|
+
# Public Read Only
|
|
37
42
|
PUBLIC_READ = "public-read"
|
|
43
|
+
# Public Read/Write
|
|
38
44
|
PUBLIC_READ_WRITE = "public-read-write"
|
|
45
|
+
# Authenticated Read Only
|
|
39
46
|
AUTHENTICATED_READ = "authenticated-read"
|
|
47
|
+
# AWS EC2 AMI Read Only
|
|
40
48
|
AWS_EXEC_READ = "aws-exec-read"
|
|
49
|
+
# Bucket Owner Read Only
|
|
41
50
|
BUCKET_OWNER_READ = "bucket-owner-read"
|
|
51
|
+
# Bucket Owner Full Control
|
|
42
52
|
BUCKET_OWNER_FULL_CONTROL = "bucket-owner-full-control"
|
|
43
53
|
|
|
44
54
|
|
|
45
55
|
class OutputDlS3StorageClass(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
46
56
|
r"""Storage class to select for uploaded objects"""
|
|
47
57
|
|
|
58
|
+
# Standard
|
|
48
59
|
STANDARD = "STANDARD"
|
|
60
|
+
# Reduced Redundancy Storage
|
|
49
61
|
REDUCED_REDUNDANCY = "REDUCED_REDUNDANCY"
|
|
62
|
+
# Standard, Infrequent Access
|
|
50
63
|
STANDARD_IA = "STANDARD_IA"
|
|
64
|
+
# One Zone, Infrequent Access
|
|
51
65
|
ONEZONE_IA = "ONEZONE_IA"
|
|
66
|
+
# Intelligent Tiering
|
|
52
67
|
INTELLIGENT_TIERING = "INTELLIGENT_TIERING"
|
|
68
|
+
# Glacier Flexible Retrieval
|
|
53
69
|
GLACIER = "GLACIER"
|
|
70
|
+
# Glacier Instant Retrieval
|
|
54
71
|
GLACIER_IR = "GLACIER_IR"
|
|
72
|
+
# Glacier Deep Archive
|
|
55
73
|
DEEP_ARCHIVE = "DEEP_ARCHIVE"
|
|
56
74
|
|
|
57
75
|
|
|
58
76
|
class OutputDlS3ServerSideEncryptionForUploadedObjects(
|
|
59
77
|
str, Enum, metaclass=utils.OpenEnumMeta
|
|
60
78
|
):
|
|
79
|
+
# Amazon S3 Managed Key
|
|
61
80
|
AES256 = "AES256"
|
|
81
|
+
# AWS KMS Managed Key
|
|
62
82
|
AWS_KMS = "aws:kms"
|
|
63
83
|
|
|
64
84
|
|
|
65
85
|
class OutputDlS3DataFormat(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
66
86
|
r"""Format of the output data"""
|
|
67
87
|
|
|
88
|
+
# JSON
|
|
68
89
|
JSON = "json"
|
|
90
|
+
# Raw
|
|
69
91
|
RAW = "raw"
|
|
92
|
+
# Parquet
|
|
70
93
|
PARQUET = "parquet"
|
|
71
94
|
|
|
72
95
|
|
|
73
96
|
class OutputDlS3BackpressureBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
74
97
|
r"""How to handle events when all receivers are exerting backpressure"""
|
|
75
98
|
|
|
99
|
+
# Block
|
|
76
100
|
BLOCK = "block"
|
|
101
|
+
# Drop
|
|
77
102
|
DROP = "drop"
|
|
78
103
|
|
|
79
104
|
|
|
80
105
|
class OutputDlS3DiskSpaceProtection(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
81
106
|
r"""How to handle events when disk space is below the global 'Min free disk space' limit"""
|
|
82
107
|
|
|
108
|
+
# Block
|
|
83
109
|
BLOCK = "block"
|
|
110
|
+
# Drop
|
|
84
111
|
DROP = "drop"
|
|
85
112
|
|
|
86
113
|
|
|
@@ -94,23 +121,31 @@ class OutputDlS3Compression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
|
94
121
|
class OutputDlS3CompressionLevel(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
95
122
|
r"""Compression level to apply before moving files to final destination"""
|
|
96
123
|
|
|
124
|
+
# Best Speed
|
|
97
125
|
BEST_SPEED = "best_speed"
|
|
126
|
+
# Normal
|
|
98
127
|
NORMAL = "normal"
|
|
128
|
+
# Best Compression
|
|
99
129
|
BEST_COMPRESSION = "best_compression"
|
|
100
130
|
|
|
101
131
|
|
|
102
132
|
class OutputDlS3ParquetVersion(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
103
133
|
r"""Determines which data types are supported and how they are represented"""
|
|
104
134
|
|
|
135
|
+
# 1.0
|
|
105
136
|
PARQUET_1_0 = "PARQUET_1_0"
|
|
137
|
+
# 2.4
|
|
106
138
|
PARQUET_2_4 = "PARQUET_2_4"
|
|
139
|
+
# 2.6
|
|
107
140
|
PARQUET_2_6 = "PARQUET_2_6"
|
|
108
141
|
|
|
109
142
|
|
|
110
143
|
class OutputDlS3DataPageVersion(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
111
144
|
r"""Serialization format of data pages. Note that some reader implementations use Data page V2's attributes to work more efficiently, while others ignore it."""
|
|
112
145
|
|
|
146
|
+
# V1
|
|
113
147
|
DATA_PAGE_V1 = "DATA_PAGE_V1"
|
|
148
|
+
# V2
|
|
114
149
|
DATA_PAGE_V2 = "DATA_PAGE_V2"
|
|
115
150
|
|
|
116
151
|
|
|
@@ -39,8 +39,11 @@ class OutputDynatraceHTTPFailedRequestLoggingMode(
|
|
|
39
39
|
):
|
|
40
40
|
r"""Data to log when a request fails. All headers are redacted by default, unless listed as safe headers below."""
|
|
41
41
|
|
|
42
|
+
# Payload
|
|
42
43
|
PAYLOAD = "payload"
|
|
44
|
+
# Payload + Headers
|
|
43
45
|
PAYLOAD_AND_HEADERS = "payloadAndHeaders"
|
|
46
|
+
# None
|
|
44
47
|
NONE = "none"
|
|
45
48
|
|
|
46
49
|
|
|
@@ -101,53 +104,72 @@ class OutputDynatraceHTTPTimeoutRetrySettings(BaseModel):
|
|
|
101
104
|
class OutputDynatraceHTTPBackpressureBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
102
105
|
r"""How to handle events when all receivers are exerting backpressure"""
|
|
103
106
|
|
|
107
|
+
# Block
|
|
104
108
|
BLOCK = "block"
|
|
109
|
+
# Drop
|
|
105
110
|
DROP = "drop"
|
|
111
|
+
# Persistent Queue
|
|
106
112
|
QUEUE = "queue"
|
|
107
113
|
|
|
108
114
|
|
|
109
115
|
class OutputDynatraceHTTPAuthenticationType(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
116
|
+
# Auth token
|
|
110
117
|
TOKEN = "token"
|
|
118
|
+
# Token (text secret)
|
|
111
119
|
TEXT_SECRET = "textSecret"
|
|
112
120
|
|
|
113
121
|
|
|
114
122
|
class OutputDynatraceHTTPFormat(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
115
123
|
r"""How to format events before sending. Defaults to JSON. Plaintext is not currently supported."""
|
|
116
124
|
|
|
125
|
+
# JSON
|
|
117
126
|
JSON_ARRAY = "json_array"
|
|
127
|
+
# Plaintext
|
|
118
128
|
PLAINTEXT = "plaintext"
|
|
119
129
|
|
|
120
130
|
|
|
121
131
|
class Endpoint(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
132
|
+
# Cloud
|
|
122
133
|
CLOUD = "cloud"
|
|
134
|
+
# ActiveGate
|
|
123
135
|
ACTIVE_GATE = "activeGate"
|
|
136
|
+
# Manual
|
|
124
137
|
MANUAL = "manual"
|
|
125
138
|
|
|
126
139
|
|
|
127
140
|
class TelemetryType(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
141
|
+
# Logs
|
|
128
142
|
LOGS = "logs"
|
|
143
|
+
# Metrics
|
|
129
144
|
METRICS = "metrics"
|
|
130
145
|
|
|
131
146
|
|
|
132
147
|
class OutputDynatraceHTTPCompression(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
133
148
|
r"""Codec to use to compress the persisted data"""
|
|
134
149
|
|
|
150
|
+
# None
|
|
135
151
|
NONE = "none"
|
|
152
|
+
# Gzip
|
|
136
153
|
GZIP = "gzip"
|
|
137
154
|
|
|
138
155
|
|
|
139
156
|
class OutputDynatraceHTTPQueueFullBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
140
157
|
r"""How to handle events when the queue is exerting backpressure (full capacity or low disk). 'Block' is the same behavior as non-PQ blocking. 'Drop new data' throws away incoming data, while leaving the contents of the PQ unchanged."""
|
|
141
158
|
|
|
159
|
+
# Block
|
|
142
160
|
BLOCK = "block"
|
|
161
|
+
# Drop new data
|
|
143
162
|
DROP = "drop"
|
|
144
163
|
|
|
145
164
|
|
|
146
165
|
class OutputDynatraceHTTPMode(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
147
166
|
r"""In Error mode, PQ writes events to the filesystem if the Destination is unavailable. In Backpressure mode, PQ writes events to the filesystem when it detects backpressure from the Destination. In Always On mode, PQ always writes events to the filesystem."""
|
|
148
167
|
|
|
168
|
+
# Error
|
|
149
169
|
ERROR = "error"
|
|
170
|
+
# Backpressure
|
|
150
171
|
BACKPRESSURE = "backpressure"
|
|
172
|
+
# Always On
|
|
151
173
|
ALWAYS = "always"
|
|
152
174
|
|
|
153
175
|
|