pulumi-newrelic 5.20.0a1709643785__py3-none-any.whl → 5.21.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/account_management.py +6 -2
- pulumi_newrelic/alert_channel.py +34 -2
- pulumi_newrelic/alert_condition.py +26 -2
- pulumi_newrelic/alert_muting_rule.py +6 -2
- pulumi_newrelic/alert_policy.py +22 -4
- pulumi_newrelic/alert_policy_channel.py +8 -4
- pulumi_newrelic/api_access_key.py +6 -26
- pulumi_newrelic/browser_application.py +6 -2
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +2 -2
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +6 -2
- pulumi_newrelic/cloud/aws_integrations.py +6 -2
- pulumi_newrelic/cloud/aws_link_account.py +6 -2
- pulumi_newrelic/cloud/azure_integrations.py +6 -2
- pulumi_newrelic/cloud/azure_link_account.py +6 -2
- pulumi_newrelic/cloud/gcp_integrations.py +6 -2
- pulumi_newrelic/cloud/gcp_link_account.py +6 -2
- pulumi_newrelic/data_partition_rule.py +8 -2
- pulumi_newrelic/entity_tags.py +8 -4
- pulumi_newrelic/events_to_metrics_rule.py +8 -4
- pulumi_newrelic/get_account.py +4 -0
- pulumi_newrelic/get_application.py +4 -0
- pulumi_newrelic/get_authentication_domain.py +4 -0
- pulumi_newrelic/get_cloud_account.py +4 -0
- pulumi_newrelic/get_entity.py +66 -4
- pulumi_newrelic/get_group.py +4 -0
- pulumi_newrelic/get_key_transaction.py +4 -0
- pulumi_newrelic/get_notification_destination.py +14 -1
- pulumi_newrelic/get_obfuscation_expression.py +4 -0
- pulumi_newrelic/get_service_level_alert_helper.py +12 -0
- pulumi_newrelic/get_test_grok_pattern.py +4 -0
- pulumi_newrelic/get_user.py +4 -0
- pulumi_newrelic/group.py +14 -0
- pulumi_newrelic/infra_alert_condition.py +33 -9
- pulumi_newrelic/insights/event.py +6 -0
- pulumi_newrelic/log_parsing_rule.py +12 -2
- pulumi_newrelic/monitor_downtime.py +28 -2
- pulumi_newrelic/notification_channel.py +50 -4
- pulumi_newrelic/notification_destination.py +92 -72
- pulumi_newrelic/nrql_alert_condition.py +28 -4
- pulumi_newrelic/nrql_drop_rule.py +30 -4
- pulumi_newrelic/obfuscation_expression.py +6 -2
- pulumi_newrelic/obfuscation_rule.py +6 -2
- pulumi_newrelic/one_dashboard.py +2 -2
- pulumi_newrelic/one_dashboard_json.py +2 -2
- pulumi_newrelic/one_dashboard_raw.py +6 -0
- pulumi_newrelic/outputs.py +78 -29
- pulumi_newrelic/plugins/_inputs.py +2 -2
- pulumi_newrelic/plugins/application_settings.py +22 -2
- pulumi_newrelic/plugins/outputs.py +2 -2
- pulumi_newrelic/plugins/workload.py +112 -4
- pulumi_newrelic/service_level.py +20 -6
- pulumi_newrelic/synthetics/alert_condition.py +26 -2
- pulumi_newrelic/synthetics/broken_links_monitor.py +19 -23
- pulumi_newrelic/synthetics/cert_check_monitor.py +19 -23
- pulumi_newrelic/synthetics/get_private_location.py +8 -0
- pulumi_newrelic/synthetics/get_secure_credential.py +4 -0
- pulumi_newrelic/synthetics/monitor.py +27 -23
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +12 -4
- pulumi_newrelic/synthetics/private_location.py +6 -2
- pulumi_newrelic/synthetics/script_monitor.py +27 -23
- pulumi_newrelic/synthetics/secure_credential.py +6 -2
- pulumi_newrelic/synthetics/step_monitor.py +15 -23
- pulumi_newrelic/user.py +4 -0
- pulumi_newrelic/workflow.py +22 -4
- {pulumi_newrelic-5.20.0a1709643785.dist-info → pulumi_newrelic-5.21.0.dist-info}/METADATA +1 -1
- pulumi_newrelic-5.21.0.dist-info/RECORD +89 -0
- {pulumi_newrelic-5.20.0a1709643785.dist-info → pulumi_newrelic-5.21.0.dist-info}/WHEEL +1 -1
- pulumi_newrelic-5.20.0a1709643785.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.20.0a1709643785.dist-info → pulumi_newrelic-5.21.0.dist-info}/top_level.txt +0 -0
@@ -235,8 +235,10 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
235
235
|
> **NOTE:** The OneDashboardJson resource is preferred for configuring dashboards in New Relic. This resource does not support the latest dashboard features and will receive less investment compared to newrelic_one_dashboard_json.
|
236
236
|
|
237
237
|
## Example Usage
|
238
|
+
|
238
239
|
### Create A New Relic One Dashboard With RawConfiguration
|
239
240
|
|
241
|
+
<!--Start PulumiCodeChooser -->
|
240
242
|
```python
|
241
243
|
import pulumi
|
242
244
|
import json
|
@@ -308,6 +310,7 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
308
310
|
],
|
309
311
|
)])
|
310
312
|
```
|
313
|
+
<!--End PulumiCodeChooser -->
|
311
314
|
|
312
315
|
:param str resource_name: The name of the resource.
|
313
316
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
@@ -327,8 +330,10 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
327
330
|
> **NOTE:** The OneDashboardJson resource is preferred for configuring dashboards in New Relic. This resource does not support the latest dashboard features and will receive less investment compared to newrelic_one_dashboard_json.
|
328
331
|
|
329
332
|
## Example Usage
|
333
|
+
|
330
334
|
### Create A New Relic One Dashboard With RawConfiguration
|
331
335
|
|
336
|
+
<!--Start PulumiCodeChooser -->
|
332
337
|
```python
|
333
338
|
import pulumi
|
334
339
|
import json
|
@@ -400,6 +405,7 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
400
405
|
],
|
401
406
|
)])
|
402
407
|
```
|
408
|
+
<!--End PulumiCodeChooser -->
|
403
409
|
|
404
410
|
:param str resource_name: The name of the resource.
|
405
411
|
:param OneDashboardRawArgs args: The arguments to use to populate this resource's properties.
|
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
|
|
@@ -23,9 +23,11 @@ class ApplicationSettingsArgs:
|
|
23
23
|
:param pulumi.Input[float] app_apdex_threshold: The apdex threshold for the New Relic application.
|
24
24
|
:param pulumi.Input[bool] enable_real_user_monitoring: Enable or disable real user monitoring for the New Relic application.
|
25
25
|
|
26
|
+
<!--Start PulumiCodeChooser -->
|
26
27
|
```python
|
27
28
|
import pulumi
|
28
29
|
```
|
30
|
+
<!--End PulumiCodeChooser -->
|
29
31
|
:param pulumi.Input[float] end_user_apdex_threshold: The user's apdex threshold for the New Relic application.
|
30
32
|
:param pulumi.Input[str] name: The name of the application in New Relic APM.
|
31
33
|
"""
|
@@ -53,9 +55,11 @@ class ApplicationSettingsArgs:
|
|
53
55
|
"""
|
54
56
|
Enable or disable real user monitoring for the New Relic application.
|
55
57
|
|
58
|
+
<!--Start PulumiCodeChooser -->
|
56
59
|
```python
|
57
60
|
import pulumi
|
58
61
|
```
|
62
|
+
<!--End PulumiCodeChooser -->
|
59
63
|
"""
|
60
64
|
return pulumi.get(self, "enable_real_user_monitoring")
|
61
65
|
|
@@ -100,9 +104,11 @@ class _ApplicationSettingsState:
|
|
100
104
|
:param pulumi.Input[float] app_apdex_threshold: The apdex threshold for the New Relic application.
|
101
105
|
:param pulumi.Input[bool] enable_real_user_monitoring: Enable or disable real user monitoring for the New Relic application.
|
102
106
|
|
107
|
+
<!--Start PulumiCodeChooser -->
|
103
108
|
```python
|
104
109
|
import pulumi
|
105
110
|
```
|
111
|
+
<!--End PulumiCodeChooser -->
|
106
112
|
:param pulumi.Input[float] end_user_apdex_threshold: The user's apdex threshold for the New Relic application.
|
107
113
|
:param pulumi.Input[str] name: The name of the application in New Relic APM.
|
108
114
|
"""
|
@@ -133,9 +139,11 @@ class _ApplicationSettingsState:
|
|
133
139
|
"""
|
134
140
|
Enable or disable real user monitoring for the New Relic application.
|
135
141
|
|
142
|
+
<!--Start PulumiCodeChooser -->
|
136
143
|
```python
|
137
144
|
import pulumi
|
138
145
|
```
|
146
|
+
<!--End PulumiCodeChooser -->
|
139
147
|
"""
|
140
148
|
return pulumi.get(self, "enable_real_user_monitoring")
|
141
149
|
|
@@ -187,6 +195,7 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
187
195
|
|
188
196
|
## Example Usage
|
189
197
|
|
198
|
+
<!--Start PulumiCodeChooser -->
|
190
199
|
```python
|
191
200
|
import pulumi
|
192
201
|
import pulumi_newrelic as newrelic
|
@@ -196,6 +205,8 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
196
205
|
enable_real_user_monitoring=False,
|
197
206
|
end_user_apdex_threshold=0.8)
|
198
207
|
```
|
208
|
+
<!--End PulumiCodeChooser -->
|
209
|
+
|
199
210
|
## Notes
|
200
211
|
|
201
212
|
> **NOTE:** Applications that have reported data in the last twelve hours
|
@@ -206,7 +217,7 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
206
217
|
Applications can be imported using notation `application_id`, e.g.
|
207
218
|
|
208
219
|
```sh
|
209
|
-
|
220
|
+
$ pulumi import newrelic:plugins/applicationSettings:ApplicationSettings main 6789012345
|
210
221
|
```
|
211
222
|
|
212
223
|
:param str resource_name: The name of the resource.
|
@@ -214,9 +225,11 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
214
225
|
:param pulumi.Input[float] app_apdex_threshold: The apdex threshold for the New Relic application.
|
215
226
|
:param pulumi.Input[bool] enable_real_user_monitoring: Enable or disable real user monitoring for the New Relic application.
|
216
227
|
|
228
|
+
<!--Start PulumiCodeChooser -->
|
217
229
|
```python
|
218
230
|
import pulumi
|
219
231
|
```
|
232
|
+
<!--End PulumiCodeChooser -->
|
220
233
|
:param pulumi.Input[float] end_user_apdex_threshold: The user's apdex threshold for the New Relic application.
|
221
234
|
:param pulumi.Input[str] name: The name of the application in New Relic APM.
|
222
235
|
"""
|
@@ -235,6 +248,7 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
235
248
|
|
236
249
|
## Example Usage
|
237
250
|
|
251
|
+
<!--Start PulumiCodeChooser -->
|
238
252
|
```python
|
239
253
|
import pulumi
|
240
254
|
import pulumi_newrelic as newrelic
|
@@ -244,6 +258,8 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
244
258
|
enable_real_user_monitoring=False,
|
245
259
|
end_user_apdex_threshold=0.8)
|
246
260
|
```
|
261
|
+
<!--End PulumiCodeChooser -->
|
262
|
+
|
247
263
|
## Notes
|
248
264
|
|
249
265
|
> **NOTE:** Applications that have reported data in the last twelve hours
|
@@ -254,7 +270,7 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
254
270
|
Applications can be imported using notation `application_id`, e.g.
|
255
271
|
|
256
272
|
```sh
|
257
|
-
|
273
|
+
$ pulumi import newrelic:plugins/applicationSettings:ApplicationSettings main 6789012345
|
258
274
|
```
|
259
275
|
|
260
276
|
:param str resource_name: The name of the resource.
|
@@ -319,9 +335,11 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
319
335
|
:param pulumi.Input[float] app_apdex_threshold: The apdex threshold for the New Relic application.
|
320
336
|
:param pulumi.Input[bool] enable_real_user_monitoring: Enable or disable real user monitoring for the New Relic application.
|
321
337
|
|
338
|
+
<!--Start PulumiCodeChooser -->
|
322
339
|
```python
|
323
340
|
import pulumi
|
324
341
|
```
|
342
|
+
<!--End PulumiCodeChooser -->
|
325
343
|
:param pulumi.Input[float] end_user_apdex_threshold: The user's apdex threshold for the New Relic application.
|
326
344
|
:param pulumi.Input[str] name: The name of the application in New Relic APM.
|
327
345
|
"""
|
@@ -349,9 +367,11 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
349
367
|
"""
|
350
368
|
Enable or disable real user monitoring for the New Relic application.
|
351
369
|
|
370
|
+
<!--Start PulumiCodeChooser -->
|
352
371
|
```python
|
353
372
|
import pulumi
|
354
373
|
```
|
374
|
+
<!--End PulumiCodeChooser -->
|
355
375
|
"""
|
356
376
|
return pulumi.get(self, "enable_real_user_monitoring")
|
357
377
|
|
@@ -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
|
|