@pulumi/datadog 4.0.0 → 4.2.0-alpha.1632753173
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/README.md +2 -2
- package/apiKey.d.ts +77 -0
- package/apiKey.js +76 -0
- package/apiKey.js.map +1 -0
- package/applicationKey.d.ts +77 -0
- package/applicationKey.js +76 -0
- package/applicationKey.js.map +1 -0
- package/aws/integrationLambdaArn.d.ts +3 -3
- package/aws/integrationLogCollection.d.ts +4 -4
- package/aws/integrationLogCollection.js +1 -1
- package/aws/integrationTagFilter.d.ts +4 -3
- package/aws/integrationTagFilter.js +1 -0
- package/aws/integrationTagFilter.js.map +1 -1
- package/childOrganization.d.ts +112 -0
- package/childOrganization.js +80 -0
- package/childOrganization.js.map +1 -0
- package/dashboard.d.ts +8 -8
- package/getApiKey.d.ts +46 -0
- package/getApiKey.js +35 -0
- package/getApiKey.js.map +1 -0
- package/getApplicationKey.d.ts +46 -0
- package/getApplicationKey.js +35 -0
- package/getApplicationKey.js.map +1 -0
- package/getDashboardList.d.ts +16 -0
- package/getDashboardList.js +16 -0
- package/getDashboardList.js.map +1 -1
- package/getMonitor.d.ts +5 -0
- package/getSecurityMonitoringFilters.d.ts +32 -0
- package/getSecurityMonitoringFilters.js +29 -0
- package/getSecurityMonitoringFilters.js.map +1 -0
- package/getSyntheticsGlobalVariable.d.ts +31 -0
- package/getSyntheticsGlobalVariable.js +22 -0
- package/getSyntheticsGlobalVariable.js.map +1 -0
- package/getUser.d.ts +35 -0
- package/getUser.js +22 -0
- package/getUser.js.map +1 -0
- package/index.d.ts +10 -0
- package/index.js +30 -0
- package/index.js.map +1 -1
- package/logsIndex.d.ts +12 -36
- package/logsIndex.js +2 -36
- package/logsIndex.js.map +1 -1
- package/monitor.d.ts +30 -3
- package/monitor.js +2 -0
- package/monitor.js.map +1 -1
- package/organizationSettings.d.ts +98 -0
- package/organizationSettings.js +77 -0
- package/organizationSettings.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/securityMonitoringFilter.d.ts +139 -0
- package/securityMonitoringFilter.js +103 -0
- package/securityMonitoringFilter.js.map +1 -0
- package/securityMonitoringRule.d.ts +26 -0
- package/securityMonitoringRule.js +6 -0
- package/securityMonitoringRule.js.map +1 -1
- package/slack/channel.d.ts +9 -1
- package/slack/channel.js +9 -1
- package/slack/channel.js.map +1 -1
- package/syntheticsGlobalVariable.d.ts +15 -3
- package/syntheticsGlobalVariable.js +2 -0
- package/syntheticsGlobalVariable.js.map +1 -1
- package/syntheticsTest.d.ts +160 -82
- package/syntheticsTest.js +157 -79
- package/syntheticsTest.js.map +1 -1
- package/types/input.d.ts +567 -5
- package/types/output.d.ts +591 -5
package/types/output.d.ts
CHANGED
|
@@ -1,4 +1,52 @@
|
|
|
1
1
|
import { output as outputs } from "../types";
|
|
2
|
+
export interface ChildOrganizationApiKey {
|
|
3
|
+
key: string;
|
|
4
|
+
/**
|
|
5
|
+
* Name for Child Organization after creation.
|
|
6
|
+
*/
|
|
7
|
+
name: string;
|
|
8
|
+
}
|
|
9
|
+
export interface ChildOrganizationApplicationKey {
|
|
10
|
+
hash: string;
|
|
11
|
+
/**
|
|
12
|
+
* Name for Child Organization after creation.
|
|
13
|
+
*/
|
|
14
|
+
name: string;
|
|
15
|
+
owner: string;
|
|
16
|
+
}
|
|
17
|
+
export interface ChildOrganizationSetting {
|
|
18
|
+
privateWidgetShare: boolean;
|
|
19
|
+
samlAutocreateAccessRole: string;
|
|
20
|
+
samlAutocreateUsersDomains: outputs.ChildOrganizationSettingSamlAutocreateUsersDomain[];
|
|
21
|
+
samlCanBeEnabled: boolean;
|
|
22
|
+
samlIdpEndpoint: string;
|
|
23
|
+
samlIdpInitiatedLogins: outputs.ChildOrganizationSettingSamlIdpInitiatedLogin[];
|
|
24
|
+
samlIdpMetadataUploaded: boolean;
|
|
25
|
+
samlLoginUrl: string;
|
|
26
|
+
samlStrictModes: outputs.ChildOrganizationSettingSamlStrictMode[];
|
|
27
|
+
samls: outputs.ChildOrganizationSettingSaml[];
|
|
28
|
+
}
|
|
29
|
+
export interface ChildOrganizationSettingSaml {
|
|
30
|
+
enabled: boolean;
|
|
31
|
+
}
|
|
32
|
+
export interface ChildOrganizationSettingSamlAutocreateUsersDomain {
|
|
33
|
+
domains: string[];
|
|
34
|
+
enabled: boolean;
|
|
35
|
+
}
|
|
36
|
+
export interface ChildOrganizationSettingSamlIdpInitiatedLogin {
|
|
37
|
+
enabled: boolean;
|
|
38
|
+
}
|
|
39
|
+
export interface ChildOrganizationSettingSamlStrictMode {
|
|
40
|
+
enabled: boolean;
|
|
41
|
+
}
|
|
42
|
+
export interface ChildOrganizationUser {
|
|
43
|
+
accessRole: string;
|
|
44
|
+
email: string;
|
|
45
|
+
/**
|
|
46
|
+
* Name for Child Organization after creation.
|
|
47
|
+
*/
|
|
48
|
+
name: string;
|
|
49
|
+
}
|
|
2
50
|
export interface DashboardListDashItem {
|
|
3
51
|
/**
|
|
4
52
|
* The ID of the dashboard to add
|
|
@@ -10,6 +58,10 @@ export interface DashboardListDashItem {
|
|
|
10
58
|
type: string;
|
|
11
59
|
}
|
|
12
60
|
export interface DashboardTemplateVariable {
|
|
61
|
+
/**
|
|
62
|
+
* The list of values that the template variable drop-down is be limited to
|
|
63
|
+
*/
|
|
64
|
+
availableValues?: string[];
|
|
13
65
|
/**
|
|
14
66
|
* The default value for the template variable on dashboard load.
|
|
15
67
|
*/
|
|
@@ -19,7 +71,7 @@ export interface DashboardTemplateVariable {
|
|
|
19
71
|
*/
|
|
20
72
|
name: string;
|
|
21
73
|
/**
|
|
22
|
-
* The tag prefix associated with the variable. Only tags with this prefix
|
|
74
|
+
* The tag prefix associated with the variable. Only tags with this prefix appear in the variable dropdown.
|
|
23
75
|
*/
|
|
24
76
|
prefix?: string;
|
|
25
77
|
}
|
|
@@ -50,7 +102,7 @@ export interface DashboardWidget {
|
|
|
50
102
|
*/
|
|
51
103
|
alertValueDefinition?: outputs.DashboardWidgetAlertValueDefinition;
|
|
52
104
|
/**
|
|
53
|
-
* The definition for a Change
|
|
105
|
+
* The definition for a Change widget.
|
|
54
106
|
*/
|
|
55
107
|
changeDefinition?: outputs.DashboardWidgetChangeDefinition;
|
|
56
108
|
/**
|
|
@@ -527,9 +579,22 @@ export interface DashboardWidgetGeomapDefinitionRequest {
|
|
|
527
579
|
}
|
|
528
580
|
export interface DashboardWidgetGeomapDefinitionRequestFormula {
|
|
529
581
|
alias?: string;
|
|
582
|
+
cellDisplayMode?: string;
|
|
583
|
+
conditionalFormats?: outputs.DashboardWidgetGeomapDefinitionRequestFormulaConditionalFormat[];
|
|
530
584
|
formulaExpression: string;
|
|
531
585
|
limit?: outputs.DashboardWidgetGeomapDefinitionRequestFormulaLimit;
|
|
532
586
|
}
|
|
587
|
+
export interface DashboardWidgetGeomapDefinitionRequestFormulaConditionalFormat {
|
|
588
|
+
comparator: string;
|
|
589
|
+
customBgColor?: string;
|
|
590
|
+
customFgColor?: string;
|
|
591
|
+
hideValue?: boolean;
|
|
592
|
+
imageUrl?: string;
|
|
593
|
+
metric?: string;
|
|
594
|
+
palette: string;
|
|
595
|
+
timeframe?: string;
|
|
596
|
+
value: number;
|
|
597
|
+
}
|
|
533
598
|
export interface DashboardWidgetGeomapDefinitionRequestFormulaLimit {
|
|
534
599
|
count?: number;
|
|
535
600
|
order?: string;
|
|
@@ -670,7 +735,7 @@ export interface DashboardWidgetGroupDefinitionWidget {
|
|
|
670
735
|
*/
|
|
671
736
|
alertValueDefinition?: outputs.DashboardWidgetGroupDefinitionWidgetAlertValueDefinition;
|
|
672
737
|
/**
|
|
673
|
-
* The definition for a Change
|
|
738
|
+
* The definition for a Change widget.
|
|
674
739
|
*/
|
|
675
740
|
changeDefinition?: outputs.DashboardWidgetGroupDefinitionWidgetChangeDefinition;
|
|
676
741
|
/**
|
|
@@ -1143,9 +1208,22 @@ export interface DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequest {
|
|
|
1143
1208
|
}
|
|
1144
1209
|
export interface DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestFormula {
|
|
1145
1210
|
alias?: string;
|
|
1211
|
+
cellDisplayMode?: string;
|
|
1212
|
+
conditionalFormats?: outputs.DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaConditionalFormat[];
|
|
1146
1213
|
formulaExpression: string;
|
|
1147
1214
|
limit?: outputs.DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimit;
|
|
1148
1215
|
}
|
|
1216
|
+
export interface DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaConditionalFormat {
|
|
1217
|
+
comparator: string;
|
|
1218
|
+
customBgColor?: string;
|
|
1219
|
+
customFgColor?: string;
|
|
1220
|
+
hideValue?: boolean;
|
|
1221
|
+
imageUrl?: string;
|
|
1222
|
+
metric?: string;
|
|
1223
|
+
palette: string;
|
|
1224
|
+
timeframe?: string;
|
|
1225
|
+
value: number;
|
|
1226
|
+
}
|
|
1149
1227
|
export interface DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimit {
|
|
1150
1228
|
count?: number;
|
|
1151
1229
|
order?: string;
|
|
@@ -1783,11 +1861,13 @@ export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequest
|
|
|
1783
1861
|
apmStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQuery;
|
|
1784
1862
|
cellDisplayModes?: string[];
|
|
1785
1863
|
conditionalFormats?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestConditionalFormat[];
|
|
1864
|
+
formulas?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormula[];
|
|
1786
1865
|
limit?: number;
|
|
1787
1866
|
logQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQuery;
|
|
1788
1867
|
order?: string;
|
|
1789
1868
|
processQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestProcessQuery;
|
|
1790
1869
|
q?: string;
|
|
1870
|
+
queries?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuery[];
|
|
1791
1871
|
rumQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQuery;
|
|
1792
1872
|
securityQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQuery;
|
|
1793
1873
|
}
|
|
@@ -1844,6 +1924,28 @@ export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequest
|
|
|
1844
1924
|
timeframe?: string;
|
|
1845
1925
|
value: number;
|
|
1846
1926
|
}
|
|
1927
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormula {
|
|
1928
|
+
alias?: string;
|
|
1929
|
+
cellDisplayMode?: string;
|
|
1930
|
+
conditionalFormats?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaConditionalFormat[];
|
|
1931
|
+
formulaExpression: string;
|
|
1932
|
+
limit?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimit;
|
|
1933
|
+
}
|
|
1934
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaConditionalFormat {
|
|
1935
|
+
comparator: string;
|
|
1936
|
+
customBgColor?: string;
|
|
1937
|
+
customFgColor?: string;
|
|
1938
|
+
hideValue?: boolean;
|
|
1939
|
+
imageUrl?: string;
|
|
1940
|
+
metric?: string;
|
|
1941
|
+
palette: string;
|
|
1942
|
+
timeframe?: string;
|
|
1943
|
+
value: number;
|
|
1944
|
+
}
|
|
1945
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimit {
|
|
1946
|
+
count?: number;
|
|
1947
|
+
order?: string;
|
|
1948
|
+
}
|
|
1847
1949
|
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQuery {
|
|
1848
1950
|
computeQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryComputeQuery;
|
|
1849
1951
|
groupBies?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBy[];
|
|
@@ -1877,6 +1979,54 @@ export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequest
|
|
|
1877
1979
|
metric: string;
|
|
1878
1980
|
searchBy?: string;
|
|
1879
1981
|
}
|
|
1982
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuery {
|
|
1983
|
+
eventQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery;
|
|
1984
|
+
metricQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQuery;
|
|
1985
|
+
processQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQuery;
|
|
1986
|
+
}
|
|
1987
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery {
|
|
1988
|
+
computes: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryCompute[];
|
|
1989
|
+
dataSource: string;
|
|
1990
|
+
groupBies?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBy[];
|
|
1991
|
+
indexes?: string[];
|
|
1992
|
+
name: string;
|
|
1993
|
+
search?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuerySearch;
|
|
1994
|
+
}
|
|
1995
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryCompute {
|
|
1996
|
+
aggregation: string;
|
|
1997
|
+
interval?: number;
|
|
1998
|
+
metric?: string;
|
|
1999
|
+
}
|
|
2000
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBy {
|
|
2001
|
+
facet: string;
|
|
2002
|
+
limit?: number;
|
|
2003
|
+
sort?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySort;
|
|
2004
|
+
}
|
|
2005
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySort {
|
|
2006
|
+
aggregation: string;
|
|
2007
|
+
metric?: string;
|
|
2008
|
+
order?: string;
|
|
2009
|
+
}
|
|
2010
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuerySearch {
|
|
2011
|
+
query: string;
|
|
2012
|
+
}
|
|
2013
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQuery {
|
|
2014
|
+
aggregator?: string;
|
|
2015
|
+
dataSource?: string;
|
|
2016
|
+
name: string;
|
|
2017
|
+
query: string;
|
|
2018
|
+
}
|
|
2019
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQuery {
|
|
2020
|
+
aggregator?: string;
|
|
2021
|
+
dataSource: string;
|
|
2022
|
+
isNormalizedCpu?: boolean;
|
|
2023
|
+
limit?: number;
|
|
2024
|
+
metric: string;
|
|
2025
|
+
name: string;
|
|
2026
|
+
sort?: string;
|
|
2027
|
+
tagFilters?: string[];
|
|
2028
|
+
textFilter?: string;
|
|
2029
|
+
}
|
|
1880
2030
|
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQuery {
|
|
1881
2031
|
computeQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryComputeQuery;
|
|
1882
2032
|
groupBies?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBy[];
|
|
@@ -1955,6 +2105,7 @@ export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionCustomL
|
|
|
1955
2105
|
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequest {
|
|
1956
2106
|
aggregator?: string;
|
|
1957
2107
|
apmQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQuery;
|
|
2108
|
+
auditQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQuery;
|
|
1958
2109
|
conditionalFormats?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestConditionalFormat[];
|
|
1959
2110
|
formulas?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormula[];
|
|
1960
2111
|
logQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQuery;
|
|
@@ -1991,6 +2142,33 @@ export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequest
|
|
|
1991
2142
|
facet?: string;
|
|
1992
2143
|
interval?: number;
|
|
1993
2144
|
}
|
|
2145
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQuery {
|
|
2146
|
+
computeQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryComputeQuery;
|
|
2147
|
+
groupBies?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBy[];
|
|
2148
|
+
index: string;
|
|
2149
|
+
multiComputes?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryMultiCompute[];
|
|
2150
|
+
searchQuery?: string;
|
|
2151
|
+
}
|
|
2152
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryComputeQuery {
|
|
2153
|
+
aggregation: string;
|
|
2154
|
+
facet?: string;
|
|
2155
|
+
interval?: number;
|
|
2156
|
+
}
|
|
2157
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBy {
|
|
2158
|
+
facet?: string;
|
|
2159
|
+
limit?: number;
|
|
2160
|
+
sortQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQuery;
|
|
2161
|
+
}
|
|
2162
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQuery {
|
|
2163
|
+
aggregation: string;
|
|
2164
|
+
facet?: string;
|
|
2165
|
+
order: string;
|
|
2166
|
+
}
|
|
2167
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryMultiCompute {
|
|
2168
|
+
aggregation: string;
|
|
2169
|
+
facet?: string;
|
|
2170
|
+
interval?: number;
|
|
2171
|
+
}
|
|
1994
2172
|
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestConditionalFormat {
|
|
1995
2173
|
comparator: string;
|
|
1996
2174
|
customBgColor?: string;
|
|
@@ -2004,9 +2182,22 @@ export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequest
|
|
|
2004
2182
|
}
|
|
2005
2183
|
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormula {
|
|
2006
2184
|
alias?: string;
|
|
2185
|
+
cellDisplayMode?: string;
|
|
2186
|
+
conditionalFormats?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaConditionalFormat[];
|
|
2007
2187
|
formulaExpression: string;
|
|
2008
2188
|
limit?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimit;
|
|
2009
2189
|
}
|
|
2190
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaConditionalFormat {
|
|
2191
|
+
comparator: string;
|
|
2192
|
+
customBgColor?: string;
|
|
2193
|
+
customFgColor?: string;
|
|
2194
|
+
hideValue?: boolean;
|
|
2195
|
+
imageUrl?: string;
|
|
2196
|
+
metric?: string;
|
|
2197
|
+
palette: string;
|
|
2198
|
+
timeframe?: string;
|
|
2199
|
+
value: number;
|
|
2200
|
+
}
|
|
2010
2201
|
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimit {
|
|
2011
2202
|
count?: number;
|
|
2012
2203
|
order?: string;
|
|
@@ -2497,6 +2688,7 @@ export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionMarker
|
|
|
2497
2688
|
}
|
|
2498
2689
|
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequest {
|
|
2499
2690
|
apmQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestApmQuery;
|
|
2691
|
+
auditQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAuditQuery;
|
|
2500
2692
|
displayType?: string;
|
|
2501
2693
|
formulas?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestFormula[];
|
|
2502
2694
|
logQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestLogQuery;
|
|
@@ -2537,11 +2729,51 @@ export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequest
|
|
|
2537
2729
|
facet?: string;
|
|
2538
2730
|
interval?: number;
|
|
2539
2731
|
}
|
|
2732
|
+
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAuditQuery {
|
|
2733
|
+
computeQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAuditQueryComputeQuery;
|
|
2734
|
+
groupBies?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAuditQueryGroupBy[];
|
|
2735
|
+
index: string;
|
|
2736
|
+
multiComputes?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAuditQueryMultiCompute[];
|
|
2737
|
+
searchQuery?: string;
|
|
2738
|
+
}
|
|
2739
|
+
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAuditQueryComputeQuery {
|
|
2740
|
+
aggregation: string;
|
|
2741
|
+
facet?: string;
|
|
2742
|
+
interval?: number;
|
|
2743
|
+
}
|
|
2744
|
+
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAuditQueryGroupBy {
|
|
2745
|
+
facet?: string;
|
|
2746
|
+
limit?: number;
|
|
2747
|
+
sortQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAuditQueryGroupBySortQuery;
|
|
2748
|
+
}
|
|
2749
|
+
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAuditQueryGroupBySortQuery {
|
|
2750
|
+
aggregation: string;
|
|
2751
|
+
facet?: string;
|
|
2752
|
+
order: string;
|
|
2753
|
+
}
|
|
2754
|
+
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAuditQueryMultiCompute {
|
|
2755
|
+
aggregation: string;
|
|
2756
|
+
facet?: string;
|
|
2757
|
+
interval?: number;
|
|
2758
|
+
}
|
|
2540
2759
|
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestFormula {
|
|
2541
2760
|
alias?: string;
|
|
2761
|
+
cellDisplayMode?: string;
|
|
2762
|
+
conditionalFormats?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestFormulaConditionalFormat[];
|
|
2542
2763
|
formulaExpression: string;
|
|
2543
2764
|
limit?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestFormulaLimit;
|
|
2544
2765
|
}
|
|
2766
|
+
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestFormulaConditionalFormat {
|
|
2767
|
+
comparator: string;
|
|
2768
|
+
customBgColor?: string;
|
|
2769
|
+
customFgColor?: string;
|
|
2770
|
+
hideValue?: boolean;
|
|
2771
|
+
imageUrl?: string;
|
|
2772
|
+
metric?: string;
|
|
2773
|
+
palette: string;
|
|
2774
|
+
timeframe?: string;
|
|
2775
|
+
value: number;
|
|
2776
|
+
}
|
|
2545
2777
|
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestFormulaLimit {
|
|
2546
2778
|
count?: number;
|
|
2547
2779
|
order?: string;
|
|
@@ -2750,6 +2982,7 @@ export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionCustomLink
|
|
|
2750
2982
|
}
|
|
2751
2983
|
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequest {
|
|
2752
2984
|
apmQuery?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestApmQuery;
|
|
2985
|
+
auditQuery?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQuery;
|
|
2753
2986
|
conditionalFormats?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestConditionalFormat[];
|
|
2754
2987
|
formulas?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestFormula[];
|
|
2755
2988
|
logQuery?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestLogQuery;
|
|
@@ -2787,6 +3020,33 @@ export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestApm
|
|
|
2787
3020
|
facet?: string;
|
|
2788
3021
|
interval?: number;
|
|
2789
3022
|
}
|
|
3023
|
+
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQuery {
|
|
3024
|
+
computeQuery?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQueryComputeQuery;
|
|
3025
|
+
groupBies?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQueryGroupBy[];
|
|
3026
|
+
index: string;
|
|
3027
|
+
multiComputes?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQueryMultiCompute[];
|
|
3028
|
+
searchQuery?: string;
|
|
3029
|
+
}
|
|
3030
|
+
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQueryComputeQuery {
|
|
3031
|
+
aggregation: string;
|
|
3032
|
+
facet?: string;
|
|
3033
|
+
interval?: number;
|
|
3034
|
+
}
|
|
3035
|
+
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQueryGroupBy {
|
|
3036
|
+
facet?: string;
|
|
3037
|
+
limit?: number;
|
|
3038
|
+
sortQuery?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQueryGroupBySortQuery;
|
|
3039
|
+
}
|
|
3040
|
+
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQueryGroupBySortQuery {
|
|
3041
|
+
aggregation: string;
|
|
3042
|
+
facet?: string;
|
|
3043
|
+
order: string;
|
|
3044
|
+
}
|
|
3045
|
+
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQueryMultiCompute {
|
|
3046
|
+
aggregation: string;
|
|
3047
|
+
facet?: string;
|
|
3048
|
+
interval?: number;
|
|
3049
|
+
}
|
|
2790
3050
|
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestConditionalFormat {
|
|
2791
3051
|
comparator: string;
|
|
2792
3052
|
customBgColor?: string;
|
|
@@ -2800,9 +3060,22 @@ export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestCon
|
|
|
2800
3060
|
}
|
|
2801
3061
|
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestFormula {
|
|
2802
3062
|
alias?: string;
|
|
3063
|
+
cellDisplayMode?: string;
|
|
3064
|
+
conditionalFormats?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestFormulaConditionalFormat[];
|
|
2803
3065
|
formulaExpression: string;
|
|
2804
3066
|
limit?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestFormulaLimit;
|
|
2805
3067
|
}
|
|
3068
|
+
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestFormulaConditionalFormat {
|
|
3069
|
+
comparator: string;
|
|
3070
|
+
customBgColor?: string;
|
|
3071
|
+
customFgColor?: string;
|
|
3072
|
+
hideValue?: boolean;
|
|
3073
|
+
imageUrl?: string;
|
|
3074
|
+
metric?: string;
|
|
3075
|
+
palette: string;
|
|
3076
|
+
timeframe?: string;
|
|
3077
|
+
value: number;
|
|
3078
|
+
}
|
|
2806
3079
|
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestFormulaLimit {
|
|
2807
3080
|
count?: number;
|
|
2808
3081
|
order?: string;
|
|
@@ -3496,11 +3769,13 @@ export interface DashboardWidgetQueryTableDefinitionRequest {
|
|
|
3496
3769
|
apmStatsQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestApmStatsQuery;
|
|
3497
3770
|
cellDisplayModes?: string[];
|
|
3498
3771
|
conditionalFormats?: outputs.DashboardWidgetQueryTableDefinitionRequestConditionalFormat[];
|
|
3772
|
+
formulas?: outputs.DashboardWidgetQueryTableDefinitionRequestFormula[];
|
|
3499
3773
|
limit?: number;
|
|
3500
3774
|
logQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestLogQuery;
|
|
3501
3775
|
order?: string;
|
|
3502
3776
|
processQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestProcessQuery;
|
|
3503
3777
|
q?: string;
|
|
3778
|
+
queries?: outputs.DashboardWidgetQueryTableDefinitionRequestQuery[];
|
|
3504
3779
|
rumQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestRumQuery;
|
|
3505
3780
|
securityQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestSecurityQuery;
|
|
3506
3781
|
}
|
|
@@ -3557,6 +3832,28 @@ export interface DashboardWidgetQueryTableDefinitionRequestConditionalFormat {
|
|
|
3557
3832
|
timeframe?: string;
|
|
3558
3833
|
value: number;
|
|
3559
3834
|
}
|
|
3835
|
+
export interface DashboardWidgetQueryTableDefinitionRequestFormula {
|
|
3836
|
+
alias?: string;
|
|
3837
|
+
cellDisplayMode?: string;
|
|
3838
|
+
conditionalFormats?: outputs.DashboardWidgetQueryTableDefinitionRequestFormulaConditionalFormat[];
|
|
3839
|
+
formulaExpression: string;
|
|
3840
|
+
limit?: outputs.DashboardWidgetQueryTableDefinitionRequestFormulaLimit;
|
|
3841
|
+
}
|
|
3842
|
+
export interface DashboardWidgetQueryTableDefinitionRequestFormulaConditionalFormat {
|
|
3843
|
+
comparator: string;
|
|
3844
|
+
customBgColor?: string;
|
|
3845
|
+
customFgColor?: string;
|
|
3846
|
+
hideValue?: boolean;
|
|
3847
|
+
imageUrl?: string;
|
|
3848
|
+
metric?: string;
|
|
3849
|
+
palette: string;
|
|
3850
|
+
timeframe?: string;
|
|
3851
|
+
value: number;
|
|
3852
|
+
}
|
|
3853
|
+
export interface DashboardWidgetQueryTableDefinitionRequestFormulaLimit {
|
|
3854
|
+
count?: number;
|
|
3855
|
+
order?: string;
|
|
3856
|
+
}
|
|
3560
3857
|
export interface DashboardWidgetQueryTableDefinitionRequestLogQuery {
|
|
3561
3858
|
computeQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestLogQueryComputeQuery;
|
|
3562
3859
|
groupBies?: outputs.DashboardWidgetQueryTableDefinitionRequestLogQueryGroupBy[];
|
|
@@ -3590,6 +3887,54 @@ export interface DashboardWidgetQueryTableDefinitionRequestProcessQuery {
|
|
|
3590
3887
|
metric: string;
|
|
3591
3888
|
searchBy?: string;
|
|
3592
3889
|
}
|
|
3890
|
+
export interface DashboardWidgetQueryTableDefinitionRequestQuery {
|
|
3891
|
+
eventQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestQueryEventQuery;
|
|
3892
|
+
metricQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestQueryMetricQuery;
|
|
3893
|
+
processQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestQueryProcessQuery;
|
|
3894
|
+
}
|
|
3895
|
+
export interface DashboardWidgetQueryTableDefinitionRequestQueryEventQuery {
|
|
3896
|
+
computes: outputs.DashboardWidgetQueryTableDefinitionRequestQueryEventQueryCompute[];
|
|
3897
|
+
dataSource: string;
|
|
3898
|
+
groupBies?: outputs.DashboardWidgetQueryTableDefinitionRequestQueryEventQueryGroupBy[];
|
|
3899
|
+
indexes?: string[];
|
|
3900
|
+
name: string;
|
|
3901
|
+
search?: outputs.DashboardWidgetQueryTableDefinitionRequestQueryEventQuerySearch;
|
|
3902
|
+
}
|
|
3903
|
+
export interface DashboardWidgetQueryTableDefinitionRequestQueryEventQueryCompute {
|
|
3904
|
+
aggregation: string;
|
|
3905
|
+
interval?: number;
|
|
3906
|
+
metric?: string;
|
|
3907
|
+
}
|
|
3908
|
+
export interface DashboardWidgetQueryTableDefinitionRequestQueryEventQueryGroupBy {
|
|
3909
|
+
facet: string;
|
|
3910
|
+
limit?: number;
|
|
3911
|
+
sort?: outputs.DashboardWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySort;
|
|
3912
|
+
}
|
|
3913
|
+
export interface DashboardWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySort {
|
|
3914
|
+
aggregation: string;
|
|
3915
|
+
metric?: string;
|
|
3916
|
+
order?: string;
|
|
3917
|
+
}
|
|
3918
|
+
export interface DashboardWidgetQueryTableDefinitionRequestQueryEventQuerySearch {
|
|
3919
|
+
query: string;
|
|
3920
|
+
}
|
|
3921
|
+
export interface DashboardWidgetQueryTableDefinitionRequestQueryMetricQuery {
|
|
3922
|
+
aggregator?: string;
|
|
3923
|
+
dataSource?: string;
|
|
3924
|
+
name: string;
|
|
3925
|
+
query: string;
|
|
3926
|
+
}
|
|
3927
|
+
export interface DashboardWidgetQueryTableDefinitionRequestQueryProcessQuery {
|
|
3928
|
+
aggregator?: string;
|
|
3929
|
+
dataSource: string;
|
|
3930
|
+
isNormalizedCpu?: boolean;
|
|
3931
|
+
limit?: number;
|
|
3932
|
+
metric: string;
|
|
3933
|
+
name: string;
|
|
3934
|
+
sort?: string;
|
|
3935
|
+
tagFilters?: string[];
|
|
3936
|
+
textFilter?: string;
|
|
3937
|
+
}
|
|
3593
3938
|
export interface DashboardWidgetQueryTableDefinitionRequestRumQuery {
|
|
3594
3939
|
computeQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestRumQueryComputeQuery;
|
|
3595
3940
|
groupBies?: outputs.DashboardWidgetQueryTableDefinitionRequestRumQueryGroupBy[];
|
|
@@ -3668,6 +4013,7 @@ export interface DashboardWidgetQueryValueDefinitionCustomLink {
|
|
|
3668
4013
|
export interface DashboardWidgetQueryValueDefinitionRequest {
|
|
3669
4014
|
aggregator?: string;
|
|
3670
4015
|
apmQuery?: outputs.DashboardWidgetQueryValueDefinitionRequestApmQuery;
|
|
4016
|
+
auditQuery?: outputs.DashboardWidgetQueryValueDefinitionRequestAuditQuery;
|
|
3671
4017
|
conditionalFormats?: outputs.DashboardWidgetQueryValueDefinitionRequestConditionalFormat[];
|
|
3672
4018
|
formulas?: outputs.DashboardWidgetQueryValueDefinitionRequestFormula[];
|
|
3673
4019
|
logQuery?: outputs.DashboardWidgetQueryValueDefinitionRequestLogQuery;
|
|
@@ -3704,6 +4050,33 @@ export interface DashboardWidgetQueryValueDefinitionRequestApmQueryMultiCompute
|
|
|
3704
4050
|
facet?: string;
|
|
3705
4051
|
interval?: number;
|
|
3706
4052
|
}
|
|
4053
|
+
export interface DashboardWidgetQueryValueDefinitionRequestAuditQuery {
|
|
4054
|
+
computeQuery?: outputs.DashboardWidgetQueryValueDefinitionRequestAuditQueryComputeQuery;
|
|
4055
|
+
groupBies?: outputs.DashboardWidgetQueryValueDefinitionRequestAuditQueryGroupBy[];
|
|
4056
|
+
index: string;
|
|
4057
|
+
multiComputes?: outputs.DashboardWidgetQueryValueDefinitionRequestAuditQueryMultiCompute[];
|
|
4058
|
+
searchQuery?: string;
|
|
4059
|
+
}
|
|
4060
|
+
export interface DashboardWidgetQueryValueDefinitionRequestAuditQueryComputeQuery {
|
|
4061
|
+
aggregation: string;
|
|
4062
|
+
facet?: string;
|
|
4063
|
+
interval?: number;
|
|
4064
|
+
}
|
|
4065
|
+
export interface DashboardWidgetQueryValueDefinitionRequestAuditQueryGroupBy {
|
|
4066
|
+
facet?: string;
|
|
4067
|
+
limit?: number;
|
|
4068
|
+
sortQuery?: outputs.DashboardWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQuery;
|
|
4069
|
+
}
|
|
4070
|
+
export interface DashboardWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQuery {
|
|
4071
|
+
aggregation: string;
|
|
4072
|
+
facet?: string;
|
|
4073
|
+
order: string;
|
|
4074
|
+
}
|
|
4075
|
+
export interface DashboardWidgetQueryValueDefinitionRequestAuditQueryMultiCompute {
|
|
4076
|
+
aggregation: string;
|
|
4077
|
+
facet?: string;
|
|
4078
|
+
interval?: number;
|
|
4079
|
+
}
|
|
3707
4080
|
export interface DashboardWidgetQueryValueDefinitionRequestConditionalFormat {
|
|
3708
4081
|
comparator: string;
|
|
3709
4082
|
customBgColor?: string;
|
|
@@ -3717,9 +4090,22 @@ export interface DashboardWidgetQueryValueDefinitionRequestConditionalFormat {
|
|
|
3717
4090
|
}
|
|
3718
4091
|
export interface DashboardWidgetQueryValueDefinitionRequestFormula {
|
|
3719
4092
|
alias?: string;
|
|
4093
|
+
cellDisplayMode?: string;
|
|
4094
|
+
conditionalFormats?: outputs.DashboardWidgetQueryValueDefinitionRequestFormulaConditionalFormat[];
|
|
3720
4095
|
formulaExpression: string;
|
|
3721
4096
|
limit?: outputs.DashboardWidgetQueryValueDefinitionRequestFormulaLimit;
|
|
3722
4097
|
}
|
|
4098
|
+
export interface DashboardWidgetQueryValueDefinitionRequestFormulaConditionalFormat {
|
|
4099
|
+
comparator: string;
|
|
4100
|
+
customBgColor?: string;
|
|
4101
|
+
customFgColor?: string;
|
|
4102
|
+
hideValue?: boolean;
|
|
4103
|
+
imageUrl?: string;
|
|
4104
|
+
metric?: string;
|
|
4105
|
+
palette: string;
|
|
4106
|
+
timeframe?: string;
|
|
4107
|
+
value: number;
|
|
4108
|
+
}
|
|
3723
4109
|
export interface DashboardWidgetQueryValueDefinitionRequestFormulaLimit {
|
|
3724
4110
|
count?: number;
|
|
3725
4111
|
order?: string;
|
|
@@ -4210,6 +4596,7 @@ export interface DashboardWidgetTimeseriesDefinitionMarker {
|
|
|
4210
4596
|
}
|
|
4211
4597
|
export interface DashboardWidgetTimeseriesDefinitionRequest {
|
|
4212
4598
|
apmQuery?: outputs.DashboardWidgetTimeseriesDefinitionRequestApmQuery;
|
|
4599
|
+
auditQuery?: outputs.DashboardWidgetTimeseriesDefinitionRequestAuditQuery;
|
|
4213
4600
|
displayType?: string;
|
|
4214
4601
|
formulas?: outputs.DashboardWidgetTimeseriesDefinitionRequestFormula[];
|
|
4215
4602
|
logQuery?: outputs.DashboardWidgetTimeseriesDefinitionRequestLogQuery;
|
|
@@ -4250,11 +4637,51 @@ export interface DashboardWidgetTimeseriesDefinitionRequestApmQueryMultiCompute
|
|
|
4250
4637
|
facet?: string;
|
|
4251
4638
|
interval?: number;
|
|
4252
4639
|
}
|
|
4640
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestAuditQuery {
|
|
4641
|
+
computeQuery?: outputs.DashboardWidgetTimeseriesDefinitionRequestAuditQueryComputeQuery;
|
|
4642
|
+
groupBies?: outputs.DashboardWidgetTimeseriesDefinitionRequestAuditQueryGroupBy[];
|
|
4643
|
+
index: string;
|
|
4644
|
+
multiComputes?: outputs.DashboardWidgetTimeseriesDefinitionRequestAuditQueryMultiCompute[];
|
|
4645
|
+
searchQuery?: string;
|
|
4646
|
+
}
|
|
4647
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestAuditQueryComputeQuery {
|
|
4648
|
+
aggregation: string;
|
|
4649
|
+
facet?: string;
|
|
4650
|
+
interval?: number;
|
|
4651
|
+
}
|
|
4652
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestAuditQueryGroupBy {
|
|
4653
|
+
facet?: string;
|
|
4654
|
+
limit?: number;
|
|
4655
|
+
sortQuery?: outputs.DashboardWidgetTimeseriesDefinitionRequestAuditQueryGroupBySortQuery;
|
|
4656
|
+
}
|
|
4657
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestAuditQueryGroupBySortQuery {
|
|
4658
|
+
aggregation: string;
|
|
4659
|
+
facet?: string;
|
|
4660
|
+
order: string;
|
|
4661
|
+
}
|
|
4662
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestAuditQueryMultiCompute {
|
|
4663
|
+
aggregation: string;
|
|
4664
|
+
facet?: string;
|
|
4665
|
+
interval?: number;
|
|
4666
|
+
}
|
|
4253
4667
|
export interface DashboardWidgetTimeseriesDefinitionRequestFormula {
|
|
4254
4668
|
alias?: string;
|
|
4669
|
+
cellDisplayMode?: string;
|
|
4670
|
+
conditionalFormats?: outputs.DashboardWidgetTimeseriesDefinitionRequestFormulaConditionalFormat[];
|
|
4255
4671
|
formulaExpression: string;
|
|
4256
4672
|
limit?: outputs.DashboardWidgetTimeseriesDefinitionRequestFormulaLimit;
|
|
4257
4673
|
}
|
|
4674
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestFormulaConditionalFormat {
|
|
4675
|
+
comparator: string;
|
|
4676
|
+
customBgColor?: string;
|
|
4677
|
+
customFgColor?: string;
|
|
4678
|
+
hideValue?: boolean;
|
|
4679
|
+
imageUrl?: string;
|
|
4680
|
+
metric?: string;
|
|
4681
|
+
palette: string;
|
|
4682
|
+
timeframe?: string;
|
|
4683
|
+
value: number;
|
|
4684
|
+
}
|
|
4258
4685
|
export interface DashboardWidgetTimeseriesDefinitionRequestFormulaLimit {
|
|
4259
4686
|
count?: number;
|
|
4260
4687
|
order?: string;
|
|
@@ -4463,6 +4890,7 @@ export interface DashboardWidgetToplistDefinitionCustomLink {
|
|
|
4463
4890
|
}
|
|
4464
4891
|
export interface DashboardWidgetToplistDefinitionRequest {
|
|
4465
4892
|
apmQuery?: outputs.DashboardWidgetToplistDefinitionRequestApmQuery;
|
|
4893
|
+
auditQuery?: outputs.DashboardWidgetToplistDefinitionRequestAuditQuery;
|
|
4466
4894
|
conditionalFormats?: outputs.DashboardWidgetToplistDefinitionRequestConditionalFormat[];
|
|
4467
4895
|
formulas?: outputs.DashboardWidgetToplistDefinitionRequestFormula[];
|
|
4468
4896
|
logQuery?: outputs.DashboardWidgetToplistDefinitionRequestLogQuery;
|
|
@@ -4500,6 +4928,33 @@ export interface DashboardWidgetToplistDefinitionRequestApmQueryMultiCompute {
|
|
|
4500
4928
|
facet?: string;
|
|
4501
4929
|
interval?: number;
|
|
4502
4930
|
}
|
|
4931
|
+
export interface DashboardWidgetToplistDefinitionRequestAuditQuery {
|
|
4932
|
+
computeQuery?: outputs.DashboardWidgetToplistDefinitionRequestAuditQueryComputeQuery;
|
|
4933
|
+
groupBies?: outputs.DashboardWidgetToplistDefinitionRequestAuditQueryGroupBy[];
|
|
4934
|
+
index: string;
|
|
4935
|
+
multiComputes?: outputs.DashboardWidgetToplistDefinitionRequestAuditQueryMultiCompute[];
|
|
4936
|
+
searchQuery?: string;
|
|
4937
|
+
}
|
|
4938
|
+
export interface DashboardWidgetToplistDefinitionRequestAuditQueryComputeQuery {
|
|
4939
|
+
aggregation: string;
|
|
4940
|
+
facet?: string;
|
|
4941
|
+
interval?: number;
|
|
4942
|
+
}
|
|
4943
|
+
export interface DashboardWidgetToplistDefinitionRequestAuditQueryGroupBy {
|
|
4944
|
+
facet?: string;
|
|
4945
|
+
limit?: number;
|
|
4946
|
+
sortQuery?: outputs.DashboardWidgetToplistDefinitionRequestAuditQueryGroupBySortQuery;
|
|
4947
|
+
}
|
|
4948
|
+
export interface DashboardWidgetToplistDefinitionRequestAuditQueryGroupBySortQuery {
|
|
4949
|
+
aggregation: string;
|
|
4950
|
+
facet?: string;
|
|
4951
|
+
order: string;
|
|
4952
|
+
}
|
|
4953
|
+
export interface DashboardWidgetToplistDefinitionRequestAuditQueryMultiCompute {
|
|
4954
|
+
aggregation: string;
|
|
4955
|
+
facet?: string;
|
|
4956
|
+
interval?: number;
|
|
4957
|
+
}
|
|
4503
4958
|
export interface DashboardWidgetToplistDefinitionRequestConditionalFormat {
|
|
4504
4959
|
comparator: string;
|
|
4505
4960
|
customBgColor?: string;
|
|
@@ -4513,9 +4968,22 @@ export interface DashboardWidgetToplistDefinitionRequestConditionalFormat {
|
|
|
4513
4968
|
}
|
|
4514
4969
|
export interface DashboardWidgetToplistDefinitionRequestFormula {
|
|
4515
4970
|
alias?: string;
|
|
4971
|
+
cellDisplayMode?: string;
|
|
4972
|
+
conditionalFormats?: outputs.DashboardWidgetToplistDefinitionRequestFormulaConditionalFormat[];
|
|
4516
4973
|
formulaExpression: string;
|
|
4517
4974
|
limit?: outputs.DashboardWidgetToplistDefinitionRequestFormulaLimit;
|
|
4518
4975
|
}
|
|
4976
|
+
export interface DashboardWidgetToplistDefinitionRequestFormulaConditionalFormat {
|
|
4977
|
+
comparator: string;
|
|
4978
|
+
customBgColor?: string;
|
|
4979
|
+
customFgColor?: string;
|
|
4980
|
+
hideValue?: boolean;
|
|
4981
|
+
imageUrl?: string;
|
|
4982
|
+
metric?: string;
|
|
4983
|
+
palette: string;
|
|
4984
|
+
timeframe?: string;
|
|
4985
|
+
value: number;
|
|
4986
|
+
}
|
|
4519
4987
|
export interface DashboardWidgetToplistDefinitionRequestFormulaLimit {
|
|
4520
4988
|
count?: number;
|
|
4521
4989
|
order?: string;
|
|
@@ -4731,6 +5199,18 @@ export interface GetMonitorsMonitor {
|
|
|
4731
5199
|
name: string;
|
|
4732
5200
|
type: string;
|
|
4733
5201
|
}
|
|
5202
|
+
export interface GetSecurityMonitoringFiltersFilter {
|
|
5203
|
+
exclusionFilters?: outputs.GetSecurityMonitoringFiltersFilterExclusionFilter[];
|
|
5204
|
+
filteredDataType?: string;
|
|
5205
|
+
isEnabled: boolean;
|
|
5206
|
+
name: string;
|
|
5207
|
+
query: string;
|
|
5208
|
+
version: number;
|
|
5209
|
+
}
|
|
5210
|
+
export interface GetSecurityMonitoringFiltersFilterExclusionFilter {
|
|
5211
|
+
name: string;
|
|
5212
|
+
query: string;
|
|
5213
|
+
}
|
|
4734
5214
|
export interface GetSecurityMonitoringRulesRule {
|
|
4735
5215
|
/**
|
|
4736
5216
|
* Cases for generating signals.
|
|
@@ -4740,6 +5220,8 @@ export interface GetSecurityMonitoringRulesRule {
|
|
|
4740
5220
|
* Whether the rule is enabled.
|
|
4741
5221
|
*/
|
|
4742
5222
|
enabled?: boolean;
|
|
5223
|
+
filters?: outputs.GetSecurityMonitoringRulesRuleFilter[];
|
|
5224
|
+
hasExtendedTitle?: boolean;
|
|
4743
5225
|
/**
|
|
4744
5226
|
* Message for generated signals.
|
|
4745
5227
|
*/
|
|
@@ -4767,10 +5249,20 @@ export interface GetSecurityMonitoringRulesRuleCase {
|
|
|
4767
5249
|
notifications?: string[];
|
|
4768
5250
|
status: string;
|
|
4769
5251
|
}
|
|
5252
|
+
export interface GetSecurityMonitoringRulesRuleFilter {
|
|
5253
|
+
action: string;
|
|
5254
|
+
query: string;
|
|
5255
|
+
}
|
|
4770
5256
|
export interface GetSecurityMonitoringRulesRuleOptions {
|
|
5257
|
+
detectionMethod?: string;
|
|
4771
5258
|
evaluationWindow: number;
|
|
4772
5259
|
keepAlive: number;
|
|
4773
5260
|
maxSignalDuration: number;
|
|
5261
|
+
newValueOptions?: outputs.GetSecurityMonitoringRulesRuleOptionsNewValueOptions;
|
|
5262
|
+
}
|
|
5263
|
+
export interface GetSecurityMonitoringRulesRuleOptionsNewValueOptions {
|
|
5264
|
+
forgetAfter: number;
|
|
5265
|
+
learningDuration: number;
|
|
4774
5266
|
}
|
|
4775
5267
|
export interface GetSecurityMonitoringRulesRuleQuery {
|
|
4776
5268
|
aggregation?: string;
|
|
@@ -5280,6 +5772,61 @@ export interface MonitorMonitorThresholds {
|
|
|
5280
5772
|
*/
|
|
5281
5773
|
warningRecovery?: string;
|
|
5282
5774
|
}
|
|
5775
|
+
export interface OrganizationSettingsSettings {
|
|
5776
|
+
/**
|
|
5777
|
+
* Whether or not the organization users can share widgets outside of Datadog.
|
|
5778
|
+
*/
|
|
5779
|
+
privateWidgetShare?: boolean;
|
|
5780
|
+
/**
|
|
5781
|
+
* SAML properties
|
|
5782
|
+
*/
|
|
5783
|
+
saml: outputs.OrganizationSettingsSettingsSaml;
|
|
5784
|
+
/**
|
|
5785
|
+
* 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`
|
|
5786
|
+
*/
|
|
5787
|
+
samlAutocreateAccessRole?: string;
|
|
5788
|
+
/**
|
|
5789
|
+
* List of domains where the SAML automated user creation is enabled.
|
|
5790
|
+
*/
|
|
5791
|
+
samlAutocreateUsersDomains: outputs.OrganizationSettingsSettingsSamlAutocreateUsersDomains;
|
|
5792
|
+
/**
|
|
5793
|
+
* Whether or not SAML can be enabled for this organization.
|
|
5794
|
+
*/
|
|
5795
|
+
samlCanBeEnabled: boolean;
|
|
5796
|
+
/**
|
|
5797
|
+
* Identity provider endpoint for SAML authentication.
|
|
5798
|
+
*/
|
|
5799
|
+
samlIdpEndpoint: string;
|
|
5800
|
+
/**
|
|
5801
|
+
* Whether or not a SAML identity provider metadata file was provided to the Datadog organization.
|
|
5802
|
+
*/
|
|
5803
|
+
samlIdpInitiatedLogin: outputs.OrganizationSettingsSettingsSamlIdpInitiatedLogin;
|
|
5804
|
+
/**
|
|
5805
|
+
* Whether or not a SAML identity provider metadata file was provided to the Datadog organization.
|
|
5806
|
+
*/
|
|
5807
|
+
samlIdpMetadataUploaded: boolean;
|
|
5808
|
+
/**
|
|
5809
|
+
* URL for SAML logging.
|
|
5810
|
+
*/
|
|
5811
|
+
samlLoginUrl: string;
|
|
5812
|
+
/**
|
|
5813
|
+
* Whether or not the SAML strict mode is enabled. If true, all users must log in with SAML.
|
|
5814
|
+
*/
|
|
5815
|
+
samlStrictMode: outputs.OrganizationSettingsSettingsSamlStrictMode;
|
|
5816
|
+
}
|
|
5817
|
+
export interface OrganizationSettingsSettingsSaml {
|
|
5818
|
+
enabled?: boolean;
|
|
5819
|
+
}
|
|
5820
|
+
export interface OrganizationSettingsSettingsSamlAutocreateUsersDomains {
|
|
5821
|
+
domains?: string[];
|
|
5822
|
+
enabled?: boolean;
|
|
5823
|
+
}
|
|
5824
|
+
export interface OrganizationSettingsSettingsSamlIdpInitiatedLogin {
|
|
5825
|
+
enabled?: boolean;
|
|
5826
|
+
}
|
|
5827
|
+
export interface OrganizationSettingsSettingsSamlStrictMode {
|
|
5828
|
+
enabled?: boolean;
|
|
5829
|
+
}
|
|
5283
5830
|
export interface RolePermission {
|
|
5284
5831
|
/**
|
|
5285
5832
|
* ID of the permission to assign.
|
|
@@ -5304,6 +5851,16 @@ export interface SecurityMonitoringDefaultRuleFilter {
|
|
|
5304
5851
|
action: string;
|
|
5305
5852
|
query: string;
|
|
5306
5853
|
}
|
|
5854
|
+
export interface SecurityMonitoringFilterExclusionFilter {
|
|
5855
|
+
/**
|
|
5856
|
+
* Exclusion filter name.
|
|
5857
|
+
*/
|
|
5858
|
+
name: string;
|
|
5859
|
+
/**
|
|
5860
|
+
* Exclusion filter query. Logs that match this query are excluded from the security filter.
|
|
5861
|
+
*/
|
|
5862
|
+
query: string;
|
|
5863
|
+
}
|
|
5307
5864
|
export interface SecurityMonitoringRuleCase {
|
|
5308
5865
|
/**
|
|
5309
5866
|
* A rule case contains logical operations (`>`,`>=`, `&&`, `||`) to determine if a signal should be generated based on the event counts in the previously defined queries.
|
|
@@ -5322,7 +5879,21 @@ export interface SecurityMonitoringRuleCase {
|
|
|
5322
5879
|
*/
|
|
5323
5880
|
status: string;
|
|
5324
5881
|
}
|
|
5882
|
+
export interface SecurityMonitoringRuleFilter {
|
|
5883
|
+
/**
|
|
5884
|
+
* The type of filtering action (require or suppress).
|
|
5885
|
+
*/
|
|
5886
|
+
action: string;
|
|
5887
|
+
/**
|
|
5888
|
+
* Query to run on logs.
|
|
5889
|
+
*/
|
|
5890
|
+
query: string;
|
|
5891
|
+
}
|
|
5325
5892
|
export interface SecurityMonitoringRuleOptions {
|
|
5893
|
+
/**
|
|
5894
|
+
* The detection method. Default to `threshold`.
|
|
5895
|
+
*/
|
|
5896
|
+
detectionMethod?: string;
|
|
5326
5897
|
/**
|
|
5327
5898
|
* A time window is specified to match when at least one of the cases matches true. This is a sliding window and evaluates in real time.
|
|
5328
5899
|
*/
|
|
@@ -5335,6 +5906,20 @@ export interface SecurityMonitoringRuleOptions {
|
|
|
5335
5906
|
* A signal will “close” regardless of the query being matched once the time exceeds the maximum duration. This time is calculated from the first seen timestamp.
|
|
5336
5907
|
*/
|
|
5337
5908
|
maxSignalDuration: number;
|
|
5909
|
+
/**
|
|
5910
|
+
* Specific options for `newValue` detection method.
|
|
5911
|
+
*/
|
|
5912
|
+
newValueOptions?: outputs.SecurityMonitoringRuleOptionsNewValueOptions;
|
|
5913
|
+
}
|
|
5914
|
+
export interface SecurityMonitoringRuleOptionsNewValueOptions {
|
|
5915
|
+
/**
|
|
5916
|
+
* The duration in days after which a learned value is forgotten.
|
|
5917
|
+
*/
|
|
5918
|
+
forgetAfter: number;
|
|
5919
|
+
/**
|
|
5920
|
+
* The duration in days during which values are learned, and after which signals will be generated for values that weren't learned. If set to 0, a signal will be generated for all new values after the first value is learned.
|
|
5921
|
+
*/
|
|
5922
|
+
learningDuration: number;
|
|
5338
5923
|
}
|
|
5339
5924
|
export interface SecurityMonitoringRuleQuery {
|
|
5340
5925
|
/**
|
|
@@ -5382,7 +5967,7 @@ export interface ServiceLevelObjectiveThreshold {
|
|
|
5382
5967
|
*/
|
|
5383
5968
|
targetDisplay?: string;
|
|
5384
5969
|
/**
|
|
5385
|
-
* The time frame for the objective. The mapping from these types to the types found in the Datadog Web UI can be found in the Datadog API documentation page. Valid values are `7d`, `30d`, `90d`.
|
|
5970
|
+
* The time frame for the objective. The mapping from these types to the types found in the Datadog Web UI can be found in the Datadog API documentation page. Valid values are `7d`, `30d`, `90d`, `custom`.
|
|
5386
5971
|
*/
|
|
5387
5972
|
timeframe: string;
|
|
5388
5973
|
/**
|
|
@@ -5531,6 +6116,7 @@ export interface SyntheticsTestApiStepRequestClientCertificateKey {
|
|
|
5531
6116
|
filename?: string;
|
|
5532
6117
|
}
|
|
5533
6118
|
export interface SyntheticsTestApiStepRequestDefinition {
|
|
6119
|
+
allowInsecure?: boolean;
|
|
5534
6120
|
/**
|
|
5535
6121
|
* The request body.
|
|
5536
6122
|
*/
|
|
@@ -5733,7 +6319,7 @@ export interface SyntheticsTestOptionsList {
|
|
|
5733
6319
|
noScreenshot?: boolean;
|
|
5734
6320
|
retry?: outputs.SyntheticsTestOptionsListRetry;
|
|
5735
6321
|
/**
|
|
5736
|
-
* How often the test should run (in seconds).
|
|
6322
|
+
* How often the test should run (in seconds).
|
|
5737
6323
|
*/
|
|
5738
6324
|
tickEvery: number;
|
|
5739
6325
|
}
|