@pulumi/newrelic 5.57.0 → 5.57.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/package.json +2 -2
- package/types/input.d.ts +4 -0
- package/types/output.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/newrelic",
|
|
3
|
-
"version": "5.57.
|
|
3
|
+
"version": "5.57.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing New Relic resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "newrelic",
|
|
26
|
-
"version": "5.57.
|
|
26
|
+
"version": "5.57.1"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -3255,6 +3255,10 @@ export interface OneDashboardVariableOption {
|
|
|
3255
3255
|
* (Optional) An argument with a boolean value that is supported only by variables of `type` _nrql_ - when true, the time range specified in the query will override the time picker on dashboards and other pages.
|
|
3256
3256
|
*/
|
|
3257
3257
|
ignoreTimeRange?: pulumi.Input<boolean>;
|
|
3258
|
+
/**
|
|
3259
|
+
* (Optional) When multi-selection is enabled (`isMultiSelection = true`), displays an "Apply" button that allows users to confirm and apply their selected values to the dashboard.
|
|
3260
|
+
*/
|
|
3261
|
+
showApplyAction?: pulumi.Input<boolean>;
|
|
3258
3262
|
}
|
|
3259
3263
|
export interface ServiceLevelEvents {
|
|
3260
3264
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -3309,6 +3309,10 @@ export interface OneDashboardVariableOption {
|
|
|
3309
3309
|
* (Optional) An argument with a boolean value that is supported only by variables of `type` _nrql_ - when true, the time range specified in the query will override the time picker on dashboards and other pages.
|
|
3310
3310
|
*/
|
|
3311
3311
|
ignoreTimeRange?: boolean;
|
|
3312
|
+
/**
|
|
3313
|
+
* (Optional) When multi-selection is enabled (`isMultiSelection = true`), displays an "Apply" button that allows users to confirm and apply their selected values to the dashboard.
|
|
3314
|
+
*/
|
|
3315
|
+
showApplyAction?: boolean;
|
|
3312
3316
|
}
|
|
3313
3317
|
export interface ServiceLevelEvents {
|
|
3314
3318
|
/**
|