@pulumi/datadog 4.56.0-alpha.1758001892 → 4.56.0-alpha.1758166292
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/csmThreatsAgentRule.d.ts +1 -1
- package/csmThreatsAgentRule.js +1 -1
- package/csmThreatsPolicy.d.ts +1 -1
- package/csmThreatsPolicy.js +1 -1
- package/gcp/integration.d.ts +33 -7
- package/gcp/integration.js +2 -0
- package/gcp/integration.js.map +1 -1
- package/gcp/integrationSts.d.ts +35 -11
- package/gcp/integrationSts.js +2 -0
- package/gcp/integrationSts.js.map +1 -1
- package/getIncidentNotificationRule.d.ts +108 -0
- package/getIncidentNotificationRule.js +52 -0
- package/getIncidentNotificationRule.js.map +1 -0
- package/getIncidentNotificationTemplate.d.ts +94 -0
- package/getIncidentNotificationTemplate.js +54 -0
- package/getIncidentNotificationTemplate.js.map +1 -0
- package/incidentNotificationRule.d.ts +220 -0
- package/incidentNotificationRule.js +146 -0
- package/incidentNotificationRule.js.map +1 -0
- package/incidentNotificationTemplate.d.ts +169 -0
- package/incidentNotificationTemplate.js +133 -0
- package/incidentNotificationTemplate.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +20 -3
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/securityMonitoringRule.d.ts +24 -0
- package/securityMonitoringRule.js +4 -0
- package/securityMonitoringRule.js.map +1 -1
- package/securityMonitoringSuppression.d.ts +12 -0
- package/securityMonitoringSuppression.js +2 -0
- package/securityMonitoringSuppression.js.map +1 -1
- package/types/input.d.ts +78 -0
- package/types/output.d.ts +108 -0
package/types/output.d.ts
CHANGED
|
@@ -9134,6 +9134,16 @@ export interface GetHostsHostListMetrics {
|
|
|
9134
9134
|
iowait: number;
|
|
9135
9135
|
load: number;
|
|
9136
9136
|
}
|
|
9137
|
+
export interface GetIncidentNotificationRuleCondition {
|
|
9138
|
+
/**
|
|
9139
|
+
* The incident field to evaluate. Common values include: state, severity, services, teams. Custom fields are also supported.
|
|
9140
|
+
*/
|
|
9141
|
+
field: string;
|
|
9142
|
+
/**
|
|
9143
|
+
* The value(s) to compare against.
|
|
9144
|
+
*/
|
|
9145
|
+
values: string[];
|
|
9146
|
+
}
|
|
9137
9147
|
export interface GetLogsIndexesLogsIndex {
|
|
9138
9148
|
/**
|
|
9139
9149
|
* The number of log events you can send in this index per day before you are rate-limited.
|
|
@@ -9410,6 +9420,10 @@ export interface GetSecurityMonitoringFiltersFilterExclusionFilter {
|
|
|
9410
9420
|
query: string;
|
|
9411
9421
|
}
|
|
9412
9422
|
export interface GetSecurityMonitoringRulesRule {
|
|
9423
|
+
/**
|
|
9424
|
+
* One or more calculated fields. Available only for scheduled rules (in other words, when `schedulingOptions` is defined).
|
|
9425
|
+
*/
|
|
9426
|
+
calculatedFields?: outputs.GetSecurityMonitoringRulesRuleCalculatedField[];
|
|
9413
9427
|
/**
|
|
9414
9428
|
* Cases for generating signals.
|
|
9415
9429
|
*/
|
|
@@ -9450,6 +9464,10 @@ export interface GetSecurityMonitoringRulesRule {
|
|
|
9450
9464
|
* Reference tables for filtering query results.
|
|
9451
9465
|
*/
|
|
9452
9466
|
referenceTables?: outputs.GetSecurityMonitoringRulesRuleReferenceTable[];
|
|
9467
|
+
/**
|
|
9468
|
+
* Options for scheduled rules. When this field is present, the rule runs based on the schedule. When absent, it runs in real time on ingested logs.
|
|
9469
|
+
*/
|
|
9470
|
+
schedulingOptions?: outputs.GetSecurityMonitoringRulesRuleSchedulingOptions;
|
|
9453
9471
|
/**
|
|
9454
9472
|
* Queries for selecting logs which are part of the rule.
|
|
9455
9473
|
*/
|
|
@@ -9467,6 +9485,16 @@ export interface GetSecurityMonitoringRulesRule {
|
|
|
9467
9485
|
*/
|
|
9468
9486
|
type?: string;
|
|
9469
9487
|
}
|
|
9488
|
+
export interface GetSecurityMonitoringRulesRuleCalculatedField {
|
|
9489
|
+
/**
|
|
9490
|
+
* Expression.
|
|
9491
|
+
*/
|
|
9492
|
+
expression: string;
|
|
9493
|
+
/**
|
|
9494
|
+
* Field name.
|
|
9495
|
+
*/
|
|
9496
|
+
name: string;
|
|
9497
|
+
}
|
|
9470
9498
|
export interface GetSecurityMonitoringRulesRuleCase {
|
|
9471
9499
|
/**
|
|
9472
9500
|
* Action to perform when the case trigger
|
|
@@ -9624,6 +9652,14 @@ export interface GetSecurityMonitoringRulesRuleQuery {
|
|
|
9624
9652
|
* Fields to group by.
|
|
9625
9653
|
*/
|
|
9626
9654
|
groupByFields?: string[];
|
|
9655
|
+
/**
|
|
9656
|
+
* When false, events without a group-by value are ignored by the rule. When true, events with missing group-by fields are processed with `N/A`, replacing the missing values.
|
|
9657
|
+
*/
|
|
9658
|
+
hasOptionalGroupByFields?: boolean;
|
|
9659
|
+
/**
|
|
9660
|
+
* List of indexes to run the query on when the data source is `logs`. Supports only one element. Used only for scheduled rules (in other words, when `schedulingOptions` is defined).
|
|
9661
|
+
*/
|
|
9662
|
+
indexes?: string[];
|
|
9627
9663
|
/**
|
|
9628
9664
|
* The target field to aggregate over when using the `sum`, `max`, or `geoData` aggregations.
|
|
9629
9665
|
*
|
|
@@ -9675,6 +9711,20 @@ export interface GetSecurityMonitoringRulesRuleReferenceTable {
|
|
|
9675
9711
|
*/
|
|
9676
9712
|
tableName: string;
|
|
9677
9713
|
}
|
|
9714
|
+
export interface GetSecurityMonitoringRulesRuleSchedulingOptions {
|
|
9715
|
+
/**
|
|
9716
|
+
* Schedule for the rule queries, written in RRULE syntax. See [RFC](https://icalendar.org/iCalendar-RFC-5545/3-8-5-3-recurrence-rule.html) for syntax reference.
|
|
9717
|
+
*/
|
|
9718
|
+
rrule: string;
|
|
9719
|
+
/**
|
|
9720
|
+
* Start date for the schedule, in ISO 8601 format without timezone.
|
|
9721
|
+
*/
|
|
9722
|
+
start: string;
|
|
9723
|
+
/**
|
|
9724
|
+
* Time zone of the start date, in the [tz database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) format.
|
|
9725
|
+
*/
|
|
9726
|
+
timezone: string;
|
|
9727
|
+
}
|
|
9678
9728
|
export interface GetSecurityMonitoringRulesRuleSignalQuery {
|
|
9679
9729
|
/**
|
|
9680
9730
|
* The aggregation type. For Signal Correlation rules, it must be event_count.
|
|
@@ -9814,6 +9864,16 @@ export interface GetUsersUser {
|
|
|
9814
9864
|
title: string;
|
|
9815
9865
|
verified: boolean;
|
|
9816
9866
|
}
|
|
9867
|
+
export interface IncidentNotificationRuleCondition {
|
|
9868
|
+
/**
|
|
9869
|
+
* The incident field to evaluate. Common values include: state, severity, services, teams. Custom fields are also supported.
|
|
9870
|
+
*/
|
|
9871
|
+
field: string;
|
|
9872
|
+
/**
|
|
9873
|
+
* The value(s) to compare against. Multiple values are ORed together.
|
|
9874
|
+
*/
|
|
9875
|
+
values: string[];
|
|
9876
|
+
}
|
|
9817
9877
|
export interface IpAllowlistEntry {
|
|
9818
9878
|
/**
|
|
9819
9879
|
* IP address or range of addresses. String must be a valid CIDR block or IP address.
|
|
@@ -25352,6 +25412,10 @@ export interface SecurityMonitoringDefaultRuleQuery {
|
|
|
25352
25412
|
* Fields to group by.
|
|
25353
25413
|
*/
|
|
25354
25414
|
groupByFields: string[];
|
|
25415
|
+
/**
|
|
25416
|
+
* When false, events without a group-by value are ignored by the rule. When true, events with missing group-by fields are processed with `N/A`, replacing the missing values.
|
|
25417
|
+
*/
|
|
25418
|
+
hasOptionalGroupByFields: boolean;
|
|
25355
25419
|
/**
|
|
25356
25420
|
* The target field to aggregate over when using the `sum`, `max`, or `geoData` aggregations. **Deprecated.** Configure `metrics` instead. This attribute will be removed in the next major version of the provider.
|
|
25357
25421
|
*
|
|
@@ -25391,6 +25455,16 @@ export interface SecurityMonitoringFilterExclusionFilter {
|
|
|
25391
25455
|
*/
|
|
25392
25456
|
query: string;
|
|
25393
25457
|
}
|
|
25458
|
+
export interface SecurityMonitoringRuleCalculatedField {
|
|
25459
|
+
/**
|
|
25460
|
+
* Expression.
|
|
25461
|
+
*/
|
|
25462
|
+
expression: string;
|
|
25463
|
+
/**
|
|
25464
|
+
* Field name.
|
|
25465
|
+
*/
|
|
25466
|
+
name: string;
|
|
25467
|
+
}
|
|
25394
25468
|
export interface SecurityMonitoringRuleCase {
|
|
25395
25469
|
/**
|
|
25396
25470
|
* Action to perform when the case trigger
|
|
@@ -25548,6 +25622,14 @@ export interface SecurityMonitoringRuleQuery {
|
|
|
25548
25622
|
* Fields to group by.
|
|
25549
25623
|
*/
|
|
25550
25624
|
groupByFields?: string[];
|
|
25625
|
+
/**
|
|
25626
|
+
* When false, events without a group-by value are ignored by the rule. When true, events with missing group-by fields are processed with `N/A`, replacing the missing values. Defaults to `false`.
|
|
25627
|
+
*/
|
|
25628
|
+
hasOptionalGroupByFields?: boolean;
|
|
25629
|
+
/**
|
|
25630
|
+
* List of indexes to run the query on when the data source is `logs`. Supports only one element. Used only for scheduled rules (in other words, when `schedulingOptions` is defined).
|
|
25631
|
+
*/
|
|
25632
|
+
indexes?: string[];
|
|
25551
25633
|
/**
|
|
25552
25634
|
* The target field to aggregate over when using the `sum`, `max`, or `geoData` aggregations. **Deprecated.** Configure `metrics` instead. This attribute will be removed in the next major version of the provider.
|
|
25553
25635
|
*
|
|
@@ -25599,6 +25681,20 @@ export interface SecurityMonitoringRuleReferenceTable {
|
|
|
25599
25681
|
*/
|
|
25600
25682
|
tableName: string;
|
|
25601
25683
|
}
|
|
25684
|
+
export interface SecurityMonitoringRuleSchedulingOptions {
|
|
25685
|
+
/**
|
|
25686
|
+
* Schedule for the rule queries, written in RRULE syntax. See [RFC](https://icalendar.org/iCalendar-RFC-5545/3-8-5-3-recurrence-rule.html) for syntax reference.
|
|
25687
|
+
*/
|
|
25688
|
+
rrule: string;
|
|
25689
|
+
/**
|
|
25690
|
+
* Start date for the schedule, in ISO 8601 format without timezone.
|
|
25691
|
+
*/
|
|
25692
|
+
start: string;
|
|
25693
|
+
/**
|
|
25694
|
+
* Time zone of the start date, in the [tz database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) format.
|
|
25695
|
+
*/
|
|
25696
|
+
timezone: string;
|
|
25697
|
+
}
|
|
25602
25698
|
export interface SecurityMonitoringRuleSignalQuery {
|
|
25603
25699
|
/**
|
|
25604
25700
|
* The aggregation type. For Signal Correlation rules, it must be event_count. Valid values are `count`, `cardinality`, `sum`, `max`, `newValue`, `geoData`, `eventCount`, `none`. Defaults to `"eventCount"`.
|
|
@@ -25897,6 +25993,10 @@ export interface SyntheticsTestApiStep {
|
|
|
25897
25993
|
* Generate variables using JavaScript.
|
|
25898
25994
|
*/
|
|
25899
25995
|
extractedValuesFromScript?: string;
|
|
25996
|
+
/**
|
|
25997
|
+
* ID of the step.
|
|
25998
|
+
*/
|
|
25999
|
+
id: string;
|
|
25900
26000
|
/**
|
|
25901
26001
|
* Determines whether or not to consider the entire test as failed if this step fails. Can be used only if `allowFailure` is `true`.
|
|
25902
26002
|
*/
|
|
@@ -27427,10 +27527,18 @@ export declare namespace config {
|
|
|
27427
27527
|
}
|
|
27428
27528
|
}
|
|
27429
27529
|
export declare namespace gcp {
|
|
27530
|
+
interface IntegrationMonitoredResourceConfig {
|
|
27531
|
+
filters: string[];
|
|
27532
|
+
type: string;
|
|
27533
|
+
}
|
|
27430
27534
|
interface IntegrationStsMetricNamespaceConfig {
|
|
27431
27535
|
disabled: boolean;
|
|
27432
27536
|
id: string;
|
|
27433
27537
|
}
|
|
27538
|
+
interface IntegrationStsMonitoredResourceConfig {
|
|
27539
|
+
filters: string[];
|
|
27540
|
+
type: string;
|
|
27541
|
+
}
|
|
27434
27542
|
}
|
|
27435
27543
|
export declare namespace slack {
|
|
27436
27544
|
interface ChannelDisplay {
|