@pulumi/datadog 4.23.0 → 4.23.1
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/dashboard.d.ts +18 -18
- package/dashboardJson.d.ts +1 -1
- package/dashboardJson.js +1 -1
- package/dashboardList.d.ts +2 -2
- package/dashboardList.js +2 -2
- package/getDashboardList.d.ts +2 -2
- package/getDashboardList.js +2 -2
- package/getLogsPipelines.d.ts +0 -6
- package/getLogsPipelines.js.map +1 -1
- package/getTeamMemberships.d.ts +0 -6
- package/getTeamMemberships.js.map +1 -1
- package/logsCustomPipeline.d.ts +18 -0
- package/logsCustomPipeline.js.map +1 -1
- package/logsIndex.d.ts +3 -3
- package/monitor.d.ts +6 -24
- package/monitor.js.map +1 -1
- package/package.json +1 -1
- package/pagerduty/integration.d.ts +1 -0
- package/pagerduty/integration.js +1 -0
- package/pagerduty/integration.js.map +1 -1
- package/pagerduty/serviceObject.d.ts +3 -3
- package/role.d.ts +3 -3
- package/securityMonitoringFilter.d.ts +6 -6
- package/securityMonitoringRule.d.ts +6 -6
- package/serviceLevelObjective.d.ts +3 -3
- package/syntheticsGlobalVariable.d.ts +3 -3
- package/syntheticsTest.d.ts +12 -12
- package/types/input.d.ts +14029 -92
- package/types/output.d.ts +14032 -128
- package/utilities.d.ts +4 -0
- package/utilities.js +33 -1
- package/utilities.js.map +1 -1
package/dashboard.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ export declare class Dashboard extends pulumi.CustomResource {
|
|
|
46
46
|
*/
|
|
47
47
|
readonly isReadOnly: pulumi.Output<boolean | undefined>;
|
|
48
48
|
/**
|
|
49
|
-
* The layout type of the
|
|
49
|
+
* The layout type of the group. Valid values are `ordered`.
|
|
50
50
|
*/
|
|
51
51
|
readonly layoutType: pulumi.Output<string>;
|
|
52
52
|
/**
|
|
@@ -62,7 +62,7 @@ export declare class Dashboard extends pulumi.CustomResource {
|
|
|
62
62
|
*/
|
|
63
63
|
readonly restrictedRoles: pulumi.Output<string[] | undefined>;
|
|
64
64
|
/**
|
|
65
|
-
* A list of tags
|
|
65
|
+
* A list of tags to use in the widget.
|
|
66
66
|
*/
|
|
67
67
|
readonly tags: pulumi.Output<string[] | undefined>;
|
|
68
68
|
/**
|
|
@@ -70,19 +70,19 @@ export declare class Dashboard extends pulumi.CustomResource {
|
|
|
70
70
|
*/
|
|
71
71
|
readonly templateVariablePresets: pulumi.Output<outputs.DashboardTemplateVariablePreset[] | undefined>;
|
|
72
72
|
/**
|
|
73
|
-
* The
|
|
73
|
+
* The template variable names and assumed values under the given preset
|
|
74
74
|
*/
|
|
75
75
|
readonly templateVariables: pulumi.Output<outputs.DashboardTemplateVariable[] | undefined>;
|
|
76
76
|
/**
|
|
77
|
-
* The title of the
|
|
77
|
+
* The title of the widget.
|
|
78
78
|
*/
|
|
79
79
|
readonly title: pulumi.Output<string>;
|
|
80
80
|
/**
|
|
81
|
-
* The URL
|
|
81
|
+
* The URL to use as a data source for the widget.
|
|
82
82
|
*/
|
|
83
83
|
readonly url: pulumi.Output<string>;
|
|
84
84
|
/**
|
|
85
|
-
* The list of widgets
|
|
85
|
+
* The list of widgets in this group.
|
|
86
86
|
*/
|
|
87
87
|
readonly widgets: pulumi.Output<outputs.DashboardWidget[] | undefined>;
|
|
88
88
|
/**
|
|
@@ -118,7 +118,7 @@ export interface DashboardState {
|
|
|
118
118
|
*/
|
|
119
119
|
isReadOnly?: pulumi.Input<boolean>;
|
|
120
120
|
/**
|
|
121
|
-
* The layout type of the
|
|
121
|
+
* The layout type of the group. Valid values are `ordered`.
|
|
122
122
|
*/
|
|
123
123
|
layoutType?: pulumi.Input<string>;
|
|
124
124
|
/**
|
|
@@ -134,7 +134,7 @@ export interface DashboardState {
|
|
|
134
134
|
*/
|
|
135
135
|
restrictedRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
136
136
|
/**
|
|
137
|
-
* A list of tags
|
|
137
|
+
* A list of tags to use in the widget.
|
|
138
138
|
*/
|
|
139
139
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
140
140
|
/**
|
|
@@ -142,19 +142,19 @@ export interface DashboardState {
|
|
|
142
142
|
*/
|
|
143
143
|
templateVariablePresets?: pulumi.Input<pulumi.Input<inputs.DashboardTemplateVariablePreset>[]>;
|
|
144
144
|
/**
|
|
145
|
-
* The
|
|
145
|
+
* The template variable names and assumed values under the given preset
|
|
146
146
|
*/
|
|
147
147
|
templateVariables?: pulumi.Input<pulumi.Input<inputs.DashboardTemplateVariable>[]>;
|
|
148
148
|
/**
|
|
149
|
-
* The title of the
|
|
149
|
+
* The title of the widget.
|
|
150
150
|
*/
|
|
151
151
|
title?: pulumi.Input<string>;
|
|
152
152
|
/**
|
|
153
|
-
* The URL
|
|
153
|
+
* The URL to use as a data source for the widget.
|
|
154
154
|
*/
|
|
155
155
|
url?: pulumi.Input<string>;
|
|
156
156
|
/**
|
|
157
|
-
* The list of widgets
|
|
157
|
+
* The list of widgets in this group.
|
|
158
158
|
*/
|
|
159
159
|
widgets?: pulumi.Input<pulumi.Input<inputs.DashboardWidget>[]>;
|
|
160
160
|
}
|
|
@@ -178,7 +178,7 @@ export interface DashboardArgs {
|
|
|
178
178
|
*/
|
|
179
179
|
isReadOnly?: pulumi.Input<boolean>;
|
|
180
180
|
/**
|
|
181
|
-
* The layout type of the
|
|
181
|
+
* The layout type of the group. Valid values are `ordered`.
|
|
182
182
|
*/
|
|
183
183
|
layoutType: pulumi.Input<string>;
|
|
184
184
|
/**
|
|
@@ -194,7 +194,7 @@ export interface DashboardArgs {
|
|
|
194
194
|
*/
|
|
195
195
|
restrictedRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
196
196
|
/**
|
|
197
|
-
* A list of tags
|
|
197
|
+
* A list of tags to use in the widget.
|
|
198
198
|
*/
|
|
199
199
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
200
200
|
/**
|
|
@@ -202,19 +202,19 @@ export interface DashboardArgs {
|
|
|
202
202
|
*/
|
|
203
203
|
templateVariablePresets?: pulumi.Input<pulumi.Input<inputs.DashboardTemplateVariablePreset>[]>;
|
|
204
204
|
/**
|
|
205
|
-
* The
|
|
205
|
+
* The template variable names and assumed values under the given preset
|
|
206
206
|
*/
|
|
207
207
|
templateVariables?: pulumi.Input<pulumi.Input<inputs.DashboardTemplateVariable>[]>;
|
|
208
208
|
/**
|
|
209
|
-
* The title of the
|
|
209
|
+
* The title of the widget.
|
|
210
210
|
*/
|
|
211
211
|
title: pulumi.Input<string>;
|
|
212
212
|
/**
|
|
213
|
-
* The URL
|
|
213
|
+
* The URL to use as a data source for the widget.
|
|
214
214
|
*/
|
|
215
215
|
url?: pulumi.Input<string>;
|
|
216
216
|
/**
|
|
217
|
-
* The list of widgets
|
|
217
|
+
* The list of widgets in this group.
|
|
218
218
|
*/
|
|
219
219
|
widgets?: pulumi.Input<pulumi.Input<inputs.DashboardWidget>[]>;
|
|
220
220
|
}
|
package/dashboardJson.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
11
11
|
* // Example Dashboard JSON
|
|
12
12
|
* const dashboardJson = new datadog.DashboardJson("dashboardJson", {dashboard: `{
|
|
13
13
|
* "title":"Ordered Layout Dashboard",
|
|
14
|
-
* "description":"Created using the Datadog provider in
|
|
14
|
+
* "description":"Created using the Datadog provider in Pulumi",
|
|
15
15
|
* "widgets":[
|
|
16
16
|
* {
|
|
17
17
|
* "id":719369537777170,
|
package/dashboardJson.js
CHANGED
|
@@ -17,7 +17,7 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* // Example Dashboard JSON
|
|
18
18
|
* const dashboardJson = new datadog.DashboardJson("dashboardJson", {dashboard: `{
|
|
19
19
|
* "title":"Ordered Layout Dashboard",
|
|
20
|
-
* "description":"Created using the Datadog provider in
|
|
20
|
+
* "description":"Created using the Datadog provider in Pulumi",
|
|
21
21
|
* "widgets":[
|
|
22
22
|
* {
|
|
23
23
|
* "id":719369537777170,
|
package/dashboardList.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ import * as outputs from "./types/output";
|
|
|
12
12
|
*
|
|
13
13
|
* const time = new datadog.Dashboard("time", {
|
|
14
14
|
* title: "TF Test Layout Dashboard",
|
|
15
|
-
* description: "Created using the Datadog provider",
|
|
15
|
+
* description: "Created using the Datadog provider in Pulumi",
|
|
16
16
|
* layoutType: "ordered",
|
|
17
17
|
* isReadOnly: true,
|
|
18
18
|
* widgets: [{
|
|
@@ -26,7 +26,7 @@ import * as outputs from "./types/output";
|
|
|
26
26
|
* });
|
|
27
27
|
* const screen = new datadog.Dashboard("screen", {
|
|
28
28
|
* title: "TF Test Free Layout Dashboard",
|
|
29
|
-
* description: "Created using the Datadog provider",
|
|
29
|
+
* description: "Created using the Datadog provider in Pulumi",
|
|
30
30
|
* layoutType: "free",
|
|
31
31
|
* isReadOnly: false,
|
|
32
32
|
* widgets: [{
|
package/dashboardList.js
CHANGED
|
@@ -16,7 +16,7 @@ const utilities = require("./utilities");
|
|
|
16
16
|
*
|
|
17
17
|
* const time = new datadog.Dashboard("time", {
|
|
18
18
|
* title: "TF Test Layout Dashboard",
|
|
19
|
-
* description: "Created using the Datadog provider",
|
|
19
|
+
* description: "Created using the Datadog provider in Pulumi",
|
|
20
20
|
* layoutType: "ordered",
|
|
21
21
|
* isReadOnly: true,
|
|
22
22
|
* widgets: [{
|
|
@@ -30,7 +30,7 @@ const utilities = require("./utilities");
|
|
|
30
30
|
* });
|
|
31
31
|
* const screen = new datadog.Dashboard("screen", {
|
|
32
32
|
* title: "TF Test Free Layout Dashboard",
|
|
33
|
-
* description: "Created using the Datadog provider",
|
|
33
|
+
* description: "Created using the Datadog provider in Pulumi",
|
|
34
34
|
* layoutType: "free",
|
|
35
35
|
* isReadOnly: false,
|
|
36
36
|
* widgets: [{
|
package/getDashboardList.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
14
14
|
* // Create a dashboard and register it in the list above.
|
|
15
15
|
* const time = new datadog.Dashboard("time", {
|
|
16
16
|
* dashboardLists: [test.then(test => test.id)],
|
|
17
|
-
* description: "Created using the Datadog provider in
|
|
17
|
+
* description: "Created using the Datadog provider in Pulumi",
|
|
18
18
|
* isReadOnly: true,
|
|
19
19
|
* layoutType: "ordered",
|
|
20
20
|
* title: "TF Test Layout Dashboard",
|
|
@@ -67,7 +67,7 @@ export interface GetDashboardListResult {
|
|
|
67
67
|
* // Create a dashboard and register it in the list above.
|
|
68
68
|
* const time = new datadog.Dashboard("time", {
|
|
69
69
|
* dashboardLists: [test.then(test => test.id)],
|
|
70
|
-
* description: "Created using the Datadog provider in
|
|
70
|
+
* description: "Created using the Datadog provider in Pulumi",
|
|
71
71
|
* isReadOnly: true,
|
|
72
72
|
* layoutType: "ordered",
|
|
73
73
|
* title: "TF Test Layout Dashboard",
|
package/getDashboardList.js
CHANGED
|
@@ -20,7 +20,7 @@ const utilities = require("./utilities");
|
|
|
20
20
|
* // Create a dashboard and register it in the list above.
|
|
21
21
|
* const time = new datadog.Dashboard("time", {
|
|
22
22
|
* dashboardLists: [test.then(test => test.id)],
|
|
23
|
-
* description: "Created using the Datadog provider in
|
|
23
|
+
* description: "Created using the Datadog provider in Pulumi",
|
|
24
24
|
* isReadOnly: true,
|
|
25
25
|
* layoutType: "ordered",
|
|
26
26
|
* title: "TF Test Layout Dashboard",
|
|
@@ -57,7 +57,7 @@ exports.getDashboardList = getDashboardList;
|
|
|
57
57
|
* // Create a dashboard and register it in the list above.
|
|
58
58
|
* const time = new datadog.Dashboard("time", {
|
|
59
59
|
* dashboardLists: [test.then(test => test.id)],
|
|
60
|
-
* description: "Created using the Datadog provider in
|
|
60
|
+
* description: "Created using the Datadog provider in Pulumi",
|
|
61
61
|
* isReadOnly: true,
|
|
62
62
|
* layoutType: "ordered",
|
|
63
63
|
* title: "TF Test Layout Dashboard",
|
package/getLogsPipelines.d.ts
CHANGED
|
@@ -22,9 +22,6 @@ export declare function getLogsPipelines(args?: GetLogsPipelinesArgs, opts?: pul
|
|
|
22
22
|
* A collection of arguments for invoking getLogsPipelines.
|
|
23
23
|
*/
|
|
24
24
|
export interface GetLogsPipelinesArgs {
|
|
25
|
-
/**
|
|
26
|
-
* Filter parameter for retrieved pipelines
|
|
27
|
-
*/
|
|
28
25
|
isReadOnly?: string;
|
|
29
26
|
}
|
|
30
27
|
/**
|
|
@@ -66,8 +63,5 @@ export declare function getLogsPipelinesOutput(args?: GetLogsPipelinesOutputArgs
|
|
|
66
63
|
* A collection of arguments for invoking getLogsPipelines.
|
|
67
64
|
*/
|
|
68
65
|
export interface GetLogsPipelinesOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* Filter parameter for retrieved pipelines
|
|
71
|
-
*/
|
|
72
66
|
isReadOnly?: pulumi.Input<string>;
|
|
73
67
|
}
|
package/getLogsPipelines.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getLogsPipelines.js","sourceRoot":"","sources":["../getLogsPipelines.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4CAOC;
|
|
1
|
+
{"version":3,"file":"getLogsPipelines.js","sourceRoot":"","sources":["../getLogsPipelines.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4CAOC;AA0BD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,sBAAsB,CAAC,IAAiC,EAAE,IAA2B;IACjG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gBAAgB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,wDAEC"}
|
package/getTeamMemberships.d.ts
CHANGED
|
@@ -24,9 +24,6 @@ export interface GetTeamMembershipsArgs {
|
|
|
24
24
|
* Search query, can be user email or name.
|
|
25
25
|
*/
|
|
26
26
|
filterKeyword?: string;
|
|
27
|
-
/**
|
|
28
|
-
* The team's identifier.
|
|
29
|
-
*/
|
|
30
27
|
teamId: string;
|
|
31
28
|
}
|
|
32
29
|
/**
|
|
@@ -74,8 +71,5 @@ export interface GetTeamMembershipsOutputArgs {
|
|
|
74
71
|
* Search query, can be user email or name.
|
|
75
72
|
*/
|
|
76
73
|
filterKeyword?: pulumi.Input<string>;
|
|
77
|
-
/**
|
|
78
|
-
* The team's identifier.
|
|
79
|
-
*/
|
|
80
74
|
teamId: pulumi.Input<string>;
|
|
81
75
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTeamMemberships.js","sourceRoot":"","sources":["../getTeamMemberships.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IAExF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qDAAqD,EAAE;QAChF,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC;
|
|
1
|
+
{"version":3,"file":"getTeamMemberships.js","sourceRoot":"","sources":["../getTeamMemberships.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IAExF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qDAAqD,EAAE;QAChF,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC;AAkCD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,4DAEC"}
|
package/logsCustomPipeline.d.ts
CHANGED
|
@@ -29,7 +29,13 @@ export declare class LogsCustomPipeline extends pulumi.CustomResource {
|
|
|
29
29
|
*/
|
|
30
30
|
static isInstance(obj: any): obj is LogsCustomPipeline;
|
|
31
31
|
readonly filters: pulumi.Output<outputs.LogsCustomPipelineFilter[]>;
|
|
32
|
+
/**
|
|
33
|
+
* Boolean value to enable your pipeline.
|
|
34
|
+
*/
|
|
32
35
|
readonly isEnabled: pulumi.Output<boolean | undefined>;
|
|
36
|
+
/**
|
|
37
|
+
* Your pipeline name.
|
|
38
|
+
*/
|
|
33
39
|
readonly name: pulumi.Output<string>;
|
|
34
40
|
readonly processors: pulumi.Output<outputs.LogsCustomPipelineProcessor[] | undefined>;
|
|
35
41
|
/**
|
|
@@ -46,7 +52,13 @@ export declare class LogsCustomPipeline extends pulumi.CustomResource {
|
|
|
46
52
|
*/
|
|
47
53
|
export interface LogsCustomPipelineState {
|
|
48
54
|
filters?: pulumi.Input<pulumi.Input<inputs.LogsCustomPipelineFilter>[]>;
|
|
55
|
+
/**
|
|
56
|
+
* Boolean value to enable your pipeline.
|
|
57
|
+
*/
|
|
49
58
|
isEnabled?: pulumi.Input<boolean>;
|
|
59
|
+
/**
|
|
60
|
+
* Your pipeline name.
|
|
61
|
+
*/
|
|
50
62
|
name?: pulumi.Input<string>;
|
|
51
63
|
processors?: pulumi.Input<pulumi.Input<inputs.LogsCustomPipelineProcessor>[]>;
|
|
52
64
|
}
|
|
@@ -55,7 +67,13 @@ export interface LogsCustomPipelineState {
|
|
|
55
67
|
*/
|
|
56
68
|
export interface LogsCustomPipelineArgs {
|
|
57
69
|
filters: pulumi.Input<pulumi.Input<inputs.LogsCustomPipelineFilter>[]>;
|
|
70
|
+
/**
|
|
71
|
+
* Boolean value to enable your pipeline.
|
|
72
|
+
*/
|
|
58
73
|
isEnabled?: pulumi.Input<boolean>;
|
|
74
|
+
/**
|
|
75
|
+
* Your pipeline name.
|
|
76
|
+
*/
|
|
59
77
|
name: pulumi.Input<string>;
|
|
60
78
|
processors?: pulumi.Input<pulumi.Input<inputs.LogsCustomPipelineProcessor>[]>;
|
|
61
79
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logsCustomPipeline.js","sourceRoot":"","sources":["../logsCustomPipeline.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IACzD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;
|
|
1
|
+
{"version":3,"file":"logsCustomPipeline.js","sourceRoot":"","sources":["../logsCustomPipeline.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IACzD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;IAqBD,YAAY,IAAY,EAAE,WAA8D,EAAE,IAAmC;QACzH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAkD,CAAC;YACjE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACvE,CAAC;;AAvEL,gDAwEC;AA1DG,gBAAgB;AACO,+BAAY,GAAG,qDAAqD,CAAC"}
|
package/logsIndex.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ export declare class LogsIndex extends pulumi.CustomResource {
|
|
|
75
75
|
*/
|
|
76
76
|
readonly filters: pulumi.Output<outputs.LogsIndexFilter[]>;
|
|
77
77
|
/**
|
|
78
|
-
* The name of the
|
|
78
|
+
* The name of the exclusion filter.
|
|
79
79
|
*/
|
|
80
80
|
readonly name: pulumi.Output<string>;
|
|
81
81
|
/**
|
|
@@ -112,7 +112,7 @@ export interface LogsIndexState {
|
|
|
112
112
|
*/
|
|
113
113
|
filters?: pulumi.Input<pulumi.Input<inputs.LogsIndexFilter>[]>;
|
|
114
114
|
/**
|
|
115
|
-
* The name of the
|
|
115
|
+
* The name of the exclusion filter.
|
|
116
116
|
*/
|
|
117
117
|
name?: pulumi.Input<string>;
|
|
118
118
|
/**
|
|
@@ -141,7 +141,7 @@ export interface LogsIndexArgs {
|
|
|
141
141
|
*/
|
|
142
142
|
filters: pulumi.Input<pulumi.Input<inputs.LogsIndexFilter>[]>;
|
|
143
143
|
/**
|
|
144
|
-
* The name of the
|
|
144
|
+
* The name of the exclusion filter.
|
|
145
145
|
*/
|
|
146
146
|
name: pulumi.Input<string>;
|
|
147
147
|
/**
|
package/monitor.d.ts
CHANGED
|
@@ -112,7 +112,7 @@ export declare class Monitor extends pulumi.CustomResource {
|
|
|
112
112
|
*/
|
|
113
113
|
readonly monitorThresholds: pulumi.Output<outputs.MonitorMonitorThresholds | undefined>;
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
115
|
+
* The name of query for use in formulas.
|
|
116
116
|
*/
|
|
117
117
|
readonly name: pulumi.Output<string>;
|
|
118
118
|
/**
|
|
@@ -168,13 +168,7 @@ export declare class Monitor extends pulumi.CustomResource {
|
|
|
168
168
|
*/
|
|
169
169
|
readonly priority: pulumi.Output<number | undefined>;
|
|
170
170
|
/**
|
|
171
|
-
* The
|
|
172
|
-
* on the monitor type, please see the [API Reference](https://docs.datadoghq.com/api/v1/monitors/#create-a-monitor) for
|
|
173
|
-
* details. `terraform plan` will validate query contents unless `validate` is set to `false`. **Note:** APM latency data
|
|
174
|
-
* is now available as Distribution Metrics. Existing monitors have been migrated automatically but all terraformed
|
|
175
|
-
* monitors can still use the existing metrics. We strongly recommend updating monitor definitions to query the new
|
|
176
|
-
* metrics. To learn more, or to see examples of how to update your terraform definitions to utilize the new distribution
|
|
177
|
-
* metrics, see the [detailed doc](https://docs.datadoghq.com/tracing/guide/ddsketch_trace_metrics/).
|
|
171
|
+
* The events search string.
|
|
178
172
|
*/
|
|
179
173
|
readonly query: pulumi.Output<string>;
|
|
180
174
|
/**
|
|
@@ -303,7 +297,7 @@ export interface MonitorState {
|
|
|
303
297
|
*/
|
|
304
298
|
monitorThresholds?: pulumi.Input<inputs.MonitorMonitorThresholds>;
|
|
305
299
|
/**
|
|
306
|
-
*
|
|
300
|
+
* The name of query for use in formulas.
|
|
307
301
|
*/
|
|
308
302
|
name?: pulumi.Input<string>;
|
|
309
303
|
/**
|
|
@@ -359,13 +353,7 @@ export interface MonitorState {
|
|
|
359
353
|
*/
|
|
360
354
|
priority?: pulumi.Input<number>;
|
|
361
355
|
/**
|
|
362
|
-
* The
|
|
363
|
-
* on the monitor type, please see the [API Reference](https://docs.datadoghq.com/api/v1/monitors/#create-a-monitor) for
|
|
364
|
-
* details. `terraform plan` will validate query contents unless `validate` is set to `false`. **Note:** APM latency data
|
|
365
|
-
* is now available as Distribution Metrics. Existing monitors have been migrated automatically but all terraformed
|
|
366
|
-
* monitors can still use the existing metrics. We strongly recommend updating monitor definitions to query the new
|
|
367
|
-
* metrics. To learn more, or to see examples of how to update your terraform definitions to utilize the new distribution
|
|
368
|
-
* metrics, see the [detailed doc](https://docs.datadoghq.com/tracing/guide/ddsketch_trace_metrics/).
|
|
356
|
+
* The events search string.
|
|
369
357
|
*/
|
|
370
358
|
query?: pulumi.Input<string>;
|
|
371
359
|
/**
|
|
@@ -481,7 +469,7 @@ export interface MonitorArgs {
|
|
|
481
469
|
*/
|
|
482
470
|
monitorThresholds?: pulumi.Input<inputs.MonitorMonitorThresholds>;
|
|
483
471
|
/**
|
|
484
|
-
*
|
|
472
|
+
* The name of query for use in formulas.
|
|
485
473
|
*/
|
|
486
474
|
name: pulumi.Input<string>;
|
|
487
475
|
/**
|
|
@@ -537,13 +525,7 @@ export interface MonitorArgs {
|
|
|
537
525
|
*/
|
|
538
526
|
priority?: pulumi.Input<number>;
|
|
539
527
|
/**
|
|
540
|
-
* The
|
|
541
|
-
* on the monitor type, please see the [API Reference](https://docs.datadoghq.com/api/v1/monitors/#create-a-monitor) for
|
|
542
|
-
* details. `terraform plan` will validate query contents unless `validate` is set to `false`. **Note:** APM latency data
|
|
543
|
-
* is now available as Distribution Metrics. Existing monitors have been migrated automatically but all terraformed
|
|
544
|
-
* monitors can still use the existing metrics. We strongly recommend updating monitor definitions to query the new
|
|
545
|
-
* metrics. To learn more, or to see examples of how to update your terraform definitions to utilize the new distribution
|
|
546
|
-
* metrics, see the [detailed doc](https://docs.datadoghq.com/tracing/guide/ddsketch_trace_metrics/).
|
|
528
|
+
* The events search string.
|
|
547
529
|
*/
|
|
548
530
|
query: pulumi.Input<string>;
|
|
549
531
|
/**
|
package/monitor.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"monitor.js","sourceRoot":"","sources":["../monitor.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"monitor.js","sourceRoot":"","sources":["../monitor.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -8,6 +8,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
8
8
|
* import * as pulumi from "@pulumi/pulumi";
|
|
9
9
|
* import * as datadog from "@pulumi/datadog";
|
|
10
10
|
*
|
|
11
|
+
* // Services as Individual Resources
|
|
11
12
|
* const pd = new datadog.pagerduty.Integration("pd", {
|
|
12
13
|
* apiToken: "38457822378273432587234242874",
|
|
13
14
|
* schedules: [
|
package/pagerduty/integration.js
CHANGED
|
@@ -14,6 +14,7 @@ const utilities = require("../utilities");
|
|
|
14
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
15
|
* import * as datadog from "@pulumi/datadog";
|
|
16
16
|
*
|
|
17
|
+
* // Services as Individual Resources
|
|
17
18
|
* const pd = new datadog.pagerduty.Integration("pd", {
|
|
18
19
|
* apiToken: "38457822378273432587234242874",
|
|
19
20
|
* schedules: [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integration.js","sourceRoot":"","sources":["../../pagerduty/integration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"integration.js","sourceRoot":"","sources":["../../pagerduty/integration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,QAAQ,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACvF,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC;QAC7D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AAtEL,kCAuEC;AAzDG,gBAAgB;AACO,wBAAY,GAAG,2CAA2C,CAAC"}
|
|
@@ -35,7 +35,7 @@ export declare class ServiceObject extends pulumi.CustomResource {
|
|
|
35
35
|
*/
|
|
36
36
|
static isInstance(obj: any): obj is ServiceObject;
|
|
37
37
|
/**
|
|
38
|
-
* Your Service name associated service key in PagerDuty. Note: Since the Datadog API never returns service keys, it is impossible to detect drifts.
|
|
38
|
+
* Your Service name associated service key in PagerDuty. Note: Since the Datadog API never returns service keys, it is impossible to detect drifts to have it destroyed and recreated.
|
|
39
39
|
*/
|
|
40
40
|
readonly serviceKey: pulumi.Output<string>;
|
|
41
41
|
/**
|
|
@@ -56,7 +56,7 @@ export declare class ServiceObject extends pulumi.CustomResource {
|
|
|
56
56
|
*/
|
|
57
57
|
export interface ServiceObjectState {
|
|
58
58
|
/**
|
|
59
|
-
* Your Service name associated service key in PagerDuty. Note: Since the Datadog API never returns service keys, it is impossible to detect drifts.
|
|
59
|
+
* Your Service name associated service key in PagerDuty. Note: Since the Datadog API never returns service keys, it is impossible to detect drifts to have it destroyed and recreated.
|
|
60
60
|
*/
|
|
61
61
|
serviceKey?: pulumi.Input<string>;
|
|
62
62
|
/**
|
|
@@ -69,7 +69,7 @@ export interface ServiceObjectState {
|
|
|
69
69
|
*/
|
|
70
70
|
export interface ServiceObjectArgs {
|
|
71
71
|
/**
|
|
72
|
-
* Your Service name associated service key in PagerDuty. Note: Since the Datadog API never returns service keys, it is impossible to detect drifts.
|
|
72
|
+
* Your Service name associated service key in PagerDuty. Note: Since the Datadog API never returns service keys, it is impossible to detect drifts to have it destroyed and recreated.
|
|
73
73
|
*/
|
|
74
74
|
serviceKey: pulumi.Input<string>;
|
|
75
75
|
/**
|
package/role.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ export declare class Role extends pulumi.CustomResource {
|
|
|
50
50
|
*/
|
|
51
51
|
static isInstance(obj: any): obj is Role;
|
|
52
52
|
/**
|
|
53
|
-
* Name of the
|
|
53
|
+
* Name of the permission.
|
|
54
54
|
*/
|
|
55
55
|
readonly name: pulumi.Output<string>;
|
|
56
56
|
/**
|
|
@@ -79,7 +79,7 @@ export declare class Role extends pulumi.CustomResource {
|
|
|
79
79
|
*/
|
|
80
80
|
export interface RoleState {
|
|
81
81
|
/**
|
|
82
|
-
* Name of the
|
|
82
|
+
* Name of the permission.
|
|
83
83
|
*/
|
|
84
84
|
name?: pulumi.Input<string>;
|
|
85
85
|
/**
|
|
@@ -100,7 +100,7 @@ export interface RoleState {
|
|
|
100
100
|
*/
|
|
101
101
|
export interface RoleArgs {
|
|
102
102
|
/**
|
|
103
|
-
* Name of the
|
|
103
|
+
* Name of the permission.
|
|
104
104
|
*/
|
|
105
105
|
name: pulumi.Input<string>;
|
|
106
106
|
/**
|
|
@@ -64,11 +64,11 @@ export declare class SecurityMonitoringFilter extends pulumi.CustomResource {
|
|
|
64
64
|
*/
|
|
65
65
|
readonly isEnabled: pulumi.Output<boolean>;
|
|
66
66
|
/**
|
|
67
|
-
*
|
|
67
|
+
* Exclusion filter name.
|
|
68
68
|
*/
|
|
69
69
|
readonly name: pulumi.Output<string>;
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
* Exclusion filter query. Logs that match this query are excluded from the security filter.
|
|
72
72
|
*/
|
|
73
73
|
readonly query: pulumi.Output<string>;
|
|
74
74
|
/**
|
|
@@ -101,11 +101,11 @@ export interface SecurityMonitoringFilterState {
|
|
|
101
101
|
*/
|
|
102
102
|
isEnabled?: pulumi.Input<boolean>;
|
|
103
103
|
/**
|
|
104
|
-
*
|
|
104
|
+
* Exclusion filter name.
|
|
105
105
|
*/
|
|
106
106
|
name?: pulumi.Input<string>;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Exclusion filter query. Logs that match this query are excluded from the security filter.
|
|
109
109
|
*/
|
|
110
110
|
query?: pulumi.Input<string>;
|
|
111
111
|
/**
|
|
@@ -130,11 +130,11 @@ export interface SecurityMonitoringFilterArgs {
|
|
|
130
130
|
*/
|
|
131
131
|
isEnabled: pulumi.Input<boolean>;
|
|
132
132
|
/**
|
|
133
|
-
*
|
|
133
|
+
* Exclusion filter name.
|
|
134
134
|
*/
|
|
135
135
|
name: pulumi.Input<string>;
|
|
136
136
|
/**
|
|
137
|
-
*
|
|
137
|
+
* Exclusion filter query. Logs that match this query are excluded from the security filter.
|
|
138
138
|
*/
|
|
139
139
|
query: pulumi.Input<string>;
|
|
140
140
|
}
|