pulumi-newrelic 5.44.1__py3-none-any.whl → 5.45.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.
@@ -42,6 +42,7 @@ class NrqlAlertConditionArgs:
42
42
  name: Optional[pulumi.Input[builtins.str]] = None,
43
43
  open_violation_on_expiration: Optional[pulumi.Input[builtins.bool]] = None,
44
44
  runbook_url: Optional[pulumi.Input[builtins.str]] = None,
45
+ signal_seasonality: Optional[pulumi.Input[builtins.str]] = None,
45
46
  slide_by: Optional[pulumi.Input[builtins.int]] = None,
46
47
  terms: Optional[pulumi.Input[Sequence[pulumi.Input['NrqlAlertConditionTermArgs']]]] = None,
47
48
  title_template: Optional[pulumi.Input[builtins.str]] = None,
@@ -71,6 +72,7 @@ class NrqlAlertConditionArgs:
71
72
  :param pulumi.Input[builtins.str] name: The title of the condition.
72
73
  :param pulumi.Input[builtins.bool] open_violation_on_expiration: Whether to create a new incident to capture that the signal expired.
73
74
  :param pulumi.Input[builtins.str] runbook_url: Runbook URL to display in notifications.
75
+ :param pulumi.Input[builtins.str] signal_seasonality: Seasonality under which a condition's signal(s) are evaluated. Only available for baseline conditions. Valid values are: `NEW_RELIC_CALCULATION`, `HOURLY`, `DAILY`, `WEEKLY`, or `NONE`. To have New Relic calculate seasonality automatically, set to `NEW_RELIC_CALCULATION`. To turn off seasonality completely, set to `NONE`.
74
76
  :param pulumi.Input[builtins.int] slide_by: Gathers data in overlapping time windows to smooth the chart line, making it easier to spot trends. The `slide_by` value is specified in seconds and must be smaller than and a factor of the `aggregation_window`.
75
77
  :param pulumi.Input[Sequence[pulumi.Input['NrqlAlertConditionTermArgs']]] terms: **DEPRECATED** Use `critical`, and `warning` instead. A list of terms for this condition. See Terms below for details.
76
78
  :param pulumi.Input[builtins.str] title_template: The custom title to be used when incidents are opened by the condition. Setting this field will override the default title. Must be [Handlebars](https://handlebarsjs.com/) format.
@@ -119,6 +121,8 @@ class NrqlAlertConditionArgs:
119
121
  pulumi.set(__self__, "open_violation_on_expiration", open_violation_on_expiration)
120
122
  if runbook_url is not None:
121
123
  pulumi.set(__self__, "runbook_url", runbook_url)
124
+ if signal_seasonality is not None:
125
+ pulumi.set(__self__, "signal_seasonality", signal_seasonality)
122
126
  if slide_by is not None:
123
127
  pulumi.set(__self__, "slide_by", slide_by)
124
128
  if terms is not None:
@@ -380,6 +384,18 @@ class NrqlAlertConditionArgs:
380
384
  def runbook_url(self, value: Optional[pulumi.Input[builtins.str]]):
381
385
  pulumi.set(self, "runbook_url", value)
382
386
 
387
+ @property
388
+ @pulumi.getter(name="signalSeasonality")
389
+ def signal_seasonality(self) -> Optional[pulumi.Input[builtins.str]]:
390
+ """
391
+ Seasonality under which a condition's signal(s) are evaluated. Only available for baseline conditions. Valid values are: `NEW_RELIC_CALCULATION`, `HOURLY`, `DAILY`, `WEEKLY`, or `NONE`. To have New Relic calculate seasonality automatically, set to `NEW_RELIC_CALCULATION`. To turn off seasonality completely, set to `NONE`.
392
+ """
393
+ return pulumi.get(self, "signal_seasonality")
394
+
395
+ @signal_seasonality.setter
396
+ def signal_seasonality(self, value: Optional[pulumi.Input[builtins.str]]):
397
+ pulumi.set(self, "signal_seasonality", value)
398
+
383
399
  @property
384
400
  @pulumi.getter(name="slideBy")
385
401
  def slide_by(self) -> Optional[pulumi.Input[builtins.int]]:
@@ -493,6 +509,7 @@ class _NrqlAlertConditionState:
493
509
  open_violation_on_expiration: Optional[pulumi.Input[builtins.bool]] = None,
494
510
  policy_id: Optional[pulumi.Input[builtins.str]] = None,
495
511
  runbook_url: Optional[pulumi.Input[builtins.str]] = None,
512
+ signal_seasonality: Optional[pulumi.Input[builtins.str]] = None,
496
513
  slide_by: Optional[pulumi.Input[builtins.int]] = None,
497
514
  terms: Optional[pulumi.Input[Sequence[pulumi.Input['NrqlAlertConditionTermArgs']]]] = None,
498
515
  title_template: Optional[pulumi.Input[builtins.str]] = None,
@@ -523,6 +540,7 @@ class _NrqlAlertConditionState:
523
540
  :param pulumi.Input[builtins.bool] open_violation_on_expiration: Whether to create a new incident to capture that the signal expired.
524
541
  :param pulumi.Input[builtins.str] policy_id: The ID of the policy where this condition should be used.
525
542
  :param pulumi.Input[builtins.str] runbook_url: Runbook URL to display in notifications.
543
+ :param pulumi.Input[builtins.str] signal_seasonality: Seasonality under which a condition's signal(s) are evaluated. Only available for baseline conditions. Valid values are: `NEW_RELIC_CALCULATION`, `HOURLY`, `DAILY`, `WEEKLY`, or `NONE`. To have New Relic calculate seasonality automatically, set to `NEW_RELIC_CALCULATION`. To turn off seasonality completely, set to `NONE`.
526
544
  :param pulumi.Input[builtins.int] slide_by: Gathers data in overlapping time windows to smooth the chart line, making it easier to spot trends. The `slide_by` value is specified in seconds and must be smaller than and a factor of the `aggregation_window`.
527
545
  :param pulumi.Input[Sequence[pulumi.Input['NrqlAlertConditionTermArgs']]] terms: **DEPRECATED** Use `critical`, and `warning` instead. A list of terms for this condition. See Terms below for details.
528
546
  :param pulumi.Input[builtins.str] title_template: The custom title to be used when incidents are opened by the condition. Setting this field will override the default title. Must be [Handlebars](https://handlebarsjs.com/) format.
@@ -575,6 +593,8 @@ class _NrqlAlertConditionState:
575
593
  pulumi.set(__self__, "policy_id", policy_id)
576
594
  if runbook_url is not None:
577
595
  pulumi.set(__self__, "runbook_url", runbook_url)
596
+ if signal_seasonality is not None:
597
+ pulumi.set(__self__, "signal_seasonality", signal_seasonality)
578
598
  if slide_by is not None:
579
599
  pulumi.set(__self__, "slide_by", slide_by)
580
600
  if terms is not None:
@@ -848,6 +868,18 @@ class _NrqlAlertConditionState:
848
868
  def runbook_url(self, value: Optional[pulumi.Input[builtins.str]]):
849
869
  pulumi.set(self, "runbook_url", value)
850
870
 
871
+ @property
872
+ @pulumi.getter(name="signalSeasonality")
873
+ def signal_seasonality(self) -> Optional[pulumi.Input[builtins.str]]:
874
+ """
875
+ Seasonality under which a condition's signal(s) are evaluated. Only available for baseline conditions. Valid values are: `NEW_RELIC_CALCULATION`, `HOURLY`, `DAILY`, `WEEKLY`, or `NONE`. To have New Relic calculate seasonality automatically, set to `NEW_RELIC_CALCULATION`. To turn off seasonality completely, set to `NONE`.
876
+ """
877
+ return pulumi.get(self, "signal_seasonality")
878
+
879
+ @signal_seasonality.setter
880
+ def signal_seasonality(self, value: Optional[pulumi.Input[builtins.str]]):
881
+ pulumi.set(self, "signal_seasonality", value)
882
+
851
883
  @property
852
884
  @pulumi.getter(name="slideBy")
853
885
  def slide_by(self) -> Optional[pulumi.Input[builtins.int]]:
@@ -962,6 +994,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
962
994
  open_violation_on_expiration: Optional[pulumi.Input[builtins.bool]] = None,
963
995
  policy_id: Optional[pulumi.Input[builtins.str]] = None,
964
996
  runbook_url: Optional[pulumi.Input[builtins.str]] = None,
997
+ signal_seasonality: Optional[pulumi.Input[builtins.str]] = None,
965
998
  slide_by: Optional[pulumi.Input[builtins.int]] = None,
966
999
  terms: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NrqlAlertConditionTermArgs', 'NrqlAlertConditionTermArgsDict']]]]] = None,
967
1000
  title_template: Optional[pulumi.Input[builtins.str]] = None,
@@ -1265,6 +1298,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
1265
1298
  :param pulumi.Input[builtins.bool] open_violation_on_expiration: Whether to create a new incident to capture that the signal expired.
1266
1299
  :param pulumi.Input[builtins.str] policy_id: The ID of the policy where this condition should be used.
1267
1300
  :param pulumi.Input[builtins.str] runbook_url: Runbook URL to display in notifications.
1301
+ :param pulumi.Input[builtins.str] signal_seasonality: Seasonality under which a condition's signal(s) are evaluated. Only available for baseline conditions. Valid values are: `NEW_RELIC_CALCULATION`, `HOURLY`, `DAILY`, `WEEKLY`, or `NONE`. To have New Relic calculate seasonality automatically, set to `NEW_RELIC_CALCULATION`. To turn off seasonality completely, set to `NONE`.
1268
1302
  :param pulumi.Input[builtins.int] slide_by: Gathers data in overlapping time windows to smooth the chart line, making it easier to spot trends. The `slide_by` value is specified in seconds and must be smaller than and a factor of the `aggregation_window`.
1269
1303
  :param pulumi.Input[Sequence[pulumi.Input[Union['NrqlAlertConditionTermArgs', 'NrqlAlertConditionTermArgsDict']]]] terms: **DEPRECATED** Use `critical`, and `warning` instead. A list of terms for this condition. See Terms below for details.
1270
1304
  :param pulumi.Input[builtins.str] title_template: The custom title to be used when incidents are opened by the condition. Setting this field will override the default title. Must be [Handlebars](https://handlebarsjs.com/) format.
@@ -1589,6 +1623,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
1589
1623
  open_violation_on_expiration: Optional[pulumi.Input[builtins.bool]] = None,
1590
1624
  policy_id: Optional[pulumi.Input[builtins.str]] = None,
1591
1625
  runbook_url: Optional[pulumi.Input[builtins.str]] = None,
1626
+ signal_seasonality: Optional[pulumi.Input[builtins.str]] = None,
1592
1627
  slide_by: Optional[pulumi.Input[builtins.int]] = None,
1593
1628
  terms: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NrqlAlertConditionTermArgs', 'NrqlAlertConditionTermArgsDict']]]]] = None,
1594
1629
  title_template: Optional[pulumi.Input[builtins.str]] = None,
@@ -1629,6 +1664,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
1629
1664
  raise TypeError("Missing required property 'policy_id'")
1630
1665
  __props__.__dict__["policy_id"] = policy_id
1631
1666
  __props__.__dict__["runbook_url"] = runbook_url
1667
+ __props__.__dict__["signal_seasonality"] = signal_seasonality
1632
1668
  __props__.__dict__["slide_by"] = slide_by
1633
1669
  __props__.__dict__["terms"] = terms
1634
1670
  __props__.__dict__["title_template"] = title_template
@@ -1668,6 +1704,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
1668
1704
  open_violation_on_expiration: Optional[pulumi.Input[builtins.bool]] = None,
1669
1705
  policy_id: Optional[pulumi.Input[builtins.str]] = None,
1670
1706
  runbook_url: Optional[pulumi.Input[builtins.str]] = None,
1707
+ signal_seasonality: Optional[pulumi.Input[builtins.str]] = None,
1671
1708
  slide_by: Optional[pulumi.Input[builtins.int]] = None,
1672
1709
  terms: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NrqlAlertConditionTermArgs', 'NrqlAlertConditionTermArgsDict']]]]] = None,
1673
1710
  title_template: Optional[pulumi.Input[builtins.str]] = None,
@@ -1703,6 +1740,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
1703
1740
  :param pulumi.Input[builtins.bool] open_violation_on_expiration: Whether to create a new incident to capture that the signal expired.
1704
1741
  :param pulumi.Input[builtins.str] policy_id: The ID of the policy where this condition should be used.
1705
1742
  :param pulumi.Input[builtins.str] runbook_url: Runbook URL to display in notifications.
1743
+ :param pulumi.Input[builtins.str] signal_seasonality: Seasonality under which a condition's signal(s) are evaluated. Only available for baseline conditions. Valid values are: `NEW_RELIC_CALCULATION`, `HOURLY`, `DAILY`, `WEEKLY`, or `NONE`. To have New Relic calculate seasonality automatically, set to `NEW_RELIC_CALCULATION`. To turn off seasonality completely, set to `NONE`.
1706
1744
  :param pulumi.Input[builtins.int] slide_by: Gathers data in overlapping time windows to smooth the chart line, making it easier to spot trends. The `slide_by` value is specified in seconds and must be smaller than and a factor of the `aggregation_window`.
1707
1745
  :param pulumi.Input[Sequence[pulumi.Input[Union['NrqlAlertConditionTermArgs', 'NrqlAlertConditionTermArgsDict']]]] terms: **DEPRECATED** Use `critical`, and `warning` instead. A list of terms for this condition. See Terms below for details.
1708
1746
  :param pulumi.Input[builtins.str] title_template: The custom title to be used when incidents are opened by the condition. Setting this field will override the default title. Must be [Handlebars](https://handlebarsjs.com/) format.
@@ -1738,6 +1776,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
1738
1776
  __props__.__dict__["open_violation_on_expiration"] = open_violation_on_expiration
1739
1777
  __props__.__dict__["policy_id"] = policy_id
1740
1778
  __props__.__dict__["runbook_url"] = runbook_url
1779
+ __props__.__dict__["signal_seasonality"] = signal_seasonality
1741
1780
  __props__.__dict__["slide_by"] = slide_by
1742
1781
  __props__.__dict__["terms"] = terms
1743
1782
  __props__.__dict__["title_template"] = title_template
@@ -1915,6 +1954,14 @@ class NrqlAlertCondition(pulumi.CustomResource):
1915
1954
  """
1916
1955
  return pulumi.get(self, "runbook_url")
1917
1956
 
1957
+ @property
1958
+ @pulumi.getter(name="signalSeasonality")
1959
+ def signal_seasonality(self) -> pulumi.Output[Optional[builtins.str]]:
1960
+ """
1961
+ Seasonality under which a condition's signal(s) are evaluated. Only available for baseline conditions. Valid values are: `NEW_RELIC_CALCULATION`, `HOURLY`, `DAILY`, `WEEKLY`, or `NONE`. To have New Relic calculate seasonality automatically, set to `NEW_RELIC_CALCULATION`. To turn off seasonality completely, set to `NONE`.
1962
+ """
1963
+ return pulumi.get(self, "signal_seasonality")
1964
+
1918
1965
  @property
1919
1966
  @pulumi.getter(name="slideBy")
1920
1967
  def slide_by(self) -> pulumi.Output[Optional[builtins.int]]:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "newrelic",
4
- "version": "5.44.1"
4
+ "version": "5.45.0"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_newrelic
3
- Version: 5.44.1
3
+ Version: 5.45.0
4
4
  Summary: A Pulumi package for creating and managing New Relic resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -33,7 +33,7 @@ pulumi_newrelic/log_parsing_rule.py,sha256=LR9-lVtubqwmk0hknYHsvGXzHXTBuXk0mmha1
33
33
  pulumi_newrelic/monitor_downtime.py,sha256=yIi5ukF_j1v_xBGn4JJgEZyAiA3pc_Zxk0kcptt_Y6Y,41886
34
34
  pulumi_newrelic/notification_channel.py,sha256=0pJJ5nFbYCnyX1YLCNrDX2XjXs5iva-QBgOgnL4hA0o,49877
35
35
  pulumi_newrelic/notification_destination.py,sha256=7BGL0jldOXK_Wu-8imfpXvUMmAkqjKSn5hGAMLrcyGA,40009
36
- pulumi_newrelic/nrql_alert_condition.py,sha256=F7n2KNIJbl4guHlnx4ta4AKWcNA08xlgYte8db4RNb0,117370
36
+ pulumi_newrelic/nrql_alert_condition.py,sha256=nQ8D8K50PmWbOcPTvELX-Dbi8K9AUyPwcOCQGyTlQgU,121662
37
37
  pulumi_newrelic/nrql_drop_rule.py,sha256=MDcX6ntGPXuRUTXA6tvN0Lw1PALCH9LJHlIqKPXfzNc,18295
38
38
  pulumi_newrelic/obfuscation_expression.py,sha256=6BpTtPxP_egunB3GbB3lQoIswvniFeYEU7r9BHXjaXw,13037
39
39
  pulumi_newrelic/obfuscation_rule.py,sha256=KkmAoZcy-s6nVE5Ye_g_pO3tjrHHdAPsUdpwcobNjpc,18689
@@ -42,7 +42,7 @@ pulumi_newrelic/one_dashboard_json.py,sha256=SyY-wAgSxL1F0pcdW3QxVwzQjFTzn0_WNHu
42
42
  pulumi_newrelic/one_dashboard_raw.py,sha256=wclScb_x306vkpe1x2Je0nT4jsQmAx9L6atfkAKyTT0,24314
43
43
  pulumi_newrelic/outputs.py,sha256=IpwhOLBwcfvRHycFTaaoLneQcTWPWRwkeJ-HhvvJly4,605102
44
44
  pulumi_newrelic/provider.py,sha256=SggmvrccVnHfa8ylypIBe3UTufSg7xF3pJ5pGzcz0OQ,19220
45
- pulumi_newrelic/pulumi-plugin.json,sha256=oASz0y87zTmLaAZQMw4gXd2pJgUkXJMlSHivAeVGh9c,68
45
+ pulumi_newrelic/pulumi-plugin.json,sha256=pQEdF-l8mf2zR4PWiNjac_fH8nQwHoSJdoEDQhIQFjk,68
46
46
  pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
47
  pulumi_newrelic/service_level.py,sha256=atYukzatFuzkCsQ1SzFUsZuC2K7D9bL4BzKPqPe9_v8,29500
48
48
  pulumi_newrelic/user.py,sha256=vKkE7ZrvyojitScis3dGTjAG027KwOAX9D0qdBFK5Vk,19636
@@ -84,7 +84,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=dsC0aFKDrcTh73BhTUht5MfSJd
84
84
  pulumi_newrelic/synthetics/script_monitor.py,sha256=G8TEwL_PSTExY04iCQL37ZaUZWbpdlQjzi8JPTHpzUY,69713
85
85
  pulumi_newrelic/synthetics/secure_credential.py,sha256=eJT70RioesqYFZpp_mGZI1kGq86aGKrYVQ2ruxjyclU,16422
86
86
  pulumi_newrelic/synthetics/step_monitor.py,sha256=ncDR1e_phoIm1rnpn5ETDuS534qnFt6KKoqAteh9ROg,51971
87
- pulumi_newrelic-5.44.1.dist-info/METADATA,sha256=DzNbCsCR_LJimzeLGB_4akt-6y9ymsGsglM-amD9WwI,3952
88
- pulumi_newrelic-5.44.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
89
- pulumi_newrelic-5.44.1.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
- pulumi_newrelic-5.44.1.dist-info/RECORD,,
87
+ pulumi_newrelic-5.45.0.dist-info/METADATA,sha256=29DPXGccHqOIxVHG4pWwiq1_tgIycrH4W_FvYVtBy48,3952
88
+ pulumi_newrelic-5.45.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
89
+ pulumi_newrelic-5.45.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
+ pulumi_newrelic-5.45.0.dist-info/RECORD,,