pulumi-newrelic 5.21.0a1711028079__py3-none-any.whl → 5.22.0__py3-none-any.whl
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.
- pulumi_newrelic/_inputs.py +69 -29
- pulumi_newrelic/browser_application.py +62 -68
- pulumi_newrelic/get_notification_destination.py +14 -1
- pulumi_newrelic/notification_destination.py +28 -0
- pulumi_newrelic/outputs.py +78 -29
- pulumi_newrelic/plugins/_inputs.py +2 -2
- pulumi_newrelic/plugins/outputs.py +2 -2
- pulumi_newrelic/synthetics/broken_links_monitor.py +131 -33
- pulumi_newrelic/synthetics/cert_check_monitor.py +135 -35
- pulumi_newrelic/synthetics/monitor.py +7 -21
- pulumi_newrelic/synthetics/script_monitor.py +7 -21
- pulumi_newrelic/synthetics/step_monitor.py +189 -25
- {pulumi_newrelic-5.21.0a1711028079.dist-info → pulumi_newrelic-5.22.0.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.21.0a1711028079.dist-info → pulumi_newrelic-5.22.0.dist-info}/RECORD +16 -16
- {pulumi_newrelic-5.21.0a1711028079.dist-info → pulumi_newrelic-5.22.0.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.21.0a1711028079.dist-info → pulumi_newrelic-5.22.0.dist-info}/top_level.txt +0 -0
pulumi_newrelic/_inputs.py
CHANGED
@@ -147,6 +147,7 @@ __all__ = [
|
|
147
147
|
'OneDashboardVariableArgs',
|
148
148
|
'OneDashboardVariableItemArgs',
|
149
149
|
'OneDashboardVariableNrqlQueryArgs',
|
150
|
+
'OneDashboardVariableOptionArgs',
|
150
151
|
'ServiceLevelEventsArgs',
|
151
152
|
'ServiceLevelEventsBadEventsArgs',
|
152
153
|
'ServiceLevelEventsBadEventsSelectArgs',
|
@@ -2034,7 +2035,7 @@ class OneDashboardPageWidgetAreaArgs:
|
|
2034
2035
|
:param pulumi.Input[bool] facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
2035
2036
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
2036
2037
|
:param pulumi.Input[str] id: The ID of the widget.
|
2037
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
2038
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
2038
2039
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
2039
2040
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
2040
2041
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -2168,7 +2169,7 @@ class OneDashboardPageWidgetAreaArgs:
|
|
2168
2169
|
@pulumi.getter(name="ignoreTimeRange")
|
2169
2170
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
2170
2171
|
"""
|
2171
|
-
(Optional)
|
2172
|
+
(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.
|
2172
2173
|
"""
|
2173
2174
|
return pulumi.get(self, "ignore_time_range")
|
2174
2175
|
|
@@ -2548,7 +2549,7 @@ class OneDashboardPageWidgetBarArgs:
|
|
2548
2549
|
:param pulumi.Input[bool] filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
2549
2550
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
2550
2551
|
:param pulumi.Input[str] id: The ID of the widget.
|
2551
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
2552
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
2552
2553
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
2553
2554
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
2554
2555
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBarNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -2699,7 +2700,7 @@ class OneDashboardPageWidgetBarArgs:
|
|
2699
2700
|
@pulumi.getter(name="ignoreTimeRange")
|
2700
2701
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
2701
2702
|
"""
|
2702
|
-
(Optional)
|
2703
|
+
(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.
|
2703
2704
|
"""
|
2704
2705
|
return pulumi.get(self, "ignore_time_range")
|
2705
2706
|
|
@@ -3091,7 +3092,7 @@ class OneDashboardPageWidgetBillboardArgs:
|
|
3091
3092
|
:param pulumi.Input[bool] facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
3092
3093
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
3093
3094
|
:param pulumi.Input[str] id: The ID of the widget.
|
3094
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
3095
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
3095
3096
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
3096
3097
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBillboardNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
3097
3098
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBillboardUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -3242,7 +3243,7 @@ class OneDashboardPageWidgetBillboardArgs:
|
|
3242
3243
|
@pulumi.getter(name="ignoreTimeRange")
|
3243
3244
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
3244
3245
|
"""
|
3245
|
-
(Optional)
|
3246
|
+
(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.
|
3246
3247
|
"""
|
3247
3248
|
return pulumi.get(self, "ignore_time_range")
|
3248
3249
|
|
@@ -3633,7 +3634,7 @@ class OneDashboardPageWidgetBulletArgs:
|
|
3633
3634
|
:param pulumi.Input[bool] facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
3634
3635
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
3635
3636
|
:param pulumi.Input[str] id: The ID of the widget.
|
3636
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
3637
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
3637
3638
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
3638
3639
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBulletNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
3639
3640
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBulletUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -3780,7 +3781,7 @@ class OneDashboardPageWidgetBulletArgs:
|
|
3780
3781
|
@pulumi.getter(name="ignoreTimeRange")
|
3781
3782
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
3782
3783
|
"""
|
3783
|
-
(Optional)
|
3784
|
+
(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.
|
3784
3785
|
"""
|
3785
3786
|
return pulumi.get(self, "ignore_time_range")
|
3786
3787
|
|
@@ -4157,7 +4158,7 @@ class OneDashboardPageWidgetFunnelArgs:
|
|
4157
4158
|
:param pulumi.Input[bool] facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
4158
4159
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
4159
4160
|
:param pulumi.Input[str] id: The ID of the widget.
|
4160
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
4161
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
4161
4162
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
4162
4163
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetFunnelNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
4163
4164
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetFunnelUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -4291,7 +4292,7 @@ class OneDashboardPageWidgetFunnelArgs:
|
|
4291
4292
|
@pulumi.getter(name="ignoreTimeRange")
|
4292
4293
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
4293
4294
|
"""
|
4294
|
-
(Optional)
|
4295
|
+
(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.
|
4295
4296
|
"""
|
4296
4297
|
return pulumi.get(self, "ignore_time_range")
|
4297
4298
|
|
@@ -4671,7 +4672,7 @@ class OneDashboardPageWidgetHeatmapArgs:
|
|
4671
4672
|
:param pulumi.Input[bool] filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
4672
4673
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
4673
4674
|
:param pulumi.Input[str] id: The ID of the widget.
|
4674
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
4675
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
4675
4676
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
4676
4677
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
4677
4678
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetHeatmapNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -4822,7 +4823,7 @@ class OneDashboardPageWidgetHeatmapArgs:
|
|
4822
4823
|
@pulumi.getter(name="ignoreTimeRange")
|
4823
4824
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
4824
4825
|
"""
|
4825
|
-
(Optional)
|
4826
|
+
(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.
|
4826
4827
|
"""
|
4827
4828
|
return pulumi.get(self, "ignore_time_range")
|
4828
4829
|
|
@@ -5211,7 +5212,7 @@ class OneDashboardPageWidgetHistogramArgs:
|
|
5211
5212
|
:param pulumi.Input[bool] facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
5212
5213
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
5213
5214
|
:param pulumi.Input[str] id: The ID of the widget.
|
5214
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
5215
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
5215
5216
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
5216
5217
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetHistogramNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
5217
5218
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetHistogramUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -5345,7 +5346,7 @@ class OneDashboardPageWidgetHistogramArgs:
|
|
5345
5346
|
@pulumi.getter(name="ignoreTimeRange")
|
5346
5347
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
5347
5348
|
"""
|
5348
|
-
(Optional)
|
5349
|
+
(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.
|
5349
5350
|
"""
|
5350
5351
|
return pulumi.get(self, "ignore_time_range")
|
5351
5352
|
|
@@ -5722,7 +5723,7 @@ class OneDashboardPageWidgetJsonArgs:
|
|
5722
5723
|
:param pulumi.Input[bool] facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
5723
5724
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
5724
5725
|
:param pulumi.Input[str] id: The ID of the widget.
|
5725
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
5726
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
5726
5727
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
5727
5728
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetJsonNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
5728
5729
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetJsonUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -5856,7 +5857,7 @@ class OneDashboardPageWidgetJsonArgs:
|
|
5856
5857
|
@pulumi.getter(name="ignoreTimeRange")
|
5857
5858
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
5858
5859
|
"""
|
5859
|
-
(Optional)
|
5860
|
+
(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.
|
5860
5861
|
"""
|
5861
5862
|
return pulumi.get(self, "ignore_time_range")
|
5862
5863
|
|
@@ -6234,7 +6235,7 @@ class OneDashboardPageWidgetLineArgs:
|
|
6234
6235
|
:param pulumi.Input[bool] facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
6235
6236
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
6236
6237
|
:param pulumi.Input[str] id: The ID of the widget.
|
6237
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
6238
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
6238
6239
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
6239
6240
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
6240
6241
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -6371,7 +6372,7 @@ class OneDashboardPageWidgetLineArgs:
|
|
6371
6372
|
@pulumi.getter(name="ignoreTimeRange")
|
6372
6373
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
6373
6374
|
"""
|
6374
|
-
(Optional)
|
6375
|
+
(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.
|
6375
6376
|
"""
|
6376
6377
|
return pulumi.get(self, "ignore_time_range")
|
6377
6378
|
|
@@ -6760,7 +6761,7 @@ class OneDashboardPageWidgetLogTableArgs:
|
|
6760
6761
|
:param pulumi.Input[bool] facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
6761
6762
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
6762
6763
|
:param pulumi.Input[str] id: The ID of the widget.
|
6763
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
6764
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
6764
6765
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
6765
6766
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLogTableNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
6766
6767
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLogTableUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -6894,7 +6895,7 @@ class OneDashboardPageWidgetLogTableArgs:
|
|
6894
6895
|
@pulumi.getter(name="ignoreTimeRange")
|
6895
6896
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
6896
6897
|
"""
|
6897
|
-
(Optional)
|
6898
|
+
(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.
|
6898
6899
|
"""
|
6899
6900
|
return pulumi.get(self, "ignore_time_range")
|
6900
6901
|
|
@@ -7271,7 +7272,7 @@ class OneDashboardPageWidgetMarkdownArgs:
|
|
7271
7272
|
:param pulumi.Input[bool] facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
7272
7273
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
7273
7274
|
:param pulumi.Input[str] id: The ID of the widget.
|
7274
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
7275
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
7275
7276
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
7276
7277
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetMarkdownNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
7277
7278
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetMarkdownUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -7405,7 +7406,7 @@ class OneDashboardPageWidgetMarkdownArgs:
|
|
7405
7406
|
@pulumi.getter(name="ignoreTimeRange")
|
7406
7407
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
7407
7408
|
"""
|
7408
|
-
(Optional)
|
7409
|
+
(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.
|
7409
7410
|
"""
|
7410
7411
|
return pulumi.get(self, "ignore_time_range")
|
7411
7412
|
|
@@ -7747,7 +7748,7 @@ class OneDashboardPageWidgetPyArgs:
|
|
7747
7748
|
:param pulumi.Input[bool] filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
7748
7749
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
7749
7750
|
:param pulumi.Input[str] id: The ID of the widget.
|
7750
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
7751
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
7751
7752
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
7752
7753
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
7753
7754
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetPyNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -7898,7 +7899,7 @@ class OneDashboardPageWidgetPyArgs:
|
|
7898
7899
|
@pulumi.getter(name="ignoreTimeRange")
|
7899
7900
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
7900
7901
|
"""
|
7901
|
-
(Optional)
|
7902
|
+
(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.
|
7902
7903
|
"""
|
7903
7904
|
return pulumi.get(self, "ignore_time_range")
|
7904
7905
|
|
@@ -8287,7 +8288,7 @@ class OneDashboardPageWidgetStackedBarArgs:
|
|
8287
8288
|
:param pulumi.Input[bool] facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
8288
8289
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
8289
8290
|
:param pulumi.Input[str] id: The ID of the widget.
|
8290
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
8291
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
8291
8292
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
8292
8293
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
8293
8294
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -8421,7 +8422,7 @@ class OneDashboardPageWidgetStackedBarArgs:
|
|
8421
8422
|
@pulumi.getter(name="ignoreTimeRange")
|
8422
8423
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
8423
8424
|
"""
|
8424
|
-
(Optional)
|
8425
|
+
(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.
|
8425
8426
|
"""
|
8426
8427
|
return pulumi.get(self, "ignore_time_range")
|
8427
8428
|
|
@@ -8801,7 +8802,7 @@ class OneDashboardPageWidgetTableArgs:
|
|
8801
8802
|
:param pulumi.Input[bool] filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
8802
8803
|
:param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
8803
8804
|
:param pulumi.Input[str] id: The ID of the widget.
|
8804
|
-
:param pulumi.Input[bool] ignore_time_range: (Optional)
|
8805
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
8805
8806
|
:param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
8806
8807
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
8807
8808
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -8952,7 +8953,7 @@ class OneDashboardPageWidgetTableArgs:
|
|
8952
8953
|
@pulumi.getter(name="ignoreTimeRange")
|
8953
8954
|
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
8954
8955
|
"""
|
8955
|
-
(Optional)
|
8956
|
+
(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.
|
8956
8957
|
"""
|
8957
8958
|
return pulumi.get(self, "ignore_time_range")
|
8958
8959
|
|
@@ -9540,7 +9541,8 @@ class OneDashboardVariableArgs:
|
|
9540
9541
|
default_values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
9541
9542
|
is_multi_selection: Optional[pulumi.Input[bool]] = None,
|
9542
9543
|
items: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableItemArgs']]]] = None,
|
9543
|
-
nrql_query: Optional[pulumi.Input['OneDashboardVariableNrqlQueryArgs']] = None
|
9544
|
+
nrql_query: Optional[pulumi.Input['OneDashboardVariableNrqlQueryArgs']] = None,
|
9545
|
+
options: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableOptionArgs']]]] = None):
|
9544
9546
|
"""
|
9545
9547
|
:param pulumi.Input[str] name: The title of the dashboard.
|
9546
9548
|
:param pulumi.Input[str] replacement_strategy: (Optional) Indicates the strategy to apply when replacing a variable in a NRQL query. One of `default`, `identifier`, `number` or `string`.
|
@@ -9550,6 +9552,7 @@ class OneDashboardVariableArgs:
|
|
9550
9552
|
:param pulumi.Input[bool] is_multi_selection: (Optional) Indicates whether this variable supports multiple selection or not. Only applies to variables of type `nrql` or `enum`.
|
9551
9553
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableItemArgs']]] items: (Optional) List of possible values for variables of type `enum`. See Nested item blocks below for details.
|
9552
9554
|
:param pulumi.Input['OneDashboardVariableNrqlQueryArgs'] nrql_query: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
9555
|
+
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableOptionArgs']]] options: (Optional) Specifies additional options to be added to dashboard variables. Supports the following nested attribute(s) -
|
9553
9556
|
"""
|
9554
9557
|
pulumi.set(__self__, "name", name)
|
9555
9558
|
pulumi.set(__self__, "replacement_strategy", replacement_strategy)
|
@@ -9563,6 +9566,8 @@ class OneDashboardVariableArgs:
|
|
9563
9566
|
pulumi.set(__self__, "items", items)
|
9564
9567
|
if nrql_query is not None:
|
9565
9568
|
pulumi.set(__self__, "nrql_query", nrql_query)
|
9569
|
+
if options is not None:
|
9570
|
+
pulumi.set(__self__, "options", options)
|
9566
9571
|
|
9567
9572
|
@property
|
9568
9573
|
@pulumi.getter
|
@@ -9660,6 +9665,18 @@ class OneDashboardVariableArgs:
|
|
9660
9665
|
def nrql_query(self, value: Optional[pulumi.Input['OneDashboardVariableNrqlQueryArgs']]):
|
9661
9666
|
pulumi.set(self, "nrql_query", value)
|
9662
9667
|
|
9668
|
+
@property
|
9669
|
+
@pulumi.getter
|
9670
|
+
def options(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableOptionArgs']]]]:
|
9671
|
+
"""
|
9672
|
+
(Optional) Specifies additional options to be added to dashboard variables. Supports the following nested attribute(s) -
|
9673
|
+
"""
|
9674
|
+
return pulumi.get(self, "options")
|
9675
|
+
|
9676
|
+
@options.setter
|
9677
|
+
def options(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableOptionArgs']]]]):
|
9678
|
+
pulumi.set(self, "options", value)
|
9679
|
+
|
9663
9680
|
|
9664
9681
|
@pulumi.input_type
|
9665
9682
|
class OneDashboardVariableItemArgs:
|
@@ -9737,6 +9754,29 @@ class OneDashboardVariableNrqlQueryArgs:
|
|
9737
9754
|
pulumi.set(self, "account_ids", value)
|
9738
9755
|
|
9739
9756
|
|
9757
|
+
@pulumi.input_type
|
9758
|
+
class OneDashboardVariableOptionArgs:
|
9759
|
+
def __init__(__self__, *,
|
9760
|
+
ignore_time_range: Optional[pulumi.Input[bool]] = None):
|
9761
|
+
"""
|
9762
|
+
:param pulumi.Input[bool] ignore_time_range: (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.
|
9763
|
+
"""
|
9764
|
+
if ignore_time_range is not None:
|
9765
|
+
pulumi.set(__self__, "ignore_time_range", ignore_time_range)
|
9766
|
+
|
9767
|
+
@property
|
9768
|
+
@pulumi.getter(name="ignoreTimeRange")
|
9769
|
+
def ignore_time_range(self) -> Optional[pulumi.Input[bool]]:
|
9770
|
+
"""
|
9771
|
+
(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.
|
9772
|
+
"""
|
9773
|
+
return pulumi.get(self, "ignore_time_range")
|
9774
|
+
|
9775
|
+
@ignore_time_range.setter
|
9776
|
+
def ignore_time_range(self, value: Optional[pulumi.Input[bool]]):
|
9777
|
+
pulumi.set(self, "ignore_time_range", value)
|
9778
|
+
|
9779
|
+
|
9740
9780
|
@pulumi.input_type
|
9741
9781
|
class ServiceLevelEventsArgs:
|
9742
9782
|
def __init__(__self__, *,
|