@pulumi/datadog 4.51.0-alpha.1749534564 → 4.51.0

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.
package/types/output.d.ts CHANGED
@@ -320,6 +320,26 @@ export interface CloudConfigurationRuleFilter {
320
320
  */
321
321
  query: string;
322
322
  }
323
+ export interface ComplianceCustomFrameworkRequirement {
324
+ /**
325
+ * The controls of the requirement. Length must be at least 1.
326
+ */
327
+ controls?: outputs.ComplianceCustomFrameworkRequirementControl[];
328
+ /**
329
+ * The name of the requirement. String length must be at least 1.
330
+ */
331
+ name: string;
332
+ }
333
+ export interface ComplianceCustomFrameworkRequirementControl {
334
+ /**
335
+ * The name of the control. String length must be at least 1.
336
+ */
337
+ name: string;
338
+ /**
339
+ * The set of rules IDs for the control. Length must be at least 1.
340
+ */
341
+ rulesIds: string[];
342
+ }
323
343
  export interface DashboardListDashItem {
324
344
  /**
325
345
  * The ID of the dashboard to add
@@ -3081,11 +3101,11 @@ export interface DashboardWidgetListStreamDefinitionRequestColumn {
3081
3101
  /**
3082
3102
  * Widget column field.
3083
3103
  */
3084
- field: string;
3104
+ field?: string;
3085
3105
  /**
3086
3106
  * Widget column width. Valid values are `auto`, `compact`, `full`.
3087
3107
  */
3088
- width: string;
3108
+ width?: string;
3089
3109
  }
3090
3110
  export interface DashboardWidgetListStreamDefinitionRequestQuery {
3091
3111
  /**
@@ -8291,6 +8311,10 @@ export interface DashboardWidgetTraceServiceDefinition {
8291
8311
  titleSize?: string;
8292
8312
  }
8293
8313
  export interface DashboardWidgetTreemapDefinition {
8314
+ /**
8315
+ * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
8316
+ */
8317
+ customLinks?: outputs.DashboardWidgetTreemapDefinitionCustomLink[];
8294
8318
  /**
8295
8319
  * Nested block describing the request to use when displaying the widget.
8296
8320
  */
@@ -8300,6 +8324,24 @@ export interface DashboardWidgetTreemapDefinition {
8300
8324
  */
8301
8325
  title?: string;
8302
8326
  }
8327
+ export interface DashboardWidgetTreemapDefinitionCustomLink {
8328
+ /**
8329
+ * The flag for toggling context menu link visibility.
8330
+ */
8331
+ isHidden?: boolean;
8332
+ /**
8333
+ * The label for the custom link URL.
8334
+ */
8335
+ label?: string;
8336
+ /**
8337
+ * The URL of the custom link.
8338
+ */
8339
+ link?: string;
8340
+ /**
8341
+ * The label ID that refers to a context menu link item. When `overrideLabel` is provided, the client request omits the label field.
8342
+ */
8343
+ overrideLabel?: string;
8344
+ }
8303
8345
  export interface DashboardWidgetTreemapDefinitionRequest {
8304
8346
  formulas?: outputs.DashboardWidgetTreemapDefinitionRequestFormula[];
8305
8347
  queries?: outputs.DashboardWidgetTreemapDefinitionRequestQuery[];
@@ -10931,333 +10973,1890 @@ export interface MonitorVariablesEventQuerySearch {
10931
10973
  */
10932
10974
  query: string;
10933
10975
  }
10934
- export interface ObservabilityPipelineConfig {
10976
+ export interface ObservabilityPipelineConfig {
10977
+ /**
10978
+ * List of destinations.
10979
+ */
10980
+ destinations?: outputs.ObservabilityPipelineConfigDestinations;
10981
+ /**
10982
+ * List of processors.
10983
+ */
10984
+ processors?: outputs.ObservabilityPipelineConfigProcessors;
10985
+ /**
10986
+ * List of sources.
10987
+ */
10988
+ sources?: outputs.ObservabilityPipelineConfigSources;
10989
+ }
10990
+ export interface ObservabilityPipelineConfigDestinations {
10991
+ /**
10992
+ * The `amazonOpensearch` destination writes logs to Amazon OpenSearch.
10993
+ */
10994
+ amazonOpensearches?: outputs.ObservabilityPipelineConfigDestinationsAmazonOpensearch[];
10995
+ /**
10996
+ * The `azureStorage` destination forwards logs to an Azure Blob Storage container.
10997
+ */
10998
+ azureStorages?: outputs.ObservabilityPipelineConfigDestinationsAzureStorage[];
10999
+ /**
11000
+ * The `datadogLogs` destination forwards logs to Datadog Log Management.
11001
+ */
11002
+ datadogLogs?: outputs.ObservabilityPipelineConfigDestinationsDatadogLog[];
11003
+ /**
11004
+ * The `elasticsearch` destination writes logs to an Elasticsearch cluster.
11005
+ */
11006
+ elasticsearches?: outputs.ObservabilityPipelineConfigDestinationsElasticsearch[];
11007
+ /**
11008
+ * The `googleChronicle` destination sends logs to Google Chronicle.
11009
+ */
11010
+ googleChronicles?: outputs.ObservabilityPipelineConfigDestinationsGoogleChronicle[];
11011
+ /**
11012
+ * The `googleCloudStorage` destination stores logs in a Google Cloud Storage (GCS) bucket.
11013
+ */
11014
+ googleCloudStorages?: outputs.ObservabilityPipelineConfigDestinationsGoogleCloudStorage[];
11015
+ /**
11016
+ * The `microsoftSentinel` destination forwards logs to Microsoft Sentinel.
11017
+ */
11018
+ microsoftSentinels?: outputs.ObservabilityPipelineConfigDestinationsMicrosoftSentinel[];
11019
+ /**
11020
+ * The `newRelic` destination sends logs to the New Relic platform.
11021
+ */
11022
+ newRelics?: outputs.ObservabilityPipelineConfigDestinationsNewRelic[];
11023
+ /**
11024
+ * The `opensearch` destination writes logs to an OpenSearch cluster.
11025
+ */
11026
+ opensearches?: outputs.ObservabilityPipelineConfigDestinationsOpensearch[];
11027
+ /**
11028
+ * The `rsyslog` destination forwards logs to an external `rsyslog` server over TCP or UDP using the syslog protocol.
11029
+ */
11030
+ rsyslogs?: outputs.ObservabilityPipelineConfigDestinationsRsyslog[];
11031
+ /**
11032
+ * The `sentinelOne` destination sends logs to SentinelOne.
11033
+ */
11034
+ sentinelOnes?: outputs.ObservabilityPipelineConfigDestinationsSentinelOne[];
11035
+ /**
11036
+ * The `splunkHec` destination forwards logs to Splunk using the HTTP Event Collector (HEC).
11037
+ */
11038
+ splunkHecs?: outputs.ObservabilityPipelineConfigDestinationsSplunkHec[];
11039
+ /**
11040
+ * The `sumoLogic` destination forwards logs to Sumo Logic.
11041
+ */
11042
+ sumoLogics?: outputs.ObservabilityPipelineConfigDestinationsSumoLogic[];
11043
+ /**
11044
+ * The `syslogNg` destination forwards logs to an external `syslog-ng` server over TCP or UDP using the syslog protocol.
11045
+ */
11046
+ syslogNgs?: outputs.ObservabilityPipelineConfigDestinationsSyslogNg[];
11047
+ }
11048
+ export interface ObservabilityPipelineConfigDestinationsAmazonOpensearch {
11049
+ auth?: outputs.ObservabilityPipelineConfigDestinationsAmazonOpensearchAuth;
11050
+ /**
11051
+ * The index or datastream to write logs to.
11052
+ */
11053
+ bulkIndex?: string;
11054
+ /**
11055
+ * The unique identifier for this component.
11056
+ */
11057
+ id: string;
11058
+ /**
11059
+ * A list of component IDs whose output is used as the input for this component.
11060
+ */
11061
+ inputs: string[];
11062
+ }
11063
+ export interface ObservabilityPipelineConfigDestinationsAmazonOpensearchAuth {
11064
+ /**
11065
+ * ARN of the role to assume.
11066
+ */
11067
+ assumeRole?: string;
11068
+ /**
11069
+ * AWS region override (if applicable).
11070
+ */
11071
+ awsRegion?: string;
11072
+ /**
11073
+ * External ID for assumed role.
11074
+ */
11075
+ externalId?: string;
11076
+ /**
11077
+ * Session name for assumed role.
11078
+ */
11079
+ sessionName?: string;
11080
+ /**
11081
+ * The authentication strategy to use (e.g. aws or basic).
11082
+ */
11083
+ strategy: string;
11084
+ }
11085
+ export interface ObservabilityPipelineConfigDestinationsAzureStorage {
11086
+ /**
11087
+ * Optional prefix for blobs written to the container.
11088
+ */
11089
+ blobPrefix?: string;
11090
+ /**
11091
+ * The name of the Azure Blob Storage container to store logs in.
11092
+ */
11093
+ containerName: string;
11094
+ /**
11095
+ * The unique identifier for this component.
11096
+ */
11097
+ id: string;
11098
+ /**
11099
+ * A list of component IDs whose output is used as the `input` for this component.
11100
+ */
11101
+ inputs: string[];
11102
+ }
11103
+ export interface ObservabilityPipelineConfigDestinationsDatadogLog {
11104
+ /**
11105
+ * The unique ID of the destination.
11106
+ */
11107
+ id: string;
11108
+ /**
11109
+ * The inputs for the destination.
11110
+ */
11111
+ inputs: string[];
11112
+ }
11113
+ export interface ObservabilityPipelineConfigDestinationsElasticsearch {
11114
+ /**
11115
+ * The Elasticsearch API version to use. Set to `auto` to auto-detect.
11116
+ */
11117
+ apiVersion?: string;
11118
+ /**
11119
+ * The index or datastream to write logs to in Elasticsearch.
11120
+ */
11121
+ bulkIndex?: string;
11122
+ /**
11123
+ * The unique identifier for this component.
11124
+ */
11125
+ id: string;
11126
+ /**
11127
+ * A list of component IDs whose output is used as the `input` for this component.
11128
+ */
11129
+ inputs: string[];
11130
+ }
11131
+ export interface ObservabilityPipelineConfigDestinationsGoogleChronicle {
11132
+ /**
11133
+ * GCP credentials used to authenticate with Google Cloud Storage.
11134
+ */
11135
+ auth?: outputs.ObservabilityPipelineConfigDestinationsGoogleChronicleAuth;
11136
+ /**
11137
+ * The Google Chronicle customer ID.
11138
+ */
11139
+ customerId?: string;
11140
+ /**
11141
+ * The encoding format for the logs sent to Chronicle.
11142
+ */
11143
+ encoding?: string;
11144
+ /**
11145
+ * The unique identifier for this component.
11146
+ */
11147
+ id: string;
11148
+ /**
11149
+ * A list of component IDs whose output is used as the `input` for this component.
11150
+ */
11151
+ inputs: string[];
11152
+ /**
11153
+ * The log type metadata associated with the Chronicle destination.
11154
+ */
11155
+ logType?: string;
11156
+ }
11157
+ export interface ObservabilityPipelineConfigDestinationsGoogleChronicleAuth {
11158
+ /**
11159
+ * Path to the GCP service account key file.
11160
+ */
11161
+ credentialsFile?: string;
11162
+ }
11163
+ export interface ObservabilityPipelineConfigDestinationsGoogleCloudStorage {
11164
+ /**
11165
+ * Access control list setting for objects written to the bucket.
11166
+ */
11167
+ acl: string;
11168
+ /**
11169
+ * GCP credentials used to authenticate with Google Cloud Storage.
11170
+ */
11171
+ auth?: outputs.ObservabilityPipelineConfigDestinationsGoogleCloudStorageAuth;
11172
+ /**
11173
+ * Name of the GCS bucket.
11174
+ */
11175
+ bucket: string;
11176
+ /**
11177
+ * Unique identifier for the destination component.
11178
+ */
11179
+ id: string;
11180
+ /**
11181
+ * A list of component IDs whose output is used as the `input` for this component.
11182
+ */
11183
+ inputs: string[];
11184
+ /**
11185
+ * Optional prefix for object keys within the GCS bucket.
11186
+ */
11187
+ keyPrefix?: string;
11188
+ /**
11189
+ * Custom metadata key-value pairs added to each object.
11190
+ */
11191
+ metadatas?: outputs.ObservabilityPipelineConfigDestinationsGoogleCloudStorageMetadata[];
11192
+ /**
11193
+ * Storage class used for objects stored in GCS.
11194
+ */
11195
+ storageClass: string;
11196
+ }
11197
+ export interface ObservabilityPipelineConfigDestinationsGoogleCloudStorageAuth {
11198
+ /**
11199
+ * Path to the GCP service account key file.
11200
+ */
11201
+ credentialsFile: string;
11202
+ }
11203
+ export interface ObservabilityPipelineConfigDestinationsGoogleCloudStorageMetadata {
11204
+ /**
11205
+ * The metadata key.
11206
+ */
11207
+ name: string;
11208
+ /**
11209
+ * The metadata value.
11210
+ */
11211
+ value: string;
11212
+ }
11213
+ export interface ObservabilityPipelineConfigDestinationsMicrosoftSentinel {
11214
+ /**
11215
+ * Azure AD client ID used for authentication.
11216
+ */
11217
+ clientId: string;
11218
+ /**
11219
+ * The immutable ID of the Data Collection Rule (DCR).
11220
+ */
11221
+ dcrImmutableId: string;
11222
+ /**
11223
+ * The unique identifier for this component.
11224
+ */
11225
+ id: string;
11226
+ /**
11227
+ * A list of component IDs whose output is used as the `input` for this component.
11228
+ */
11229
+ inputs: string[];
11230
+ /**
11231
+ * The name of the Log Analytics table where logs will be sent.
11232
+ */
11233
+ table: string;
11234
+ /**
11235
+ * Azure AD tenant ID.
11236
+ */
11237
+ tenantId: string;
11238
+ }
11239
+ export interface ObservabilityPipelineConfigDestinationsNewRelic {
11240
+ /**
11241
+ * The unique identifier for this component.
11242
+ */
11243
+ id: string;
11244
+ /**
11245
+ * A list of component IDs whose output is used as the `input` for this component.
11246
+ */
11247
+ inputs: string[];
11248
+ /**
11249
+ * The New Relic region.
11250
+ */
11251
+ region: string;
11252
+ }
11253
+ export interface ObservabilityPipelineConfigDestinationsOpensearch {
11254
+ /**
11255
+ * The index or datastream to write logs to.
11256
+ */
11257
+ bulkIndex?: string;
11258
+ /**
11259
+ * The unique identifier for this component.
11260
+ */
11261
+ id: string;
11262
+ /**
11263
+ * A list of component IDs whose output is used as input.
11264
+ */
11265
+ inputs: string[];
11266
+ }
11267
+ export interface ObservabilityPipelineConfigDestinationsRsyslog {
11268
+ /**
11269
+ * The unique identifier for this component.
11270
+ */
11271
+ id: string;
11272
+ /**
11273
+ * A list of component IDs whose output is used as the `input` for this component.
11274
+ */
11275
+ inputs: string[];
11276
+ /**
11277
+ * Optional socket keepalive duration in milliseconds.
11278
+ */
11279
+ keepalive?: number;
11280
+ /**
11281
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11282
+ */
11283
+ tls?: outputs.ObservabilityPipelineConfigDestinationsRsyslogTls;
11284
+ }
11285
+ export interface ObservabilityPipelineConfigDestinationsRsyslogTls {
11286
+ /**
11287
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11288
+ */
11289
+ caFile?: string;
11290
+ /**
11291
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11292
+ */
11293
+ crtFile?: string;
11294
+ /**
11295
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11296
+ */
11297
+ keyFile?: string;
11298
+ }
11299
+ export interface ObservabilityPipelineConfigDestinationsSentinelOne {
11300
+ /**
11301
+ * The unique identifier for this component.
11302
+ */
11303
+ id: string;
11304
+ /**
11305
+ * A list of component IDs whose output is used as the `input` for this component.
11306
+ */
11307
+ inputs: string[];
11308
+ /**
11309
+ * The SentinelOne region to send logs to.
11310
+ */
11311
+ region: string;
11312
+ }
11313
+ export interface ObservabilityPipelineConfigDestinationsSplunkHec {
11314
+ /**
11315
+ * If `true`, Splunk tries to extract timestamps from incoming log events.
11316
+ */
11317
+ autoExtractTimestamp?: boolean;
11318
+ /**
11319
+ * Encoding format for log events. Valid values: `json`, `rawMessage`.
11320
+ */
11321
+ encoding?: string;
11322
+ /**
11323
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
11324
+ */
11325
+ id: string;
11326
+ /**
11327
+ * Optional name of the Splunk index where logs are written.
11328
+ */
11329
+ index?: string;
11330
+ /**
11331
+ * A list of component IDs whose output is used as the `input` for this component.
11332
+ */
11333
+ inputs: string[];
11334
+ /**
11335
+ * The Splunk sourcetype to assign to log events.
11336
+ */
11337
+ sourcetype?: string;
11338
+ }
11339
+ export interface ObservabilityPipelineConfigDestinationsSumoLogic {
11340
+ /**
11341
+ * The output encoding format.
11342
+ */
11343
+ encoding?: string;
11344
+ /**
11345
+ * A list of custom headers to include in the request to Sumo Logic.
11346
+ */
11347
+ headerCustomFields?: outputs.ObservabilityPipelineConfigDestinationsSumoLogicHeaderCustomField[];
11348
+ /**
11349
+ * Optional override for the host name header.
11350
+ */
11351
+ headerHostName?: string;
11352
+ /**
11353
+ * Optional override for the source category header.
11354
+ */
11355
+ headerSourceCategory?: string;
11356
+ /**
11357
+ * Optional override for the source name header.
11358
+ */
11359
+ headerSourceName?: string;
11360
+ /**
11361
+ * The unique identifier for this component.
11362
+ */
11363
+ id: string;
11364
+ /**
11365
+ * A list of component IDs whose output is used as the `input` for this component.
11366
+ */
11367
+ inputs: string[];
11368
+ }
11369
+ export interface ObservabilityPipelineConfigDestinationsSumoLogicHeaderCustomField {
11370
+ /**
11371
+ * The header field name.
11372
+ */
11373
+ name?: string;
11374
+ /**
11375
+ * The header field value.
11376
+ */
11377
+ value?: string;
11378
+ }
11379
+ export interface ObservabilityPipelineConfigDestinationsSyslogNg {
11380
+ /**
11381
+ * The unique identifier for this component.
11382
+ */
11383
+ id: string;
11384
+ /**
11385
+ * A list of component IDs whose output is used as the `input` for this component.
11386
+ */
11387
+ inputs: string[];
11388
+ /**
11389
+ * Optional socket keepalive duration in milliseconds.
11390
+ */
11391
+ keepalive?: number;
11392
+ /**
11393
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11394
+ */
11395
+ tls?: outputs.ObservabilityPipelineConfigDestinationsSyslogNgTls;
11396
+ }
11397
+ export interface ObservabilityPipelineConfigDestinationsSyslogNgTls {
11398
+ /**
11399
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11400
+ */
11401
+ caFile?: string;
11402
+ /**
11403
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11404
+ */
11405
+ crtFile?: string;
11406
+ /**
11407
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11408
+ */
11409
+ keyFile?: string;
11410
+ }
11411
+ export interface ObservabilityPipelineConfigProcessors {
11412
+ /**
11413
+ * The `addEnvVars` processor adds environment variable values to log events.
11414
+ */
11415
+ addEnvVars?: outputs.ObservabilityPipelineConfigProcessorsAddEnvVar[];
11416
+ /**
11417
+ * The `addFields` processor adds static key-value fields to logs.
11418
+ */
11419
+ addFields?: outputs.ObservabilityPipelineConfigProcessorsAddField[];
11420
+ /**
11421
+ * The `dedupe` processor removes duplicate fields in log events.
11422
+ */
11423
+ dedupes?: outputs.ObservabilityPipelineConfigProcessorsDedupe[];
11424
+ /**
11425
+ * The `enrichmentTable` processor enriches logs using a static CSV file or GeoIP database.
11426
+ */
11427
+ enrichmentTables?: outputs.ObservabilityPipelineConfigProcessorsEnrichmentTable[];
11428
+ /**
11429
+ * The `filter` processor allows conditional processing of logs based on a Datadog search query. Logs that match the `include` query are passed through; others are discarded.
11430
+ */
11431
+ filters?: outputs.ObservabilityPipelineConfigProcessorsFilter[];
11432
+ /**
11433
+ * The `generateDatadogMetrics` processor creates custom metrics from logs. Metrics can be counters, gauges, or distributions and optionally grouped by log fields.
11434
+ */
11435
+ generateDatadogMetrics?: outputs.ObservabilityPipelineConfigProcessorsGenerateDatadogMetric[];
11436
+ /**
11437
+ * The `ocsfMapper` processor transforms logs into the OCSF schema using predefined library mappings.
11438
+ */
11439
+ ocsfMappers?: outputs.ObservabilityPipelineConfigProcessorsOcsfMapper[];
11440
+ /**
11441
+ * The `parseGrok` processor extracts structured fields from unstructured log messages using Grok patterns.
11442
+ */
11443
+ parseGroks?: outputs.ObservabilityPipelineConfigProcessorsParseGrok[];
11444
+ /**
11445
+ * The `parseJson` processor extracts JSON from a specified field and flattens it into the event. This is useful when logs contain embedded JSON as a string.
11446
+ */
11447
+ parseJsons?: outputs.ObservabilityPipelineConfigProcessorsParseJson[];
11448
+ /**
11449
+ * The `quota` measures logging traffic for logs that match a specified filter. When the configured daily quota is met, the processor can drop or alert.
11450
+ */
11451
+ quotas?: outputs.ObservabilityPipelineConfigProcessorsQuota[];
11452
+ /**
11453
+ * The `reduce` processor aggregates and merges logs based on matching keys and merge strategies.
11454
+ */
11455
+ reduces?: outputs.ObservabilityPipelineConfigProcessorsReduce[];
11456
+ /**
11457
+ * The `removeFields` processor deletes specified fields from logs.
11458
+ */
11459
+ removeFields?: outputs.ObservabilityPipelineConfigProcessorsRemoveField[];
11460
+ /**
11461
+ * The `renameFields` processor changes field names.
11462
+ */
11463
+ renameFields?: outputs.ObservabilityPipelineConfigProcessorsRenameField[];
11464
+ /**
11465
+ * The `sample` processor allows probabilistic sampling of logs at a fixed rate.
11466
+ */
11467
+ samples?: outputs.ObservabilityPipelineConfigProcessorsSample[];
11468
+ /**
11469
+ * The `sensitiveDataScanner` processor detects and optionally redacts sensitive data in log events.
11470
+ */
11471
+ sensitiveDataScanners?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScanner[];
11472
+ /**
11473
+ * The `throttle` processor limits the number of events that pass through over a given time window.
11474
+ */
11475
+ throttles?: outputs.ObservabilityPipelineConfigProcessorsThrottle[];
11476
+ }
11477
+ export interface ObservabilityPipelineConfigProcessorsAddEnvVar {
11478
+ /**
11479
+ * The unique identifier for this component. Used to reference this processor in the pipeline.
11480
+ */
11481
+ id: string;
11482
+ /**
11483
+ * A Datadog search query used to determine which logs this processor targets.
11484
+ */
11485
+ include: string;
11486
+ /**
11487
+ * A list of component IDs whose output is used as the input for this processor.
11488
+ */
11489
+ inputs: string[];
11490
+ /**
11491
+ * A list of environment variable mappings to apply to log fields.
11492
+ */
11493
+ variables?: outputs.ObservabilityPipelineConfigProcessorsAddEnvVarVariable[];
11494
+ }
11495
+ export interface ObservabilityPipelineConfigProcessorsAddEnvVarVariable {
11496
+ /**
11497
+ * The target field in the log event.
11498
+ */
11499
+ field: string;
11500
+ /**
11501
+ * The name of the environment variable to read.
11502
+ */
11503
+ name: string;
11504
+ }
11505
+ export interface ObservabilityPipelineConfigProcessorsAddField {
11506
+ /**
11507
+ * A list of static fields (key-value pairs) that is added to each log event processed by this component.
11508
+ */
11509
+ fields?: outputs.ObservabilityPipelineConfigProcessorsAddFieldField[];
11510
+ /**
11511
+ * The unique ID of the processor.
11512
+ */
11513
+ id: string;
11514
+ /**
11515
+ * A Datadog search query used to determine which logs this processor targets.
11516
+ */
11517
+ include: string;
11518
+ /**
11519
+ * The inputs for the processor.
11520
+ */
11521
+ inputs: string[];
11522
+ }
11523
+ export interface ObservabilityPipelineConfigProcessorsAddFieldField {
11524
+ /**
11525
+ * The field name to add.
11526
+ */
11527
+ name: string;
11528
+ /**
11529
+ * The value to assign to the field.
11530
+ */
11531
+ value: string;
11532
+ }
11533
+ export interface ObservabilityPipelineConfigProcessorsDedupe {
11534
+ /**
11535
+ * A list of log field paths to check for duplicates.
11536
+ */
11537
+ fields: string[];
11538
+ /**
11539
+ * The unique identifier for this processor.
11540
+ */
11541
+ id: string;
11542
+ /**
11543
+ * A Datadog search query used to determine which logs this processor targets.
11544
+ */
11545
+ include: string;
11546
+ /**
11547
+ * A list of component IDs whose output is used as the input for this processor.
11548
+ */
11549
+ inputs: string[];
11550
+ /**
11551
+ * The deduplication mode to apply to the fields.
11552
+ */
11553
+ mode: string;
11554
+ }
11555
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTable {
11556
+ /**
11557
+ * Defines a static enrichment table loaded from a CSV file.
11558
+ */
11559
+ file?: outputs.ObservabilityPipelineConfigProcessorsEnrichmentTableFile;
11560
+ /**
11561
+ * Uses a GeoIP database to enrich logs based on an IP field.
11562
+ */
11563
+ geoip?: outputs.ObservabilityPipelineConfigProcessorsEnrichmentTableGeoip;
11564
+ /**
11565
+ * The unique identifier for this processor.
11566
+ */
11567
+ id: string;
11568
+ /**
11569
+ * A Datadog search query used to determine which logs this processor targets.
11570
+ */
11571
+ include: string;
11572
+ /**
11573
+ * A list of component IDs whose output is used as the input for this processor.
11574
+ */
11575
+ inputs: string[];
11576
+ /**
11577
+ * Path where enrichment results should be stored in the log.
11578
+ */
11579
+ target: string;
11580
+ }
11581
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTableFile {
11582
+ encoding?: outputs.ObservabilityPipelineConfigProcessorsEnrichmentTableFileEncoding;
11583
+ /**
11584
+ * Key fields used to look up enrichment values.
11585
+ */
11586
+ keys?: outputs.ObservabilityPipelineConfigProcessorsEnrichmentTableFileKey[];
11587
+ /**
11588
+ * Path to the CSV file.
11589
+ */
11590
+ path?: string;
11591
+ /**
11592
+ * Schema defining column names and their types.
11593
+ */
11594
+ schemas?: outputs.ObservabilityPipelineConfigProcessorsEnrichmentTableFileSchema[];
11595
+ }
11596
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTableFileEncoding {
11597
+ /**
11598
+ * The `encoding` `delimiter`.
11599
+ */
11600
+ delimiter?: string;
11601
+ /**
11602
+ * The `encoding` `includesHeaders`.
11603
+ */
11604
+ includesHeaders?: boolean;
11605
+ /**
11606
+ * File encoding format.
11607
+ */
11608
+ type?: string;
11609
+ }
11610
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTableFileKey {
11611
+ /**
11612
+ * The `items` `column`.
11613
+ */
11614
+ column?: string;
11615
+ /**
11616
+ * The comparison method (e.g. equals).
11617
+ */
11618
+ comparison?: string;
11619
+ /**
11620
+ * The `items` `field`.
11621
+ */
11622
+ field?: string;
11623
+ }
11624
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTableFileSchema {
11625
+ /**
11626
+ * The `items` `column`.
11627
+ */
11628
+ column?: string;
11629
+ /**
11630
+ * The type of the column (e.g. string, boolean, integer, etc.).
11631
+ */
11632
+ type?: string;
11633
+ }
11634
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTableGeoip {
11635
+ /**
11636
+ * Path to the IP field in the log.
11637
+ */
11638
+ keyField?: string;
11639
+ /**
11640
+ * Locale used to resolve geographical names.
11641
+ */
11642
+ locale?: string;
11643
+ /**
11644
+ * Path to the GeoIP database file.
11645
+ */
11646
+ path?: string;
11647
+ }
11648
+ export interface ObservabilityPipelineConfigProcessorsFilter {
11649
+ /**
11650
+ * The unique ID of the processor.
11651
+ */
11652
+ id: string;
11653
+ /**
11654
+ * A Datadog search query used to determine which logs should pass through the filter. Logs that match this query continue to downstream components; others are dropped.
11655
+ */
11656
+ include: string;
11657
+ /**
11658
+ * The inputs for the processor.
11659
+ */
11660
+ inputs: string[];
11661
+ }
11662
+ export interface ObservabilityPipelineConfigProcessorsGenerateDatadogMetric {
11663
+ /**
11664
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline.
11665
+ */
11666
+ id: string;
11667
+ /**
11668
+ * A Datadog search query used to determine which logs this processor targets.
11669
+ */
11670
+ include: string;
11671
+ /**
11672
+ * A list of component IDs whose output is used as the `input` for this processor.
11673
+ */
11674
+ inputs: string[];
11675
+ /**
11676
+ * Configuration for generating individual metrics.
11677
+ */
11678
+ metrics?: outputs.ObservabilityPipelineConfigProcessorsGenerateDatadogMetricMetric[];
11679
+ }
11680
+ export interface ObservabilityPipelineConfigProcessorsGenerateDatadogMetricMetric {
11681
+ /**
11682
+ * Optional fields used to group the metric series.
11683
+ */
11684
+ groupBies?: string[];
11685
+ /**
11686
+ * Datadog filter query to match logs for metric generation.
11687
+ */
11688
+ include: string;
11689
+ /**
11690
+ * Type of metric to create.
11691
+ */
11692
+ metricType: string;
11693
+ /**
11694
+ * Name of the custom metric to be created.
11695
+ */
11696
+ name: string;
11697
+ /**
11698
+ * Specifies how the value of the generated metric is computed.
11699
+ */
11700
+ value?: outputs.ObservabilityPipelineConfigProcessorsGenerateDatadogMetricMetricValue;
11701
+ }
11702
+ export interface ObservabilityPipelineConfigProcessorsGenerateDatadogMetricMetricValue {
11703
+ /**
11704
+ * Name of the log field containing the numeric value to increment the metric by (used only for `incrementByField`).
11705
+ */
11706
+ field?: string;
11707
+ /**
11708
+ * Metric value strategy: `incrementByOne` or `incrementByField`.
11709
+ */
11710
+ strategy: string;
11711
+ }
11712
+ export interface ObservabilityPipelineConfigProcessorsOcsfMapper {
11713
+ /**
11714
+ * The unique identifier for this component.
11715
+ */
11716
+ id: string;
11717
+ /**
11718
+ * Search query to select logs.
11719
+ */
11720
+ include: string;
11721
+ /**
11722
+ * List of component IDs whose output is used as input.
11723
+ */
11724
+ inputs: string[];
11725
+ /**
11726
+ * List of OCSF mapping entries using library mapping.
11727
+ */
11728
+ mappings?: outputs.ObservabilityPipelineConfigProcessorsOcsfMapperMapping[];
11729
+ }
11730
+ export interface ObservabilityPipelineConfigProcessorsOcsfMapperMapping {
11731
+ /**
11732
+ * Search query for selecting which logs the mapping applies to.
11733
+ */
11734
+ include: string;
11735
+ /**
11736
+ * Predefined library mapping for log transformation.
11737
+ */
11738
+ libraryMapping: string;
11739
+ }
11740
+ export interface ObservabilityPipelineConfigProcessorsParseGrok {
11741
+ /**
11742
+ * If set to `true`, disables the default Grok rules provided by Datadog.
11743
+ */
11744
+ disableLibraryRules?: boolean;
11745
+ /**
11746
+ * A unique identifier for this processor.
11747
+ */
11748
+ id: string;
11749
+ /**
11750
+ * A Datadog search query used to determine which logs this processor targets.
11751
+ */
11752
+ include: string;
11753
+ /**
11754
+ * A list of component IDs whose output is used as the `input` for this component.
11755
+ */
11756
+ inputs: string[];
11757
+ /**
11758
+ * The list of Grok parsing rules. If multiple parsing rules are provided, they are evaluated in order. The first successful match is applied.
11759
+ */
11760
+ rules?: outputs.ObservabilityPipelineConfigProcessorsParseGrokRule[];
11761
+ }
11762
+ export interface ObservabilityPipelineConfigProcessorsParseGrokRule {
11763
+ /**
11764
+ * A list of Grok parsing rules that define how to extract fields from the source field. Each rule must contain a name and a valid Grok pattern.
11765
+ */
11766
+ matchRules?: outputs.ObservabilityPipelineConfigProcessorsParseGrokRuleMatchRule[];
11767
+ /**
11768
+ * The name of the field in the log event to apply the Grok rules to.
11769
+ */
11770
+ source: string;
11771
+ /**
11772
+ * A list of helper Grok rules that can be referenced by the parsing rules.
11773
+ */
11774
+ supportRules?: outputs.ObservabilityPipelineConfigProcessorsParseGrokRuleSupportRule[];
11775
+ }
11776
+ export interface ObservabilityPipelineConfigProcessorsParseGrokRuleMatchRule {
11777
+ /**
11778
+ * The name of the rule.
11779
+ */
11780
+ name: string;
11781
+ /**
11782
+ * The definition of the Grok rule.
11783
+ */
11784
+ rule: string;
11785
+ }
11786
+ export interface ObservabilityPipelineConfigProcessorsParseGrokRuleSupportRule {
11787
+ /**
11788
+ * The name of the helper Grok rule.
11789
+ */
11790
+ name: string;
11791
+ /**
11792
+ * The definition of the helper Grok rule.
11793
+ */
11794
+ rule: string;
11795
+ }
11796
+ export interface ObservabilityPipelineConfigProcessorsParseJson {
11797
+ /**
11798
+ * The field to parse.
11799
+ */
11800
+ field: string;
11801
+ /**
11802
+ * The unique ID of the processor.
11803
+ */
11804
+ id: string;
11805
+ /**
11806
+ * A Datadog search query used to determine which logs this processor targets.
11807
+ */
11808
+ include: string;
11809
+ /**
11810
+ * The inputs for the processor.
11811
+ */
11812
+ inputs: string[];
11813
+ }
11814
+ export interface ObservabilityPipelineConfigProcessorsQuota {
11815
+ /**
11816
+ * Whether to drop events exceeding the limit.
11817
+ */
11818
+ dropEvents: boolean;
11819
+ /**
11820
+ * The unique ID of the processor.
11821
+ */
11822
+ id: string;
11823
+ /**
11824
+ * Whether to ignore when partition fields are missing.
11825
+ */
11826
+ ignoreWhenMissingPartitions?: boolean;
11827
+ /**
11828
+ * A Datadog search query used to determine which logs this processor targets.
11829
+ */
11830
+ include: string;
11831
+ /**
11832
+ * The inputs for the processor.
11833
+ */
11834
+ inputs: string[];
11835
+ limit?: outputs.ObservabilityPipelineConfigProcessorsQuotaLimit;
11836
+ /**
11837
+ * The name of the quota.
11838
+ */
11839
+ name: string;
11840
+ /**
11841
+ * The action to take when the quota is exceeded: `drop`, `noAction`, or `overflowRouting`.
11842
+ */
11843
+ overflowAction?: string;
11844
+ /**
11845
+ * The overrides for field-specific quotas.
11846
+ */
11847
+ overrides?: outputs.ObservabilityPipelineConfigProcessorsQuotaOverride[];
11848
+ /**
11849
+ * List of partition fields.
11850
+ */
11851
+ partitionFields?: string[];
11852
+ }
11853
+ export interface ObservabilityPipelineConfigProcessorsQuotaLimit {
11854
+ /**
11855
+ * Whether to enforce by 'bytes' or 'events'. Valid values are `bytes`, `events`.
11856
+ */
11857
+ enforce: string;
11858
+ /**
11859
+ * The daily quota limit.
11860
+ */
11861
+ limit: number;
11862
+ }
11863
+ export interface ObservabilityPipelineConfigProcessorsQuotaOverride {
11864
+ /**
11865
+ * Fields that trigger this override.
11866
+ */
11867
+ fields?: outputs.ObservabilityPipelineConfigProcessorsQuotaOverrideField[];
11868
+ limit?: outputs.ObservabilityPipelineConfigProcessorsQuotaOverrideLimit;
11869
+ }
11870
+ export interface ObservabilityPipelineConfigProcessorsQuotaOverrideField {
11871
+ /**
11872
+ * The field name.
11873
+ */
11874
+ name: string;
11875
+ /**
11876
+ * The field value.
11877
+ */
11878
+ value: string;
11879
+ }
11880
+ export interface ObservabilityPipelineConfigProcessorsQuotaOverrideLimit {
11881
+ /**
11882
+ * Whether to enforce by 'bytes' or 'events'. Valid values are `bytes`, `events`.
11883
+ */
11884
+ enforce: string;
11885
+ /**
11886
+ * The daily quota limit.
11887
+ */
11888
+ limit: number;
11889
+ }
11890
+ export interface ObservabilityPipelineConfigProcessorsReduce {
11891
+ /**
11892
+ * A list of fields used to group log events for merging.
11893
+ */
11894
+ groupBies: string[];
11895
+ /**
11896
+ * The unique identifier for this processor.
11897
+ */
11898
+ id: string;
11899
+ /**
11900
+ * A Datadog search query used to determine which logs this processor targets.
11901
+ */
11902
+ include: string;
11903
+ /**
11904
+ * A list of component IDs whose output is used as the input for this processor.
11905
+ */
11906
+ inputs: string[];
11907
+ /**
11908
+ * List of merge strategies defining how values from grouped events should be combined.
11909
+ */
11910
+ mergeStrategies?: outputs.ObservabilityPipelineConfigProcessorsReduceMergeStrategy[];
11911
+ }
11912
+ export interface ObservabilityPipelineConfigProcessorsReduceMergeStrategy {
11913
+ /**
11914
+ * The field path in the log event.
11915
+ */
11916
+ path: string;
11917
+ /**
11918
+ * The merge strategy to apply.
11919
+ */
11920
+ strategy: string;
11921
+ }
11922
+ export interface ObservabilityPipelineConfigProcessorsRemoveField {
11923
+ /**
11924
+ * List of fields to remove from the events.
11925
+ */
11926
+ fields: string[];
11927
+ /**
11928
+ * The unique ID of the processor.
11929
+ */
11930
+ id: string;
11931
+ /**
11932
+ * A Datadog search query used to determine which logs this processor targets.
11933
+ */
11934
+ include: string;
11935
+ /**
11936
+ * The inputs for the processor.
11937
+ */
11938
+ inputs: string[];
11939
+ }
11940
+ export interface ObservabilityPipelineConfigProcessorsRenameField {
11941
+ /**
11942
+ * List of fields to rename.
11943
+ */
11944
+ fields?: outputs.ObservabilityPipelineConfigProcessorsRenameFieldField[];
11945
+ /**
11946
+ * The unique ID of the processor.
11947
+ */
11948
+ id: string;
11949
+ /**
11950
+ * A Datadog search query used to determine which logs this processor targets.
11951
+ */
11952
+ include: string;
11953
+ /**
11954
+ * The inputs for the processor.
11955
+ */
11956
+ inputs: string[];
11957
+ }
11958
+ export interface ObservabilityPipelineConfigProcessorsRenameFieldField {
11959
+ /**
11960
+ * Destination field name.
11961
+ */
11962
+ destination: string;
11963
+ /**
11964
+ * Whether to keep the original field.
11965
+ */
11966
+ preserveSource: boolean;
11967
+ /**
11968
+ * Source field to rename.
11969
+ */
11970
+ source: string;
11971
+ }
11972
+ export interface ObservabilityPipelineConfigProcessorsSample {
11973
+ /**
11974
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (for example, as the `input` to downstream components).
11975
+ */
11976
+ id: string;
11977
+ /**
11978
+ * A Datadog search query used to determine which logs this processor targets.
11979
+ */
11980
+ include: string;
11981
+ /**
11982
+ * A list of component IDs whose output is used as the `input` for this component.
11983
+ */
11984
+ inputs: string[];
11985
+ /**
11986
+ * The percentage of logs to sample.
11987
+ */
11988
+ percentage?: number;
11989
+ /**
11990
+ * Number of events to sample (1 in N).
11991
+ */
11992
+ rate?: number;
11993
+ }
11994
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScanner {
11995
+ /**
11996
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
11997
+ */
11998
+ id: string;
11999
+ /**
12000
+ * A Datadog search query used to determine which logs this processor targets.
12001
+ */
12002
+ include: string;
12003
+ /**
12004
+ * A list of component IDs whose output is used as the `input` for this component.
12005
+ */
12006
+ inputs: string[];
12007
+ /**
12008
+ * A list of rules for identifying and acting on sensitive data patterns.
12009
+ */
12010
+ rules?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRule[];
12011
+ }
12012
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRule {
12013
+ /**
12014
+ * Keyword-based proximity matching for sensitive data.
12015
+ */
12016
+ keywordOptions?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleKeywordOptions;
12017
+ /**
12018
+ * A name identifying the rule.
12019
+ */
12020
+ name?: string;
12021
+ /**
12022
+ * The action to take when a sensitive value is found.
12023
+ */
12024
+ onMatch?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatch;
12025
+ /**
12026
+ * Pattern detection configuration for identifying sensitive data using either a custom regex or a library reference.
12027
+ */
12028
+ pattern?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePattern;
12029
+ /**
12030
+ * Field-level targeting options that determine where the scanner should operate.
12031
+ */
12032
+ scope?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScope;
12033
+ /**
12034
+ * Tags assigned to this rule for filtering and classification.
12035
+ */
12036
+ tags?: string[];
12037
+ }
12038
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleKeywordOptions {
12039
+ /**
12040
+ * A list of keywords to match near the sensitive pattern.
12041
+ */
12042
+ keywords?: string[];
12043
+ /**
12044
+ * Maximum number of tokens between a keyword and a sensitive value match.
12045
+ */
12046
+ proximity?: number;
12047
+ }
12048
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatch {
12049
+ /**
12050
+ * Hashes the matched value.
12051
+ */
12052
+ hash?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchHash;
12053
+ /**
12054
+ * Redacts part of the matched value (e.g., keep last 4 characters).
12055
+ */
12056
+ partialRedact?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchPartialRedact;
12057
+ /**
12058
+ * Redacts the matched value.
12059
+ */
12060
+ redact?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchRedact;
12061
+ }
12062
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchHash {
12063
+ }
12064
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchPartialRedact {
12065
+ /**
12066
+ * Number of characters to keep.
12067
+ */
12068
+ characters?: number;
12069
+ /**
12070
+ * Direction from which to keep characters: `first` or `last`.
12071
+ */
12072
+ direction?: string;
12073
+ }
12074
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchRedact {
12075
+ /**
12076
+ * Replacement string for redacted values (e.g., `***`).
12077
+ */
12078
+ replace?: string;
12079
+ }
12080
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePattern {
12081
+ /**
12082
+ * Pattern detection using a custom regular expression.
12083
+ */
12084
+ custom?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePatternCustom;
12085
+ /**
12086
+ * Pattern detection using a predefined pattern from the sensitive data scanner pattern library.
12087
+ */
12088
+ library?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePatternLibrary;
12089
+ }
12090
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePatternCustom {
12091
+ /**
12092
+ * A regular expression used to detect sensitive values. Must be a valid regex.
12093
+ */
12094
+ rule?: string;
12095
+ }
12096
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePatternLibrary {
12097
+ /**
12098
+ * Identifier for a predefined pattern from the sensitive data scanner pattern library.
12099
+ */
12100
+ id?: string;
12101
+ /**
12102
+ * Whether to augment the pattern with recommended keywords (optional).
12103
+ */
12104
+ useRecommendedKeywords?: boolean;
12105
+ }
12106
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScope {
12107
+ /**
12108
+ * Scan all fields.
12109
+ */
12110
+ all?: boolean;
12111
+ /**
12112
+ * Explicitly exclude these fields from scanning.
12113
+ */
12114
+ exclude?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScopeExclude;
12115
+ /**
12116
+ * Explicitly include these fields for scanning.
12117
+ */
12118
+ include?: outputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScopeInclude;
12119
+ }
12120
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScopeExclude {
12121
+ /**
12122
+ * The fields to exclude from scanning.
12123
+ */
12124
+ fields?: string[];
12125
+ }
12126
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScopeInclude {
12127
+ /**
12128
+ * The fields to include in scanning.
12129
+ */
12130
+ fields?: string[];
12131
+ }
12132
+ export interface ObservabilityPipelineConfigProcessorsThrottle {
12133
+ /**
12134
+ * Optional list of fields used to group events before applying throttling.
12135
+ */
12136
+ groupBies?: string[];
12137
+ /**
12138
+ * The unique identifier for this processor.
12139
+ */
12140
+ id: string;
12141
+ /**
12142
+ * A Datadog search query used to determine which logs this processor targets.
12143
+ */
12144
+ include: string;
12145
+ /**
12146
+ * A list of component IDs whose output is used as the input for this processor.
12147
+ */
12148
+ inputs: string[];
12149
+ /**
12150
+ * The number of events to allow before throttling is applied.
12151
+ */
12152
+ threshold: number;
12153
+ /**
12154
+ * The time window in seconds over which the threshold applies.
12155
+ */
12156
+ window: number;
12157
+ }
12158
+ export interface ObservabilityPipelineConfigSources {
12159
+ /**
12160
+ * The `amazonDataFirehose` source ingests logs from AWS Data Firehose.
12161
+ */
12162
+ amazonDataFirehoses?: outputs.ObservabilityPipelineConfigSourcesAmazonDataFirehose[];
12163
+ /**
12164
+ * The `amazonS3` source ingests logs from an Amazon S3 bucket. It supports AWS authentication and TLS encryption.
12165
+ */
12166
+ amazonS3s?: outputs.ObservabilityPipelineConfigSourcesAmazonS3[];
12167
+ /**
12168
+ * The `datadogAgent` source collects logs from the Datadog Agent.
12169
+ */
12170
+ datadogAgents?: outputs.ObservabilityPipelineConfigSourcesDatadogAgent[];
12171
+ /**
12172
+ * The `fluent` source ingests logs from Fluent Bit.
12173
+ */
12174
+ fluentBits?: outputs.ObservabilityPipelineConfigSourcesFluentBit[];
12175
+ /**
12176
+ * The `fluent` source ingests logs from a Fluentd-compatible service.
12177
+ */
12178
+ fluentds?: outputs.ObservabilityPipelineConfigSourcesFluentd[];
12179
+ /**
12180
+ * The `googlePubsub` source ingests logs from a Google Cloud Pub/Sub subscription.
12181
+ */
12182
+ googlePubsubs?: outputs.ObservabilityPipelineConfigSourcesGooglePubsub[];
12183
+ /**
12184
+ * The `httpClient` source scrapes logs from HTTP endpoints at regular intervals.
12185
+ */
12186
+ httpClients?: outputs.ObservabilityPipelineConfigSourcesHttpClient[];
12187
+ /**
12188
+ * The `httpServer` source collects logs over HTTP POST from external services.
12189
+ */
12190
+ httpServers?: outputs.ObservabilityPipelineConfigSourcesHttpServer[];
12191
+ /**
12192
+ * The `kafka` source ingests data from Apache Kafka topics.
12193
+ */
12194
+ kafkas?: outputs.ObservabilityPipelineConfigSourcesKafka[];
12195
+ /**
12196
+ * The `logstash` source ingests logs from a Logstash forwarder.
12197
+ */
12198
+ logstashes?: outputs.ObservabilityPipelineConfigSourcesLogstash[];
12199
+ /**
12200
+ * The `rsyslog` source listens for logs over TCP or UDP from an `rsyslog` server using the syslog protocol.
12201
+ */
12202
+ rsyslogs?: outputs.ObservabilityPipelineConfigSourcesRsyslog[];
12203
+ /**
12204
+ * The `splunkHec` source implements the Splunk HTTP Event Collector (HEC) API.
12205
+ */
12206
+ splunkHecs?: outputs.ObservabilityPipelineConfigSourcesSplunkHec[];
12207
+ /**
12208
+ * The `splunkTcp` source receives logs from a Splunk Universal Forwarder over TCP. TLS is supported for secure transmission.
12209
+ */
12210
+ splunkTcps?: outputs.ObservabilityPipelineConfigSourcesSplunkTcp[];
12211
+ /**
12212
+ * The `sumoLogic` source receives logs from Sumo Logic collectors.
12213
+ */
12214
+ sumoLogics?: outputs.ObservabilityPipelineConfigSourcesSumoLogic[];
12215
+ /**
12216
+ * The `syslogNg` source listens for logs over TCP or UDP from a `syslog-ng` server using the syslog protocol.
12217
+ */
12218
+ syslogNgs?: outputs.ObservabilityPipelineConfigSourcesSyslogNg[];
12219
+ }
12220
+ export interface ObservabilityPipelineConfigSourcesAmazonDataFirehose {
12221
+ /**
12222
+ * AWS authentication credentials used for accessing AWS services such as S3. If omitted, the system’s default credentials are used (for example, the IAM role and environment variables).
12223
+ */
12224
+ auth?: outputs.ObservabilityPipelineConfigSourcesAmazonDataFirehoseAuth;
12225
+ /**
12226
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
12227
+ */
12228
+ id: string;
12229
+ /**
12230
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
12231
+ */
12232
+ tls?: outputs.ObservabilityPipelineConfigSourcesAmazonDataFirehoseTls;
12233
+ }
12234
+ export interface ObservabilityPipelineConfigSourcesAmazonDataFirehoseAuth {
12235
+ /**
12236
+ * The Amazon Resource Name (ARN) of the role to assume.
12237
+ */
12238
+ assumeRole?: string;
12239
+ /**
12240
+ * A unique identifier for cross-account role assumption.
12241
+ */
12242
+ externalId?: string;
12243
+ /**
12244
+ * A session identifier used for logging and tracing the assumed role session.
12245
+ */
12246
+ sessionName?: string;
12247
+ }
12248
+ export interface ObservabilityPipelineConfigSourcesAmazonDataFirehoseTls {
12249
+ /**
12250
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12251
+ */
12252
+ caFile?: string;
12253
+ /**
12254
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12255
+ */
12256
+ crtFile?: string;
12257
+ /**
12258
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12259
+ */
12260
+ keyFile?: string;
12261
+ }
12262
+ export interface ObservabilityPipelineConfigSourcesAmazonS3 {
12263
+ /**
12264
+ * AWS authentication credentials used for accessing AWS services such as S3. If omitted, the system’s default credentials are used (for example, the IAM role and environment variables).
12265
+ */
12266
+ auth?: outputs.ObservabilityPipelineConfigSourcesAmazonS3Auth;
12267
+ /**
12268
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
12269
+ */
12270
+ id: string;
12271
+ /**
12272
+ * AWS region where the S3 bucket resides.
12273
+ */
12274
+ region: string;
12275
+ /**
12276
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
12277
+ */
12278
+ tls?: outputs.ObservabilityPipelineConfigSourcesAmazonS3Tls;
12279
+ }
12280
+ export interface ObservabilityPipelineConfigSourcesAmazonS3Auth {
12281
+ /**
12282
+ * The Amazon Resource Name (ARN) of the role to assume.
12283
+ */
12284
+ assumeRole?: string;
12285
+ /**
12286
+ * A unique identifier for cross-account role assumption.
12287
+ */
12288
+ externalId?: string;
12289
+ /**
12290
+ * A session identifier used for logging and tracing the assumed role session.
12291
+ */
12292
+ sessionName?: string;
12293
+ }
12294
+ export interface ObservabilityPipelineConfigSourcesAmazonS3Tls {
12295
+ /**
12296
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12297
+ */
12298
+ caFile?: string;
12299
+ /**
12300
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12301
+ */
12302
+ crtFile?: string;
12303
+ /**
12304
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12305
+ */
12306
+ keyFile?: string;
12307
+ }
12308
+ export interface ObservabilityPipelineConfigSourcesDatadogAgent {
12309
+ /**
12310
+ * The unique ID of the source.
12311
+ */
12312
+ id: string;
12313
+ /**
12314
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
12315
+ */
12316
+ tls?: outputs.ObservabilityPipelineConfigSourcesDatadogAgentTls;
12317
+ }
12318
+ export interface ObservabilityPipelineConfigSourcesDatadogAgentTls {
12319
+ /**
12320
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12321
+ */
12322
+ caFile?: string;
12323
+ /**
12324
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12325
+ */
12326
+ crtFile?: string;
12327
+ /**
12328
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12329
+ */
12330
+ keyFile?: string;
12331
+ }
12332
+ export interface ObservabilityPipelineConfigSourcesFluentBit {
12333
+ /**
12334
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (for example, as the `input` to downstream components).
12335
+ */
12336
+ id: string;
12337
+ /**
12338
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
12339
+ */
12340
+ tls?: outputs.ObservabilityPipelineConfigSourcesFluentBitTls;
12341
+ }
12342
+ export interface ObservabilityPipelineConfigSourcesFluentBitTls {
12343
+ /**
12344
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12345
+ */
12346
+ caFile?: string;
12347
+ /**
12348
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12349
+ */
12350
+ crtFile?: string;
12351
+ /**
12352
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12353
+ */
12354
+ keyFile?: string;
12355
+ }
12356
+ export interface ObservabilityPipelineConfigSourcesFluentd {
12357
+ /**
12358
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (for example, as the `input` to downstream components).
12359
+ */
12360
+ id: string;
12361
+ /**
12362
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
12363
+ */
12364
+ tls?: outputs.ObservabilityPipelineConfigSourcesFluentdTls;
12365
+ }
12366
+ export interface ObservabilityPipelineConfigSourcesFluentdTls {
12367
+ /**
12368
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12369
+ */
12370
+ caFile?: string;
12371
+ /**
12372
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12373
+ */
12374
+ crtFile?: string;
12375
+ /**
12376
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12377
+ */
12378
+ keyFile?: string;
12379
+ }
12380
+ export interface ObservabilityPipelineConfigSourcesGooglePubsub {
12381
+ /**
12382
+ * GCP credentials used to authenticate with Google Cloud Storage.
12383
+ */
12384
+ auth?: outputs.ObservabilityPipelineConfigSourcesGooglePubsubAuth;
12385
+ /**
12386
+ * The decoding format used to interpret incoming logs.
12387
+ */
12388
+ decoding: string;
12389
+ /**
12390
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
12391
+ */
12392
+ id: string;
12393
+ /**
12394
+ * The GCP project ID that owns the Pub/Sub subscription.
12395
+ */
12396
+ project: string;
12397
+ /**
12398
+ * The Pub/Sub subscription name from which messages are consumed.
12399
+ */
12400
+ subscription: string;
12401
+ /**
12402
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
12403
+ */
12404
+ tls?: outputs.ObservabilityPipelineConfigSourcesGooglePubsubTls;
12405
+ }
12406
+ export interface ObservabilityPipelineConfigSourcesGooglePubsubAuth {
12407
+ /**
12408
+ * Path to the GCP service account key file.
12409
+ */
12410
+ credentialsFile: string;
12411
+ }
12412
+ export interface ObservabilityPipelineConfigSourcesGooglePubsubTls {
12413
+ /**
12414
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12415
+ */
12416
+ caFile?: string;
12417
+ /**
12418
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12419
+ */
12420
+ crtFile?: string;
12421
+ /**
12422
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12423
+ */
12424
+ keyFile?: string;
12425
+ }
12426
+ export interface ObservabilityPipelineConfigSourcesHttpClient {
12427
+ /**
12428
+ * Optional authentication strategy for HTTP requests.
12429
+ */
12430
+ authStrategy?: string;
12431
+ /**
12432
+ * The decoding format used to interpret incoming logs.
12433
+ */
12434
+ decoding: string;
12435
+ /**
12436
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
12437
+ */
12438
+ id: string;
12439
+ /**
12440
+ * The interval (in seconds) between HTTP scrape requests.
12441
+ */
12442
+ scrapeIntervalSecs?: number;
12443
+ /**
12444
+ * The timeout (in seconds) for each scrape request.
12445
+ */
12446
+ scrapeTimeoutSecs?: number;
12447
+ /**
12448
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
12449
+ */
12450
+ tls?: outputs.ObservabilityPipelineConfigSourcesHttpClientTls;
12451
+ }
12452
+ export interface ObservabilityPipelineConfigSourcesHttpClientTls {
12453
+ /**
12454
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12455
+ */
12456
+ caFile?: string;
12457
+ /**
12458
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12459
+ */
12460
+ crtFile?: string;
12461
+ /**
12462
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12463
+ */
12464
+ keyFile?: string;
12465
+ }
12466
+ export interface ObservabilityPipelineConfigSourcesHttpServer {
12467
+ /**
12468
+ * HTTP authentication method. Valid values are `none`, `plain`.
12469
+ */
12470
+ authStrategy: string;
12471
+ /**
12472
+ * The decoding format used to interpret incoming logs. Valid values are `json`, `gelf`, `syslog`, `bytes`.
12473
+ */
12474
+ decoding: string;
12475
+ /**
12476
+ * Unique ID for the HTTP server source.
12477
+ */
12478
+ id: string;
12479
+ /**
12480
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
12481
+ */
12482
+ tls?: outputs.ObservabilityPipelineConfigSourcesHttpServerTls;
12483
+ }
12484
+ export interface ObservabilityPipelineConfigSourcesHttpServerTls {
12485
+ /**
12486
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12487
+ */
12488
+ caFile?: string;
12489
+ /**
12490
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12491
+ */
12492
+ crtFile?: string;
12493
+ /**
12494
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12495
+ */
12496
+ keyFile?: string;
12497
+ }
12498
+ export interface ObservabilityPipelineConfigSourcesKafka {
12499
+ /**
12500
+ * The Kafka consumer group ID.
12501
+ */
12502
+ groupId: string;
12503
+ /**
12504
+ * The unique ID of the source.
12505
+ */
12506
+ id: string;
12507
+ /**
12508
+ * Advanced librdkafka client configuration options.
12509
+ */
12510
+ librdkafkaOptions?: outputs.ObservabilityPipelineConfigSourcesKafkaLibrdkafkaOption[];
12511
+ /**
12512
+ * SASL authentication settings.
12513
+ */
12514
+ sasl?: outputs.ObservabilityPipelineConfigSourcesKafkaSasl;
12515
+ /**
12516
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
12517
+ */
12518
+ tls?: outputs.ObservabilityPipelineConfigSourcesKafkaTls;
12519
+ /**
12520
+ * A list of Kafka topic names to subscribe to. The source ingests messages from each topic specified.
12521
+ */
12522
+ topics: string[];
12523
+ }
12524
+ export interface ObservabilityPipelineConfigSourcesKafkaLibrdkafkaOption {
12525
+ /**
12526
+ * The name of the librdkafka option.
12527
+ */
12528
+ name: string;
12529
+ /**
12530
+ * The value of the librdkafka option.
12531
+ */
12532
+ value: string;
12533
+ }
12534
+ export interface ObservabilityPipelineConfigSourcesKafkaSasl {
10935
12535
  /**
10936
- * List of destinations.
12536
+ * SASL mechanism to use (e.g., PLAIN, SCRAM-SHA-256, SCRAM-SHA-512). Valid values are `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`.
10937
12537
  */
10938
- destinations?: outputs.ObservabilityPipelineConfigDestinations;
12538
+ mechanism?: string;
12539
+ }
12540
+ export interface ObservabilityPipelineConfigSourcesKafkaTls {
10939
12541
  /**
10940
- * List of processors.
12542
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
10941
12543
  */
10942
- processors?: outputs.ObservabilityPipelineConfigProcessors;
12544
+ caFile?: string;
10943
12545
  /**
10944
- * List of sources.
12546
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
10945
12547
  */
10946
- sources?: outputs.ObservabilityPipelineConfigSources;
10947
- }
10948
- export interface ObservabilityPipelineConfigDestinations {
12548
+ crtFile?: string;
10949
12549
  /**
10950
- * The `datadogLogs` destination forwards logs to Datadog Log Management.
12550
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
10951
12551
  */
10952
- datadogLogs?: outputs.ObservabilityPipelineConfigDestinationsDatadogLog[];
12552
+ keyFile?: string;
10953
12553
  }
10954
- export interface ObservabilityPipelineConfigDestinationsDatadogLog {
12554
+ export interface ObservabilityPipelineConfigSourcesLogstash {
10955
12555
  /**
10956
- * The unique ID of the destination.
12556
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
10957
12557
  */
10958
12558
  id: string;
10959
12559
  /**
10960
- * The inputs for the destination.
12560
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
10961
12561
  */
10962
- inputs: string[];
12562
+ tls?: outputs.ObservabilityPipelineConfigSourcesLogstashTls;
10963
12563
  }
10964
- export interface ObservabilityPipelineConfigProcessors {
12564
+ export interface ObservabilityPipelineConfigSourcesLogstashTls {
10965
12565
  /**
10966
- * The `addFields` processor adds static key-value fields to logs.
12566
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
10967
12567
  */
10968
- addFields?: outputs.ObservabilityPipelineConfigProcessorsAddField[];
12568
+ caFile?: string;
10969
12569
  /**
10970
- * The `filter` processor allows conditional processing of logs based on a Datadog search query. Logs that match the `include` query are passed through; others are discarded.
12570
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
10971
12571
  */
10972
- filters?: outputs.ObservabilityPipelineConfigProcessorsFilter[];
12572
+ crtFile?: string;
10973
12573
  /**
10974
- * The `parseJson` processor extracts JSON from a specified field and flattens it into the event. This is useful when logs contain embedded JSON as a string.
12574
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
10975
12575
  */
10976
- parseJsons?: outputs.ObservabilityPipelineConfigProcessorsParseJson[];
12576
+ keyFile?: string;
12577
+ }
12578
+ export interface ObservabilityPipelineConfigSourcesRsyslog {
10977
12579
  /**
10978
- * The `quota` measures logging traffic for logs that match a specified filter. When the configured daily quota is met, the processor can drop or alert.
12580
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
10979
12581
  */
10980
- quotas?: outputs.ObservabilityPipelineConfigProcessorsQuota[];
12582
+ id: string;
10981
12583
  /**
10982
- * The `removeFields` processor deletes specified fields from logs.
12584
+ * Protocol used by the syslog source to receive messages.
10983
12585
  */
10984
- removeFields?: outputs.ObservabilityPipelineConfigProcessorsRemoveField[];
12586
+ mode?: string;
10985
12587
  /**
10986
- * The `renameFields` processor changes field names.
12588
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
10987
12589
  */
10988
- renameFields?: outputs.ObservabilityPipelineConfigProcessorsRenameField[];
12590
+ tls?: outputs.ObservabilityPipelineConfigSourcesRsyslogTls;
10989
12591
  }
10990
- export interface ObservabilityPipelineConfigProcessorsAddField {
12592
+ export interface ObservabilityPipelineConfigSourcesRsyslogTls {
10991
12593
  /**
10992
- * A list of static fields (key-value pairs) that is added to each log event processed by this component.
10993
- */
10994
- fields?: outputs.ObservabilityPipelineConfigProcessorsAddFieldField[];
10995
- /**
10996
- * The unique ID of the processor.
12594
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
10997
12595
  */
10998
- id: string;
12596
+ caFile?: string;
10999
12597
  /**
11000
- * A Datadog search query used to determine which logs this processor targets.
12598
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11001
12599
  */
11002
- include: string;
12600
+ crtFile?: string;
11003
12601
  /**
11004
- * The inputs for the processor.
12602
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11005
12603
  */
11006
- inputs: string[];
12604
+ keyFile?: string;
11007
12605
  }
11008
- export interface ObservabilityPipelineConfigProcessorsAddFieldField {
12606
+ export interface ObservabilityPipelineConfigSourcesSplunkHec {
11009
12607
  /**
11010
- * The field name to add.
12608
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
11011
12609
  */
11012
- name: string;
12610
+ id: string;
11013
12611
  /**
11014
- * The value to assign to the field.
12612
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11015
12613
  */
11016
- value: string;
12614
+ tls?: outputs.ObservabilityPipelineConfigSourcesSplunkHecTls;
11017
12615
  }
11018
- export interface ObservabilityPipelineConfigProcessorsFilter {
12616
+ export interface ObservabilityPipelineConfigSourcesSplunkHecTls {
11019
12617
  /**
11020
- * The unique ID of the processor.
12618
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11021
12619
  */
11022
- id: string;
12620
+ caFile?: string;
11023
12621
  /**
11024
- * A Datadog search query used to determine which logs should pass through the filter. Logs that match this query continue to downstream components; others are dropped.
12622
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11025
12623
  */
11026
- include: string;
12624
+ crtFile?: string;
11027
12625
  /**
11028
- * The inputs for the processor.
12626
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11029
12627
  */
11030
- inputs: string[];
12628
+ keyFile?: string;
11031
12629
  }
11032
- export interface ObservabilityPipelineConfigProcessorsParseJson {
12630
+ export interface ObservabilityPipelineConfigSourcesSplunkTcp {
11033
12631
  /**
11034
- * The field to parse.
12632
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
11035
12633
  */
11036
- field: string;
12634
+ id: string;
11037
12635
  /**
11038
- * The unique ID of the processor.
12636
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11039
12637
  */
11040
- id: string;
12638
+ tls?: outputs.ObservabilityPipelineConfigSourcesSplunkTcpTls;
12639
+ }
12640
+ export interface ObservabilityPipelineConfigSourcesSplunkTcpTls {
11041
12641
  /**
11042
- * A Datadog search query used to determine which logs this processor targets.
12642
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11043
12643
  */
11044
- include: string;
12644
+ caFile?: string;
11045
12645
  /**
11046
- * The inputs for the processor.
12646
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11047
12647
  */
11048
- inputs: string[];
11049
- }
11050
- export interface ObservabilityPipelineConfigProcessorsQuota {
12648
+ crtFile?: string;
11051
12649
  /**
11052
- * Whether to drop events exceeding the limit.
12650
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11053
12651
  */
11054
- dropEvents: boolean;
12652
+ keyFile?: string;
12653
+ }
12654
+ export interface ObservabilityPipelineConfigSourcesSumoLogic {
11055
12655
  /**
11056
- * The unique ID of the processor.
12656
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
11057
12657
  */
11058
12658
  id: string;
12659
+ }
12660
+ export interface ObservabilityPipelineConfigSourcesSyslogNg {
11059
12661
  /**
11060
- * Whether to ignore when partition fields are missing.
12662
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
11061
12663
  */
11062
- ignoreWhenMissingPartitions?: boolean;
12664
+ id: string;
11063
12665
  /**
11064
- * A Datadog search query used to determine which logs this processor targets.
12666
+ * Protocol used by the syslog source to receive messages.
11065
12667
  */
11066
- include: string;
12668
+ mode?: string;
11067
12669
  /**
11068
- * The inputs for the processor.
12670
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11069
12671
  */
11070
- inputs: string[];
11071
- limit?: outputs.ObservabilityPipelineConfigProcessorsQuotaLimit;
12672
+ tls?: outputs.ObservabilityPipelineConfigSourcesSyslogNgTls;
12673
+ }
12674
+ export interface ObservabilityPipelineConfigSourcesSyslogNgTls {
11072
12675
  /**
11073
- * The name of the quota.
12676
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11074
12677
  */
11075
- name: string;
12678
+ caFile?: string;
11076
12679
  /**
11077
- * The overrides for field-specific quotas.
12680
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11078
12681
  */
11079
- overrides?: outputs.ObservabilityPipelineConfigProcessorsQuotaOverride[];
12682
+ crtFile?: string;
11080
12683
  /**
11081
- * List of partition fields.
12684
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11082
12685
  */
11083
- partitionFields?: string[];
12686
+ keyFile?: string;
11084
12687
  }
11085
- export interface ObservabilityPipelineConfigProcessorsQuotaLimit {
12688
+ export interface OnCallEscalationPolicyStep {
11086
12689
  /**
11087
- * Whether to enforce by 'bytes' or 'events'. Valid values are `bytes`, `events`.
12690
+ * Specifies how this escalation step will assign targets. Can be `default` (page all targets at once) or `round-robin`. Valid values are `assignment`, `round-robin`. Defaults to `"default"`.
11088
12691
  */
11089
- enforce: string;
12692
+ assignment: string;
11090
12693
  /**
11091
- * The daily quota limit.
12694
+ * Defines how many seconds to wait before escalating to the next step. Value must be between 60 and 36000.
11092
12695
  */
11093
- limit: number;
11094
- }
11095
- export interface ObservabilityPipelineConfigProcessorsQuotaOverride {
12696
+ escalateAfterSeconds: number;
11096
12697
  /**
11097
- * Fields that trigger this override.
12698
+ * The ID of this step.
11098
12699
  */
11099
- fields?: outputs.ObservabilityPipelineConfigProcessorsQuotaOverrideField[];
11100
- limit?: outputs.ObservabilityPipelineConfigProcessorsQuotaOverrideLimit;
11101
- }
11102
- export interface ObservabilityPipelineConfigProcessorsQuotaOverrideField {
12700
+ id: string;
11103
12701
  /**
11104
- * The field name.
12702
+ * List of targets for the step.
11105
12703
  */
11106
- name: string;
12704
+ targets?: outputs.OnCallEscalationPolicyStepTarget[];
12705
+ }
12706
+ export interface OnCallEscalationPolicyStepTarget {
11107
12707
  /**
11108
- * The field value.
12708
+ * Targeted schedule ID.
11109
12709
  */
11110
- value: string;
11111
- }
11112
- export interface ObservabilityPipelineConfigProcessorsQuotaOverrideLimit {
12710
+ schedule?: string;
11113
12711
  /**
11114
- * Whether to enforce by 'bytes' or 'events'. Valid values are `bytes`, `events`.
12712
+ * Targeted team ID.
11115
12713
  */
11116
- enforce: string;
12714
+ team?: string;
11117
12715
  /**
11118
- * The daily quota limit.
12716
+ * Targeted user ID.
11119
12717
  */
11120
- limit: number;
12718
+ user?: string;
11121
12719
  }
11122
- export interface ObservabilityPipelineConfigProcessorsRemoveField {
12720
+ export interface OnCallScheduleLayer {
11123
12721
  /**
11124
- * List of fields to remove from the events.
12722
+ * The date/time when this layer should become active (in ISO 8601).
11125
12723
  */
11126
- fields: string[];
12724
+ effectiveDate: string;
11127
12725
  /**
11128
- * The unique ID of the processor.
12726
+ * The date/time after which this layer no longer applies (in ISO 8601).
11129
12727
  */
11130
- id: string;
12728
+ endDate?: string;
11131
12729
  /**
11132
- * A Datadog search query used to determine which logs this processor targets.
12730
+ * The ID of this layer.
11133
12731
  */
11134
- include: string;
12732
+ id: string;
12733
+ interval?: outputs.OnCallScheduleLayerInterval;
11135
12734
  /**
11136
- * The inputs for the processor.
12735
+ * The name of this layer. Should be unique within the schedule.
11137
12736
  */
11138
- inputs: string[];
11139
- }
11140
- export interface ObservabilityPipelineConfigProcessorsRenameField {
12737
+ name: string;
11141
12738
  /**
11142
- * List of fields to rename.
12739
+ * List of restrictions for the layer.
11143
12740
  */
11144
- fields?: outputs.ObservabilityPipelineConfigProcessorsRenameFieldField[];
12741
+ restrictions?: outputs.OnCallScheduleLayerRestriction[];
11145
12742
  /**
11146
- * The unique ID of the processor.
12743
+ * The date/time when the rotation for this layer starts (in ISO 8601).
11147
12744
  */
11148
- id: string;
12745
+ rotationStart?: string;
11149
12746
  /**
11150
- * A Datadog search query used to determine which logs this processor targets.
12747
+ * List of user IDs for the layer. Can either be a valid user id or null
11151
12748
  */
11152
- include: string;
12749
+ users: string[];
12750
+ }
12751
+ export interface OnCallScheduleLayerInterval {
11153
12752
  /**
11154
- * he inputs for the processor.
12753
+ * The number of full days in each rotation period.
11155
12754
  */
11156
- inputs: string[];
11157
- }
11158
- export interface ObservabilityPipelineConfigProcessorsRenameFieldField {
12755
+ days: number;
11159
12756
  /**
11160
- * Destination field name.
12757
+ * For intervals that are not expressible in whole days, this will be added to `days`. Defaults to `0`.
11161
12758
  */
11162
- destination: string;
12759
+ seconds: number;
12760
+ }
12761
+ export interface OnCallScheduleLayerRestriction {
11163
12762
  /**
11164
- * Whether to keep the original field.
12763
+ * The weekday when the restriction period ends. Valid values are `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`.
11165
12764
  */
11166
- preserveSource: boolean;
12765
+ endDay?: string;
11167
12766
  /**
11168
- * Source field to rename.
12767
+ * The time of day when the restriction ends (hh:mm:ss).
11169
12768
  */
11170
- source: string;
11171
- }
11172
- export interface ObservabilityPipelineConfigSources {
12769
+ endTime?: string;
11173
12770
  /**
11174
- * The `datadogAgent` source collects logs from the Datadog Agent.
12771
+ * The weekday when the restriction period starts. Valid values are `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`.
11175
12772
  */
11176
- datadogAgents?: outputs.ObservabilityPipelineConfigSourcesDatadogAgent[];
12773
+ startDay?: string;
11177
12774
  /**
11178
- * The `kafka` source ingests data from Apache Kafka topics.
12775
+ * The time of day when the restriction begins (hh:mm:ss).
11179
12776
  */
11180
- kafkas?: outputs.ObservabilityPipelineConfigSourcesKafka[];
12777
+ startTime?: string;
11181
12778
  }
11182
- export interface ObservabilityPipelineConfigSourcesDatadogAgent {
12779
+ export interface OnCallTeamRoutingRulesRule {
11183
12780
  /**
11184
- * The unique ID of the source.
12781
+ * Specifies the list of actions to perform when the routing rule is matched.
11185
12782
  */
11186
- id: string;
12783
+ actions?: outputs.OnCallTeamRoutingRulesRuleAction[];
11187
12784
  /**
11188
- * Configuration for enabling TLS encryption between the pipeline component and external services.
12785
+ * ID of the policy to be applied when this routing rule matches.
11189
12786
  */
11190
- tls?: outputs.ObservabilityPipelineConfigSourcesDatadogAgentTls;
11191
- }
11192
- export interface ObservabilityPipelineConfigSourcesDatadogAgentTls {
12787
+ escalationPolicy?: string;
11193
12788
  /**
11194
- * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12789
+ * The ID of this rule.
11195
12790
  */
11196
- caFile?: string;
12791
+ id: string;
11197
12792
  /**
11198
- * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12793
+ * Defines the query or condition that triggers this routing rule. Defaults to `""`.
11199
12794
  */
11200
- crtFile: string;
12795
+ query: string;
11201
12796
  /**
11202
- * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12797
+ * Holds time zone information and a list of time restrictions for a routing rule.
11203
12798
  */
11204
- keyFile?: string;
11205
- }
11206
- export interface ObservabilityPipelineConfigSourcesKafka {
12799
+ timeRestrictions?: outputs.OnCallTeamRoutingRulesRuleTimeRestrictions;
11207
12800
  /**
11208
- * The Kafka consumer group ID.
12801
+ * Defines the urgency for pages created via this rule. Only valid if `escalationPolicy` is set. Valid values are `high`, `low`, `dynamic`.
11209
12802
  */
11210
- groupId: string;
12803
+ urgency?: string;
12804
+ }
12805
+ export interface OnCallTeamRoutingRulesRuleAction {
12806
+ sendSlackMessage?: outputs.OnCallTeamRoutingRulesRuleActionSendSlackMessage;
12807
+ sendTeamsMessage?: outputs.OnCallTeamRoutingRulesRuleActionSendTeamsMessage;
12808
+ }
12809
+ export interface OnCallTeamRoutingRulesRuleActionSendSlackMessage {
11211
12810
  /**
11212
- * The unique ID of the source.
12811
+ * Slack channel ID.
11213
12812
  */
11214
- id: string;
12813
+ channel?: string;
11215
12814
  /**
11216
- * Advanced librdkafka client configuration options.
12815
+ * Slack workspace ID.
11217
12816
  */
11218
- librdkafkaOptions?: outputs.ObservabilityPipelineConfigSourcesKafkaLibrdkafkaOption[];
12817
+ workspace?: string;
12818
+ }
12819
+ export interface OnCallTeamRoutingRulesRuleActionSendTeamsMessage {
11219
12820
  /**
11220
- * SASL authentication settings.
12821
+ * Teams channel ID.
11221
12822
  */
11222
- sasl?: outputs.ObservabilityPipelineConfigSourcesKafkaSasl;
12823
+ channel?: string;
11223
12824
  /**
11224
- * Configuration for enabling TLS encryption between the pipeline component and external services.
12825
+ * Teams team ID.
11225
12826
  */
11226
- tls?: outputs.ObservabilityPipelineConfigSourcesKafkaTls;
12827
+ team?: string;
11227
12828
  /**
11228
- * A list of Kafka topic names to subscribe to. The source ingests messages from each topic specified.
12829
+ * Teams tenant ID.
11229
12830
  */
11230
- topics: string[];
12831
+ tenant?: string;
11231
12832
  }
11232
- export interface ObservabilityPipelineConfigSourcesKafkaLibrdkafkaOption {
12833
+ export interface OnCallTeamRoutingRulesRuleTimeRestrictions {
11233
12834
  /**
11234
- * The name of the librdkafka option.
12835
+ * List of restrictions for the rule.
11235
12836
  */
11236
- name: string;
12837
+ restrictions?: outputs.OnCallTeamRoutingRulesRuleTimeRestrictionsRestriction[];
11237
12838
  /**
11238
- * The value of the librdkafka option.
12839
+ * Specifies the time zone applicable to the restrictions, e.g. `America/New_York`.
11239
12840
  */
11240
- value: string;
12841
+ timeZone?: string;
11241
12842
  }
11242
- export interface ObservabilityPipelineConfigSourcesKafkaSasl {
12843
+ export interface OnCallTeamRoutingRulesRuleTimeRestrictionsRestriction {
11243
12844
  /**
11244
- * SASL mechanism to use (e.g., PLAIN, SCRAM-SHA-256, SCRAM-SHA-512). Valid values are `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`.
12845
+ * The weekday when the restriction period ends. Valid values are `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`.
11245
12846
  */
11246
- mechanism: string;
11247
- }
11248
- export interface ObservabilityPipelineConfigSourcesKafkaTls {
12847
+ endDay?: string;
11249
12848
  /**
11250
- * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12849
+ * The time of day when the restriction ends (hh:mm:ss).
11251
12850
  */
11252
- caFile?: string;
12851
+ endTime?: string;
11253
12852
  /**
11254
- * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12853
+ * The weekday when the restriction period starts. Valid values are `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`.
11255
12854
  */
11256
- crtFile: string;
12855
+ startDay?: string;
11257
12856
  /**
11258
- * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12857
+ * The time of day when the restriction begins (hh:mm:ss).
11259
12858
  */
11260
- keyFile?: string;
12859
+ startTime?: string;
11261
12860
  }
11262
12861
  export interface OrganizationSettingsSettings {
11263
12862
  /**
@@ -15498,11 +17097,11 @@ export interface PowerpackWidgetListStreamDefinitionRequestColumn {
15498
17097
  /**
15499
17098
  * Widget column field.
15500
17099
  */
15501
- field: string;
17100
+ field?: string;
15502
17101
  /**
15503
17102
  * Widget column width. Valid values are `auto`, `compact`, `full`.
15504
17103
  */
15505
- width: string;
17104
+ width?: string;
15506
17105
  }
15507
17106
  export interface PowerpackWidgetListStreamDefinitionRequestQuery {
15508
17107
  /**
@@ -22476,6 +24075,10 @@ export interface PowerpackWidgetTraceServiceDefinition {
22476
24075
  titleSize?: string;
22477
24076
  }
22478
24077
  export interface PowerpackWidgetTreemapDefinition {
24078
+ /**
24079
+ * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
24080
+ */
24081
+ customLinks?: outputs.PowerpackWidgetTreemapDefinitionCustomLink[];
22479
24082
  /**
22480
24083
  * Nested block describing the request to use when displaying the widget.
22481
24084
  */
@@ -22485,6 +24088,24 @@ export interface PowerpackWidgetTreemapDefinition {
22485
24088
  */
22486
24089
  title?: string;
22487
24090
  }
24091
+ export interface PowerpackWidgetTreemapDefinitionCustomLink {
24092
+ /**
24093
+ * The flag for toggling context menu link visibility.
24094
+ */
24095
+ isHidden?: boolean;
24096
+ /**
24097
+ * The label for the custom link URL.
24098
+ */
24099
+ label?: string;
24100
+ /**
24101
+ * The URL of the custom link.
24102
+ */
24103
+ link?: string;
24104
+ /**
24105
+ * The label ID that refers to a context menu link item. When `overrideLabel` is provided, the client request omits the label field.
24106
+ */
24107
+ overrideLabel?: string;
24108
+ }
22488
24109
  export interface PowerpackWidgetTreemapDefinitionRequest {
22489
24110
  formulas?: outputs.PowerpackWidgetTreemapDefinitionRequestFormula[];
22490
24111
  queries?: outputs.PowerpackWidgetTreemapDefinitionRequestQuery[];
@@ -23197,7 +24818,7 @@ export interface SecurityMonitoringRuleQuery {
23197
24818
  */
23198
24819
  aggregation?: string;
23199
24820
  /**
23200
- * Source of events. Valid values are `logs`, `audit`, `appSecSpans`, `spans`, `securityRuntime`, `network`. Defaults to `"logs"`.
24821
+ * Source of events. Valid values are `logs`, `audit`, `appSecSpans`, `spans`, `securityRuntime`, `network`, `events`. Defaults to `"logs"`.
23201
24822
  */
23202
24823
  dataSource?: string;
23203
24824
  /**
@@ -24086,6 +25707,10 @@ export interface SyntheticsTestBrowserStepParams {
24086
25707
  * Type of click to use for a "click" step.
24087
25708
  */
24088
25709
  clickType?: string;
25710
+ /**
25711
+ * Whether to use `element.click()` for a "click" step. This is a more reliable way to interact with elements but does not emulate a real user interaction.
25712
+ */
25713
+ clickWithJavascript?: boolean;
24089
25714
  /**
24090
25715
  * Javascript code to use for the step.
24091
25716
  */
@@ -24983,7 +26608,7 @@ export declare namespace azure {
24983
26608
  export declare namespace config {
24984
26609
  interface DefaultTags {
24985
26610
  /**
24986
- * [Experimental - Logs Pipelines, Monitors and Security Monitoring Rules only] Resource tags to be applied by default across all resources.
26611
+ * [Experimental - Logs Pipelines, Monitors Security Monitoring Rules, and Service Level Objectives only] Resource tags to be applied by default across all resources.
24987
26612
  */
24988
26613
  tags?: {
24989
26614
  [key: string]: string;