cribl-control-plane 0.0.26a1__py3-none-any.whl → 0.0.28__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 (132) hide show
  1. cribl_control_plane/_hooks/clientcredentials.py +22 -7
  2. cribl_control_plane/_version.py +4 -4
  3. cribl_control_plane/acl.py +203 -0
  4. cribl_control_plane/auth_sdk.py +9 -176
  5. cribl_control_plane/branches.py +335 -0
  6. cribl_control_plane/commits.py +1141 -0
  7. cribl_control_plane/commits_files.py +371 -0
  8. cribl_control_plane/configs_versions.py +189 -0
  9. cribl_control_plane/destinations.py +18 -729
  10. cribl_control_plane/destinations_pq.py +359 -0
  11. cribl_control_plane/errors/__init__.py +3 -2
  12. cribl_control_plane/errors/healthstatus_error.py +1 -1
  13. cribl_control_plane/groups_configs.py +17 -0
  14. cribl_control_plane/groups_sdk.py +18 -551
  15. cribl_control_plane/{healthinfo.py → health.py} +3 -1
  16. cribl_control_plane/hectokens.py +479 -0
  17. cribl_control_plane/models/__init__.py +6 -37
  18. cribl_control_plane/models/healthstatus.py +3 -3
  19. cribl_control_plane/models/inputappscope.py +5 -5
  20. cribl_control_plane/models/inputcollection.py +2 -2
  21. cribl_control_plane/models/inputconfluentcloud.py +3 -3
  22. cribl_control_plane/models/inputcribl.py +5 -5
  23. cribl_control_plane/models/inputcriblhttp.py +3 -3
  24. cribl_control_plane/models/inputcribllakehttp.py +3 -3
  25. cribl_control_plane/models/inputcriblmetrics.py +5 -5
  26. cribl_control_plane/models/inputcribltcp.py +3 -3
  27. cribl_control_plane/models/inputdatadogagent.py +3 -3
  28. cribl_control_plane/models/inputedgeprometheus.py +3 -3
  29. cribl_control_plane/models/inputelastic.py +3 -3
  30. cribl_control_plane/models/inputeventhub.py +3 -3
  31. cribl_control_plane/models/inputfile.py +5 -5
  32. cribl_control_plane/models/inputfirehose.py +3 -3
  33. cribl_control_plane/models/inputgooglepubsub.py +3 -3
  34. cribl_control_plane/models/inputgrafana.py +6 -6
  35. cribl_control_plane/models/inputhttp.py +3 -3
  36. cribl_control_plane/models/inputhttpraw.py +3 -3
  37. cribl_control_plane/models/inputjournalfiles.py +3 -3
  38. cribl_control_plane/models/inputkafka.py +3 -3
  39. cribl_control_plane/models/inputkinesis.py +3 -3
  40. cribl_control_plane/models/inputkubeevents.py +5 -5
  41. cribl_control_plane/models/inputkubelogs.py +5 -5
  42. cribl_control_plane/models/inputkubemetrics.py +5 -5
  43. cribl_control_plane/models/inputloki.py +3 -3
  44. cribl_control_plane/models/inputmodeldriventelemetry.py +3 -3
  45. cribl_control_plane/models/inputmsk.py +3 -3
  46. cribl_control_plane/models/inputnetflow.py +3 -3
  47. cribl_control_plane/models/inputoffice365mgmt.py +3 -3
  48. cribl_control_plane/models/inputoffice365msgtrace.py +3 -3
  49. cribl_control_plane/models/inputoffice365service.py +3 -3
  50. cribl_control_plane/models/inputopentelemetry.py +3 -3
  51. cribl_control_plane/models/inputprometheus.py +3 -3
  52. cribl_control_plane/models/inputprometheusrw.py +3 -3
  53. cribl_control_plane/models/inputrawudp.py +3 -3
  54. cribl_control_plane/models/inputsnmp.py +3 -3
  55. cribl_control_plane/models/inputsplunk.py +3 -3
  56. cribl_control_plane/models/inputsplunkhec.py +3 -3
  57. cribl_control_plane/models/inputsplunksearch.py +3 -3
  58. cribl_control_plane/models/inputsqs.py +3 -3
  59. cribl_control_plane/models/inputsystemmetrics.py +5 -5
  60. cribl_control_plane/models/inputsystemstate.py +5 -5
  61. cribl_control_plane/models/inputtcp.py +3 -3
  62. cribl_control_plane/models/inputtcpjson.py +3 -3
  63. cribl_control_plane/models/inputwef.py +3 -3
  64. cribl_control_plane/models/inputwindowsmetrics.py +5 -5
  65. cribl_control_plane/models/inputwiz.py +3 -3
  66. cribl_control_plane/models/inputzscalerhec.py +3 -3
  67. cribl_control_plane/models/outputazureblob.py +3 -3
  68. cribl_control_plane/models/outputazuredataexplorer.py +3 -3
  69. cribl_control_plane/models/outputazureeventhub.py +3 -3
  70. cribl_control_plane/models/outputclickhouse.py +3 -3
  71. cribl_control_plane/models/outputcloudwatch.py +3 -3
  72. cribl_control_plane/models/outputconfluentcloud.py +3 -3
  73. cribl_control_plane/models/outputcriblhttp.py +5 -5
  74. cribl_control_plane/models/outputcribllake.py +5 -5
  75. cribl_control_plane/models/outputcribltcp.py +5 -5
  76. cribl_control_plane/models/outputcrowdstrikenextgensiem.py +3 -3
  77. cribl_control_plane/models/outputdatadog.py +5 -5
  78. cribl_control_plane/models/outputdataset.py +5 -5
  79. cribl_control_plane/models/outputdevnull.py +5 -5
  80. cribl_control_plane/models/outputdiskspool.py +5 -5
  81. cribl_control_plane/models/outputdls3.py +3 -3
  82. cribl_control_plane/models/outputdynatracehttp.py +3 -3
  83. cribl_control_plane/models/outputdynatraceotlp.py +3 -3
  84. cribl_control_plane/models/outputelasticcloud.py +3 -3
  85. cribl_control_plane/models/outputexabeam.py +3 -3
  86. cribl_control_plane/models/outputgooglecloudlogging.py +3 -3
  87. cribl_control_plane/models/outputgooglecloudstorage.py +3 -3
  88. cribl_control_plane/models/outputgrafanacloud.py +10 -10
  89. cribl_control_plane/models/outputgraphite.py +3 -3
  90. cribl_control_plane/models/outputhumiohec.py +3 -3
  91. cribl_control_plane/models/outputkafka.py +3 -3
  92. cribl_control_plane/models/outputkinesis.py +3 -3
  93. cribl_control_plane/models/outputminio.py +3 -3
  94. cribl_control_plane/models/outputmsk.py +3 -3
  95. cribl_control_plane/models/outputnewrelic.py +5 -5
  96. cribl_control_plane/models/outputnewrelicevents.py +3 -3
  97. cribl_control_plane/models/outputring.py +5 -5
  98. cribl_control_plane/models/outputs3.py +3 -3
  99. cribl_control_plane/models/outputsecuritylake.py +3 -3
  100. cribl_control_plane/models/outputsentinel.py +3 -3
  101. cribl_control_plane/models/outputsentineloneaisiem.py +3 -3
  102. cribl_control_plane/models/outputservicenow.py +3 -3
  103. cribl_control_plane/models/outputsns.py +3 -3
  104. cribl_control_plane/models/outputsplunk.py +3 -3
  105. cribl_control_plane/models/outputsplunkhec.py +5 -5
  106. cribl_control_plane/models/outputsqs.py +3 -3
  107. cribl_control_plane/models/outputstatsd.py +3 -3
  108. cribl_control_plane/models/outputstatsdext.py +3 -3
  109. cribl_control_plane/models/outputsyslog.py +5 -5
  110. cribl_control_plane/models/outputtcpjson.py +5 -5
  111. cribl_control_plane/models/outputwebhook.py +5 -5
  112. cribl_control_plane/models/outputxsiam.py +5 -5
  113. cribl_control_plane/models/schemeclientoauth.py +5 -0
  114. cribl_control_plane/nodes.py +90 -68
  115. cribl_control_plane/samples.py +391 -0
  116. cribl_control_plane/sdk.py +11 -17
  117. cribl_control_plane/sources.py +15 -469
  118. cribl_control_plane/{workers_sdk.py → statuses.py} +23 -25
  119. cribl_control_plane/{deployments.py → summaries.py} +3 -3
  120. cribl_control_plane/teams.py +201 -0
  121. cribl_control_plane/tokens.py +182 -0
  122. cribl_control_plane/utils/__init__.py +3 -2
  123. cribl_control_plane/utils/security.py +5 -0
  124. cribl_control_plane/versions.py +26 -0
  125. cribl_control_plane/versions_configs.py +171 -0
  126. {cribl_control_plane-0.0.26a1.dist-info → cribl_control_plane-0.0.28.dist-info}/METADATA +77 -38
  127. {cribl_control_plane-0.0.26a1.dist-info → cribl_control_plane-0.0.28.dist-info}/RECORD +128 -119
  128. cribl_control_plane/models/createversionsyncop.py +0 -23
  129. cribl_control_plane/models/restartresponse.py +0 -26
  130. cribl_control_plane/models/updateworkersrestartop.py +0 -24
  131. cribl_control_plane/versioning.py +0 -2309
  132. {cribl_control_plane-0.0.26a1.dist-info → cribl_control_plane-0.0.28.dist-info}/WHEEL +0 -0
@@ -103,6 +103,7 @@ class OutputGoogleCloudLoggingPqControls(BaseModel):
103
103
 
104
104
 
105
105
  class OutputGoogleCloudLoggingTypedDict(TypedDict):
106
+ type: OutputGoogleCloudLoggingType
106
107
  log_location_type: LogLocationType
107
108
  log_name_expression: str
108
109
  r"""JavaScript expression to compute the value of the log name."""
@@ -110,7 +111,6 @@ class OutputGoogleCloudLoggingTypedDict(TypedDict):
110
111
  r"""JavaScript expression to compute the value of the folder ID with which log entries should be associated."""
111
112
  id: NotRequired[str]
112
113
  r"""Unique ID for this output"""
113
- type: NotRequired[OutputGoogleCloudLoggingType]
114
114
  pipeline: NotRequired[str]
115
115
  r"""Pipeline to process data before sending out to this output"""
116
116
  system_fields: NotRequired[List[str]]
@@ -230,6 +230,8 @@ class OutputGoogleCloudLoggingTypedDict(TypedDict):
230
230
 
231
231
 
232
232
  class OutputGoogleCloudLogging(BaseModel):
233
+ type: OutputGoogleCloudLoggingType
234
+
233
235
  log_location_type: Annotated[
234
236
  LogLocationType, pydantic.Field(alias="logLocationType")
235
237
  ]
@@ -245,8 +247,6 @@ class OutputGoogleCloudLogging(BaseModel):
245
247
  id: Optional[str] = None
246
248
  r"""Unique ID for this output"""
247
249
 
248
- type: Optional[OutputGoogleCloudLoggingType] = None
249
-
250
250
  pipeline: Optional[str] = None
251
251
  r"""Pipeline to process data before sending out to this output"""
252
252
 
@@ -109,13 +109,13 @@ class OutputGoogleCloudStorageKeyValueMetadatum(BaseModel):
109
109
 
110
110
 
111
111
  class OutputGoogleCloudStorageTypedDict(TypedDict):
112
+ type: OutputGoogleCloudStorageType
112
113
  bucket: str
113
114
  r"""Name of the destination bucket. This value can be a constant or a JavaScript expression that can only be evaluated at init time. Example of referencing a Global Variable: `myBucket-${C.vars.myVar}`."""
114
115
  region: str
115
116
  r"""Region where the bucket is located"""
116
117
  id: NotRequired[str]
117
118
  r"""Unique ID for this output"""
118
- type: NotRequired[OutputGoogleCloudStorageType]
119
119
  pipeline: NotRequired[str]
120
120
  r"""Pipeline to process data before sending out to this output"""
121
121
  system_fields: NotRequired[List[str]]
@@ -215,6 +215,8 @@ class OutputGoogleCloudStorageTypedDict(TypedDict):
215
215
 
216
216
 
217
217
  class OutputGoogleCloudStorage(BaseModel):
218
+ type: OutputGoogleCloudStorageType
219
+
218
220
  bucket: str
219
221
  r"""Name of the destination bucket. This value can be a constant or a JavaScript expression that can only be evaluated at init time. Example of referencing a Global Variable: `myBucket-${C.vars.myVar}`."""
220
222
 
@@ -224,8 +226,6 @@ class OutputGoogleCloudStorage(BaseModel):
224
226
  id: Optional[str] = None
225
227
  r"""Unique ID for this output"""
226
228
 
227
- type: Optional[OutputGoogleCloudStorageType] = None
228
-
229
229
  pipeline: Optional[str] = None
230
230
  r"""Pipeline to process data before sending out to this output"""
231
231
 
@@ -234,11 +234,11 @@ class OutputGrafanaCloudPqControls2(BaseModel):
234
234
 
235
235
 
236
236
  class OutputGrafanaCloudGrafanaCloud2TypedDict(TypedDict):
237
- id: str
238
- r"""Unique ID for this output"""
239
237
  type: OutputGrafanaCloudType2
240
238
  prometheus_url: str
241
239
  r"""The remote_write endpoint to send Prometheus metrics to, such as https://prometheus-blocks-prod-us-central1.grafana.net/api/prom/push"""
240
+ id: NotRequired[str]
241
+ r"""Unique ID for this output"""
242
242
  pipeline: NotRequired[str]
243
243
  r"""Pipeline to process data before sending out to this output"""
244
244
  system_fields: NotRequired[List[str]]
@@ -316,14 +316,14 @@ class OutputGrafanaCloudGrafanaCloud2TypedDict(TypedDict):
316
316
 
317
317
 
318
318
  class OutputGrafanaCloudGrafanaCloud2(BaseModel):
319
- id: str
320
- r"""Unique ID for this output"""
321
-
322
319
  type: OutputGrafanaCloudType2
323
320
 
324
321
  prometheus_url: Annotated[str, pydantic.Field(alias="prometheusUrl")]
325
322
  r"""The remote_write endpoint to send Prometheus metrics to, such as https://prometheus-blocks-prod-us-central1.grafana.net/api/prom/push"""
326
323
 
324
+ id: Optional[str] = None
325
+ r"""Unique ID for this output"""
326
+
327
327
  pipeline: Optional[str] = None
328
328
  r"""Pipeline to process data before sending out to this output"""
329
329
 
@@ -710,11 +710,11 @@ class OutputGrafanaCloudPqControls1(BaseModel):
710
710
 
711
711
 
712
712
  class OutputGrafanaCloudGrafanaCloud1TypedDict(TypedDict):
713
- id: str
714
- r"""Unique ID for this output"""
715
713
  type: OutputGrafanaCloudType1
716
714
  loki_url: str
717
715
  r"""The endpoint to send logs to, such as https://logs-prod-us-central1.grafana.net"""
716
+ id: NotRequired[str]
717
+ r"""Unique ID for this output"""
718
718
  pipeline: NotRequired[str]
719
719
  r"""Pipeline to process data before sending out to this output"""
720
720
  system_fields: NotRequired[List[str]]
@@ -792,14 +792,14 @@ class OutputGrafanaCloudGrafanaCloud1TypedDict(TypedDict):
792
792
 
793
793
 
794
794
  class OutputGrafanaCloudGrafanaCloud1(BaseModel):
795
- id: str
796
- r"""Unique ID for this output"""
797
-
798
795
  type: OutputGrafanaCloudType1
799
796
 
800
797
  loki_url: Annotated[str, pydantic.Field(alias="lokiUrl")]
801
798
  r"""The endpoint to send logs to, such as https://logs-prod-us-central1.grafana.net"""
802
799
 
800
+ id: Optional[str] = None
801
+ r"""Unique ID for this output"""
802
+
803
803
  pipeline: Optional[str] = None
804
804
  r"""Pipeline to process data before sending out to this output"""
805
805
 
@@ -58,11 +58,11 @@ class OutputGraphitePqControls(BaseModel):
58
58
 
59
59
 
60
60
  class OutputGraphiteTypedDict(TypedDict):
61
+ type: OutputGraphiteType
61
62
  host: str
62
63
  r"""The hostname of the destination."""
63
64
  id: NotRequired[str]
64
65
  r"""Unique ID for this output"""
65
- type: NotRequired[OutputGraphiteType]
66
66
  pipeline: NotRequired[str]
67
67
  r"""Pipeline to process data before sending out to this output"""
68
68
  system_fields: NotRequired[List[str]]
@@ -106,14 +106,14 @@ class OutputGraphiteTypedDict(TypedDict):
106
106
 
107
107
 
108
108
  class OutputGraphite(BaseModel):
109
+ type: OutputGraphiteType
110
+
109
111
  host: str
110
112
  r"""The hostname of the destination."""
111
113
 
112
114
  id: Optional[str] = None
113
115
  r"""Unique ID for this output"""
114
116
 
115
- type: Optional[OutputGraphiteType] = None
116
-
117
117
  pipeline: Optional[str] = None
118
118
  r"""Pipeline to process data before sending out to this output"""
119
119
 
@@ -138,9 +138,9 @@ class OutputHumioHecPqControls(BaseModel):
138
138
 
139
139
 
140
140
  class OutputHumioHecTypedDict(TypedDict):
141
+ type: OutputHumioHecType
141
142
  id: NotRequired[str]
142
143
  r"""Unique ID for this output"""
143
- type: NotRequired[OutputHumioHecType]
144
144
  pipeline: NotRequired[str]
145
145
  r"""Pipeline to process data before sending out to this output"""
146
146
  system_fields: NotRequired[List[str]]
@@ -210,11 +210,11 @@ class OutputHumioHecTypedDict(TypedDict):
210
210
 
211
211
 
212
212
  class OutputHumioHec(BaseModel):
213
+ type: OutputHumioHecType
214
+
213
215
  id: Optional[str] = None
214
216
  r"""Unique ID for this output"""
215
217
 
216
- type: Optional[OutputHumioHecType] = None
217
-
218
218
  pipeline: Optional[str] = None
219
219
  r"""Pipeline to process data before sending out to this output"""
220
220
 
@@ -339,13 +339,13 @@ class OutputKafkaPqControls(BaseModel):
339
339
 
340
340
 
341
341
  class OutputKafkaTypedDict(TypedDict):
342
+ type: OutputKafkaType
342
343
  brokers: List[str]
343
344
  r"""Enter each Kafka bootstrap server you want to use. Specify hostname and port, e.g., mykafkabroker:9092, or just hostname, in which case @{product} will assign port 9092."""
344
345
  topic: str
345
346
  r"""The topic to publish events to. Can be overridden using the __topicOut field."""
346
347
  id: NotRequired[str]
347
348
  r"""Unique ID for this output"""
348
- type: NotRequired[OutputKafkaType]
349
349
  pipeline: NotRequired[str]
350
350
  r"""Pipeline to process data before sending out to this output"""
351
351
  system_fields: NotRequired[List[str]]
@@ -409,6 +409,8 @@ class OutputKafkaTypedDict(TypedDict):
409
409
 
410
410
 
411
411
  class OutputKafka(BaseModel):
412
+ type: OutputKafkaType
413
+
412
414
  brokers: List[str]
413
415
  r"""Enter each Kafka bootstrap server you want to use. Specify hostname and port, e.g., mykafkabroker:9092, or just hostname, in which case @{product} will assign port 9092."""
414
416
 
@@ -418,8 +420,6 @@ class OutputKafka(BaseModel):
418
420
  id: Optional[str] = None
419
421
  r"""Unique ID for this output"""
420
422
 
421
- type: Optional[OutputKafkaType] = None
422
-
423
423
  pipeline: Optional[str] = None
424
424
  r"""Pipeline to process data before sending out to this output"""
425
425
 
@@ -73,13 +73,13 @@ class OutputKinesisPqControls(BaseModel):
73
73
 
74
74
 
75
75
  class OutputKinesisTypedDict(TypedDict):
76
+ type: OutputKinesisType
76
77
  stream_name: str
77
78
  r"""Kinesis stream name to send events to."""
78
79
  region: str
79
80
  r"""Region where the Kinesis stream is located"""
80
81
  id: NotRequired[str]
81
82
  r"""Unique ID for this output"""
82
- type: NotRequired[OutputKinesisType]
83
83
  pipeline: NotRequired[str]
84
84
  r"""Pipeline to process data before sending out to this output"""
85
85
  system_fields: NotRequired[List[str]]
@@ -141,6 +141,8 @@ class OutputKinesisTypedDict(TypedDict):
141
141
 
142
142
 
143
143
  class OutputKinesis(BaseModel):
144
+ type: OutputKinesisType
145
+
144
146
  stream_name: Annotated[str, pydantic.Field(alias="streamName")]
145
147
  r"""Kinesis stream name to send events to."""
146
148
 
@@ -150,8 +152,6 @@ class OutputKinesis(BaseModel):
150
152
  id: Optional[str] = None
151
153
  r"""Unique ID for this output"""
152
154
 
153
- type: Optional[OutputKinesisType] = None
154
-
155
155
  pipeline: Optional[str] = None
156
156
  r"""Pipeline to process data before sending out to this output"""
157
157
 
@@ -116,13 +116,13 @@ class OutputMinioKeyValueMetadatum(BaseModel):
116
116
 
117
117
 
118
118
  class OutputMinioTypedDict(TypedDict):
119
+ type: OutputMinioType
119
120
  endpoint: str
120
121
  r"""MinIO service url (e.g. http://minioHost:9000)"""
121
122
  bucket: str
122
123
  r"""Name of the destination MinIO bucket. This value can be a constant or a JavaScript expression that can only be evaluated at init time. Example referencing a Global Variable: `myBucket-${C.vars.myVar}`"""
123
124
  id: NotRequired[str]
124
125
  r"""Unique ID for this output"""
125
- type: NotRequired[OutputMinioType]
126
126
  pipeline: NotRequired[str]
127
127
  r"""Pipeline to process data before sending out to this output"""
128
128
  system_fields: NotRequired[List[str]]
@@ -225,6 +225,8 @@ class OutputMinioTypedDict(TypedDict):
225
225
 
226
226
 
227
227
  class OutputMinio(BaseModel):
228
+ type: OutputMinioType
229
+
228
230
  endpoint: str
229
231
  r"""MinIO service url (e.g. http://minioHost:9000)"""
230
232
 
@@ -234,8 +236,6 @@ class OutputMinio(BaseModel):
234
236
  id: Optional[str] = None
235
237
  r"""Unique ID for this output"""
236
238
 
237
- type: Optional[OutputMinioType] = None
238
-
239
239
  pipeline: Optional[str] = None
240
240
  r"""Pipeline to process data before sending out to this output"""
241
241
 
@@ -332,6 +332,7 @@ class OutputMskPqControls(BaseModel):
332
332
 
333
333
 
334
334
  class OutputMskTypedDict(TypedDict):
335
+ type: OutputMskType
335
336
  brokers: List[str]
336
337
  r"""Enter each Kafka bootstrap server you want to use. Specify hostname and port, e.g., mykafkabroker:9092, or just hostname, in which case @{product} will assign port 9092."""
337
338
  topic: str
@@ -340,7 +341,6 @@ class OutputMskTypedDict(TypedDict):
340
341
  r"""Region where the MSK cluster is located"""
341
342
  id: NotRequired[str]
342
343
  r"""Unique ID for this output"""
343
- type: NotRequired[OutputMskType]
344
344
  pipeline: NotRequired[str]
345
345
  r"""Pipeline to process data before sending out to this output"""
346
346
  system_fields: NotRequired[List[str]]
@@ -424,6 +424,8 @@ class OutputMskTypedDict(TypedDict):
424
424
 
425
425
 
426
426
  class OutputMsk(BaseModel):
427
+ type: OutputMskType
428
+
427
429
  brokers: List[str]
428
430
  r"""Enter each Kafka bootstrap server you want to use. Specify hostname and port, e.g., mykafkabroker:9092, or just hostname, in which case @{product} will assign port 9092."""
429
431
 
@@ -436,8 +438,6 @@ class OutputMsk(BaseModel):
436
438
  id: Optional[str] = None
437
439
  r"""Unique ID for this output"""
438
440
 
439
- type: Optional[OutputMskType] = None
440
-
441
441
  pipeline: Optional[str] = None
442
442
  r"""Pipeline to process data before sending out to this output"""
443
443
 
@@ -159,9 +159,9 @@ class OutputNewrelicPqControls(BaseModel):
159
159
 
160
160
 
161
161
  class OutputNewrelicTypedDict(TypedDict):
162
- id: str
163
- r"""Unique ID for this output"""
164
162
  type: OutputNewrelicType
163
+ id: NotRequired[str]
164
+ r"""Unique ID for this output"""
165
165
  pipeline: NotRequired[str]
166
166
  r"""Pipeline to process data before sending out to this output"""
167
167
  system_fields: NotRequired[List[str]]
@@ -238,11 +238,11 @@ class OutputNewrelicTypedDict(TypedDict):
238
238
 
239
239
 
240
240
  class OutputNewrelic(BaseModel):
241
- id: str
242
- r"""Unique ID for this output"""
243
-
244
241
  type: OutputNewrelicType
245
242
 
243
+ id: Optional[str] = None
244
+ r"""Unique ID for this output"""
245
+
246
246
  pipeline: Optional[str] = None
247
247
  r"""Pipeline to process data before sending out to this output"""
248
248
 
@@ -139,13 +139,13 @@ class OutputNewrelicEventsPqControls(BaseModel):
139
139
 
140
140
 
141
141
  class OutputNewrelicEventsTypedDict(TypedDict):
142
+ type: OutputNewrelicEventsType
142
143
  account_id: str
143
144
  r"""New Relic account ID"""
144
145
  event_type: str
145
146
  r"""Default eventType to use when not present in an event. For more information, see [here](https://docs.newrelic.com/docs/telemetry-data-platform/custom-data/custom-events/data-requirements-limits-custom-event-data/#reserved-words)."""
146
147
  id: NotRequired[str]
147
148
  r"""Unique ID for this output"""
148
- type: NotRequired[OutputNewrelicEventsType]
149
149
  pipeline: NotRequired[str]
150
150
  r"""Pipeline to process data before sending out to this output"""
151
151
  system_fields: NotRequired[List[str]]
@@ -218,6 +218,8 @@ class OutputNewrelicEventsTypedDict(TypedDict):
218
218
 
219
219
 
220
220
  class OutputNewrelicEvents(BaseModel):
221
+ type: OutputNewrelicEventsType
222
+
221
223
  account_id: Annotated[str, pydantic.Field(alias="accountId")]
222
224
  r"""New Relic account ID"""
223
225
 
@@ -227,8 +229,6 @@ class OutputNewrelicEvents(BaseModel):
227
229
  id: Optional[str] = None
228
230
  r"""Unique ID for this output"""
229
231
 
230
- type: Optional[OutputNewrelicEventsType] = None
231
-
232
232
  pipeline: Optional[str] = None
233
233
  r"""Pipeline to process data before sending out to this output"""
234
234
 
@@ -32,9 +32,9 @@ class OutputRingBackpressureBehavior(str, Enum):
32
32
 
33
33
 
34
34
  class OutputRingTypedDict(TypedDict):
35
- id: str
36
- r"""Unique ID for this output"""
37
35
  type: OutputRingType
36
+ id: NotRequired[str]
37
+ r"""Unique ID for this output"""
38
38
  pipeline: NotRequired[str]
39
39
  r"""Pipeline to process data before sending out to this output"""
40
40
  system_fields: NotRequired[List[str]]
@@ -60,11 +60,11 @@ class OutputRingTypedDict(TypedDict):
60
60
 
61
61
 
62
62
  class OutputRing(BaseModel):
63
- id: str
64
- r"""Unique ID for this output"""
65
-
66
63
  type: OutputRingType
67
64
 
65
+ id: Optional[str] = None
66
+ r"""Unique ID for this output"""
67
+
68
68
  pipeline: Optional[str] = None
69
69
  r"""Pipeline to process data before sending out to this output"""
70
70
 
@@ -121,11 +121,11 @@ class OutputS3KeyValueMetadatum(BaseModel):
121
121
 
122
122
 
123
123
  class OutputS3TypedDict(TypedDict):
124
+ type: OutputS3Type
124
125
  bucket: str
125
126
  r"""Name of the destination S3 bucket. Must be a JavaScript expression (which can evaluate to a constant value), enclosed in quotes or backticks. Can be evaluated only at initialization time. Example referencing a Global Variable: `myBucket-${C.vars.myVar}`"""
126
127
  id: NotRequired[str]
127
128
  r"""Unique ID for this output"""
128
- type: NotRequired[OutputS3Type]
129
129
  pipeline: NotRequired[str]
130
130
  r"""Pipeline to process data before sending out to this output"""
131
131
  system_fields: NotRequired[List[str]]
@@ -241,14 +241,14 @@ class OutputS3TypedDict(TypedDict):
241
241
 
242
242
 
243
243
  class OutputS3(BaseModel):
244
+ type: OutputS3Type
245
+
244
246
  bucket: str
245
247
  r"""Name of the destination S3 bucket. Must be a JavaScript expression (which can evaluate to a constant value), enclosed in quotes or backticks. Can be evaluated only at initialization time. Example referencing a Global Variable: `myBucket-${C.vars.myVar}`"""
246
248
 
247
249
  id: Optional[str] = None
248
250
  r"""Unique ID for this output"""
249
251
 
250
- type: Optional[OutputS3Type] = None
251
-
252
252
  pipeline: Optional[str] = None
253
253
  r"""Pipeline to process data before sending out to this output"""
254
254
 
@@ -98,6 +98,7 @@ class OutputSecurityLakeKeyValueMetadatum(BaseModel):
98
98
 
99
99
 
100
100
  class OutputSecurityLakeTypedDict(TypedDict):
101
+ type: OutputSecurityLakeType
101
102
  bucket: str
102
103
  r"""Name of the destination S3 bucket. Must be a JavaScript expression (which can evaluate to a constant value), enclosed in quotes or backticks. Can be evaluated only at initialization time. Example referencing a Global Variable: `myBucket-${C.vars.myVar}`"""
103
104
  region: str
@@ -110,7 +111,6 @@ class OutputSecurityLakeTypedDict(TypedDict):
110
111
  r"""Name of the custom source configured in Amazon Security Lake"""
111
112
  id: NotRequired[str]
112
113
  r"""Unique ID for this output"""
113
- type: NotRequired[OutputSecurityLakeType]
114
114
  pipeline: NotRequired[str]
115
115
  r"""Pipeline to process data before sending out to this output"""
116
116
  system_fields: NotRequired[List[str]]
@@ -213,6 +213,8 @@ class OutputSecurityLakeTypedDict(TypedDict):
213
213
 
214
214
 
215
215
  class OutputSecurityLake(BaseModel):
216
+ type: OutputSecurityLakeType
217
+
216
218
  bucket: str
217
219
  r"""Name of the destination S3 bucket. Must be a JavaScript expression (which can evaluate to a constant value), enclosed in quotes or backticks. Can be evaluated only at initialization time. Example referencing a Global Variable: `myBucket-${C.vars.myVar}`"""
218
220
 
@@ -231,8 +233,6 @@ class OutputSecurityLake(BaseModel):
231
233
  id: Optional[str] = None
232
234
  r"""Unique ID for this output"""
233
235
 
234
- type: Optional[OutputSecurityLakeType] = None
235
-
236
236
  pipeline: Optional[str] = None
237
237
  r"""Pipeline to process data before sending out to this output"""
238
238
 
@@ -142,6 +142,7 @@ class OutputSentinelPqControls(BaseModel):
142
142
 
143
143
 
144
144
  class OutputSentinelTypedDict(TypedDict):
145
+ type: OutputSentinelType
145
146
  login_url: str
146
147
  r"""URL for OAuth"""
147
148
  secret: str
@@ -150,7 +151,6 @@ class OutputSentinelTypedDict(TypedDict):
150
151
  r"""JavaScript expression to compute the Client ID for the Azure application. Can be a constant."""
151
152
  id: NotRequired[str]
152
153
  r"""Unique ID for this output"""
153
- type: NotRequired[OutputSentinelType]
154
154
  pipeline: NotRequired[str]
155
155
  r"""Pipeline to process data before sending out to this output"""
156
156
  system_fields: NotRequired[List[str]]
@@ -244,6 +244,8 @@ class OutputSentinelTypedDict(TypedDict):
244
244
 
245
245
 
246
246
  class OutputSentinel(BaseModel):
247
+ type: OutputSentinelType
248
+
247
249
  login_url: Annotated[str, pydantic.Field(alias="loginUrl")]
248
250
  r"""URL for OAuth"""
249
251
 
@@ -256,8 +258,6 @@ class OutputSentinel(BaseModel):
256
258
  id: Optional[str] = None
257
259
  r"""Unique ID for this output"""
258
260
 
259
- type: Optional[OutputSentinelType] = None
260
-
261
261
  pipeline: Optional[str] = None
262
262
  r"""Pipeline to process data before sending out to this output"""
263
263
 
@@ -150,9 +150,9 @@ class OutputSentinelOneAiSiemPqControls(BaseModel):
150
150
 
151
151
 
152
152
  class OutputSentinelOneAiSiemTypedDict(TypedDict):
153
+ type: OutputSentinelOneAiSiemType
153
154
  id: NotRequired[str]
154
155
  r"""Unique ID for this output"""
155
- type: NotRequired[OutputSentinelOneAiSiemType]
156
156
  pipeline: NotRequired[str]
157
157
  r"""Pipeline to process data before sending out to this output"""
158
158
  system_fields: NotRequired[List[str]]
@@ -256,11 +256,11 @@ class OutputSentinelOneAiSiemTypedDict(TypedDict):
256
256
 
257
257
 
258
258
  class OutputSentinelOneAiSiem(BaseModel):
259
+ type: OutputSentinelOneAiSiemType
260
+
259
261
  id: Optional[str] = None
260
262
  r"""Unique ID for this output"""
261
263
 
262
- type: Optional[OutputSentinelOneAiSiemType] = None
263
-
264
264
  pipeline: Optional[str] = None
265
265
  r"""Pipeline to process data before sending out to this output"""
266
266
 
@@ -233,11 +233,11 @@ class OutputServiceNowPqControls(BaseModel):
233
233
 
234
234
 
235
235
  class OutputServiceNowTypedDict(TypedDict):
236
+ type: OutputServiceNowType
236
237
  token_secret: str
237
238
  r"""Select or create a stored text secret"""
238
239
  id: NotRequired[str]
239
240
  r"""Unique ID for this output"""
240
- type: NotRequired[OutputServiceNowType]
241
241
  pipeline: NotRequired[str]
242
242
  r"""Pipeline to process data before sending out to this output"""
243
243
  system_fields: NotRequired[List[str]]
@@ -319,14 +319,14 @@ class OutputServiceNowTypedDict(TypedDict):
319
319
 
320
320
 
321
321
  class OutputServiceNow(BaseModel):
322
+ type: OutputServiceNowType
323
+
322
324
  token_secret: Annotated[str, pydantic.Field(alias="tokenSecret")]
323
325
  r"""Select or create a stored text secret"""
324
326
 
325
327
  id: Optional[str] = None
326
328
  r"""Unique ID for this output"""
327
329
 
328
- type: Optional[OutputServiceNowType] = None
329
-
330
330
  pipeline: Optional[str] = None
331
331
  r"""Pipeline to process data before sending out to this output"""
332
332
 
@@ -66,13 +66,13 @@ class OutputSnsPqControls(BaseModel):
66
66
 
67
67
 
68
68
  class OutputSnsTypedDict(TypedDict):
69
+ type: OutputSnsType
69
70
  topic_arn: str
70
71
  r"""The ARN of the SNS topic to send events to. When a non-AWS URL is specified, format must be: '{url}/myQueueName'. E.g., '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 initialization time. Example referencing a Global Variable: `https://host:port/myQueue-${C.vars.myVar}`"""
71
72
  message_group_id: str
72
73
  r"""Messages in the same group are processed in a FIFO manner. 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}`."""
73
74
  id: NotRequired[str]
74
75
  r"""Unique ID for this output"""
75
- type: NotRequired[OutputSnsType]
76
76
  pipeline: NotRequired[str]
77
77
  r"""Pipeline to process data before sending out to this output"""
78
78
  system_fields: NotRequired[List[str]]
@@ -126,6 +126,8 @@ class OutputSnsTypedDict(TypedDict):
126
126
 
127
127
 
128
128
  class OutputSns(BaseModel):
129
+ type: OutputSnsType
130
+
129
131
  topic_arn: Annotated[str, pydantic.Field(alias="topicArn")]
130
132
  r"""The ARN of the SNS topic to send events to. When a non-AWS URL is specified, format must be: '{url}/myQueueName'. E.g., '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 initialization time. Example referencing a Global Variable: `https://host:port/myQueue-${C.vars.myVar}`"""
131
133
 
@@ -135,8 +137,6 @@ class OutputSns(BaseModel):
135
137
  id: Optional[str] = None
136
138
  r"""Unique ID for this output"""
137
139
 
138
- type: Optional[OutputSnsType] = None
139
-
140
140
  pipeline: Optional[str] = None
141
141
  r"""Pipeline to process data before sending out to this output"""
142
142
 
@@ -155,11 +155,11 @@ class OutputSplunkPqControls(BaseModel):
155
155
 
156
156
 
157
157
  class OutputSplunkTypedDict(TypedDict):
158
+ type: OutputSplunkType
158
159
  host: str
159
160
  r"""The hostname of the receiver"""
160
161
  id: NotRequired[str]
161
162
  r"""Unique ID for this output"""
162
- type: NotRequired[OutputSplunkType]
163
163
  pipeline: NotRequired[str]
164
164
  r"""Pipeline to process data before sending out to this output"""
165
165
  system_fields: NotRequired[List[str]]
@@ -216,14 +216,14 @@ class OutputSplunkTypedDict(TypedDict):
216
216
 
217
217
 
218
218
  class OutputSplunk(BaseModel):
219
+ type: OutputSplunkType
220
+
219
221
  host: str
220
222
  r"""The hostname of the receiver"""
221
223
 
222
224
  id: Optional[str] = None
223
225
  r"""Unique ID for this output"""
224
226
 
225
- type: Optional[OutputSplunkType] = None
226
-
227
227
  pipeline: Optional[str] = None
228
228
  r"""Pipeline to process data before sending out to this output"""
229
229
 
@@ -146,9 +146,9 @@ class OutputSplunkHecPqControls(BaseModel):
146
146
 
147
147
 
148
148
  class OutputSplunkHecTypedDict(TypedDict):
149
- id: str
150
- r"""Unique ID for this output"""
151
149
  type: OutputSplunkHecType
150
+ id: NotRequired[str]
151
+ r"""Unique ID for this output"""
152
152
  pipeline: NotRequired[str]
153
153
  r"""Pipeline to process data before sending out to this output"""
154
154
  system_fields: NotRequired[List[str]]
@@ -231,11 +231,11 @@ class OutputSplunkHecTypedDict(TypedDict):
231
231
 
232
232
 
233
233
  class OutputSplunkHec(BaseModel):
234
- id: str
235
- r"""Unique ID for this output"""
236
-
237
234
  type: OutputSplunkHecType
238
235
 
236
+ id: Optional[str] = None
237
+ r"""Unique ID for this output"""
238
+
239
239
  pipeline: Optional[str] = None
240
240
  r"""Pipeline to process data before sending out to this output"""
241
241