@pulumi/newrelic 4.20.0 → 5.1.0-alpha.1663018157
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/alertPolicyChannel.d.ts +1 -1
- package/alertPolicyChannel.js +1 -1
- package/cloud/awsIntegrations.d.ts +24 -0
- package/cloud/awsIntegrations.js +4 -0
- package/cloud/awsIntegrations.js.map +1 -1
- package/getAlertChannel.d.ts +9 -0
- package/getAlertChannel.js +1 -0
- package/getAlertChannel.js.map +1 -1
- package/getAlertPolicy.d.ts +6 -0
- package/getAlertPolicy.js.map +1 -1
- package/index.d.ts +1 -1
- package/index.js +5 -5
- package/index.js.map +1 -1
- package/notificationChannel.d.ts +143 -28
- package/notificationChannel.js +112 -17
- package/notificationChannel.js.map +1 -1
- package/notificationDestination.d.ts +124 -50
- package/notificationDestination.js +67 -32
- package/notificationDestination.js.map +1 -1
- package/nrqlAlertCondition.d.ts +12 -15
- package/nrqlAlertCondition.js +0 -3
- package/nrqlAlertCondition.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/plugins/index.d.ts +0 -3
- package/plugins/index.js +0 -7
- package/plugins/index.js.map +1 -1
- package/synthetics/alertCondition.d.ts +3 -19
- package/synthetics/alertCondition.js +0 -16
- package/synthetics/alertCondition.js.map +1 -1
- package/synthetics/brokenLinksMonitor.d.ts +198 -0
- package/synthetics/brokenLinksMonitor.js +131 -0
- package/synthetics/brokenLinksMonitor.js.map +1 -0
- package/synthetics/certCheckMonitor.d.ts +203 -0
- package/synthetics/certCheckMonitor.js +135 -0
- package/synthetics/certCheckMonitor.js.map +1 -0
- package/synthetics/getPrivateLocation.d.ts +34 -0
- package/synthetics/getPrivateLocation.js +25 -0
- package/synthetics/getPrivateLocation.js.map +1 -0
- package/synthetics/getSecureCredential.d.ts +0 -4
- package/synthetics/getSecureCredential.js.map +1 -1
- package/synthetics/index.d.ts +6 -3
- package/synthetics/index.js +26 -7
- package/synthetics/index.js.map +1 -1
- package/synthetics/monitor.d.ts +221 -77
- package/synthetics/monitor.js +114 -47
- package/synthetics/monitor.js.map +1 -1
- package/synthetics/multiLocationAlertCondition.d.ts +32 -3
- package/synthetics/multiLocationAlertCondition.js +29 -0
- package/synthetics/multiLocationAlertCondition.js.map +1 -1
- package/synthetics/privateLocation.d.ts +139 -0
- package/synthetics/privateLocation.js +89 -0
- package/synthetics/privateLocation.js.map +1 -0
- package/synthetics/scriptMonitor.d.ts +341 -0
- package/synthetics/scriptMonitor.js +224 -0
- package/synthetics/scriptMonitor.js.map +1 -0
- package/synthetics/secureCredential.d.ts +6 -6
- package/synthetics/secureCredential.js +2 -2
- package/synthetics/stepMonitor.d.ts +192 -0
- package/synthetics/stepMonitor.js +115 -0
- package/synthetics/stepMonitor.js.map +1 -0
- package/types/input.d.ts +213 -126
- package/types/output.d.ts +213 -126
- package/workflow.d.ts +291 -0
- package/workflow.js +208 -0
- package/workflow.js.map +1 -0
- package/dashboard.d.ts +0 -139
- package/dashboard.js +0 -73
- package/dashboard.js.map +0 -1
- package/plugins/alertCondition.d.ts +0 -167
- package/plugins/alertCondition.js +0 -100
- package/plugins/alertCondition.js.map +0 -1
- package/plugins/getPlugin.d.ts +0 -29
- package/plugins/getPlugin.js +0 -29
- package/plugins/getPlugin.js.map +0 -1
- package/plugins/getPluginComponent.d.ts +0 -33
- package/plugins/getPluginComponent.js +0 -30
- package/plugins/getPluginComponent.js.map +0 -1
- package/synthetics/getMonitor.d.ts +0 -54
- package/synthetics/getMonitor.js +0 -41
- package/synthetics/getMonitor.js.map +0 -1
- package/synthetics/getMonitorLocation.d.ts +0 -71
- package/synthetics/getMonitorLocation.js +0 -46
- package/synthetics/getMonitorLocation.js.map +0 -1
- package/synthetics/monitorScript.d.ts +0 -107
- package/synthetics/monitorScript.js +0 -93
- package/synthetics/monitorScript.js.map +0 -1
package/types/input.d.ts
CHANGED
|
@@ -150,49 +150,6 @@ export interface AlertMutingRuleSchedule {
|
|
|
150
150
|
*/
|
|
151
151
|
weeklyRepeatDays?: pulumi.Input<pulumi.Input<string>[]>;
|
|
152
152
|
}
|
|
153
|
-
export interface DashboardFilter {
|
|
154
|
-
attributes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
155
|
-
eventTypes: pulumi.Input<pulumi.Input<string>[]>;
|
|
156
|
-
}
|
|
157
|
-
export interface DashboardWidget {
|
|
158
|
-
accountId?: pulumi.Input<number>;
|
|
159
|
-
column: pulumi.Input<number>;
|
|
160
|
-
compareWiths?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetCompareWith>[]>;
|
|
161
|
-
drilldownDashboardId?: pulumi.Input<number>;
|
|
162
|
-
duration?: pulumi.Input<number>;
|
|
163
|
-
endTime?: pulumi.Input<number>;
|
|
164
|
-
entityIds?: pulumi.Input<pulumi.Input<number>[]>;
|
|
165
|
-
facet?: pulumi.Input<string>;
|
|
166
|
-
height?: pulumi.Input<number>;
|
|
167
|
-
limit?: pulumi.Input<number>;
|
|
168
|
-
metrics?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetMetric>[]>;
|
|
169
|
-
notes?: pulumi.Input<string>;
|
|
170
|
-
nrql?: pulumi.Input<string>;
|
|
171
|
-
orderBy?: pulumi.Input<string>;
|
|
172
|
-
rawMetricName?: pulumi.Input<string>;
|
|
173
|
-
row: pulumi.Input<number>;
|
|
174
|
-
source?: pulumi.Input<string>;
|
|
175
|
-
thresholdRed?: pulumi.Input<number>;
|
|
176
|
-
thresholdYellow?: pulumi.Input<number>;
|
|
177
|
-
title: pulumi.Input<string>;
|
|
178
|
-
visualization: pulumi.Input<string>;
|
|
179
|
-
widgetId?: pulumi.Input<number>;
|
|
180
|
-
width?: pulumi.Input<number>;
|
|
181
|
-
}
|
|
182
|
-
export interface DashboardWidgetCompareWith {
|
|
183
|
-
offsetDuration: pulumi.Input<string>;
|
|
184
|
-
presentation: pulumi.Input<inputs.DashboardWidgetCompareWithPresentation>;
|
|
185
|
-
}
|
|
186
|
-
export interface DashboardWidgetCompareWithPresentation {
|
|
187
|
-
color: pulumi.Input<string>;
|
|
188
|
-
name: pulumi.Input<string>;
|
|
189
|
-
}
|
|
190
|
-
export interface DashboardWidgetMetric {
|
|
191
|
-
name: pulumi.Input<string>;
|
|
192
|
-
scope?: pulumi.Input<string>;
|
|
193
|
-
units?: pulumi.Input<string>;
|
|
194
|
-
values?: pulumi.Input<pulumi.Input<string>[]>;
|
|
195
|
-
}
|
|
196
153
|
export interface EntityTagsTag {
|
|
197
154
|
/**
|
|
198
155
|
* The tag key.
|
|
@@ -222,136 +179,113 @@ export interface InfraAlertConditionWarning {
|
|
|
222
179
|
value?: pulumi.Input<number>;
|
|
223
180
|
}
|
|
224
181
|
export interface NotificationChannelProperty {
|
|
182
|
+
/**
|
|
183
|
+
* The notification property display value.
|
|
184
|
+
* *
|
|
185
|
+
* Each notification channel type supports a specific set of arguments for the `property` block:
|
|
186
|
+
*/
|
|
225
187
|
displayValue?: pulumi.Input<string>;
|
|
188
|
+
/**
|
|
189
|
+
* The notification property key.
|
|
190
|
+
*/
|
|
226
191
|
key: pulumi.Input<string>;
|
|
192
|
+
/**
|
|
193
|
+
* The notification property label.
|
|
194
|
+
*/
|
|
227
195
|
label?: pulumi.Input<string>;
|
|
196
|
+
/**
|
|
197
|
+
* The notification property value.
|
|
198
|
+
*/
|
|
228
199
|
value: pulumi.Input<string>;
|
|
229
200
|
}
|
|
201
|
+
export interface NotificationDestinationAuthBasic {
|
|
202
|
+
/**
|
|
203
|
+
* Specifies an authentication password for use with a destination.
|
|
204
|
+
*/
|
|
205
|
+
password: pulumi.Input<string>;
|
|
206
|
+
/**
|
|
207
|
+
* The username of the basic auth.
|
|
208
|
+
*/
|
|
209
|
+
user: pulumi.Input<string>;
|
|
210
|
+
}
|
|
211
|
+
export interface NotificationDestinationAuthToken {
|
|
212
|
+
/**
|
|
213
|
+
* The prefix of the token auth.
|
|
214
|
+
*/
|
|
215
|
+
prefix?: pulumi.Input<string>;
|
|
216
|
+
/**
|
|
217
|
+
* Specifies the token for integrating.
|
|
218
|
+
*/
|
|
219
|
+
token: pulumi.Input<string>;
|
|
220
|
+
}
|
|
230
221
|
export interface NotificationDestinationProperty {
|
|
222
|
+
/**
|
|
223
|
+
* The notification property display value.
|
|
224
|
+
*/
|
|
231
225
|
displayValue?: pulumi.Input<string>;
|
|
226
|
+
/**
|
|
227
|
+
* The notification property key.
|
|
228
|
+
*/
|
|
232
229
|
key: pulumi.Input<string>;
|
|
230
|
+
/**
|
|
231
|
+
* The notification property label.
|
|
232
|
+
*/
|
|
233
233
|
label?: pulumi.Input<string>;
|
|
234
|
+
/**
|
|
235
|
+
* The notification property value.
|
|
236
|
+
*/
|
|
234
237
|
value: pulumi.Input<string>;
|
|
235
238
|
}
|
|
236
239
|
export interface NrqlAlertConditionCritical {
|
|
237
240
|
/**
|
|
238
|
-
* **DEPRECATED:** Use `thresholdDuration` instead. The duration of time, in _minutes_, that the threshold must violate for in order to create a violation. Must be within 1-120 (inclusive).
|
|
239
|
-
*
|
|
240
241
|
* @deprecated use `threshold_duration` attribute instead
|
|
241
242
|
*/
|
|
242
243
|
duration?: pulumi.Input<number>;
|
|
243
|
-
/**
|
|
244
|
-
* Valid values are `above`, `below`, or `equals` (case insensitive). Defaults to `equals`. Note that when using a `type` of `outlier` or `baseline`, the only valid option here is `above`.
|
|
245
|
-
*/
|
|
246
244
|
operator?: pulumi.Input<string>;
|
|
247
|
-
/**
|
|
248
|
-
* The value which will trigger a violation. Must be `0` or greater.
|
|
249
|
-
*/
|
|
250
245
|
threshold: pulumi.Input<number>;
|
|
251
|
-
/**
|
|
252
|
-
* The duration, in seconds, that the threshold must violate in order to create a violation. Value must be a multiple of the `aggregationWindow` (which has a default of 60 seconds).
|
|
253
|
-
* <br>For _baseline_ and _outlier_ NRQL alert conditions, the value must be within 120-3600 seconds (inclusive).
|
|
254
|
-
* <br>For _static_ NRQL alert conditions with the `sum` value function, the value must be within 120-7200 seconds (inclusive).
|
|
255
|
-
* <br>For _static_ NRQL alert conditions with the `singleValue` value function, the value must be within 60-7200 seconds (inclusive).
|
|
256
|
-
*/
|
|
257
246
|
thresholdDuration?: pulumi.Input<number>;
|
|
258
|
-
/**
|
|
259
|
-
* The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: `all` or `atLeastOnce` (case insensitive).
|
|
260
|
-
*/
|
|
261
247
|
thresholdOccurrences?: pulumi.Input<string>;
|
|
262
248
|
/**
|
|
263
|
-
* **DEPRECATED:** Use `thresholdOccurrences` instead. The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: `all` or `any`.
|
|
264
|
-
*
|
|
265
249
|
* @deprecated use `threshold_occurrences` attribute instead
|
|
266
250
|
*/
|
|
267
251
|
timeFunction?: pulumi.Input<string>;
|
|
268
252
|
}
|
|
269
253
|
export interface NrqlAlertConditionNrql {
|
|
270
254
|
/**
|
|
271
|
-
* Represented in minutes and must be within 1-20 minutes (inclusive). NRQL queries are evaluated in one-minute time windows. The start time depends on this value. It's recommended to set this to 3 minutes. An offset of less than 3 minutes will trigger violations sooner, but you may see more false positives and negatives due to data latency. With `evaluationOffset` set to 3 minutes, the NRQL time window applied to your query will be: `SINCE 3 minutes ago UNTIL 2 minutes ago`.<br>
|
|
272
|
-
* <small>\***Note**: One of `evaluationOffset` _or_ `sinceValue` must be set, but not both.</small>
|
|
273
|
-
*
|
|
274
255
|
* @deprecated use `aggregation_method` attribute instead
|
|
275
256
|
*/
|
|
276
257
|
evaluationOffset?: pulumi.Input<number>;
|
|
277
|
-
/**
|
|
278
|
-
* The NRQL query to execute for the condition.
|
|
279
|
-
*/
|
|
280
258
|
query: pulumi.Input<string>;
|
|
281
259
|
/**
|
|
282
|
-
* **DEPRECATED:** Use `evaluationOffset` instead. The value to be used in the `SINCE <X> minutes ago` clause for the NRQL query. Must be between 1-20 (inclusive). <br>
|
|
283
|
-
* <small>\***Note**: One of `evaluationOffset` _or_ `sinceValue` must be set, but not both.</small>
|
|
284
|
-
*
|
|
285
260
|
* @deprecated use `aggregation_method` attribute instead
|
|
286
261
|
*/
|
|
287
262
|
sinceValue?: pulumi.Input<string>;
|
|
288
263
|
}
|
|
289
264
|
export interface NrqlAlertConditionTerm {
|
|
290
265
|
/**
|
|
291
|
-
* **DEPRECATED:** Use `thresholdDuration` instead. The duration of time, in _minutes_, that the threshold must violate for in order to create a violation. Must be within 1-120 (inclusive).
|
|
292
|
-
*
|
|
293
266
|
* @deprecated use `threshold_duration` attribute instead
|
|
294
267
|
*/
|
|
295
268
|
duration?: pulumi.Input<number>;
|
|
296
|
-
/**
|
|
297
|
-
* Valid values are `above`, `below`, or `equals` (case insensitive). Defaults to `equals`. Note that when using a `type` of `outlier` or `baseline`, the only valid option here is `above`.
|
|
298
|
-
*/
|
|
299
269
|
operator?: pulumi.Input<string>;
|
|
300
|
-
/**
|
|
301
|
-
* `critical` or `warning`. Defaults to `critical`.
|
|
302
|
-
*/
|
|
303
270
|
priority?: pulumi.Input<string>;
|
|
304
|
-
/**
|
|
305
|
-
* The value which will trigger a violation. Must be `0` or greater.
|
|
306
|
-
*/
|
|
307
271
|
threshold: pulumi.Input<number>;
|
|
308
|
-
/**
|
|
309
|
-
* The duration, in seconds, that the threshold must violate in order to create a violation. Value must be a multiple of the `aggregationWindow` (which has a default of 60 seconds).
|
|
310
|
-
* <br>For _baseline_ and _outlier_ NRQL alert conditions, the value must be within 120-3600 seconds (inclusive).
|
|
311
|
-
* <br>For _static_ NRQL alert conditions with the `sum` value function, the value must be within 120-7200 seconds (inclusive).
|
|
312
|
-
* <br>For _static_ NRQL alert conditions with the `singleValue` value function, the value must be within 60-7200 seconds (inclusive).
|
|
313
|
-
*/
|
|
314
272
|
thresholdDuration?: pulumi.Input<number>;
|
|
315
|
-
/**
|
|
316
|
-
* The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: `all` or `atLeastOnce` (case insensitive).
|
|
317
|
-
*/
|
|
318
273
|
thresholdOccurrences?: pulumi.Input<string>;
|
|
319
274
|
/**
|
|
320
|
-
* **DEPRECATED:** Use `thresholdOccurrences` instead. The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: `all` or `any`.
|
|
321
|
-
*
|
|
322
275
|
* @deprecated use `threshold_occurrences` attribute instead
|
|
323
276
|
*/
|
|
324
277
|
timeFunction?: pulumi.Input<string>;
|
|
325
278
|
}
|
|
326
279
|
export interface NrqlAlertConditionWarning {
|
|
327
280
|
/**
|
|
328
|
-
* **DEPRECATED:** Use `thresholdDuration` instead. The duration of time, in _minutes_, that the threshold must violate for in order to create a violation. Must be within 1-120 (inclusive).
|
|
329
|
-
*
|
|
330
281
|
* @deprecated use `threshold_duration` attribute instead
|
|
331
282
|
*/
|
|
332
283
|
duration?: pulumi.Input<number>;
|
|
333
|
-
/**
|
|
334
|
-
* Valid values are `above`, `below`, or `equals` (case insensitive). Defaults to `equals`. Note that when using a `type` of `outlier` or `baseline`, the only valid option here is `above`.
|
|
335
|
-
*/
|
|
336
284
|
operator?: pulumi.Input<string>;
|
|
337
|
-
/**
|
|
338
|
-
* The value which will trigger a violation. Must be `0` or greater.
|
|
339
|
-
*/
|
|
340
285
|
threshold: pulumi.Input<number>;
|
|
341
|
-
/**
|
|
342
|
-
* The duration, in seconds, that the threshold must violate in order to create a violation. Value must be a multiple of the `aggregationWindow` (which has a default of 60 seconds).
|
|
343
|
-
* <br>For _baseline_ and _outlier_ NRQL alert conditions, the value must be within 120-3600 seconds (inclusive).
|
|
344
|
-
* <br>For _static_ NRQL alert conditions with the `sum` value function, the value must be within 120-7200 seconds (inclusive).
|
|
345
|
-
* <br>For _static_ NRQL alert conditions with the `singleValue` value function, the value must be within 60-7200 seconds (inclusive).
|
|
346
|
-
*/
|
|
347
286
|
thresholdDuration?: pulumi.Input<number>;
|
|
348
|
-
/**
|
|
349
|
-
* The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: `all` or `atLeastOnce` (case insensitive).
|
|
350
|
-
*/
|
|
351
287
|
thresholdOccurrences?: pulumi.Input<string>;
|
|
352
288
|
/**
|
|
353
|
-
* **DEPRECATED:** Use `thresholdOccurrences` instead. The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: `all` or `any`.
|
|
354
|
-
*
|
|
355
289
|
* @deprecated use `threshold_occurrences` attribute instead
|
|
356
290
|
*/
|
|
357
291
|
timeFunction?: pulumi.Input<string>;
|
|
@@ -1179,6 +1113,74 @@ export interface ServiceLevelObjectiveTimeWindowRolling {
|
|
|
1179
1113
|
*/
|
|
1180
1114
|
unit: pulumi.Input<string>;
|
|
1181
1115
|
}
|
|
1116
|
+
export interface WorkflowDestinationConfiguration {
|
|
1117
|
+
channelId: pulumi.Input<string>;
|
|
1118
|
+
/**
|
|
1119
|
+
* A nrql enrichment name.
|
|
1120
|
+
*/
|
|
1121
|
+
name?: pulumi.Input<string>;
|
|
1122
|
+
/**
|
|
1123
|
+
* the filter's type. One of: `FILTER` or `VIEW`.
|
|
1124
|
+
* * `predicates`
|
|
1125
|
+
*/
|
|
1126
|
+
type?: pulumi.Input<string>;
|
|
1127
|
+
}
|
|
1128
|
+
export interface WorkflowEnrichments {
|
|
1129
|
+
nrqls: pulumi.Input<pulumi.Input<inputs.WorkflowEnrichmentsNrql>[]>;
|
|
1130
|
+
}
|
|
1131
|
+
export interface WorkflowEnrichmentsNrql {
|
|
1132
|
+
/**
|
|
1133
|
+
* Determines the New Relic account where the workflow will be created. Defaults to the account associated with the API key used.
|
|
1134
|
+
*/
|
|
1135
|
+
accountId?: pulumi.Input<number>;
|
|
1136
|
+
/**
|
|
1137
|
+
* A list of nrql enrichments.
|
|
1138
|
+
*/
|
|
1139
|
+
configurations: pulumi.Input<pulumi.Input<inputs.WorkflowEnrichmentsNrqlConfiguration>[]>;
|
|
1140
|
+
enrichmentId?: pulumi.Input<string>;
|
|
1141
|
+
/**
|
|
1142
|
+
* A nrql enrichment name.
|
|
1143
|
+
*/
|
|
1144
|
+
name: pulumi.Input<string>;
|
|
1145
|
+
/**
|
|
1146
|
+
* the filter's type. One of: `FILTER` or `VIEW`.
|
|
1147
|
+
* * `predicates`
|
|
1148
|
+
*/
|
|
1149
|
+
type?: pulumi.Input<string>;
|
|
1150
|
+
}
|
|
1151
|
+
export interface WorkflowEnrichmentsNrqlConfiguration {
|
|
1152
|
+
/**
|
|
1153
|
+
* the nrql query.
|
|
1154
|
+
*/
|
|
1155
|
+
query: pulumi.Input<string>;
|
|
1156
|
+
}
|
|
1157
|
+
export interface WorkflowIssuesFilter {
|
|
1158
|
+
filterId?: pulumi.Input<string>;
|
|
1159
|
+
/**
|
|
1160
|
+
* A nrql enrichment name.
|
|
1161
|
+
*/
|
|
1162
|
+
name: pulumi.Input<string>;
|
|
1163
|
+
predicates?: pulumi.Input<pulumi.Input<inputs.WorkflowIssuesFilterPredicate>[]>;
|
|
1164
|
+
/**
|
|
1165
|
+
* the filter's type. One of: `FILTER` or `VIEW`.
|
|
1166
|
+
* * `predicates`
|
|
1167
|
+
*/
|
|
1168
|
+
type: pulumi.Input<string>;
|
|
1169
|
+
}
|
|
1170
|
+
export interface WorkflowIssuesFilterPredicate {
|
|
1171
|
+
/**
|
|
1172
|
+
* A predicates attribute.
|
|
1173
|
+
*/
|
|
1174
|
+
attribute: pulumi.Input<string>;
|
|
1175
|
+
/**
|
|
1176
|
+
* A predicates operator. One of: `CONTAINS`, `DOES_NOT_CONTAIN`, `DOES_NOT_EQUAL`, `DOES_NOT_EXACTLY_MATCH`, `ENDS_WITH`, `EQUAL`, `EXACTLY_MATCHES`, `GREATER_OR_EQUAL`, `GREATER_THAN`, `IS`, `IS_NOT`, `LESS_OR_EQUAL`, `LESS_THAN` or `STARTS_WITH` (workflows).
|
|
1177
|
+
*/
|
|
1178
|
+
operator: pulumi.Input<string>;
|
|
1179
|
+
/**
|
|
1180
|
+
* A list of values.
|
|
1181
|
+
*/
|
|
1182
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
1183
|
+
}
|
|
1182
1184
|
export declare namespace cloud {
|
|
1183
1185
|
interface AwsGovcloudIntegrationsAlb {
|
|
1184
1186
|
/**
|
|
@@ -1821,12 +1823,24 @@ export declare namespace cloud {
|
|
|
1821
1823
|
*/
|
|
1822
1824
|
metricsPollingInterval?: pulumi.Input<number>;
|
|
1823
1825
|
}
|
|
1826
|
+
interface AwsIntegrationsDocDb {
|
|
1827
|
+
/**
|
|
1828
|
+
* The data polling interval in seconds.
|
|
1829
|
+
*/
|
|
1830
|
+
metricsPollingInterval?: pulumi.Input<number>;
|
|
1831
|
+
}
|
|
1824
1832
|
interface AwsIntegrationsHealth {
|
|
1825
1833
|
/**
|
|
1826
1834
|
* The data polling interval in seconds.
|
|
1827
1835
|
*/
|
|
1828
1836
|
metricsPollingInterval?: pulumi.Input<number>;
|
|
1829
1837
|
}
|
|
1838
|
+
interface AwsIntegrationsS3 {
|
|
1839
|
+
/**
|
|
1840
|
+
* The data polling interval in seconds.
|
|
1841
|
+
*/
|
|
1842
|
+
metricsPollingInterval?: pulumi.Input<number>;
|
|
1843
|
+
}
|
|
1830
1844
|
interface AwsIntegrationsTrustedAdvisor {
|
|
1831
1845
|
/**
|
|
1832
1846
|
* The data polling interval in seconds.
|
|
@@ -2342,13 +2356,6 @@ export declare namespace insights {
|
|
|
2342
2356
|
}
|
|
2343
2357
|
}
|
|
2344
2358
|
export declare namespace plugins {
|
|
2345
|
-
interface AlertConditionTerm {
|
|
2346
|
-
duration: pulumi.Input<number>;
|
|
2347
|
-
operator?: pulumi.Input<string>;
|
|
2348
|
-
priority?: pulumi.Input<string>;
|
|
2349
|
-
threshold: pulumi.Input<number>;
|
|
2350
|
-
timeFunction: pulumi.Input<string>;
|
|
2351
|
-
}
|
|
2352
2359
|
interface WorkloadEntitySearchQuery {
|
|
2353
2360
|
/**
|
|
2354
2361
|
* The query.
|
|
@@ -2357,19 +2364,45 @@ export declare namespace plugins {
|
|
|
2357
2364
|
}
|
|
2358
2365
|
}
|
|
2359
2366
|
export declare namespace synthetics {
|
|
2360
|
-
interface
|
|
2367
|
+
interface BrokenLinksMonitorTag {
|
|
2361
2368
|
/**
|
|
2362
|
-
*
|
|
2369
|
+
* Name of the tag key.
|
|
2363
2370
|
*/
|
|
2364
|
-
|
|
2371
|
+
key: pulumi.Input<string>;
|
|
2365
2372
|
/**
|
|
2366
|
-
*
|
|
2373
|
+
* Values associated with the tag key.
|
|
2367
2374
|
*/
|
|
2368
|
-
|
|
2375
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
2376
|
+
}
|
|
2377
|
+
interface CertCheckMonitorTag {
|
|
2369
2378
|
/**
|
|
2370
|
-
*
|
|
2379
|
+
* Name of the tag key.
|
|
2371
2380
|
*/
|
|
2372
|
-
|
|
2381
|
+
key: pulumi.Input<string>;
|
|
2382
|
+
/**
|
|
2383
|
+
* Values associated with the tag key.
|
|
2384
|
+
*/
|
|
2385
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
2386
|
+
}
|
|
2387
|
+
interface MonitorCustomHeader {
|
|
2388
|
+
/**
|
|
2389
|
+
* Header name.
|
|
2390
|
+
*/
|
|
2391
|
+
name?: pulumi.Input<string>;
|
|
2392
|
+
/**
|
|
2393
|
+
* Header Value.
|
|
2394
|
+
*/
|
|
2395
|
+
value?: pulumi.Input<string>;
|
|
2396
|
+
}
|
|
2397
|
+
interface MonitorTag {
|
|
2398
|
+
/**
|
|
2399
|
+
* Name of the tag key.
|
|
2400
|
+
*/
|
|
2401
|
+
key: pulumi.Input<string>;
|
|
2402
|
+
/**
|
|
2403
|
+
* Values associated with the tag key.
|
|
2404
|
+
*/
|
|
2405
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
2373
2406
|
}
|
|
2374
2407
|
interface MultiLocationAlertConditionCritical {
|
|
2375
2408
|
threshold: pulumi.Input<number>;
|
|
@@ -2377,4 +2410,58 @@ export declare namespace synthetics {
|
|
|
2377
2410
|
interface MultiLocationAlertConditionWarning {
|
|
2378
2411
|
threshold: pulumi.Input<number>;
|
|
2379
2412
|
}
|
|
2413
|
+
interface ScriptMonitorLocationPrivate {
|
|
2414
|
+
/**
|
|
2415
|
+
* The unique identifier for the Synthetics private location in New Relic.
|
|
2416
|
+
*/
|
|
2417
|
+
guid: pulumi.Input<string>;
|
|
2418
|
+
/**
|
|
2419
|
+
* The location's Verified Script Execution password, Only necessary if Verified Script Execution is enabled for the location.
|
|
2420
|
+
*/
|
|
2421
|
+
vsePassword?: pulumi.Input<string>;
|
|
2422
|
+
}
|
|
2423
|
+
interface ScriptMonitorTag {
|
|
2424
|
+
/**
|
|
2425
|
+
* Name of the tag key.
|
|
2426
|
+
*/
|
|
2427
|
+
key: pulumi.Input<string>;
|
|
2428
|
+
/**
|
|
2429
|
+
* Values associated with the tag key.
|
|
2430
|
+
*/
|
|
2431
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
2432
|
+
}
|
|
2433
|
+
interface StepMonitorLocationPrivate {
|
|
2434
|
+
/**
|
|
2435
|
+
* The unique identifier for the Synthetics private location in New Relic.
|
|
2436
|
+
*/
|
|
2437
|
+
guid: pulumi.Input<string>;
|
|
2438
|
+
/**
|
|
2439
|
+
* The location's Verified Script Execution password, Only necessary if Verified Script Execution is enabled for the location.
|
|
2440
|
+
*/
|
|
2441
|
+
vsePassword?: pulumi.Input<string>;
|
|
2442
|
+
}
|
|
2443
|
+
interface StepMonitorStep {
|
|
2444
|
+
/**
|
|
2445
|
+
* The position of the step within the script ranging from 0-100.
|
|
2446
|
+
*/
|
|
2447
|
+
ordinal: pulumi.Input<number>;
|
|
2448
|
+
/**
|
|
2449
|
+
* Name of the tag key.
|
|
2450
|
+
*/
|
|
2451
|
+
type: pulumi.Input<string>;
|
|
2452
|
+
/**
|
|
2453
|
+
* The metadata values related to the step. valid values are ASSERT_ELEMENT, ASSERT_MODAL, ASSERT_TEXT, ASSERT_TITLE, CLICK_ELEMENT, DISMISS_MODAL, DOUBLE_CLICK_ELEMENT, HOVER_ELEMENT, NAVIGATE, SECURE_TEXT_ENTRY, SELECT_ELEMENT, TEXT_ENTRY.
|
|
2454
|
+
*/
|
|
2455
|
+
values?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2456
|
+
}
|
|
2457
|
+
interface StepMonitorTag {
|
|
2458
|
+
/**
|
|
2459
|
+
* Name of the tag key.
|
|
2460
|
+
*/
|
|
2461
|
+
key: pulumi.Input<string>;
|
|
2462
|
+
/**
|
|
2463
|
+
* Values associated with the tag key.
|
|
2464
|
+
*/
|
|
2465
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
2466
|
+
}
|
|
2380
2467
|
}
|