@pulumi/datadog 4.65.0-alpha.1769799992 → 4.65.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * Provides a Datadog Observability Pipeline resource. Observability Pipelines allows you to collect and process logs within your own infrastructure, and then route them to downstream integrations. This resource is in **Preview**. Reach out to Datadog support to enable it for your account.
5
+ * Provides a Datadog Observability Pipeline resource. Observability Pipelines allows you to collect and process logs within your own infrastructure, and then route them to downstream integrations.
6
6
  *
7
7
  * Datadog recommends using the `-parallelism=1` option to apply this resource.
8
8
  *
@@ -6,7 +6,7 @@ exports.ObservabilityPipeline = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * Provides a Datadog Observability Pipeline resource. Observability Pipelines allows you to collect and process logs within your own infrastructure, and then route them to downstream integrations. This resource is in **Preview**. Reach out to Datadog support to enable it for your account.
9
+ * Provides a Datadog Observability Pipeline resource. Observability Pipelines allows you to collect and process logs within your own infrastructure, and then route them to downstream integrations.
10
10
  *
11
11
  * Datadog recommends using the `-parallelism=1` option to apply this resource.
12
12
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/datadog",
3
- "version": "4.65.0-alpha.1769799992",
3
+ "version": "4.65.0",
4
4
  "description": "A Pulumi package for creating and managing Datadog resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -22,6 +22,6 @@
22
22
  "pulumi": {
23
23
  "resource": true,
24
24
  "name": "datadog",
25
- "version": "4.65.0-alpha.1769799992"
25
+ "version": "4.65.0"
26
26
  }
27
27
  }
@@ -43,7 +43,7 @@ export declare class SensitiveDataScannerRule extends pulumi.CustomResource {
43
43
  /**
44
44
  * Object defining a set of keywords and a number of characters that help reduce noise. You can provide a list of keywords you would like to check within a defined proximity of the matching pattern. If any of the keywords are found within the proximity check then the match is kept. If none are found, the match is discarded. If the rule has the `standardPatternId` field, then discarding this field will apply the recommended keywords. Setting the `createBeforeDestroy` lifecycle Meta-argument to `true` is highly recommended if modifying this field to avoid unexpectedly disabling Sensitive Data Scanner groups.
45
45
  */
46
- readonly includedKeywordConfiguration: pulumi.Output<outputs.SensitiveDataScannerRuleIncludedKeywordConfiguration | undefined>;
46
+ readonly includedKeywordConfiguration: pulumi.Output<outputs.SensitiveDataScannerRuleIncludedKeywordConfiguration>;
47
47
  /**
48
48
  * Whether or not the rule is enabled.
49
49
  */
package/types/input.d.ts CHANGED
@@ -13182,6 +13182,24 @@ export interface ObservabilityPipelineConfigDestinationOpensearch {
13182
13182
  * The index or datastream to write logs to.
13183
13183
  */
13184
13184
  bulkIndex?: pulumi.Input<string>;
13185
+ /**
13186
+ * Configuration options for writing to OpenSearch Data Streams instead of a fixed index.
13187
+ */
13188
+ dataStream?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationOpensearchDataStream>;
13189
+ }
13190
+ export interface ObservabilityPipelineConfigDestinationOpensearchDataStream {
13191
+ /**
13192
+ * The data stream dataset for your logs. This groups logs by their source or application.
13193
+ */
13194
+ dataset?: pulumi.Input<string>;
13195
+ /**
13196
+ * The data stream type for your logs. This determines how logs are categorized within the data stream.
13197
+ */
13198
+ dtype?: pulumi.Input<string>;
13199
+ /**
13200
+ * The data stream namespace for your logs. This separates logs into different environments or domains.
13201
+ */
13202
+ namespace?: pulumi.Input<string>;
13185
13203
  }
13186
13204
  export interface ObservabilityPipelineConfigDestinationRsyslog {
13187
13205
  /**
@@ -13575,10 +13593,6 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTab
13575
13593
  * Path to the CSV file.
13576
13594
  */
13577
13595
  path?: pulumi.Input<string>;
13578
- /**
13579
- * Schema defining column names and their types.
13580
- */
13581
- schemas?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchema>[]>;
13582
13596
  }
13583
13597
  export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileEncoding {
13584
13598
  /**
@@ -13608,16 +13622,6 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTab
13608
13622
  */
13609
13623
  field?: pulumi.Input<string>;
13610
13624
  }
13611
- export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchema {
13612
- /**
13613
- * The `items` `column`.
13614
- */
13615
- column?: pulumi.Input<string>;
13616
- /**
13617
- * The type of the column (e.g. string, boolean, integer, etc.).
13618
- */
13619
- type?: pulumi.Input<string>;
13620
- }
13621
13625
  export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableGeoip {
13622
13626
  /**
13623
13627
  * Path to the IP field in the log.
@@ -14356,7 +14360,7 @@ export interface ObservabilityPipelineConfigSourceGooglePubsubTls {
14356
14360
  }
14357
14361
  export interface ObservabilityPipelineConfigSourceHttpClient {
14358
14362
  /**
14359
- * Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`.
14363
+ * Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`, `custom`.
14360
14364
  */
14361
14365
  authStrategy?: pulumi.Input<string>;
14362
14366
  /**
package/types/output.d.ts CHANGED
@@ -13362,6 +13362,24 @@ export interface ObservabilityPipelineConfigDestinationOpensearch {
13362
13362
  * The index or datastream to write logs to.
13363
13363
  */
13364
13364
  bulkIndex?: string;
13365
+ /**
13366
+ * Configuration options for writing to OpenSearch Data Streams instead of a fixed index.
13367
+ */
13368
+ dataStream?: outputs.ObservabilityPipelineConfigDestinationOpensearchDataStream;
13369
+ }
13370
+ export interface ObservabilityPipelineConfigDestinationOpensearchDataStream {
13371
+ /**
13372
+ * The data stream dataset for your logs. This groups logs by their source or application.
13373
+ */
13374
+ dataset?: string;
13375
+ /**
13376
+ * The data stream type for your logs. This determines how logs are categorized within the data stream.
13377
+ */
13378
+ dtype?: string;
13379
+ /**
13380
+ * The data stream namespace for your logs. This separates logs into different environments or domains.
13381
+ */
13382
+ namespace?: string;
13365
13383
  }
13366
13384
  export interface ObservabilityPipelineConfigDestinationRsyslog {
13367
13385
  /**
@@ -13755,10 +13773,6 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTab
13755
13773
  * Path to the CSV file.
13756
13774
  */
13757
13775
  path?: string;
13758
- /**
13759
- * Schema defining column names and their types.
13760
- */
13761
- schemas?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchema[];
13762
13776
  }
13763
13777
  export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileEncoding {
13764
13778
  /**
@@ -13788,16 +13802,6 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTab
13788
13802
  */
13789
13803
  field?: string;
13790
13804
  }
13791
- export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableFileSchema {
13792
- /**
13793
- * The `items` `column`.
13794
- */
13795
- column?: string;
13796
- /**
13797
- * The type of the column (e.g. string, boolean, integer, etc.).
13798
- */
13799
- type?: string;
13800
- }
13801
13805
  export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableGeoip {
13802
13806
  /**
13803
13807
  * Path to the IP field in the log.
@@ -14536,7 +14540,7 @@ export interface ObservabilityPipelineConfigSourceGooglePubsubTls {
14536
14540
  }
14537
14541
  export interface ObservabilityPipelineConfigSourceHttpClient {
14538
14542
  /**
14539
- * Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`.
14543
+ * Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`, `custom`.
14540
14544
  */
14541
14545
  authStrategy?: string;
14542
14546
  /**