cribl-control-plane 0.1.0b2__py3-none-any.whl → 0.1.1rc2__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.

Files changed (148) hide show
  1. cribl_control_plane/_hooks/clientcredentials.py +91 -41
  2. cribl_control_plane/_version.py +4 -4
  3. cribl_control_plane/errors/apierror.py +1 -1
  4. cribl_control_plane/errors/criblcontrolplaneerror.py +1 -1
  5. cribl_control_plane/errors/error.py +1 -1
  6. cribl_control_plane/errors/healthstatus_error.py +1 -1
  7. cribl_control_plane/errors/no_response_error.py +1 -1
  8. cribl_control_plane/errors/responsevalidationerror.py +1 -1
  9. cribl_control_plane/httpclient.py +0 -1
  10. cribl_control_plane/lakedatasets.py +12 -12
  11. cribl_control_plane/models/__init__.py +89 -7
  12. cribl_control_plane/models/createversionundoop.py +3 -3
  13. cribl_control_plane/models/cribllakedatasetupdate.py +81 -0
  14. cribl_control_plane/models/distributedsummary.py +6 -0
  15. cribl_control_plane/models/gitinfo.py +14 -3
  16. cribl_control_plane/models/input.py +65 -63
  17. cribl_control_plane/models/inputappscope.py +4 -0
  18. cribl_control_plane/models/inputazureblob.py +4 -0
  19. cribl_control_plane/models/inputcollection.py +4 -0
  20. cribl_control_plane/models/inputconfluentcloud.py +8 -0
  21. cribl_control_plane/models/inputcribl.py +4 -0
  22. cribl_control_plane/models/inputcriblhttp.py +4 -0
  23. cribl_control_plane/models/inputcribllakehttp.py +4 -0
  24. cribl_control_plane/models/inputcriblmetrics.py +4 -0
  25. cribl_control_plane/models/inputcribltcp.py +4 -0
  26. cribl_control_plane/models/inputcrowdstrike.py +7 -0
  27. cribl_control_plane/models/inputdatadogagent.py +4 -0
  28. cribl_control_plane/models/inputdatagen.py +4 -0
  29. cribl_control_plane/models/inputedgeprometheus.py +12 -0
  30. cribl_control_plane/models/inputelastic.py +11 -0
  31. cribl_control_plane/models/inputeventhub.py +6 -0
  32. cribl_control_plane/models/inputexec.py +4 -0
  33. cribl_control_plane/models/inputfile.py +6 -0
  34. cribl_control_plane/models/inputfirehose.py +4 -0
  35. cribl_control_plane/models/inputgooglepubsub.py +7 -0
  36. cribl_control_plane/models/inputgrafana.py +8 -0
  37. cribl_control_plane/models/inputhttp.py +4 -0
  38. cribl_control_plane/models/inputhttpraw.py +4 -0
  39. cribl_control_plane/models/inputjournalfiles.py +4 -0
  40. cribl_control_plane/models/inputkafka.py +8 -0
  41. cribl_control_plane/models/inputkinesis.py +15 -0
  42. cribl_control_plane/models/inputkubeevents.py +4 -0
  43. cribl_control_plane/models/inputkubelogs.py +4 -0
  44. cribl_control_plane/models/inputkubemetrics.py +4 -0
  45. cribl_control_plane/models/inputloki.py +4 -0
  46. cribl_control_plane/models/inputmetrics.py +4 -0
  47. cribl_control_plane/models/inputmodeldriventelemetry.py +4 -0
  48. cribl_control_plane/models/inputmsk.py +7 -0
  49. cribl_control_plane/models/inputnetflow.py +4 -0
  50. cribl_control_plane/models/inputoffice365mgmt.py +11 -0
  51. cribl_control_plane/models/inputoffice365msgtrace.py +11 -0
  52. cribl_control_plane/models/inputoffice365service.py +11 -0
  53. cribl_control_plane/models/inputopentelemetry.py +8 -0
  54. cribl_control_plane/models/inputprometheus.py +10 -0
  55. cribl_control_plane/models/inputprometheusrw.py +4 -0
  56. cribl_control_plane/models/inputrawudp.py +4 -0
  57. cribl_control_plane/models/inputs3.py +7 -0
  58. cribl_control_plane/models/inputs3inventory.py +7 -0
  59. cribl_control_plane/models/inputsecuritylake.py +7 -0
  60. cribl_control_plane/models/inputsnmp.py +11 -0
  61. cribl_control_plane/models/inputsplunk.py +9 -0
  62. cribl_control_plane/models/inputsplunkhec.py +4 -0
  63. cribl_control_plane/models/inputsplunksearch.py +7 -0
  64. cribl_control_plane/models/inputsqs.py +17 -10
  65. cribl_control_plane/models/inputsyslog.py +8 -0
  66. cribl_control_plane/models/inputsystemmetrics.py +32 -0
  67. cribl_control_plane/models/inputsystemstate.py +4 -0
  68. cribl_control_plane/models/inputtcp.py +4 -0
  69. cribl_control_plane/models/inputtcpjson.py +4 -0
  70. cribl_control_plane/models/inputwef.py +6 -0
  71. cribl_control_plane/models/inputwindowsmetrics.py +28 -0
  72. cribl_control_plane/models/inputwineventlogs.py +8 -0
  73. cribl_control_plane/models/inputwiz.py +7 -0
  74. cribl_control_plane/models/inputwizwebhook.py +4 -0
  75. cribl_control_plane/models/inputzscalerhec.py +4 -0
  76. cribl_control_plane/models/jobinfo.py +4 -1
  77. cribl_control_plane/models/nodeprovidedinfo.py +4 -1
  78. cribl_control_plane/models/output.py +74 -69
  79. cribl_control_plane/models/outputazureblob.py +20 -0
  80. cribl_control_plane/models/outputazuredataexplorer.py +28 -0
  81. cribl_control_plane/models/outputazureeventhub.py +17 -0
  82. cribl_control_plane/models/outputazurelogs.py +13 -0
  83. cribl_control_plane/models/outputchronicle.py +444 -0
  84. cribl_control_plane/models/outputclickhouse.py +17 -0
  85. cribl_control_plane/models/outputcloudwatch.py +13 -0
  86. cribl_control_plane/models/outputconfluentcloud.py +24 -0
  87. cribl_control_plane/models/outputcriblhttp.py +15 -0
  88. cribl_control_plane/models/outputcribllake.py +21 -0
  89. cribl_control_plane/models/outputcribltcp.py +12 -0
  90. cribl_control_plane/models/outputcrowdstrikenextgensiem.py +15 -0
  91. cribl_control_plane/models/outputdatabricks.py +9 -0
  92. cribl_control_plane/models/outputdatadog.py +30 -0
  93. cribl_control_plane/models/outputdataset.py +23 -0
  94. cribl_control_plane/models/outputdls3.py +35 -0
  95. cribl_control_plane/models/outputdynatracehttp.py +22 -0
  96. cribl_control_plane/models/outputdynatraceotlp.py +22 -0
  97. cribl_control_plane/models/outputelastic.py +18 -0
  98. cribl_control_plane/models/outputelasticcloud.py +13 -0
  99. cribl_control_plane/models/outputexabeam.py +14 -0
  100. cribl_control_plane/models/outputfilesystem.py +15 -0
  101. cribl_control_plane/models/outputgooglechronicle.py +26 -4
  102. cribl_control_plane/models/outputgooglecloudlogging.py +28 -4
  103. cribl_control_plane/models/outputgooglecloudstorage.py +28 -0
  104. cribl_control_plane/models/outputgooglepubsub.py +13 -0
  105. cribl_control_plane/models/outputgrafanacloud.py +50 -0
  106. cribl_control_plane/models/outputgraphite.py +12 -0
  107. cribl_control_plane/models/outputhoneycomb.py +13 -0
  108. cribl_control_plane/models/outputhumiohec.py +15 -0
  109. cribl_control_plane/models/outputinfluxdb.py +19 -0
  110. cribl_control_plane/models/outputkafka.py +24 -0
  111. cribl_control_plane/models/outputkinesis.py +15 -0
  112. cribl_control_plane/models/outputloki.py +20 -0
  113. cribl_control_plane/models/outputminio.py +28 -0
  114. cribl_control_plane/models/outputmsk.py +23 -0
  115. cribl_control_plane/models/outputnewrelic.py +16 -0
  116. cribl_control_plane/models/outputnewrelicevents.py +16 -0
  117. cribl_control_plane/models/outputopentelemetry.py +22 -0
  118. cribl_control_plane/models/outputprometheus.py +13 -0
  119. cribl_control_plane/models/outputring.py +2 -0
  120. cribl_control_plane/models/outputs3.py +35 -0
  121. cribl_control_plane/models/outputsecuritylake.py +29 -0
  122. cribl_control_plane/models/outputsentinel.py +15 -0
  123. cribl_control_plane/models/outputsentineloneaisiem.py +13 -0
  124. cribl_control_plane/models/outputservicenow.py +21 -0
  125. cribl_control_plane/models/outputsignalfx.py +13 -0
  126. cribl_control_plane/models/outputsns.py +13 -0
  127. cribl_control_plane/models/outputsplunk.py +15 -0
  128. cribl_control_plane/models/outputsplunkhec.py +13 -0
  129. cribl_control_plane/models/outputsplunklb.py +15 -0
  130. cribl_control_plane/models/outputsqs.py +23 -10
  131. cribl_control_plane/models/outputstatsd.py +12 -0
  132. cribl_control_plane/models/outputstatsdext.py +12 -0
  133. cribl_control_plane/models/outputsumologic.py +15 -0
  134. cribl_control_plane/models/outputsyslog.py +24 -0
  135. cribl_control_plane/models/outputtcpjson.py +12 -0
  136. cribl_control_plane/models/outputwavefront.py +13 -0
  137. cribl_control_plane/models/outputwebhook.py +23 -0
  138. cribl_control_plane/models/outputxsiam.py +13 -0
  139. cribl_control_plane/models/packinfo.py +6 -3
  140. cribl_control_plane/models/packinstallinfo.py +6 -3
  141. cribl_control_plane/models/runnablejobcollection.py +4 -0
  142. cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +9 -5
  143. cribl_control_plane/models/updatepacksop.py +27 -0
  144. cribl_control_plane/models/uploadpackresponse.py +13 -0
  145. cribl_control_plane/packs.py +196 -1
  146. {cribl_control_plane-0.1.0b2.dist-info → cribl_control_plane-0.1.1rc2.dist-info}/METADATA +47 -13
  147. {cribl_control_plane-0.1.0b2.dist-info → cribl_control_plane-0.1.1rc2.dist-info}/RECORD +148 -144
  148. {cribl_control_plane-0.1.0b2.dist-info → cribl_control_plane-0.1.1rc2.dist-info}/WHEEL +0 -0
@@ -18,38 +18,51 @@ class OutputCloudwatchType(str, Enum):
18
18
  class OutputCloudwatchAuthenticationMethod(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
 
26
29
  class OutputCloudwatchBackpressureBehavior(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"
36
+ # Persistent Queue
31
37
  QUEUE = "queue"
32
38
 
33
39
 
34
40
  class OutputCloudwatchCompression(str, Enum, metaclass=utils.OpenEnumMeta):
35
41
  r"""Codec to use to compress the persisted data"""
36
42
 
43
+ # None
37
44
  NONE = "none"
45
+ # Gzip
38
46
  GZIP = "gzip"
39
47
 
40
48
 
41
49
  class OutputCloudwatchQueueFullBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
42
50
  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."""
43
51
 
52
+ # Block
44
53
  BLOCK = "block"
54
+ # Drop new data
45
55
  DROP = "drop"
46
56
 
47
57
 
48
58
  class OutputCloudwatchMode(str, Enum, metaclass=utils.OpenEnumMeta):
49
59
  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."""
50
60
 
61
+ # Error
51
62
  ERROR = "error"
63
+ # Backpressure
52
64
  BACKPRESSURE = "backpressure"
65
+ # Always On
53
66
  ALWAYS = "always"
54
67
 
55
68
 
@@ -101,25 +101,35 @@ class OutputConfluentCloudTLSSettingsClientSide(BaseModel):
101
101
  class OutputConfluentCloudAcknowledgments(int, Enum, metaclass=utils.OpenEnumMeta):
102
102
  r"""Control the number of required acknowledgments."""
103
103
 
104
+ # Leader
104
105
  ONE = 1
106
+ # None
105
107
  ZERO = 0
108
+ # All
106
109
  MINUS_1 = -1
107
110
 
108
111
 
109
112
  class OutputConfluentCloudRecordDataFormat(str, Enum, metaclass=utils.OpenEnumMeta):
110
113
  r"""Format to use to serialize events before writing to Kafka."""
111
114
 
115
+ # JSON
112
116
  JSON = "json"
117
+ # Field _raw
113
118
  RAW = "raw"
119
+ # Protobuf
114
120
  PROTOBUF = "protobuf"
115
121
 
116
122
 
117
123
  class OutputConfluentCloudCompression(str, Enum, metaclass=utils.OpenEnumMeta):
118
124
  r"""Codec to use to compress the data before sending to Kafka"""
119
125
 
126
+ # None
120
127
  NONE = "none"
128
+ # Gzip
121
129
  GZIP = "gzip"
130
+ # Snappy
122
131
  SNAPPY = "snappy"
132
+ # LZ4
123
133
  LZ4 = "lz4"
124
134
 
125
135
 
@@ -288,9 +298,13 @@ class OutputConfluentCloudKafkaSchemaRegistryAuthentication(BaseModel):
288
298
 
289
299
 
290
300
  class OutputConfluentCloudSASLMechanism(str, Enum, metaclass=utils.OpenEnumMeta):
301
+ # PLAIN
291
302
  PLAIN = "plain"
303
+ # SCRAM-SHA-256
292
304
  SCRAM_SHA_256 = "scram-sha-256"
305
+ # SCRAM-SHA-512
293
306
  SCRAM_SHA_512 = "scram-sha-512"
307
+ # GSSAPI/Kerberos
294
308
  KERBEROS = "kerberos"
295
309
 
296
310
 
@@ -322,8 +336,11 @@ class OutputConfluentCloudAuthentication(BaseModel):
322
336
  class OutputConfluentCloudBackpressureBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
323
337
  r"""How to handle events when all receivers are exerting backpressure"""
324
338
 
339
+ # Block
325
340
  BLOCK = "block"
341
+ # Drop
326
342
  DROP = "drop"
343
+ # Persistent Queue
327
344
  QUEUE = "queue"
328
345
 
329
346
 
@@ -332,22 +349,29 @@ class OutputConfluentCloudPqCompressCompression(
332
349
  ):
333
350
  r"""Codec to use to compress the persisted data"""
334
351
 
352
+ # None
335
353
  NONE = "none"
354
+ # Gzip
336
355
  GZIP = "gzip"
337
356
 
338
357
 
339
358
  class OutputConfluentCloudQueueFullBehavior(str, Enum, metaclass=utils.OpenEnumMeta):
340
359
  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."""
341
360
 
361
+ # Block
342
362
  BLOCK = "block"
363
+ # Drop new data
343
364
  DROP = "drop"
344
365
 
345
366
 
346
367
  class OutputConfluentCloudMode(str, Enum, metaclass=utils.OpenEnumMeta):
347
368
  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."""
348
369
 
370
+ # Error
349
371
  ERROR = "error"
372
+ # Backpressure
350
373
  BACKPRESSURE = "backpressure"
374
+ # Always On
351
375
  ALWAYS = "always"
352
376
 
353
377
 
@@ -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