pulumi-newrelic 5.46.0a1747981269__py3-none-any.whl → 5.46.0a1748144444__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 +60 -0
- pulumi_newrelic/nrql_alert_condition.py +2 -0
- pulumi_newrelic/outputs.py +45 -3
- pulumi_newrelic/pulumi-plugin.json +1 -1
- {pulumi_newrelic-5.46.0a1747981269.dist-info → pulumi_newrelic-5.46.0a1748144444.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.46.0a1747981269.dist-info → pulumi_newrelic-5.46.0a1748144444.dist-info}/RECORD +8 -8
- {pulumi_newrelic-5.46.0a1747981269.dist-info → pulumi_newrelic-5.46.0a1748144444.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.46.0a1747981269.dist-info → pulumi_newrelic-5.46.0a1748144444.dist-info}/top_level.txt +0 -0
pulumi_newrelic/_inputs.py
CHANGED
@@ -1911,6 +1911,10 @@ if not MYPY:
|
|
1911
1911
|
"""
|
1912
1912
|
For baseline conditions must be in range [1, 1000].
|
1913
1913
|
"""
|
1914
|
+
disable_health_status_reporting: NotRequired[pulumi.Input[builtins.bool]]
|
1915
|
+
"""
|
1916
|
+
Violations will not change system health status for this term.
|
1917
|
+
"""
|
1914
1918
|
duration: NotRequired[pulumi.Input[builtins.int]]
|
1915
1919
|
"""
|
1916
1920
|
In minutes, must be in the range of 1 to 120 (inclusive).
|
@@ -1942,6 +1946,7 @@ elif False:
|
|
1942
1946
|
class NrqlAlertConditionCriticalArgs:
|
1943
1947
|
def __init__(__self__, *,
|
1944
1948
|
threshold: pulumi.Input[builtins.float],
|
1949
|
+
disable_health_status_reporting: Optional[pulumi.Input[builtins.bool]] = None,
|
1945
1950
|
duration: Optional[pulumi.Input[builtins.int]] = None,
|
1946
1951
|
operator: Optional[pulumi.Input[builtins.str]] = None,
|
1947
1952
|
prediction: Optional[pulumi.Input['NrqlAlertConditionCriticalPredictionArgs']] = None,
|
@@ -1950,6 +1955,7 @@ class NrqlAlertConditionCriticalArgs:
|
|
1950
1955
|
time_function: Optional[pulumi.Input[builtins.str]] = None):
|
1951
1956
|
"""
|
1952
1957
|
:param pulumi.Input[builtins.float] threshold: For baseline conditions must be in range [1, 1000].
|
1958
|
+
:param pulumi.Input[builtins.bool] disable_health_status_reporting: Violations will not change system health status for this term.
|
1953
1959
|
:param pulumi.Input[builtins.int] duration: In minutes, must be in the range of 1 to 120 (inclusive).
|
1954
1960
|
:param pulumi.Input[builtins.str] operator: One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
1955
1961
|
:param pulumi.Input['NrqlAlertConditionCriticalPredictionArgs'] prediction: BETA PREVIEW: the `prediction` field is in limited release and only enabled for preview on a per-account basis. - Use `prediction` to open alerts when your static threshold is predicted to be reached in the future. The `prediction` field is only available for static conditions.
|
@@ -1958,6 +1964,8 @@ class NrqlAlertConditionCriticalArgs:
|
|
1958
1964
|
:param pulumi.Input[builtins.str] time_function: Valid values are: 'all' or 'any'
|
1959
1965
|
"""
|
1960
1966
|
pulumi.set(__self__, "threshold", threshold)
|
1967
|
+
if disable_health_status_reporting is not None:
|
1968
|
+
pulumi.set(__self__, "disable_health_status_reporting", disable_health_status_reporting)
|
1961
1969
|
if duration is not None:
|
1962
1970
|
warnings.warn("""use `threshold_duration` attribute instead""", DeprecationWarning)
|
1963
1971
|
pulumi.log.warn("""duration is deprecated: use `threshold_duration` attribute instead""")
|
@@ -1989,6 +1997,18 @@ class NrqlAlertConditionCriticalArgs:
|
|
1989
1997
|
def threshold(self, value: pulumi.Input[builtins.float]):
|
1990
1998
|
pulumi.set(self, "threshold", value)
|
1991
1999
|
|
2000
|
+
@property
|
2001
|
+
@pulumi.getter(name="disableHealthStatusReporting")
|
2002
|
+
def disable_health_status_reporting(self) -> Optional[pulumi.Input[builtins.bool]]:
|
2003
|
+
"""
|
2004
|
+
Violations will not change system health status for this term.
|
2005
|
+
"""
|
2006
|
+
return pulumi.get(self, "disable_health_status_reporting")
|
2007
|
+
|
2008
|
+
@disable_health_status_reporting.setter
|
2009
|
+
def disable_health_status_reporting(self, value: Optional[pulumi.Input[builtins.bool]]):
|
2010
|
+
pulumi.set(self, "disable_health_status_reporting", value)
|
2011
|
+
|
1992
2012
|
@property
|
1993
2013
|
@pulumi.getter
|
1994
2014
|
@_utilities.deprecated("""use `threshold_duration` attribute instead""")
|
@@ -2214,6 +2234,10 @@ if not MYPY:
|
|
2214
2234
|
"""
|
2215
2235
|
For baseline conditions must be in range [1, 1000].
|
2216
2236
|
"""
|
2237
|
+
disable_health_status_reporting: NotRequired[pulumi.Input[builtins.bool]]
|
2238
|
+
"""
|
2239
|
+
Violations will not change system health status for this term.
|
2240
|
+
"""
|
2217
2241
|
duration: NotRequired[pulumi.Input[builtins.int]]
|
2218
2242
|
"""
|
2219
2243
|
In minutes, must be in the range of 1 to 120 (inclusive).
|
@@ -2249,6 +2273,7 @@ elif False:
|
|
2249
2273
|
class NrqlAlertConditionTermArgs:
|
2250
2274
|
def __init__(__self__, *,
|
2251
2275
|
threshold: pulumi.Input[builtins.float],
|
2276
|
+
disable_health_status_reporting: Optional[pulumi.Input[builtins.bool]] = None,
|
2252
2277
|
duration: Optional[pulumi.Input[builtins.int]] = None,
|
2253
2278
|
operator: Optional[pulumi.Input[builtins.str]] = None,
|
2254
2279
|
prediction: Optional[pulumi.Input['NrqlAlertConditionTermPredictionArgs']] = None,
|
@@ -2258,6 +2283,7 @@ class NrqlAlertConditionTermArgs:
|
|
2258
2283
|
time_function: Optional[pulumi.Input[builtins.str]] = None):
|
2259
2284
|
"""
|
2260
2285
|
:param pulumi.Input[builtins.float] threshold: For baseline conditions must be in range [1, 1000].
|
2286
|
+
:param pulumi.Input[builtins.bool] disable_health_status_reporting: Violations will not change system health status for this term.
|
2261
2287
|
:param pulumi.Input[builtins.int] duration: In minutes, must be in the range of 1 to 120 (inclusive).
|
2262
2288
|
:param pulumi.Input[builtins.str] operator: One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
2263
2289
|
:param pulumi.Input['NrqlAlertConditionTermPredictionArgs'] prediction: BETA PREVIEW: the `prediction` field is in limited release and only enabled for preview on a per-account basis. - Use `prediction` to open alerts when your static threshold is predicted to be reached in the future. The `prediction` field is only available for static conditions.
|
@@ -2267,6 +2293,8 @@ class NrqlAlertConditionTermArgs:
|
|
2267
2293
|
:param pulumi.Input[builtins.str] time_function: Valid values are: 'all' or 'any'
|
2268
2294
|
"""
|
2269
2295
|
pulumi.set(__self__, "threshold", threshold)
|
2296
|
+
if disable_health_status_reporting is not None:
|
2297
|
+
pulumi.set(__self__, "disable_health_status_reporting", disable_health_status_reporting)
|
2270
2298
|
if duration is not None:
|
2271
2299
|
warnings.warn("""use `threshold_duration` attribute instead""", DeprecationWarning)
|
2272
2300
|
pulumi.log.warn("""duration is deprecated: use `threshold_duration` attribute instead""")
|
@@ -2300,6 +2328,18 @@ class NrqlAlertConditionTermArgs:
|
|
2300
2328
|
def threshold(self, value: pulumi.Input[builtins.float]):
|
2301
2329
|
pulumi.set(self, "threshold", value)
|
2302
2330
|
|
2331
|
+
@property
|
2332
|
+
@pulumi.getter(name="disableHealthStatusReporting")
|
2333
|
+
def disable_health_status_reporting(self) -> Optional[pulumi.Input[builtins.bool]]:
|
2334
|
+
"""
|
2335
|
+
Violations will not change system health status for this term.
|
2336
|
+
"""
|
2337
|
+
return pulumi.get(self, "disable_health_status_reporting")
|
2338
|
+
|
2339
|
+
@disable_health_status_reporting.setter
|
2340
|
+
def disable_health_status_reporting(self, value: Optional[pulumi.Input[builtins.bool]]):
|
2341
|
+
pulumi.set(self, "disable_health_status_reporting", value)
|
2342
|
+
|
2303
2343
|
@property
|
2304
2344
|
@pulumi.getter
|
2305
2345
|
@_utilities.deprecated("""use `threshold_duration` attribute instead""")
|
@@ -2445,6 +2485,10 @@ if not MYPY:
|
|
2445
2485
|
"""
|
2446
2486
|
For baseline conditions must be in range [1, 1000].
|
2447
2487
|
"""
|
2488
|
+
disable_health_status_reporting: NotRequired[pulumi.Input[builtins.bool]]
|
2489
|
+
"""
|
2490
|
+
Violations will not change system health status for this term.
|
2491
|
+
"""
|
2448
2492
|
duration: NotRequired[pulumi.Input[builtins.int]]
|
2449
2493
|
"""
|
2450
2494
|
In minutes, must be in the range of 1 to 120 (inclusive).
|
@@ -2476,6 +2520,7 @@ elif False:
|
|
2476
2520
|
class NrqlAlertConditionWarningArgs:
|
2477
2521
|
def __init__(__self__, *,
|
2478
2522
|
threshold: pulumi.Input[builtins.float],
|
2523
|
+
disable_health_status_reporting: Optional[pulumi.Input[builtins.bool]] = None,
|
2479
2524
|
duration: Optional[pulumi.Input[builtins.int]] = None,
|
2480
2525
|
operator: Optional[pulumi.Input[builtins.str]] = None,
|
2481
2526
|
prediction: Optional[pulumi.Input['NrqlAlertConditionWarningPredictionArgs']] = None,
|
@@ -2484,6 +2529,7 @@ class NrqlAlertConditionWarningArgs:
|
|
2484
2529
|
time_function: Optional[pulumi.Input[builtins.str]] = None):
|
2485
2530
|
"""
|
2486
2531
|
:param pulumi.Input[builtins.float] threshold: For baseline conditions must be in range [1, 1000].
|
2532
|
+
:param pulumi.Input[builtins.bool] disable_health_status_reporting: Violations will not change system health status for this term.
|
2487
2533
|
:param pulumi.Input[builtins.int] duration: In minutes, must be in the range of 1 to 120 (inclusive).
|
2488
2534
|
:param pulumi.Input[builtins.str] operator: One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
2489
2535
|
:param pulumi.Input['NrqlAlertConditionWarningPredictionArgs'] prediction: BETA PREVIEW: the `prediction` field is in limited release and only enabled for preview on a per-account basis. - Use `prediction` to open alerts when your static threshold is predicted to be reached in the future. The `prediction` field is only available for static conditions.
|
@@ -2492,6 +2538,8 @@ class NrqlAlertConditionWarningArgs:
|
|
2492
2538
|
:param pulumi.Input[builtins.str] time_function: Valid values are: 'all' or 'any'
|
2493
2539
|
"""
|
2494
2540
|
pulumi.set(__self__, "threshold", threshold)
|
2541
|
+
if disable_health_status_reporting is not None:
|
2542
|
+
pulumi.set(__self__, "disable_health_status_reporting", disable_health_status_reporting)
|
2495
2543
|
if duration is not None:
|
2496
2544
|
warnings.warn("""use `threshold_duration` attribute instead""", DeprecationWarning)
|
2497
2545
|
pulumi.log.warn("""duration is deprecated: use `threshold_duration` attribute instead""")
|
@@ -2523,6 +2571,18 @@ class NrqlAlertConditionWarningArgs:
|
|
2523
2571
|
def threshold(self, value: pulumi.Input[builtins.float]):
|
2524
2572
|
pulumi.set(self, "threshold", value)
|
2525
2573
|
|
2574
|
+
@property
|
2575
|
+
@pulumi.getter(name="disableHealthStatusReporting")
|
2576
|
+
def disable_health_status_reporting(self) -> Optional[pulumi.Input[builtins.bool]]:
|
2577
|
+
"""
|
2578
|
+
Violations will not change system health status for this term.
|
2579
|
+
"""
|
2580
|
+
return pulumi.get(self, "disable_health_status_reporting")
|
2581
|
+
|
2582
|
+
@disable_health_status_reporting.setter
|
2583
|
+
def disable_health_status_reporting(self, value: Optional[pulumi.Input[builtins.bool]]):
|
2584
|
+
pulumi.set(self, "disable_health_status_reporting", value)
|
2585
|
+
|
2526
2586
|
@property
|
2527
2587
|
@pulumi.getter
|
2528
2588
|
@_utilities.deprecated("""use `threshold_duration` attribute instead""")
|
@@ -1082,6 +1082,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
1082
1082
|
- `duration` - (Optional) **DEPRECATED:** Use `threshold_duration` instead. The duration of time, in _minutes_, that the threshold must violate for in order to create an incident. Must be within 1-120 (inclusive).
|
1083
1083
|
- `time_function` - (Optional) **DEPRECATED:** Use `threshold_occurrences` instead. The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: `all` or `any`.
|
1084
1084
|
- `prediction` - (Optional) **BETA PREVIEW: the `prediction` field is in limited release and only enabled for preview on a per-account basis.** Use `prediction` to open alerts when your static threshold is predicted to be reached in the future. The `prediction` field is only available for _static_ NRQL alert conditions. See Prediction below for details.
|
1085
|
+
- `disable_health_status_reporting` - (Optional) `true` or `false`. Defaults to `false` when field not included in TF config. Violations will not change system health status for this term.
|
1085
1086
|
|
1086
1087
|
> **NOTE:** When a `critical` or `warning` block is added to this resource, using either `duration` or `threshold_duration` (one of the two) is mandatory. Both of these should not be specified.
|
1087
1088
|
|
@@ -1394,6 +1395,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
1394
1395
|
- `duration` - (Optional) **DEPRECATED:** Use `threshold_duration` instead. The duration of time, in _minutes_, that the threshold must violate for in order to create an incident. Must be within 1-120 (inclusive).
|
1395
1396
|
- `time_function` - (Optional) **DEPRECATED:** Use `threshold_occurrences` instead. The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: `all` or `any`.
|
1396
1397
|
- `prediction` - (Optional) **BETA PREVIEW: the `prediction` field is in limited release and only enabled for preview on a per-account basis.** Use `prediction` to open alerts when your static threshold is predicted to be reached in the future. The `prediction` field is only available for _static_ NRQL alert conditions. See Prediction below for details.
|
1398
|
+
- `disable_health_status_reporting` - (Optional) `true` or `false`. Defaults to `false` when field not included in TF config. Violations will not change system health status for this term.
|
1397
1399
|
|
1398
1400
|
> **NOTE:** When a `critical` or `warning` block is added to this resource, using either `duration` or `threshold_duration` (one of the two) is mandatory. Both of these should not be specified.
|
1399
1401
|
|
pulumi_newrelic/outputs.py
CHANGED
@@ -1332,7 +1332,9 @@ class NrqlAlertConditionCritical(dict):
|
|
1332
1332
|
@staticmethod
|
1333
1333
|
def __key_warning(key: str):
|
1334
1334
|
suggest = None
|
1335
|
-
if key == "
|
1335
|
+
if key == "disableHealthStatusReporting":
|
1336
|
+
suggest = "disable_health_status_reporting"
|
1337
|
+
elif key == "thresholdDuration":
|
1336
1338
|
suggest = "threshold_duration"
|
1337
1339
|
elif key == "thresholdOccurrences":
|
1338
1340
|
suggest = "threshold_occurrences"
|
@@ -1352,6 +1354,7 @@ class NrqlAlertConditionCritical(dict):
|
|
1352
1354
|
|
1353
1355
|
def __init__(__self__, *,
|
1354
1356
|
threshold: builtins.float,
|
1357
|
+
disable_health_status_reporting: Optional[builtins.bool] = None,
|
1355
1358
|
duration: Optional[builtins.int] = None,
|
1356
1359
|
operator: Optional[builtins.str] = None,
|
1357
1360
|
prediction: Optional['outputs.NrqlAlertConditionCriticalPrediction'] = None,
|
@@ -1360,6 +1363,7 @@ class NrqlAlertConditionCritical(dict):
|
|
1360
1363
|
time_function: Optional[builtins.str] = None):
|
1361
1364
|
"""
|
1362
1365
|
:param builtins.float threshold: For baseline conditions must be in range [1, 1000].
|
1366
|
+
:param builtins.bool disable_health_status_reporting: Violations will not change system health status for this term.
|
1363
1367
|
:param builtins.int duration: In minutes, must be in the range of 1 to 120 (inclusive).
|
1364
1368
|
:param builtins.str operator: One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
1365
1369
|
:param 'NrqlAlertConditionCriticalPredictionArgs' prediction: BETA PREVIEW: the `prediction` field is in limited release and only enabled for preview on a per-account basis. - Use `prediction` to open alerts when your static threshold is predicted to be reached in the future. The `prediction` field is only available for static conditions.
|
@@ -1368,6 +1372,8 @@ class NrqlAlertConditionCritical(dict):
|
|
1368
1372
|
:param builtins.str time_function: Valid values are: 'all' or 'any'
|
1369
1373
|
"""
|
1370
1374
|
pulumi.set(__self__, "threshold", threshold)
|
1375
|
+
if disable_health_status_reporting is not None:
|
1376
|
+
pulumi.set(__self__, "disable_health_status_reporting", disable_health_status_reporting)
|
1371
1377
|
if duration is not None:
|
1372
1378
|
pulumi.set(__self__, "duration", duration)
|
1373
1379
|
if operator is not None:
|
@@ -1389,6 +1395,14 @@ class NrqlAlertConditionCritical(dict):
|
|
1389
1395
|
"""
|
1390
1396
|
return pulumi.get(self, "threshold")
|
1391
1397
|
|
1398
|
+
@property
|
1399
|
+
@pulumi.getter(name="disableHealthStatusReporting")
|
1400
|
+
def disable_health_status_reporting(self) -> Optional[builtins.bool]:
|
1401
|
+
"""
|
1402
|
+
Violations will not change system health status for this term.
|
1403
|
+
"""
|
1404
|
+
return pulumi.get(self, "disable_health_status_reporting")
|
1405
|
+
|
1392
1406
|
@property
|
1393
1407
|
@pulumi.getter
|
1394
1408
|
@_utilities.deprecated("""use `threshold_duration` attribute instead""")
|
@@ -1568,7 +1582,9 @@ class NrqlAlertConditionTerm(dict):
|
|
1568
1582
|
@staticmethod
|
1569
1583
|
def __key_warning(key: str):
|
1570
1584
|
suggest = None
|
1571
|
-
if key == "
|
1585
|
+
if key == "disableHealthStatusReporting":
|
1586
|
+
suggest = "disable_health_status_reporting"
|
1587
|
+
elif key == "thresholdDuration":
|
1572
1588
|
suggest = "threshold_duration"
|
1573
1589
|
elif key == "thresholdOccurrences":
|
1574
1590
|
suggest = "threshold_occurrences"
|
@@ -1588,6 +1604,7 @@ class NrqlAlertConditionTerm(dict):
|
|
1588
1604
|
|
1589
1605
|
def __init__(__self__, *,
|
1590
1606
|
threshold: builtins.float,
|
1607
|
+
disable_health_status_reporting: Optional[builtins.bool] = None,
|
1591
1608
|
duration: Optional[builtins.int] = None,
|
1592
1609
|
operator: Optional[builtins.str] = None,
|
1593
1610
|
prediction: Optional['outputs.NrqlAlertConditionTermPrediction'] = None,
|
@@ -1597,6 +1614,7 @@ class NrqlAlertConditionTerm(dict):
|
|
1597
1614
|
time_function: Optional[builtins.str] = None):
|
1598
1615
|
"""
|
1599
1616
|
:param builtins.float threshold: For baseline conditions must be in range [1, 1000].
|
1617
|
+
:param builtins.bool disable_health_status_reporting: Violations will not change system health status for this term.
|
1600
1618
|
:param builtins.int duration: In minutes, must be in the range of 1 to 120 (inclusive).
|
1601
1619
|
:param builtins.str operator: One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
1602
1620
|
:param 'NrqlAlertConditionTermPredictionArgs' prediction: BETA PREVIEW: the `prediction` field is in limited release and only enabled for preview on a per-account basis. - Use `prediction` to open alerts when your static threshold is predicted to be reached in the future. The `prediction` field is only available for static conditions.
|
@@ -1606,6 +1624,8 @@ class NrqlAlertConditionTerm(dict):
|
|
1606
1624
|
:param builtins.str time_function: Valid values are: 'all' or 'any'
|
1607
1625
|
"""
|
1608
1626
|
pulumi.set(__self__, "threshold", threshold)
|
1627
|
+
if disable_health_status_reporting is not None:
|
1628
|
+
pulumi.set(__self__, "disable_health_status_reporting", disable_health_status_reporting)
|
1609
1629
|
if duration is not None:
|
1610
1630
|
pulumi.set(__self__, "duration", duration)
|
1611
1631
|
if operator is not None:
|
@@ -1629,6 +1649,14 @@ class NrqlAlertConditionTerm(dict):
|
|
1629
1649
|
"""
|
1630
1650
|
return pulumi.get(self, "threshold")
|
1631
1651
|
|
1652
|
+
@property
|
1653
|
+
@pulumi.getter(name="disableHealthStatusReporting")
|
1654
|
+
def disable_health_status_reporting(self) -> Optional[builtins.bool]:
|
1655
|
+
"""
|
1656
|
+
Violations will not change system health status for this term.
|
1657
|
+
"""
|
1658
|
+
return pulumi.get(self, "disable_health_status_reporting")
|
1659
|
+
|
1632
1660
|
@property
|
1633
1661
|
@pulumi.getter
|
1634
1662
|
@_utilities.deprecated("""use `threshold_duration` attribute instead""")
|
@@ -1743,7 +1771,9 @@ class NrqlAlertConditionWarning(dict):
|
|
1743
1771
|
@staticmethod
|
1744
1772
|
def __key_warning(key: str):
|
1745
1773
|
suggest = None
|
1746
|
-
if key == "
|
1774
|
+
if key == "disableHealthStatusReporting":
|
1775
|
+
suggest = "disable_health_status_reporting"
|
1776
|
+
elif key == "thresholdDuration":
|
1747
1777
|
suggest = "threshold_duration"
|
1748
1778
|
elif key == "thresholdOccurrences":
|
1749
1779
|
suggest = "threshold_occurrences"
|
@@ -1763,6 +1793,7 @@ class NrqlAlertConditionWarning(dict):
|
|
1763
1793
|
|
1764
1794
|
def __init__(__self__, *,
|
1765
1795
|
threshold: builtins.float,
|
1796
|
+
disable_health_status_reporting: Optional[builtins.bool] = None,
|
1766
1797
|
duration: Optional[builtins.int] = None,
|
1767
1798
|
operator: Optional[builtins.str] = None,
|
1768
1799
|
prediction: Optional['outputs.NrqlAlertConditionWarningPrediction'] = None,
|
@@ -1771,6 +1802,7 @@ class NrqlAlertConditionWarning(dict):
|
|
1771
1802
|
time_function: Optional[builtins.str] = None):
|
1772
1803
|
"""
|
1773
1804
|
:param builtins.float threshold: For baseline conditions must be in range [1, 1000].
|
1805
|
+
:param builtins.bool disable_health_status_reporting: Violations will not change system health status for this term.
|
1774
1806
|
:param builtins.int duration: In minutes, must be in the range of 1 to 120 (inclusive).
|
1775
1807
|
:param builtins.str operator: One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
1776
1808
|
:param 'NrqlAlertConditionWarningPredictionArgs' prediction: BETA PREVIEW: the `prediction` field is in limited release and only enabled for preview on a per-account basis. - Use `prediction` to open alerts when your static threshold is predicted to be reached in the future. The `prediction` field is only available for static conditions.
|
@@ -1779,6 +1811,8 @@ class NrqlAlertConditionWarning(dict):
|
|
1779
1811
|
:param builtins.str time_function: Valid values are: 'all' or 'any'
|
1780
1812
|
"""
|
1781
1813
|
pulumi.set(__self__, "threshold", threshold)
|
1814
|
+
if disable_health_status_reporting is not None:
|
1815
|
+
pulumi.set(__self__, "disable_health_status_reporting", disable_health_status_reporting)
|
1782
1816
|
if duration is not None:
|
1783
1817
|
pulumi.set(__self__, "duration", duration)
|
1784
1818
|
if operator is not None:
|
@@ -1800,6 +1834,14 @@ class NrqlAlertConditionWarning(dict):
|
|
1800
1834
|
"""
|
1801
1835
|
return pulumi.get(self, "threshold")
|
1802
1836
|
|
1837
|
+
@property
|
1838
|
+
@pulumi.getter(name="disableHealthStatusReporting")
|
1839
|
+
def disable_health_status_reporting(self) -> Optional[builtins.bool]:
|
1840
|
+
"""
|
1841
|
+
Violations will not change system health status for this term.
|
1842
|
+
"""
|
1843
|
+
return pulumi.get(self, "disable_health_status_reporting")
|
1844
|
+
|
1803
1845
|
@property
|
1804
1846
|
@pulumi.getter
|
1805
1847
|
@_utilities.deprecated("""use `threshold_duration` attribute instead""")
|
{pulumi_newrelic-5.46.0a1747981269.dist-info → pulumi_newrelic-5.46.0a1748144444.dist-info}/RECORD
RENAMED
@@ -1,5 +1,5 @@
|
|
1
1
|
pulumi_newrelic/__init__.py,sha256=iQ260FiXECBVhO6vGhVlRpNzFnKab_Q33eYljjmdgI0,11551
|
2
|
-
pulumi_newrelic/_inputs.py,sha256=
|
2
|
+
pulumi_newrelic/_inputs.py,sha256=jGRZCCCGql68FRkNhBsYrdG22jBcQbH7rTSHU1mweqo,843193
|
3
3
|
pulumi_newrelic/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
4
4
|
pulumi_newrelic/account_management.py,sha256=bW-_7WyhGxKosgROHoDONaL8s8flZsAuj6GXt0TDNRY,9304
|
5
5
|
pulumi_newrelic/alert_channel.py,sha256=4XecWhlfBjWXY7BKI1CGavM06OBLC4dkQESV72pIFWA,22282
|
@@ -33,16 +33,16 @@ pulumi_newrelic/log_parsing_rule.py,sha256=6b7xtOHvCydfGxKNkk4hCA4fZbeZ1VKpu02WL
|
|
33
33
|
pulumi_newrelic/monitor_downtime.py,sha256=S5viBFtUxszdmLEzvj39aG3JT7eRxGn9du9noDflgSA,41955
|
34
34
|
pulumi_newrelic/notification_channel.py,sha256=cAxyOA2Vi8NvRJSsJAbepChUE2WcsNt6GTaS55P0f6A,49954
|
35
35
|
pulumi_newrelic/notification_destination.py,sha256=VPr931SwzkuiNRkDEKcO0NQxbkM8Plxzwu6rYU9gbpo,40094
|
36
|
-
pulumi_newrelic/nrql_alert_condition.py,sha256=
|
36
|
+
pulumi_newrelic/nrql_alert_condition.py,sha256=nsSHoJMyT0e5baSKAGfPWvRuvpxXlmTOGRP1p_KHbVk,122131
|
37
37
|
pulumi_newrelic/nrql_drop_rule.py,sha256=K__MMCSYPjZRCkZ_2VpDjhNUbNt9ZIMl3gfy8uEGkZo,18358
|
38
38
|
pulumi_newrelic/obfuscation_expression.py,sha256=fNyi780IvNOKli6wNFUBagbY1Ke_qa4uuyQI681qRLA,13118
|
39
39
|
pulumi_newrelic/obfuscation_rule.py,sha256=bbCBeLfoYBS7TxWeI7_GeaqM2SUsZEbhKXYU1wp0rGc,18758
|
40
40
|
pulumi_newrelic/one_dashboard.py,sha256=9w18PgRsRgYS254n1vP8GXuG3t6UtRG6zeqmBMydS9E,21563
|
41
41
|
pulumi_newrelic/one_dashboard_json.py,sha256=rAZdAtPBnlZPuEmjdXru1-_UFFPJElkwM6RglM2mM3U,13324
|
42
42
|
pulumi_newrelic/one_dashboard_raw.py,sha256=I1vB6sGGsMlSmCEwQpCgVFwz2Y8TBBSXSTOsUo1IOdE,24383
|
43
|
-
pulumi_newrelic/outputs.py,sha256=
|
43
|
+
pulumi_newrelic/outputs.py,sha256=PVvTAMC2x6ebkNMUTgHsVSxwj7R9P7MlPozjl_gR26Q,607439
|
44
44
|
pulumi_newrelic/provider.py,sha256=EgMOS6nAfCgblYJueoIDVKqq8-73tJhgdeDpka1feyw,20139
|
45
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
45
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=vpJGwQqCYxzQY1-lb150YK_HEPtSIKvRsljm4kd57hI,85
|
46
46
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
47
|
pulumi_newrelic/service_level.py,sha256=6GGWzFwBryPkCOgAa-J1s3vdG9eYR_AajBj2p5LG-4A,29563
|
48
48
|
pulumi_newrelic/user.py,sha256=_mKutuSa4Pv8rJavUPSnQSjjGx3MVYnWMUEpzGk6hmY,19683
|
@@ -84,7 +84,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=Yve4AfEorAiaD8O0MefbW_wiw7
|
|
84
84
|
pulumi_newrelic/synthetics/script_monitor.py,sha256=jv_jhfObfLtvCgwfHLt_V1-LGCu7fBIDvVhMWQmn12I,69783
|
85
85
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=D7ZJ4RIP7c5KirtAv3Fo2U6q7MXMvoNiBarP9TdvXhk,16498
|
86
86
|
pulumi_newrelic/synthetics/step_monitor.py,sha256=Y-A4FdZaq9IAwG-bGpeV88X_WyAiaouCXDD9oVTv46U,52037
|
87
|
-
pulumi_newrelic-5.46.
|
88
|
-
pulumi_newrelic-5.46.
|
89
|
-
pulumi_newrelic-5.46.
|
90
|
-
pulumi_newrelic-5.46.
|
87
|
+
pulumi_newrelic-5.46.0a1748144444.dist-info/METADATA,sha256=SASN7mZVwxASxatesCi3Gpa3AUbaqNGt7ux837YRtzc,3966
|
88
|
+
pulumi_newrelic-5.46.0a1748144444.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
89
|
+
pulumi_newrelic-5.46.0a1748144444.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
90
|
+
pulumi_newrelic-5.46.0a1748144444.dist-info/RECORD,,
|
{pulumi_newrelic-5.46.0a1747981269.dist-info → pulumi_newrelic-5.46.0a1748144444.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|