pulumi-newrelic 5.21.0a1710995830__py3-none-any.whl → 5.21.0a1711361572__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/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 +7 -21
- pulumi_newrelic/synthetics/cert_check_monitor.py +7 -21
- pulumi_newrelic/synthetics/monitor.py +7 -21
- pulumi_newrelic/synthetics/script_monitor.py +7 -21
- pulumi_newrelic/synthetics/step_monitor.py +7 -21
- {pulumi_newrelic-5.21.0a1710995830.dist-info → pulumi_newrelic-5.21.0a1711361572.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.21.0a1710995830.dist-info → pulumi_newrelic-5.21.0a1711361572.dist-info}/RECORD +15 -15
- {pulumi_newrelic-5.21.0a1710995830.dist-info → pulumi_newrelic-5.21.0a1711361572.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.21.0a1710995830.dist-info → pulumi_newrelic-5.21.0a1711361572.dist-info}/top_level.txt +0 -0
pulumi_newrelic/outputs.py
CHANGED
@@ -148,6 +148,7 @@ __all__ = [
|
|
148
148
|
'OneDashboardVariable',
|
149
149
|
'OneDashboardVariableItem',
|
150
150
|
'OneDashboardVariableNrqlQuery',
|
151
|
+
'OneDashboardVariableOption',
|
151
152
|
'ServiceLevelEvents',
|
152
153
|
'ServiceLevelEventsBadEvents',
|
153
154
|
'ServiceLevelEventsBadEventsSelect',
|
@@ -1970,7 +1971,7 @@ class OneDashboardPageWidgetArea(dict):
|
|
1970
1971
|
:param 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`
|
1971
1972
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
1972
1973
|
:param str id: The ID of the widget.
|
1973
|
-
:param bool ignore_time_range: (Optional)
|
1974
|
+
:param 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.
|
1974
1975
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
1975
1976
|
:param Sequence['OneDashboardPageWidgetAreaNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
1976
1977
|
:param Sequence['OneDashboardPageWidgetAreaUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -2072,7 +2073,7 @@ class OneDashboardPageWidgetArea(dict):
|
|
2072
2073
|
@pulumi.getter(name="ignoreTimeRange")
|
2073
2074
|
def ignore_time_range(self) -> Optional[bool]:
|
2074
2075
|
"""
|
2075
|
-
(Optional)
|
2076
|
+
(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.
|
2076
2077
|
"""
|
2077
2078
|
return pulumi.get(self, "ignore_time_range")
|
2078
2079
|
|
@@ -2524,7 +2525,7 @@ class OneDashboardPageWidgetBar(dict):
|
|
2524
2525
|
:param bool filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
2525
2526
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
2526
2527
|
:param str id: The ID of the widget.
|
2527
|
-
:param bool ignore_time_range: (Optional)
|
2528
|
+
:param 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.
|
2528
2529
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
2529
2530
|
:param Sequence[str] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
2530
2531
|
:param Sequence['OneDashboardPageWidgetBarNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -2639,7 +2640,7 @@ class OneDashboardPageWidgetBar(dict):
|
|
2639
2640
|
@pulumi.getter(name="ignoreTimeRange")
|
2640
2641
|
def ignore_time_range(self) -> Optional[bool]:
|
2641
2642
|
"""
|
2642
|
-
(Optional)
|
2643
|
+
(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.
|
2643
2644
|
"""
|
2644
2645
|
return pulumi.get(self, "ignore_time_range")
|
2645
2646
|
|
@@ -3095,7 +3096,7 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
3095
3096
|
:param 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`
|
3096
3097
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
3097
3098
|
:param str id: The ID of the widget.
|
3098
|
-
:param bool ignore_time_range: (Optional)
|
3099
|
+
:param 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.
|
3099
3100
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
3100
3101
|
:param Sequence['OneDashboardPageWidgetBillboardNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
3101
3102
|
:param Sequence['OneDashboardPageWidgetBillboardUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -3210,7 +3211,7 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
3210
3211
|
@pulumi.getter(name="ignoreTimeRange")
|
3211
3212
|
def ignore_time_range(self) -> Optional[bool]:
|
3212
3213
|
"""
|
3213
|
-
(Optional)
|
3214
|
+
(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.
|
3214
3215
|
"""
|
3215
3216
|
return pulumi.get(self, "ignore_time_range")
|
3216
3217
|
|
@@ -3665,7 +3666,7 @@ class OneDashboardPageWidgetBullet(dict):
|
|
3665
3666
|
:param 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`
|
3666
3667
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
3667
3668
|
:param str id: The ID of the widget.
|
3668
|
-
:param bool ignore_time_range: (Optional)
|
3669
|
+
:param 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.
|
3669
3670
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
3670
3671
|
:param Sequence['OneDashboardPageWidgetBulletNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
3671
3672
|
:param Sequence['OneDashboardPageWidgetBulletUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -3776,7 +3777,7 @@ class OneDashboardPageWidgetBullet(dict):
|
|
3776
3777
|
@pulumi.getter(name="ignoreTimeRange")
|
3777
3778
|
def ignore_time_range(self) -> Optional[bool]:
|
3778
3779
|
"""
|
3779
|
-
(Optional)
|
3780
|
+
(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.
|
3780
3781
|
"""
|
3781
3782
|
return pulumi.get(self, "ignore_time_range")
|
3782
3783
|
|
@@ -4221,7 +4222,7 @@ class OneDashboardPageWidgetFunnel(dict):
|
|
4221
4222
|
:param 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`
|
4222
4223
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
4223
4224
|
:param str id: The ID of the widget.
|
4224
|
-
:param bool ignore_time_range: (Optional)
|
4225
|
+
:param 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.
|
4225
4226
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
4226
4227
|
:param Sequence['OneDashboardPageWidgetFunnelNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
4227
4228
|
:param Sequence['OneDashboardPageWidgetFunnelUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -4323,7 +4324,7 @@ class OneDashboardPageWidgetFunnel(dict):
|
|
4323
4324
|
@pulumi.getter(name="ignoreTimeRange")
|
4324
4325
|
def ignore_time_range(self) -> Optional[bool]:
|
4325
4326
|
"""
|
4326
|
-
(Optional)
|
4327
|
+
(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.
|
4327
4328
|
"""
|
4328
4329
|
return pulumi.get(self, "ignore_time_range")
|
4329
4330
|
|
@@ -4775,7 +4776,7 @@ class OneDashboardPageWidgetHeatmap(dict):
|
|
4775
4776
|
:param bool filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
4776
4777
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
4777
4778
|
:param str id: The ID of the widget.
|
4778
|
-
:param bool ignore_time_range: (Optional)
|
4779
|
+
:param 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.
|
4779
4780
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
4780
4781
|
:param Sequence[str] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
4781
4782
|
:param Sequence['OneDashboardPageWidgetHeatmapNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -4890,7 +4891,7 @@ class OneDashboardPageWidgetHeatmap(dict):
|
|
4890
4891
|
@pulumi.getter(name="ignoreTimeRange")
|
4891
4892
|
def ignore_time_range(self) -> Optional[bool]:
|
4892
4893
|
"""
|
4893
|
-
(Optional)
|
4894
|
+
(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.
|
4894
4895
|
"""
|
4895
4896
|
return pulumi.get(self, "ignore_time_range")
|
4896
4897
|
|
@@ -5343,7 +5344,7 @@ class OneDashboardPageWidgetHistogram(dict):
|
|
5343
5344
|
:param 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`
|
5344
5345
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
5345
5346
|
:param str id: The ID of the widget.
|
5346
|
-
:param bool ignore_time_range: (Optional)
|
5347
|
+
:param 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.
|
5347
5348
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
5348
5349
|
:param Sequence['OneDashboardPageWidgetHistogramNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
5349
5350
|
:param Sequence['OneDashboardPageWidgetHistogramUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -5445,7 +5446,7 @@ class OneDashboardPageWidgetHistogram(dict):
|
|
5445
5446
|
@pulumi.getter(name="ignoreTimeRange")
|
5446
5447
|
def ignore_time_range(self) -> Optional[bool]:
|
5447
5448
|
"""
|
5448
|
-
(Optional)
|
5449
|
+
(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.
|
5449
5450
|
"""
|
5450
5451
|
return pulumi.get(self, "ignore_time_range")
|
5451
5452
|
|
@@ -5890,7 +5891,7 @@ class OneDashboardPageWidgetJson(dict):
|
|
5890
5891
|
:param 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`
|
5891
5892
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
5892
5893
|
:param str id: The ID of the widget.
|
5893
|
-
:param bool ignore_time_range: (Optional)
|
5894
|
+
:param 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.
|
5894
5895
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
5895
5896
|
:param Sequence['OneDashboardPageWidgetJsonNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
5896
5897
|
:param Sequence['OneDashboardPageWidgetJsonUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -5992,7 +5993,7 @@ class OneDashboardPageWidgetJson(dict):
|
|
5992
5993
|
@pulumi.getter(name="ignoreTimeRange")
|
5993
5994
|
def ignore_time_range(self) -> Optional[bool]:
|
5994
5995
|
"""
|
5995
|
-
(Optional)
|
5996
|
+
(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.
|
5996
5997
|
"""
|
5997
5998
|
return pulumi.get(self, "ignore_time_range")
|
5998
5999
|
|
@@ -6440,7 +6441,7 @@ class OneDashboardPageWidgetLine(dict):
|
|
6440
6441
|
:param 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`
|
6441
6442
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
6442
6443
|
:param str id: The ID of the widget.
|
6443
|
-
:param bool ignore_time_range: (Optional)
|
6444
|
+
:param 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.
|
6444
6445
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
6445
6446
|
:param Sequence['OneDashboardPageWidgetLineNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
6446
6447
|
:param Sequence['OneDashboardPageWidgetLineUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -6545,7 +6546,7 @@ class OneDashboardPageWidgetLine(dict):
|
|
6545
6546
|
@pulumi.getter(name="ignoreTimeRange")
|
6546
6547
|
def ignore_time_range(self) -> Optional[bool]:
|
6547
6548
|
"""
|
6548
|
-
(Optional)
|
6549
|
+
(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.
|
6549
6550
|
"""
|
6550
6551
|
return pulumi.get(self, "ignore_time_range")
|
6551
6552
|
|
@@ -6998,7 +6999,7 @@ class OneDashboardPageWidgetLogTable(dict):
|
|
6998
6999
|
:param 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`
|
6999
7000
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
7000
7001
|
:param str id: The ID of the widget.
|
7001
|
-
:param bool ignore_time_range: (Optional)
|
7002
|
+
:param 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.
|
7002
7003
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
7003
7004
|
:param Sequence['OneDashboardPageWidgetLogTableNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
7004
7005
|
:param Sequence['OneDashboardPageWidgetLogTableUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -7100,7 +7101,7 @@ class OneDashboardPageWidgetLogTable(dict):
|
|
7100
7101
|
@pulumi.getter(name="ignoreTimeRange")
|
7101
7102
|
def ignore_time_range(self) -> Optional[bool]:
|
7102
7103
|
"""
|
7103
|
-
(Optional)
|
7104
|
+
(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.
|
7104
7105
|
"""
|
7105
7106
|
return pulumi.get(self, "ignore_time_range")
|
7106
7107
|
|
@@ -7543,7 +7544,7 @@ class OneDashboardPageWidgetMarkdown(dict):
|
|
7543
7544
|
:param 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`
|
7544
7545
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
7545
7546
|
:param str id: The ID of the widget.
|
7546
|
-
:param bool ignore_time_range: (Optional)
|
7547
|
+
:param 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.
|
7547
7548
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
7548
7549
|
:param Sequence['OneDashboardPageWidgetMarkdownNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
7549
7550
|
:param Sequence['OneDashboardPageWidgetMarkdownUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -7645,7 +7646,7 @@ class OneDashboardPageWidgetMarkdown(dict):
|
|
7645
7646
|
@pulumi.getter(name="ignoreTimeRange")
|
7646
7647
|
def ignore_time_range(self) -> Optional[bool]:
|
7647
7648
|
"""
|
7648
|
-
(Optional)
|
7649
|
+
(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.
|
7649
7650
|
"""
|
7650
7651
|
return pulumi.get(self, "ignore_time_range")
|
7651
7652
|
|
@@ -8050,7 +8051,7 @@ class OneDashboardPageWidgetPy(dict):
|
|
8050
8051
|
:param bool filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
8051
8052
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
8052
8053
|
:param str id: The ID of the widget.
|
8053
|
-
:param bool ignore_time_range: (Optional)
|
8054
|
+
:param 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.
|
8054
8055
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
8055
8056
|
:param Sequence[str] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
8056
8057
|
:param Sequence['OneDashboardPageWidgetPyNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -8165,7 +8166,7 @@ class OneDashboardPageWidgetPy(dict):
|
|
8165
8166
|
@pulumi.getter(name="ignoreTimeRange")
|
8166
8167
|
def ignore_time_range(self) -> Optional[bool]:
|
8167
8168
|
"""
|
8168
|
-
(Optional)
|
8169
|
+
(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.
|
8169
8170
|
"""
|
8170
8171
|
return pulumi.get(self, "ignore_time_range")
|
8171
8172
|
|
@@ -8618,7 +8619,7 @@ class OneDashboardPageWidgetStackedBar(dict):
|
|
8618
8619
|
:param 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`
|
8619
8620
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
8620
8621
|
:param str id: The ID of the widget.
|
8621
|
-
:param bool ignore_time_range: (Optional)
|
8622
|
+
:param 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.
|
8622
8623
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
8623
8624
|
:param Sequence['OneDashboardPageWidgetStackedBarNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
8624
8625
|
:param Sequence['OneDashboardPageWidgetStackedBarUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
|
@@ -8720,7 +8721,7 @@ class OneDashboardPageWidgetStackedBar(dict):
|
|
8720
8721
|
@pulumi.getter(name="ignoreTimeRange")
|
8721
8722
|
def ignore_time_range(self) -> Optional[bool]:
|
8722
8723
|
"""
|
8723
|
-
(Optional)
|
8724
|
+
(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.
|
8724
8725
|
"""
|
8725
8726
|
return pulumi.get(self, "ignore_time_range")
|
8726
8727
|
|
@@ -9172,7 +9173,7 @@ class OneDashboardPageWidgetTable(dict):
|
|
9172
9173
|
:param bool filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
9173
9174
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
9174
9175
|
:param str id: The ID of the widget.
|
9175
|
-
:param bool ignore_time_range: (Optional)
|
9176
|
+
:param 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.
|
9176
9177
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
9177
9178
|
:param Sequence[str] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
9178
9179
|
:param Sequence['OneDashboardPageWidgetTableNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -9287,7 +9288,7 @@ class OneDashboardPageWidgetTable(dict):
|
|
9287
9288
|
@pulumi.getter(name="ignoreTimeRange")
|
9288
9289
|
def ignore_time_range(self) -> Optional[bool]:
|
9289
9290
|
"""
|
9290
|
-
(Optional)
|
9291
|
+
(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.
|
9291
9292
|
"""
|
9292
9293
|
return pulumi.get(self, "ignore_time_range")
|
9293
9294
|
|
@@ -9900,7 +9901,8 @@ class OneDashboardVariable(dict):
|
|
9900
9901
|
default_values: Optional[Sequence[str]] = None,
|
9901
9902
|
is_multi_selection: Optional[bool] = None,
|
9902
9903
|
items: Optional[Sequence['outputs.OneDashboardVariableItem']] = None,
|
9903
|
-
nrql_query: Optional['outputs.OneDashboardVariableNrqlQuery'] = None
|
9904
|
+
nrql_query: Optional['outputs.OneDashboardVariableNrqlQuery'] = None,
|
9905
|
+
options: Optional[Sequence['outputs.OneDashboardVariableOption']] = None):
|
9904
9906
|
"""
|
9905
9907
|
:param str name: The title of the dashboard.
|
9906
9908
|
:param str replacement_strategy: (Optional) Indicates the strategy to apply when replacing a variable in a NRQL query. One of `default`, `identifier`, `number` or `string`.
|
@@ -9910,6 +9912,7 @@ class OneDashboardVariable(dict):
|
|
9910
9912
|
:param bool is_multi_selection: (Optional) Indicates whether this variable supports multiple selection or not. Only applies to variables of type `nrql` or `enum`.
|
9911
9913
|
:param Sequence['OneDashboardVariableItemArgs'] items: (Optional) List of possible values for variables of type `enum`. See Nested item blocks below for details.
|
9912
9914
|
:param 'OneDashboardVariableNrqlQueryArgs' nrql_query: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
9915
|
+
:param Sequence['OneDashboardVariableOptionArgs'] options: (Optional) Specifies additional options to be added to dashboard variables. Supports the following nested attribute(s) -
|
9913
9916
|
"""
|
9914
9917
|
pulumi.set(__self__, "name", name)
|
9915
9918
|
pulumi.set(__self__, "replacement_strategy", replacement_strategy)
|
@@ -9923,6 +9926,8 @@ class OneDashboardVariable(dict):
|
|
9923
9926
|
pulumi.set(__self__, "items", items)
|
9924
9927
|
if nrql_query is not None:
|
9925
9928
|
pulumi.set(__self__, "nrql_query", nrql_query)
|
9929
|
+
if options is not None:
|
9930
|
+
pulumi.set(__self__, "options", options)
|
9926
9931
|
|
9927
9932
|
@property
|
9928
9933
|
@pulumi.getter
|
@@ -9988,6 +9993,14 @@ class OneDashboardVariable(dict):
|
|
9988
9993
|
"""
|
9989
9994
|
return pulumi.get(self, "nrql_query")
|
9990
9995
|
|
9996
|
+
@property
|
9997
|
+
@pulumi.getter
|
9998
|
+
def options(self) -> Optional[Sequence['outputs.OneDashboardVariableOption']]:
|
9999
|
+
"""
|
10000
|
+
(Optional) Specifies additional options to be added to dashboard variables. Supports the following nested attribute(s) -
|
10001
|
+
"""
|
10002
|
+
return pulumi.get(self, "options")
|
10003
|
+
|
9991
10004
|
|
9992
10005
|
@pulumi.output_type
|
9993
10006
|
class OneDashboardVariableItem(dict):
|
@@ -10066,6 +10079,42 @@ class OneDashboardVariableNrqlQuery(dict):
|
|
10066
10079
|
return pulumi.get(self, "account_ids")
|
10067
10080
|
|
10068
10081
|
|
10082
|
+
@pulumi.output_type
|
10083
|
+
class OneDashboardVariableOption(dict):
|
10084
|
+
@staticmethod
|
10085
|
+
def __key_warning(key: str):
|
10086
|
+
suggest = None
|
10087
|
+
if key == "ignoreTimeRange":
|
10088
|
+
suggest = "ignore_time_range"
|
10089
|
+
|
10090
|
+
if suggest:
|
10091
|
+
pulumi.log.warn(f"Key '{key}' not found in OneDashboardVariableOption. Access the value via the '{suggest}' property getter instead.")
|
10092
|
+
|
10093
|
+
def __getitem__(self, key: str) -> Any:
|
10094
|
+
OneDashboardVariableOption.__key_warning(key)
|
10095
|
+
return super().__getitem__(key)
|
10096
|
+
|
10097
|
+
def get(self, key: str, default = None) -> Any:
|
10098
|
+
OneDashboardVariableOption.__key_warning(key)
|
10099
|
+
return super().get(key, default)
|
10100
|
+
|
10101
|
+
def __init__(__self__, *,
|
10102
|
+
ignore_time_range: Optional[bool] = None):
|
10103
|
+
"""
|
10104
|
+
:param 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.
|
10105
|
+
"""
|
10106
|
+
if ignore_time_range is not None:
|
10107
|
+
pulumi.set(__self__, "ignore_time_range", ignore_time_range)
|
10108
|
+
|
10109
|
+
@property
|
10110
|
+
@pulumi.getter(name="ignoreTimeRange")
|
10111
|
+
def ignore_time_range(self) -> Optional[bool]:
|
10112
|
+
"""
|
10113
|
+
(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.
|
10114
|
+
"""
|
10115
|
+
return pulumi.get(self, "ignore_time_range")
|
10116
|
+
|
10117
|
+
|
10069
10118
|
@pulumi.output_type
|
10070
10119
|
class ServiceLevelEvents(dict):
|
10071
10120
|
@staticmethod
|
@@ -25,7 +25,7 @@ class WorkloadEntitySearchQueryArgs:
|
|
25
25
|
def __init__(__self__, *,
|
26
26
|
query: pulumi.Input[str]):
|
27
27
|
"""
|
28
|
-
:param pulumi.Input[str] query:
|
28
|
+
:param pulumi.Input[str] query: A valid entity search query; empty, and null values are considered invalid.
|
29
29
|
"""
|
30
30
|
pulumi.set(__self__, "query", query)
|
31
31
|
|
@@ -33,7 +33,7 @@ class WorkloadEntitySearchQueryArgs:
|
|
33
33
|
@pulumi.getter
|
34
34
|
def query(self) -> pulumi.Input[str]:
|
35
35
|
"""
|
36
|
-
|
36
|
+
A valid entity search query; empty, and null values are considered invalid.
|
37
37
|
"""
|
38
38
|
return pulumi.get(self, "query")
|
39
39
|
|
@@ -26,7 +26,7 @@ class WorkloadEntitySearchQuery(dict):
|
|
26
26
|
def __init__(__self__, *,
|
27
27
|
query: str):
|
28
28
|
"""
|
29
|
-
:param str query:
|
29
|
+
:param str query: A valid entity search query; empty, and null values are considered invalid.
|
30
30
|
"""
|
31
31
|
pulumi.set(__self__, "query", query)
|
32
32
|
|
@@ -34,7 +34,7 @@ class WorkloadEntitySearchQuery(dict):
|
|
34
34
|
@pulumi.getter
|
35
35
|
def query(self) -> str:
|
36
36
|
"""
|
37
|
-
|
37
|
+
A valid entity search query; empty, and null values are considered invalid.
|
38
38
|
"""
|
39
39
|
return pulumi.get(self, "query")
|
40
40
|
|
@@ -27,9 +27,7 @@ class BrokenLinksMonitorArgs:
|
|
27
27
|
"""
|
28
28
|
The set of arguments for constructing a BrokenLinksMonitor resource.
|
29
29
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE, EVERY_5_MINUTES, EVERY_10_MINUTES, EVERY_15_MINUTES, EVERY_30_MINUTES, EVERY_HOUR, EVERY_6_HOURS, EVERY_12_HOURS, or EVERY_DAY.
|
30
|
-
:param pulumi.Input[str] status: The monitor status (
|
31
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
32
|
-
refrain from using this value and shift to alternatives.
|
30
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
33
31
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
34
32
|
:param pulumi.Input[int] account_id: The account in which the Synthetics monitor will be created.
|
35
33
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
|
@@ -67,9 +65,7 @@ class BrokenLinksMonitorArgs:
|
|
67
65
|
@pulumi.getter
|
68
66
|
def status(self) -> pulumi.Input[str]:
|
69
67
|
"""
|
70
|
-
The monitor status (
|
71
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
72
|
-
refrain from using this value and shift to alternatives.
|
68
|
+
The monitor status (ENABLED or DISABLED).
|
73
69
|
"""
|
74
70
|
return pulumi.get(self, "status")
|
75
71
|
|
@@ -172,9 +168,7 @@ class _BrokenLinksMonitorState:
|
|
172
168
|
:param pulumi.Input[str] name: The name for the monitor.
|
173
169
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE, EVERY_5_MINUTES, EVERY_10_MINUTES, EVERY_15_MINUTES, EVERY_30_MINUTES, EVERY_HOUR, EVERY_6_HOURS, EVERY_12_HOURS, or EVERY_DAY.
|
174
170
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
175
|
-
:param pulumi.Input[str] status: The monitor status (
|
176
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
177
|
-
refrain from using this value and shift to alternatives.
|
171
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
178
172
|
:param pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
179
173
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
180
174
|
"""
|
@@ -287,9 +281,7 @@ class _BrokenLinksMonitorState:
|
|
287
281
|
@pulumi.getter
|
288
282
|
def status(self) -> Optional[pulumi.Input[str]]:
|
289
283
|
"""
|
290
|
-
The monitor status (
|
291
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
292
|
-
refrain from using this value and shift to alternatives.
|
284
|
+
The monitor status (ENABLED or DISABLED).
|
293
285
|
"""
|
294
286
|
return pulumi.get(self, "status")
|
295
287
|
|
@@ -404,9 +396,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
404
396
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from. Valid public locations are https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
|
405
397
|
:param pulumi.Input[str] name: The name for the monitor.
|
406
398
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE, EVERY_5_MINUTES, EVERY_10_MINUTES, EVERY_15_MINUTES, EVERY_30_MINUTES, EVERY_HOUR, EVERY_6_HOURS, EVERY_12_HOURS, or EVERY_DAY.
|
407
|
-
:param pulumi.Input[str] status: The monitor status (
|
408
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
409
|
-
refrain from using this value and shift to alternatives.
|
399
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
410
400
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BrokenLinksMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
411
401
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
412
402
|
"""
|
@@ -559,9 +549,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
559
549
|
:param pulumi.Input[str] name: The name for the monitor.
|
560
550
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE, EVERY_5_MINUTES, EVERY_10_MINUTES, EVERY_15_MINUTES, EVERY_30_MINUTES, EVERY_HOUR, EVERY_6_HOURS, EVERY_12_HOURS, or EVERY_DAY.
|
561
551
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
562
|
-
:param pulumi.Input[str] status: The monitor status (
|
563
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
564
|
-
refrain from using this value and shift to alternatives.
|
552
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
565
553
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BrokenLinksMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
566
554
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
567
555
|
"""
|
@@ -641,9 +629,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
641
629
|
@pulumi.getter
|
642
630
|
def status(self) -> pulumi.Output[str]:
|
643
631
|
"""
|
644
|
-
The monitor status (
|
645
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
646
|
-
refrain from using this value and shift to alternatives.
|
632
|
+
The monitor status (ENABLED or DISABLED).
|
647
633
|
"""
|
648
634
|
return pulumi.get(self, "status")
|
649
635
|
|
@@ -30,9 +30,7 @@ class CertCheckMonitorArgs:
|
|
30
30
|
:param pulumi.Input[int] certificate_expiration: The desired number of remaining days until the certificate expires to trigger a monitor failure.
|
31
31
|
:param pulumi.Input[str] domain: The domain of the host that will have its certificate checked.
|
32
32
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE, EVERY_5_MINUTES, EVERY_10_MINUTES, EVERY_15_MINUTES, EVERY_30_MINUTES, EVERY_HOUR, EVERY_6_HOURS, EVERY_12_HOURS, or EVERY_DAY.
|
33
|
-
:param pulumi.Input[str] status: The monitor status (
|
34
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
35
|
-
refrain from using this value and shift to alternatives.
|
33
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
36
34
|
:param pulumi.Input[int] account_id: The account in which the Synthetics monitor will be created.
|
37
35
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
|
38
36
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from. Valid public locations are https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
|
@@ -94,9 +92,7 @@ class CertCheckMonitorArgs:
|
|
94
92
|
@pulumi.getter
|
95
93
|
def status(self) -> pulumi.Input[str]:
|
96
94
|
"""
|
97
|
-
The monitor status (
|
98
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
99
|
-
refrain from using this value and shift to alternatives.
|
95
|
+
The monitor status (ENABLED or DISABLED).
|
100
96
|
"""
|
101
97
|
return pulumi.get(self, "status")
|
102
98
|
|
@@ -188,9 +184,7 @@ class _CertCheckMonitorState:
|
|
188
184
|
:param pulumi.Input[str] name: The name for the monitor.
|
189
185
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE, EVERY_5_MINUTES, EVERY_10_MINUTES, EVERY_15_MINUTES, EVERY_30_MINUTES, EVERY_HOUR, EVERY_6_HOURS, EVERY_12_HOURS, or EVERY_DAY.
|
190
186
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
191
|
-
:param pulumi.Input[str] status: The monitor status (
|
192
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
193
|
-
refrain from using this value and shift to alternatives.
|
187
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
194
188
|
:param pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
195
189
|
"""
|
196
190
|
if account_id is not None:
|
@@ -314,9 +308,7 @@ class _CertCheckMonitorState:
|
|
314
308
|
@pulumi.getter
|
315
309
|
def status(self) -> Optional[pulumi.Input[str]]:
|
316
310
|
"""
|
317
|
-
The monitor status (
|
318
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
319
|
-
refrain from using this value and shift to alternatives.
|
311
|
+
The monitor status (ENABLED or DISABLED).
|
320
312
|
"""
|
321
313
|
return pulumi.get(self, "status")
|
322
314
|
|
@@ -423,9 +415,7 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
423
415
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from. Valid public locations are https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
|
424
416
|
:param pulumi.Input[str] name: The name for the monitor.
|
425
417
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE, EVERY_5_MINUTES, EVERY_10_MINUTES, EVERY_15_MINUTES, EVERY_30_MINUTES, EVERY_HOUR, EVERY_6_HOURS, EVERY_12_HOURS, or EVERY_DAY.
|
426
|
-
:param pulumi.Input[str] status: The monitor status (
|
427
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
428
|
-
refrain from using this value and shift to alternatives.
|
418
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
429
419
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
430
420
|
"""
|
431
421
|
...
|
@@ -582,9 +572,7 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
582
572
|
:param pulumi.Input[str] name: The name for the monitor.
|
583
573
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE, EVERY_5_MINUTES, EVERY_10_MINUTES, EVERY_15_MINUTES, EVERY_30_MINUTES, EVERY_HOUR, EVERY_6_HOURS, EVERY_12_HOURS, or EVERY_DAY.
|
584
574
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
585
|
-
:param pulumi.Input[str] status: The monitor status (
|
586
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
587
|
-
refrain from using this value and shift to alternatives.
|
575
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
588
576
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
589
577
|
"""
|
590
578
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -671,9 +659,7 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
671
659
|
@pulumi.getter
|
672
660
|
def status(self) -> pulumi.Output[str]:
|
673
661
|
"""
|
674
|
-
The monitor status (
|
675
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
676
|
-
refrain from using this value and shift to alternatives.
|
662
|
+
The monitor status (ENABLED or DISABLED).
|
677
663
|
"""
|
678
664
|
return pulumi.get(self, "status")
|
679
665
|
|