@pulumi/datadog 4.54.0-alpha.1755712070 → 4.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/aws/getIntegrationIamPermissions.d.ts +22 -0
- package/aws/getIntegrationIamPermissions.js +24 -0
- package/aws/getIntegrationIamPermissions.js.map +1 -0
- package/aws/index.d.ts +3 -0
- package/aws/index.js +4 -1
- package/aws/index.js.map +1 -1
- package/csmThreatsAgentRule.d.ts +6 -14
- package/csmThreatsAgentRule.js +6 -14
- package/csmThreatsAgentRule.js.map +1 -1
- package/csmThreatsPolicy.d.ts +33 -0
- package/csmThreatsPolicy.js +33 -0
- package/csmThreatsPolicy.js.map +1 -1
- package/dataset.d.ts +109 -0
- package/dataset.js +91 -0
- package/dataset.js.map +1 -0
- package/getCsmThreatsAgentRules.d.ts +18 -0
- package/getCsmThreatsAgentRules.js +18 -0
- package/getCsmThreatsAgentRules.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +9 -4
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/syntheticsTest.d.ts +21 -0
- package/syntheticsTest.js +21 -0
- package/syntheticsTest.js.map +1 -1
- package/types/input.d.ts +355 -18
- package/types/output.d.ts +355 -18
package/types/input.d.ts
CHANGED
|
@@ -8868,6 +8868,16 @@ export interface DashboardWidgetWidgetLayout {
|
|
|
8868
8868
|
*/
|
|
8869
8869
|
y: pulumi.Input<number>;
|
|
8870
8870
|
}
|
|
8871
|
+
export interface DatasetProductFilter {
|
|
8872
|
+
/**
|
|
8873
|
+
* A list of tag-based filters used to restrict access to the product type. Each filter is formatted as `@tag.key:value`.
|
|
8874
|
+
*/
|
|
8875
|
+
filters: pulumi.Input<pulumi.Input<string>[]>;
|
|
8876
|
+
/**
|
|
8877
|
+
* The product type of the dataset. Supported types: `apm`, `rum`, `synthetics`, `metrics`, `logs`, `sdRepoinfo`, `errorTracking`, `cloudCost`, and `mlObs`.
|
|
8878
|
+
*/
|
|
8879
|
+
product: pulumi.Input<string>;
|
|
8880
|
+
}
|
|
8871
8881
|
export interface DowntimeRecurrence {
|
|
8872
8882
|
/**
|
|
8873
8883
|
* How often to repeat as an integer. For example to repeat every 3 days, select a `type` of `days` and a `period` of `3`.
|
|
@@ -10706,10 +10716,22 @@ export interface ObservabilityPipelineConfigDestinations {
|
|
|
10706
10716
|
* The `amazonOpensearch` destination writes logs to Amazon OpenSearch.
|
|
10707
10717
|
*/
|
|
10708
10718
|
amazonOpensearches?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsAmazonOpensearch>[]>;
|
|
10719
|
+
/**
|
|
10720
|
+
* The `amazonS3` destination sends your logs in Datadog-rehydratable format to an Amazon S3 bucket for archiving.
|
|
10721
|
+
*/
|
|
10722
|
+
amazonS3s?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsAmazonS3>[]>;
|
|
10723
|
+
/**
|
|
10724
|
+
* The `amazonSecurityLake` destination sends your logs to Amazon Security Lake.
|
|
10725
|
+
*/
|
|
10726
|
+
amazonSecurityLakes?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsAmazonSecurityLake>[]>;
|
|
10709
10727
|
/**
|
|
10710
10728
|
* The `azureStorage` destination forwards logs to an Azure Blob Storage container.
|
|
10711
10729
|
*/
|
|
10712
10730
|
azureStorages?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsAzureStorage>[]>;
|
|
10731
|
+
/**
|
|
10732
|
+
* The `crowdstrikeNextGenSiem` destination forwards logs to CrowdStrike Next Gen SIEM.
|
|
10733
|
+
*/
|
|
10734
|
+
crowdstrikeNextGenSiems?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiem>[]>;
|
|
10713
10735
|
/**
|
|
10714
10736
|
* The `datadogLogs` destination forwards logs to Datadog Log Management.
|
|
10715
10737
|
*/
|
|
@@ -10746,6 +10768,10 @@ export interface ObservabilityPipelineConfigDestinations {
|
|
|
10746
10768
|
* The `sentinelOne` destination sends logs to SentinelOne.
|
|
10747
10769
|
*/
|
|
10748
10770
|
sentinelOnes?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsSentinelOne>[]>;
|
|
10771
|
+
/**
|
|
10772
|
+
* The `socket` destination sends logs over TCP or UDP to a remote server.
|
|
10773
|
+
*/
|
|
10774
|
+
sockets?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsSocket>[]>;
|
|
10749
10775
|
/**
|
|
10750
10776
|
* The `splunkHec` destination forwards logs to Splunk using the HTTP Event Collector (HEC).
|
|
10751
10777
|
*/
|
|
@@ -10796,6 +10822,108 @@ export interface ObservabilityPipelineConfigDestinationsAmazonOpensearchAuth {
|
|
|
10796
10822
|
*/
|
|
10797
10823
|
strategy: pulumi.Input<string>;
|
|
10798
10824
|
}
|
|
10825
|
+
export interface ObservabilityPipelineConfigDestinationsAmazonS3 {
|
|
10826
|
+
/**
|
|
10827
|
+
* AWS authentication credentials used for accessing AWS services. If omitted, the system's default credentials are used (for example, the IAM role and environment variables).
|
|
10828
|
+
*/
|
|
10829
|
+
auth?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsAmazonS3Auth>;
|
|
10830
|
+
/**
|
|
10831
|
+
* S3 bucket name.
|
|
10832
|
+
*/
|
|
10833
|
+
bucket: pulumi.Input<string>;
|
|
10834
|
+
/**
|
|
10835
|
+
* Unique identifier for the destination component.
|
|
10836
|
+
*/
|
|
10837
|
+
id: pulumi.Input<string>;
|
|
10838
|
+
/**
|
|
10839
|
+
* A list of component IDs whose output is used as the `input` for this component.
|
|
10840
|
+
*/
|
|
10841
|
+
inputs: pulumi.Input<pulumi.Input<string>[]>;
|
|
10842
|
+
/**
|
|
10843
|
+
* Prefix for object keys.
|
|
10844
|
+
*/
|
|
10845
|
+
keyPrefix: pulumi.Input<string>;
|
|
10846
|
+
/**
|
|
10847
|
+
* AWS region of the S3 bucket.
|
|
10848
|
+
*/
|
|
10849
|
+
region: pulumi.Input<string>;
|
|
10850
|
+
/**
|
|
10851
|
+
* S3 storage class. Valid values are `STANDARD`, `REDUCED_REDUNDANCY`, `INTELLIGENT_TIERING`, `STANDARD_IA`, `EXPRESS_ONEZONE`, `ONEZONE_IA`, `GLACIER`, `GLACIER_IR`, `DEEP_ARCHIVE`.
|
|
10852
|
+
*/
|
|
10853
|
+
storageClass: pulumi.Input<string>;
|
|
10854
|
+
}
|
|
10855
|
+
export interface ObservabilityPipelineConfigDestinationsAmazonS3Auth {
|
|
10856
|
+
/**
|
|
10857
|
+
* The Amazon Resource Name (ARN) of the role to assume.
|
|
10858
|
+
*/
|
|
10859
|
+
assumeRole?: pulumi.Input<string>;
|
|
10860
|
+
/**
|
|
10861
|
+
* A unique identifier for cross-account role assumption.
|
|
10862
|
+
*/
|
|
10863
|
+
externalId?: pulumi.Input<string>;
|
|
10864
|
+
/**
|
|
10865
|
+
* A session identifier used for logging and tracing the assumed role session.
|
|
10866
|
+
*/
|
|
10867
|
+
sessionName?: pulumi.Input<string>;
|
|
10868
|
+
}
|
|
10869
|
+
export interface ObservabilityPipelineConfigDestinationsAmazonSecurityLake {
|
|
10870
|
+
/**
|
|
10871
|
+
* AWS authentication credentials used for accessing AWS services. If omitted, the system's default credentials are used (for example, the IAM role and environment variables).
|
|
10872
|
+
*/
|
|
10873
|
+
auth?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsAmazonSecurityLakeAuth>;
|
|
10874
|
+
/**
|
|
10875
|
+
* Name of the Amazon S3 bucket in Security Lake (3-63 characters).
|
|
10876
|
+
*/
|
|
10877
|
+
bucket: pulumi.Input<string>;
|
|
10878
|
+
/**
|
|
10879
|
+
* Custom source name for the logs in Security Lake.
|
|
10880
|
+
*/
|
|
10881
|
+
customSourceName: pulumi.Input<string>;
|
|
10882
|
+
/**
|
|
10883
|
+
* Unique identifier for the destination component.
|
|
10884
|
+
*/
|
|
10885
|
+
id: pulumi.Input<string>;
|
|
10886
|
+
/**
|
|
10887
|
+
* A list of component IDs whose output is used as the `input` for this component.
|
|
10888
|
+
*/
|
|
10889
|
+
inputs: pulumi.Input<pulumi.Input<string>[]>;
|
|
10890
|
+
/**
|
|
10891
|
+
* AWS region of the Security Lake bucket.
|
|
10892
|
+
*/
|
|
10893
|
+
region: pulumi.Input<string>;
|
|
10894
|
+
/**
|
|
10895
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
10896
|
+
*/
|
|
10897
|
+
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsAmazonSecurityLakeTls>;
|
|
10898
|
+
}
|
|
10899
|
+
export interface ObservabilityPipelineConfigDestinationsAmazonSecurityLakeAuth {
|
|
10900
|
+
/**
|
|
10901
|
+
* The Amazon Resource Name (ARN) of the role to assume.
|
|
10902
|
+
*/
|
|
10903
|
+
assumeRole?: pulumi.Input<string>;
|
|
10904
|
+
/**
|
|
10905
|
+
* A unique identifier for cross-account role assumption.
|
|
10906
|
+
*/
|
|
10907
|
+
externalId?: pulumi.Input<string>;
|
|
10908
|
+
/**
|
|
10909
|
+
* A session identifier used for logging and tracing the assumed role session.
|
|
10910
|
+
*/
|
|
10911
|
+
sessionName?: pulumi.Input<string>;
|
|
10912
|
+
}
|
|
10913
|
+
export interface ObservabilityPipelineConfigDestinationsAmazonSecurityLakeTls {
|
|
10914
|
+
/**
|
|
10915
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
10916
|
+
*/
|
|
10917
|
+
caFile?: pulumi.Input<string>;
|
|
10918
|
+
/**
|
|
10919
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
10920
|
+
*/
|
|
10921
|
+
crtFile?: pulumi.Input<string>;
|
|
10922
|
+
/**
|
|
10923
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
10924
|
+
*/
|
|
10925
|
+
keyFile?: pulumi.Input<string>;
|
|
10926
|
+
}
|
|
10799
10927
|
export interface ObservabilityPipelineConfigDestinationsAzureStorage {
|
|
10800
10928
|
/**
|
|
10801
10929
|
* Optional prefix for blobs written to the container.
|
|
@@ -10814,6 +10942,52 @@ export interface ObservabilityPipelineConfigDestinationsAzureStorage {
|
|
|
10814
10942
|
*/
|
|
10815
10943
|
inputs: pulumi.Input<pulumi.Input<string>[]>;
|
|
10816
10944
|
}
|
|
10945
|
+
export interface ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiem {
|
|
10946
|
+
/**
|
|
10947
|
+
* Compression configuration for log events.
|
|
10948
|
+
*/
|
|
10949
|
+
compression?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiemCompression>;
|
|
10950
|
+
/**
|
|
10951
|
+
* Encoding format for log events. Valid values are `json`, `rawMessage`.
|
|
10952
|
+
*/
|
|
10953
|
+
encoding: pulumi.Input<string>;
|
|
10954
|
+
/**
|
|
10955
|
+
* Unique identifier for the destination component.
|
|
10956
|
+
*/
|
|
10957
|
+
id: pulumi.Input<string>;
|
|
10958
|
+
/**
|
|
10959
|
+
* A list of component IDs whose output is used as the `input` for this component.
|
|
10960
|
+
*/
|
|
10961
|
+
inputs: pulumi.Input<pulumi.Input<string>[]>;
|
|
10962
|
+
/**
|
|
10963
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
10964
|
+
*/
|
|
10965
|
+
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiemTls>;
|
|
10966
|
+
}
|
|
10967
|
+
export interface ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiemCompression {
|
|
10968
|
+
/**
|
|
10969
|
+
* Compression algorithm for log events.
|
|
10970
|
+
*/
|
|
10971
|
+
algorithm?: pulumi.Input<string>;
|
|
10972
|
+
/**
|
|
10973
|
+
* Compression level.
|
|
10974
|
+
*/
|
|
10975
|
+
level?: pulumi.Input<number>;
|
|
10976
|
+
}
|
|
10977
|
+
export interface ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiemTls {
|
|
10978
|
+
/**
|
|
10979
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
10980
|
+
*/
|
|
10981
|
+
caFile?: pulumi.Input<string>;
|
|
10982
|
+
/**
|
|
10983
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
10984
|
+
*/
|
|
10985
|
+
crtFile?: pulumi.Input<string>;
|
|
10986
|
+
/**
|
|
10987
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
10988
|
+
*/
|
|
10989
|
+
keyFile?: pulumi.Input<string>;
|
|
10990
|
+
}
|
|
10817
10991
|
export interface ObservabilityPipelineConfigDestinationsDatadogLog {
|
|
10818
10992
|
/**
|
|
10819
10993
|
* The unique ID of the destination.
|
|
@@ -10998,7 +11172,7 @@ export interface ObservabilityPipelineConfigDestinationsRsyslog {
|
|
|
10998
11172
|
}
|
|
10999
11173
|
export interface ObservabilityPipelineConfigDestinationsRsyslogTls {
|
|
11000
11174
|
/**
|
|
11001
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
11175
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
11002
11176
|
*/
|
|
11003
11177
|
caFile?: pulumi.Input<string>;
|
|
11004
11178
|
/**
|
|
@@ -11024,6 +11198,62 @@ export interface ObservabilityPipelineConfigDestinationsSentinelOne {
|
|
|
11024
11198
|
*/
|
|
11025
11199
|
region: pulumi.Input<string>;
|
|
11026
11200
|
}
|
|
11201
|
+
export interface ObservabilityPipelineConfigDestinationsSocket {
|
|
11202
|
+
/**
|
|
11203
|
+
* Encoding format for log events. Valid values are `json`, `rawMessage`.
|
|
11204
|
+
*/
|
|
11205
|
+
encoding: pulumi.Input<string>;
|
|
11206
|
+
/**
|
|
11207
|
+
* Defines the framing method for outgoing messages.
|
|
11208
|
+
*/
|
|
11209
|
+
framing?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsSocketFraming>;
|
|
11210
|
+
/**
|
|
11211
|
+
* The unique identifier for this destination.
|
|
11212
|
+
*/
|
|
11213
|
+
id: pulumi.Input<string>;
|
|
11214
|
+
/**
|
|
11215
|
+
* A list of component IDs whose output is used as the `input` for this destination.
|
|
11216
|
+
*/
|
|
11217
|
+
inputs: pulumi.Input<pulumi.Input<string>[]>;
|
|
11218
|
+
/**
|
|
11219
|
+
* The protocol used to send logs. Valid values are `tcp`, `udp`.
|
|
11220
|
+
*/
|
|
11221
|
+
mode: pulumi.Input<string>;
|
|
11222
|
+
/**
|
|
11223
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
11224
|
+
*/
|
|
11225
|
+
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsSocketTls>;
|
|
11226
|
+
}
|
|
11227
|
+
export interface ObservabilityPipelineConfigDestinationsSocketFraming {
|
|
11228
|
+
/**
|
|
11229
|
+
* Used when `method` is `characterDelimited`. Specifies the delimiter character.
|
|
11230
|
+
*/
|
|
11231
|
+
characterDelimited?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationsSocketFramingCharacterDelimited>;
|
|
11232
|
+
/**
|
|
11233
|
+
* The framing method. Valid values are `newlineDelimited`, `bytes`, `characterDelimited`.
|
|
11234
|
+
*/
|
|
11235
|
+
method: pulumi.Input<string>;
|
|
11236
|
+
}
|
|
11237
|
+
export interface ObservabilityPipelineConfigDestinationsSocketFramingCharacterDelimited {
|
|
11238
|
+
/**
|
|
11239
|
+
* A single ASCII character used as a delimiter.
|
|
11240
|
+
*/
|
|
11241
|
+
delimiter?: pulumi.Input<string>;
|
|
11242
|
+
}
|
|
11243
|
+
export interface ObservabilityPipelineConfigDestinationsSocketTls {
|
|
11244
|
+
/**
|
|
11245
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
11246
|
+
*/
|
|
11247
|
+
caFile?: pulumi.Input<string>;
|
|
11248
|
+
/**
|
|
11249
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
11250
|
+
*/
|
|
11251
|
+
crtFile?: pulumi.Input<string>;
|
|
11252
|
+
/**
|
|
11253
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
11254
|
+
*/
|
|
11255
|
+
keyFile?: pulumi.Input<string>;
|
|
11256
|
+
}
|
|
11027
11257
|
export interface ObservabilityPipelineConfigDestinationsSplunkHec {
|
|
11028
11258
|
/**
|
|
11029
11259
|
* If `true`, Splunk tries to extract timestamps from incoming log events.
|
|
@@ -11110,7 +11340,7 @@ export interface ObservabilityPipelineConfigDestinationsSyslogNg {
|
|
|
11110
11340
|
}
|
|
11111
11341
|
export interface ObservabilityPipelineConfigDestinationsSyslogNgTls {
|
|
11112
11342
|
/**
|
|
11113
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
11343
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
11114
11344
|
*/
|
|
11115
11345
|
caFile?: pulumi.Input<string>;
|
|
11116
11346
|
/**
|
|
@@ -11131,6 +11361,11 @@ export interface ObservabilityPipelineConfigProcessors {
|
|
|
11131
11361
|
* The `addFields` processor adds static key-value fields to logs.
|
|
11132
11362
|
*/
|
|
11133
11363
|
addFields?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsAddField>[]>;
|
|
11364
|
+
/**
|
|
11365
|
+
* The `customProcessor` processor transforms events using Vector Remap Language (VRL) scripts with advanced filtering capabilities.
|
|
11366
|
+
*/
|
|
11367
|
+
customProcessors?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsCustomProcessor>[]>;
|
|
11368
|
+
datadogTags?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsDatadogTag>[]>;
|
|
11134
11369
|
/**
|
|
11135
11370
|
* The `dedupe` processor removes duplicate fields in log events.
|
|
11136
11371
|
*/
|
|
@@ -11244,6 +11479,56 @@ export interface ObservabilityPipelineConfigProcessorsAddFieldField {
|
|
|
11244
11479
|
*/
|
|
11245
11480
|
value: pulumi.Input<string>;
|
|
11246
11481
|
}
|
|
11482
|
+
export interface ObservabilityPipelineConfigProcessorsCustomProcessor {
|
|
11483
|
+
/**
|
|
11484
|
+
* The unique identifier for this processor.
|
|
11485
|
+
*/
|
|
11486
|
+
id: pulumi.Input<string>;
|
|
11487
|
+
/**
|
|
11488
|
+
* A list of component IDs whose output is used as the input for this processor.
|
|
11489
|
+
*/
|
|
11490
|
+
inputs: pulumi.Input<pulumi.Input<string>[]>;
|
|
11491
|
+
/**
|
|
11492
|
+
* Array of VRL remap configurations. Each remap defines a transformation rule with its own filter and VRL script.
|
|
11493
|
+
*/
|
|
11494
|
+
remaps?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorsCustomProcessorRemap>[]>;
|
|
11495
|
+
}
|
|
11496
|
+
export interface ObservabilityPipelineConfigProcessorsCustomProcessorRemap {
|
|
11497
|
+
/**
|
|
11498
|
+
* Whether to drop events that cause errors during transformation.
|
|
11499
|
+
*/
|
|
11500
|
+
dropOnError: pulumi.Input<boolean>;
|
|
11501
|
+
/**
|
|
11502
|
+
* Whether this remap rule is enabled.
|
|
11503
|
+
*/
|
|
11504
|
+
enabled: pulumi.Input<boolean>;
|
|
11505
|
+
/**
|
|
11506
|
+
* A Datadog search query used to filter events for this specific remap rule.
|
|
11507
|
+
*/
|
|
11508
|
+
include: pulumi.Input<string>;
|
|
11509
|
+
/**
|
|
11510
|
+
* A descriptive name for this remap rule.
|
|
11511
|
+
*/
|
|
11512
|
+
name: pulumi.Input<string>;
|
|
11513
|
+
/**
|
|
11514
|
+
* The VRL script source code that defines the transformation logic.
|
|
11515
|
+
*/
|
|
11516
|
+
source: pulumi.Input<string>;
|
|
11517
|
+
}
|
|
11518
|
+
export interface ObservabilityPipelineConfigProcessorsDatadogTag {
|
|
11519
|
+
/**
|
|
11520
|
+
* Valid values are `include`, `exclude`.
|
|
11521
|
+
*/
|
|
11522
|
+
action: pulumi.Input<string>;
|
|
11523
|
+
id: pulumi.Input<string>;
|
|
11524
|
+
include: pulumi.Input<string>;
|
|
11525
|
+
inputs: pulumi.Input<pulumi.Input<string>[]>;
|
|
11526
|
+
keys: pulumi.Input<pulumi.Input<string>[]>;
|
|
11527
|
+
/**
|
|
11528
|
+
* Valid values are `filter`.
|
|
11529
|
+
*/
|
|
11530
|
+
mode: pulumi.Input<string>;
|
|
11531
|
+
}
|
|
11247
11532
|
export interface ObservabilityPipelineConfigProcessorsDedupe {
|
|
11248
11533
|
/**
|
|
11249
11534
|
* A list of log field paths to check for duplicates.
|
|
@@ -11914,6 +12199,10 @@ export interface ObservabilityPipelineConfigSources {
|
|
|
11914
12199
|
* The `rsyslog` source listens for logs over TCP or UDP from an `rsyslog` server using the syslog protocol.
|
|
11915
12200
|
*/
|
|
11916
12201
|
rsyslogs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesRsyslog>[]>;
|
|
12202
|
+
/**
|
|
12203
|
+
* The `socket` source ingests logs over TCP or UDP.
|
|
12204
|
+
*/
|
|
12205
|
+
sockets?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourcesSocket>[]>;
|
|
11917
12206
|
/**
|
|
11918
12207
|
* The `splunkHec` source implements the Splunk HTTP Event Collector (HEC) API.
|
|
11919
12208
|
*/
|
|
@@ -11933,7 +12222,7 @@ export interface ObservabilityPipelineConfigSources {
|
|
|
11933
12222
|
}
|
|
11934
12223
|
export interface ObservabilityPipelineConfigSourcesAmazonDataFirehose {
|
|
11935
12224
|
/**
|
|
11936
|
-
* AWS authentication credentials used for accessing AWS services such as S3. If omitted, the system
|
|
12225
|
+
* 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).
|
|
11937
12226
|
*/
|
|
11938
12227
|
auth?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesAmazonDataFirehoseAuth>;
|
|
11939
12228
|
/**
|
|
@@ -11961,7 +12250,7 @@ export interface ObservabilityPipelineConfigSourcesAmazonDataFirehoseAuth {
|
|
|
11961
12250
|
}
|
|
11962
12251
|
export interface ObservabilityPipelineConfigSourcesAmazonDataFirehoseTls {
|
|
11963
12252
|
/**
|
|
11964
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12253
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
11965
12254
|
*/
|
|
11966
12255
|
caFile?: pulumi.Input<string>;
|
|
11967
12256
|
/**
|
|
@@ -11975,7 +12264,7 @@ export interface ObservabilityPipelineConfigSourcesAmazonDataFirehoseTls {
|
|
|
11975
12264
|
}
|
|
11976
12265
|
export interface ObservabilityPipelineConfigSourcesAmazonS3 {
|
|
11977
12266
|
/**
|
|
11978
|
-
* AWS authentication credentials used for accessing AWS services such as S3. If omitted, the system
|
|
12267
|
+
* 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).
|
|
11979
12268
|
*/
|
|
11980
12269
|
auth?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesAmazonS3Auth>;
|
|
11981
12270
|
/**
|
|
@@ -12007,7 +12296,7 @@ export interface ObservabilityPipelineConfigSourcesAmazonS3Auth {
|
|
|
12007
12296
|
}
|
|
12008
12297
|
export interface ObservabilityPipelineConfigSourcesAmazonS3Tls {
|
|
12009
12298
|
/**
|
|
12010
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12299
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12011
12300
|
*/
|
|
12012
12301
|
caFile?: pulumi.Input<string>;
|
|
12013
12302
|
/**
|
|
@@ -12031,7 +12320,7 @@ export interface ObservabilityPipelineConfigSourcesDatadogAgent {
|
|
|
12031
12320
|
}
|
|
12032
12321
|
export interface ObservabilityPipelineConfigSourcesDatadogAgentTls {
|
|
12033
12322
|
/**
|
|
12034
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12323
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12035
12324
|
*/
|
|
12036
12325
|
caFile?: pulumi.Input<string>;
|
|
12037
12326
|
/**
|
|
@@ -12055,7 +12344,7 @@ export interface ObservabilityPipelineConfigSourcesFluentBit {
|
|
|
12055
12344
|
}
|
|
12056
12345
|
export interface ObservabilityPipelineConfigSourcesFluentBitTls {
|
|
12057
12346
|
/**
|
|
12058
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12347
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12059
12348
|
*/
|
|
12060
12349
|
caFile?: pulumi.Input<string>;
|
|
12061
12350
|
/**
|
|
@@ -12079,7 +12368,7 @@ export interface ObservabilityPipelineConfigSourcesFluentd {
|
|
|
12079
12368
|
}
|
|
12080
12369
|
export interface ObservabilityPipelineConfigSourcesFluentdTls {
|
|
12081
12370
|
/**
|
|
12082
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12371
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12083
12372
|
*/
|
|
12084
12373
|
caFile?: pulumi.Input<string>;
|
|
12085
12374
|
/**
|
|
@@ -12125,7 +12414,7 @@ export interface ObservabilityPipelineConfigSourcesGooglePubsubAuth {
|
|
|
12125
12414
|
}
|
|
12126
12415
|
export interface ObservabilityPipelineConfigSourcesGooglePubsubTls {
|
|
12127
12416
|
/**
|
|
12128
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12417
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12129
12418
|
*/
|
|
12130
12419
|
caFile?: pulumi.Input<string>;
|
|
12131
12420
|
/**
|
|
@@ -12165,7 +12454,7 @@ export interface ObservabilityPipelineConfigSourcesHttpClient {
|
|
|
12165
12454
|
}
|
|
12166
12455
|
export interface ObservabilityPipelineConfigSourcesHttpClientTls {
|
|
12167
12456
|
/**
|
|
12168
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12457
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12169
12458
|
*/
|
|
12170
12459
|
caFile?: pulumi.Input<string>;
|
|
12171
12460
|
/**
|
|
@@ -12197,7 +12486,7 @@ export interface ObservabilityPipelineConfigSourcesHttpServer {
|
|
|
12197
12486
|
}
|
|
12198
12487
|
export interface ObservabilityPipelineConfigSourcesHttpServerTls {
|
|
12199
12488
|
/**
|
|
12200
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12489
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12201
12490
|
*/
|
|
12202
12491
|
caFile?: pulumi.Input<string>;
|
|
12203
12492
|
/**
|
|
@@ -12253,7 +12542,7 @@ export interface ObservabilityPipelineConfigSourcesKafkaSasl {
|
|
|
12253
12542
|
}
|
|
12254
12543
|
export interface ObservabilityPipelineConfigSourcesKafkaTls {
|
|
12255
12544
|
/**
|
|
12256
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12545
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12257
12546
|
*/
|
|
12258
12547
|
caFile?: pulumi.Input<string>;
|
|
12259
12548
|
/**
|
|
@@ -12277,7 +12566,7 @@ export interface ObservabilityPipelineConfigSourcesLogstash {
|
|
|
12277
12566
|
}
|
|
12278
12567
|
export interface ObservabilityPipelineConfigSourcesLogstashTls {
|
|
12279
12568
|
/**
|
|
12280
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12569
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12281
12570
|
*/
|
|
12282
12571
|
caFile?: pulumi.Input<string>;
|
|
12283
12572
|
/**
|
|
@@ -12305,7 +12594,55 @@ export interface ObservabilityPipelineConfigSourcesRsyslog {
|
|
|
12305
12594
|
}
|
|
12306
12595
|
export interface ObservabilityPipelineConfigSourcesRsyslogTls {
|
|
12307
12596
|
/**
|
|
12308
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12597
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12598
|
+
*/
|
|
12599
|
+
caFile?: pulumi.Input<string>;
|
|
12600
|
+
/**
|
|
12601
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
12602
|
+
*/
|
|
12603
|
+
crtFile?: pulumi.Input<string>;
|
|
12604
|
+
/**
|
|
12605
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
12606
|
+
*/
|
|
12607
|
+
keyFile?: pulumi.Input<string>;
|
|
12608
|
+
}
|
|
12609
|
+
export interface ObservabilityPipelineConfigSourcesSocket {
|
|
12610
|
+
/**
|
|
12611
|
+
* Defines the framing method for incoming messages.
|
|
12612
|
+
*/
|
|
12613
|
+
framing?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesSocketFraming>;
|
|
12614
|
+
/**
|
|
12615
|
+
* The unique identifier for this component.
|
|
12616
|
+
*/
|
|
12617
|
+
id: pulumi.Input<string>;
|
|
12618
|
+
/**
|
|
12619
|
+
* The protocol used to receive logs. Valid values are `tcp`, `udp`.
|
|
12620
|
+
*/
|
|
12621
|
+
mode: pulumi.Input<string>;
|
|
12622
|
+
/**
|
|
12623
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
12624
|
+
*/
|
|
12625
|
+
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesSocketTls>;
|
|
12626
|
+
}
|
|
12627
|
+
export interface ObservabilityPipelineConfigSourcesSocketFraming {
|
|
12628
|
+
/**
|
|
12629
|
+
* Used when `method` is `characterDelimited`. Specifies the delimiter character.
|
|
12630
|
+
*/
|
|
12631
|
+
characterDelimited?: pulumi.Input<inputs.ObservabilityPipelineConfigSourcesSocketFramingCharacterDelimited>;
|
|
12632
|
+
/**
|
|
12633
|
+
* The framing method. Valid values are `newlineDelimited`, `bytes`, `characterDelimited`, `octetCounting`, `chunkedGelf`.
|
|
12634
|
+
*/
|
|
12635
|
+
method?: pulumi.Input<string>;
|
|
12636
|
+
}
|
|
12637
|
+
export interface ObservabilityPipelineConfigSourcesSocketFramingCharacterDelimited {
|
|
12638
|
+
/**
|
|
12639
|
+
* A single ASCII character used as a delimiter.
|
|
12640
|
+
*/
|
|
12641
|
+
delimiter?: pulumi.Input<string>;
|
|
12642
|
+
}
|
|
12643
|
+
export interface ObservabilityPipelineConfigSourcesSocketTls {
|
|
12644
|
+
/**
|
|
12645
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12309
12646
|
*/
|
|
12310
12647
|
caFile?: pulumi.Input<string>;
|
|
12311
12648
|
/**
|
|
@@ -12329,7 +12666,7 @@ export interface ObservabilityPipelineConfigSourcesSplunkHec {
|
|
|
12329
12666
|
}
|
|
12330
12667
|
export interface ObservabilityPipelineConfigSourcesSplunkHecTls {
|
|
12331
12668
|
/**
|
|
12332
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12669
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12333
12670
|
*/
|
|
12334
12671
|
caFile?: pulumi.Input<string>;
|
|
12335
12672
|
/**
|
|
@@ -12353,7 +12690,7 @@ export interface ObservabilityPipelineConfigSourcesSplunkTcp {
|
|
|
12353
12690
|
}
|
|
12354
12691
|
export interface ObservabilityPipelineConfigSourcesSplunkTcpTls {
|
|
12355
12692
|
/**
|
|
12356
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12693
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12357
12694
|
*/
|
|
12358
12695
|
caFile?: pulumi.Input<string>;
|
|
12359
12696
|
/**
|
|
@@ -12387,7 +12724,7 @@ export interface ObservabilityPipelineConfigSourcesSyslogNg {
|
|
|
12387
12724
|
}
|
|
12388
12725
|
export interface ObservabilityPipelineConfigSourcesSyslogNgTls {
|
|
12389
12726
|
/**
|
|
12390
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12727
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12391
12728
|
*/
|
|
12392
12729
|
caFile?: pulumi.Input<string>;
|
|
12393
12730
|
/**
|