@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/output.d.ts
CHANGED
|
@@ -8867,6 +8867,16 @@ export interface DashboardWidgetWidgetLayout {
|
|
|
8867
8867
|
*/
|
|
8868
8868
|
y: number;
|
|
8869
8869
|
}
|
|
8870
|
+
export interface DatasetProductFilter {
|
|
8871
|
+
/**
|
|
8872
|
+
* A list of tag-based filters used to restrict access to the product type. Each filter is formatted as `@tag.key:value`.
|
|
8873
|
+
*/
|
|
8874
|
+
filters: string[];
|
|
8875
|
+
/**
|
|
8876
|
+
* The product type of the dataset. Supported types: `apm`, `rum`, `synthetics`, `metrics`, `logs`, `sdRepoinfo`, `errorTracking`, `cloudCost`, and `mlObs`.
|
|
8877
|
+
*/
|
|
8878
|
+
product: string;
|
|
8879
|
+
}
|
|
8870
8880
|
export interface DowntimeRecurrence {
|
|
8871
8881
|
/**
|
|
8872
8882
|
* How often to repeat as an integer. For example to repeat every 3 days, select a `type` of `days` and a `period` of `3`.
|
|
@@ -11307,10 +11317,22 @@ export interface ObservabilityPipelineConfigDestinations {
|
|
|
11307
11317
|
* The `amazonOpensearch` destination writes logs to Amazon OpenSearch.
|
|
11308
11318
|
*/
|
|
11309
11319
|
amazonOpensearches?: outputs.ObservabilityPipelineConfigDestinationsAmazonOpensearch[];
|
|
11320
|
+
/**
|
|
11321
|
+
* The `amazonS3` destination sends your logs in Datadog-rehydratable format to an Amazon S3 bucket for archiving.
|
|
11322
|
+
*/
|
|
11323
|
+
amazonS3s?: outputs.ObservabilityPipelineConfigDestinationsAmazonS3[];
|
|
11324
|
+
/**
|
|
11325
|
+
* The `amazonSecurityLake` destination sends your logs to Amazon Security Lake.
|
|
11326
|
+
*/
|
|
11327
|
+
amazonSecurityLakes?: outputs.ObservabilityPipelineConfigDestinationsAmazonSecurityLake[];
|
|
11310
11328
|
/**
|
|
11311
11329
|
* The `azureStorage` destination forwards logs to an Azure Blob Storage container.
|
|
11312
11330
|
*/
|
|
11313
11331
|
azureStorages?: outputs.ObservabilityPipelineConfigDestinationsAzureStorage[];
|
|
11332
|
+
/**
|
|
11333
|
+
* The `crowdstrikeNextGenSiem` destination forwards logs to CrowdStrike Next Gen SIEM.
|
|
11334
|
+
*/
|
|
11335
|
+
crowdstrikeNextGenSiems?: outputs.ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiem[];
|
|
11314
11336
|
/**
|
|
11315
11337
|
* The `datadogLogs` destination forwards logs to Datadog Log Management.
|
|
11316
11338
|
*/
|
|
@@ -11347,6 +11369,10 @@ export interface ObservabilityPipelineConfigDestinations {
|
|
|
11347
11369
|
* The `sentinelOne` destination sends logs to SentinelOne.
|
|
11348
11370
|
*/
|
|
11349
11371
|
sentinelOnes?: outputs.ObservabilityPipelineConfigDestinationsSentinelOne[];
|
|
11372
|
+
/**
|
|
11373
|
+
* The `socket` destination sends logs over TCP or UDP to a remote server.
|
|
11374
|
+
*/
|
|
11375
|
+
sockets?: outputs.ObservabilityPipelineConfigDestinationsSocket[];
|
|
11350
11376
|
/**
|
|
11351
11377
|
* The `splunkHec` destination forwards logs to Splunk using the HTTP Event Collector (HEC).
|
|
11352
11378
|
*/
|
|
@@ -11397,6 +11423,108 @@ export interface ObservabilityPipelineConfigDestinationsAmazonOpensearchAuth {
|
|
|
11397
11423
|
*/
|
|
11398
11424
|
strategy: string;
|
|
11399
11425
|
}
|
|
11426
|
+
export interface ObservabilityPipelineConfigDestinationsAmazonS3 {
|
|
11427
|
+
/**
|
|
11428
|
+
* 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).
|
|
11429
|
+
*/
|
|
11430
|
+
auth?: outputs.ObservabilityPipelineConfigDestinationsAmazonS3Auth;
|
|
11431
|
+
/**
|
|
11432
|
+
* S3 bucket name.
|
|
11433
|
+
*/
|
|
11434
|
+
bucket: string;
|
|
11435
|
+
/**
|
|
11436
|
+
* Unique identifier for the destination component.
|
|
11437
|
+
*/
|
|
11438
|
+
id: string;
|
|
11439
|
+
/**
|
|
11440
|
+
* A list of component IDs whose output is used as the `input` for this component.
|
|
11441
|
+
*/
|
|
11442
|
+
inputs: string[];
|
|
11443
|
+
/**
|
|
11444
|
+
* Prefix for object keys.
|
|
11445
|
+
*/
|
|
11446
|
+
keyPrefix: string;
|
|
11447
|
+
/**
|
|
11448
|
+
* AWS region of the S3 bucket.
|
|
11449
|
+
*/
|
|
11450
|
+
region: string;
|
|
11451
|
+
/**
|
|
11452
|
+
* S3 storage class. Valid values are `STANDARD`, `REDUCED_REDUNDANCY`, `INTELLIGENT_TIERING`, `STANDARD_IA`, `EXPRESS_ONEZONE`, `ONEZONE_IA`, `GLACIER`, `GLACIER_IR`, `DEEP_ARCHIVE`.
|
|
11453
|
+
*/
|
|
11454
|
+
storageClass: string;
|
|
11455
|
+
}
|
|
11456
|
+
export interface ObservabilityPipelineConfigDestinationsAmazonS3Auth {
|
|
11457
|
+
/**
|
|
11458
|
+
* The Amazon Resource Name (ARN) of the role to assume.
|
|
11459
|
+
*/
|
|
11460
|
+
assumeRole?: string;
|
|
11461
|
+
/**
|
|
11462
|
+
* A unique identifier for cross-account role assumption.
|
|
11463
|
+
*/
|
|
11464
|
+
externalId?: string;
|
|
11465
|
+
/**
|
|
11466
|
+
* A session identifier used for logging and tracing the assumed role session.
|
|
11467
|
+
*/
|
|
11468
|
+
sessionName?: string;
|
|
11469
|
+
}
|
|
11470
|
+
export interface ObservabilityPipelineConfigDestinationsAmazonSecurityLake {
|
|
11471
|
+
/**
|
|
11472
|
+
* 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).
|
|
11473
|
+
*/
|
|
11474
|
+
auth?: outputs.ObservabilityPipelineConfigDestinationsAmazonSecurityLakeAuth;
|
|
11475
|
+
/**
|
|
11476
|
+
* Name of the Amazon S3 bucket in Security Lake (3-63 characters).
|
|
11477
|
+
*/
|
|
11478
|
+
bucket: string;
|
|
11479
|
+
/**
|
|
11480
|
+
* Custom source name for the logs in Security Lake.
|
|
11481
|
+
*/
|
|
11482
|
+
customSourceName: string;
|
|
11483
|
+
/**
|
|
11484
|
+
* Unique identifier for the destination component.
|
|
11485
|
+
*/
|
|
11486
|
+
id: string;
|
|
11487
|
+
/**
|
|
11488
|
+
* A list of component IDs whose output is used as the `input` for this component.
|
|
11489
|
+
*/
|
|
11490
|
+
inputs: string[];
|
|
11491
|
+
/**
|
|
11492
|
+
* AWS region of the Security Lake bucket.
|
|
11493
|
+
*/
|
|
11494
|
+
region: string;
|
|
11495
|
+
/**
|
|
11496
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
11497
|
+
*/
|
|
11498
|
+
tls?: outputs.ObservabilityPipelineConfigDestinationsAmazonSecurityLakeTls;
|
|
11499
|
+
}
|
|
11500
|
+
export interface ObservabilityPipelineConfigDestinationsAmazonSecurityLakeAuth {
|
|
11501
|
+
/**
|
|
11502
|
+
* The Amazon Resource Name (ARN) of the role to assume.
|
|
11503
|
+
*/
|
|
11504
|
+
assumeRole?: string;
|
|
11505
|
+
/**
|
|
11506
|
+
* A unique identifier for cross-account role assumption.
|
|
11507
|
+
*/
|
|
11508
|
+
externalId?: string;
|
|
11509
|
+
/**
|
|
11510
|
+
* A session identifier used for logging and tracing the assumed role session.
|
|
11511
|
+
*/
|
|
11512
|
+
sessionName?: string;
|
|
11513
|
+
}
|
|
11514
|
+
export interface ObservabilityPipelineConfigDestinationsAmazonSecurityLakeTls {
|
|
11515
|
+
/**
|
|
11516
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
11517
|
+
*/
|
|
11518
|
+
caFile?: string;
|
|
11519
|
+
/**
|
|
11520
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
11521
|
+
*/
|
|
11522
|
+
crtFile?: string;
|
|
11523
|
+
/**
|
|
11524
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
11525
|
+
*/
|
|
11526
|
+
keyFile?: string;
|
|
11527
|
+
}
|
|
11400
11528
|
export interface ObservabilityPipelineConfigDestinationsAzureStorage {
|
|
11401
11529
|
/**
|
|
11402
11530
|
* Optional prefix for blobs written to the container.
|
|
@@ -11415,6 +11543,52 @@ export interface ObservabilityPipelineConfigDestinationsAzureStorage {
|
|
|
11415
11543
|
*/
|
|
11416
11544
|
inputs: string[];
|
|
11417
11545
|
}
|
|
11546
|
+
export interface ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiem {
|
|
11547
|
+
/**
|
|
11548
|
+
* Compression configuration for log events.
|
|
11549
|
+
*/
|
|
11550
|
+
compression?: outputs.ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiemCompression;
|
|
11551
|
+
/**
|
|
11552
|
+
* Encoding format for log events. Valid values are `json`, `rawMessage`.
|
|
11553
|
+
*/
|
|
11554
|
+
encoding: string;
|
|
11555
|
+
/**
|
|
11556
|
+
* Unique identifier for the destination component.
|
|
11557
|
+
*/
|
|
11558
|
+
id: string;
|
|
11559
|
+
/**
|
|
11560
|
+
* A list of component IDs whose output is used as the `input` for this component.
|
|
11561
|
+
*/
|
|
11562
|
+
inputs: string[];
|
|
11563
|
+
/**
|
|
11564
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
11565
|
+
*/
|
|
11566
|
+
tls?: outputs.ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiemTls;
|
|
11567
|
+
}
|
|
11568
|
+
export interface ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiemCompression {
|
|
11569
|
+
/**
|
|
11570
|
+
* Compression algorithm for log events.
|
|
11571
|
+
*/
|
|
11572
|
+
algorithm?: string;
|
|
11573
|
+
/**
|
|
11574
|
+
* Compression level.
|
|
11575
|
+
*/
|
|
11576
|
+
level?: number;
|
|
11577
|
+
}
|
|
11578
|
+
export interface ObservabilityPipelineConfigDestinationsCrowdstrikeNextGenSiemTls {
|
|
11579
|
+
/**
|
|
11580
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
11581
|
+
*/
|
|
11582
|
+
caFile?: string;
|
|
11583
|
+
/**
|
|
11584
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
11585
|
+
*/
|
|
11586
|
+
crtFile?: string;
|
|
11587
|
+
/**
|
|
11588
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
11589
|
+
*/
|
|
11590
|
+
keyFile?: string;
|
|
11591
|
+
}
|
|
11418
11592
|
export interface ObservabilityPipelineConfigDestinationsDatadogLog {
|
|
11419
11593
|
/**
|
|
11420
11594
|
* The unique ID of the destination.
|
|
@@ -11599,7 +11773,7 @@ export interface ObservabilityPipelineConfigDestinationsRsyslog {
|
|
|
11599
11773
|
}
|
|
11600
11774
|
export interface ObservabilityPipelineConfigDestinationsRsyslogTls {
|
|
11601
11775
|
/**
|
|
11602
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
11776
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
11603
11777
|
*/
|
|
11604
11778
|
caFile?: string;
|
|
11605
11779
|
/**
|
|
@@ -11625,6 +11799,62 @@ export interface ObservabilityPipelineConfigDestinationsSentinelOne {
|
|
|
11625
11799
|
*/
|
|
11626
11800
|
region: string;
|
|
11627
11801
|
}
|
|
11802
|
+
export interface ObservabilityPipelineConfigDestinationsSocket {
|
|
11803
|
+
/**
|
|
11804
|
+
* Encoding format for log events. Valid values are `json`, `rawMessage`.
|
|
11805
|
+
*/
|
|
11806
|
+
encoding: string;
|
|
11807
|
+
/**
|
|
11808
|
+
* Defines the framing method for outgoing messages.
|
|
11809
|
+
*/
|
|
11810
|
+
framing?: outputs.ObservabilityPipelineConfigDestinationsSocketFraming;
|
|
11811
|
+
/**
|
|
11812
|
+
* The unique identifier for this destination.
|
|
11813
|
+
*/
|
|
11814
|
+
id: string;
|
|
11815
|
+
/**
|
|
11816
|
+
* A list of component IDs whose output is used as the `input` for this destination.
|
|
11817
|
+
*/
|
|
11818
|
+
inputs: string[];
|
|
11819
|
+
/**
|
|
11820
|
+
* The protocol used to send logs. Valid values are `tcp`, `udp`.
|
|
11821
|
+
*/
|
|
11822
|
+
mode: string;
|
|
11823
|
+
/**
|
|
11824
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
11825
|
+
*/
|
|
11826
|
+
tls?: outputs.ObservabilityPipelineConfigDestinationsSocketTls;
|
|
11827
|
+
}
|
|
11828
|
+
export interface ObservabilityPipelineConfigDestinationsSocketFraming {
|
|
11829
|
+
/**
|
|
11830
|
+
* Used when `method` is `characterDelimited`. Specifies the delimiter character.
|
|
11831
|
+
*/
|
|
11832
|
+
characterDelimited?: outputs.ObservabilityPipelineConfigDestinationsSocketFramingCharacterDelimited;
|
|
11833
|
+
/**
|
|
11834
|
+
* The framing method. Valid values are `newlineDelimited`, `bytes`, `characterDelimited`.
|
|
11835
|
+
*/
|
|
11836
|
+
method: string;
|
|
11837
|
+
}
|
|
11838
|
+
export interface ObservabilityPipelineConfigDestinationsSocketFramingCharacterDelimited {
|
|
11839
|
+
/**
|
|
11840
|
+
* A single ASCII character used as a delimiter.
|
|
11841
|
+
*/
|
|
11842
|
+
delimiter?: string;
|
|
11843
|
+
}
|
|
11844
|
+
export interface ObservabilityPipelineConfigDestinationsSocketTls {
|
|
11845
|
+
/**
|
|
11846
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
11847
|
+
*/
|
|
11848
|
+
caFile?: string;
|
|
11849
|
+
/**
|
|
11850
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
11851
|
+
*/
|
|
11852
|
+
crtFile?: string;
|
|
11853
|
+
/**
|
|
11854
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
11855
|
+
*/
|
|
11856
|
+
keyFile?: string;
|
|
11857
|
+
}
|
|
11628
11858
|
export interface ObservabilityPipelineConfigDestinationsSplunkHec {
|
|
11629
11859
|
/**
|
|
11630
11860
|
* If `true`, Splunk tries to extract timestamps from incoming log events.
|
|
@@ -11711,7 +11941,7 @@ export interface ObservabilityPipelineConfigDestinationsSyslogNg {
|
|
|
11711
11941
|
}
|
|
11712
11942
|
export interface ObservabilityPipelineConfigDestinationsSyslogNgTls {
|
|
11713
11943
|
/**
|
|
11714
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
11944
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
11715
11945
|
*/
|
|
11716
11946
|
caFile?: string;
|
|
11717
11947
|
/**
|
|
@@ -11732,6 +11962,11 @@ export interface ObservabilityPipelineConfigProcessors {
|
|
|
11732
11962
|
* The `addFields` processor adds static key-value fields to logs.
|
|
11733
11963
|
*/
|
|
11734
11964
|
addFields?: outputs.ObservabilityPipelineConfigProcessorsAddField[];
|
|
11965
|
+
/**
|
|
11966
|
+
* The `customProcessor` processor transforms events using Vector Remap Language (VRL) scripts with advanced filtering capabilities.
|
|
11967
|
+
*/
|
|
11968
|
+
customProcessors?: outputs.ObservabilityPipelineConfigProcessorsCustomProcessor[];
|
|
11969
|
+
datadogTags?: outputs.ObservabilityPipelineConfigProcessorsDatadogTag[];
|
|
11735
11970
|
/**
|
|
11736
11971
|
* The `dedupe` processor removes duplicate fields in log events.
|
|
11737
11972
|
*/
|
|
@@ -11845,6 +12080,56 @@ export interface ObservabilityPipelineConfigProcessorsAddFieldField {
|
|
|
11845
12080
|
*/
|
|
11846
12081
|
value: string;
|
|
11847
12082
|
}
|
|
12083
|
+
export interface ObservabilityPipelineConfigProcessorsCustomProcessor {
|
|
12084
|
+
/**
|
|
12085
|
+
* The unique identifier for this processor.
|
|
12086
|
+
*/
|
|
12087
|
+
id: string;
|
|
12088
|
+
/**
|
|
12089
|
+
* A list of component IDs whose output is used as the input for this processor.
|
|
12090
|
+
*/
|
|
12091
|
+
inputs: string[];
|
|
12092
|
+
/**
|
|
12093
|
+
* Array of VRL remap configurations. Each remap defines a transformation rule with its own filter and VRL script.
|
|
12094
|
+
*/
|
|
12095
|
+
remaps?: outputs.ObservabilityPipelineConfigProcessorsCustomProcessorRemap[];
|
|
12096
|
+
}
|
|
12097
|
+
export interface ObservabilityPipelineConfigProcessorsCustomProcessorRemap {
|
|
12098
|
+
/**
|
|
12099
|
+
* Whether to drop events that cause errors during transformation.
|
|
12100
|
+
*/
|
|
12101
|
+
dropOnError: boolean;
|
|
12102
|
+
/**
|
|
12103
|
+
* Whether this remap rule is enabled.
|
|
12104
|
+
*/
|
|
12105
|
+
enabled: boolean;
|
|
12106
|
+
/**
|
|
12107
|
+
* A Datadog search query used to filter events for this specific remap rule.
|
|
12108
|
+
*/
|
|
12109
|
+
include: string;
|
|
12110
|
+
/**
|
|
12111
|
+
* A descriptive name for this remap rule.
|
|
12112
|
+
*/
|
|
12113
|
+
name: string;
|
|
12114
|
+
/**
|
|
12115
|
+
* The VRL script source code that defines the transformation logic.
|
|
12116
|
+
*/
|
|
12117
|
+
source: string;
|
|
12118
|
+
}
|
|
12119
|
+
export interface ObservabilityPipelineConfigProcessorsDatadogTag {
|
|
12120
|
+
/**
|
|
12121
|
+
* Valid values are `include`, `exclude`.
|
|
12122
|
+
*/
|
|
12123
|
+
action: string;
|
|
12124
|
+
id: string;
|
|
12125
|
+
include: string;
|
|
12126
|
+
inputs: string[];
|
|
12127
|
+
keys: string[];
|
|
12128
|
+
/**
|
|
12129
|
+
* Valid values are `filter`.
|
|
12130
|
+
*/
|
|
12131
|
+
mode: string;
|
|
12132
|
+
}
|
|
11848
12133
|
export interface ObservabilityPipelineConfigProcessorsDedupe {
|
|
11849
12134
|
/**
|
|
11850
12135
|
* A list of log field paths to check for duplicates.
|
|
@@ -12515,6 +12800,10 @@ export interface ObservabilityPipelineConfigSources {
|
|
|
12515
12800
|
* The `rsyslog` source listens for logs over TCP or UDP from an `rsyslog` server using the syslog protocol.
|
|
12516
12801
|
*/
|
|
12517
12802
|
rsyslogs?: outputs.ObservabilityPipelineConfigSourcesRsyslog[];
|
|
12803
|
+
/**
|
|
12804
|
+
* The `socket` source ingests logs over TCP or UDP.
|
|
12805
|
+
*/
|
|
12806
|
+
sockets?: outputs.ObservabilityPipelineConfigSourcesSocket[];
|
|
12518
12807
|
/**
|
|
12519
12808
|
* The `splunkHec` source implements the Splunk HTTP Event Collector (HEC) API.
|
|
12520
12809
|
*/
|
|
@@ -12534,7 +12823,7 @@ export interface ObservabilityPipelineConfigSources {
|
|
|
12534
12823
|
}
|
|
12535
12824
|
export interface ObservabilityPipelineConfigSourcesAmazonDataFirehose {
|
|
12536
12825
|
/**
|
|
12537
|
-
* AWS authentication credentials used for accessing AWS services such as S3. If omitted, the system
|
|
12826
|
+
* 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).
|
|
12538
12827
|
*/
|
|
12539
12828
|
auth?: outputs.ObservabilityPipelineConfigSourcesAmazonDataFirehoseAuth;
|
|
12540
12829
|
/**
|
|
@@ -12562,7 +12851,7 @@ export interface ObservabilityPipelineConfigSourcesAmazonDataFirehoseAuth {
|
|
|
12562
12851
|
}
|
|
12563
12852
|
export interface ObservabilityPipelineConfigSourcesAmazonDataFirehoseTls {
|
|
12564
12853
|
/**
|
|
12565
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12854
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12566
12855
|
*/
|
|
12567
12856
|
caFile?: string;
|
|
12568
12857
|
/**
|
|
@@ -12576,7 +12865,7 @@ export interface ObservabilityPipelineConfigSourcesAmazonDataFirehoseTls {
|
|
|
12576
12865
|
}
|
|
12577
12866
|
export interface ObservabilityPipelineConfigSourcesAmazonS3 {
|
|
12578
12867
|
/**
|
|
12579
|
-
* AWS authentication credentials used for accessing AWS services such as S3. If omitted, the system
|
|
12868
|
+
* 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).
|
|
12580
12869
|
*/
|
|
12581
12870
|
auth?: outputs.ObservabilityPipelineConfigSourcesAmazonS3Auth;
|
|
12582
12871
|
/**
|
|
@@ -12608,7 +12897,7 @@ export interface ObservabilityPipelineConfigSourcesAmazonS3Auth {
|
|
|
12608
12897
|
}
|
|
12609
12898
|
export interface ObservabilityPipelineConfigSourcesAmazonS3Tls {
|
|
12610
12899
|
/**
|
|
12611
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12900
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12612
12901
|
*/
|
|
12613
12902
|
caFile?: string;
|
|
12614
12903
|
/**
|
|
@@ -12632,7 +12921,7 @@ export interface ObservabilityPipelineConfigSourcesDatadogAgent {
|
|
|
12632
12921
|
}
|
|
12633
12922
|
export interface ObservabilityPipelineConfigSourcesDatadogAgentTls {
|
|
12634
12923
|
/**
|
|
12635
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12924
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12636
12925
|
*/
|
|
12637
12926
|
caFile?: string;
|
|
12638
12927
|
/**
|
|
@@ -12656,7 +12945,7 @@ export interface ObservabilityPipelineConfigSourcesFluentBit {
|
|
|
12656
12945
|
}
|
|
12657
12946
|
export interface ObservabilityPipelineConfigSourcesFluentBitTls {
|
|
12658
12947
|
/**
|
|
12659
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12948
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12660
12949
|
*/
|
|
12661
12950
|
caFile?: string;
|
|
12662
12951
|
/**
|
|
@@ -12680,7 +12969,7 @@ export interface ObservabilityPipelineConfigSourcesFluentd {
|
|
|
12680
12969
|
}
|
|
12681
12970
|
export interface ObservabilityPipelineConfigSourcesFluentdTls {
|
|
12682
12971
|
/**
|
|
12683
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
12972
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12684
12973
|
*/
|
|
12685
12974
|
caFile?: string;
|
|
12686
12975
|
/**
|
|
@@ -12726,7 +13015,7 @@ export interface ObservabilityPipelineConfigSourcesGooglePubsubAuth {
|
|
|
12726
13015
|
}
|
|
12727
13016
|
export interface ObservabilityPipelineConfigSourcesGooglePubsubTls {
|
|
12728
13017
|
/**
|
|
12729
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
13018
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12730
13019
|
*/
|
|
12731
13020
|
caFile?: string;
|
|
12732
13021
|
/**
|
|
@@ -12766,7 +13055,7 @@ export interface ObservabilityPipelineConfigSourcesHttpClient {
|
|
|
12766
13055
|
}
|
|
12767
13056
|
export interface ObservabilityPipelineConfigSourcesHttpClientTls {
|
|
12768
13057
|
/**
|
|
12769
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
13058
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12770
13059
|
*/
|
|
12771
13060
|
caFile?: string;
|
|
12772
13061
|
/**
|
|
@@ -12798,7 +13087,7 @@ export interface ObservabilityPipelineConfigSourcesHttpServer {
|
|
|
12798
13087
|
}
|
|
12799
13088
|
export interface ObservabilityPipelineConfigSourcesHttpServerTls {
|
|
12800
13089
|
/**
|
|
12801
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
13090
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12802
13091
|
*/
|
|
12803
13092
|
caFile?: string;
|
|
12804
13093
|
/**
|
|
@@ -12854,7 +13143,7 @@ export interface ObservabilityPipelineConfigSourcesKafkaSasl {
|
|
|
12854
13143
|
}
|
|
12855
13144
|
export interface ObservabilityPipelineConfigSourcesKafkaTls {
|
|
12856
13145
|
/**
|
|
12857
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
13146
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12858
13147
|
*/
|
|
12859
13148
|
caFile?: string;
|
|
12860
13149
|
/**
|
|
@@ -12878,7 +13167,7 @@ export interface ObservabilityPipelineConfigSourcesLogstash {
|
|
|
12878
13167
|
}
|
|
12879
13168
|
export interface ObservabilityPipelineConfigSourcesLogstashTls {
|
|
12880
13169
|
/**
|
|
12881
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
13170
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12882
13171
|
*/
|
|
12883
13172
|
caFile?: string;
|
|
12884
13173
|
/**
|
|
@@ -12906,7 +13195,55 @@ export interface ObservabilityPipelineConfigSourcesRsyslog {
|
|
|
12906
13195
|
}
|
|
12907
13196
|
export interface ObservabilityPipelineConfigSourcesRsyslogTls {
|
|
12908
13197
|
/**
|
|
12909
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
13198
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
13199
|
+
*/
|
|
13200
|
+
caFile?: string;
|
|
13201
|
+
/**
|
|
13202
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
13203
|
+
*/
|
|
13204
|
+
crtFile?: string;
|
|
13205
|
+
/**
|
|
13206
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
13207
|
+
*/
|
|
13208
|
+
keyFile?: string;
|
|
13209
|
+
}
|
|
13210
|
+
export interface ObservabilityPipelineConfigSourcesSocket {
|
|
13211
|
+
/**
|
|
13212
|
+
* Defines the framing method for incoming messages.
|
|
13213
|
+
*/
|
|
13214
|
+
framing?: outputs.ObservabilityPipelineConfigSourcesSocketFraming;
|
|
13215
|
+
/**
|
|
13216
|
+
* The unique identifier for this component.
|
|
13217
|
+
*/
|
|
13218
|
+
id: string;
|
|
13219
|
+
/**
|
|
13220
|
+
* The protocol used to receive logs. Valid values are `tcp`, `udp`.
|
|
13221
|
+
*/
|
|
13222
|
+
mode: string;
|
|
13223
|
+
/**
|
|
13224
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
13225
|
+
*/
|
|
13226
|
+
tls?: outputs.ObservabilityPipelineConfigSourcesSocketTls;
|
|
13227
|
+
}
|
|
13228
|
+
export interface ObservabilityPipelineConfigSourcesSocketFraming {
|
|
13229
|
+
/**
|
|
13230
|
+
* Used when `method` is `characterDelimited`. Specifies the delimiter character.
|
|
13231
|
+
*/
|
|
13232
|
+
characterDelimited?: outputs.ObservabilityPipelineConfigSourcesSocketFramingCharacterDelimited;
|
|
13233
|
+
/**
|
|
13234
|
+
* The framing method. Valid values are `newlineDelimited`, `bytes`, `characterDelimited`, `octetCounting`, `chunkedGelf`.
|
|
13235
|
+
*/
|
|
13236
|
+
method?: string;
|
|
13237
|
+
}
|
|
13238
|
+
export interface ObservabilityPipelineConfigSourcesSocketFramingCharacterDelimited {
|
|
13239
|
+
/**
|
|
13240
|
+
* A single ASCII character used as a delimiter.
|
|
13241
|
+
*/
|
|
13242
|
+
delimiter?: string;
|
|
13243
|
+
}
|
|
13244
|
+
export interface ObservabilityPipelineConfigSourcesSocketTls {
|
|
13245
|
+
/**
|
|
13246
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12910
13247
|
*/
|
|
12911
13248
|
caFile?: string;
|
|
12912
13249
|
/**
|
|
@@ -12930,7 +13267,7 @@ export interface ObservabilityPipelineConfigSourcesSplunkHec {
|
|
|
12930
13267
|
}
|
|
12931
13268
|
export interface ObservabilityPipelineConfigSourcesSplunkHecTls {
|
|
12932
13269
|
/**
|
|
12933
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
13270
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12934
13271
|
*/
|
|
12935
13272
|
caFile?: string;
|
|
12936
13273
|
/**
|
|
@@ -12954,7 +13291,7 @@ export interface ObservabilityPipelineConfigSourcesSplunkTcp {
|
|
|
12954
13291
|
}
|
|
12955
13292
|
export interface ObservabilityPipelineConfigSourcesSplunkTcpTls {
|
|
12956
13293
|
/**
|
|
12957
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
13294
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12958
13295
|
*/
|
|
12959
13296
|
caFile?: string;
|
|
12960
13297
|
/**
|
|
@@ -12988,7 +13325,7 @@ export interface ObservabilityPipelineConfigSourcesSyslogNg {
|
|
|
12988
13325
|
}
|
|
12989
13326
|
export interface ObservabilityPipelineConfigSourcesSyslogNgTls {
|
|
12990
13327
|
/**
|
|
12991
|
-
* Path to the Certificate Authority (CA) file used to validate the server
|
|
13328
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
12992
13329
|
*/
|
|
12993
13330
|
caFile?: string;
|
|
12994
13331
|
/**
|