@pulumi/datadog 5.4.0 → 5.5.0-alpha.1780549102
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/index.d.ts +3 -0
- package/index.d.ts.map +1 -1
- package/index.js +7 -2
- package/index.js.map +1 -1
- package/onCallTeamRoutingRules.d.ts +46 -1
- package/onCallTeamRoutingRules.d.ts.map +1 -1
- package/onCallTeamRoutingRules.js +46 -1
- package/onCallTeamRoutingRules.js.map +1 -1
- package/package.json +2 -2
- package/serviceAccessToken.d.ts +158 -0
- package/serviceAccessToken.d.ts.map +1 -0
- package/serviceAccessToken.js +138 -0
- package/serviceAccessToken.js.map +1 -0
- package/types/input.d.ts +138 -0
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +138 -0
- package/types/output.d.ts.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -66761,6 +66761,10 @@ export interface ObservabilityPipelineConfigDestination {
|
|
|
66761
66761
|
* The `socket` destination sends logs over TCP or UDP to a remote server.
|
|
66762
66762
|
*/
|
|
66763
66763
|
sockets?: outputs.ObservabilityPipelineConfigDestinationSocket[];
|
|
66764
|
+
/**
|
|
66765
|
+
* The `splunkHecMetrics` destination forwards metrics to Splunk using the HTTP Event Collector (HEC).
|
|
66766
|
+
*/
|
|
66767
|
+
splunkHecMetrics?: outputs.ObservabilityPipelineConfigDestinationSplunkHecMetrics;
|
|
66764
66768
|
/**
|
|
66765
66769
|
* The `splunkHec` destination forwards logs to Splunk using the HTTP Event Collector (HEC).
|
|
66766
66770
|
*/
|
|
@@ -68503,6 +68507,96 @@ export interface ObservabilityPipelineConfigDestinationSplunkHecBufferMemory {
|
|
|
68503
68507
|
*/
|
|
68504
68508
|
whenFull: string;
|
|
68505
68509
|
}
|
|
68510
|
+
export interface ObservabilityPipelineConfigDestinationSplunkHecMetrics {
|
|
68511
|
+
/**
|
|
68512
|
+
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
68513
|
+
*/
|
|
68514
|
+
buffer?: outputs.ObservabilityPipelineConfigDestinationSplunkHecMetricsBuffer;
|
|
68515
|
+
/**
|
|
68516
|
+
* Compression algorithm applied when sending metrics to Splunk HEC. Valid values are `none`, `gzip`.
|
|
68517
|
+
*/
|
|
68518
|
+
compression?: string;
|
|
68519
|
+
/**
|
|
68520
|
+
* Optional default namespace for metrics sent to Splunk HEC.
|
|
68521
|
+
*/
|
|
68522
|
+
defaultNamespace?: string;
|
|
68523
|
+
/**
|
|
68524
|
+
* Name of the environment variable or secret that holds the Splunk HEC endpoint URL.
|
|
68525
|
+
*/
|
|
68526
|
+
endpointUrlKey?: string;
|
|
68527
|
+
/**
|
|
68528
|
+
* Optional name of the Splunk index where metrics are written.
|
|
68529
|
+
*/
|
|
68530
|
+
index?: string;
|
|
68531
|
+
/**
|
|
68532
|
+
* The Splunk source field value for metric events.
|
|
68533
|
+
*/
|
|
68534
|
+
source?: string;
|
|
68535
|
+
/**
|
|
68536
|
+
* The Splunk sourcetype to assign to metric events.
|
|
68537
|
+
*/
|
|
68538
|
+
sourcetype?: string;
|
|
68539
|
+
/**
|
|
68540
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
68541
|
+
*/
|
|
68542
|
+
tls?: outputs.ObservabilityPipelineConfigDestinationSplunkHecMetricsTls;
|
|
68543
|
+
/**
|
|
68544
|
+
* Name of the environment variable or secret that holds the Splunk HEC token.
|
|
68545
|
+
*/
|
|
68546
|
+
tokenKey?: string;
|
|
68547
|
+
}
|
|
68548
|
+
export interface ObservabilityPipelineConfigDestinationSplunkHecMetricsBuffer {
|
|
68549
|
+
/**
|
|
68550
|
+
* Options for configuring a disk buffer. Cannot be used with `memory`.
|
|
68551
|
+
*/
|
|
68552
|
+
disk?: outputs.ObservabilityPipelineConfigDestinationSplunkHecMetricsBufferDisk;
|
|
68553
|
+
/**
|
|
68554
|
+
* Options for configuring a memory buffer. Cannot be used with `disk`.
|
|
68555
|
+
*/
|
|
68556
|
+
memory?: outputs.ObservabilityPipelineConfigDestinationSplunkHecMetricsBufferMemory;
|
|
68557
|
+
}
|
|
68558
|
+
export interface ObservabilityPipelineConfigDestinationSplunkHecMetricsBufferDisk {
|
|
68559
|
+
/**
|
|
68560
|
+
* Maximum size of the disk buffer (in bytes).
|
|
68561
|
+
*/
|
|
68562
|
+
maxSize?: number;
|
|
68563
|
+
/**
|
|
68564
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
68565
|
+
*/
|
|
68566
|
+
whenFull: string;
|
|
68567
|
+
}
|
|
68568
|
+
export interface ObservabilityPipelineConfigDestinationSplunkHecMetricsBufferMemory {
|
|
68569
|
+
/**
|
|
68570
|
+
* Maximum events for the memory buffer.
|
|
68571
|
+
*/
|
|
68572
|
+
maxEvents?: number;
|
|
68573
|
+
/**
|
|
68574
|
+
* Maximum size of the memory buffer (in bytes).
|
|
68575
|
+
*/
|
|
68576
|
+
maxSize?: number;
|
|
68577
|
+
/**
|
|
68578
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
68579
|
+
*/
|
|
68580
|
+
whenFull: string;
|
|
68581
|
+
}
|
|
68582
|
+
export interface ObservabilityPipelineConfigDestinationSplunkHecMetricsTls {
|
|
68583
|
+
/**
|
|
68584
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
68585
|
+
*/
|
|
68586
|
+
caFile?: string;
|
|
68587
|
+
/**
|
|
68588
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
68589
|
+
*/
|
|
68590
|
+
crtFile: string;
|
|
68591
|
+
/**
|
|
68592
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
68593
|
+
*/
|
|
68594
|
+
keyFile?: string;
|
|
68595
|
+
/**
|
|
68596
|
+
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
68597
|
+
*/
|
|
68598
|
+
keyPassKey?: string;
|
|
68599
|
+
}
|
|
68506
68600
|
export interface ObservabilityPipelineConfigDestinationSumoLogic {
|
|
68507
68601
|
/**
|
|
68508
68602
|
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
@@ -70473,10 +70567,54 @@ export interface OnCallTeamRoutingRulesRule {
|
|
|
70473
70567
|
urgency?: string;
|
|
70474
70568
|
}
|
|
70475
70569
|
export interface OnCallTeamRoutingRulesRuleAction {
|
|
70570
|
+
escalationPolicy?: outputs.OnCallTeamRoutingRulesRuleActionEscalationPolicy;
|
|
70476
70571
|
sendSlackMessage?: outputs.OnCallTeamRoutingRulesRuleActionSendSlackMessage;
|
|
70477
70572
|
sendTeamsMessage?: outputs.OnCallTeamRoutingRulesRuleActionSendTeamsMessage;
|
|
70478
70573
|
triggerWorkflowAutomation?: outputs.OnCallTeamRoutingRulesRuleActionTriggerWorkflowAutomation;
|
|
70479
70574
|
}
|
|
70575
|
+
export interface OnCallTeamRoutingRulesRuleActionEscalationPolicy {
|
|
70576
|
+
/**
|
|
70577
|
+
* Number of minutes before an acknowledged page is re-triggered. Value must be between 30 and 4320.
|
|
70578
|
+
*/
|
|
70579
|
+
ackTimeoutMinutes?: number;
|
|
70580
|
+
/**
|
|
70581
|
+
* Escalation policy ID.
|
|
70582
|
+
*/
|
|
70583
|
+
policyId?: string;
|
|
70584
|
+
/**
|
|
70585
|
+
* Support hours during which the escalation policy will execute.
|
|
70586
|
+
*/
|
|
70587
|
+
supportHours?: outputs.OnCallTeamRoutingRulesRuleActionEscalationPolicySupportHours;
|
|
70588
|
+
/**
|
|
70589
|
+
* Urgency for pages created via this action. Valid values are `high`, `low`, `dynamic`.
|
|
70590
|
+
*/
|
|
70591
|
+
urgency?: string;
|
|
70592
|
+
}
|
|
70593
|
+
export interface OnCallTeamRoutingRulesRuleActionEscalationPolicySupportHours {
|
|
70594
|
+
restrictions?: outputs.OnCallTeamRoutingRulesRuleActionEscalationPolicySupportHoursRestriction[];
|
|
70595
|
+
/**
|
|
70596
|
+
* Specifies the time zone applicable to the restrictions, e.g. `America/New_York`.
|
|
70597
|
+
*/
|
|
70598
|
+
timeZone?: string;
|
|
70599
|
+
}
|
|
70600
|
+
export interface OnCallTeamRoutingRulesRuleActionEscalationPolicySupportHoursRestriction {
|
|
70601
|
+
/**
|
|
70602
|
+
* The weekday when the restriction period ends. Valid values are `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`.
|
|
70603
|
+
*/
|
|
70604
|
+
endDay?: string;
|
|
70605
|
+
/**
|
|
70606
|
+
* The time of day when the restriction ends (hh:mm:ss).
|
|
70607
|
+
*/
|
|
70608
|
+
endTime?: string;
|
|
70609
|
+
/**
|
|
70610
|
+
* The weekday when the restriction period starts. Valid values are `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`.
|
|
70611
|
+
*/
|
|
70612
|
+
startDay?: string;
|
|
70613
|
+
/**
|
|
70614
|
+
* The time of day when the restriction begins (hh:mm:ss).
|
|
70615
|
+
*/
|
|
70616
|
+
startTime?: string;
|
|
70617
|
+
}
|
|
70480
70618
|
export interface OnCallTeamRoutingRulesRuleActionSendSlackMessage {
|
|
70481
70619
|
/**
|
|
70482
70620
|
* Slack channel ID.
|