pulumi-newrelic 5.25.0a1716265462__py3-none-any.whl → 5.25.0a1716510846__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.
Files changed (32) hide show
  1. pulumi_newrelic/_inputs.py +168 -42
  2. pulumi_newrelic/account_management.py +14 -14
  3. pulumi_newrelic/alert_channel.py +28 -28
  4. pulumi_newrelic/alert_condition.py +125 -84
  5. pulumi_newrelic/alert_muting_rule.py +21 -21
  6. pulumi_newrelic/alert_policy.py +27 -21
  7. pulumi_newrelic/entity_tags.py +7 -7
  8. pulumi_newrelic/get_alert_policy.py +9 -0
  9. pulumi_newrelic/get_service_level_alert_helper.py +18 -0
  10. pulumi_newrelic/infra_alert_condition.py +105 -126
  11. pulumi_newrelic/insights/event.py +13 -0
  12. pulumi_newrelic/nrql_drop_rule.py +28 -28
  13. pulumi_newrelic/one_dashboard.py +48 -42
  14. pulumi_newrelic/outputs.py +168 -42
  15. pulumi_newrelic/plugins/_inputs.py +8 -8
  16. pulumi_newrelic/plugins/outputs.py +8 -8
  17. pulumi_newrelic/plugins/workload.py +28 -28
  18. pulumi_newrelic/pulumi-plugin.json +1 -1
  19. pulumi_newrelic/service_level.py +79 -0
  20. pulumi_newrelic/synthetics/alert_condition.py +42 -14
  21. pulumi_newrelic/synthetics/broken_links_monitor.py +18 -0
  22. pulumi_newrelic/synthetics/cert_check_monitor.py +18 -0
  23. pulumi_newrelic/synthetics/get_secure_credential.py +8 -0
  24. pulumi_newrelic/synthetics/monitor.py +4 -0
  25. pulumi_newrelic/synthetics/multi_location_alert_condition.py +63 -49
  26. pulumi_newrelic/synthetics/script_monitor.py +4 -0
  27. pulumi_newrelic/synthetics/secure_credential.py +14 -21
  28. pulumi_newrelic/synthetics/step_monitor.py +18 -0
  29. {pulumi_newrelic-5.25.0a1716265462.dist-info → pulumi_newrelic-5.25.0a1716510846.dist-info}/METADATA +1 -1
  30. {pulumi_newrelic-5.25.0a1716265462.dist-info → pulumi_newrelic-5.25.0a1716510846.dist-info}/RECORD +32 -32
  31. {pulumi_newrelic-5.25.0a1716265462.dist-info → pulumi_newrelic-5.25.0a1716510846.dist-info}/WHEEL +0 -0
  32. {pulumi_newrelic-5.25.0a1716265462.dist-info → pulumi_newrelic-5.25.0a1716510846.dist-info}/top_level.txt +0 -0
@@ -603,8 +603,8 @@ class AlertMutingRuleConditionArgs:
603
603
  conditions: pulumi.Input[Sequence[pulumi.Input['AlertMutingRuleConditionConditionArgs']]],
604
604
  operator: pulumi.Input[str]):
605
605
  """
606
- :param pulumi.Input[Sequence[pulumi.Input['AlertMutingRuleConditionConditionArgs']]] conditions: The individual MutingRuleConditions within the group.
607
- :param pulumi.Input[str] operator: The operator used to combine all the MutingRuleConditions within the group.
606
+ :param pulumi.Input[Sequence[pulumi.Input['AlertMutingRuleConditionConditionArgs']]] conditions: The individual MutingRuleConditions within the group. See Nested conditions blocks below for details.
607
+ :param pulumi.Input[str] operator: The operator used to combine all the MutingRuleConditions within the group. Valid values are `AND`, `OR`.
608
608
  """
609
609
  pulumi.set(__self__, "conditions", conditions)
610
610
  pulumi.set(__self__, "operator", operator)
@@ -613,7 +613,7 @@ class AlertMutingRuleConditionArgs:
613
613
  @pulumi.getter
614
614
  def conditions(self) -> pulumi.Input[Sequence[pulumi.Input['AlertMutingRuleConditionConditionArgs']]]:
615
615
  """
616
- The individual MutingRuleConditions within the group.
616
+ The individual MutingRuleConditions within the group. See Nested conditions blocks below for details.
617
617
  """
618
618
  return pulumi.get(self, "conditions")
619
619
 
@@ -625,7 +625,7 @@ class AlertMutingRuleConditionArgs:
625
625
  @pulumi.getter
626
626
  def operator(self) -> pulumi.Input[str]:
627
627
  """
628
- The operator used to combine all the MutingRuleConditions within the group.
628
+ The operator used to combine all the MutingRuleConditions within the group. Valid values are `AND`, `OR`.
629
629
  """
630
630
  return pulumi.get(self, "operator")
631
631
 
@@ -700,6 +700,7 @@ class AlertMutingRuleScheduleArgs:
700
700
  :param pulumi.Input[str] time_zone: The time zone that applies to the MutingRule schedule.
701
701
  :param pulumi.Input[str] end_repeat: The datetime stamp when the muting rule schedule stops repeating. This is in local ISO 8601 format without an offset. Example: '2020-07-10T15:00:00'. Conflicts with `repeat_count`
702
702
  :param pulumi.Input[str] end_time: The datetime stamp that represents when the muting rule ends. This is in local ISO 8601 format without an offset. Example: '2020-07-15T14:30:00'
703
+ * `timeZone` (Required) The time zone that applies to the muting rule schedule. Example: 'America/Los_Angeles'. See https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
703
704
  :param pulumi.Input[str] repeat: The frequency the muting rule schedule repeats. If it does not repeat, omit this field. Options are DAILY, WEEKLY, MONTHLY
704
705
  :param pulumi.Input[int] repeat_count: The number of times the muting rule schedule repeats. This includes the original schedule. For example, a repeatCount of 2 will recur one time. Conflicts with `end_repeat`
705
706
  :param pulumi.Input[str] start_time: The datetime stamp that represents when the muting rule starts. This is in local ISO 8601 format without an offset. Example: '2020-07-08T14:30:00'
@@ -748,6 +749,7 @@ class AlertMutingRuleScheduleArgs:
748
749
  def end_time(self) -> Optional[pulumi.Input[str]]:
749
750
  """
750
751
  The datetime stamp that represents when the muting rule ends. This is in local ISO 8601 format without an offset. Example: '2020-07-15T14:30:00'
752
+ * `timeZone` (Required) The time zone that applies to the muting rule schedule. Example: 'America/Los_Angeles'. See https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
751
753
  """
752
754
  return pulumi.get(self, "end_time")
753
755
 
@@ -1776,8 +1778,8 @@ class OneDashboardPageArgs:
1776
1778
  widget_stacked_bars: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarArgs']]]] = None,
1777
1779
  widget_tables: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableArgs']]]] = None):
1778
1780
  """
1779
- :param pulumi.Input[str] name: (Required) The variable identifier.
1780
- :param pulumi.Input[str] description: (Optional) Brief text describing the page.
1781
+ :param pulumi.Input[str] name: The title of the dashboard.
1782
+ :param pulumi.Input[str] description: Brief text describing the dashboard.
1781
1783
  :param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
1782
1784
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaArgs']]] widget_areas: An area widget.
1783
1785
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBarArgs']]] widget_bars: A bar widget.
@@ -1832,7 +1834,7 @@ class OneDashboardPageArgs:
1832
1834
  @pulumi.getter
1833
1835
  def name(self) -> pulumi.Input[str]:
1834
1836
  """
1835
- (Required) The variable identifier.
1837
+ The title of the dashboard.
1836
1838
  """
1837
1839
  return pulumi.get(self, "name")
1838
1840
 
@@ -1844,7 +1846,7 @@ class OneDashboardPageArgs:
1844
1846
  @pulumi.getter
1845
1847
  def description(self) -> Optional[pulumi.Input[str]]:
1846
1848
  """
1847
- (Optional) Brief text describing the page.
1849
+ Brief text describing the dashboard.
1848
1850
  """
1849
1851
  return pulumi.get(self, "description")
1850
1852
 
@@ -2357,7 +2359,7 @@ class OneDashboardPageWidgetAreaNrqlQueryArgs:
2357
2359
  account_id: Optional[pulumi.Input[str]] = None):
2358
2360
  """
2359
2361
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
2360
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
2362
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
2361
2363
  """
2362
2364
  pulumi.set(__self__, "query", query)
2363
2365
  if account_id is not None:
@@ -2379,7 +2381,7 @@ class OneDashboardPageWidgetAreaNrqlQueryArgs:
2379
2381
  @pulumi.getter(name="accountId")
2380
2382
  def account_id(self) -> Optional[pulumi.Input[str]]:
2381
2383
  """
2382
- The account id used for the NRQL query.
2384
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
2383
2385
  """
2384
2386
  return pulumi.get(self, "account_id")
2385
2387
 
@@ -2900,7 +2902,7 @@ class OneDashboardPageWidgetBarNrqlQueryArgs:
2900
2902
  account_id: Optional[pulumi.Input[str]] = None):
2901
2903
  """
2902
2904
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
2903
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
2905
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
2904
2906
  """
2905
2907
  pulumi.set(__self__, "query", query)
2906
2908
  if account_id is not None:
@@ -2922,7 +2924,7 @@ class OneDashboardPageWidgetBarNrqlQueryArgs:
2922
2924
  @pulumi.getter(name="accountId")
2923
2925
  def account_id(self) -> Optional[pulumi.Input[str]]:
2924
2926
  """
2925
- The account id used for the NRQL query.
2927
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
2926
2928
  """
2927
2929
  return pulumi.get(self, "account_id")
2928
2930
 
@@ -3443,7 +3445,7 @@ class OneDashboardPageWidgetBillboardNrqlQueryArgs:
3443
3445
  account_id: Optional[pulumi.Input[str]] = None):
3444
3446
  """
3445
3447
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
3446
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
3448
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
3447
3449
  """
3448
3450
  pulumi.set(__self__, "query", query)
3449
3451
  if account_id is not None:
@@ -3465,7 +3467,7 @@ class OneDashboardPageWidgetBillboardNrqlQueryArgs:
3465
3467
  @pulumi.getter(name="accountId")
3466
3468
  def account_id(self) -> Optional[pulumi.Input[str]]:
3467
3469
  """
3468
- The account id used for the NRQL query.
3470
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
3469
3471
  """
3470
3472
  return pulumi.get(self, "account_id")
3471
3473
 
@@ -3969,7 +3971,7 @@ class OneDashboardPageWidgetBulletNrqlQueryArgs:
3969
3971
  account_id: Optional[pulumi.Input[str]] = None):
3970
3972
  """
3971
3973
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
3972
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
3974
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
3973
3975
  """
3974
3976
  pulumi.set(__self__, "query", query)
3975
3977
  if account_id is not None:
@@ -3991,7 +3993,7 @@ class OneDashboardPageWidgetBulletNrqlQueryArgs:
3991
3993
  @pulumi.getter(name="accountId")
3992
3994
  def account_id(self) -> Optional[pulumi.Input[str]]:
3993
3995
  """
3994
- The account id used for the NRQL query.
3996
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
3995
3997
  """
3996
3998
  return pulumi.get(self, "account_id")
3997
3999
 
@@ -4480,7 +4482,7 @@ class OneDashboardPageWidgetFunnelNrqlQueryArgs:
4480
4482
  account_id: Optional[pulumi.Input[str]] = None):
4481
4483
  """
4482
4484
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
4483
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
4485
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
4484
4486
  """
4485
4487
  pulumi.set(__self__, "query", query)
4486
4488
  if account_id is not None:
@@ -4502,7 +4504,7 @@ class OneDashboardPageWidgetFunnelNrqlQueryArgs:
4502
4504
  @pulumi.getter(name="accountId")
4503
4505
  def account_id(self) -> Optional[pulumi.Input[str]]:
4504
4506
  """
4505
- The account id used for the NRQL query.
4507
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
4506
4508
  """
4507
4509
  return pulumi.get(self, "account_id")
4508
4510
 
@@ -5023,7 +5025,7 @@ class OneDashboardPageWidgetHeatmapNrqlQueryArgs:
5023
5025
  account_id: Optional[pulumi.Input[str]] = None):
5024
5026
  """
5025
5027
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
5026
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
5028
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
5027
5029
  """
5028
5030
  pulumi.set(__self__, "query", query)
5029
5031
  if account_id is not None:
@@ -5045,7 +5047,7 @@ class OneDashboardPageWidgetHeatmapNrqlQueryArgs:
5045
5047
  @pulumi.getter(name="accountId")
5046
5048
  def account_id(self) -> Optional[pulumi.Input[str]]:
5047
5049
  """
5048
- The account id used for the NRQL query.
5050
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
5049
5051
  """
5050
5052
  return pulumi.get(self, "account_id")
5051
5053
 
@@ -5534,7 +5536,7 @@ class OneDashboardPageWidgetHistogramNrqlQueryArgs:
5534
5536
  account_id: Optional[pulumi.Input[str]] = None):
5535
5537
  """
5536
5538
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
5537
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
5539
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
5538
5540
  """
5539
5541
  pulumi.set(__self__, "query", query)
5540
5542
  if account_id is not None:
@@ -5556,7 +5558,7 @@ class OneDashboardPageWidgetHistogramNrqlQueryArgs:
5556
5558
  @pulumi.getter(name="accountId")
5557
5559
  def account_id(self) -> Optional[pulumi.Input[str]]:
5558
5560
  """
5559
- The account id used for the NRQL query.
5561
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
5560
5562
  """
5561
5563
  return pulumi.get(self, "account_id")
5562
5564
 
@@ -6045,7 +6047,7 @@ class OneDashboardPageWidgetJsonNrqlQueryArgs:
6045
6047
  account_id: Optional[pulumi.Input[str]] = None):
6046
6048
  """
6047
6049
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
6048
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
6050
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
6049
6051
  """
6050
6052
  pulumi.set(__self__, "query", query)
6051
6053
  if account_id is not None:
@@ -6067,7 +6069,7 @@ class OneDashboardPageWidgetJsonNrqlQueryArgs:
6067
6069
  @pulumi.getter(name="accountId")
6068
6070
  def account_id(self) -> Optional[pulumi.Input[str]]:
6069
6071
  """
6070
- The account id used for the NRQL query.
6072
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
6071
6073
  """
6072
6074
  return pulumi.get(self, "account_id")
6073
6075
 
@@ -6572,7 +6574,7 @@ class OneDashboardPageWidgetLineNrqlQueryArgs:
6572
6574
  account_id: Optional[pulumi.Input[str]] = None):
6573
6575
  """
6574
6576
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
6575
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
6577
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
6576
6578
  """
6577
6579
  pulumi.set(__self__, "query", query)
6578
6580
  if account_id is not None:
@@ -6594,7 +6596,7 @@ class OneDashboardPageWidgetLineNrqlQueryArgs:
6594
6596
  @pulumi.getter(name="accountId")
6595
6597
  def account_id(self) -> Optional[pulumi.Input[str]]:
6596
6598
  """
6597
- The account id used for the NRQL query.
6599
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
6598
6600
  """
6599
6601
  return pulumi.get(self, "account_id")
6600
6602
 
@@ -7083,7 +7085,7 @@ class OneDashboardPageWidgetLogTableNrqlQueryArgs:
7083
7085
  account_id: Optional[pulumi.Input[str]] = None):
7084
7086
  """
7085
7087
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
7086
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
7088
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
7087
7089
  """
7088
7090
  pulumi.set(__self__, "query", query)
7089
7091
  if account_id is not None:
@@ -7105,7 +7107,7 @@ class OneDashboardPageWidgetLogTableNrqlQueryArgs:
7105
7107
  @pulumi.getter(name="accountId")
7106
7108
  def account_id(self) -> Optional[pulumi.Input[str]]:
7107
7109
  """
7108
- The account id used for the NRQL query.
7110
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
7109
7111
  """
7110
7112
  return pulumi.get(self, "account_id")
7111
7113
 
@@ -8099,7 +8101,7 @@ class OneDashboardPageWidgetPyNrqlQueryArgs:
8099
8101
  account_id: Optional[pulumi.Input[str]] = None):
8100
8102
  """
8101
8103
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
8102
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
8104
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
8103
8105
  """
8104
8106
  pulumi.set(__self__, "query", query)
8105
8107
  if account_id is not None:
@@ -8121,7 +8123,7 @@ class OneDashboardPageWidgetPyNrqlQueryArgs:
8121
8123
  @pulumi.getter(name="accountId")
8122
8124
  def account_id(self) -> Optional[pulumi.Input[str]]:
8123
8125
  """
8124
- The account id used for the NRQL query.
8126
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
8125
8127
  """
8126
8128
  return pulumi.get(self, "account_id")
8127
8129
 
@@ -8610,7 +8612,7 @@ class OneDashboardPageWidgetStackedBarNrqlQueryArgs:
8610
8612
  account_id: Optional[pulumi.Input[str]] = None):
8611
8613
  """
8612
8614
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
8613
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
8615
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
8614
8616
  """
8615
8617
  pulumi.set(__self__, "query", query)
8616
8618
  if account_id is not None:
@@ -8632,7 +8634,7 @@ class OneDashboardPageWidgetStackedBarNrqlQueryArgs:
8632
8634
  @pulumi.getter(name="accountId")
8633
8635
  def account_id(self) -> Optional[pulumi.Input[str]]:
8634
8636
  """
8635
- The account id used for the NRQL query.
8637
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
8636
8638
  """
8637
8639
  return pulumi.get(self, "account_id")
8638
8640
 
@@ -9153,7 +9155,7 @@ class OneDashboardPageWidgetTableNrqlQueryArgs:
9153
9155
  account_id: Optional[pulumi.Input[str]] = None):
9154
9156
  """
9155
9157
  :param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
9156
- :param pulumi.Input[str] account_id: The account id used for the NRQL query.
9158
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
9157
9159
  """
9158
9160
  pulumi.set(__self__, "query", query)
9159
9161
  if account_id is not None:
@@ -9175,7 +9177,7 @@ class OneDashboardPageWidgetTableNrqlQueryArgs:
9175
9177
  @pulumi.getter(name="accountId")
9176
9178
  def account_id(self) -> Optional[pulumi.Input[str]]:
9177
9179
  """
9178
- The account id used for the NRQL query.
9180
+ Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
9179
9181
  """
9180
9182
  return pulumi.get(self, "account_id")
9181
9183
 
@@ -9569,7 +9571,7 @@ class OneDashboardVariableArgs:
9569
9571
  nrql_query: Optional[pulumi.Input['OneDashboardVariableNrqlQueryArgs']] = None,
9570
9572
  options: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableOptionArgs']]]] = None):
9571
9573
  """
9572
- :param pulumi.Input[str] name: (Required) The variable identifier.
9574
+ :param pulumi.Input[str] name: The title of the dashboard.
9573
9575
  :param pulumi.Input[str] replacement_strategy: (Optional) Indicates the strategy to apply when replacing a variable in a NRQL query. One of `default`, `identifier`, `number` or `string`.
9574
9576
  :param pulumi.Input[str] title: (Optional) A human-friendly display string for this value.
9575
9577
  :param pulumi.Input[str] type: (Required) Specifies the data type of the variable and where its possible values may come from. One of `enum`, `nrql` or `string`
@@ -9598,7 +9600,7 @@ class OneDashboardVariableArgs:
9598
9600
  @pulumi.getter
9599
9601
  def name(self) -> pulumi.Input[str]:
9600
9602
  """
9601
- (Required) The variable identifier.
9603
+ The title of the dashboard.
9602
9604
  """
9603
9605
  return pulumi.get(self, "name")
9604
9606
 
@@ -9809,6 +9811,13 @@ class ServiceLevelEventsArgs:
9809
9811
  valid_events: pulumi.Input['ServiceLevelEventsValidEventsArgs'],
9810
9812
  bad_events: Optional[pulumi.Input['ServiceLevelEventsBadEventsArgs']] = None,
9811
9813
  good_events: Optional[pulumi.Input['ServiceLevelEventsGoodEventsArgs']] = None):
9814
+ """
9815
+ :param pulumi.Input[str] account_id: The ID of the account where the entity (e.g, APM Service, Browser application, Workload, etc.) belongs to,
9816
+ and that contains the NRDB data for the SLI/SLO calculations. Note that changing the account ID will force a new resource.
9817
+ :param pulumi.Input['ServiceLevelEventsValidEventsArgs'] valid_events: The definition of valid requests.
9818
+ :param pulumi.Input['ServiceLevelEventsBadEventsArgs'] bad_events: The definition of the bad responses. If you define an SLI from valid and bad events, you must leave the good events argument empty.
9819
+ :param pulumi.Input['ServiceLevelEventsGoodEventsArgs'] good_events: The definition of good responses. If you define an SLI from valid and good events, you must leave the bad events argument empty.
9820
+ """
9812
9821
  pulumi.set(__self__, "account_id", account_id)
9813
9822
  pulumi.set(__self__, "valid_events", valid_events)
9814
9823
  if bad_events is not None:
@@ -9819,6 +9828,10 @@ class ServiceLevelEventsArgs:
9819
9828
  @property
9820
9829
  @pulumi.getter(name="accountId")
9821
9830
  def account_id(self) -> pulumi.Input[str]:
9831
+ """
9832
+ The ID of the account where the entity (e.g, APM Service, Browser application, Workload, etc.) belongs to,
9833
+ and that contains the NRDB data for the SLI/SLO calculations. Note that changing the account ID will force a new resource.
9834
+ """
9822
9835
  return pulumi.get(self, "account_id")
9823
9836
 
9824
9837
  @account_id.setter
@@ -9828,6 +9841,9 @@ class ServiceLevelEventsArgs:
9828
9841
  @property
9829
9842
  @pulumi.getter(name="validEvents")
9830
9843
  def valid_events(self) -> pulumi.Input['ServiceLevelEventsValidEventsArgs']:
9844
+ """
9845
+ The definition of valid requests.
9846
+ """
9831
9847
  return pulumi.get(self, "valid_events")
9832
9848
 
9833
9849
  @valid_events.setter
@@ -9837,6 +9853,9 @@ class ServiceLevelEventsArgs:
9837
9853
  @property
9838
9854
  @pulumi.getter(name="badEvents")
9839
9855
  def bad_events(self) -> Optional[pulumi.Input['ServiceLevelEventsBadEventsArgs']]:
9856
+ """
9857
+ The definition of the bad responses. If you define an SLI from valid and bad events, you must leave the good events argument empty.
9858
+ """
9840
9859
  return pulumi.get(self, "bad_events")
9841
9860
 
9842
9861
  @bad_events.setter
@@ -9846,6 +9865,9 @@ class ServiceLevelEventsArgs:
9846
9865
  @property
9847
9866
  @pulumi.getter(name="goodEvents")
9848
9867
  def good_events(self) -> Optional[pulumi.Input['ServiceLevelEventsGoodEventsArgs']]:
9868
+ """
9869
+ The definition of good responses. If you define an SLI from valid and good events, you must leave the bad events argument empty.
9870
+ """
9849
9871
  return pulumi.get(self, "good_events")
9850
9872
 
9851
9873
  @good_events.setter
@@ -9859,6 +9881,12 @@ class ServiceLevelEventsBadEventsArgs:
9859
9881
  from_: pulumi.Input[str],
9860
9882
  select: Optional[pulumi.Input['ServiceLevelEventsBadEventsSelectArgs']] = None,
9861
9883
  where: Optional[pulumi.Input[str]] = None):
9884
+ """
9885
+ :param pulumi.Input[str] from_: The event type where NRDB data will be fetched from.
9886
+ :param pulumi.Input['ServiceLevelEventsBadEventsSelectArgs'] select: The NRQL SELECT clause to aggregate events.
9887
+ :param pulumi.Input[str] where: A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
9888
+ a particular entity and returned an error).
9889
+ """
9862
9890
  pulumi.set(__self__, "from_", from_)
9863
9891
  if select is not None:
9864
9892
  pulumi.set(__self__, "select", select)
@@ -9868,6 +9896,9 @@ class ServiceLevelEventsBadEventsArgs:
9868
9896
  @property
9869
9897
  @pulumi.getter(name="from")
9870
9898
  def from_(self) -> pulumi.Input[str]:
9899
+ """
9900
+ The event type where NRDB data will be fetched from.
9901
+ """
9871
9902
  return pulumi.get(self, "from_")
9872
9903
 
9873
9904
  @from_.setter
@@ -9877,6 +9908,9 @@ class ServiceLevelEventsBadEventsArgs:
9877
9908
  @property
9878
9909
  @pulumi.getter
9879
9910
  def select(self) -> Optional[pulumi.Input['ServiceLevelEventsBadEventsSelectArgs']]:
9911
+ """
9912
+ The NRQL SELECT clause to aggregate events.
9913
+ """
9880
9914
  return pulumi.get(self, "select")
9881
9915
 
9882
9916
  @select.setter
@@ -9886,6 +9920,10 @@ class ServiceLevelEventsBadEventsArgs:
9886
9920
  @property
9887
9921
  @pulumi.getter
9888
9922
  def where(self) -> Optional[pulumi.Input[str]]:
9923
+ """
9924
+ A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
9925
+ a particular entity and returned an error).
9926
+ """
9889
9927
  return pulumi.get(self, "where")
9890
9928
 
9891
9929
  @where.setter
@@ -9900,7 +9938,9 @@ class ServiceLevelEventsBadEventsSelectArgs:
9900
9938
  attribute: Optional[pulumi.Input[str]] = None,
9901
9939
  threshold: Optional[pulumi.Input[float]] = None):
9902
9940
  """
9903
- :param pulumi.Input[float] threshold: The event threshold to use in the SELECT clause
9941
+ :param pulumi.Input[str] function: The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
9942
+ :param pulumi.Input[str] attribute: The event attribute to use in the SELECT clause.
9943
+ :param pulumi.Input[float] threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
9904
9944
  """
9905
9945
  pulumi.set(__self__, "function", function)
9906
9946
  if attribute is not None:
@@ -9911,6 +9951,9 @@ class ServiceLevelEventsBadEventsSelectArgs:
9911
9951
  @property
9912
9952
  @pulumi.getter
9913
9953
  def function(self) -> pulumi.Input[str]:
9954
+ """
9955
+ The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
9956
+ """
9914
9957
  return pulumi.get(self, "function")
9915
9958
 
9916
9959
  @function.setter
@@ -9920,6 +9963,9 @@ class ServiceLevelEventsBadEventsSelectArgs:
9920
9963
  @property
9921
9964
  @pulumi.getter
9922
9965
  def attribute(self) -> Optional[pulumi.Input[str]]:
9966
+ """
9967
+ The event attribute to use in the SELECT clause.
9968
+ """
9923
9969
  return pulumi.get(self, "attribute")
9924
9970
 
9925
9971
  @attribute.setter
@@ -9930,7 +9976,7 @@ class ServiceLevelEventsBadEventsSelectArgs:
9930
9976
  @pulumi.getter
9931
9977
  def threshold(self) -> Optional[pulumi.Input[float]]:
9932
9978
  """
9933
- The event threshold to use in the SELECT clause
9979
+ Limit for values to be counter by `GET_CDF_COUNT` function.
9934
9980
  """
9935
9981
  return pulumi.get(self, "threshold")
9936
9982
 
@@ -9945,6 +9991,12 @@ class ServiceLevelEventsGoodEventsArgs:
9945
9991
  from_: pulumi.Input[str],
9946
9992
  select: Optional[pulumi.Input['ServiceLevelEventsGoodEventsSelectArgs']] = None,
9947
9993
  where: Optional[pulumi.Input[str]] = None):
9994
+ """
9995
+ :param pulumi.Input[str] from_: The event type where NRDB data will be fetched from.
9996
+ :param pulumi.Input['ServiceLevelEventsGoodEventsSelectArgs'] select: The NRQL SELECT clause to aggregate events.
9997
+ :param pulumi.Input[str] where: A filter that narrows down the NRDB events just to those that are considered good responses (e.g, those that refer to
9998
+ a particular entity and were successful).
9999
+ """
9948
10000
  pulumi.set(__self__, "from_", from_)
9949
10001
  if select is not None:
9950
10002
  pulumi.set(__self__, "select", select)
@@ -9954,6 +10006,9 @@ class ServiceLevelEventsGoodEventsArgs:
9954
10006
  @property
9955
10007
  @pulumi.getter(name="from")
9956
10008
  def from_(self) -> pulumi.Input[str]:
10009
+ """
10010
+ The event type where NRDB data will be fetched from.
10011
+ """
9957
10012
  return pulumi.get(self, "from_")
9958
10013
 
9959
10014
  @from_.setter
@@ -9963,6 +10018,9 @@ class ServiceLevelEventsGoodEventsArgs:
9963
10018
  @property
9964
10019
  @pulumi.getter
9965
10020
  def select(self) -> Optional[pulumi.Input['ServiceLevelEventsGoodEventsSelectArgs']]:
10021
+ """
10022
+ The NRQL SELECT clause to aggregate events.
10023
+ """
9966
10024
  return pulumi.get(self, "select")
9967
10025
 
9968
10026
  @select.setter
@@ -9972,6 +10030,10 @@ class ServiceLevelEventsGoodEventsArgs:
9972
10030
  @property
9973
10031
  @pulumi.getter
9974
10032
  def where(self) -> Optional[pulumi.Input[str]]:
10033
+ """
10034
+ A filter that narrows down the NRDB events just to those that are considered good responses (e.g, those that refer to
10035
+ a particular entity and were successful).
10036
+ """
9975
10037
  return pulumi.get(self, "where")
9976
10038
 
9977
10039
  @where.setter
@@ -9986,7 +10048,9 @@ class ServiceLevelEventsGoodEventsSelectArgs:
9986
10048
  attribute: Optional[pulumi.Input[str]] = None,
9987
10049
  threshold: Optional[pulumi.Input[float]] = None):
9988
10050
  """
9989
- :param pulumi.Input[float] threshold: The event threshold to use in the SELECT clause
10051
+ :param pulumi.Input[str] function: The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
10052
+ :param pulumi.Input[str] attribute: The event attribute to use in the SELECT clause.
10053
+ :param pulumi.Input[float] threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
9990
10054
  """
9991
10055
  pulumi.set(__self__, "function", function)
9992
10056
  if attribute is not None:
@@ -9997,6 +10061,9 @@ class ServiceLevelEventsGoodEventsSelectArgs:
9997
10061
  @property
9998
10062
  @pulumi.getter
9999
10063
  def function(self) -> pulumi.Input[str]:
10064
+ """
10065
+ The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
10066
+ """
10000
10067
  return pulumi.get(self, "function")
10001
10068
 
10002
10069
  @function.setter
@@ -10006,6 +10073,9 @@ class ServiceLevelEventsGoodEventsSelectArgs:
10006
10073
  @property
10007
10074
  @pulumi.getter
10008
10075
  def attribute(self) -> Optional[pulumi.Input[str]]:
10076
+ """
10077
+ The event attribute to use in the SELECT clause.
10078
+ """
10009
10079
  return pulumi.get(self, "attribute")
10010
10080
 
10011
10081
  @attribute.setter
@@ -10016,7 +10086,7 @@ class ServiceLevelEventsGoodEventsSelectArgs:
10016
10086
  @pulumi.getter
10017
10087
  def threshold(self) -> Optional[pulumi.Input[float]]:
10018
10088
  """
10019
- The event threshold to use in the SELECT clause
10089
+ Limit for values to be counter by `GET_CDF_COUNT` function.
10020
10090
  """
10021
10091
  return pulumi.get(self, "threshold")
10022
10092
 
@@ -10031,6 +10101,11 @@ class ServiceLevelEventsValidEventsArgs:
10031
10101
  from_: pulumi.Input[str],
10032
10102
  select: Optional[pulumi.Input['ServiceLevelEventsValidEventsSelectArgs']] = None,
10033
10103
  where: Optional[pulumi.Input[str]] = None):
10104
+ """
10105
+ :param pulumi.Input[str] from_: The event type where NRDB data will be fetched from.
10106
+ :param pulumi.Input['ServiceLevelEventsValidEventsSelectArgs'] select: The NRQL SELECT clause to aggregate events.
10107
+ :param pulumi.Input[str] where: A filter that specifies all the NRDB events that are considered in this SLI (e.g, those that refer to a particular entity).
10108
+ """
10034
10109
  pulumi.set(__self__, "from_", from_)
10035
10110
  if select is not None:
10036
10111
  pulumi.set(__self__, "select", select)
@@ -10040,6 +10115,9 @@ class ServiceLevelEventsValidEventsArgs:
10040
10115
  @property
10041
10116
  @pulumi.getter(name="from")
10042
10117
  def from_(self) -> pulumi.Input[str]:
10118
+ """
10119
+ The event type where NRDB data will be fetched from.
10120
+ """
10043
10121
  return pulumi.get(self, "from_")
10044
10122
 
10045
10123
  @from_.setter
@@ -10049,6 +10127,9 @@ class ServiceLevelEventsValidEventsArgs:
10049
10127
  @property
10050
10128
  @pulumi.getter
10051
10129
  def select(self) -> Optional[pulumi.Input['ServiceLevelEventsValidEventsSelectArgs']]:
10130
+ """
10131
+ The NRQL SELECT clause to aggregate events.
10132
+ """
10052
10133
  return pulumi.get(self, "select")
10053
10134
 
10054
10135
  @select.setter
@@ -10058,6 +10139,9 @@ class ServiceLevelEventsValidEventsArgs:
10058
10139
  @property
10059
10140
  @pulumi.getter
10060
10141
  def where(self) -> Optional[pulumi.Input[str]]:
10142
+ """
10143
+ A filter that specifies all the NRDB events that are considered in this SLI (e.g, those that refer to a particular entity).
10144
+ """
10061
10145
  return pulumi.get(self, "where")
10062
10146
 
10063
10147
  @where.setter
@@ -10072,7 +10156,9 @@ class ServiceLevelEventsValidEventsSelectArgs:
10072
10156
  attribute: Optional[pulumi.Input[str]] = None,
10073
10157
  threshold: Optional[pulumi.Input[float]] = None):
10074
10158
  """
10075
- :param pulumi.Input[float] threshold: The event threshold to use in the SELECT clause
10159
+ :param pulumi.Input[str] function: The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
10160
+ :param pulumi.Input[str] attribute: The event attribute to use in the SELECT clause.
10161
+ :param pulumi.Input[float] threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
10076
10162
  """
10077
10163
  pulumi.set(__self__, "function", function)
10078
10164
  if attribute is not None:
@@ -10083,6 +10169,9 @@ class ServiceLevelEventsValidEventsSelectArgs:
10083
10169
  @property
10084
10170
  @pulumi.getter
10085
10171
  def function(self) -> pulumi.Input[str]:
10172
+ """
10173
+ The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
10174
+ """
10086
10175
  return pulumi.get(self, "function")
10087
10176
 
10088
10177
  @function.setter
@@ -10092,6 +10181,9 @@ class ServiceLevelEventsValidEventsSelectArgs:
10092
10181
  @property
10093
10182
  @pulumi.getter
10094
10183
  def attribute(self) -> Optional[pulumi.Input[str]]:
10184
+ """
10185
+ The event attribute to use in the SELECT clause.
10186
+ """
10095
10187
  return pulumi.get(self, "attribute")
10096
10188
 
10097
10189
  @attribute.setter
@@ -10102,7 +10194,7 @@ class ServiceLevelEventsValidEventsSelectArgs:
10102
10194
  @pulumi.getter
10103
10195
  def threshold(self) -> Optional[pulumi.Input[float]]:
10104
10196
  """
10105
- The event threshold to use in the SELECT clause
10197
+ Limit for values to be counter by `GET_CDF_COUNT` function.
10106
10198
  """
10107
10199
  return pulumi.get(self, "threshold")
10108
10200
 
@@ -10118,6 +10210,12 @@ class ServiceLevelObjectiveArgs:
10118
10210
  time_window: pulumi.Input['ServiceLevelObjectiveTimeWindowArgs'],
10119
10211
  description: Optional[pulumi.Input[str]] = None,
10120
10212
  name: Optional[pulumi.Input[str]] = None):
10213
+ """
10214
+ :param pulumi.Input[float] target: The target of the objective, valid values between `0` and `100`. Up to 5 decimals accepted.
10215
+ :param pulumi.Input['ServiceLevelObjectiveTimeWindowArgs'] time_window: Time window is the period of the objective.
10216
+ :param pulumi.Input[str] description: The description of the SLI.
10217
+ :param pulumi.Input[str] name: A short name for the SLI that will help anyone understand what it is about.
10218
+ """
10121
10219
  pulumi.set(__self__, "target", target)
10122
10220
  pulumi.set(__self__, "time_window", time_window)
10123
10221
  if description is not None:
@@ -10128,6 +10226,9 @@ class ServiceLevelObjectiveArgs:
10128
10226
  @property
10129
10227
  @pulumi.getter
10130
10228
  def target(self) -> pulumi.Input[float]:
10229
+ """
10230
+ The target of the objective, valid values between `0` and `100`. Up to 5 decimals accepted.
10231
+ """
10131
10232
  return pulumi.get(self, "target")
10132
10233
 
10133
10234
  @target.setter
@@ -10137,6 +10238,9 @@ class ServiceLevelObjectiveArgs:
10137
10238
  @property
10138
10239
  @pulumi.getter(name="timeWindow")
10139
10240
  def time_window(self) -> pulumi.Input['ServiceLevelObjectiveTimeWindowArgs']:
10241
+ """
10242
+ Time window is the period of the objective.
10243
+ """
10140
10244
  return pulumi.get(self, "time_window")
10141
10245
 
10142
10246
  @time_window.setter
@@ -10146,6 +10250,9 @@ class ServiceLevelObjectiveArgs:
10146
10250
  @property
10147
10251
  @pulumi.getter
10148
10252
  def description(self) -> Optional[pulumi.Input[str]]:
10253
+ """
10254
+ The description of the SLI.
10255
+ """
10149
10256
  return pulumi.get(self, "description")
10150
10257
 
10151
10258
  @description.setter
@@ -10155,6 +10262,9 @@ class ServiceLevelObjectiveArgs:
10155
10262
  @property
10156
10263
  @pulumi.getter
10157
10264
  def name(self) -> Optional[pulumi.Input[str]]:
10265
+ """
10266
+ A short name for the SLI that will help anyone understand what it is about.
10267
+ """
10158
10268
  return pulumi.get(self, "name")
10159
10269
 
10160
10270
  @name.setter
@@ -10166,11 +10276,17 @@ class ServiceLevelObjectiveArgs:
10166
10276
  class ServiceLevelObjectiveTimeWindowArgs:
10167
10277
  def __init__(__self__, *,
10168
10278
  rolling: pulumi.Input['ServiceLevelObjectiveTimeWindowRollingArgs']):
10279
+ """
10280
+ :param pulumi.Input['ServiceLevelObjectiveTimeWindowRollingArgs'] rolling: Rolling window.
10281
+ """
10169
10282
  pulumi.set(__self__, "rolling", rolling)
10170
10283
 
10171
10284
  @property
10172
10285
  @pulumi.getter
10173
10286
  def rolling(self) -> pulumi.Input['ServiceLevelObjectiveTimeWindowRollingArgs']:
10287
+ """
10288
+ Rolling window.
10289
+ """
10174
10290
  return pulumi.get(self, "rolling")
10175
10291
 
10176
10292
  @rolling.setter
@@ -10183,12 +10299,19 @@ class ServiceLevelObjectiveTimeWindowRollingArgs:
10183
10299
  def __init__(__self__, *,
10184
10300
  count: pulumi.Input[int],
10185
10301
  unit: pulumi.Input[str]):
10302
+ """
10303
+ :param pulumi.Input[int] count: Valid values are `1`, `7` and `28`.
10304
+ :param pulumi.Input[str] unit: The only supported value is `DAY`.
10305
+ """
10186
10306
  pulumi.set(__self__, "count", count)
10187
10307
  pulumi.set(__self__, "unit", unit)
10188
10308
 
10189
10309
  @property
10190
10310
  @pulumi.getter
10191
10311
  def count(self) -> pulumi.Input[int]:
10312
+ """
10313
+ Valid values are `1`, `7` and `28`.
10314
+ """
10192
10315
  return pulumi.get(self, "count")
10193
10316
 
10194
10317
  @count.setter
@@ -10198,6 +10321,9 @@ class ServiceLevelObjectiveTimeWindowRollingArgs:
10198
10321
  @property
10199
10322
  @pulumi.getter
10200
10323
  def unit(self) -> pulumi.Input[str]:
10324
+ """
10325
+ The only supported value is `DAY`.
10326
+ """
10201
10327
  return pulumi.get(self, "unit")
10202
10328
 
10203
10329
  @unit.setter