@pulumi/datadog 4.51.0-alpha.1749534564 → 4.52.0-alpha.1749649703

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/input.d.ts CHANGED
@@ -321,6 +321,26 @@ export interface CloudConfigurationRuleFilter {
321
321
  */
322
322
  query: pulumi.Input<string>;
323
323
  }
324
+ export interface ComplianceCustomFrameworkRequirement {
325
+ /**
326
+ * The controls of the requirement. Length must be at least 1.
327
+ */
328
+ controls?: pulumi.Input<pulumi.Input<inputs.ComplianceCustomFrameworkRequirementControl>[]>;
329
+ /**
330
+ * The name of the requirement. String length must be at least 1.
331
+ */
332
+ name: pulumi.Input<string>;
333
+ }
334
+ export interface ComplianceCustomFrameworkRequirementControl {
335
+ /**
336
+ * The name of the control. String length must be at least 1.
337
+ */
338
+ name: pulumi.Input<string>;
339
+ /**
340
+ * The set of rules IDs for the control. Length must be at least 1.
341
+ */
342
+ rulesIds: pulumi.Input<pulumi.Input<string>[]>;
343
+ }
324
344
  export interface DashboardListDashItem {
325
345
  /**
326
346
  * The ID of the dashboard to add
@@ -3082,11 +3102,11 @@ export interface DashboardWidgetListStreamDefinitionRequestColumn {
3082
3102
  /**
3083
3103
  * Widget column field.
3084
3104
  */
3085
- field: pulumi.Input<string>;
3105
+ field?: pulumi.Input<string>;
3086
3106
  /**
3087
3107
  * Widget column width. Valid values are `auto`, `compact`, `full`.
3088
3108
  */
3089
- width: pulumi.Input<string>;
3109
+ width?: pulumi.Input<string>;
3090
3110
  }
3091
3111
  export interface DashboardWidgetListStreamDefinitionRequestQuery {
3092
3112
  /**
@@ -8292,6 +8312,10 @@ export interface DashboardWidgetTraceServiceDefinition {
8292
8312
  titleSize?: pulumi.Input<string>;
8293
8313
  }
8294
8314
  export interface DashboardWidgetTreemapDefinition {
8315
+ /**
8316
+ * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
8317
+ */
8318
+ customLinks?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetTreemapDefinitionCustomLink>[]>;
8295
8319
  /**
8296
8320
  * Nested block describing the request to use when displaying the widget.
8297
8321
  */
@@ -8301,6 +8325,24 @@ export interface DashboardWidgetTreemapDefinition {
8301
8325
  */
8302
8326
  title?: pulumi.Input<string>;
8303
8327
  }
8328
+ export interface DashboardWidgetTreemapDefinitionCustomLink {
8329
+ /**
8330
+ * The flag for toggling context menu link visibility.
8331
+ */
8332
+ isHidden?: pulumi.Input<boolean>;
8333
+ /**
8334
+ * The label for the custom link URL.
8335
+ */
8336
+ label?: pulumi.Input<string>;
8337
+ /**
8338
+ * The URL of the custom link.
8339
+ */
8340
+ link?: pulumi.Input<string>;
8341
+ /**
8342
+ * The label ID that refers to a context menu link item. When `overrideLabel` is provided, the client request omits the label field.
8343
+ */
8344
+ overrideLabel?: pulumi.Input<string>;
8345
+ }
8304
8346
  export interface DashboardWidgetTreemapDefinitionRequest {
8305
8347
  formulas?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetTreemapDefinitionRequestFormula>[]>;
8306
8348
  queries?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetTreemapDefinitionRequestQuery>[]>;
@@ -10346,333 +10388,1890 @@ export interface MonitorVariablesEventQuerySearch {
10346
10388
  */
10347
10389
  query: pulumi.Input<string>;
10348
10390
  }
10349
- export interface ObservabilityPipelineConfig {
10391
+ export interface ObservabilityPipelineConfig {
10392
+ /**
10393
+ * List of destinations.
10394
+ */
10395
+ destinations?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinations>;
10396
+ /**
10397
+ * List of processors.
10398
+ */
10399
+ processors?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessors>;
10400
+ /**
10401
+ * List of sources.
10402
+ */
10403
+ sources?: pulumi.Input<inputs.ObservabilityPipelineConfigSources>;
10404
+ }
10405
+ export interface ObservabilityPipelineConfigDestinations {
10406
+ /**
10407
+ * The `amazonOpensearch` destination writes logs to Amazon OpenSearch.
10408
+ */
10409
+ amazonOpensearches?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsAmazonOpensearch>[]>;
10410
+ /**
10411
+ * The `azureStorage` destination forwards logs to an Azure Blob Storage container.
10412
+ */
10413
+ azureStorages?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsAzureStorage>[]>;
10414
+ /**
10415
+ * The `datadogLogs` destination forwards logs to Datadog Log Management.
10416
+ */
10417
+ datadogLogs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsDatadogLog>[]>;
10418
+ /**
10419
+ * The `elasticsearch` destination writes logs to an Elasticsearch cluster.
10420
+ */
10421
+ elasticsearches?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsElasticsearch>[]>;
10422
+ /**
10423
+ * The `googleChronicle` destination sends logs to Google Chronicle.
10424
+ */
10425
+ googleChronicles?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsGoogleChronicle>[]>;
10426
+ /**
10427
+ * The `googleCloudStorage` destination stores logs in a Google Cloud Storage (GCS) bucket.
10428
+ */
10429
+ googleCloudStorages?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsGoogleCloudStorage>[]>;
10430
+ /**
10431
+ * The `microsoftSentinel` destination forwards logs to Microsoft Sentinel.
10432
+ */
10433
+ microsoftSentinels?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsMicrosoftSentinel>[]>;
10434
+ /**
10435
+ * The `newRelic` destination sends logs to the New Relic platform.
10436
+ */
10437
+ newRelics?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsNewRelic>[]>;
10438
+ /**
10439
+ * The `opensearch` destination writes logs to an OpenSearch cluster.
10440
+ */
10441
+ opensearches?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsOpensearch>[]>;
10442
+ /**
10443
+ * The `rsyslog` destination forwards logs to an external `rsyslog` server over TCP or UDP using the syslog protocol.
10444
+ */
10445
+ rsyslogs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsRsyslog>[]>;
10446
+ /**
10447
+ * The `sentinelOne` destination sends logs to SentinelOne.
10448
+ */
10449
+ sentinelOnes?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsSentinelOne>[]>;
10450
+ /**
10451
+ * The `splunkHec` destination forwards logs to Splunk using the HTTP Event Collector (HEC).
10452
+ */
10453
+ splunkHecs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsSplunkHec>[]>;
10454
+ /**
10455
+ * The `sumoLogic` destination forwards logs to Sumo Logic.
10456
+ */
10457
+ sumoLogics?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsSumoLogic>[]>;
10458
+ /**
10459
+ * The `syslogNg` destination forwards logs to an external `syslog-ng` server over TCP or UDP using the syslog protocol.
10460
+ */
10461
+ syslogNgs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsSyslogNg>[]>;
10462
+ }
10463
+ export interface ObservabilityPipelineConfigDestinationsAmazonOpensearch {
10464
+ auth?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsAmazonOpensearchAuth>;
10465
+ /**
10466
+ * The index or datastream to write logs to.
10467
+ */
10468
+ bulkIndex?: pulumi.Input<string>;
10469
+ /**
10470
+ * The unique identifier for this component.
10471
+ */
10472
+ id: pulumi.Input<string>;
10473
+ /**
10474
+ * A list of component IDs whose output is used as the input for this component.
10475
+ */
10476
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10477
+ }
10478
+ export interface ObservabilityPipelineConfigDestinationsAmazonOpensearchAuth {
10479
+ /**
10480
+ * ARN of the role to assume.
10481
+ */
10482
+ assumeRole?: pulumi.Input<string>;
10483
+ /**
10484
+ * AWS region override (if applicable).
10485
+ */
10486
+ awsRegion?: pulumi.Input<string>;
10487
+ /**
10488
+ * External ID for assumed role.
10489
+ */
10490
+ externalId?: pulumi.Input<string>;
10491
+ /**
10492
+ * Session name for assumed role.
10493
+ */
10494
+ sessionName?: pulumi.Input<string>;
10495
+ /**
10496
+ * The authentication strategy to use (e.g. aws or basic).
10497
+ */
10498
+ strategy: pulumi.Input<string>;
10499
+ }
10500
+ export interface ObservabilityPipelineConfigDestinationsAzureStorage {
10501
+ /**
10502
+ * Optional prefix for blobs written to the container.
10503
+ */
10504
+ blobPrefix?: pulumi.Input<string>;
10505
+ /**
10506
+ * The name of the Azure Blob Storage container to store logs in.
10507
+ */
10508
+ containerName: pulumi.Input<string>;
10509
+ /**
10510
+ * The unique identifier for this component.
10511
+ */
10512
+ id: pulumi.Input<string>;
10513
+ /**
10514
+ * A list of component IDs whose output is used as the `input` for this component.
10515
+ */
10516
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10517
+ }
10518
+ export interface ObservabilityPipelineConfigDestinationsDatadogLog {
10519
+ /**
10520
+ * The unique ID of the destination.
10521
+ */
10522
+ id: pulumi.Input<string>;
10523
+ /**
10524
+ * The inputs for the destination.
10525
+ */
10526
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10527
+ }
10528
+ export interface ObservabilityPipelineConfigDestinationsElasticsearch {
10529
+ /**
10530
+ * The Elasticsearch API version to use. Set to `auto` to auto-detect.
10531
+ */
10532
+ apiVersion?: pulumi.Input<string>;
10533
+ /**
10534
+ * The index or datastream to write logs to in Elasticsearch.
10535
+ */
10536
+ bulkIndex?: pulumi.Input<string>;
10537
+ /**
10538
+ * The unique identifier for this component.
10539
+ */
10540
+ id: pulumi.Input<string>;
10541
+ /**
10542
+ * A list of component IDs whose output is used as the `input` for this component.
10543
+ */
10544
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10545
+ }
10546
+ export interface ObservabilityPipelineConfigDestinationsGoogleChronicle {
10547
+ /**
10548
+ * GCP credentials used to authenticate with Google Cloud Storage.
10549
+ */
10550
+ auth?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsGoogleChronicleAuth>;
10551
+ /**
10552
+ * The Google Chronicle customer ID.
10553
+ */
10554
+ customerId?: pulumi.Input<string>;
10555
+ /**
10556
+ * The encoding format for the logs sent to Chronicle.
10557
+ */
10558
+ encoding?: pulumi.Input<string>;
10559
+ /**
10560
+ * The unique identifier for this component.
10561
+ */
10562
+ id: pulumi.Input<string>;
10563
+ /**
10564
+ * A list of component IDs whose output is used as the `input` for this component.
10565
+ */
10566
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10567
+ /**
10568
+ * The log type metadata associated with the Chronicle destination.
10569
+ */
10570
+ logType?: pulumi.Input<string>;
10571
+ }
10572
+ export interface ObservabilityPipelineConfigDestinationsGoogleChronicleAuth {
10573
+ /**
10574
+ * Path to the GCP service account key file.
10575
+ */
10576
+ credentialsFile?: pulumi.Input<string>;
10577
+ }
10578
+ export interface ObservabilityPipelineConfigDestinationsGoogleCloudStorage {
10579
+ /**
10580
+ * Access control list setting for objects written to the bucket.
10581
+ */
10582
+ acl: pulumi.Input<string>;
10583
+ /**
10584
+ * GCP credentials used to authenticate with Google Cloud Storage.
10585
+ */
10586
+ auth?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsGoogleCloudStorageAuth>;
10587
+ /**
10588
+ * Name of the GCS bucket.
10589
+ */
10590
+ bucket: pulumi.Input<string>;
10591
+ /**
10592
+ * Unique identifier for the destination component.
10593
+ */
10594
+ id: pulumi.Input<string>;
10595
+ /**
10596
+ * A list of component IDs whose output is used as the `input` for this component.
10597
+ */
10598
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10599
+ /**
10600
+ * Optional prefix for object keys within the GCS bucket.
10601
+ */
10602
+ keyPrefix?: pulumi.Input<string>;
10603
+ /**
10604
+ * Custom metadata key-value pairs added to each object.
10605
+ */
10606
+ metadatas?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsGoogleCloudStorageMetadata>[]>;
10607
+ /**
10608
+ * Storage class used for objects stored in GCS.
10609
+ */
10610
+ storageClass: pulumi.Input<string>;
10611
+ }
10612
+ export interface ObservabilityPipelineConfigDestinationsGoogleCloudStorageAuth {
10613
+ /**
10614
+ * Path to the GCP service account key file.
10615
+ */
10616
+ credentialsFile: pulumi.Input<string>;
10617
+ }
10618
+ export interface ObservabilityPipelineConfigDestinationsGoogleCloudStorageMetadata {
10619
+ /**
10620
+ * The metadata key.
10621
+ */
10622
+ name: pulumi.Input<string>;
10623
+ /**
10624
+ * The metadata value.
10625
+ */
10626
+ value: pulumi.Input<string>;
10627
+ }
10628
+ export interface ObservabilityPipelineConfigDestinationsMicrosoftSentinel {
10629
+ /**
10630
+ * Azure AD client ID used for authentication.
10631
+ */
10632
+ clientId: pulumi.Input<string>;
10633
+ /**
10634
+ * The immutable ID of the Data Collection Rule (DCR).
10635
+ */
10636
+ dcrImmutableId: pulumi.Input<string>;
10637
+ /**
10638
+ * The unique identifier for this component.
10639
+ */
10640
+ id: pulumi.Input<string>;
10641
+ /**
10642
+ * A list of component IDs whose output is used as the `input` for this component.
10643
+ */
10644
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10645
+ /**
10646
+ * The name of the Log Analytics table where logs will be sent.
10647
+ */
10648
+ table: pulumi.Input<string>;
10649
+ /**
10650
+ * Azure AD tenant ID.
10651
+ */
10652
+ tenantId: pulumi.Input<string>;
10653
+ }
10654
+ export interface ObservabilityPipelineConfigDestinationsNewRelic {
10655
+ /**
10656
+ * The unique identifier for this component.
10657
+ */
10658
+ id: pulumi.Input<string>;
10659
+ /**
10660
+ * A list of component IDs whose output is used as the `input` for this component.
10661
+ */
10662
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10663
+ /**
10664
+ * The New Relic region.
10665
+ */
10666
+ region: pulumi.Input<string>;
10667
+ }
10668
+ export interface ObservabilityPipelineConfigDestinationsOpensearch {
10669
+ /**
10670
+ * The index or datastream to write logs to.
10671
+ */
10672
+ bulkIndex?: pulumi.Input<string>;
10673
+ /**
10674
+ * The unique identifier for this component.
10675
+ */
10676
+ id: pulumi.Input<string>;
10677
+ /**
10678
+ * A list of component IDs whose output is used as input.
10679
+ */
10680
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10681
+ }
10682
+ export interface ObservabilityPipelineConfigDestinationsRsyslog {
10683
+ /**
10684
+ * The unique identifier for this component.
10685
+ */
10686
+ id: pulumi.Input<string>;
10687
+ /**
10688
+ * A list of component IDs whose output is used as the `input` for this component.
10689
+ */
10690
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10691
+ /**
10692
+ * Optional socket keepalive duration in milliseconds.
10693
+ */
10694
+ keepalive?: pulumi.Input<number>;
10695
+ /**
10696
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
10697
+ */
10698
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsRsyslogTls>;
10699
+ }
10700
+ export interface ObservabilityPipelineConfigDestinationsRsyslogTls {
10701
+ /**
10702
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
10703
+ */
10704
+ caFile?: pulumi.Input<string>;
10705
+ /**
10706
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
10707
+ */
10708
+ crtFile?: pulumi.Input<string>;
10709
+ /**
10710
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
10711
+ */
10712
+ keyFile?: pulumi.Input<string>;
10713
+ }
10714
+ export interface ObservabilityPipelineConfigDestinationsSentinelOne {
10715
+ /**
10716
+ * The unique identifier for this component.
10717
+ */
10718
+ id: pulumi.Input<string>;
10719
+ /**
10720
+ * A list of component IDs whose output is used as the `input` for this component.
10721
+ */
10722
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10723
+ /**
10724
+ * The SentinelOne region to send logs to.
10725
+ */
10726
+ region: pulumi.Input<string>;
10727
+ }
10728
+ export interface ObservabilityPipelineConfigDestinationsSplunkHec {
10729
+ /**
10730
+ * If `true`, Splunk tries to extract timestamps from incoming log events.
10731
+ */
10732
+ autoExtractTimestamp?: pulumi.Input<boolean>;
10733
+ /**
10734
+ * Encoding format for log events. Valid values: `json`, `rawMessage`.
10735
+ */
10736
+ encoding?: pulumi.Input<string>;
10737
+ /**
10738
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
10739
+ */
10740
+ id: pulumi.Input<string>;
10741
+ /**
10742
+ * Optional name of the Splunk index where logs are written.
10743
+ */
10744
+ index?: pulumi.Input<string>;
10745
+ /**
10746
+ * A list of component IDs whose output is used as the `input` for this component.
10747
+ */
10748
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10749
+ /**
10750
+ * The Splunk sourcetype to assign to log events.
10751
+ */
10752
+ sourcetype?: pulumi.Input<string>;
10753
+ }
10754
+ export interface ObservabilityPipelineConfigDestinationsSumoLogic {
10755
+ /**
10756
+ * The output encoding format.
10757
+ */
10758
+ encoding?: pulumi.Input<string>;
10759
+ /**
10760
+ * A list of custom headers to include in the request to Sumo Logic.
10761
+ */
10762
+ headerCustomFields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsSumoLogicHeaderCustomField>[]>;
10763
+ /**
10764
+ * Optional override for the host name header.
10765
+ */
10766
+ headerHostName?: pulumi.Input<string>;
10767
+ /**
10768
+ * Optional override for the source category header.
10769
+ */
10770
+ headerSourceCategory?: pulumi.Input<string>;
10771
+ /**
10772
+ * Optional override for the source name header.
10773
+ */
10774
+ headerSourceName?: pulumi.Input<string>;
10775
+ /**
10776
+ * The unique identifier for this component.
10777
+ */
10778
+ id: pulumi.Input<string>;
10779
+ /**
10780
+ * A list of component IDs whose output is used as the `input` for this component.
10781
+ */
10782
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10783
+ }
10784
+ export interface ObservabilityPipelineConfigDestinationsSumoLogicHeaderCustomField {
10785
+ /**
10786
+ * The header field name.
10787
+ */
10788
+ name?: pulumi.Input<string>;
10789
+ /**
10790
+ * The header field value.
10791
+ */
10792
+ value?: pulumi.Input<string>;
10793
+ }
10794
+ export interface ObservabilityPipelineConfigDestinationsSyslogNg {
10795
+ /**
10796
+ * The unique identifier for this component.
10797
+ */
10798
+ id: pulumi.Input<string>;
10799
+ /**
10800
+ * A list of component IDs whose output is used as the `input` for this component.
10801
+ */
10802
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10803
+ /**
10804
+ * Optional socket keepalive duration in milliseconds.
10805
+ */
10806
+ keepalive?: pulumi.Input<number>;
10807
+ /**
10808
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
10809
+ */
10810
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsSyslogNgTls>;
10811
+ }
10812
+ export interface ObservabilityPipelineConfigDestinationsSyslogNgTls {
10813
+ /**
10814
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
10815
+ */
10816
+ caFile?: pulumi.Input<string>;
10817
+ /**
10818
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
10819
+ */
10820
+ crtFile?: pulumi.Input<string>;
10821
+ /**
10822
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
10823
+ */
10824
+ keyFile?: pulumi.Input<string>;
10825
+ }
10826
+ export interface ObservabilityPipelineConfigProcessors {
10827
+ /**
10828
+ * The `addEnvVars` processor adds environment variable values to log events.
10829
+ */
10830
+ addEnvVars?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsAddEnvVar>[]>;
10831
+ /**
10832
+ * The `addFields` processor adds static key-value fields to logs.
10833
+ */
10834
+ addFields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsAddField>[]>;
10835
+ /**
10836
+ * The `dedupe` processor removes duplicate fields in log events.
10837
+ */
10838
+ dedupes?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsDedupe>[]>;
10839
+ /**
10840
+ * The `enrichmentTable` processor enriches logs using a static CSV file or GeoIP database.
10841
+ */
10842
+ enrichmentTables?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsEnrichmentTable>[]>;
10843
+ /**
10844
+ * 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.
10845
+ */
10846
+ filters?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsFilter>[]>;
10847
+ /**
10848
+ * The `generateDatadogMetrics` processor creates custom metrics from logs. Metrics can be counters, gauges, or distributions and optionally grouped by log fields.
10849
+ */
10850
+ generateDatadogMetrics?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsGenerateDatadogMetric>[]>;
10851
+ /**
10852
+ * The `ocsfMapper` processor transforms logs into the OCSF schema using predefined library mappings.
10853
+ */
10854
+ ocsfMappers?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsOcsfMapper>[]>;
10855
+ /**
10856
+ * The `parseGrok` processor extracts structured fields from unstructured log messages using Grok patterns.
10857
+ */
10858
+ parseGroks?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsParseGrok>[]>;
10859
+ /**
10860
+ * 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.
10861
+ */
10862
+ parseJsons?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsParseJson>[]>;
10863
+ /**
10864
+ * 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.
10865
+ */
10866
+ quotas?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsQuota>[]>;
10867
+ /**
10868
+ * The `reduce` processor aggregates and merges logs based on matching keys and merge strategies.
10869
+ */
10870
+ reduces?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsReduce>[]>;
10871
+ /**
10872
+ * The `removeFields` processor deletes specified fields from logs.
10873
+ */
10874
+ removeFields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsRemoveField>[]>;
10875
+ /**
10876
+ * The `renameFields` processor changes field names.
10877
+ */
10878
+ renameFields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsRenameField>[]>;
10879
+ /**
10880
+ * The `sample` processor allows probabilistic sampling of logs at a fixed rate.
10881
+ */
10882
+ samples?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSample>[]>;
10883
+ /**
10884
+ * The `sensitiveDataScanner` processor detects and optionally redacts sensitive data in log events.
10885
+ */
10886
+ sensitiveDataScanners?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScanner>[]>;
10887
+ /**
10888
+ * The `throttle` processor limits the number of events that pass through over a given time window.
10889
+ */
10890
+ throttles?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsThrottle>[]>;
10891
+ }
10892
+ export interface ObservabilityPipelineConfigProcessorsAddEnvVar {
10893
+ /**
10894
+ * The unique identifier for this component. Used to reference this processor in the pipeline.
10895
+ */
10896
+ id: pulumi.Input<string>;
10897
+ /**
10898
+ * A Datadog search query used to determine which logs this processor targets.
10899
+ */
10900
+ include: pulumi.Input<string>;
10901
+ /**
10902
+ * A list of component IDs whose output is used as the input for this processor.
10903
+ */
10904
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10905
+ /**
10906
+ * A list of environment variable mappings to apply to log fields.
10907
+ */
10908
+ variables?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsAddEnvVarVariable>[]>;
10909
+ }
10910
+ export interface ObservabilityPipelineConfigProcessorsAddEnvVarVariable {
10911
+ /**
10912
+ * The target field in the log event.
10913
+ */
10914
+ field: pulumi.Input<string>;
10915
+ /**
10916
+ * The name of the environment variable to read.
10917
+ */
10918
+ name: pulumi.Input<string>;
10919
+ }
10920
+ export interface ObservabilityPipelineConfigProcessorsAddField {
10921
+ /**
10922
+ * A list of static fields (key-value pairs) that is added to each log event processed by this component.
10923
+ */
10924
+ fields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsAddFieldField>[]>;
10925
+ /**
10926
+ * The unique ID of the processor.
10927
+ */
10928
+ id: pulumi.Input<string>;
10929
+ /**
10930
+ * A Datadog search query used to determine which logs this processor targets.
10931
+ */
10932
+ include: pulumi.Input<string>;
10933
+ /**
10934
+ * The inputs for the processor.
10935
+ */
10936
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10937
+ }
10938
+ export interface ObservabilityPipelineConfigProcessorsAddFieldField {
10939
+ /**
10940
+ * The field name to add.
10941
+ */
10942
+ name: pulumi.Input<string>;
10943
+ /**
10944
+ * The value to assign to the field.
10945
+ */
10946
+ value: pulumi.Input<string>;
10947
+ }
10948
+ export interface ObservabilityPipelineConfigProcessorsDedupe {
10949
+ /**
10950
+ * A list of log field paths to check for duplicates.
10951
+ */
10952
+ fields: pulumi.Input<pulumi.Input<string>[]>;
10953
+ /**
10954
+ * The unique identifier for this processor.
10955
+ */
10956
+ id: pulumi.Input<string>;
10957
+ /**
10958
+ * A Datadog search query used to determine which logs this processor targets.
10959
+ */
10960
+ include: pulumi.Input<string>;
10961
+ /**
10962
+ * A list of component IDs whose output is used as the input for this processor.
10963
+ */
10964
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10965
+ /**
10966
+ * The deduplication mode to apply to the fields.
10967
+ */
10968
+ mode: pulumi.Input<string>;
10969
+ }
10970
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTable {
10971
+ /**
10972
+ * Defines a static enrichment table loaded from a CSV file.
10973
+ */
10974
+ file?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsEnrichmentTableFile>;
10975
+ /**
10976
+ * Uses a GeoIP database to enrich logs based on an IP field.
10977
+ */
10978
+ geoip?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsEnrichmentTableGeoip>;
10979
+ /**
10980
+ * The unique identifier for this processor.
10981
+ */
10982
+ id: pulumi.Input<string>;
10983
+ /**
10984
+ * A Datadog search query used to determine which logs this processor targets.
10985
+ */
10986
+ include: pulumi.Input<string>;
10987
+ /**
10988
+ * A list of component IDs whose output is used as the input for this processor.
10989
+ */
10990
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
10991
+ /**
10992
+ * Path where enrichment results should be stored in the log.
10993
+ */
10994
+ target: pulumi.Input<string>;
10995
+ }
10996
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTableFile {
10997
+ encoding?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsEnrichmentTableFileEncoding>;
10998
+ /**
10999
+ * Key fields used to look up enrichment values.
11000
+ */
11001
+ keys?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsEnrichmentTableFileKey>[]>;
11002
+ /**
11003
+ * Path to the CSV file.
11004
+ */
11005
+ path?: pulumi.Input<string>;
11006
+ /**
11007
+ * Schema defining column names and their types.
11008
+ */
11009
+ schemas?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsEnrichmentTableFileSchema>[]>;
11010
+ }
11011
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTableFileEncoding {
11012
+ /**
11013
+ * The `encoding` `delimiter`.
11014
+ */
11015
+ delimiter?: pulumi.Input<string>;
11016
+ /**
11017
+ * The `encoding` `includesHeaders`.
11018
+ */
11019
+ includesHeaders?: pulumi.Input<boolean>;
11020
+ /**
11021
+ * File encoding format.
11022
+ */
11023
+ type?: pulumi.Input<string>;
11024
+ }
11025
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTableFileKey {
11026
+ /**
11027
+ * The `items` `column`.
11028
+ */
11029
+ column?: pulumi.Input<string>;
11030
+ /**
11031
+ * The comparison method (e.g. equals).
11032
+ */
11033
+ comparison?: pulumi.Input<string>;
11034
+ /**
11035
+ * The `items` `field`.
11036
+ */
11037
+ field?: pulumi.Input<string>;
11038
+ }
11039
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTableFileSchema {
11040
+ /**
11041
+ * The `items` `column`.
11042
+ */
11043
+ column?: pulumi.Input<string>;
11044
+ /**
11045
+ * The type of the column (e.g. string, boolean, integer, etc.).
11046
+ */
11047
+ type?: pulumi.Input<string>;
11048
+ }
11049
+ export interface ObservabilityPipelineConfigProcessorsEnrichmentTableGeoip {
11050
+ /**
11051
+ * Path to the IP field in the log.
11052
+ */
11053
+ keyField?: pulumi.Input<string>;
11054
+ /**
11055
+ * Locale used to resolve geographical names.
11056
+ */
11057
+ locale?: pulumi.Input<string>;
11058
+ /**
11059
+ * Path to the GeoIP database file.
11060
+ */
11061
+ path?: pulumi.Input<string>;
11062
+ }
11063
+ export interface ObservabilityPipelineConfigProcessorsFilter {
11064
+ /**
11065
+ * The unique ID of the processor.
11066
+ */
11067
+ id: pulumi.Input<string>;
11068
+ /**
11069
+ * 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.
11070
+ */
11071
+ include: pulumi.Input<string>;
11072
+ /**
11073
+ * The inputs for the processor.
11074
+ */
11075
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11076
+ }
11077
+ export interface ObservabilityPipelineConfigProcessorsGenerateDatadogMetric {
11078
+ /**
11079
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline.
11080
+ */
11081
+ id: pulumi.Input<string>;
11082
+ /**
11083
+ * A Datadog search query used to determine which logs this processor targets.
11084
+ */
11085
+ include: pulumi.Input<string>;
11086
+ /**
11087
+ * A list of component IDs whose output is used as the `input` for this processor.
11088
+ */
11089
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11090
+ /**
11091
+ * Configuration for generating individual metrics.
11092
+ */
11093
+ metrics?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsGenerateDatadogMetricMetric>[]>;
11094
+ }
11095
+ export interface ObservabilityPipelineConfigProcessorsGenerateDatadogMetricMetric {
11096
+ /**
11097
+ * Optional fields used to group the metric series.
11098
+ */
11099
+ groupBies?: pulumi.Input<pulumi.Input<string>[]>;
11100
+ /**
11101
+ * Datadog filter query to match logs for metric generation.
11102
+ */
11103
+ include: pulumi.Input<string>;
11104
+ /**
11105
+ * Type of metric to create.
11106
+ */
11107
+ metricType: pulumi.Input<string>;
11108
+ /**
11109
+ * Name of the custom metric to be created.
11110
+ */
11111
+ name: pulumi.Input<string>;
11112
+ /**
11113
+ * Specifies how the value of the generated metric is computed.
11114
+ */
11115
+ value?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsGenerateDatadogMetricMetricValue>;
11116
+ }
11117
+ export interface ObservabilityPipelineConfigProcessorsGenerateDatadogMetricMetricValue {
11118
+ /**
11119
+ * Name of the log field containing the numeric value to increment the metric by (used only for `incrementByField`).
11120
+ */
11121
+ field?: pulumi.Input<string>;
11122
+ /**
11123
+ * Metric value strategy: `incrementByOne` or `incrementByField`.
11124
+ */
11125
+ strategy: pulumi.Input<string>;
11126
+ }
11127
+ export interface ObservabilityPipelineConfigProcessorsOcsfMapper {
11128
+ /**
11129
+ * The unique identifier for this component.
11130
+ */
11131
+ id: pulumi.Input<string>;
11132
+ /**
11133
+ * Search query to select logs.
11134
+ */
11135
+ include: pulumi.Input<string>;
11136
+ /**
11137
+ * List of component IDs whose output is used as input.
11138
+ */
11139
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11140
+ /**
11141
+ * List of OCSF mapping entries using library mapping.
11142
+ */
11143
+ mappings?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsOcsfMapperMapping>[]>;
11144
+ }
11145
+ export interface ObservabilityPipelineConfigProcessorsOcsfMapperMapping {
11146
+ /**
11147
+ * Search query for selecting which logs the mapping applies to.
11148
+ */
11149
+ include: pulumi.Input<string>;
11150
+ /**
11151
+ * Predefined library mapping for log transformation.
11152
+ */
11153
+ libraryMapping: pulumi.Input<string>;
11154
+ }
11155
+ export interface ObservabilityPipelineConfigProcessorsParseGrok {
11156
+ /**
11157
+ * If set to `true`, disables the default Grok rules provided by Datadog.
11158
+ */
11159
+ disableLibraryRules?: pulumi.Input<boolean>;
11160
+ /**
11161
+ * A unique identifier for this processor.
11162
+ */
11163
+ id: pulumi.Input<string>;
11164
+ /**
11165
+ * A Datadog search query used to determine which logs this processor targets.
11166
+ */
11167
+ include: pulumi.Input<string>;
11168
+ /**
11169
+ * A list of component IDs whose output is used as the `input` for this component.
11170
+ */
11171
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11172
+ /**
11173
+ * The list of Grok parsing rules. If multiple parsing rules are provided, they are evaluated in order. The first successful match is applied.
11174
+ */
11175
+ rules?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsParseGrokRule>[]>;
11176
+ }
11177
+ export interface ObservabilityPipelineConfigProcessorsParseGrokRule {
11178
+ /**
11179
+ * 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.
11180
+ */
11181
+ matchRules?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsParseGrokRuleMatchRule>[]>;
11182
+ /**
11183
+ * The name of the field in the log event to apply the Grok rules to.
11184
+ */
11185
+ source: pulumi.Input<string>;
11186
+ /**
11187
+ * A list of helper Grok rules that can be referenced by the parsing rules.
11188
+ */
11189
+ supportRules?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsParseGrokRuleSupportRule>[]>;
11190
+ }
11191
+ export interface ObservabilityPipelineConfigProcessorsParseGrokRuleMatchRule {
11192
+ /**
11193
+ * The name of the rule.
11194
+ */
11195
+ name: pulumi.Input<string>;
11196
+ /**
11197
+ * The definition of the Grok rule.
11198
+ */
11199
+ rule: pulumi.Input<string>;
11200
+ }
11201
+ export interface ObservabilityPipelineConfigProcessorsParseGrokRuleSupportRule {
11202
+ /**
11203
+ * The name of the helper Grok rule.
11204
+ */
11205
+ name: pulumi.Input<string>;
11206
+ /**
11207
+ * The definition of the helper Grok rule.
11208
+ */
11209
+ rule: pulumi.Input<string>;
11210
+ }
11211
+ export interface ObservabilityPipelineConfigProcessorsParseJson {
11212
+ /**
11213
+ * The field to parse.
11214
+ */
11215
+ field: pulumi.Input<string>;
11216
+ /**
11217
+ * The unique ID of the processor.
11218
+ */
11219
+ id: pulumi.Input<string>;
11220
+ /**
11221
+ * A Datadog search query used to determine which logs this processor targets.
11222
+ */
11223
+ include: pulumi.Input<string>;
11224
+ /**
11225
+ * The inputs for the processor.
11226
+ */
11227
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11228
+ }
11229
+ export interface ObservabilityPipelineConfigProcessorsQuota {
11230
+ /**
11231
+ * Whether to drop events exceeding the limit.
11232
+ */
11233
+ dropEvents: pulumi.Input<boolean>;
11234
+ /**
11235
+ * The unique ID of the processor.
11236
+ */
11237
+ id: pulumi.Input<string>;
11238
+ /**
11239
+ * Whether to ignore when partition fields are missing.
11240
+ */
11241
+ ignoreWhenMissingPartitions?: pulumi.Input<boolean>;
11242
+ /**
11243
+ * A Datadog search query used to determine which logs this processor targets.
11244
+ */
11245
+ include: pulumi.Input<string>;
11246
+ /**
11247
+ * The inputs for the processor.
11248
+ */
11249
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11250
+ limit?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsQuotaLimit>;
11251
+ /**
11252
+ * The name of the quota.
11253
+ */
11254
+ name: pulumi.Input<string>;
11255
+ /**
11256
+ * The action to take when the quota is exceeded: `drop`, `noAction`, or `overflowRouting`.
11257
+ */
11258
+ overflowAction?: pulumi.Input<string>;
11259
+ /**
11260
+ * The overrides for field-specific quotas.
11261
+ */
11262
+ overrides?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsQuotaOverride>[]>;
11263
+ /**
11264
+ * List of partition fields.
11265
+ */
11266
+ partitionFields?: pulumi.Input<pulumi.Input<string>[]>;
11267
+ }
11268
+ export interface ObservabilityPipelineConfigProcessorsQuotaLimit {
11269
+ /**
11270
+ * Whether to enforce by 'bytes' or 'events'. Valid values are `bytes`, `events`.
11271
+ */
11272
+ enforce: pulumi.Input<string>;
11273
+ /**
11274
+ * The daily quota limit.
11275
+ */
11276
+ limit: pulumi.Input<number>;
11277
+ }
11278
+ export interface ObservabilityPipelineConfigProcessorsQuotaOverride {
11279
+ /**
11280
+ * Fields that trigger this override.
11281
+ */
11282
+ fields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsQuotaOverrideField>[]>;
11283
+ limit?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsQuotaOverrideLimit>;
11284
+ }
11285
+ export interface ObservabilityPipelineConfigProcessorsQuotaOverrideField {
11286
+ /**
11287
+ * The field name.
11288
+ */
11289
+ name: pulumi.Input<string>;
11290
+ /**
11291
+ * The field value.
11292
+ */
11293
+ value: pulumi.Input<string>;
11294
+ }
11295
+ export interface ObservabilityPipelineConfigProcessorsQuotaOverrideLimit {
11296
+ /**
11297
+ * Whether to enforce by 'bytes' or 'events'. Valid values are `bytes`, `events`.
11298
+ */
11299
+ enforce: pulumi.Input<string>;
11300
+ /**
11301
+ * The daily quota limit.
11302
+ */
11303
+ limit: pulumi.Input<number>;
11304
+ }
11305
+ export interface ObservabilityPipelineConfigProcessorsReduce {
11306
+ /**
11307
+ * A list of fields used to group log events for merging.
11308
+ */
11309
+ groupBies: pulumi.Input<pulumi.Input<string>[]>;
11310
+ /**
11311
+ * The unique identifier for this processor.
11312
+ */
11313
+ id: pulumi.Input<string>;
11314
+ /**
11315
+ * A Datadog search query used to determine which logs this processor targets.
11316
+ */
11317
+ include: pulumi.Input<string>;
11318
+ /**
11319
+ * A list of component IDs whose output is used as the input for this processor.
11320
+ */
11321
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11322
+ /**
11323
+ * List of merge strategies defining how values from grouped events should be combined.
11324
+ */
11325
+ mergeStrategies?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsReduceMergeStrategy>[]>;
11326
+ }
11327
+ export interface ObservabilityPipelineConfigProcessorsReduceMergeStrategy {
11328
+ /**
11329
+ * The field path in the log event.
11330
+ */
11331
+ path: pulumi.Input<string>;
11332
+ /**
11333
+ * The merge strategy to apply.
11334
+ */
11335
+ strategy: pulumi.Input<string>;
11336
+ }
11337
+ export interface ObservabilityPipelineConfigProcessorsRemoveField {
11338
+ /**
11339
+ * List of fields to remove from the events.
11340
+ */
11341
+ fields: pulumi.Input<pulumi.Input<string>[]>;
11342
+ /**
11343
+ * The unique ID of the processor.
11344
+ */
11345
+ id: pulumi.Input<string>;
11346
+ /**
11347
+ * A Datadog search query used to determine which logs this processor targets.
11348
+ */
11349
+ include: pulumi.Input<string>;
11350
+ /**
11351
+ * The inputs for the processor.
11352
+ */
11353
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11354
+ }
11355
+ export interface ObservabilityPipelineConfigProcessorsRenameField {
11356
+ /**
11357
+ * List of fields to rename.
11358
+ */
11359
+ fields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsRenameFieldField>[]>;
11360
+ /**
11361
+ * The unique ID of the processor.
11362
+ */
11363
+ id: pulumi.Input<string>;
11364
+ /**
11365
+ * A Datadog search query used to determine which logs this processor targets.
11366
+ */
11367
+ include: pulumi.Input<string>;
11368
+ /**
11369
+ * The inputs for the processor.
11370
+ */
11371
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11372
+ }
11373
+ export interface ObservabilityPipelineConfigProcessorsRenameFieldField {
11374
+ /**
11375
+ * Destination field name.
11376
+ */
11377
+ destination: pulumi.Input<string>;
11378
+ /**
11379
+ * Whether to keep the original field.
11380
+ */
11381
+ preserveSource: pulumi.Input<boolean>;
11382
+ /**
11383
+ * Source field to rename.
11384
+ */
11385
+ source: pulumi.Input<string>;
11386
+ }
11387
+ export interface ObservabilityPipelineConfigProcessorsSample {
11388
+ /**
11389
+ * 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).
11390
+ */
11391
+ id: pulumi.Input<string>;
11392
+ /**
11393
+ * A Datadog search query used to determine which logs this processor targets.
11394
+ */
11395
+ include: pulumi.Input<string>;
11396
+ /**
11397
+ * A list of component IDs whose output is used as the `input` for this component.
11398
+ */
11399
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11400
+ /**
11401
+ * The percentage of logs to sample.
11402
+ */
11403
+ percentage?: pulumi.Input<number>;
11404
+ /**
11405
+ * Number of events to sample (1 in N).
11406
+ */
11407
+ rate?: pulumi.Input<number>;
11408
+ }
11409
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScanner {
11410
+ /**
11411
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
11412
+ */
11413
+ id: pulumi.Input<string>;
11414
+ /**
11415
+ * A Datadog search query used to determine which logs this processor targets.
11416
+ */
11417
+ include: pulumi.Input<string>;
11418
+ /**
11419
+ * A list of component IDs whose output is used as the `input` for this component.
11420
+ */
11421
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11422
+ /**
11423
+ * A list of rules for identifying and acting on sensitive data patterns.
11424
+ */
11425
+ rules?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRule>[]>;
11426
+ }
11427
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRule {
11428
+ /**
11429
+ * Keyword-based proximity matching for sensitive data.
11430
+ */
11431
+ keywordOptions?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleKeywordOptions>;
11432
+ /**
11433
+ * A name identifying the rule.
11434
+ */
11435
+ name?: pulumi.Input<string>;
11436
+ /**
11437
+ * The action to take when a sensitive value is found.
11438
+ */
11439
+ onMatch?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatch>;
11440
+ /**
11441
+ * Pattern detection configuration for identifying sensitive data using either a custom regex or a library reference.
11442
+ */
11443
+ pattern?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePattern>;
11444
+ /**
11445
+ * Field-level targeting options that determine where the scanner should operate.
11446
+ */
11447
+ scope?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScope>;
11448
+ /**
11449
+ * Tags assigned to this rule for filtering and classification.
11450
+ */
11451
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
11452
+ }
11453
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleKeywordOptions {
11454
+ /**
11455
+ * A list of keywords to match near the sensitive pattern.
11456
+ */
11457
+ keywords?: pulumi.Input<pulumi.Input<string>[]>;
11458
+ /**
11459
+ * Maximum number of tokens between a keyword and a sensitive value match.
11460
+ */
11461
+ proximity?: pulumi.Input<number>;
11462
+ }
11463
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatch {
11464
+ /**
11465
+ * Hashes the matched value.
11466
+ */
11467
+ hash?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchHash>;
11468
+ /**
11469
+ * Redacts part of the matched value (e.g., keep last 4 characters).
11470
+ */
11471
+ partialRedact?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchPartialRedact>;
11472
+ /**
11473
+ * Redacts the matched value.
11474
+ */
11475
+ redact?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchRedact>;
11476
+ }
11477
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchHash {
11478
+ }
11479
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchPartialRedact {
11480
+ /**
11481
+ * Number of characters to keep.
11482
+ */
11483
+ characters?: pulumi.Input<number>;
11484
+ /**
11485
+ * Direction from which to keep characters: `first` or `last`.
11486
+ */
11487
+ direction?: pulumi.Input<string>;
11488
+ }
11489
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleOnMatchRedact {
11490
+ /**
11491
+ * Replacement string for redacted values (e.g., `***`).
11492
+ */
11493
+ replace?: pulumi.Input<string>;
11494
+ }
11495
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePattern {
11496
+ /**
11497
+ * Pattern detection using a custom regular expression.
11498
+ */
11499
+ custom?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePatternCustom>;
11500
+ /**
11501
+ * Pattern detection using a predefined pattern from the sensitive data scanner pattern library.
11502
+ */
11503
+ library?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePatternLibrary>;
11504
+ }
11505
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePatternCustom {
11506
+ /**
11507
+ * A regular expression used to detect sensitive values. Must be a valid regex.
11508
+ */
11509
+ rule?: pulumi.Input<string>;
11510
+ }
11511
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRulePatternLibrary {
11512
+ /**
11513
+ * Identifier for a predefined pattern from the sensitive data scanner pattern library.
11514
+ */
11515
+ id?: pulumi.Input<string>;
11516
+ /**
11517
+ * Whether to augment the pattern with recommended keywords (optional).
11518
+ */
11519
+ useRecommendedKeywords?: pulumi.Input<boolean>;
11520
+ }
11521
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScope {
11522
+ /**
11523
+ * Scan all fields.
11524
+ */
11525
+ all?: pulumi.Input<boolean>;
11526
+ /**
11527
+ * Explicitly exclude these fields from scanning.
11528
+ */
11529
+ exclude?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScopeExclude>;
11530
+ /**
11531
+ * Explicitly include these fields for scanning.
11532
+ */
11533
+ include?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScopeInclude>;
11534
+ }
11535
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScopeExclude {
11536
+ /**
11537
+ * The fields to exclude from scanning.
11538
+ */
11539
+ fields?: pulumi.Input<pulumi.Input<string>[]>;
11540
+ }
11541
+ export interface ObservabilityPipelineConfigProcessorsSensitiveDataScannerRuleScopeInclude {
11542
+ /**
11543
+ * The fields to include in scanning.
11544
+ */
11545
+ fields?: pulumi.Input<pulumi.Input<string>[]>;
11546
+ }
11547
+ export interface ObservabilityPipelineConfigProcessorsThrottle {
11548
+ /**
11549
+ * Optional list of fields used to group events before applying throttling.
11550
+ */
11551
+ groupBies?: pulumi.Input<pulumi.Input<string>[]>;
11552
+ /**
11553
+ * The unique identifier for this processor.
11554
+ */
11555
+ id: pulumi.Input<string>;
11556
+ /**
11557
+ * A Datadog search query used to determine which logs this processor targets.
11558
+ */
11559
+ include: pulumi.Input<string>;
11560
+ /**
11561
+ * A list of component IDs whose output is used as the input for this processor.
11562
+ */
11563
+ inputs: pulumi.Input<pulumi.Input<string>[]>;
11564
+ /**
11565
+ * The number of events to allow before throttling is applied.
11566
+ */
11567
+ threshold: pulumi.Input<number>;
11568
+ /**
11569
+ * The time window in seconds over which the threshold applies.
11570
+ */
11571
+ window: pulumi.Input<number>;
11572
+ }
11573
+ export interface ObservabilityPipelineConfigSources {
11574
+ /**
11575
+ * The `amazonDataFirehose` source ingests logs from AWS Data Firehose.
11576
+ */
11577
+ amazonDataFirehoses?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesAmazonDataFirehose>[]>;
11578
+ /**
11579
+ * The `amazonS3` source ingests logs from an Amazon S3 bucket. It supports AWS authentication and TLS encryption.
11580
+ */
11581
+ amazonS3s?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesAmazonS3>[]>;
11582
+ /**
11583
+ * The `datadogAgent` source collects logs from the Datadog Agent.
11584
+ */
11585
+ datadogAgents?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesDatadogAgent>[]>;
11586
+ /**
11587
+ * The `fluent` source ingests logs from Fluent Bit.
11588
+ */
11589
+ fluentBits?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesFluentBit>[]>;
11590
+ /**
11591
+ * The `fluent` source ingests logs from a Fluentd-compatible service.
11592
+ */
11593
+ fluentds?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesFluentd>[]>;
11594
+ /**
11595
+ * The `googlePubsub` source ingests logs from a Google Cloud Pub/Sub subscription.
11596
+ */
11597
+ googlePubsubs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesGooglePubsub>[]>;
11598
+ /**
11599
+ * The `httpClient` source scrapes logs from HTTP endpoints at regular intervals.
11600
+ */
11601
+ httpClients?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesHttpClient>[]>;
11602
+ /**
11603
+ * The `httpServer` source collects logs over HTTP POST from external services.
11604
+ */
11605
+ httpServers?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesHttpServer>[]>;
11606
+ /**
11607
+ * The `kafka` source ingests data from Apache Kafka topics.
11608
+ */
11609
+ kafkas?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesKafka>[]>;
11610
+ /**
11611
+ * The `logstash` source ingests logs from a Logstash forwarder.
11612
+ */
11613
+ logstashes?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesLogstash>[]>;
11614
+ /**
11615
+ * The `rsyslog` source listens for logs over TCP or UDP from an `rsyslog` server using the syslog protocol.
11616
+ */
11617
+ rsyslogs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesRsyslog>[]>;
11618
+ /**
11619
+ * The `splunkHec` source implements the Splunk HTTP Event Collector (HEC) API.
11620
+ */
11621
+ splunkHecs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesSplunkHec>[]>;
11622
+ /**
11623
+ * The `splunkTcp` source receives logs from a Splunk Universal Forwarder over TCP. TLS is supported for secure transmission.
11624
+ */
11625
+ splunkTcps?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesSplunkTcp>[]>;
11626
+ /**
11627
+ * The `sumoLogic` source receives logs from Sumo Logic collectors.
11628
+ */
11629
+ sumoLogics?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesSumoLogic>[]>;
11630
+ /**
11631
+ * The `syslogNg` source listens for logs over TCP or UDP from a `syslog-ng` server using the syslog protocol.
11632
+ */
11633
+ syslogNgs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesSyslogNg>[]>;
11634
+ }
11635
+ export interface ObservabilityPipelineConfigSourcesAmazonDataFirehose {
11636
+ /**
11637
+ * 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).
11638
+ */
11639
+ auth?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesAmazonDataFirehoseAuth>;
11640
+ /**
11641
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
11642
+ */
11643
+ id: pulumi.Input<string>;
11644
+ /**
11645
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11646
+ */
11647
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesAmazonDataFirehoseTls>;
11648
+ }
11649
+ export interface ObservabilityPipelineConfigSourcesAmazonDataFirehoseAuth {
11650
+ /**
11651
+ * The Amazon Resource Name (ARN) of the role to assume.
11652
+ */
11653
+ assumeRole?: pulumi.Input<string>;
11654
+ /**
11655
+ * A unique identifier for cross-account role assumption.
11656
+ */
11657
+ externalId?: pulumi.Input<string>;
11658
+ /**
11659
+ * A session identifier used for logging and tracing the assumed role session.
11660
+ */
11661
+ sessionName?: pulumi.Input<string>;
11662
+ }
11663
+ export interface ObservabilityPipelineConfigSourcesAmazonDataFirehoseTls {
11664
+ /**
11665
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11666
+ */
11667
+ caFile?: pulumi.Input<string>;
11668
+ /**
11669
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11670
+ */
11671
+ crtFile?: pulumi.Input<string>;
11672
+ /**
11673
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11674
+ */
11675
+ keyFile?: pulumi.Input<string>;
11676
+ }
11677
+ export interface ObservabilityPipelineConfigSourcesAmazonS3 {
11678
+ /**
11679
+ * 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).
11680
+ */
11681
+ auth?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesAmazonS3Auth>;
11682
+ /**
11683
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
11684
+ */
11685
+ id: pulumi.Input<string>;
11686
+ /**
11687
+ * AWS region where the S3 bucket resides.
11688
+ */
11689
+ region: pulumi.Input<string>;
11690
+ /**
11691
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11692
+ */
11693
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesAmazonS3Tls>;
11694
+ }
11695
+ export interface ObservabilityPipelineConfigSourcesAmazonS3Auth {
11696
+ /**
11697
+ * The Amazon Resource Name (ARN) of the role to assume.
11698
+ */
11699
+ assumeRole?: pulumi.Input<string>;
11700
+ /**
11701
+ * A unique identifier for cross-account role assumption.
11702
+ */
11703
+ externalId?: pulumi.Input<string>;
11704
+ /**
11705
+ * A session identifier used for logging and tracing the assumed role session.
11706
+ */
11707
+ sessionName?: pulumi.Input<string>;
11708
+ }
11709
+ export interface ObservabilityPipelineConfigSourcesAmazonS3Tls {
11710
+ /**
11711
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11712
+ */
11713
+ caFile?: pulumi.Input<string>;
11714
+ /**
11715
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11716
+ */
11717
+ crtFile?: pulumi.Input<string>;
11718
+ /**
11719
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11720
+ */
11721
+ keyFile?: pulumi.Input<string>;
11722
+ }
11723
+ export interface ObservabilityPipelineConfigSourcesDatadogAgent {
11724
+ /**
11725
+ * The unique ID of the source.
11726
+ */
11727
+ id: pulumi.Input<string>;
11728
+ /**
11729
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11730
+ */
11731
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesDatadogAgentTls>;
11732
+ }
11733
+ export interface ObservabilityPipelineConfigSourcesDatadogAgentTls {
11734
+ /**
11735
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11736
+ */
11737
+ caFile?: pulumi.Input<string>;
11738
+ /**
11739
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11740
+ */
11741
+ crtFile?: pulumi.Input<string>;
11742
+ /**
11743
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11744
+ */
11745
+ keyFile?: pulumi.Input<string>;
11746
+ }
11747
+ export interface ObservabilityPipelineConfigSourcesFluentBit {
11748
+ /**
11749
+ * 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).
11750
+ */
11751
+ id: pulumi.Input<string>;
11752
+ /**
11753
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11754
+ */
11755
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesFluentBitTls>;
11756
+ }
11757
+ export interface ObservabilityPipelineConfigSourcesFluentBitTls {
11758
+ /**
11759
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11760
+ */
11761
+ caFile?: pulumi.Input<string>;
11762
+ /**
11763
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11764
+ */
11765
+ crtFile?: pulumi.Input<string>;
11766
+ /**
11767
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11768
+ */
11769
+ keyFile?: pulumi.Input<string>;
11770
+ }
11771
+ export interface ObservabilityPipelineConfigSourcesFluentd {
11772
+ /**
11773
+ * 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).
11774
+ */
11775
+ id: pulumi.Input<string>;
11776
+ /**
11777
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11778
+ */
11779
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesFluentdTls>;
11780
+ }
11781
+ export interface ObservabilityPipelineConfigSourcesFluentdTls {
11782
+ /**
11783
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11784
+ */
11785
+ caFile?: pulumi.Input<string>;
11786
+ /**
11787
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11788
+ */
11789
+ crtFile?: pulumi.Input<string>;
11790
+ /**
11791
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11792
+ */
11793
+ keyFile?: pulumi.Input<string>;
11794
+ }
11795
+ export interface ObservabilityPipelineConfigSourcesGooglePubsub {
11796
+ /**
11797
+ * GCP credentials used to authenticate with Google Cloud Storage.
11798
+ */
11799
+ auth?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesGooglePubsubAuth>;
11800
+ /**
11801
+ * The decoding format used to interpret incoming logs.
11802
+ */
11803
+ decoding: pulumi.Input<string>;
11804
+ /**
11805
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
11806
+ */
11807
+ id: pulumi.Input<string>;
11808
+ /**
11809
+ * The GCP project ID that owns the Pub/Sub subscription.
11810
+ */
11811
+ project: pulumi.Input<string>;
11812
+ /**
11813
+ * The Pub/Sub subscription name from which messages are consumed.
11814
+ */
11815
+ subscription: pulumi.Input<string>;
11816
+ /**
11817
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11818
+ */
11819
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesGooglePubsubTls>;
11820
+ }
11821
+ export interface ObservabilityPipelineConfigSourcesGooglePubsubAuth {
11822
+ /**
11823
+ * Path to the GCP service account key file.
11824
+ */
11825
+ credentialsFile: pulumi.Input<string>;
11826
+ }
11827
+ export interface ObservabilityPipelineConfigSourcesGooglePubsubTls {
11828
+ /**
11829
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11830
+ */
11831
+ caFile?: pulumi.Input<string>;
11832
+ /**
11833
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11834
+ */
11835
+ crtFile?: pulumi.Input<string>;
11836
+ /**
11837
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11838
+ */
11839
+ keyFile?: pulumi.Input<string>;
11840
+ }
11841
+ export interface ObservabilityPipelineConfigSourcesHttpClient {
11842
+ /**
11843
+ * Optional authentication strategy for HTTP requests.
11844
+ */
11845
+ authStrategy?: pulumi.Input<string>;
11846
+ /**
11847
+ * The decoding format used to interpret incoming logs.
11848
+ */
11849
+ decoding: pulumi.Input<string>;
11850
+ /**
11851
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
11852
+ */
11853
+ id: pulumi.Input<string>;
11854
+ /**
11855
+ * The interval (in seconds) between HTTP scrape requests.
11856
+ */
11857
+ scrapeIntervalSecs?: pulumi.Input<number>;
11858
+ /**
11859
+ * The timeout (in seconds) for each scrape request.
11860
+ */
11861
+ scrapeTimeoutSecs?: pulumi.Input<number>;
11862
+ /**
11863
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11864
+ */
11865
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesHttpClientTls>;
11866
+ }
11867
+ export interface ObservabilityPipelineConfigSourcesHttpClientTls {
11868
+ /**
11869
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11870
+ */
11871
+ caFile?: pulumi.Input<string>;
11872
+ /**
11873
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11874
+ */
11875
+ crtFile?: pulumi.Input<string>;
11876
+ /**
11877
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11878
+ */
11879
+ keyFile?: pulumi.Input<string>;
11880
+ }
11881
+ export interface ObservabilityPipelineConfigSourcesHttpServer {
11882
+ /**
11883
+ * HTTP authentication method. Valid values are `none`, `plain`.
11884
+ */
11885
+ authStrategy: pulumi.Input<string>;
11886
+ /**
11887
+ * The decoding format used to interpret incoming logs. Valid values are `json`, `gelf`, `syslog`, `bytes`.
11888
+ */
11889
+ decoding: pulumi.Input<string>;
11890
+ /**
11891
+ * Unique ID for the HTTP server source.
11892
+ */
11893
+ id: pulumi.Input<string>;
11894
+ /**
11895
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11896
+ */
11897
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesHttpServerTls>;
11898
+ }
11899
+ export interface ObservabilityPipelineConfigSourcesHttpServerTls {
11900
+ /**
11901
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
11902
+ */
11903
+ caFile?: pulumi.Input<string>;
11904
+ /**
11905
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
11906
+ */
11907
+ crtFile?: pulumi.Input<string>;
11908
+ /**
11909
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
11910
+ */
11911
+ keyFile?: pulumi.Input<string>;
11912
+ }
11913
+ export interface ObservabilityPipelineConfigSourcesKafka {
11914
+ /**
11915
+ * The Kafka consumer group ID.
11916
+ */
11917
+ groupId: pulumi.Input<string>;
11918
+ /**
11919
+ * The unique ID of the source.
11920
+ */
11921
+ id: pulumi.Input<string>;
11922
+ /**
11923
+ * Advanced librdkafka client configuration options.
11924
+ */
11925
+ librdkafkaOptions?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesKafkaLibrdkafkaOption>[]>;
11926
+ /**
11927
+ * SASL authentication settings.
11928
+ */
11929
+ sasl?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesKafkaSasl>;
11930
+ /**
11931
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
11932
+ */
11933
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesKafkaTls>;
11934
+ /**
11935
+ * A list of Kafka topic names to subscribe to. The source ingests messages from each topic specified.
11936
+ */
11937
+ topics: pulumi.Input<pulumi.Input<string>[]>;
11938
+ }
11939
+ export interface ObservabilityPipelineConfigSourcesKafkaLibrdkafkaOption {
11940
+ /**
11941
+ * The name of the librdkafka option.
11942
+ */
11943
+ name: pulumi.Input<string>;
11944
+ /**
11945
+ * The value of the librdkafka option.
11946
+ */
11947
+ value: pulumi.Input<string>;
11948
+ }
11949
+ export interface ObservabilityPipelineConfigSourcesKafkaSasl {
10350
11950
  /**
10351
- * List of destinations.
11951
+ * SASL mechanism to use (e.g., PLAIN, SCRAM-SHA-256, SCRAM-SHA-512). Valid values are `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`.
10352
11952
  */
10353
- destinations?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinations>;
11953
+ mechanism?: pulumi.Input<string>;
11954
+ }
11955
+ export interface ObservabilityPipelineConfigSourcesKafkaTls {
10354
11956
  /**
10355
- * List of processors.
11957
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
10356
11958
  */
10357
- processors?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessors>;
11959
+ caFile?: pulumi.Input<string>;
10358
11960
  /**
10359
- * List of sources.
11961
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
10360
11962
  */
10361
- sources?: pulumi.Input<inputs.ObservabilityPipelineConfigSources>;
10362
- }
10363
- export interface ObservabilityPipelineConfigDestinations {
11963
+ crtFile?: pulumi.Input<string>;
10364
11964
  /**
10365
- * The `datadogLogs` destination forwards logs to Datadog Log Management.
11965
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
10366
11966
  */
10367
- datadogLogs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsDatadogLog>[]>;
11967
+ keyFile?: pulumi.Input<string>;
10368
11968
  }
10369
- export interface ObservabilityPipelineConfigDestinationsDatadogLog {
11969
+ export interface ObservabilityPipelineConfigSourcesLogstash {
10370
11970
  /**
10371
- * The unique ID of the destination.
11971
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
10372
11972
  */
10373
11973
  id: pulumi.Input<string>;
10374
11974
  /**
10375
- * The inputs for the destination.
11975
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
10376
11976
  */
10377
- inputs: pulumi.Input<pulumi.Input<string>[]>;
11977
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesLogstashTls>;
10378
11978
  }
10379
- export interface ObservabilityPipelineConfigProcessors {
11979
+ export interface ObservabilityPipelineConfigSourcesLogstashTls {
10380
11980
  /**
10381
- * The `addFields` processor adds static key-value fields to logs.
11981
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
10382
11982
  */
10383
- addFields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsAddField>[]>;
11983
+ caFile?: pulumi.Input<string>;
10384
11984
  /**
10385
- * 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.
11985
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
10386
11986
  */
10387
- filters?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsFilter>[]>;
11987
+ crtFile?: pulumi.Input<string>;
10388
11988
  /**
10389
- * 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.
11989
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
10390
11990
  */
10391
- parseJsons?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsParseJson>[]>;
11991
+ keyFile?: pulumi.Input<string>;
11992
+ }
11993
+ export interface ObservabilityPipelineConfigSourcesRsyslog {
10392
11994
  /**
10393
- * 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.
11995
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
10394
11996
  */
10395
- quotas?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsQuota>[]>;
11997
+ id: pulumi.Input<string>;
10396
11998
  /**
10397
- * The `removeFields` processor deletes specified fields from logs.
11999
+ * Protocol used by the syslog source to receive messages.
10398
12000
  */
10399
- removeFields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsRemoveField>[]>;
12001
+ mode?: pulumi.Input<string>;
10400
12002
  /**
10401
- * The `renameFields` processor changes field names.
12003
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
10402
12004
  */
10403
- renameFields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsRenameField>[]>;
12005
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesRsyslogTls>;
10404
12006
  }
10405
- export interface ObservabilityPipelineConfigProcessorsAddField {
12007
+ export interface ObservabilityPipelineConfigSourcesRsyslogTls {
10406
12008
  /**
10407
- * A list of static fields (key-value pairs) that is added to each log event processed by this component.
10408
- */
10409
- fields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsAddFieldField>[]>;
10410
- /**
10411
- * The unique ID of the processor.
12009
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
10412
12010
  */
10413
- id: pulumi.Input<string>;
12011
+ caFile?: pulumi.Input<string>;
10414
12012
  /**
10415
- * A Datadog search query used to determine which logs this processor targets.
12013
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
10416
12014
  */
10417
- include: pulumi.Input<string>;
12015
+ crtFile?: pulumi.Input<string>;
10418
12016
  /**
10419
- * The inputs for the processor.
12017
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
10420
12018
  */
10421
- inputs: pulumi.Input<pulumi.Input<string>[]>;
12019
+ keyFile?: pulumi.Input<string>;
10422
12020
  }
10423
- export interface ObservabilityPipelineConfigProcessorsAddFieldField {
12021
+ export interface ObservabilityPipelineConfigSourcesSplunkHec {
10424
12022
  /**
10425
- * The field name to add.
12023
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
10426
12024
  */
10427
- name: pulumi.Input<string>;
12025
+ id: pulumi.Input<string>;
10428
12026
  /**
10429
- * The value to assign to the field.
12027
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
10430
12028
  */
10431
- value: pulumi.Input<string>;
12029
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesSplunkHecTls>;
10432
12030
  }
10433
- export interface ObservabilityPipelineConfigProcessorsFilter {
12031
+ export interface ObservabilityPipelineConfigSourcesSplunkHecTls {
10434
12032
  /**
10435
- * The unique ID of the processor.
12033
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
10436
12034
  */
10437
- id: pulumi.Input<string>;
12035
+ caFile?: pulumi.Input<string>;
10438
12036
  /**
10439
- * 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.
12037
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
10440
12038
  */
10441
- include: pulumi.Input<string>;
12039
+ crtFile?: pulumi.Input<string>;
10442
12040
  /**
10443
- * The inputs for the processor.
12041
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
10444
12042
  */
10445
- inputs: pulumi.Input<pulumi.Input<string>[]>;
12043
+ keyFile?: pulumi.Input<string>;
10446
12044
  }
10447
- export interface ObservabilityPipelineConfigProcessorsParseJson {
12045
+ export interface ObservabilityPipelineConfigSourcesSplunkTcp {
10448
12046
  /**
10449
- * The field to parse.
12047
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
10450
12048
  */
10451
- field: pulumi.Input<string>;
12049
+ id: pulumi.Input<string>;
10452
12050
  /**
10453
- * The unique ID of the processor.
12051
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
10454
12052
  */
10455
- id: pulumi.Input<string>;
12053
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesSplunkTcpTls>;
12054
+ }
12055
+ export interface ObservabilityPipelineConfigSourcesSplunkTcpTls {
10456
12056
  /**
10457
- * A Datadog search query used to determine which logs this processor targets.
12057
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
10458
12058
  */
10459
- include: pulumi.Input<string>;
12059
+ caFile?: pulumi.Input<string>;
10460
12060
  /**
10461
- * The inputs for the processor.
12061
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
10462
12062
  */
10463
- inputs: pulumi.Input<pulumi.Input<string>[]>;
10464
- }
10465
- export interface ObservabilityPipelineConfigProcessorsQuota {
12063
+ crtFile?: pulumi.Input<string>;
10466
12064
  /**
10467
- * Whether to drop events exceeding the limit.
12065
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
10468
12066
  */
10469
- dropEvents: pulumi.Input<boolean>;
12067
+ keyFile?: pulumi.Input<string>;
12068
+ }
12069
+ export interface ObservabilityPipelineConfigSourcesSumoLogic {
10470
12070
  /**
10471
- * The unique ID of the processor.
12071
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
10472
12072
  */
10473
12073
  id: pulumi.Input<string>;
12074
+ }
12075
+ export interface ObservabilityPipelineConfigSourcesSyslogNg {
10474
12076
  /**
10475
- * Whether to ignore when partition fields are missing.
12077
+ * The unique identifier for this component. Used to reference this component in other parts of the pipeline (e.g., as input to downstream components).
10476
12078
  */
10477
- ignoreWhenMissingPartitions?: pulumi.Input<boolean>;
12079
+ id: pulumi.Input<string>;
10478
12080
  /**
10479
- * A Datadog search query used to determine which logs this processor targets.
12081
+ * Protocol used by the syslog source to receive messages.
10480
12082
  */
10481
- include: pulumi.Input<string>;
12083
+ mode?: pulumi.Input<string>;
10482
12084
  /**
10483
- * The inputs for the processor.
12085
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
10484
12086
  */
10485
- inputs: pulumi.Input<pulumi.Input<string>[]>;
10486
- limit?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsQuotaLimit>;
12087
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesSyslogNgTls>;
12088
+ }
12089
+ export interface ObservabilityPipelineConfigSourcesSyslogNgTls {
10487
12090
  /**
10488
- * The name of the quota.
12091
+ * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
10489
12092
  */
10490
- name: pulumi.Input<string>;
12093
+ caFile?: pulumi.Input<string>;
10491
12094
  /**
10492
- * The overrides for field-specific quotas.
12095
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
10493
12096
  */
10494
- overrides?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsQuotaOverride>[]>;
12097
+ crtFile?: pulumi.Input<string>;
10495
12098
  /**
10496
- * List of partition fields.
12099
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
10497
12100
  */
10498
- partitionFields?: pulumi.Input<pulumi.Input<string>[]>;
12101
+ keyFile?: pulumi.Input<string>;
10499
12102
  }
10500
- export interface ObservabilityPipelineConfigProcessorsQuotaLimit {
12103
+ export interface OnCallEscalationPolicyStep {
10501
12104
  /**
10502
- * Whether to enforce by 'bytes' or 'events'. Valid values are `bytes`, `events`.
12105
+ * 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"`.
10503
12106
  */
10504
- enforce: pulumi.Input<string>;
12107
+ assignment?: pulumi.Input<string>;
10505
12108
  /**
10506
- * The daily quota limit.
12109
+ * Defines how many seconds to wait before escalating to the next step. Value must be between 60 and 36000.
10507
12110
  */
10508
- limit: pulumi.Input<number>;
10509
- }
10510
- export interface ObservabilityPipelineConfigProcessorsQuotaOverride {
12111
+ escalateAfterSeconds: pulumi.Input<number>;
10511
12112
  /**
10512
- * Fields that trigger this override.
12113
+ * The ID of this step.
10513
12114
  */
10514
- fields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsQuotaOverrideField>[]>;
10515
- limit?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsQuotaOverrideLimit>;
10516
- }
10517
- export interface ObservabilityPipelineConfigProcessorsQuotaOverrideField {
12115
+ id?: pulumi.Input<string>;
10518
12116
  /**
10519
- * The field name.
12117
+ * List of targets for the step.
10520
12118
  */
10521
- name: pulumi.Input<string>;
12119
+ targets?: pulumi.Input<pulumi.Input<inputs.OnCallEscalationPolicyStepTarget>[]>;
12120
+ }
12121
+ export interface OnCallEscalationPolicyStepTarget {
10522
12122
  /**
10523
- * The field value.
12123
+ * Targeted schedule ID.
10524
12124
  */
10525
- value: pulumi.Input<string>;
10526
- }
10527
- export interface ObservabilityPipelineConfigProcessorsQuotaOverrideLimit {
12125
+ schedule?: pulumi.Input<string>;
10528
12126
  /**
10529
- * Whether to enforce by 'bytes' or 'events'. Valid values are `bytes`, `events`.
12127
+ * Targeted team ID.
10530
12128
  */
10531
- enforce: pulumi.Input<string>;
12129
+ team?: pulumi.Input<string>;
10532
12130
  /**
10533
- * The daily quota limit.
12131
+ * Targeted user ID.
10534
12132
  */
10535
- limit: pulumi.Input<number>;
12133
+ user?: pulumi.Input<string>;
10536
12134
  }
10537
- export interface ObservabilityPipelineConfigProcessorsRemoveField {
12135
+ export interface OnCallScheduleLayer {
10538
12136
  /**
10539
- * List of fields to remove from the events.
12137
+ * The date/time when this layer should become active (in ISO 8601).
10540
12138
  */
10541
- fields: pulumi.Input<pulumi.Input<string>[]>;
12139
+ effectiveDate: pulumi.Input<string>;
10542
12140
  /**
10543
- * The unique ID of the processor.
12141
+ * The date/time after which this layer no longer applies (in ISO 8601).
10544
12142
  */
10545
- id: pulumi.Input<string>;
12143
+ endDate?: pulumi.Input<string>;
10546
12144
  /**
10547
- * A Datadog search query used to determine which logs this processor targets.
12145
+ * The ID of this layer.
10548
12146
  */
10549
- include: pulumi.Input<string>;
12147
+ id?: pulumi.Input<string>;
12148
+ interval?: pulumi.Input<inputs.OnCallScheduleLayerInterval>;
10550
12149
  /**
10551
- * The inputs for the processor.
12150
+ * The name of this layer. Should be unique within the schedule.
10552
12151
  */
10553
- inputs: pulumi.Input<pulumi.Input<string>[]>;
10554
- }
10555
- export interface ObservabilityPipelineConfigProcessorsRenameField {
12152
+ name: pulumi.Input<string>;
10556
12153
  /**
10557
- * List of fields to rename.
12154
+ * List of restrictions for the layer.
10558
12155
  */
10559
- fields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsRenameFieldField>[]>;
12156
+ restrictions?: pulumi.Input<pulumi.Input<inputs.OnCallScheduleLayerRestriction>[]>;
10560
12157
  /**
10561
- * The unique ID of the processor.
12158
+ * The date/time when the rotation for this layer starts (in ISO 8601).
10562
12159
  */
10563
- id: pulumi.Input<string>;
12160
+ rotationStart?: pulumi.Input<string>;
10564
12161
  /**
10565
- * A Datadog search query used to determine which logs this processor targets.
12162
+ * List of user IDs for the layer. Can either be a valid user id or null
10566
12163
  */
10567
- include: pulumi.Input<string>;
12164
+ users: pulumi.Input<pulumi.Input<string>[]>;
12165
+ }
12166
+ export interface OnCallScheduleLayerInterval {
10568
12167
  /**
10569
- * he inputs for the processor.
12168
+ * The number of full days in each rotation period.
10570
12169
  */
10571
- inputs: pulumi.Input<pulumi.Input<string>[]>;
10572
- }
10573
- export interface ObservabilityPipelineConfigProcessorsRenameFieldField {
12170
+ days?: pulumi.Input<number>;
10574
12171
  /**
10575
- * Destination field name.
12172
+ * For intervals that are not expressible in whole days, this will be added to `days`. Defaults to `0`.
10576
12173
  */
10577
- destination: pulumi.Input<string>;
12174
+ seconds?: pulumi.Input<number>;
12175
+ }
12176
+ export interface OnCallScheduleLayerRestriction {
10578
12177
  /**
10579
- * Whether to keep the original field.
12178
+ * The weekday when the restriction period ends. Valid values are `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`.
10580
12179
  */
10581
- preserveSource: pulumi.Input<boolean>;
12180
+ endDay?: pulumi.Input<string>;
10582
12181
  /**
10583
- * Source field to rename.
12182
+ * The time of day when the restriction ends (hh:mm:ss).
10584
12183
  */
10585
- source: pulumi.Input<string>;
10586
- }
10587
- export interface ObservabilityPipelineConfigSources {
12184
+ endTime?: pulumi.Input<string>;
10588
12185
  /**
10589
- * The `datadogAgent` source collects logs from the Datadog Agent.
12186
+ * The weekday when the restriction period starts. Valid values are `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`.
10590
12187
  */
10591
- datadogAgents?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesDatadogAgent>[]>;
12188
+ startDay?: pulumi.Input<string>;
10592
12189
  /**
10593
- * The `kafka` source ingests data from Apache Kafka topics.
12190
+ * The time of day when the restriction begins (hh:mm:ss).
10594
12191
  */
10595
- kafkas?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesKafka>[]>;
12192
+ startTime?: pulumi.Input<string>;
10596
12193
  }
10597
- export interface ObservabilityPipelineConfigSourcesDatadogAgent {
12194
+ export interface OnCallTeamRoutingRulesRule {
10598
12195
  /**
10599
- * The unique ID of the source.
12196
+ * Specifies the list of actions to perform when the routing rule is matched.
10600
12197
  */
10601
- id: pulumi.Input<string>;
12198
+ actions?: pulumi.Input<pulumi.Input<inputs.OnCallTeamRoutingRulesRuleAction>[]>;
10602
12199
  /**
10603
- * Configuration for enabling TLS encryption between the pipeline component and external services.
12200
+ * ID of the policy to be applied when this routing rule matches.
10604
12201
  */
10605
- tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesDatadogAgentTls>;
10606
- }
10607
- export interface ObservabilityPipelineConfigSourcesDatadogAgentTls {
12202
+ escalationPolicy?: pulumi.Input<string>;
10608
12203
  /**
10609
- * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12204
+ * The ID of this rule.
10610
12205
  */
10611
- caFile?: pulumi.Input<string>;
12206
+ id?: pulumi.Input<string>;
10612
12207
  /**
10613
- * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12208
+ * Defines the query or condition that triggers this routing rule. Defaults to `""`.
10614
12209
  */
10615
- crtFile: pulumi.Input<string>;
12210
+ query?: pulumi.Input<string>;
10616
12211
  /**
10617
- * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12212
+ * Holds time zone information and a list of time restrictions for a routing rule.
10618
12213
  */
10619
- keyFile?: pulumi.Input<string>;
10620
- }
10621
- export interface ObservabilityPipelineConfigSourcesKafka {
12214
+ timeRestrictions?: pulumi.Input<inputs.OnCallTeamRoutingRulesRuleTimeRestrictions>;
10622
12215
  /**
10623
- * The Kafka consumer group ID.
12216
+ * Defines the urgency for pages created via this rule. Only valid if `escalationPolicy` is set. Valid values are `high`, `low`, `dynamic`.
10624
12217
  */
10625
- groupId: pulumi.Input<string>;
12218
+ urgency?: pulumi.Input<string>;
12219
+ }
12220
+ export interface OnCallTeamRoutingRulesRuleAction {
12221
+ sendSlackMessage?: pulumi.Input<inputs.OnCallTeamRoutingRulesRuleActionSendSlackMessage>;
12222
+ sendTeamsMessage?: pulumi.Input<inputs.OnCallTeamRoutingRulesRuleActionSendTeamsMessage>;
12223
+ }
12224
+ export interface OnCallTeamRoutingRulesRuleActionSendSlackMessage {
10626
12225
  /**
10627
- * The unique ID of the source.
12226
+ * Slack channel ID.
10628
12227
  */
10629
- id: pulumi.Input<string>;
12228
+ channel?: pulumi.Input<string>;
10630
12229
  /**
10631
- * Advanced librdkafka client configuration options.
12230
+ * Slack workspace ID.
10632
12231
  */
10633
- librdkafkaOptions?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesKafkaLibrdkafkaOption>[]>;
12232
+ workspace?: pulumi.Input<string>;
12233
+ }
12234
+ export interface OnCallTeamRoutingRulesRuleActionSendTeamsMessage {
10634
12235
  /**
10635
- * SASL authentication settings.
12236
+ * Teams channel ID.
10636
12237
  */
10637
- sasl?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesKafkaSasl>;
12238
+ channel?: pulumi.Input<string>;
10638
12239
  /**
10639
- * Configuration for enabling TLS encryption between the pipeline component and external services.
12240
+ * Teams team ID.
10640
12241
  */
10641
- tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesKafkaTls>;
12242
+ team?: pulumi.Input<string>;
10642
12243
  /**
10643
- * A list of Kafka topic names to subscribe to. The source ingests messages from each topic specified.
12244
+ * Teams tenant ID.
10644
12245
  */
10645
- topics: pulumi.Input<pulumi.Input<string>[]>;
12246
+ tenant?: pulumi.Input<string>;
10646
12247
  }
10647
- export interface ObservabilityPipelineConfigSourcesKafkaLibrdkafkaOption {
12248
+ export interface OnCallTeamRoutingRulesRuleTimeRestrictions {
10648
12249
  /**
10649
- * The name of the librdkafka option.
12250
+ * List of restrictions for the rule.
10650
12251
  */
10651
- name: pulumi.Input<string>;
12252
+ restrictions?: pulumi.Input<pulumi.Input<inputs.OnCallTeamRoutingRulesRuleTimeRestrictionsRestriction>[]>;
10652
12253
  /**
10653
- * The value of the librdkafka option.
12254
+ * Specifies the time zone applicable to the restrictions, e.g. `America/New_York`.
10654
12255
  */
10655
- value: pulumi.Input<string>;
12256
+ timeZone?: pulumi.Input<string>;
10656
12257
  }
10657
- export interface ObservabilityPipelineConfigSourcesKafkaSasl {
12258
+ export interface OnCallTeamRoutingRulesRuleTimeRestrictionsRestriction {
10658
12259
  /**
10659
- * SASL mechanism to use (e.g., PLAIN, SCRAM-SHA-256, SCRAM-SHA-512). Valid values are `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`.
12260
+ * The weekday when the restriction period ends. Valid values are `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`.
10660
12261
  */
10661
- mechanism: pulumi.Input<string>;
10662
- }
10663
- export interface ObservabilityPipelineConfigSourcesKafkaTls {
12262
+ endDay?: pulumi.Input<string>;
10664
12263
  /**
10665
- * Path to the Certificate Authority (CA) file used to validate the server’s TLS certificate.
12264
+ * The time of day when the restriction ends (hh:mm:ss).
10666
12265
  */
10667
- caFile?: pulumi.Input<string>;
12266
+ endTime?: pulumi.Input<string>;
10668
12267
  /**
10669
- * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12268
+ * The weekday when the restriction period starts. Valid values are `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`.
10670
12269
  */
10671
- crtFile: pulumi.Input<string>;
12270
+ startDay?: pulumi.Input<string>;
10672
12271
  /**
10673
- * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12272
+ * The time of day when the restriction begins (hh:mm:ss).
10674
12273
  */
10675
- keyFile?: pulumi.Input<string>;
12274
+ startTime?: pulumi.Input<string>;
10676
12275
  }
10677
12276
  export interface OrganizationSettingsSettings {
10678
12277
  /**
@@ -14913,11 +16512,11 @@ export interface PowerpackWidgetListStreamDefinitionRequestColumn {
14913
16512
  /**
14914
16513
  * Widget column field.
14915
16514
  */
14916
- field: pulumi.Input<string>;
16515
+ field?: pulumi.Input<string>;
14917
16516
  /**
14918
16517
  * Widget column width. Valid values are `auto`, `compact`, `full`.
14919
16518
  */
14920
- width: pulumi.Input<string>;
16519
+ width?: pulumi.Input<string>;
14921
16520
  }
14922
16521
  export interface PowerpackWidgetListStreamDefinitionRequestQuery {
14923
16522
  /**
@@ -21891,6 +23490,10 @@ export interface PowerpackWidgetTraceServiceDefinition {
21891
23490
  titleSize?: pulumi.Input<string>;
21892
23491
  }
21893
23492
  export interface PowerpackWidgetTreemapDefinition {
23493
+ /**
23494
+ * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
23495
+ */
23496
+ customLinks?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetTreemapDefinitionCustomLink>[]>;
21894
23497
  /**
21895
23498
  * Nested block describing the request to use when displaying the widget.
21896
23499
  */
@@ -21900,6 +23503,24 @@ export interface PowerpackWidgetTreemapDefinition {
21900
23503
  */
21901
23504
  title?: pulumi.Input<string>;
21902
23505
  }
23506
+ export interface PowerpackWidgetTreemapDefinitionCustomLink {
23507
+ /**
23508
+ * The flag for toggling context menu link visibility.
23509
+ */
23510
+ isHidden?: pulumi.Input<boolean>;
23511
+ /**
23512
+ * The label for the custom link URL.
23513
+ */
23514
+ label?: pulumi.Input<string>;
23515
+ /**
23516
+ * The URL of the custom link.
23517
+ */
23518
+ link?: pulumi.Input<string>;
23519
+ /**
23520
+ * The label ID that refers to a context menu link item. When `overrideLabel` is provided, the client request omits the label field.
23521
+ */
23522
+ overrideLabel?: pulumi.Input<string>;
23523
+ }
21903
23524
  export interface PowerpackWidgetTreemapDefinitionRequest {
21904
23525
  formulas?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetTreemapDefinitionRequestFormula>[]>;
21905
23526
  queries?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetTreemapDefinitionRequestQuery>[]>;
@@ -22376,7 +23997,7 @@ export interface PowerpackWidgetWidgetLayout {
22376
23997
  }
22377
23998
  export interface ProviderDefaultTags {
22378
23999
  /**
22379
- * [Experimental - Logs Pipelines, Monitors and Security Monitoring Rules only] Resource tags to be applied by default across all resources.
24000
+ * [Experimental - Logs Pipelines, Monitors Security Monitoring Rules, and Service Level Objectives only] Resource tags to be applied by default across all resources.
22380
24001
  */
22381
24002
  tags?: pulumi.Input<{
22382
24003
  [key: string]: pulumi.Input<string>;
@@ -22620,7 +24241,7 @@ export interface SecurityMonitoringRuleQuery {
22620
24241
  */
22621
24242
  aggregation?: pulumi.Input<string>;
22622
24243
  /**
22623
- * Source of events. Valid values are `logs`, `audit`, `appSecSpans`, `spans`, `securityRuntime`, `network`. Defaults to `"logs"`.
24244
+ * Source of events. Valid values are `logs`, `audit`, `appSecSpans`, `spans`, `securityRuntime`, `network`, `events`. Defaults to `"logs"`.
22624
24245
  */
22625
24246
  dataSource?: pulumi.Input<string>;
22626
24247
  /**
@@ -23509,6 +25130,10 @@ export interface SyntheticsTestBrowserStepParams {
23509
25130
  * Type of click to use for a "click" step.
23510
25131
  */
23511
25132
  clickType?: pulumi.Input<string>;
25133
+ /**
25134
+ * 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.
25135
+ */
25136
+ clickWithJavascript?: pulumi.Input<boolean>;
23512
25137
  /**
23513
25138
  * Javascript code to use for the step.
23514
25139
  */