@pulumi/datadog 4.62.0 → 4.63.0-alpha.1769053855

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.
Files changed (39) hide show
  1. package/cloudInventorySyncConfig.d.ts +139 -0
  2. package/cloudInventorySyncConfig.js +111 -0
  3. package/cloudInventorySyncConfig.js.map +1 -0
  4. package/gcp/integrationSts.d.ts +24 -0
  5. package/gcp/integrationSts.js +4 -0
  6. package/gcp/integrationSts.js.map +1 -1
  7. package/getOrganizationSettings.d.ts +54 -0
  8. package/getOrganizationSettings.js +30 -0
  9. package/getOrganizationSettings.js.map +1 -0
  10. package/getServiceLevelObjective.d.ts +4 -0
  11. package/getServiceLevelObjective.js.map +1 -1
  12. package/getTeamNotificationRule.d.ts +128 -0
  13. package/getTeamNotificationRule.js +64 -0
  14. package/getTeamNotificationRule.js.map +1 -0
  15. package/getTeamNotificationRules.d.ts +78 -0
  16. package/getTeamNotificationRules.js +54 -0
  17. package/getTeamNotificationRules.js.map +1 -0
  18. package/index.d.ts +21 -0
  19. package/index.js +34 -5
  20. package/index.js.map +1 -1
  21. package/metricTagConfiguration.d.ts +9 -13
  22. package/metricTagConfiguration.js +0 -10
  23. package/metricTagConfiguration.js.map +1 -1
  24. package/onCallUserNotificationChannel.d.ts +59 -0
  25. package/onCallUserNotificationChannel.js +59 -0
  26. package/onCallUserNotificationChannel.js.map +1 -0
  27. package/onCallUserNotificationRule.d.ts +92 -0
  28. package/onCallUserNotificationRule.js +72 -0
  29. package/onCallUserNotificationRule.js.map +1 -0
  30. package/package.json +2 -2
  31. package/powerpack.d.ts +3 -3
  32. package/syntheticsGlobalVariable.d.ts +30 -21
  33. package/syntheticsGlobalVariable.js +5 -19
  34. package/syntheticsGlobalVariable.js.map +1 -1
  35. package/teamNotificationRule.d.ts +141 -0
  36. package/teamNotificationRule.js +103 -0
  37. package/teamNotificationRule.js.map +1 -0
  38. package/types/input.d.ts +865 -7
  39. package/types/output.d.ts +717 -7
package/types/input.d.ts CHANGED
@@ -371,6 +371,68 @@ export interface CloudConfigurationRuleFilter {
371
371
  */
372
372
  query: pulumi.Input<string>;
373
373
  }
374
+ export interface CloudInventorySyncConfigAws {
375
+ /**
376
+ * AWS Account ID of the account holding the bucket.
377
+ */
378
+ awsAccountId?: pulumi.Input<string>;
379
+ /**
380
+ * Name of the S3 bucket holding the inventory files.
381
+ */
382
+ destinationBucketName?: pulumi.Input<string>;
383
+ /**
384
+ * AWS Region of the bucket holding the inventory files.
385
+ */
386
+ destinationBucketRegion?: pulumi.Input<string>;
387
+ /**
388
+ * Prefix path within the bucket for inventory files.
389
+ */
390
+ destinationPrefix?: pulumi.Input<string>;
391
+ }
392
+ export interface CloudInventorySyncConfigAzure {
393
+ /**
394
+ * Azure Client ID.
395
+ */
396
+ clientId?: pulumi.Input<string>;
397
+ /**
398
+ * Azure Storage Container name.
399
+ */
400
+ container?: pulumi.Input<string>;
401
+ /**
402
+ * Azure Resource Group name.
403
+ */
404
+ resourceGroup?: pulumi.Input<string>;
405
+ /**
406
+ * Azure Storage Account name.
407
+ */
408
+ storageAccount?: pulumi.Input<string>;
409
+ /**
410
+ * Azure Subscription ID.
411
+ */
412
+ subscriptionId?: pulumi.Input<string>;
413
+ /**
414
+ * Azure Tenant ID.
415
+ */
416
+ tenantId?: pulumi.Input<string>;
417
+ }
418
+ export interface CloudInventorySyncConfigGcp {
419
+ /**
420
+ * Name of the GCS bucket holding the inventory files.
421
+ */
422
+ destinationBucketName?: pulumi.Input<string>;
423
+ /**
424
+ * GCP Project ID of the project holding the bucket.
425
+ */
426
+ projectId?: pulumi.Input<string>;
427
+ /**
428
+ * Service account email used for reading the bucket.
429
+ */
430
+ serviceAccountEmail?: pulumi.Input<string>;
431
+ /**
432
+ * Name of the source bucket the inventory report is generated for.
433
+ */
434
+ sourceBucketName?: pulumi.Input<string>;
435
+ }
374
436
  export interface ComplianceCustomFrameworkRequirement {
375
437
  /**
376
438
  * The controls of the requirement. Length must be at least 1.
@@ -782,6 +844,10 @@ export interface DashboardWidgetAlertGraphDefinition {
782
844
  * The ID of the monitor used by the widget.
783
845
  */
784
846
  alertId: pulumi.Input<string>;
847
+ /**
848
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
849
+ */
850
+ hideIncompleteCostData?: pulumi.Input<boolean>;
785
851
  /**
786
852
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
787
853
  */
@@ -916,6 +982,10 @@ export interface DashboardWidgetChangeDefinition {
916
982
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
917
983
  */
918
984
  customLinks?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetChangeDefinitionCustomLink>[]>;
985
+ /**
986
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
987
+ */
988
+ hideIncompleteCostData?: pulumi.Input<boolean>;
919
989
  /**
920
990
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
921
991
  */
@@ -1494,6 +1564,10 @@ export interface DashboardWidgetCheckStatusDefinition {
1494
1564
  * The kind of grouping to use. Valid values are `check`, `cluster`.
1495
1565
  */
1496
1566
  grouping: pulumi.Input<string>;
1567
+ /**
1568
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
1569
+ */
1570
+ hideIncompleteCostData?: pulumi.Input<boolean>;
1497
1571
  /**
1498
1572
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
1499
1573
  */
@@ -1516,6 +1590,10 @@ export interface DashboardWidgetCheckStatusDefinition {
1516
1590
  titleSize?: pulumi.Input<string>;
1517
1591
  }
1518
1592
  export interface DashboardWidgetDistributionDefinition {
1593
+ /**
1594
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
1595
+ */
1596
+ hideIncompleteCostData?: pulumi.Input<boolean>;
1519
1597
  /**
1520
1598
  * The size of the legend displayed in the widget.
1521
1599
  */
@@ -1701,6 +1779,10 @@ export interface DashboardWidgetEventStreamDefinition {
1701
1779
  * The size to use to display an event. Valid values are `s`, `l`.
1702
1780
  */
1703
1781
  eventSize?: pulumi.Input<string>;
1782
+ /**
1783
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
1784
+ */
1785
+ hideIncompleteCostData?: pulumi.Input<boolean>;
1704
1786
  /**
1705
1787
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
1706
1788
  */
@@ -1727,6 +1809,10 @@ export interface DashboardWidgetEventStreamDefinition {
1727
1809
  titleSize?: pulumi.Input<string>;
1728
1810
  }
1729
1811
  export interface DashboardWidgetEventTimelineDefinition {
1812
+ /**
1813
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
1814
+ */
1815
+ hideIncompleteCostData?: pulumi.Input<boolean>;
1730
1816
  /**
1731
1817
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
1732
1818
  */
@@ -1775,6 +1861,10 @@ export interface DashboardWidgetGeomapDefinition {
1775
1861
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
1776
1862
  */
1777
1863
  customLinks?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetGeomapDefinitionCustomLink>[]>;
1864
+ /**
1865
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
1866
+ */
1867
+ hideIncompleteCostData?: pulumi.Input<boolean>;
1778
1868
  /**
1779
1869
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
1780
1870
  */
@@ -2501,6 +2591,10 @@ export interface DashboardWidgetHeatmapDefinition {
2501
2591
  * The definition of the event to overlay on the graph. Multiple `event` blocks are allowed using the structure below.
2502
2592
  */
2503
2593
  events?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetHeatmapDefinitionEvent>[]>;
2594
+ /**
2595
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
2596
+ */
2597
+ hideIncompleteCostData?: pulumi.Input<boolean>;
2504
2598
  /**
2505
2599
  * The size of the legend displayed in the widget.
2506
2600
  */
@@ -3487,6 +3581,10 @@ export interface DashboardWidgetLogStreamDefinition {
3487
3581
  * Stringified list of columns to use, for example: `["column1","column2","column3"]`.
3488
3582
  */
3489
3583
  columns?: pulumi.Input<pulumi.Input<string>[]>;
3584
+ /**
3585
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
3586
+ */
3587
+ hideIncompleteCostData?: pulumi.Input<boolean>;
3490
3588
  /**
3491
3589
  * An array of index names to query in the stream.
3492
3590
  */
@@ -3695,6 +3793,10 @@ export interface DashboardWidgetQueryTableDefinition {
3695
3793
  * Controls the display of the search bar. Valid values are `always`, `never`, `auto`.
3696
3794
  */
3697
3795
  hasSearchBar?: pulumi.Input<string>;
3796
+ /**
3797
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
3798
+ */
3799
+ hideIncompleteCostData?: pulumi.Input<boolean>;
3698
3800
  /**
3699
3801
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
3700
3802
  */
@@ -4426,6 +4528,10 @@ export interface DashboardWidgetQueryValueDefinition {
4426
4528
  * The unit for the value displayed in the widget.
4427
4529
  */
4428
4530
  customUnit?: pulumi.Input<string>;
4531
+ /**
4532
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
4533
+ */
4534
+ hideIncompleteCostData?: pulumi.Input<boolean>;
4429
4535
  /**
4430
4536
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
4431
4537
  */
@@ -5218,6 +5324,10 @@ export interface DashboardWidgetRunWorkflowDefinition {
5218
5324
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
5219
5325
  */
5220
5326
  customLinks?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetRunWorkflowDefinitionCustomLink>[]>;
5327
+ /**
5328
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
5329
+ */
5330
+ hideIncompleteCostData?: pulumi.Input<boolean>;
5221
5331
  /**
5222
5332
  * Array of workflow inputs to map to dashboard template variables.
5223
5333
  */
@@ -5280,6 +5390,10 @@ export interface DashboardWidgetScatterplotDefinition {
5280
5390
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
5281
5391
  */
5282
5392
  customLinks?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetScatterplotDefinitionCustomLink>[]>;
5393
+ /**
5394
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
5395
+ */
5396
+ hideIncompleteCostData?: pulumi.Input<boolean>;
5283
5397
  /**
5284
5398
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
5285
5399
  */
@@ -6048,6 +6162,10 @@ export interface DashboardWidgetSplitGraphDefinition {
6048
6162
  * Normalize y axes across graphs.
6049
6163
  */
6050
6164
  hasUniformYAxes?: pulumi.Input<boolean>;
6165
+ /**
6166
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
6167
+ */
6168
+ hideIncompleteCostData?: pulumi.Input<boolean>;
6051
6169
  /**
6052
6170
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
6053
6171
  */
@@ -6166,6 +6284,10 @@ export interface DashboardWidgetSunburstDefinition {
6166
6284
  * Nested block describing a custom link. Multiple `customLink` blocks are allowed with the structure below.
6167
6285
  */
6168
6286
  customLinks?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetSunburstDefinitionCustomLink>[]>;
6287
+ /**
6288
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
6289
+ */
6290
+ hideIncompleteCostData?: pulumi.Input<boolean>;
6169
6291
  /**
6170
6292
  * Whether or not to show the total value in the widget.
6171
6293
  */
@@ -6918,6 +7040,10 @@ export interface DashboardWidgetTimeseriesDefinition {
6918
7040
  * The definition of the event to overlay on the graph. Multiple `event` blocks are allowed using the structure below.
6919
7041
  */
6920
7042
  events?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetTimeseriesDefinitionEvent>[]>;
7043
+ /**
7044
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
7045
+ */
7046
+ hideIncompleteCostData?: pulumi.Input<boolean>;
6921
7047
  /**
6922
7048
  * A list of columns to display in the legend. Valid values are `value`, `avg`, `sum`, `min`, `max`.
6923
7049
  */
@@ -7760,6 +7886,10 @@ export interface DashboardWidgetToplistDefinition {
7760
7886
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
7761
7887
  */
7762
7888
  customLinks?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetToplistDefinitionCustomLink>[]>;
7889
+ /**
7890
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
7891
+ */
7892
+ hideIncompleteCostData?: pulumi.Input<boolean>;
7763
7893
  /**
7764
7894
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
7765
7895
  */
@@ -8528,6 +8658,10 @@ export interface DashboardWidgetTraceServiceDefinition {
8528
8658
  * APM environment.
8529
8659
  */
8530
8660
  env: pulumi.Input<string>;
8661
+ /**
8662
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
8663
+ */
8664
+ hideIncompleteCostData?: pulumi.Input<boolean>;
8531
8665
  /**
8532
8666
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
8533
8667
  */
@@ -9756,6 +9890,146 @@ export interface GetIncidentNotificationRuleConditionArgs {
9756
9890
  */
9757
9891
  values?: pulumi.Input<pulumi.Input<string>[]>;
9758
9892
  }
9893
+ export interface GetOrganizationSettingsSetting {
9894
+ /**
9895
+ * Whether or not the organization users can share widgets outside of Datadog.
9896
+ */
9897
+ privateWidgetShare?: boolean;
9898
+ /**
9899
+ * The access role of the user. Options are `st` (standard user), `adm` (admin user), or `ro` (read-only user). Allowed enum values: `st`, `adm`, `ro`, `ERROR`.
9900
+ */
9901
+ samlAutocreateAccessRole?: string;
9902
+ /**
9903
+ * List of domains where the SAML automated user creation is enabled.
9904
+ */
9905
+ samlAutocreateUsersDomains?: inputs.GetOrganizationSettingsSettingSamlAutocreateUsersDomain[];
9906
+ /**
9907
+ * Whether or not SAML can be enabled for this organization.
9908
+ */
9909
+ samlCanBeEnabled?: boolean;
9910
+ /**
9911
+ * Identity provider endpoint for SAML authentication.
9912
+ */
9913
+ samlIdpEndpoint?: string;
9914
+ /**
9915
+ * Whether or not a SAML identity provider metadata file was provided to the Datadog organization.
9916
+ */
9917
+ samlIdpInitiatedLogins?: inputs.GetOrganizationSettingsSettingSamlIdpInitiatedLogin[];
9918
+ /**
9919
+ * Whether or not a SAML identity provider metadata file was provided to the Datadog organization.
9920
+ */
9921
+ samlIdpMetadataUploaded?: boolean;
9922
+ /**
9923
+ * URL for SAML logging.
9924
+ */
9925
+ samlLoginUrl?: string;
9926
+ /**
9927
+ * Whether or not the SAML strict mode is enabled. If true, all users must log in with SAML.
9928
+ */
9929
+ samlStrictModes?: inputs.GetOrganizationSettingsSettingSamlStrictMode[];
9930
+ /**
9931
+ * SAML properties.
9932
+ */
9933
+ samls?: inputs.GetOrganizationSettingsSettingSaml[];
9934
+ }
9935
+ export interface GetOrganizationSettingsSettingArgs {
9936
+ /**
9937
+ * Whether or not the organization users can share widgets outside of Datadog.
9938
+ */
9939
+ privateWidgetShare?: pulumi.Input<boolean>;
9940
+ /**
9941
+ * The access role of the user. Options are `st` (standard user), `adm` (admin user), or `ro` (read-only user). Allowed enum values: `st`, `adm`, `ro`, `ERROR`.
9942
+ */
9943
+ samlAutocreateAccessRole?: pulumi.Input<string>;
9944
+ /**
9945
+ * List of domains where the SAML automated user creation is enabled.
9946
+ */
9947
+ samlAutocreateUsersDomains?: pulumi.Input<pulumi.Input<inputs.GetOrganizationSettingsSettingSamlAutocreateUsersDomainArgs>[]>;
9948
+ /**
9949
+ * Whether or not SAML can be enabled for this organization.
9950
+ */
9951
+ samlCanBeEnabled?: pulumi.Input<boolean>;
9952
+ /**
9953
+ * Identity provider endpoint for SAML authentication.
9954
+ */
9955
+ samlIdpEndpoint?: pulumi.Input<string>;
9956
+ /**
9957
+ * Whether or not a SAML identity provider metadata file was provided to the Datadog organization.
9958
+ */
9959
+ samlIdpInitiatedLogins?: pulumi.Input<pulumi.Input<inputs.GetOrganizationSettingsSettingSamlIdpInitiatedLoginArgs>[]>;
9960
+ /**
9961
+ * Whether or not a SAML identity provider metadata file was provided to the Datadog organization.
9962
+ */
9963
+ samlIdpMetadataUploaded?: pulumi.Input<boolean>;
9964
+ /**
9965
+ * URL for SAML logging.
9966
+ */
9967
+ samlLoginUrl?: pulumi.Input<string>;
9968
+ /**
9969
+ * Whether or not the SAML strict mode is enabled. If true, all users must log in with SAML.
9970
+ */
9971
+ samlStrictModes?: pulumi.Input<pulumi.Input<inputs.GetOrganizationSettingsSettingSamlStrictModeArgs>[]>;
9972
+ /**
9973
+ * SAML properties.
9974
+ */
9975
+ samls?: pulumi.Input<pulumi.Input<inputs.GetOrganizationSettingsSettingSamlArgs>[]>;
9976
+ }
9977
+ export interface GetOrganizationSettingsSettingSaml {
9978
+ /**
9979
+ * Whether or not SAML is enabled for this organization.
9980
+ */
9981
+ enabled?: boolean;
9982
+ }
9983
+ export interface GetOrganizationSettingsSettingSamlArgs {
9984
+ /**
9985
+ * Whether or not SAML is enabled for this organization.
9986
+ */
9987
+ enabled?: pulumi.Input<boolean>;
9988
+ }
9989
+ export interface GetOrganizationSettingsSettingSamlAutocreateUsersDomain {
9990
+ /**
9991
+ * List of domains where the SAML automated user creation is enabled.
9992
+ */
9993
+ domains?: string[];
9994
+ /**
9995
+ * Whether or not the automated user creation based on SAML domain is enabled.
9996
+ */
9997
+ enabled?: boolean;
9998
+ }
9999
+ export interface GetOrganizationSettingsSettingSamlAutocreateUsersDomainArgs {
10000
+ /**
10001
+ * List of domains where the SAML automated user creation is enabled.
10002
+ */
10003
+ domains?: pulumi.Input<pulumi.Input<string>[]>;
10004
+ /**
10005
+ * Whether or not the automated user creation based on SAML domain is enabled.
10006
+ */
10007
+ enabled?: pulumi.Input<boolean>;
10008
+ }
10009
+ export interface GetOrganizationSettingsSettingSamlIdpInitiatedLogin {
10010
+ /**
10011
+ * Whether or not a SAML identity provider metadata file was provided to the Datadog organization.
10012
+ */
10013
+ enabled?: boolean;
10014
+ }
10015
+ export interface GetOrganizationSettingsSettingSamlIdpInitiatedLoginArgs {
10016
+ /**
10017
+ * Whether or not a SAML identity provider metadata file was provided to the Datadog organization.
10018
+ */
10019
+ enabled?: pulumi.Input<boolean>;
10020
+ }
10021
+ export interface GetOrganizationSettingsSettingSamlStrictMode {
10022
+ /**
10023
+ * Whether or not the SAML strict mode is enabled. If true, all users must log in with SAML.
10024
+ */
10025
+ enabled?: boolean;
10026
+ }
10027
+ export interface GetOrganizationSettingsSettingSamlStrictModeArgs {
10028
+ /**
10029
+ * Whether or not the SAML strict mode is enabled. If true, all users must log in with SAML.
10030
+ */
10031
+ enabled?: pulumi.Input<boolean>;
10032
+ }
9759
10033
  export interface GetReferenceTableFileMetadata {
9760
10034
  /**
9761
10035
  * Cloud storage access configuration. Only present for cloud storage sources (S3, GCS, Azure).
@@ -10204,6 +10478,162 @@ export interface GetTagPipelineRulesetRuleReferenceTableFieldPairArgs {
10204
10478
  */
10205
10479
  outputKey?: pulumi.Input<string>;
10206
10480
  }
10481
+ export interface GetTeamNotificationRuleEmail {
10482
+ /**
10483
+ * Flag indicating whether email notifications should be sent
10484
+ */
10485
+ enabled?: boolean;
10486
+ }
10487
+ export interface GetTeamNotificationRuleEmailArgs {
10488
+ /**
10489
+ * Flag indicating whether email notifications should be sent
10490
+ */
10491
+ enabled?: pulumi.Input<boolean>;
10492
+ }
10493
+ export interface GetTeamNotificationRuleMsTeams {
10494
+ /**
10495
+ * MS Teams connector name
10496
+ */
10497
+ connectorName?: string;
10498
+ }
10499
+ export interface GetTeamNotificationRuleMsTeamsArgs {
10500
+ /**
10501
+ * MS Teams connector name
10502
+ */
10503
+ connectorName?: pulumi.Input<string>;
10504
+ }
10505
+ export interface GetTeamNotificationRulePagerduty {
10506
+ /**
10507
+ * PagerDuty service name
10508
+ */
10509
+ serviceName?: string;
10510
+ }
10511
+ export interface GetTeamNotificationRulePagerdutyArgs {
10512
+ /**
10513
+ * PagerDuty service name
10514
+ */
10515
+ serviceName?: pulumi.Input<string>;
10516
+ }
10517
+ export interface GetTeamNotificationRuleSlack {
10518
+ /**
10519
+ * Slack channel for notifications
10520
+ */
10521
+ channel?: string;
10522
+ /**
10523
+ * Slack workspace for notifications
10524
+ */
10525
+ workspace?: string;
10526
+ }
10527
+ export interface GetTeamNotificationRuleSlackArgs {
10528
+ /**
10529
+ * Slack channel for notifications
10530
+ */
10531
+ channel?: pulumi.Input<string>;
10532
+ /**
10533
+ * Slack workspace for notifications
10534
+ */
10535
+ workspace?: pulumi.Input<string>;
10536
+ }
10537
+ export interface GetTeamNotificationRulesNotificationRule {
10538
+ /**
10539
+ * The email notification settings.
10540
+ */
10541
+ email?: inputs.GetTeamNotificationRulesNotificationRuleEmail;
10542
+ /**
10543
+ * The ID of the notification rule.
10544
+ */
10545
+ id?: string;
10546
+ /**
10547
+ * The MS Teams notification settings.
10548
+ */
10549
+ msTeams?: inputs.GetTeamNotificationRulesNotificationRuleMsTeams;
10550
+ /**
10551
+ * The PagerDuty notification settings.
10552
+ */
10553
+ pagerduty?: inputs.GetTeamNotificationRulesNotificationRulePagerduty;
10554
+ /**
10555
+ * The Slack notification settings.
10556
+ */
10557
+ slack?: inputs.GetTeamNotificationRulesNotificationRuleSlack;
10558
+ }
10559
+ export interface GetTeamNotificationRulesNotificationRuleArgs {
10560
+ /**
10561
+ * The email notification settings.
10562
+ */
10563
+ email?: pulumi.Input<inputs.GetTeamNotificationRulesNotificationRuleEmailArgs>;
10564
+ /**
10565
+ * The ID of the notification rule.
10566
+ */
10567
+ id?: pulumi.Input<string>;
10568
+ /**
10569
+ * The MS Teams notification settings.
10570
+ */
10571
+ msTeams?: pulumi.Input<inputs.GetTeamNotificationRulesNotificationRuleMsTeamsArgs>;
10572
+ /**
10573
+ * The PagerDuty notification settings.
10574
+ */
10575
+ pagerduty?: pulumi.Input<inputs.GetTeamNotificationRulesNotificationRulePagerdutyArgs>;
10576
+ /**
10577
+ * The Slack notification settings.
10578
+ */
10579
+ slack?: pulumi.Input<inputs.GetTeamNotificationRulesNotificationRuleSlackArgs>;
10580
+ }
10581
+ export interface GetTeamNotificationRulesNotificationRuleEmail {
10582
+ /**
10583
+ * Flag indicating whether email notifications should be sent.
10584
+ */
10585
+ enabled?: boolean;
10586
+ }
10587
+ export interface GetTeamNotificationRulesNotificationRuleEmailArgs {
10588
+ /**
10589
+ * Flag indicating whether email notifications should be sent.
10590
+ */
10591
+ enabled?: pulumi.Input<boolean>;
10592
+ }
10593
+ export interface GetTeamNotificationRulesNotificationRuleMsTeams {
10594
+ /**
10595
+ * MS Teams connector name.
10596
+ */
10597
+ connectorName?: string;
10598
+ }
10599
+ export interface GetTeamNotificationRulesNotificationRuleMsTeamsArgs {
10600
+ /**
10601
+ * MS Teams connector name.
10602
+ */
10603
+ connectorName?: pulumi.Input<string>;
10604
+ }
10605
+ export interface GetTeamNotificationRulesNotificationRulePagerduty {
10606
+ /**
10607
+ * PagerDuty service name.
10608
+ */
10609
+ serviceName?: string;
10610
+ }
10611
+ export interface GetTeamNotificationRulesNotificationRulePagerdutyArgs {
10612
+ /**
10613
+ * PagerDuty service name.
10614
+ */
10615
+ serviceName?: pulumi.Input<string>;
10616
+ }
10617
+ export interface GetTeamNotificationRulesNotificationRuleSlack {
10618
+ /**
10619
+ * Slack channel for notifications.
10620
+ */
10621
+ channel?: string;
10622
+ /**
10623
+ * Slack workspace for notifications.
10624
+ */
10625
+ workspace?: string;
10626
+ }
10627
+ export interface GetTeamNotificationRulesNotificationRuleSlackArgs {
10628
+ /**
10629
+ * Slack channel for notifications.
10630
+ */
10631
+ channel?: pulumi.Input<string>;
10632
+ /**
10633
+ * Slack workspace for notifications.
10634
+ */
10635
+ workspace?: pulumi.Input<string>;
10636
+ }
10207
10637
  export interface GetTeamsTeam {
10208
10638
  /**
10209
10639
  * Free-form markdown description/content for the team's homepage.
@@ -12099,6 +12529,10 @@ export interface ObservabilityPipelineConfig {
12099
12529
  * List of destinations.
12100
12530
  */
12101
12531
  destinations?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestination>[]>;
12532
+ /**
12533
+ * The type of data being ingested. Defaults to `logs` if not specified. Valid values are `logs`, `metrics`.
12534
+ */
12535
+ pipelineType?: pulumi.Input<string>;
12102
12536
  /**
12103
12537
  * A processor group containing common configuration and nested processors.
12104
12538
  */
@@ -12125,6 +12559,10 @@ export interface ObservabilityPipelineConfigDestination {
12125
12559
  * The `azureStorage` destination forwards logs to an Azure Blob Storage container.
12126
12560
  */
12127
12561
  azureStorages?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationAzureStorage>[]>;
12562
+ /**
12563
+ * The `cloudPrem` destination sends logs to Datadog CloudPrem.
12564
+ */
12565
+ cloudPrem?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationCloudPrem>;
12128
12566
  /**
12129
12567
  * The `crowdstrikeNextGenSiem` destination forwards logs to CrowdStrike Next Gen SIEM.
12130
12568
  */
@@ -12133,6 +12571,10 @@ export interface ObservabilityPipelineConfigDestination {
12133
12571
  * The `datadogLogs` destination forwards logs to Datadog Log Management.
12134
12572
  */
12135
12573
  datadogLogs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationDatadogLog>[]>;
12574
+ /**
12575
+ * The `datadog.getMetrics` destination forwards metrics to Datadog.
12576
+ */
12577
+ datadogMetrics?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationDatadogMetric>[]>;
12136
12578
  /**
12137
12579
  * The `elasticsearch` destination writes logs to an Elasticsearch cluster.
12138
12580
  */
@@ -12149,6 +12591,10 @@ export interface ObservabilityPipelineConfigDestination {
12149
12591
  * The `googlePubsub` destination publishes logs to a Google Cloud Pub/Sub topic.
12150
12592
  */
12151
12593
  googlePubsubs?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationGooglePubsub>[]>;
12594
+ /**
12595
+ * The `httpClient` destination sends data to an HTTP endpoint.
12596
+ */
12597
+ httpClients?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationHttpClient>[]>;
12152
12598
  /**
12153
12599
  * The unique identifier for this destination.
12154
12600
  */
@@ -12157,6 +12603,10 @@ export interface ObservabilityPipelineConfigDestination {
12157
12603
  * A list of component IDs whose output is used as the `input` for this component.
12158
12604
  */
12159
12605
  inputs: pulumi.Input<pulumi.Input<string>[]>;
12606
+ /**
12607
+ * The `kafka` destination sends logs to Apache Kafka topics.
12608
+ */
12609
+ kafka?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationKafka>;
12160
12610
  /**
12161
12611
  * The `microsoftSentinel` destination forwards logs to Microsoft Sentinel.
12162
12612
  */
@@ -12319,6 +12769,8 @@ export interface ObservabilityPipelineConfigDestinationAzureStorage {
12319
12769
  */
12320
12770
  containerName: pulumi.Input<string>;
12321
12771
  }
12772
+ export interface ObservabilityPipelineConfigDestinationCloudPrem {
12773
+ }
12322
12774
  export interface ObservabilityPipelineConfigDestinationCrowdstrikeNextGenSiem {
12323
12775
  /**
12324
12776
  * Compression configuration for log events.
@@ -12359,6 +12811,8 @@ export interface ObservabilityPipelineConfigDestinationCrowdstrikeNextGenSiemTls
12359
12811
  }
12360
12812
  export interface ObservabilityPipelineConfigDestinationDatadogLog {
12361
12813
  }
12814
+ export interface ObservabilityPipelineConfigDestinationDatadogMetric {
12815
+ }
12362
12816
  export interface ObservabilityPipelineConfigDestinationElasticsearch {
12363
12817
  /**
12364
12818
  * The Elasticsearch API version to use. Set to `auto` to auto-detect.
@@ -12368,6 +12822,24 @@ export interface ObservabilityPipelineConfigDestinationElasticsearch {
12368
12822
  * The index or datastream to write logs to in Elasticsearch.
12369
12823
  */
12370
12824
  bulkIndex?: pulumi.Input<string>;
12825
+ /**
12826
+ * Configuration options for writing to Elasticsearch Data Streams instead of a fixed index.
12827
+ */
12828
+ dataStream?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationElasticsearchDataStream>;
12829
+ }
12830
+ export interface ObservabilityPipelineConfigDestinationElasticsearchDataStream {
12831
+ /**
12832
+ * The data stream dataset for your logs. This groups logs by their source or application.
12833
+ */
12834
+ dataset?: pulumi.Input<string>;
12835
+ /**
12836
+ * The data stream type for your logs. This determines how logs are categorized within the data stream.
12837
+ */
12838
+ dtype?: pulumi.Input<string>;
12839
+ /**
12840
+ * The data stream namespace for your logs. This separates logs into different environments or domains.
12841
+ */
12842
+ namespace?: pulumi.Input<string>;
12371
12843
  }
12372
12844
  export interface ObservabilityPipelineConfigDestinationGoogleChronicle {
12373
12845
  /**
@@ -12477,6 +12949,124 @@ export interface ObservabilityPipelineConfigDestinationGooglePubsubTls {
12477
12949
  */
12478
12950
  keyFile?: pulumi.Input<string>;
12479
12951
  }
12952
+ export interface ObservabilityPipelineConfigDestinationHttpClient {
12953
+ /**
12954
+ * HTTP authentication strategy. Valid values are `none`, `basic`, `bearer`.
12955
+ */
12956
+ authStrategy?: pulumi.Input<string>;
12957
+ /**
12958
+ * Compression configuration for HTTP requests.
12959
+ */
12960
+ compression?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationHttpClientCompression>;
12961
+ /**
12962
+ * Encoding format for events. Valid values are `json`.
12963
+ */
12964
+ encoding: pulumi.Input<string>;
12965
+ /**
12966
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
12967
+ */
12968
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationHttpClientTls>;
12969
+ }
12970
+ export interface ObservabilityPipelineConfigDestinationHttpClientCompression {
12971
+ /**
12972
+ * Compression algorithm. Valid values are `gzip`.
12973
+ */
12974
+ algorithm: pulumi.Input<string>;
12975
+ }
12976
+ export interface ObservabilityPipelineConfigDestinationHttpClientTls {
12977
+ /**
12978
+ * Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
12979
+ */
12980
+ caFile?: pulumi.Input<string>;
12981
+ /**
12982
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
12983
+ */
12984
+ crtFile: pulumi.Input<string>;
12985
+ /**
12986
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
12987
+ */
12988
+ keyFile?: pulumi.Input<string>;
12989
+ }
12990
+ export interface ObservabilityPipelineConfigDestinationKafka {
12991
+ /**
12992
+ * Compression codec for Kafka messages. Valid values are `none`, `gzip`, `snappy`, `lz4`, `zstd`.
12993
+ */
12994
+ compression?: pulumi.Input<string>;
12995
+ /**
12996
+ * Encoding format for log events. Valid values are `json`, `rawMessage`.
12997
+ */
12998
+ encoding: pulumi.Input<string>;
12999
+ /**
13000
+ * The field name to use for Kafka message headers.
13001
+ */
13002
+ headersKey?: pulumi.Input<string>;
13003
+ /**
13004
+ * The field name to use as the Kafka message key.
13005
+ */
13006
+ keyField?: pulumi.Input<string>;
13007
+ /**
13008
+ * Optional list of advanced Kafka producer configuration options, defined as key-value pairs.
13009
+ */
13010
+ librdkafkaOptions?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigDestinationKafkaLibrdkafkaOption>[]>;
13011
+ /**
13012
+ * Maximum time in milliseconds to wait for message delivery confirmation.
13013
+ */
13014
+ messageTimeoutMs?: pulumi.Input<number>;
13015
+ /**
13016
+ * Duration in seconds for the rate limit window.
13017
+ */
13018
+ rateLimitDurationSecs?: pulumi.Input<number>;
13019
+ /**
13020
+ * Maximum number of messages allowed per rate limit duration.
13021
+ */
13022
+ rateLimitNum?: pulumi.Input<number>;
13023
+ /**
13024
+ * Specifies the SASL mechanism for authenticating with a Kafka cluster.
13025
+ */
13026
+ sasl?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationKafkaSasl>;
13027
+ /**
13028
+ * Socket timeout in milliseconds for network requests.
13029
+ */
13030
+ socketTimeoutMs?: pulumi.Input<number>;
13031
+ /**
13032
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
13033
+ */
13034
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationKafkaTls>;
13035
+ /**
13036
+ * The Kafka topic name to publish logs to.
13037
+ */
13038
+ topic: pulumi.Input<string>;
13039
+ }
13040
+ export interface ObservabilityPipelineConfigDestinationKafkaLibrdkafkaOption {
13041
+ /**
13042
+ * The name of the librdkafka configuration option.
13043
+ */
13044
+ name: pulumi.Input<string>;
13045
+ /**
13046
+ * The value of the librdkafka configuration option.
13047
+ */
13048
+ value: pulumi.Input<string>;
13049
+ }
13050
+ export interface ObservabilityPipelineConfigDestinationKafkaSasl {
13051
+ /**
13052
+ * SASL authentication mechanism. Valid values are `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`.
13053
+ */
13054
+ mechanism: pulumi.Input<string>;
13055
+ }
13056
+ export interface ObservabilityPipelineConfigDestinationKafkaTls {
13057
+ /**
13058
+ * Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
13059
+ */
13060
+ caFile?: pulumi.Input<string>;
13061
+ /**
13062
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
13063
+ */
13064
+ crtFile: pulumi.Input<string>;
13065
+ /**
13066
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
13067
+ */
13068
+ keyFile?: pulumi.Input<string>;
13069
+ }
12480
13070
  export interface ObservabilityPipelineConfigDestinationMicrosoftSentinel {
12481
13071
  /**
12482
13072
  * Azure AD client ID used for authentication.
@@ -12593,7 +13183,7 @@ export interface ObservabilityPipelineConfigDestinationSplunkHec {
12593
13183
  /**
12594
13184
  * Encoding format for log events. Valid values: `json`, `rawMessage`.
12595
13185
  */
12596
- encoding?: pulumi.Input<string>;
13186
+ encoding: pulumi.Input<string>;
12597
13187
  /**
12598
13188
  * Optional name of the Splunk index where logs are written.
12599
13189
  */
@@ -12694,6 +13284,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessor {
12694
13284
  * The `addFields` processor adds static key-value fields to logs.
12695
13285
  */
12696
13286
  addFields?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorAddFields>;
13287
+ /**
13288
+ * The `addHostname` processor adds the hostname to log events.
13289
+ */
13290
+ addHostname?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorAddHostname>;
12697
13291
  /**
12698
13292
  * The `customProcessor` processor transforms events using Vector Remap Language (VRL) scripts with advanced filtering capabilities.
12699
13293
  */
@@ -12731,6 +13325,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessor {
12731
13325
  * A Datadog search query used to determine which logs this processor targets.
12732
13326
  */
12733
13327
  include: pulumi.Input<string>;
13328
+ /**
13329
+ * The `metricTags` processor filters metrics based on their tags using Datadog tag key patterns.
13330
+ */
13331
+ metricTags?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorMetricTags>;
12734
13332
  /**
12735
13333
  * The `ocsfMapper` processor transforms logs into the OCSF schema using predefined library mappings.
12736
13334
  */
@@ -12743,6 +13341,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessor {
12743
13341
  * The `parseJson` processor extracts JSON from a specified field and flattens it into the event. This is useful when logs contain embedded JSON as a string.
12744
13342
  */
12745
13343
  parseJson?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorParseJson>;
13344
+ /**
13345
+ * The `parseXml` processor parses XML from a specified field and extracts it into the event.
13346
+ */
13347
+ parseXml?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorParseXml>;
12746
13348
  /**
12747
13349
  * The `quota` processor measures logging traffic for logs that match a specified filter. When the configured daily quota is met, the processor can drop or alert.
12748
13350
  */
@@ -12767,6 +13369,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessor {
12767
13369
  * The `sensitiveDataScanner` processor detects and optionally redacts sensitive data in log events.
12768
13370
  */
12769
13371
  sensitiveDataScanner?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorSensitiveDataScanner>;
13372
+ /**
13373
+ * The `splitArray` processor splits array fields into separate events based on configured rules.
13374
+ */
13375
+ splitArray?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorSplitArray>;
12770
13376
  /**
12771
13377
  * The `throttle` processor limits the number of events that pass through over a given time window.
12772
13378
  */
@@ -12804,6 +13410,8 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorAddFieldsFiel
12804
13410
  */
12805
13411
  value: pulumi.Input<string>;
12806
13412
  }
13413
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorAddHostname {
13414
+ }
12807
13415
  export interface ObservabilityPipelineConfigProcessorGroupProcessorCustomProcessor {
12808
13416
  /**
12809
13417
  * Array of VRL remap configurations. Each remap defines a transformation rule with its own filter and VRL script.
@@ -12862,6 +13470,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTab
12862
13470
  * Uses a GeoIP database to enrich logs based on an IP field.
12863
13471
  */
12864
13472
  geoip?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableGeoip>;
13473
+ /**
13474
+ * Uses a Datadog reference table to enrich logs.
13475
+ */
13476
+ referenceTable?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableReferenceTable>;
12865
13477
  /**
12866
13478
  * Path where enrichment results should be stored in the log.
12867
13479
  */
@@ -12934,6 +13546,20 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTab
12934
13546
  */
12935
13547
  path?: pulumi.Input<string>;
12936
13548
  }
13549
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableReferenceTable {
13550
+ /**
13551
+ * List of column names to include from the reference table. If not provided, all columns are included.
13552
+ */
13553
+ columns?: pulumi.Input<pulumi.Input<string>[]>;
13554
+ /**
13555
+ * Path to the field in the log event to match against the reference table.
13556
+ */
13557
+ keyField: pulumi.Input<string>;
13558
+ /**
13559
+ * The unique identifier of the reference table.
13560
+ */
13561
+ tableId: pulumi.Input<string>;
13562
+ }
12937
13563
  export interface ObservabilityPipelineConfigProcessorGroupProcessorFilter {
12938
13564
  }
12939
13565
  export interface ObservabilityPipelineConfigProcessorGroupProcessorGenerateDatadogMetrics {
@@ -12974,6 +13600,30 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorGenerateDatad
12974
13600
  */
12975
13601
  strategy: pulumi.Input<string>;
12976
13602
  }
13603
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorMetricTags {
13604
+ /**
13605
+ * A list of rules for filtering metric tags.
13606
+ */
13607
+ rules?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorMetricTagsRule>[]>;
13608
+ }
13609
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorMetricTagsRule {
13610
+ /**
13611
+ * The action to take on tags with matching keys. Valid values are `include`, `exclude`.
13612
+ */
13613
+ action: pulumi.Input<string>;
13614
+ /**
13615
+ * A Datadog search query used to determine which metrics this rule targets.
13616
+ */
13617
+ include: pulumi.Input<string>;
13618
+ /**
13619
+ * A list of tag keys to include or exclude.
13620
+ */
13621
+ keys: pulumi.Input<pulumi.Input<string>[]>;
13622
+ /**
13623
+ * The processing mode for tag filtering. Valid values are `filter`.
13624
+ */
13625
+ mode: pulumi.Input<string>;
13626
+ }
12977
13627
  export interface ObservabilityPipelineConfigProcessorGroupProcessorOcsfMapper {
12978
13628
  /**
12979
13629
  * List of OCSF mapping entries using library mapping.
@@ -13040,6 +13690,40 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorParseJson {
13040
13690
  */
13041
13691
  field: pulumi.Input<string>;
13042
13692
  }
13693
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorParseXml {
13694
+ /**
13695
+ * Whether to always store text inside an object using the text key even when no attributes exist.
13696
+ */
13697
+ alwaysUseTextKey?: pulumi.Input<boolean>;
13698
+ /**
13699
+ * The prefix to use for XML attributes in the parsed output. If the field is left empty, the original attribute key is used.
13700
+ */
13701
+ attrPrefix?: pulumi.Input<string>;
13702
+ /**
13703
+ * The path to the log field on which you want to parse XML.
13704
+ */
13705
+ field: pulumi.Input<string>;
13706
+ /**
13707
+ * Whether to include XML attributes in the parsed output.
13708
+ */
13709
+ includeAttr?: pulumi.Input<boolean>;
13710
+ /**
13711
+ * Whether to parse boolean values from strings.
13712
+ */
13713
+ parseBool?: pulumi.Input<boolean>;
13714
+ /**
13715
+ * Whether to parse null values.
13716
+ */
13717
+ parseNull?: pulumi.Input<boolean>;
13718
+ /**
13719
+ * Whether to parse numeric values from strings.
13720
+ */
13721
+ parseNumber?: pulumi.Input<boolean>;
13722
+ /**
13723
+ * The key name to use for the text node when XML attributes are appended.
13724
+ */
13725
+ textKey?: pulumi.Input<string>;
13726
+ }
13043
13727
  export interface ObservabilityPipelineConfigProcessorGroupProcessorQuota {
13044
13728
  /**
13045
13729
  * Whether to drop events exceeding the limit.
@@ -13066,6 +13750,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorQuota {
13066
13750
  * List of partition fields.
13067
13751
  */
13068
13752
  partitionFields?: pulumi.Input<pulumi.Input<string>[]>;
13753
+ /**
13754
+ * The action to take when the max number of buckets is exceeded: `drop`, `noAction`, or `overflowRouting`.
13755
+ */
13756
+ tooManyBucketsAction?: pulumi.Input<string>;
13069
13757
  }
13070
13758
  export interface ObservabilityPipelineConfigProcessorGroupProcessorQuotaLimit {
13071
13759
  /**
@@ -13152,13 +13840,13 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorRenameFieldsF
13152
13840
  }
13153
13841
  export interface ObservabilityPipelineConfigProcessorGroupProcessorSample {
13154
13842
  /**
13155
- * The percentage of logs to sample.
13843
+ * Optional list of fields to group events by. Each group is sampled independently.
13156
13844
  */
13157
- percentage?: pulumi.Input<number>;
13845
+ groupBies?: pulumi.Input<pulumi.Input<string>[]>;
13158
13846
  /**
13159
- * Number of events to sample (1 in N).
13847
+ * The percentage of logs to sample.
13160
13848
  */
13161
- rate?: pulumi.Input<number>;
13849
+ percentage: pulumi.Input<number>;
13162
13850
  }
13163
13851
  export interface ObservabilityPipelineConfigProcessorGroupProcessorSensitiveDataScanner {
13164
13852
  /**
@@ -13245,12 +13933,20 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorSensitiveData
13245
13933
  library?: pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorSensitiveDataScannerRulePatternLibrary>;
13246
13934
  }
13247
13935
  export interface ObservabilityPipelineConfigProcessorGroupProcessorSensitiveDataScannerRulePatternCustom {
13936
+ /**
13937
+ * Human-readable description providing context about a sensitive data scanner rule.
13938
+ */
13939
+ description?: pulumi.Input<string>;
13248
13940
  /**
13249
13941
  * A regular expression used to detect sensitive values. Must be a valid regex.
13250
13942
  */
13251
13943
  rule?: pulumi.Input<string>;
13252
13944
  }
13253
13945
  export interface ObservabilityPipelineConfigProcessorGroupProcessorSensitiveDataScannerRulePatternLibrary {
13946
+ /**
13947
+ * Human-readable description providing context about a sensitive data scanner rule.
13948
+ */
13949
+ description?: pulumi.Input<string>;
13254
13950
  /**
13255
13951
  * Identifier for a predefined pattern from the sensitive data scanner pattern library.
13256
13952
  */
@@ -13286,6 +13982,22 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorSensitiveData
13286
13982
  */
13287
13983
  fields?: pulumi.Input<pulumi.Input<string>[]>;
13288
13984
  }
13985
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorSplitArray {
13986
+ /**
13987
+ * A list of array split configurations.
13988
+ */
13989
+ arrays?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigProcessorGroupProcessorSplitArrayArray>[]>;
13990
+ }
13991
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorSplitArrayArray {
13992
+ /**
13993
+ * The path to the array field to split.
13994
+ */
13995
+ field: pulumi.Input<string>;
13996
+ /**
13997
+ * A Datadog search query used to determine which logs this array split operation targets.
13998
+ */
13999
+ include: pulumi.Input<string>;
14000
+ }
13289
14001
  export interface ObservabilityPipelineConfigProcessorGroupProcessorThrottle {
13290
14002
  /**
13291
14003
  * Optional list of fields used to group events before applying throttling.
@@ -13345,6 +14057,10 @@ export interface ObservabilityPipelineConfigSource {
13345
14057
  * The `logstash` source ingests logs from a Logstash forwarder.
13346
14058
  */
13347
14059
  logstashes?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourceLogstash>[]>;
14060
+ /**
14061
+ * The `opentelemetry` source receives telemetry data using the OpenTelemetry Protocol (OTLP) over gRPC and HTTP.
14062
+ */
14063
+ opentelemetry?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceOpentelemetry>;
13348
14064
  /**
13349
14065
  * The `rsyslog` source listens for logs over TCP or UDP from an `rsyslog` server using the syslog protocol.
13350
14066
  */
@@ -13554,7 +14270,7 @@ export interface ObservabilityPipelineConfigSourceGooglePubsubTls {
13554
14270
  }
13555
14271
  export interface ObservabilityPipelineConfigSourceHttpClient {
13556
14272
  /**
13557
- * Optional authentication strategy for HTTP requests.
14273
+ * Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`.
13558
14274
  */
13559
14275
  authStrategy?: pulumi.Input<string>;
13560
14276
  /**
@@ -13688,6 +14404,26 @@ export interface ObservabilityPipelineConfigSourceLogstashTls {
13688
14404
  */
13689
14405
  keyFile?: pulumi.Input<string>;
13690
14406
  }
14407
+ export interface ObservabilityPipelineConfigSourceOpentelemetry {
14408
+ /**
14409
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
14410
+ */
14411
+ tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceOpentelemetryTls>;
14412
+ }
14413
+ export interface ObservabilityPipelineConfigSourceOpentelemetryTls {
14414
+ /**
14415
+ * Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
14416
+ */
14417
+ caFile?: pulumi.Input<string>;
14418
+ /**
14419
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
14420
+ */
14421
+ crtFile: pulumi.Input<string>;
14422
+ /**
14423
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
14424
+ */
14425
+ keyFile?: pulumi.Input<string>;
14426
+ }
13691
14427
  export interface ObservabilityPipelineConfigSourceRsyslog {
13692
14428
  /**
13693
14429
  * Protocol used by the syslog source to receive messages.
@@ -14006,6 +14742,28 @@ export interface OnCallTeamRoutingRulesRuleTimeRestrictionsRestriction {
14006
14742
  */
14007
14743
  startTime?: pulumi.Input<string>;
14008
14744
  }
14745
+ export interface OnCallUserNotificationChannelEmail {
14746
+ /**
14747
+ * The e-mail address to be notified
14748
+ */
14749
+ address?: pulumi.Input<string>;
14750
+ /**
14751
+ * Preferred content formats for notifications
14752
+ */
14753
+ formats?: pulumi.Input<pulumi.Input<string>[]>;
14754
+ }
14755
+ export interface OnCallUserNotificationChannelPhone {
14756
+ /**
14757
+ * The E-164 formatted phone number (e.g. +3371234567)
14758
+ */
14759
+ number?: pulumi.Input<string>;
14760
+ }
14761
+ export interface OnCallUserNotificationRulePhone {
14762
+ /**
14763
+ * Specifies the method in which a phone is used in a notification rule. Valid values are `sms`, `voice`.
14764
+ */
14765
+ method?: pulumi.Input<string>;
14766
+ }
14009
14767
  export interface OrganizationSettingsSettings {
14010
14768
  /**
14011
14769
  * Whether or not the organization users can share widgets outside of Datadog. Defaults to `false`.
@@ -14239,6 +14997,10 @@ export interface PowerpackWidgetAlertGraphDefinition {
14239
14997
  * The ID of the monitor used by the widget.
14240
14998
  */
14241
14999
  alertId: pulumi.Input<string>;
15000
+ /**
15001
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
15002
+ */
15003
+ hideIncompleteCostData?: pulumi.Input<boolean>;
14242
15004
  /**
14243
15005
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
14244
15006
  */
@@ -14295,6 +15057,10 @@ export interface PowerpackWidgetChangeDefinition {
14295
15057
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
14296
15058
  */
14297
15059
  customLinks?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetChangeDefinitionCustomLink>[]>;
15060
+ /**
15061
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
15062
+ */
15063
+ hideIncompleteCostData?: pulumi.Input<boolean>;
14298
15064
  /**
14299
15065
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
14300
15066
  */
@@ -15185,6 +15951,10 @@ export interface PowerpackWidgetCheckStatusDefinition {
15185
15951
  * The kind of grouping to use. Valid values are `check`, `cluster`.
15186
15952
  */
15187
15953
  grouping: pulumi.Input<string>;
15954
+ /**
15955
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
15956
+ */
15957
+ hideIncompleteCostData?: pulumi.Input<boolean>;
15188
15958
  /**
15189
15959
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
15190
15960
  */
@@ -15207,6 +15977,10 @@ export interface PowerpackWidgetCheckStatusDefinition {
15207
15977
  titleSize?: pulumi.Input<string>;
15208
15978
  }
15209
15979
  export interface PowerpackWidgetDistributionDefinition {
15980
+ /**
15981
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
15982
+ */
15983
+ hideIncompleteCostData?: pulumi.Input<boolean>;
15210
15984
  /**
15211
15985
  * The size of the legend displayed in the widget.
15212
15986
  */
@@ -15704,6 +16478,10 @@ export interface PowerpackWidgetEventStreamDefinition {
15704
16478
  * The size to use to display an event. Valid values are `s`, `l`.
15705
16479
  */
15706
16480
  eventSize?: pulumi.Input<string>;
16481
+ /**
16482
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
16483
+ */
16484
+ hideIncompleteCostData?: pulumi.Input<boolean>;
15707
16485
  /**
15708
16486
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
15709
16487
  */
@@ -15730,6 +16508,10 @@ export interface PowerpackWidgetEventStreamDefinition {
15730
16508
  titleSize?: pulumi.Input<string>;
15731
16509
  }
15732
16510
  export interface PowerpackWidgetEventTimelineDefinition {
16511
+ /**
16512
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
16513
+ */
16514
+ hideIncompleteCostData?: pulumi.Input<boolean>;
15733
16515
  /**
15734
16516
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
15735
16517
  */
@@ -15778,6 +16560,10 @@ export interface PowerpackWidgetGeomapDefinition {
15778
16560
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
15779
16561
  */
15780
16562
  customLinks?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetGeomapDefinitionCustomLink>[]>;
16563
+ /**
16564
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
16565
+ */
16566
+ hideIncompleteCostData?: pulumi.Input<boolean>;
15781
16567
  /**
15782
16568
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
15783
16569
  */
@@ -16474,6 +17260,10 @@ export interface PowerpackWidgetHeatmapDefinition {
16474
17260
  * The definition of the event to overlay on the graph. Multiple `event` blocks are allowed using the structure below.
16475
17261
  */
16476
17262
  events?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetHeatmapDefinitionEvent>[]>;
17263
+ /**
17264
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
17265
+ */
17266
+ hideIncompleteCostData?: pulumi.Input<boolean>;
16477
17267
  /**
16478
17268
  * The size of the legend displayed in the widget.
16479
17269
  */
@@ -18318,6 +19108,10 @@ export interface PowerpackWidgetLogStreamDefinition {
18318
19108
  * Stringified list of columns to use, for example: `["column1","column2","column3"]`.
18319
19109
  */
18320
19110
  columns?: pulumi.Input<pulumi.Input<string>[]>;
19111
+ /**
19112
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
19113
+ */
19114
+ hideIncompleteCostData?: pulumi.Input<boolean>;
18321
19115
  /**
18322
19116
  * An array of index names to query in the stream.
18323
19117
  */
@@ -18462,6 +19256,10 @@ export interface PowerpackWidgetQueryTableDefinition {
18462
19256
  * Controls the display of the search bar. Valid values are `always`, `never`, `auto`.
18463
19257
  */
18464
19258
  hasSearchBar?: pulumi.Input<string>;
19259
+ /**
19260
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
19261
+ */
19262
+ hideIncompleteCostData?: pulumi.Input<boolean>;
18465
19263
  /**
18466
19264
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
18467
19265
  */
@@ -19505,6 +20303,10 @@ export interface PowerpackWidgetQueryValueDefinition {
19505
20303
  * The unit for the value displayed in the widget.
19506
20304
  */
19507
20305
  customUnit?: pulumi.Input<string>;
20306
+ /**
20307
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
20308
+ */
20309
+ hideIncompleteCostData?: pulumi.Input<boolean>;
19508
20310
  /**
19509
20311
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
19510
20312
  */
@@ -20531,6 +21333,10 @@ export interface PowerpackWidgetRunWorkflowDefinition {
20531
21333
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
20532
21334
  */
20533
21335
  customLinks?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetRunWorkflowDefinitionCustomLink>[]>;
21336
+ /**
21337
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
21338
+ */
21339
+ hideIncompleteCostData?: pulumi.Input<boolean>;
20534
21340
  /**
20535
21341
  * Array of workflow inputs to map to dashboard template variables.
20536
21342
  */
@@ -20593,6 +21399,10 @@ export interface PowerpackWidgetScatterplotDefinition {
20593
21399
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
20594
21400
  */
20595
21401
  customLinks?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetScatterplotDefinitionCustomLink>[]>;
21402
+ /**
21403
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
21404
+ */
21405
+ hideIncompleteCostData?: pulumi.Input<boolean>;
20596
21406
  /**
20597
21407
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
20598
21408
  */
@@ -21907,6 +22717,10 @@ export interface PowerpackWidgetSunburstDefinition {
21907
22717
  * Nested block describing a custom link. Multiple `customLink` blocks are allowed with the structure below.
21908
22718
  */
21909
22719
  customLinks?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetSunburstDefinitionCustomLink>[]>;
22720
+ /**
22721
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
22722
+ */
22723
+ hideIncompleteCostData?: pulumi.Input<boolean>;
21910
22724
  /**
21911
22725
  * Whether or not to show the total value in the widget.
21912
22726
  */
@@ -22971,6 +23785,10 @@ export interface PowerpackWidgetTimeseriesDefinition {
22971
23785
  * The definition of the event to overlay on the graph. Multiple `event` blocks are allowed using the structure below.
22972
23786
  */
22973
23787
  events?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetTimeseriesDefinitionEvent>[]>;
23788
+ /**
23789
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
23790
+ */
23791
+ hideIncompleteCostData?: pulumi.Input<boolean>;
22974
23792
  /**
22975
23793
  * A list of columns to display in the legend. Valid values are `value`, `avg`, `sum`, `min`, `max`.
22976
23794
  */
@@ -24125,6 +24943,10 @@ export interface PowerpackWidgetToplistDefinition {
24125
24943
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
24126
24944
  */
24127
24945
  customLinks?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetToplistDefinitionCustomLink>[]>;
24946
+ /**
24947
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
24948
+ */
24949
+ hideIncompleteCostData?: pulumi.Input<boolean>;
24128
24950
  /**
24129
24951
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
24130
24952
  */
@@ -25205,6 +26027,10 @@ export interface PowerpackWidgetTraceServiceDefinition {
25205
26027
  * APM environment.
25206
26028
  */
25207
26029
  env: pulumi.Input<string>;
26030
+ /**
26031
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
26032
+ */
26033
+ hideIncompleteCostData?: pulumi.Input<boolean>;
25208
26034
  /**
25209
26035
  * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
25210
26036
  */
@@ -26700,7 +27526,11 @@ export interface SyntheticsTestApiStep {
26700
27526
  }>;
26701
27527
  retry?: pulumi.Input<inputs.SyntheticsTestApiStepRetry>;
26702
27528
  /**
26703
- * The subtype of the Synthetic multistep API test step. Valid values are `http`, `grpc`, `ssl`, `dns`, `tcp`, `udp`, `icmp`, `websocket`, `wait`. Defaults to `"http"`.
27529
+ * Public ID of the test to be played as part of a `playSubTest` step type.
27530
+ */
27531
+ subtestPublicId?: pulumi.Input<string>;
27532
+ /**
27533
+ * The subtype of the Synthetic multistep API test step. Valid values are `http`, `grpc`, `ssl`, `dns`, `tcp`, `udp`, `icmp`, `websocket`, `wait`, `playSubTest`. Defaults to `"http"`.
26704
27534
  */
26705
27535
  subtype?: pulumi.Input<string>;
26706
27536
  /**
@@ -28117,6 +28947,34 @@ export interface TagPipelineRulesetRuleReferenceTableFieldPair {
28117
28947
  */
28118
28948
  outputKey?: pulumi.Input<string>;
28119
28949
  }
28950
+ export interface TeamNotificationRuleEmail {
28951
+ /**
28952
+ * Whether to send email notifications to team members when alerts are triggered.
28953
+ */
28954
+ enabled?: pulumi.Input<boolean>;
28955
+ }
28956
+ export interface TeamNotificationRuleMsTeams {
28957
+ /**
28958
+ * MS Teams connector name used to route notifications to the appropriate channel.
28959
+ */
28960
+ connectorName?: pulumi.Input<string>;
28961
+ }
28962
+ export interface TeamNotificationRulePagerduty {
28963
+ /**
28964
+ * PagerDuty service name to send incident notifications to. The service name can be found in your PagerDuty service settings.
28965
+ */
28966
+ serviceName?: pulumi.Input<string>;
28967
+ }
28968
+ export interface TeamNotificationRuleSlack {
28969
+ /**
28970
+ * Slack channel name for notifications (for example, #alerts or #team-notifications).
28971
+ */
28972
+ channel?: pulumi.Input<string>;
28973
+ /**
28974
+ * Slack workspace name where the channel is located.
28975
+ */
28976
+ workspace?: pulumi.Input<string>;
28977
+ }
28120
28978
  export declare namespace aws {
28121
28979
  interface IntegrationAccountAuthConfig {
28122
28980
  /**