@pulumi/datadog 4.64.0-alpha.1769172285 → 4.64.0-alpha.1769659438

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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"syntheticsSuite.js","sourceRoot":"","sources":["../syntheticsSuite.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;SAC1C;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;SACzC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AAhFL,0CAiFC;AAnEG,gBAAgB;AACO,4BAAY,GAAG,+CAA+C,CAAC"}
package/types/input.d.ts CHANGED
@@ -12427,6 +12427,10 @@ export interface MonitorVariables {
12427
12427
  * The Cloud Cost query using formulas and functions.
12428
12428
  */
12429
12429
  cloudCostQueries?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesCloudCostQuery>[]>;
12430
+ /**
12431
+ * The Data Quality query using formulas and functions.
12432
+ */
12433
+ dataQualityQueries?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesDataQualityQuery>[]>;
12430
12434
  /**
12431
12435
  * A timeseries formula and functions events query.
12432
12436
  */
@@ -12450,13 +12454,69 @@ export interface MonitorVariablesCloudCostQuery {
12450
12454
  */
12451
12455
  query: pulumi.Input<string>;
12452
12456
  }
12457
+ export interface MonitorVariablesDataQualityQuery {
12458
+ /**
12459
+ * The data source for data quality queries. Valid value is `dataQualityMetrics`. Valid values are `dataQualityMetrics`.
12460
+ */
12461
+ dataSource: pulumi.Input<string>;
12462
+ /**
12463
+ * Filter expression used to match on data entities. Uses AAstra query syntax.
12464
+ */
12465
+ filter: pulumi.Input<string>;
12466
+ /**
12467
+ * Optional grouping fields for aggregation.
12468
+ */
12469
+ groupBies?: pulumi.Input<pulumi.Input<string>[]>;
12470
+ /**
12471
+ * The measure to query. Common values include `bytes`, `cardinality`, `custom`, `freshness`, `max`, `mean`, `min`, `nullness`, `percentNegative`, `percentZero`, `rowCount`, `stddev`, `sum`, `uniqueness`. Additional values may be supported.
12472
+ */
12473
+ measure: pulumi.Input<string>;
12474
+ /**
12475
+ * Monitor configuration options for data quality queries.
12476
+ */
12477
+ monitorOptions?: pulumi.Input<inputs.MonitorVariablesDataQualityQueryMonitorOptions>;
12478
+ /**
12479
+ * The name of the query for use in formulas.
12480
+ */
12481
+ name: pulumi.Input<string>;
12482
+ /**
12483
+ * Schema version for the data quality query.
12484
+ */
12485
+ schemaVersion?: pulumi.Input<string>;
12486
+ /**
12487
+ * Optional scoping expression to further filter metrics.
12488
+ */
12489
+ scope?: pulumi.Input<string>;
12490
+ }
12491
+ export interface MonitorVariablesDataQualityQueryMonitorOptions {
12492
+ /**
12493
+ * Crontab expression to override the default schedule.
12494
+ */
12495
+ crontabOverride?: pulumi.Input<string>;
12496
+ /**
12497
+ * Custom SQL query for the monitor.
12498
+ */
12499
+ customSql?: pulumi.Input<string>;
12500
+ /**
12501
+ * Custom WHERE clause for the query.
12502
+ */
12503
+ customWhere?: pulumi.Input<string>;
12504
+ /**
12505
+ * Columns to group results by.
12506
+ */
12507
+ groupByColumns?: pulumi.Input<pulumi.Input<string>[]>;
12508
+ /**
12509
+ * Override for the model type. Valid values are `freshness`, `percentage`, `any`.
12510
+ */
12511
+ modelTypeOverride?: pulumi.Input<string>;
12512
+ }
12453
12513
  export interface MonitorVariablesEventQuery {
12454
12514
  /**
12455
12515
  * The compute options.
12456
12516
  */
12457
12517
  computes: pulumi.Input<pulumi.Input<inputs.MonitorVariablesEventQueryCompute>[]>;
12458
12518
  /**
12459
- * The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`.
12519
+ * The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`, `networkPath`.
12460
12520
  */
12461
12521
  dataSource: pulumi.Input<string>;
12462
12522
  /**
@@ -12541,6 +12601,10 @@ export interface ObservabilityPipelineConfig {
12541
12601
  * List of sources.
12542
12602
  */
12543
12603
  sources?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSource>[]>;
12604
+ /**
12605
+ * Set to `true` to continue using the legacy search syntax while migrating filter queries. After migrating all queries to the new syntax, set to `false`. The legacy syntax is deprecated and will eventually be removed. Requires Observability Pipelines Worker 2.11 or later. See https://docs.datadoghq.com/observability*pipelines/guide/upgrade*your*filter*queries*to*the*new*search_syntax/ for more information.
12606
+ */
12607
+ useLegacySearchSyntax?: pulumi.Input<boolean>;
12544
12608
  }
12545
12609
  export interface ObservabilityPipelineConfigDestination {
12546
12610
  /**
@@ -12579,10 +12643,6 @@ export interface ObservabilityPipelineConfigDestination {
12579
12643
  * The `elasticsearch` destination writes logs to an Elasticsearch cluster.
12580
12644
  */
12581
12645
  elasticsearches?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationElasticsearch>[]>;
12582
- /**
12583
- * The `googleChronicle` destination sends logs to Google Chronicle.
12584
- */
12585
- googleChronicles?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationGoogleChronicle>[]>;
12586
12646
  /**
12587
12647
  * The `googleCloudStorage` destination stores logs in a Google Cloud Storage (GCS) bucket.
12588
12648
  */
@@ -12591,6 +12651,10 @@ export interface ObservabilityPipelineConfigDestination {
12591
12651
  * The `googlePubsub` destination publishes logs to a Google Cloud Pub/Sub topic.
12592
12652
  */
12593
12653
  googlePubsubs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationGooglePubsub>[]>;
12654
+ /**
12655
+ * The `googleChronicle` destination sends logs to Google SecOps.
12656
+ */
12657
+ googleSecops?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationGoogleSecop>[]>;
12594
12658
  /**
12595
12659
  * The `httpClient` destination sends data to an HTTP endpoint.
12596
12660
  */
@@ -12810,6 +12874,28 @@ export interface ObservabilityPipelineConfigDestinationCrowdstrikeNextGenSiemTls
12810
12874
  keyFile?: pulumi.Input<string>;
12811
12875
  }
12812
12876
  export interface ObservabilityPipelineConfigDestinationDatadogLog {
12877
+ /**
12878
+ * A list of routing rules that forward matching logs to Datadog using dedicated API keys.
12879
+ */
12880
+ routes?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationDatadogLogRoute>[]>;
12881
+ }
12882
+ export interface ObservabilityPipelineConfigDestinationDatadogLogRoute {
12883
+ /**
12884
+ * Name of the environment variable or secret that stores the Datadog API key used by this route.
12885
+ */
12886
+ apiKeyKey: pulumi.Input<string>;
12887
+ /**
12888
+ * A Datadog search query that determines which logs are forwarded using this route.
12889
+ */
12890
+ include: pulumi.Input<string>;
12891
+ /**
12892
+ * Unique identifier for this route within the destination.
12893
+ */
12894
+ routeId: pulumi.Input<string>;
12895
+ /**
12896
+ * Datadog site where matching logs are sent (for example, `us1`).
12897
+ */
12898
+ site: pulumi.Input<string>;
12813
12899
  }
12814
12900
  export interface ObservabilityPipelineConfigDestinationDatadogMetric {
12815
12901
  }
@@ -12841,30 +12927,6 @@ export interface ObservabilityPipelineConfigDestinationElasticsearchDataStream {
12841
12927
  */
12842
12928
  namespace?: pulumi.Input<string>;
12843
12929
  }
12844
- export interface ObservabilityPipelineConfigDestinationGoogleChronicle {
12845
- /**
12846
- * GCP credentials used to authenticate with Google Cloud services.
12847
- */
12848
- auth?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationGoogleChronicleAuth>;
12849
- /**
12850
- * The Google Chronicle customer ID.
12851
- */
12852
- customerId?: pulumi.Input<string>;
12853
- /**
12854
- * The encoding format for the logs sent to Chronicle.
12855
- */
12856
- encoding?: pulumi.Input<string>;
12857
- /**
12858
- * The log type metadata associated with the Chronicle destination.
12859
- */
12860
- logType?: pulumi.Input<string>;
12861
- }
12862
- export interface ObservabilityPipelineConfigDestinationGoogleChronicleAuth {
12863
- /**
12864
- * Path to the GCP service account key file.
12865
- */
12866
- credentialsFile: pulumi.Input<string>;
12867
- }
12868
12930
  export interface ObservabilityPipelineConfigDestinationGoogleCloudStorage {
12869
12931
  /**
12870
12932
  * Access control list setting for objects written to the bucket.
@@ -12949,6 +13011,30 @@ export interface ObservabilityPipelineConfigDestinationGooglePubsubTls {
12949
13011
  */
12950
13012
  keyFile?: pulumi.Input<string>;
12951
13013
  }
13014
+ export interface ObservabilityPipelineConfigDestinationGoogleSecop {
13015
+ /**
13016
+ * GCP credentials used to authenticate with Google Cloud services.
13017
+ */
13018
+ auth?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationGoogleSecopAuth>;
13019
+ /**
13020
+ * The Google SecOps customer ID.
13021
+ */
13022
+ customerId: pulumi.Input<string>;
13023
+ /**
13024
+ * The encoding format for the logs sent to Google SecOps. Valid values are `json`, `rawMessage`.
13025
+ */
13026
+ encoding: pulumi.Input<string>;
13027
+ /**
13028
+ * The log type metadata associated with the Google SecOps destination.
13029
+ */
13030
+ logType: pulumi.Input<string>;
13031
+ }
13032
+ export interface ObservabilityPipelineConfigDestinationGoogleSecopAuth {
13033
+ /**
13034
+ * Path to the GCP service account key file.
13035
+ */
13036
+ credentialsFile: pulumi.Input<string>;
13037
+ }
12952
13038
  export interface ObservabilityPipelineConfigDestinationHttpClient {
12953
13039
  /**
12954
13040
  * HTTP authentication strategy. Valid values are `none`, `basic`, `bearer`.
@@ -14628,7 +14714,7 @@ export interface OnCallScheduleLayer {
14628
14714
  */
14629
14715
  timeZone?: pulumi.Input<string>;
14630
14716
  /**
14631
- * List of user IDs for the layer. Can either be a valid user id or null
14717
+ * List of user IDs for the layer. Can either be a valid user id or `null` to represent No-one.
14632
14718
  */
14633
14719
  users: pulumi.Input<pulumi.Input<string>[]>;
14634
14720
  }
@@ -27453,6 +27539,22 @@ export interface SyntheticsPrivateLocationMetadata {
27453
27539
  */
27454
27540
  restrictedRoles?: pulumi.Input<pulumi.Input<string>[]>;
27455
27541
  }
27542
+ export interface SyntheticsSuiteOption {
27543
+ /**
27544
+ * Alerting threshold for the suite. Value must be between 0.000000 and 1.000000.
27545
+ */
27546
+ alertingThreshold: pulumi.Input<number>;
27547
+ }
27548
+ export interface SyntheticsSuiteTest {
27549
+ /**
27550
+ * Alerting criticality for the test. Valid values are `ignore`, `critical`.
27551
+ */
27552
+ alertingCriticality?: pulumi.Input<string>;
27553
+ /**
27554
+ * Public ID of the test.
27555
+ */
27556
+ publicId: pulumi.Input<string>;
27557
+ }
27456
27558
  export interface SyntheticsTestApiStep {
27457
27559
  /**
27458
27560
  * Determines whether or not to continue with test if this step fails.
@@ -28284,7 +28386,7 @@ export interface SyntheticsTestMobileOptionsListMonitorOptions {
28284
28386
  */
28285
28387
  escalationMessage?: pulumi.Input<string>;
28286
28388
  /**
28287
- * The name of the preset for the notification for the monitor. Valid values are `showAll`, `hideAll`, `hideQuery`, `hideHandles`.
28389
+ * The name of the preset for the notification for the monitor. Valid values are `showAll`, `hideAll`, `hideQuery`, `hideHandles`, `hideQueryAndHandles`, `showOnlySnapshot`, `hideHandlesAndFooter`.
28288
28390
  */
28289
28391
  notificationPresetName?: pulumi.Input<string>;
28290
28392
  /**
@@ -28553,7 +28655,7 @@ export interface SyntheticsTestOptionsListMonitorOptions {
28553
28655
  */
28554
28656
  escalationMessage?: pulumi.Input<string>;
28555
28657
  /**
28556
- * The name of the preset for the notification for the monitor. Valid values are `showAll`, `hideAll`, `hideQuery`, `hideHandles`.
28658
+ * The name of the preset for the notification for the monitor. Valid values are `showAll`, `hideAll`, `hideQuery`, `hideHandles`, `hideQueryAndHandles`, `showOnlySnapshot`, `hideHandlesAndFooter`.
28557
28659
  */
28558
28660
  notificationPresetName?: pulumi.Input<string>;
28559
28661
  /**
package/types/output.d.ts CHANGED
@@ -10136,6 +10136,14 @@ export interface GetRumRetentionFiltersRetentionFilter {
10136
10136
  query: string;
10137
10137
  sampleRate: number;
10138
10138
  }
10139
+ export interface GetSecurityMonitoringCriticalAssetsCriticalAsset {
10140
+ enabled: boolean;
10141
+ id: string;
10142
+ query: string;
10143
+ ruleQuery: string;
10144
+ severity: string;
10145
+ tags: string[];
10146
+ }
10139
10147
  export interface GetSecurityMonitoringFiltersFilter {
10140
10148
  /**
10141
10149
  * Exclusion filters to exclude some logs from the security filter.
@@ -12599,6 +12607,10 @@ export interface MonitorVariables {
12599
12607
  * The Cloud Cost query using formulas and functions.
12600
12608
  */
12601
12609
  cloudCostQueries?: outputs.MonitorVariablesCloudCostQuery[];
12610
+ /**
12611
+ * The Data Quality query using formulas and functions.
12612
+ */
12613
+ dataQualityQueries?: outputs.MonitorVariablesDataQualityQuery[];
12602
12614
  /**
12603
12615
  * A timeseries formula and functions events query.
12604
12616
  */
@@ -12622,13 +12634,69 @@ export interface MonitorVariablesCloudCostQuery {
12622
12634
  */
12623
12635
  query: string;
12624
12636
  }
12637
+ export interface MonitorVariablesDataQualityQuery {
12638
+ /**
12639
+ * The data source for data quality queries. Valid value is `dataQualityMetrics`. Valid values are `dataQualityMetrics`.
12640
+ */
12641
+ dataSource: string;
12642
+ /**
12643
+ * Filter expression used to match on data entities. Uses AAstra query syntax.
12644
+ */
12645
+ filter: string;
12646
+ /**
12647
+ * Optional grouping fields for aggregation.
12648
+ */
12649
+ groupBies?: string[];
12650
+ /**
12651
+ * The measure to query. Common values include `bytes`, `cardinality`, `custom`, `freshness`, `max`, `mean`, `min`, `nullness`, `percentNegative`, `percentZero`, `rowCount`, `stddev`, `sum`, `uniqueness`. Additional values may be supported.
12652
+ */
12653
+ measure: string;
12654
+ /**
12655
+ * Monitor configuration options for data quality queries.
12656
+ */
12657
+ monitorOptions?: outputs.MonitorVariablesDataQualityQueryMonitorOptions;
12658
+ /**
12659
+ * The name of the query for use in formulas.
12660
+ */
12661
+ name: string;
12662
+ /**
12663
+ * Schema version for the data quality query.
12664
+ */
12665
+ schemaVersion?: string;
12666
+ /**
12667
+ * Optional scoping expression to further filter metrics.
12668
+ */
12669
+ scope?: string;
12670
+ }
12671
+ export interface MonitorVariablesDataQualityQueryMonitorOptions {
12672
+ /**
12673
+ * Crontab expression to override the default schedule.
12674
+ */
12675
+ crontabOverride?: string;
12676
+ /**
12677
+ * Custom SQL query for the monitor.
12678
+ */
12679
+ customSql?: string;
12680
+ /**
12681
+ * Custom WHERE clause for the query.
12682
+ */
12683
+ customWhere?: string;
12684
+ /**
12685
+ * Columns to group results by.
12686
+ */
12687
+ groupByColumns?: string[];
12688
+ /**
12689
+ * Override for the model type. Valid values are `freshness`, `percentage`, `any`.
12690
+ */
12691
+ modelTypeOverride?: string;
12692
+ }
12625
12693
  export interface MonitorVariablesEventQuery {
12626
12694
  /**
12627
12695
  * The compute options.
12628
12696
  */
12629
12697
  computes: outputs.MonitorVariablesEventQueryCompute[];
12630
12698
  /**
12631
- * The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`.
12699
+ * The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`, `networkPath`.
12632
12700
  */
12633
12701
  dataSource: string;
12634
12702
  /**
@@ -12713,6 +12781,10 @@ export interface ObservabilityPipelineConfig {
12713
12781
  * List of sources.
12714
12782
  */
12715
12783
  sources?: outputs.ObservabilityPipelineConfigSource[];
12784
+ /**
12785
+ * Set to `true` to continue using the legacy search syntax while migrating filter queries. After migrating all queries to the new syntax, set to `false`. The legacy syntax is deprecated and will eventually be removed. Requires Observability Pipelines Worker 2.11 or later. See https://docs.datadoghq.com/observability*pipelines/guide/upgrade*your*filter*queries*to*the*new*search_syntax/ for more information.
12786
+ */
12787
+ useLegacySearchSyntax?: boolean;
12716
12788
  }
12717
12789
  export interface ObservabilityPipelineConfigDestination {
12718
12790
  /**
@@ -12751,10 +12823,6 @@ export interface ObservabilityPipelineConfigDestination {
12751
12823
  * The `elasticsearch` destination writes logs to an Elasticsearch cluster.
12752
12824
  */
12753
12825
  elasticsearches?: outputs.ObservabilityPipelineConfigDestinationElasticsearch[];
12754
- /**
12755
- * The `googleChronicle` destination sends logs to Google Chronicle.
12756
- */
12757
- googleChronicles?: outputs.ObservabilityPipelineConfigDestinationGoogleChronicle[];
12758
12826
  /**
12759
12827
  * The `googleCloudStorage` destination stores logs in a Google Cloud Storage (GCS) bucket.
12760
12828
  */
@@ -12763,6 +12831,10 @@ export interface ObservabilityPipelineConfigDestination {
12763
12831
  * The `googlePubsub` destination publishes logs to a Google Cloud Pub/Sub topic.
12764
12832
  */
12765
12833
  googlePubsubs?: outputs.ObservabilityPipelineConfigDestinationGooglePubsub[];
12834
+ /**
12835
+ * The `googleChronicle` destination sends logs to Google SecOps.
12836
+ */
12837
+ googleSecops?: outputs.ObservabilityPipelineConfigDestinationGoogleSecop[];
12766
12838
  /**
12767
12839
  * The `httpClient` destination sends data to an HTTP endpoint.
12768
12840
  */
@@ -12982,6 +13054,28 @@ export interface ObservabilityPipelineConfigDestinationCrowdstrikeNextGenSiemTls
12982
13054
  keyFile?: string;
12983
13055
  }
12984
13056
  export interface ObservabilityPipelineConfigDestinationDatadogLog {
13057
+ /**
13058
+ * A list of routing rules that forward matching logs to Datadog using dedicated API keys.
13059
+ */
13060
+ routes?: outputs.ObservabilityPipelineConfigDestinationDatadogLogRoute[];
13061
+ }
13062
+ export interface ObservabilityPipelineConfigDestinationDatadogLogRoute {
13063
+ /**
13064
+ * Name of the environment variable or secret that stores the Datadog API key used by this route.
13065
+ */
13066
+ apiKeyKey: string;
13067
+ /**
13068
+ * A Datadog search query that determines which logs are forwarded using this route.
13069
+ */
13070
+ include: string;
13071
+ /**
13072
+ * Unique identifier for this route within the destination.
13073
+ */
13074
+ routeId: string;
13075
+ /**
13076
+ * Datadog site where matching logs are sent (for example, `us1`).
13077
+ */
13078
+ site: string;
12985
13079
  }
12986
13080
  export interface ObservabilityPipelineConfigDestinationDatadogMetric {
12987
13081
  }
@@ -13013,30 +13107,6 @@ export interface ObservabilityPipelineConfigDestinationElasticsearchDataStream {
13013
13107
  */
13014
13108
  namespace?: string;
13015
13109
  }
13016
- export interface ObservabilityPipelineConfigDestinationGoogleChronicle {
13017
- /**
13018
- * GCP credentials used to authenticate with Google Cloud services.
13019
- */
13020
- auth?: outputs.ObservabilityPipelineConfigDestinationGoogleChronicleAuth;
13021
- /**
13022
- * The Google Chronicle customer ID.
13023
- */
13024
- customerId?: string;
13025
- /**
13026
- * The encoding format for the logs sent to Chronicle.
13027
- */
13028
- encoding?: string;
13029
- /**
13030
- * The log type metadata associated with the Chronicle destination.
13031
- */
13032
- logType?: string;
13033
- }
13034
- export interface ObservabilityPipelineConfigDestinationGoogleChronicleAuth {
13035
- /**
13036
- * Path to the GCP service account key file.
13037
- */
13038
- credentialsFile: string;
13039
- }
13040
13110
  export interface ObservabilityPipelineConfigDestinationGoogleCloudStorage {
13041
13111
  /**
13042
13112
  * Access control list setting for objects written to the bucket.
@@ -13121,6 +13191,30 @@ export interface ObservabilityPipelineConfigDestinationGooglePubsubTls {
13121
13191
  */
13122
13192
  keyFile?: string;
13123
13193
  }
13194
+ export interface ObservabilityPipelineConfigDestinationGoogleSecop {
13195
+ /**
13196
+ * GCP credentials used to authenticate with Google Cloud services.
13197
+ */
13198
+ auth?: outputs.ObservabilityPipelineConfigDestinationGoogleSecopAuth;
13199
+ /**
13200
+ * The Google SecOps customer ID.
13201
+ */
13202
+ customerId: string;
13203
+ /**
13204
+ * The encoding format for the logs sent to Google SecOps. Valid values are `json`, `rawMessage`.
13205
+ */
13206
+ encoding: string;
13207
+ /**
13208
+ * The log type metadata associated with the Google SecOps destination.
13209
+ */
13210
+ logType: string;
13211
+ }
13212
+ export interface ObservabilityPipelineConfigDestinationGoogleSecopAuth {
13213
+ /**
13214
+ * Path to the GCP service account key file.
13215
+ */
13216
+ credentialsFile: string;
13217
+ }
13124
13218
  export interface ObservabilityPipelineConfigDestinationHttpClient {
13125
13219
  /**
13126
13220
  * HTTP authentication strategy. Valid values are `none`, `basic`, `bearer`.
@@ -14800,7 +14894,7 @@ export interface OnCallScheduleLayer {
14800
14894
  */
14801
14895
  timeZone?: string;
14802
14896
  /**
14803
- * List of user IDs for the layer. Can either be a valid user id or null
14897
+ * List of user IDs for the layer. Can either be a valid user id or `null` to represent No-one.
14804
14898
  */
14805
14899
  users: string[];
14806
14900
  }
@@ -27617,6 +27711,22 @@ export interface SyntheticsPrivateLocationMetadata {
27617
27711
  */
27618
27712
  restrictedRoles?: string[];
27619
27713
  }
27714
+ export interface SyntheticsSuiteOption {
27715
+ /**
27716
+ * Alerting threshold for the suite. Value must be between 0.000000 and 1.000000.
27717
+ */
27718
+ alertingThreshold: number;
27719
+ }
27720
+ export interface SyntheticsSuiteTest {
27721
+ /**
27722
+ * Alerting criticality for the test. Valid values are `ignore`, `critical`.
27723
+ */
27724
+ alertingCriticality?: string;
27725
+ /**
27726
+ * Public ID of the test.
27727
+ */
27728
+ publicId: string;
27729
+ }
27620
27730
  export interface SyntheticsTestApiStep {
27621
27731
  /**
27622
27732
  * Determines whether or not to continue with test if this step fails.
@@ -28448,7 +28558,7 @@ export interface SyntheticsTestMobileOptionsListMonitorOptions {
28448
28558
  */
28449
28559
  escalationMessage?: string;
28450
28560
  /**
28451
- * The name of the preset for the notification for the monitor. Valid values are `showAll`, `hideAll`, `hideQuery`, `hideHandles`.
28561
+ * The name of the preset for the notification for the monitor. Valid values are `showAll`, `hideAll`, `hideQuery`, `hideHandles`, `hideQueryAndHandles`, `showOnlySnapshot`, `hideHandlesAndFooter`.
28452
28562
  */
28453
28563
  notificationPresetName?: string;
28454
28564
  /**
@@ -28717,7 +28827,7 @@ export interface SyntheticsTestOptionsListMonitorOptions {
28717
28827
  */
28718
28828
  escalationMessage?: string;
28719
28829
  /**
28720
- * The name of the preset for the notification for the monitor. Valid values are `showAll`, `hideAll`, `hideQuery`, `hideHandles`.
28830
+ * The name of the preset for the notification for the monitor. Valid values are `showAll`, `hideAll`, `hideQuery`, `hideHandles`, `hideQueryAndHandles`, `showOnlySnapshot`, `hideHandlesAndFooter`.
28721
28831
  */
28722
28832
  notificationPresetName?: string;
28723
28833
  /**