@pulumi/datadog 4.63.0-alpha.1768973818 → 4.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cloudInventorySyncConfig.d.ts +139 -0
- package/cloudInventorySyncConfig.js +111 -0
- package/cloudInventorySyncConfig.js.map +1 -0
- package/gcp/integrationSts.d.ts +24 -0
- package/gcp/integrationSts.js +4 -0
- package/gcp/integrationSts.js.map +1 -1
- package/getOrganizationSettings.d.ts +54 -0
- package/getOrganizationSettings.js +30 -0
- package/getOrganizationSettings.js.map +1 -0
- package/getServiceLevelObjective.d.ts +4 -0
- package/getServiceLevelObjective.js.map +1 -1
- package/getTeamNotificationRule.d.ts +128 -0
- package/getTeamNotificationRule.js +64 -0
- package/getTeamNotificationRule.js.map +1 -0
- package/getTeamNotificationRules.d.ts +78 -0
- package/getTeamNotificationRules.js +54 -0
- package/getTeamNotificationRules.js.map +1 -0
- package/index.d.ts +21 -0
- package/index.js +34 -5
- package/index.js.map +1 -1
- package/metricTagConfiguration.d.ts +9 -13
- package/metricTagConfiguration.js +0 -10
- package/metricTagConfiguration.js.map +1 -1
- package/onCallUserNotificationChannel.d.ts +59 -0
- package/onCallUserNotificationChannel.js +59 -0
- package/onCallUserNotificationChannel.js.map +1 -0
- package/onCallUserNotificationRule.d.ts +92 -0
- package/onCallUserNotificationRule.js +72 -0
- package/onCallUserNotificationRule.js.map +1 -0
- package/package.json +2 -2
- package/powerpack.d.ts +3 -3
- package/syntheticsGlobalVariable.d.ts +30 -21
- package/syntheticsGlobalVariable.js +5 -19
- package/syntheticsGlobalVariable.js.map +1 -1
- package/teamNotificationRule.d.ts +141 -0
- package/teamNotificationRule.js +103 -0
- package/teamNotificationRule.js.map +1 -0
- package/types/input.d.ts +865 -7
- package/types/output.d.ts +717 -7
package/types/output.d.ts
CHANGED
|
@@ -370,6 +370,68 @@ export interface CloudConfigurationRuleFilter {
|
|
|
370
370
|
*/
|
|
371
371
|
query: string;
|
|
372
372
|
}
|
|
373
|
+
export interface CloudInventorySyncConfigAws {
|
|
374
|
+
/**
|
|
375
|
+
* AWS Account ID of the account holding the bucket.
|
|
376
|
+
*/
|
|
377
|
+
awsAccountId?: string;
|
|
378
|
+
/**
|
|
379
|
+
* Name of the S3 bucket holding the inventory files.
|
|
380
|
+
*/
|
|
381
|
+
destinationBucketName?: string;
|
|
382
|
+
/**
|
|
383
|
+
* AWS Region of the bucket holding the inventory files.
|
|
384
|
+
*/
|
|
385
|
+
destinationBucketRegion?: string;
|
|
386
|
+
/**
|
|
387
|
+
* Prefix path within the bucket for inventory files.
|
|
388
|
+
*/
|
|
389
|
+
destinationPrefix?: string;
|
|
390
|
+
}
|
|
391
|
+
export interface CloudInventorySyncConfigAzure {
|
|
392
|
+
/**
|
|
393
|
+
* Azure Client ID.
|
|
394
|
+
*/
|
|
395
|
+
clientId?: string;
|
|
396
|
+
/**
|
|
397
|
+
* Azure Storage Container name.
|
|
398
|
+
*/
|
|
399
|
+
container?: string;
|
|
400
|
+
/**
|
|
401
|
+
* Azure Resource Group name.
|
|
402
|
+
*/
|
|
403
|
+
resourceGroup?: string;
|
|
404
|
+
/**
|
|
405
|
+
* Azure Storage Account name.
|
|
406
|
+
*/
|
|
407
|
+
storageAccount?: string;
|
|
408
|
+
/**
|
|
409
|
+
* Azure Subscription ID.
|
|
410
|
+
*/
|
|
411
|
+
subscriptionId?: string;
|
|
412
|
+
/**
|
|
413
|
+
* Azure Tenant ID.
|
|
414
|
+
*/
|
|
415
|
+
tenantId?: string;
|
|
416
|
+
}
|
|
417
|
+
export interface CloudInventorySyncConfigGcp {
|
|
418
|
+
/**
|
|
419
|
+
* Name of the GCS bucket holding the inventory files.
|
|
420
|
+
*/
|
|
421
|
+
destinationBucketName?: string;
|
|
422
|
+
/**
|
|
423
|
+
* GCP Project ID of the project holding the bucket.
|
|
424
|
+
*/
|
|
425
|
+
projectId?: string;
|
|
426
|
+
/**
|
|
427
|
+
* Service account email used for reading the bucket.
|
|
428
|
+
*/
|
|
429
|
+
serviceAccountEmail?: string;
|
|
430
|
+
/**
|
|
431
|
+
* Name of the source bucket the inventory report is generated for.
|
|
432
|
+
*/
|
|
433
|
+
sourceBucketName?: string;
|
|
434
|
+
}
|
|
373
435
|
export interface ComplianceCustomFrameworkRequirement {
|
|
374
436
|
/**
|
|
375
437
|
* The controls of the requirement. Length must be at least 1.
|
|
@@ -781,6 +843,10 @@ export interface DashboardWidgetAlertGraphDefinition {
|
|
|
781
843
|
* The ID of the monitor used by the widget.
|
|
782
844
|
*/
|
|
783
845
|
alertId: string;
|
|
846
|
+
/**
|
|
847
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
848
|
+
*/
|
|
849
|
+
hideIncompleteCostData: boolean;
|
|
784
850
|
/**
|
|
785
851
|
* 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`.
|
|
786
852
|
*/
|
|
@@ -915,6 +981,10 @@ export interface DashboardWidgetChangeDefinition {
|
|
|
915
981
|
* A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
|
|
916
982
|
*/
|
|
917
983
|
customLinks?: outputs.DashboardWidgetChangeDefinitionCustomLink[];
|
|
984
|
+
/**
|
|
985
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
986
|
+
*/
|
|
987
|
+
hideIncompleteCostData: boolean;
|
|
918
988
|
/**
|
|
919
989
|
* 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`.
|
|
920
990
|
*/
|
|
@@ -1493,6 +1563,10 @@ export interface DashboardWidgetCheckStatusDefinition {
|
|
|
1493
1563
|
* The kind of grouping to use. Valid values are `check`, `cluster`.
|
|
1494
1564
|
*/
|
|
1495
1565
|
grouping: string;
|
|
1566
|
+
/**
|
|
1567
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
1568
|
+
*/
|
|
1569
|
+
hideIncompleteCostData: boolean;
|
|
1496
1570
|
/**
|
|
1497
1571
|
* 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`.
|
|
1498
1572
|
*/
|
|
@@ -1515,6 +1589,10 @@ export interface DashboardWidgetCheckStatusDefinition {
|
|
|
1515
1589
|
titleSize?: string;
|
|
1516
1590
|
}
|
|
1517
1591
|
export interface DashboardWidgetDistributionDefinition {
|
|
1592
|
+
/**
|
|
1593
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
1594
|
+
*/
|
|
1595
|
+
hideIncompleteCostData: boolean;
|
|
1518
1596
|
/**
|
|
1519
1597
|
* The size of the legend displayed in the widget.
|
|
1520
1598
|
*/
|
|
@@ -1700,6 +1778,10 @@ export interface DashboardWidgetEventStreamDefinition {
|
|
|
1700
1778
|
* The size to use to display an event. Valid values are `s`, `l`.
|
|
1701
1779
|
*/
|
|
1702
1780
|
eventSize?: string;
|
|
1781
|
+
/**
|
|
1782
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
1783
|
+
*/
|
|
1784
|
+
hideIncompleteCostData: boolean;
|
|
1703
1785
|
/**
|
|
1704
1786
|
* 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`.
|
|
1705
1787
|
*/
|
|
@@ -1726,6 +1808,10 @@ export interface DashboardWidgetEventStreamDefinition {
|
|
|
1726
1808
|
titleSize?: string;
|
|
1727
1809
|
}
|
|
1728
1810
|
export interface DashboardWidgetEventTimelineDefinition {
|
|
1811
|
+
/**
|
|
1812
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
1813
|
+
*/
|
|
1814
|
+
hideIncompleteCostData: boolean;
|
|
1729
1815
|
/**
|
|
1730
1816
|
* 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`.
|
|
1731
1817
|
*/
|
|
@@ -1774,6 +1860,10 @@ export interface DashboardWidgetGeomapDefinition {
|
|
|
1774
1860
|
* A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
|
|
1775
1861
|
*/
|
|
1776
1862
|
customLinks?: outputs.DashboardWidgetGeomapDefinitionCustomLink[];
|
|
1863
|
+
/**
|
|
1864
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
1865
|
+
*/
|
|
1866
|
+
hideIncompleteCostData: boolean;
|
|
1777
1867
|
/**
|
|
1778
1868
|
* 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`.
|
|
1779
1869
|
*/
|
|
@@ -2500,6 +2590,10 @@ export interface DashboardWidgetHeatmapDefinition {
|
|
|
2500
2590
|
* The definition of the event to overlay on the graph. Multiple `event` blocks are allowed using the structure below.
|
|
2501
2591
|
*/
|
|
2502
2592
|
events?: outputs.DashboardWidgetHeatmapDefinitionEvent[];
|
|
2593
|
+
/**
|
|
2594
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
2595
|
+
*/
|
|
2596
|
+
hideIncompleteCostData: boolean;
|
|
2503
2597
|
/**
|
|
2504
2598
|
* The size of the legend displayed in the widget.
|
|
2505
2599
|
*/
|
|
@@ -3486,6 +3580,10 @@ export interface DashboardWidgetLogStreamDefinition {
|
|
|
3486
3580
|
* Stringified list of columns to use, for example: `["column1","column2","column3"]`.
|
|
3487
3581
|
*/
|
|
3488
3582
|
columns?: string[];
|
|
3583
|
+
/**
|
|
3584
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
3585
|
+
*/
|
|
3586
|
+
hideIncompleteCostData: boolean;
|
|
3489
3587
|
/**
|
|
3490
3588
|
* An array of index names to query in the stream.
|
|
3491
3589
|
*/
|
|
@@ -3694,6 +3792,10 @@ export interface DashboardWidgetQueryTableDefinition {
|
|
|
3694
3792
|
* Controls the display of the search bar. Valid values are `always`, `never`, `auto`.
|
|
3695
3793
|
*/
|
|
3696
3794
|
hasSearchBar?: string;
|
|
3795
|
+
/**
|
|
3796
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
3797
|
+
*/
|
|
3798
|
+
hideIncompleteCostData: boolean;
|
|
3697
3799
|
/**
|
|
3698
3800
|
* 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`.
|
|
3699
3801
|
*/
|
|
@@ -4425,6 +4527,10 @@ export interface DashboardWidgetQueryValueDefinition {
|
|
|
4425
4527
|
* The unit for the value displayed in the widget.
|
|
4426
4528
|
*/
|
|
4427
4529
|
customUnit?: string;
|
|
4530
|
+
/**
|
|
4531
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
4532
|
+
*/
|
|
4533
|
+
hideIncompleteCostData: boolean;
|
|
4428
4534
|
/**
|
|
4429
4535
|
* 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`.
|
|
4430
4536
|
*/
|
|
@@ -5217,6 +5323,10 @@ export interface DashboardWidgetRunWorkflowDefinition {
|
|
|
5217
5323
|
* A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
|
|
5218
5324
|
*/
|
|
5219
5325
|
customLinks?: outputs.DashboardWidgetRunWorkflowDefinitionCustomLink[];
|
|
5326
|
+
/**
|
|
5327
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
5328
|
+
*/
|
|
5329
|
+
hideIncompleteCostData: boolean;
|
|
5220
5330
|
/**
|
|
5221
5331
|
* Array of workflow inputs to map to dashboard template variables.
|
|
5222
5332
|
*/
|
|
@@ -5279,6 +5389,10 @@ export interface DashboardWidgetScatterplotDefinition {
|
|
|
5279
5389
|
* A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
|
|
5280
5390
|
*/
|
|
5281
5391
|
customLinks?: outputs.DashboardWidgetScatterplotDefinitionCustomLink[];
|
|
5392
|
+
/**
|
|
5393
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
5394
|
+
*/
|
|
5395
|
+
hideIncompleteCostData: boolean;
|
|
5282
5396
|
/**
|
|
5283
5397
|
* 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`.
|
|
5284
5398
|
*/
|
|
@@ -6047,6 +6161,10 @@ export interface DashboardWidgetSplitGraphDefinition {
|
|
|
6047
6161
|
* Normalize y axes across graphs.
|
|
6048
6162
|
*/
|
|
6049
6163
|
hasUniformYAxes?: boolean;
|
|
6164
|
+
/**
|
|
6165
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
6166
|
+
*/
|
|
6167
|
+
hideIncompleteCostData: boolean;
|
|
6050
6168
|
/**
|
|
6051
6169
|
* 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`.
|
|
6052
6170
|
*/
|
|
@@ -6165,6 +6283,10 @@ export interface DashboardWidgetSunburstDefinition {
|
|
|
6165
6283
|
* Nested block describing a custom link. Multiple `customLink` blocks are allowed with the structure below.
|
|
6166
6284
|
*/
|
|
6167
6285
|
customLinks?: outputs.DashboardWidgetSunburstDefinitionCustomLink[];
|
|
6286
|
+
/**
|
|
6287
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
6288
|
+
*/
|
|
6289
|
+
hideIncompleteCostData: boolean;
|
|
6168
6290
|
/**
|
|
6169
6291
|
* Whether or not to show the total value in the widget.
|
|
6170
6292
|
*/
|
|
@@ -6917,6 +7039,10 @@ export interface DashboardWidgetTimeseriesDefinition {
|
|
|
6917
7039
|
* The definition of the event to overlay on the graph. Multiple `event` blocks are allowed using the structure below.
|
|
6918
7040
|
*/
|
|
6919
7041
|
events?: outputs.DashboardWidgetTimeseriesDefinitionEvent[];
|
|
7042
|
+
/**
|
|
7043
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
7044
|
+
*/
|
|
7045
|
+
hideIncompleteCostData: boolean;
|
|
6920
7046
|
/**
|
|
6921
7047
|
* A list of columns to display in the legend. Valid values are `value`, `avg`, `sum`, `min`, `max`.
|
|
6922
7048
|
*/
|
|
@@ -7759,6 +7885,10 @@ export interface DashboardWidgetToplistDefinition {
|
|
|
7759
7885
|
* A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
|
|
7760
7886
|
*/
|
|
7761
7887
|
customLinks?: outputs.DashboardWidgetToplistDefinitionCustomLink[];
|
|
7888
|
+
/**
|
|
7889
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
7890
|
+
*/
|
|
7891
|
+
hideIncompleteCostData: boolean;
|
|
7762
7892
|
/**
|
|
7763
7893
|
* 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`.
|
|
7764
7894
|
*/
|
|
@@ -8527,6 +8657,10 @@ export interface DashboardWidgetTraceServiceDefinition {
|
|
|
8527
8657
|
* APM environment.
|
|
8528
8658
|
*/
|
|
8529
8659
|
env: string;
|
|
8660
|
+
/**
|
|
8661
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
8662
|
+
*/
|
|
8663
|
+
hideIncompleteCostData: boolean;
|
|
8530
8664
|
/**
|
|
8531
8665
|
* 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`.
|
|
8532
8666
|
*/
|
|
@@ -9784,6 +9918,76 @@ export interface GetMonitorsMonitor {
|
|
|
9784
9918
|
*/
|
|
9785
9919
|
type: string;
|
|
9786
9920
|
}
|
|
9921
|
+
export interface GetOrganizationSettingsSetting {
|
|
9922
|
+
/**
|
|
9923
|
+
* Whether or not the organization users can share widgets outside of Datadog.
|
|
9924
|
+
*/
|
|
9925
|
+
privateWidgetShare: boolean;
|
|
9926
|
+
/**
|
|
9927
|
+
* 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`.
|
|
9928
|
+
*/
|
|
9929
|
+
samlAutocreateAccessRole: string;
|
|
9930
|
+
/**
|
|
9931
|
+
* List of domains where the SAML automated user creation is enabled.
|
|
9932
|
+
*/
|
|
9933
|
+
samlAutocreateUsersDomains?: outputs.GetOrganizationSettingsSettingSamlAutocreateUsersDomain[];
|
|
9934
|
+
/**
|
|
9935
|
+
* Whether or not SAML can be enabled for this organization.
|
|
9936
|
+
*/
|
|
9937
|
+
samlCanBeEnabled: boolean;
|
|
9938
|
+
/**
|
|
9939
|
+
* Identity provider endpoint for SAML authentication.
|
|
9940
|
+
*/
|
|
9941
|
+
samlIdpEndpoint: string;
|
|
9942
|
+
/**
|
|
9943
|
+
* Whether or not a SAML identity provider metadata file was provided to the Datadog organization.
|
|
9944
|
+
*/
|
|
9945
|
+
samlIdpInitiatedLogins?: outputs.GetOrganizationSettingsSettingSamlIdpInitiatedLogin[];
|
|
9946
|
+
/**
|
|
9947
|
+
* Whether or not a SAML identity provider metadata file was provided to the Datadog organization.
|
|
9948
|
+
*/
|
|
9949
|
+
samlIdpMetadataUploaded: boolean;
|
|
9950
|
+
/**
|
|
9951
|
+
* URL for SAML logging.
|
|
9952
|
+
*/
|
|
9953
|
+
samlLoginUrl: string;
|
|
9954
|
+
/**
|
|
9955
|
+
* Whether or not the SAML strict mode is enabled. If true, all users must log in with SAML.
|
|
9956
|
+
*/
|
|
9957
|
+
samlStrictModes?: outputs.GetOrganizationSettingsSettingSamlStrictMode[];
|
|
9958
|
+
/**
|
|
9959
|
+
* SAML properties.
|
|
9960
|
+
*/
|
|
9961
|
+
samls?: outputs.GetOrganizationSettingsSettingSaml[];
|
|
9962
|
+
}
|
|
9963
|
+
export interface GetOrganizationSettingsSettingSaml {
|
|
9964
|
+
/**
|
|
9965
|
+
* Whether or not SAML is enabled for this organization.
|
|
9966
|
+
*/
|
|
9967
|
+
enabled: boolean;
|
|
9968
|
+
}
|
|
9969
|
+
export interface GetOrganizationSettingsSettingSamlAutocreateUsersDomain {
|
|
9970
|
+
/**
|
|
9971
|
+
* List of domains where the SAML automated user creation is enabled.
|
|
9972
|
+
*/
|
|
9973
|
+
domains: string[];
|
|
9974
|
+
/**
|
|
9975
|
+
* Whether or not the automated user creation based on SAML domain is enabled.
|
|
9976
|
+
*/
|
|
9977
|
+
enabled: boolean;
|
|
9978
|
+
}
|
|
9979
|
+
export interface GetOrganizationSettingsSettingSamlIdpInitiatedLogin {
|
|
9980
|
+
/**
|
|
9981
|
+
* Whether or not a SAML identity provider metadata file was provided to the Datadog organization.
|
|
9982
|
+
*/
|
|
9983
|
+
enabled: boolean;
|
|
9984
|
+
}
|
|
9985
|
+
export interface GetOrganizationSettingsSettingSamlStrictMode {
|
|
9986
|
+
/**
|
|
9987
|
+
* Whether or not the SAML strict mode is enabled. If true, all users must log in with SAML.
|
|
9988
|
+
*/
|
|
9989
|
+
enabled: boolean;
|
|
9990
|
+
}
|
|
9787
9991
|
export interface GetReferenceTableFileMetadata {
|
|
9788
9992
|
/**
|
|
9789
9993
|
* Cloud storage access configuration. Only present for cloud storage sources (S3, GCS, Azure).
|
|
@@ -10539,6 +10743,84 @@ export interface GetTeamMembershipsTeamMembership {
|
|
|
10539
10743
|
teamId: string;
|
|
10540
10744
|
userId: string;
|
|
10541
10745
|
}
|
|
10746
|
+
export interface GetTeamNotificationRuleEmail {
|
|
10747
|
+
/**
|
|
10748
|
+
* Flag indicating whether email notifications should be sent
|
|
10749
|
+
*/
|
|
10750
|
+
enabled: boolean;
|
|
10751
|
+
}
|
|
10752
|
+
export interface GetTeamNotificationRuleMsTeams {
|
|
10753
|
+
/**
|
|
10754
|
+
* MS Teams connector name
|
|
10755
|
+
*/
|
|
10756
|
+
connectorName: string;
|
|
10757
|
+
}
|
|
10758
|
+
export interface GetTeamNotificationRulePagerduty {
|
|
10759
|
+
/**
|
|
10760
|
+
* PagerDuty service name
|
|
10761
|
+
*/
|
|
10762
|
+
serviceName: string;
|
|
10763
|
+
}
|
|
10764
|
+
export interface GetTeamNotificationRuleSlack {
|
|
10765
|
+
/**
|
|
10766
|
+
* Slack channel for notifications
|
|
10767
|
+
*/
|
|
10768
|
+
channel: string;
|
|
10769
|
+
/**
|
|
10770
|
+
* Slack workspace for notifications
|
|
10771
|
+
*/
|
|
10772
|
+
workspace: string;
|
|
10773
|
+
}
|
|
10774
|
+
export interface GetTeamNotificationRulesNotificationRule {
|
|
10775
|
+
/**
|
|
10776
|
+
* The email notification settings.
|
|
10777
|
+
*/
|
|
10778
|
+
email?: outputs.GetTeamNotificationRulesNotificationRuleEmail;
|
|
10779
|
+
/**
|
|
10780
|
+
* The ID of the notification rule.
|
|
10781
|
+
*/
|
|
10782
|
+
id: string;
|
|
10783
|
+
/**
|
|
10784
|
+
* The MS Teams notification settings.
|
|
10785
|
+
*/
|
|
10786
|
+
msTeams?: outputs.GetTeamNotificationRulesNotificationRuleMsTeams;
|
|
10787
|
+
/**
|
|
10788
|
+
* The PagerDuty notification settings.
|
|
10789
|
+
*/
|
|
10790
|
+
pagerduty?: outputs.GetTeamNotificationRulesNotificationRulePagerduty;
|
|
10791
|
+
/**
|
|
10792
|
+
* The Slack notification settings.
|
|
10793
|
+
*/
|
|
10794
|
+
slack?: outputs.GetTeamNotificationRulesNotificationRuleSlack;
|
|
10795
|
+
}
|
|
10796
|
+
export interface GetTeamNotificationRulesNotificationRuleEmail {
|
|
10797
|
+
/**
|
|
10798
|
+
* Flag indicating whether email notifications should be sent.
|
|
10799
|
+
*/
|
|
10800
|
+
enabled: boolean;
|
|
10801
|
+
}
|
|
10802
|
+
export interface GetTeamNotificationRulesNotificationRuleMsTeams {
|
|
10803
|
+
/**
|
|
10804
|
+
* MS Teams connector name.
|
|
10805
|
+
*/
|
|
10806
|
+
connectorName: string;
|
|
10807
|
+
}
|
|
10808
|
+
export interface GetTeamNotificationRulesNotificationRulePagerduty {
|
|
10809
|
+
/**
|
|
10810
|
+
* PagerDuty service name.
|
|
10811
|
+
*/
|
|
10812
|
+
serviceName: string;
|
|
10813
|
+
}
|
|
10814
|
+
export interface GetTeamNotificationRulesNotificationRuleSlack {
|
|
10815
|
+
/**
|
|
10816
|
+
* Slack channel for notifications.
|
|
10817
|
+
*/
|
|
10818
|
+
channel: string;
|
|
10819
|
+
/**
|
|
10820
|
+
* Slack workspace for notifications.
|
|
10821
|
+
*/
|
|
10822
|
+
workspace: string;
|
|
10823
|
+
}
|
|
10542
10824
|
export interface GetTeamsTeam {
|
|
10543
10825
|
/**
|
|
10544
10826
|
* Free-form markdown description/content for the team's homepage.
|
|
@@ -12419,6 +12701,10 @@ export interface ObservabilityPipelineConfig {
|
|
|
12419
12701
|
* List of destinations.
|
|
12420
12702
|
*/
|
|
12421
12703
|
destinations?: outputs.ObservabilityPipelineConfigDestination[];
|
|
12704
|
+
/**
|
|
12705
|
+
* The type of data being ingested. Defaults to `logs` if not specified. Valid values are `logs`, `metrics`.
|
|
12706
|
+
*/
|
|
12707
|
+
pipelineType: string;
|
|
12422
12708
|
/**
|
|
12423
12709
|
* A processor group containing common configuration and nested processors.
|
|
12424
12710
|
*/
|
|
@@ -12445,6 +12731,10 @@ export interface ObservabilityPipelineConfigDestination {
|
|
|
12445
12731
|
* The `azureStorage` destination forwards logs to an Azure Blob Storage container.
|
|
12446
12732
|
*/
|
|
12447
12733
|
azureStorages?: outputs.ObservabilityPipelineConfigDestinationAzureStorage[];
|
|
12734
|
+
/**
|
|
12735
|
+
* The `cloudPrem` destination sends logs to Datadog CloudPrem.
|
|
12736
|
+
*/
|
|
12737
|
+
cloudPrem?: outputs.ObservabilityPipelineConfigDestinationCloudPrem;
|
|
12448
12738
|
/**
|
|
12449
12739
|
* The `crowdstrikeNextGenSiem` destination forwards logs to CrowdStrike Next Gen SIEM.
|
|
12450
12740
|
*/
|
|
@@ -12453,6 +12743,10 @@ export interface ObservabilityPipelineConfigDestination {
|
|
|
12453
12743
|
* The `datadogLogs` destination forwards logs to Datadog Log Management.
|
|
12454
12744
|
*/
|
|
12455
12745
|
datadogLogs?: outputs.ObservabilityPipelineConfigDestinationDatadogLog[];
|
|
12746
|
+
/**
|
|
12747
|
+
* The `datadog.getMetrics` destination forwards metrics to Datadog.
|
|
12748
|
+
*/
|
|
12749
|
+
datadogMetrics?: outputs.ObservabilityPipelineConfigDestinationDatadogMetric[];
|
|
12456
12750
|
/**
|
|
12457
12751
|
* The `elasticsearch` destination writes logs to an Elasticsearch cluster.
|
|
12458
12752
|
*/
|
|
@@ -12469,6 +12763,10 @@ export interface ObservabilityPipelineConfigDestination {
|
|
|
12469
12763
|
* The `googlePubsub` destination publishes logs to a Google Cloud Pub/Sub topic.
|
|
12470
12764
|
*/
|
|
12471
12765
|
googlePubsubs?: outputs.ObservabilityPipelineConfigDestinationGooglePubsub[];
|
|
12766
|
+
/**
|
|
12767
|
+
* The `httpClient` destination sends data to an HTTP endpoint.
|
|
12768
|
+
*/
|
|
12769
|
+
httpClients?: outputs.ObservabilityPipelineConfigDestinationHttpClient[];
|
|
12472
12770
|
/**
|
|
12473
12771
|
* The unique identifier for this destination.
|
|
12474
12772
|
*/
|
|
@@ -12477,6 +12775,10 @@ export interface ObservabilityPipelineConfigDestination {
|
|
|
12477
12775
|
* A list of component IDs whose output is used as the `input` for this component.
|
|
12478
12776
|
*/
|
|
12479
12777
|
inputs: string[];
|
|
12778
|
+
/**
|
|
12779
|
+
* The `kafka` destination sends logs to Apache Kafka topics.
|
|
12780
|
+
*/
|
|
12781
|
+
kafka?: outputs.ObservabilityPipelineConfigDestinationKafka;
|
|
12480
12782
|
/**
|
|
12481
12783
|
* The `microsoftSentinel` destination forwards logs to Microsoft Sentinel.
|
|
12482
12784
|
*/
|
|
@@ -12639,6 +12941,8 @@ export interface ObservabilityPipelineConfigDestinationAzureStorage {
|
|
|
12639
12941
|
*/
|
|
12640
12942
|
containerName: string;
|
|
12641
12943
|
}
|
|
12944
|
+
export interface ObservabilityPipelineConfigDestinationCloudPrem {
|
|
12945
|
+
}
|
|
12642
12946
|
export interface ObservabilityPipelineConfigDestinationCrowdstrikeNextGenSiem {
|
|
12643
12947
|
/**
|
|
12644
12948
|
* Compression configuration for log events.
|
|
@@ -12679,6 +12983,8 @@ export interface ObservabilityPipelineConfigDestinationCrowdstrikeNextGenSiemTls
|
|
|
12679
12983
|
}
|
|
12680
12984
|
export interface ObservabilityPipelineConfigDestinationDatadogLog {
|
|
12681
12985
|
}
|
|
12986
|
+
export interface ObservabilityPipelineConfigDestinationDatadogMetric {
|
|
12987
|
+
}
|
|
12682
12988
|
export interface ObservabilityPipelineConfigDestinationElasticsearch {
|
|
12683
12989
|
/**
|
|
12684
12990
|
* The Elasticsearch API version to use. Set to `auto` to auto-detect.
|
|
@@ -12688,6 +12994,24 @@ export interface ObservabilityPipelineConfigDestinationElasticsearch {
|
|
|
12688
12994
|
* The index or datastream to write logs to in Elasticsearch.
|
|
12689
12995
|
*/
|
|
12690
12996
|
bulkIndex?: string;
|
|
12997
|
+
/**
|
|
12998
|
+
* Configuration options for writing to Elasticsearch Data Streams instead of a fixed index.
|
|
12999
|
+
*/
|
|
13000
|
+
dataStream?: outputs.ObservabilityPipelineConfigDestinationElasticsearchDataStream;
|
|
13001
|
+
}
|
|
13002
|
+
export interface ObservabilityPipelineConfigDestinationElasticsearchDataStream {
|
|
13003
|
+
/**
|
|
13004
|
+
* The data stream dataset for your logs. This groups logs by their source or application.
|
|
13005
|
+
*/
|
|
13006
|
+
dataset?: string;
|
|
13007
|
+
/**
|
|
13008
|
+
* The data stream type for your logs. This determines how logs are categorized within the data stream.
|
|
13009
|
+
*/
|
|
13010
|
+
dtype?: string;
|
|
13011
|
+
/**
|
|
13012
|
+
* The data stream namespace for your logs. This separates logs into different environments or domains.
|
|
13013
|
+
*/
|
|
13014
|
+
namespace?: string;
|
|
12691
13015
|
}
|
|
12692
13016
|
export interface ObservabilityPipelineConfigDestinationGoogleChronicle {
|
|
12693
13017
|
/**
|
|
@@ -12797,6 +13121,124 @@ export interface ObservabilityPipelineConfigDestinationGooglePubsubTls {
|
|
|
12797
13121
|
*/
|
|
12798
13122
|
keyFile?: string;
|
|
12799
13123
|
}
|
|
13124
|
+
export interface ObservabilityPipelineConfigDestinationHttpClient {
|
|
13125
|
+
/**
|
|
13126
|
+
* HTTP authentication strategy. Valid values are `none`, `basic`, `bearer`.
|
|
13127
|
+
*/
|
|
13128
|
+
authStrategy?: string;
|
|
13129
|
+
/**
|
|
13130
|
+
* Compression configuration for HTTP requests.
|
|
13131
|
+
*/
|
|
13132
|
+
compression?: outputs.ObservabilityPipelineConfigDestinationHttpClientCompression;
|
|
13133
|
+
/**
|
|
13134
|
+
* Encoding format for events. Valid values are `json`.
|
|
13135
|
+
*/
|
|
13136
|
+
encoding: string;
|
|
13137
|
+
/**
|
|
13138
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
13139
|
+
*/
|
|
13140
|
+
tls?: outputs.ObservabilityPipelineConfigDestinationHttpClientTls;
|
|
13141
|
+
}
|
|
13142
|
+
export interface ObservabilityPipelineConfigDestinationHttpClientCompression {
|
|
13143
|
+
/**
|
|
13144
|
+
* Compression algorithm. Valid values are `gzip`.
|
|
13145
|
+
*/
|
|
13146
|
+
algorithm: string;
|
|
13147
|
+
}
|
|
13148
|
+
export interface ObservabilityPipelineConfigDestinationHttpClientTls {
|
|
13149
|
+
/**
|
|
13150
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
13151
|
+
*/
|
|
13152
|
+
caFile?: string;
|
|
13153
|
+
/**
|
|
13154
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
13155
|
+
*/
|
|
13156
|
+
crtFile: string;
|
|
13157
|
+
/**
|
|
13158
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
13159
|
+
*/
|
|
13160
|
+
keyFile?: string;
|
|
13161
|
+
}
|
|
13162
|
+
export interface ObservabilityPipelineConfigDestinationKafka {
|
|
13163
|
+
/**
|
|
13164
|
+
* Compression codec for Kafka messages. Valid values are `none`, `gzip`, `snappy`, `lz4`, `zstd`.
|
|
13165
|
+
*/
|
|
13166
|
+
compression?: string;
|
|
13167
|
+
/**
|
|
13168
|
+
* Encoding format for log events. Valid values are `json`, `rawMessage`.
|
|
13169
|
+
*/
|
|
13170
|
+
encoding: string;
|
|
13171
|
+
/**
|
|
13172
|
+
* The field name to use for Kafka message headers.
|
|
13173
|
+
*/
|
|
13174
|
+
headersKey?: string;
|
|
13175
|
+
/**
|
|
13176
|
+
* The field name to use as the Kafka message key.
|
|
13177
|
+
*/
|
|
13178
|
+
keyField?: string;
|
|
13179
|
+
/**
|
|
13180
|
+
* Optional list of advanced Kafka producer configuration options, defined as key-value pairs.
|
|
13181
|
+
*/
|
|
13182
|
+
librdkafkaOptions?: outputs.ObservabilityPipelineConfigDestinationKafkaLibrdkafkaOption[];
|
|
13183
|
+
/**
|
|
13184
|
+
* Maximum time in milliseconds to wait for message delivery confirmation.
|
|
13185
|
+
*/
|
|
13186
|
+
messageTimeoutMs?: number;
|
|
13187
|
+
/**
|
|
13188
|
+
* Duration in seconds for the rate limit window.
|
|
13189
|
+
*/
|
|
13190
|
+
rateLimitDurationSecs?: number;
|
|
13191
|
+
/**
|
|
13192
|
+
* Maximum number of messages allowed per rate limit duration.
|
|
13193
|
+
*/
|
|
13194
|
+
rateLimitNum?: number;
|
|
13195
|
+
/**
|
|
13196
|
+
* Specifies the SASL mechanism for authenticating with a Kafka cluster.
|
|
13197
|
+
*/
|
|
13198
|
+
sasl?: outputs.ObservabilityPipelineConfigDestinationKafkaSasl;
|
|
13199
|
+
/**
|
|
13200
|
+
* Socket timeout in milliseconds for network requests.
|
|
13201
|
+
*/
|
|
13202
|
+
socketTimeoutMs?: number;
|
|
13203
|
+
/**
|
|
13204
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
13205
|
+
*/
|
|
13206
|
+
tls?: outputs.ObservabilityPipelineConfigDestinationKafkaTls;
|
|
13207
|
+
/**
|
|
13208
|
+
* The Kafka topic name to publish logs to.
|
|
13209
|
+
*/
|
|
13210
|
+
topic: string;
|
|
13211
|
+
}
|
|
13212
|
+
export interface ObservabilityPipelineConfigDestinationKafkaLibrdkafkaOption {
|
|
13213
|
+
/**
|
|
13214
|
+
* The name of the librdkafka configuration option.
|
|
13215
|
+
*/
|
|
13216
|
+
name: string;
|
|
13217
|
+
/**
|
|
13218
|
+
* The value of the librdkafka configuration option.
|
|
13219
|
+
*/
|
|
13220
|
+
value: string;
|
|
13221
|
+
}
|
|
13222
|
+
export interface ObservabilityPipelineConfigDestinationKafkaSasl {
|
|
13223
|
+
/**
|
|
13224
|
+
* SASL authentication mechanism. Valid values are `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`.
|
|
13225
|
+
*/
|
|
13226
|
+
mechanism: string;
|
|
13227
|
+
}
|
|
13228
|
+
export interface ObservabilityPipelineConfigDestinationKafkaTls {
|
|
13229
|
+
/**
|
|
13230
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
13231
|
+
*/
|
|
13232
|
+
caFile?: string;
|
|
13233
|
+
/**
|
|
13234
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
13235
|
+
*/
|
|
13236
|
+
crtFile: string;
|
|
13237
|
+
/**
|
|
13238
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
13239
|
+
*/
|
|
13240
|
+
keyFile?: string;
|
|
13241
|
+
}
|
|
12800
13242
|
export interface ObservabilityPipelineConfigDestinationMicrosoftSentinel {
|
|
12801
13243
|
/**
|
|
12802
13244
|
* Azure AD client ID used for authentication.
|
|
@@ -12913,7 +13355,7 @@ export interface ObservabilityPipelineConfigDestinationSplunkHec {
|
|
|
12913
13355
|
/**
|
|
12914
13356
|
* Encoding format for log events. Valid values: `json`, `rawMessage`.
|
|
12915
13357
|
*/
|
|
12916
|
-
encoding
|
|
13358
|
+
encoding: string;
|
|
12917
13359
|
/**
|
|
12918
13360
|
* Optional name of the Splunk index where logs are written.
|
|
12919
13361
|
*/
|
|
@@ -13014,6 +13456,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessor {
|
|
|
13014
13456
|
* The `addFields` processor adds static key-value fields to logs.
|
|
13015
13457
|
*/
|
|
13016
13458
|
addFields?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorAddFields;
|
|
13459
|
+
/**
|
|
13460
|
+
* The `addHostname` processor adds the hostname to log events.
|
|
13461
|
+
*/
|
|
13462
|
+
addHostname?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorAddHostname;
|
|
13017
13463
|
/**
|
|
13018
13464
|
* The `customProcessor` processor transforms events using Vector Remap Language (VRL) scripts with advanced filtering capabilities.
|
|
13019
13465
|
*/
|
|
@@ -13051,6 +13497,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessor {
|
|
|
13051
13497
|
* A Datadog search query used to determine which logs this processor targets.
|
|
13052
13498
|
*/
|
|
13053
13499
|
include: string;
|
|
13500
|
+
/**
|
|
13501
|
+
* The `metricTags` processor filters metrics based on their tags using Datadog tag key patterns.
|
|
13502
|
+
*/
|
|
13503
|
+
metricTags?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorMetricTags;
|
|
13054
13504
|
/**
|
|
13055
13505
|
* The `ocsfMapper` processor transforms logs into the OCSF schema using predefined library mappings.
|
|
13056
13506
|
*/
|
|
@@ -13063,6 +13513,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessor {
|
|
|
13063
13513
|
* 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.
|
|
13064
13514
|
*/
|
|
13065
13515
|
parseJson?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorParseJson;
|
|
13516
|
+
/**
|
|
13517
|
+
* The `parseXml` processor parses XML from a specified field and extracts it into the event.
|
|
13518
|
+
*/
|
|
13519
|
+
parseXml?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorParseXml;
|
|
13066
13520
|
/**
|
|
13067
13521
|
* 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.
|
|
13068
13522
|
*/
|
|
@@ -13087,6 +13541,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessor {
|
|
|
13087
13541
|
* The `sensitiveDataScanner` processor detects and optionally redacts sensitive data in log events.
|
|
13088
13542
|
*/
|
|
13089
13543
|
sensitiveDataScanner?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorSensitiveDataScanner;
|
|
13544
|
+
/**
|
|
13545
|
+
* The `splitArray` processor splits array fields into separate events based on configured rules.
|
|
13546
|
+
*/
|
|
13547
|
+
splitArray?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorSplitArray;
|
|
13090
13548
|
/**
|
|
13091
13549
|
* The `throttle` processor limits the number of events that pass through over a given time window.
|
|
13092
13550
|
*/
|
|
@@ -13124,6 +13582,8 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorAddFieldsFiel
|
|
|
13124
13582
|
*/
|
|
13125
13583
|
value: string;
|
|
13126
13584
|
}
|
|
13585
|
+
export interface ObservabilityPipelineConfigProcessorGroupProcessorAddHostname {
|
|
13586
|
+
}
|
|
13127
13587
|
export interface ObservabilityPipelineConfigProcessorGroupProcessorCustomProcessor {
|
|
13128
13588
|
/**
|
|
13129
13589
|
* Array of VRL remap configurations. Each remap defines a transformation rule with its own filter and VRL script.
|
|
@@ -13182,6 +13642,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTab
|
|
|
13182
13642
|
* Uses a GeoIP database to enrich logs based on an IP field.
|
|
13183
13643
|
*/
|
|
13184
13644
|
geoip?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableGeoip;
|
|
13645
|
+
/**
|
|
13646
|
+
* Uses a Datadog reference table to enrich logs.
|
|
13647
|
+
*/
|
|
13648
|
+
referenceTable?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableReferenceTable;
|
|
13185
13649
|
/**
|
|
13186
13650
|
* Path where enrichment results should be stored in the log.
|
|
13187
13651
|
*/
|
|
@@ -13254,6 +13718,20 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTab
|
|
|
13254
13718
|
*/
|
|
13255
13719
|
path?: string;
|
|
13256
13720
|
}
|
|
13721
|
+
export interface ObservabilityPipelineConfigProcessorGroupProcessorEnrichmentTableReferenceTable {
|
|
13722
|
+
/**
|
|
13723
|
+
* List of column names to include from the reference table. If not provided, all columns are included.
|
|
13724
|
+
*/
|
|
13725
|
+
columns?: string[];
|
|
13726
|
+
/**
|
|
13727
|
+
* Path to the field in the log event to match against the reference table.
|
|
13728
|
+
*/
|
|
13729
|
+
keyField: string;
|
|
13730
|
+
/**
|
|
13731
|
+
* The unique identifier of the reference table.
|
|
13732
|
+
*/
|
|
13733
|
+
tableId: string;
|
|
13734
|
+
}
|
|
13257
13735
|
export interface ObservabilityPipelineConfigProcessorGroupProcessorFilter {
|
|
13258
13736
|
}
|
|
13259
13737
|
export interface ObservabilityPipelineConfigProcessorGroupProcessorGenerateDatadogMetrics {
|
|
@@ -13294,6 +13772,30 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorGenerateDatad
|
|
|
13294
13772
|
*/
|
|
13295
13773
|
strategy: string;
|
|
13296
13774
|
}
|
|
13775
|
+
export interface ObservabilityPipelineConfigProcessorGroupProcessorMetricTags {
|
|
13776
|
+
/**
|
|
13777
|
+
* A list of rules for filtering metric tags.
|
|
13778
|
+
*/
|
|
13779
|
+
rules?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorMetricTagsRule[];
|
|
13780
|
+
}
|
|
13781
|
+
export interface ObservabilityPipelineConfigProcessorGroupProcessorMetricTagsRule {
|
|
13782
|
+
/**
|
|
13783
|
+
* The action to take on tags with matching keys. Valid values are `include`, `exclude`.
|
|
13784
|
+
*/
|
|
13785
|
+
action: string;
|
|
13786
|
+
/**
|
|
13787
|
+
* A Datadog search query used to determine which metrics this rule targets.
|
|
13788
|
+
*/
|
|
13789
|
+
include: string;
|
|
13790
|
+
/**
|
|
13791
|
+
* A list of tag keys to include or exclude.
|
|
13792
|
+
*/
|
|
13793
|
+
keys: string[];
|
|
13794
|
+
/**
|
|
13795
|
+
* The processing mode for tag filtering. Valid values are `filter`.
|
|
13796
|
+
*/
|
|
13797
|
+
mode: string;
|
|
13798
|
+
}
|
|
13297
13799
|
export interface ObservabilityPipelineConfigProcessorGroupProcessorOcsfMapper {
|
|
13298
13800
|
/**
|
|
13299
13801
|
* List of OCSF mapping entries using library mapping.
|
|
@@ -13360,6 +13862,40 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorParseJson {
|
|
|
13360
13862
|
*/
|
|
13361
13863
|
field: string;
|
|
13362
13864
|
}
|
|
13865
|
+
export interface ObservabilityPipelineConfigProcessorGroupProcessorParseXml {
|
|
13866
|
+
/**
|
|
13867
|
+
* Whether to always store text inside an object using the text key even when no attributes exist.
|
|
13868
|
+
*/
|
|
13869
|
+
alwaysUseTextKey?: boolean;
|
|
13870
|
+
/**
|
|
13871
|
+
* The prefix to use for XML attributes in the parsed output. If the field is left empty, the original attribute key is used.
|
|
13872
|
+
*/
|
|
13873
|
+
attrPrefix?: string;
|
|
13874
|
+
/**
|
|
13875
|
+
* The path to the log field on which you want to parse XML.
|
|
13876
|
+
*/
|
|
13877
|
+
field: string;
|
|
13878
|
+
/**
|
|
13879
|
+
* Whether to include XML attributes in the parsed output.
|
|
13880
|
+
*/
|
|
13881
|
+
includeAttr?: boolean;
|
|
13882
|
+
/**
|
|
13883
|
+
* Whether to parse boolean values from strings.
|
|
13884
|
+
*/
|
|
13885
|
+
parseBool?: boolean;
|
|
13886
|
+
/**
|
|
13887
|
+
* Whether to parse null values.
|
|
13888
|
+
*/
|
|
13889
|
+
parseNull?: boolean;
|
|
13890
|
+
/**
|
|
13891
|
+
* Whether to parse numeric values from strings.
|
|
13892
|
+
*/
|
|
13893
|
+
parseNumber?: boolean;
|
|
13894
|
+
/**
|
|
13895
|
+
* The key name to use for the text node when XML attributes are appended.
|
|
13896
|
+
*/
|
|
13897
|
+
textKey?: string;
|
|
13898
|
+
}
|
|
13363
13899
|
export interface ObservabilityPipelineConfigProcessorGroupProcessorQuota {
|
|
13364
13900
|
/**
|
|
13365
13901
|
* Whether to drop events exceeding the limit.
|
|
@@ -13386,6 +13922,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorQuota {
|
|
|
13386
13922
|
* List of partition fields.
|
|
13387
13923
|
*/
|
|
13388
13924
|
partitionFields?: string[];
|
|
13925
|
+
/**
|
|
13926
|
+
* The action to take when the max number of buckets is exceeded: `drop`, `noAction`, or `overflowRouting`.
|
|
13927
|
+
*/
|
|
13928
|
+
tooManyBucketsAction?: string;
|
|
13389
13929
|
}
|
|
13390
13930
|
export interface ObservabilityPipelineConfigProcessorGroupProcessorQuotaLimit {
|
|
13391
13931
|
/**
|
|
@@ -13472,13 +14012,13 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorRenameFieldsF
|
|
|
13472
14012
|
}
|
|
13473
14013
|
export interface ObservabilityPipelineConfigProcessorGroupProcessorSample {
|
|
13474
14014
|
/**
|
|
13475
|
-
*
|
|
14015
|
+
* Optional list of fields to group events by. Each group is sampled independently.
|
|
13476
14016
|
*/
|
|
13477
|
-
|
|
14017
|
+
groupBies?: string[];
|
|
13478
14018
|
/**
|
|
13479
|
-
*
|
|
14019
|
+
* The percentage of logs to sample.
|
|
13480
14020
|
*/
|
|
13481
|
-
|
|
14021
|
+
percentage: number;
|
|
13482
14022
|
}
|
|
13483
14023
|
export interface ObservabilityPipelineConfigProcessorGroupProcessorSensitiveDataScanner {
|
|
13484
14024
|
/**
|
|
@@ -13565,12 +14105,20 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorSensitiveData
|
|
|
13565
14105
|
library?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorSensitiveDataScannerRulePatternLibrary;
|
|
13566
14106
|
}
|
|
13567
14107
|
export interface ObservabilityPipelineConfigProcessorGroupProcessorSensitiveDataScannerRulePatternCustom {
|
|
14108
|
+
/**
|
|
14109
|
+
* Human-readable description providing context about a sensitive data scanner rule.
|
|
14110
|
+
*/
|
|
14111
|
+
description?: string;
|
|
13568
14112
|
/**
|
|
13569
14113
|
* A regular expression used to detect sensitive values. Must be a valid regex.
|
|
13570
14114
|
*/
|
|
13571
14115
|
rule?: string;
|
|
13572
14116
|
}
|
|
13573
14117
|
export interface ObservabilityPipelineConfigProcessorGroupProcessorSensitiveDataScannerRulePatternLibrary {
|
|
14118
|
+
/**
|
|
14119
|
+
* Human-readable description providing context about a sensitive data scanner rule.
|
|
14120
|
+
*/
|
|
14121
|
+
description?: string;
|
|
13574
14122
|
/**
|
|
13575
14123
|
* Identifier for a predefined pattern from the sensitive data scanner pattern library.
|
|
13576
14124
|
*/
|
|
@@ -13606,6 +14154,22 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorSensitiveData
|
|
|
13606
14154
|
*/
|
|
13607
14155
|
fields?: string[];
|
|
13608
14156
|
}
|
|
14157
|
+
export interface ObservabilityPipelineConfigProcessorGroupProcessorSplitArray {
|
|
14158
|
+
/**
|
|
14159
|
+
* A list of array split configurations.
|
|
14160
|
+
*/
|
|
14161
|
+
arrays?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorSplitArrayArray[];
|
|
14162
|
+
}
|
|
14163
|
+
export interface ObservabilityPipelineConfigProcessorGroupProcessorSplitArrayArray {
|
|
14164
|
+
/**
|
|
14165
|
+
* The path to the array field to split.
|
|
14166
|
+
*/
|
|
14167
|
+
field: string;
|
|
14168
|
+
/**
|
|
14169
|
+
* A Datadog search query used to determine which logs this array split operation targets.
|
|
14170
|
+
*/
|
|
14171
|
+
include: string;
|
|
14172
|
+
}
|
|
13609
14173
|
export interface ObservabilityPipelineConfigProcessorGroupProcessorThrottle {
|
|
13610
14174
|
/**
|
|
13611
14175
|
* Optional list of fields used to group events before applying throttling.
|
|
@@ -13665,6 +14229,10 @@ export interface ObservabilityPipelineConfigSource {
|
|
|
13665
14229
|
* The `logstash` source ingests logs from a Logstash forwarder.
|
|
13666
14230
|
*/
|
|
13667
14231
|
logstashes?: outputs.ObservabilityPipelineConfigSourceLogstash[];
|
|
14232
|
+
/**
|
|
14233
|
+
* The `opentelemetry` source receives telemetry data using the OpenTelemetry Protocol (OTLP) over gRPC and HTTP.
|
|
14234
|
+
*/
|
|
14235
|
+
opentelemetry?: outputs.ObservabilityPipelineConfigSourceOpentelemetry;
|
|
13668
14236
|
/**
|
|
13669
14237
|
* The `rsyslog` source listens for logs over TCP or UDP from an `rsyslog` server using the syslog protocol.
|
|
13670
14238
|
*/
|
|
@@ -13874,7 +14442,7 @@ export interface ObservabilityPipelineConfigSourceGooglePubsubTls {
|
|
|
13874
14442
|
}
|
|
13875
14443
|
export interface ObservabilityPipelineConfigSourceHttpClient {
|
|
13876
14444
|
/**
|
|
13877
|
-
* Optional authentication strategy for HTTP requests.
|
|
14445
|
+
* Optional authentication strategy for HTTP requests. Valid values are `none`, `basic`, `bearer`.
|
|
13878
14446
|
*/
|
|
13879
14447
|
authStrategy?: string;
|
|
13880
14448
|
/**
|
|
@@ -14008,6 +14576,26 @@ export interface ObservabilityPipelineConfigSourceLogstashTls {
|
|
|
14008
14576
|
*/
|
|
14009
14577
|
keyFile?: string;
|
|
14010
14578
|
}
|
|
14579
|
+
export interface ObservabilityPipelineConfigSourceOpentelemetry {
|
|
14580
|
+
/**
|
|
14581
|
+
* Configuration for enabling TLS encryption between the pipeline component and external services.
|
|
14582
|
+
*/
|
|
14583
|
+
tls?: outputs.ObservabilityPipelineConfigSourceOpentelemetryTls;
|
|
14584
|
+
}
|
|
14585
|
+
export interface ObservabilityPipelineConfigSourceOpentelemetryTls {
|
|
14586
|
+
/**
|
|
14587
|
+
* Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
|
|
14588
|
+
*/
|
|
14589
|
+
caFile?: string;
|
|
14590
|
+
/**
|
|
14591
|
+
* Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
|
|
14592
|
+
*/
|
|
14593
|
+
crtFile: string;
|
|
14594
|
+
/**
|
|
14595
|
+
* Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
|
|
14596
|
+
*/
|
|
14597
|
+
keyFile?: string;
|
|
14598
|
+
}
|
|
14011
14599
|
export interface ObservabilityPipelineConfigSourceRsyslog {
|
|
14012
14600
|
/**
|
|
14013
14601
|
* Protocol used by the syslog source to receive messages.
|
|
@@ -14326,6 +14914,28 @@ export interface OnCallTeamRoutingRulesRuleTimeRestrictionsRestriction {
|
|
|
14326
14914
|
*/
|
|
14327
14915
|
startTime?: string;
|
|
14328
14916
|
}
|
|
14917
|
+
export interface OnCallUserNotificationChannelEmail {
|
|
14918
|
+
/**
|
|
14919
|
+
* The e-mail address to be notified
|
|
14920
|
+
*/
|
|
14921
|
+
address?: string;
|
|
14922
|
+
/**
|
|
14923
|
+
* Preferred content formats for notifications
|
|
14924
|
+
*/
|
|
14925
|
+
formats?: string[];
|
|
14926
|
+
}
|
|
14927
|
+
export interface OnCallUserNotificationChannelPhone {
|
|
14928
|
+
/**
|
|
14929
|
+
* The E-164 formatted phone number (e.g. +3371234567)
|
|
14930
|
+
*/
|
|
14931
|
+
number?: string;
|
|
14932
|
+
}
|
|
14933
|
+
export interface OnCallUserNotificationRulePhone {
|
|
14934
|
+
/**
|
|
14935
|
+
* Specifies the method in which a phone is used in a notification rule. Valid values are `sms`, `voice`.
|
|
14936
|
+
*/
|
|
14937
|
+
method?: string;
|
|
14938
|
+
}
|
|
14329
14939
|
export interface OrganizationSettingsSettings {
|
|
14330
14940
|
/**
|
|
14331
14941
|
* Whether or not the organization users can share widgets outside of Datadog. Defaults to `false`.
|
|
@@ -14559,6 +15169,10 @@ export interface PowerpackWidgetAlertGraphDefinition {
|
|
|
14559
15169
|
* The ID of the monitor used by the widget.
|
|
14560
15170
|
*/
|
|
14561
15171
|
alertId: string;
|
|
15172
|
+
/**
|
|
15173
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
15174
|
+
*/
|
|
15175
|
+
hideIncompleteCostData: boolean;
|
|
14562
15176
|
/**
|
|
14563
15177
|
* 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`.
|
|
14564
15178
|
*/
|
|
@@ -14615,6 +15229,10 @@ export interface PowerpackWidgetChangeDefinition {
|
|
|
14615
15229
|
* A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
|
|
14616
15230
|
*/
|
|
14617
15231
|
customLinks?: outputs.PowerpackWidgetChangeDefinitionCustomLink[];
|
|
15232
|
+
/**
|
|
15233
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
15234
|
+
*/
|
|
15235
|
+
hideIncompleteCostData: boolean;
|
|
14618
15236
|
/**
|
|
14619
15237
|
* 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`.
|
|
14620
15238
|
*/
|
|
@@ -15505,6 +16123,10 @@ export interface PowerpackWidgetCheckStatusDefinition {
|
|
|
15505
16123
|
* The kind of grouping to use. Valid values are `check`, `cluster`.
|
|
15506
16124
|
*/
|
|
15507
16125
|
grouping: string;
|
|
16126
|
+
/**
|
|
16127
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
16128
|
+
*/
|
|
16129
|
+
hideIncompleteCostData: boolean;
|
|
15508
16130
|
/**
|
|
15509
16131
|
* 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`.
|
|
15510
16132
|
*/
|
|
@@ -15527,6 +16149,10 @@ export interface PowerpackWidgetCheckStatusDefinition {
|
|
|
15527
16149
|
titleSize?: string;
|
|
15528
16150
|
}
|
|
15529
16151
|
export interface PowerpackWidgetDistributionDefinition {
|
|
16152
|
+
/**
|
|
16153
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
16154
|
+
*/
|
|
16155
|
+
hideIncompleteCostData: boolean;
|
|
15530
16156
|
/**
|
|
15531
16157
|
* The size of the legend displayed in the widget.
|
|
15532
16158
|
*/
|
|
@@ -16024,6 +16650,10 @@ export interface PowerpackWidgetEventStreamDefinition {
|
|
|
16024
16650
|
* The size to use to display an event. Valid values are `s`, `l`.
|
|
16025
16651
|
*/
|
|
16026
16652
|
eventSize?: string;
|
|
16653
|
+
/**
|
|
16654
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
16655
|
+
*/
|
|
16656
|
+
hideIncompleteCostData: boolean;
|
|
16027
16657
|
/**
|
|
16028
16658
|
* 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`.
|
|
16029
16659
|
*/
|
|
@@ -16050,6 +16680,10 @@ export interface PowerpackWidgetEventStreamDefinition {
|
|
|
16050
16680
|
titleSize?: string;
|
|
16051
16681
|
}
|
|
16052
16682
|
export interface PowerpackWidgetEventTimelineDefinition {
|
|
16683
|
+
/**
|
|
16684
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
16685
|
+
*/
|
|
16686
|
+
hideIncompleteCostData: boolean;
|
|
16053
16687
|
/**
|
|
16054
16688
|
* 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`.
|
|
16055
16689
|
*/
|
|
@@ -16098,6 +16732,10 @@ export interface PowerpackWidgetGeomapDefinition {
|
|
|
16098
16732
|
* A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
|
|
16099
16733
|
*/
|
|
16100
16734
|
customLinks?: outputs.PowerpackWidgetGeomapDefinitionCustomLink[];
|
|
16735
|
+
/**
|
|
16736
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
16737
|
+
*/
|
|
16738
|
+
hideIncompleteCostData: boolean;
|
|
16101
16739
|
/**
|
|
16102
16740
|
* 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`.
|
|
16103
16741
|
*/
|
|
@@ -16794,6 +17432,10 @@ export interface PowerpackWidgetHeatmapDefinition {
|
|
|
16794
17432
|
* The definition of the event to overlay on the graph. Multiple `event` blocks are allowed using the structure below.
|
|
16795
17433
|
*/
|
|
16796
17434
|
events?: outputs.PowerpackWidgetHeatmapDefinitionEvent[];
|
|
17435
|
+
/**
|
|
17436
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
17437
|
+
*/
|
|
17438
|
+
hideIncompleteCostData: boolean;
|
|
16797
17439
|
/**
|
|
16798
17440
|
* The size of the legend displayed in the widget.
|
|
16799
17441
|
*/
|
|
@@ -18638,6 +19280,10 @@ export interface PowerpackWidgetLogStreamDefinition {
|
|
|
18638
19280
|
* Stringified list of columns to use, for example: `["column1","column2","column3"]`.
|
|
18639
19281
|
*/
|
|
18640
19282
|
columns?: string[];
|
|
19283
|
+
/**
|
|
19284
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
19285
|
+
*/
|
|
19286
|
+
hideIncompleteCostData: boolean;
|
|
18641
19287
|
/**
|
|
18642
19288
|
* An array of index names to query in the stream.
|
|
18643
19289
|
*/
|
|
@@ -18782,6 +19428,10 @@ export interface PowerpackWidgetQueryTableDefinition {
|
|
|
18782
19428
|
* Controls the display of the search bar. Valid values are `always`, `never`, `auto`.
|
|
18783
19429
|
*/
|
|
18784
19430
|
hasSearchBar?: string;
|
|
19431
|
+
/**
|
|
19432
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
19433
|
+
*/
|
|
19434
|
+
hideIncompleteCostData: boolean;
|
|
18785
19435
|
/**
|
|
18786
19436
|
* 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`.
|
|
18787
19437
|
*/
|
|
@@ -19825,6 +20475,10 @@ export interface PowerpackWidgetQueryValueDefinition {
|
|
|
19825
20475
|
* The unit for the value displayed in the widget.
|
|
19826
20476
|
*/
|
|
19827
20477
|
customUnit?: string;
|
|
20478
|
+
/**
|
|
20479
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
20480
|
+
*/
|
|
20481
|
+
hideIncompleteCostData: boolean;
|
|
19828
20482
|
/**
|
|
19829
20483
|
* 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`.
|
|
19830
20484
|
*/
|
|
@@ -20851,6 +21505,10 @@ export interface PowerpackWidgetRunWorkflowDefinition {
|
|
|
20851
21505
|
* A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
|
|
20852
21506
|
*/
|
|
20853
21507
|
customLinks?: outputs.PowerpackWidgetRunWorkflowDefinitionCustomLink[];
|
|
21508
|
+
/**
|
|
21509
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
21510
|
+
*/
|
|
21511
|
+
hideIncompleteCostData: boolean;
|
|
20854
21512
|
/**
|
|
20855
21513
|
* Array of workflow inputs to map to dashboard template variables.
|
|
20856
21514
|
*/
|
|
@@ -20913,6 +21571,10 @@ export interface PowerpackWidgetScatterplotDefinition {
|
|
|
20913
21571
|
* A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
|
|
20914
21572
|
*/
|
|
20915
21573
|
customLinks?: outputs.PowerpackWidgetScatterplotDefinitionCustomLink[];
|
|
21574
|
+
/**
|
|
21575
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
21576
|
+
*/
|
|
21577
|
+
hideIncompleteCostData: boolean;
|
|
20916
21578
|
/**
|
|
20917
21579
|
* 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`.
|
|
20918
21580
|
*/
|
|
@@ -22227,6 +22889,10 @@ export interface PowerpackWidgetSunburstDefinition {
|
|
|
22227
22889
|
* Nested block describing a custom link. Multiple `customLink` blocks are allowed with the structure below.
|
|
22228
22890
|
*/
|
|
22229
22891
|
customLinks?: outputs.PowerpackWidgetSunburstDefinitionCustomLink[];
|
|
22892
|
+
/**
|
|
22893
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
22894
|
+
*/
|
|
22895
|
+
hideIncompleteCostData: boolean;
|
|
22230
22896
|
/**
|
|
22231
22897
|
* Whether or not to show the total value in the widget.
|
|
22232
22898
|
*/
|
|
@@ -23291,6 +23957,10 @@ export interface PowerpackWidgetTimeseriesDefinition {
|
|
|
23291
23957
|
* The definition of the event to overlay on the graph. Multiple `event` blocks are allowed using the structure below.
|
|
23292
23958
|
*/
|
|
23293
23959
|
events?: outputs.PowerpackWidgetTimeseriesDefinitionEvent[];
|
|
23960
|
+
/**
|
|
23961
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
23962
|
+
*/
|
|
23963
|
+
hideIncompleteCostData: boolean;
|
|
23294
23964
|
/**
|
|
23295
23965
|
* A list of columns to display in the legend. Valid values are `value`, `avg`, `sum`, `min`, `max`.
|
|
23296
23966
|
*/
|
|
@@ -24445,6 +25115,10 @@ export interface PowerpackWidgetToplistDefinition {
|
|
|
24445
25115
|
* A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
|
|
24446
25116
|
*/
|
|
24447
25117
|
customLinks?: outputs.PowerpackWidgetToplistDefinitionCustomLink[];
|
|
25118
|
+
/**
|
|
25119
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
25120
|
+
*/
|
|
25121
|
+
hideIncompleteCostData: boolean;
|
|
24448
25122
|
/**
|
|
24449
25123
|
* 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`.
|
|
24450
25124
|
*/
|
|
@@ -25525,6 +26199,10 @@ export interface PowerpackWidgetTraceServiceDefinition {
|
|
|
25525
26199
|
* APM environment.
|
|
25526
26200
|
*/
|
|
25527
26201
|
env: string;
|
|
26202
|
+
/**
|
|
26203
|
+
* Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
|
|
26204
|
+
*/
|
|
26205
|
+
hideIncompleteCostData: boolean;
|
|
25528
26206
|
/**
|
|
25529
26207
|
* 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`.
|
|
25530
26208
|
*/
|
|
@@ -27012,7 +27690,11 @@ export interface SyntheticsTestApiStep {
|
|
|
27012
27690
|
};
|
|
27013
27691
|
retry?: outputs.SyntheticsTestApiStepRetry;
|
|
27014
27692
|
/**
|
|
27015
|
-
*
|
|
27693
|
+
* Public ID of the test to be played as part of a `playSubTest` step type.
|
|
27694
|
+
*/
|
|
27695
|
+
subtestPublicId?: string;
|
|
27696
|
+
/**
|
|
27697
|
+
* 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"`.
|
|
27016
27698
|
*/
|
|
27017
27699
|
subtype?: string;
|
|
27018
27700
|
/**
|
|
@@ -28429,6 +29111,34 @@ export interface TagPipelineRulesetRuleReferenceTableFieldPair {
|
|
|
28429
29111
|
*/
|
|
28430
29112
|
outputKey?: string;
|
|
28431
29113
|
}
|
|
29114
|
+
export interface TeamNotificationRuleEmail {
|
|
29115
|
+
/**
|
|
29116
|
+
* Whether to send email notifications to team members when alerts are triggered.
|
|
29117
|
+
*/
|
|
29118
|
+
enabled?: boolean;
|
|
29119
|
+
}
|
|
29120
|
+
export interface TeamNotificationRuleMsTeams {
|
|
29121
|
+
/**
|
|
29122
|
+
* MS Teams connector name used to route notifications to the appropriate channel.
|
|
29123
|
+
*/
|
|
29124
|
+
connectorName?: string;
|
|
29125
|
+
}
|
|
29126
|
+
export interface TeamNotificationRulePagerduty {
|
|
29127
|
+
/**
|
|
29128
|
+
* PagerDuty service name to send incident notifications to. The service name can be found in your PagerDuty service settings.
|
|
29129
|
+
*/
|
|
29130
|
+
serviceName?: string;
|
|
29131
|
+
}
|
|
29132
|
+
export interface TeamNotificationRuleSlack {
|
|
29133
|
+
/**
|
|
29134
|
+
* Slack channel name for notifications (for example, #alerts or #team-notifications).
|
|
29135
|
+
*/
|
|
29136
|
+
channel?: string;
|
|
29137
|
+
/**
|
|
29138
|
+
* Slack workspace name where the channel is located.
|
|
29139
|
+
*/
|
|
29140
|
+
workspace?: string;
|
|
29141
|
+
}
|
|
28432
29142
|
export declare namespace aws {
|
|
28433
29143
|
interface GetIntegrationLogsServicesAwsLogsService {
|
|
28434
29144
|
/**
|