pulumi-newrelic 5.25.0__py3-none-any.whl → 5.25.0a1715760714__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 (33) hide show
  1. pulumi_newrelic/_inputs.py +43 -449
  2. pulumi_newrelic/account_management.py +14 -14
  3. pulumi_newrelic/alert_channel.py +28 -28
  4. pulumi_newrelic/alert_condition.py +84 -125
  5. pulumi_newrelic/alert_muting_rule.py +21 -21
  6. pulumi_newrelic/alert_policy.py +21 -27
  7. pulumi_newrelic/entity_tags.py +7 -7
  8. pulumi_newrelic/get_alert_policy.py +0 -9
  9. pulumi_newrelic/get_service_level_alert_helper.py +0 -18
  10. pulumi_newrelic/infra_alert_condition.py +126 -105
  11. pulumi_newrelic/insights/event.py +0 -13
  12. pulumi_newrelic/notification_destination.py +10 -14
  13. pulumi_newrelic/nrql_drop_rule.py +28 -28
  14. pulumi_newrelic/one_dashboard.py +42 -48
  15. pulumi_newrelic/outputs.py +43 -448
  16. pulumi_newrelic/plugins/_inputs.py +8 -8
  17. pulumi_newrelic/plugins/outputs.py +8 -8
  18. pulumi_newrelic/plugins/workload.py +28 -28
  19. pulumi_newrelic/pulumi-plugin.json +1 -1
  20. pulumi_newrelic/service_level.py +0 -79
  21. pulumi_newrelic/synthetics/alert_condition.py +14 -42
  22. pulumi_newrelic/synthetics/broken_links_monitor.py +0 -18
  23. pulumi_newrelic/synthetics/cert_check_monitor.py +0 -18
  24. pulumi_newrelic/synthetics/get_secure_credential.py +0 -8
  25. pulumi_newrelic/synthetics/monitor.py +0 -4
  26. pulumi_newrelic/synthetics/multi_location_alert_condition.py +49 -63
  27. pulumi_newrelic/synthetics/script_monitor.py +0 -4
  28. pulumi_newrelic/synthetics/secure_credential.py +21 -14
  29. pulumi_newrelic/synthetics/step_monitor.py +0 -18
  30. {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715760714.dist-info}/METADATA +1 -1
  31. {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715760714.dist-info}/RECORD +33 -33
  32. {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715760714.dist-info}/WHEEL +0 -0
  33. {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715760714.dist-info}/top_level.txt +0 -0
@@ -103,10 +103,8 @@ __all__ = [
103
103
  'OneDashboardPageWidgetLineNrqlQueryArgs',
104
104
  'OneDashboardPageWidgetLineNullValueArgs',
105
105
  'OneDashboardPageWidgetLineNullValueSeriesOverrideArgs',
106
- 'OneDashboardPageWidgetLineThresholdArgs',
107
106
  'OneDashboardPageWidgetLineUnitArgs',
108
107
  'OneDashboardPageWidgetLineUnitSeriesOverrideArgs',
109
- 'OneDashboardPageWidgetLineYAxisRightArgs',
110
108
  'OneDashboardPageWidgetLogTableArgs',
111
109
  'OneDashboardPageWidgetLogTableColorArgs',
112
110
  'OneDashboardPageWidgetLogTableColorSeriesOverrideArgs',
@@ -144,7 +142,6 @@ __all__ = [
144
142
  'OneDashboardPageWidgetTableNrqlQueryArgs',
145
143
  'OneDashboardPageWidgetTableNullValueArgs',
146
144
  'OneDashboardPageWidgetTableNullValueSeriesOverrideArgs',
147
- 'OneDashboardPageWidgetTableThresholdArgs',
148
145
  'OneDashboardPageWidgetTableUnitArgs',
149
146
  'OneDashboardPageWidgetTableUnitSeriesOverrideArgs',
150
147
  'OneDashboardRawPageArgs',
@@ -606,8 +603,8 @@ class AlertMutingRuleConditionArgs:
606
603
  conditions: pulumi.Input[Sequence[pulumi.Input['AlertMutingRuleConditionConditionArgs']]],
607
604
  operator: pulumi.Input[str]):
608
605
  """
609
- :param pulumi.Input[Sequence[pulumi.Input['AlertMutingRuleConditionConditionArgs']]] conditions: The individual MutingRuleConditions within the group. See Nested conditions blocks below for details.
610
- :param pulumi.Input[str] operator: The operator used to combine all the MutingRuleConditions within the group. Valid values are `AND`, `OR`.
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.
611
608
  """
612
609
  pulumi.set(__self__, "conditions", conditions)
613
610
  pulumi.set(__self__, "operator", operator)
@@ -616,7 +613,7 @@ class AlertMutingRuleConditionArgs:
616
613
  @pulumi.getter
617
614
  def conditions(self) -> pulumi.Input[Sequence[pulumi.Input['AlertMutingRuleConditionConditionArgs']]]:
618
615
  """
619
- The individual MutingRuleConditions within the group. See Nested conditions blocks below for details.
616
+ The individual MutingRuleConditions within the group.
620
617
  """
621
618
  return pulumi.get(self, "conditions")
622
619
 
@@ -628,7 +625,7 @@ class AlertMutingRuleConditionArgs:
628
625
  @pulumi.getter
629
626
  def operator(self) -> pulumi.Input[str]:
630
627
  """
631
- The operator used to combine all the MutingRuleConditions within the group. Valid values are `AND`, `OR`.
628
+ The operator used to combine all the MutingRuleConditions within the group.
632
629
  """
633
630
  return pulumi.get(self, "operator")
634
631
 
@@ -703,7 +700,6 @@ class AlertMutingRuleScheduleArgs:
703
700
  :param pulumi.Input[str] time_zone: The time zone that applies to the MutingRule schedule.
704
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`
705
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'
706
- * `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
707
703
  :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
708
704
  :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`
709
705
  :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'
@@ -752,7 +748,6 @@ class AlertMutingRuleScheduleArgs:
752
748
  def end_time(self) -> Optional[pulumi.Input[str]]:
753
749
  """
754
750
  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'
755
- * `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
756
751
  """
757
752
  return pulumi.get(self, "end_time")
758
753
 
@@ -1781,8 +1776,8 @@ class OneDashboardPageArgs:
1781
1776
  widget_stacked_bars: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarArgs']]]] = None,
1782
1777
  widget_tables: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableArgs']]]] = None):
1783
1778
  """
1784
- :param pulumi.Input[str] name: The title of the dashboard.
1785
- :param pulumi.Input[str] description: Brief text describing the dashboard.
1779
+ :param pulumi.Input[str] name: (Required) The variable identifier.
1780
+ :param pulumi.Input[str] description: (Optional) Brief text describing the page.
1786
1781
  :param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
1787
1782
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaArgs']]] widget_areas: An area widget.
1788
1783
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBarArgs']]] widget_bars: A bar widget.
@@ -1837,7 +1832,7 @@ class OneDashboardPageArgs:
1837
1832
  @pulumi.getter
1838
1833
  def name(self) -> pulumi.Input[str]:
1839
1834
  """
1840
- The title of the dashboard.
1835
+ (Required) The variable identifier.
1841
1836
  """
1842
1837
  return pulumi.get(self, "name")
1843
1838
 
@@ -1849,7 +1844,7 @@ class OneDashboardPageArgs:
1849
1844
  @pulumi.getter
1850
1845
  def description(self) -> Optional[pulumi.Input[str]]:
1851
1846
  """
1852
- Brief text describing the dashboard.
1847
+ (Optional) Brief text describing the page.
1853
1848
  """
1854
1849
  return pulumi.get(self, "description")
1855
1850
 
@@ -2362,7 +2357,7 @@ class OneDashboardPageWidgetAreaNrqlQueryArgs:
2362
2357
  account_id: Optional[pulumi.Input[str]] = None):
2363
2358
  """
2364
2359
  :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.
2365
- :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.
2360
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
2366
2361
  """
2367
2362
  pulumi.set(__self__, "query", query)
2368
2363
  if account_id is not None:
@@ -2384,7 +2379,7 @@ class OneDashboardPageWidgetAreaNrqlQueryArgs:
2384
2379
  @pulumi.getter(name="accountId")
2385
2380
  def account_id(self) -> Optional[pulumi.Input[str]]:
2386
2381
  """
2387
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
2382
+ The account id used for the NRQL query.
2388
2383
  """
2389
2384
  return pulumi.get(self, "account_id")
2390
2385
 
@@ -2905,7 +2900,7 @@ class OneDashboardPageWidgetBarNrqlQueryArgs:
2905
2900
  account_id: Optional[pulumi.Input[str]] = None):
2906
2901
  """
2907
2902
  :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.
2908
- :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.
2903
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
2909
2904
  """
2910
2905
  pulumi.set(__self__, "query", query)
2911
2906
  if account_id is not None:
@@ -2927,7 +2922,7 @@ class OneDashboardPageWidgetBarNrqlQueryArgs:
2927
2922
  @pulumi.getter(name="accountId")
2928
2923
  def account_id(self) -> Optional[pulumi.Input[str]]:
2929
2924
  """
2930
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
2925
+ The account id used for the NRQL query.
2931
2926
  """
2932
2927
  return pulumi.get(self, "account_id")
2933
2928
 
@@ -3448,7 +3443,7 @@ class OneDashboardPageWidgetBillboardNrqlQueryArgs:
3448
3443
  account_id: Optional[pulumi.Input[str]] = None):
3449
3444
  """
3450
3445
  :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.
3451
- :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.
3446
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
3452
3447
  """
3453
3448
  pulumi.set(__self__, "query", query)
3454
3449
  if account_id is not None:
@@ -3470,7 +3465,7 @@ class OneDashboardPageWidgetBillboardNrqlQueryArgs:
3470
3465
  @pulumi.getter(name="accountId")
3471
3466
  def account_id(self) -> Optional[pulumi.Input[str]]:
3472
3467
  """
3473
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
3468
+ The account id used for the NRQL query.
3474
3469
  """
3475
3470
  return pulumi.get(self, "account_id")
3476
3471
 
@@ -3974,7 +3969,7 @@ class OneDashboardPageWidgetBulletNrqlQueryArgs:
3974
3969
  account_id: Optional[pulumi.Input[str]] = None):
3975
3970
  """
3976
3971
  :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.
3977
- :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.
3972
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
3978
3973
  """
3979
3974
  pulumi.set(__self__, "query", query)
3980
3975
  if account_id is not None:
@@ -3996,7 +3991,7 @@ class OneDashboardPageWidgetBulletNrqlQueryArgs:
3996
3991
  @pulumi.getter(name="accountId")
3997
3992
  def account_id(self) -> Optional[pulumi.Input[str]]:
3998
3993
  """
3999
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
3994
+ The account id used for the NRQL query.
4000
3995
  """
4001
3996
  return pulumi.get(self, "account_id")
4002
3997
 
@@ -4485,7 +4480,7 @@ class OneDashboardPageWidgetFunnelNrqlQueryArgs:
4485
4480
  account_id: Optional[pulumi.Input[str]] = None):
4486
4481
  """
4487
4482
  :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.
4488
- :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.
4483
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
4489
4484
  """
4490
4485
  pulumi.set(__self__, "query", query)
4491
4486
  if account_id is not None:
@@ -4507,7 +4502,7 @@ class OneDashboardPageWidgetFunnelNrqlQueryArgs:
4507
4502
  @pulumi.getter(name="accountId")
4508
4503
  def account_id(self) -> Optional[pulumi.Input[str]]:
4509
4504
  """
4510
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
4505
+ The account id used for the NRQL query.
4511
4506
  """
4512
4507
  return pulumi.get(self, "account_id")
4513
4508
 
@@ -5028,7 +5023,7 @@ class OneDashboardPageWidgetHeatmapNrqlQueryArgs:
5028
5023
  account_id: Optional[pulumi.Input[str]] = None):
5029
5024
  """
5030
5025
  :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.
5031
- :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.
5026
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
5032
5027
  """
5033
5028
  pulumi.set(__self__, "query", query)
5034
5029
  if account_id is not None:
@@ -5050,7 +5045,7 @@ class OneDashboardPageWidgetHeatmapNrqlQueryArgs:
5050
5045
  @pulumi.getter(name="accountId")
5051
5046
  def account_id(self) -> Optional[pulumi.Input[str]]:
5052
5047
  """
5053
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
5048
+ The account id used for the NRQL query.
5054
5049
  """
5055
5050
  return pulumi.get(self, "account_id")
5056
5051
 
@@ -5539,7 +5534,7 @@ class OneDashboardPageWidgetHistogramNrqlQueryArgs:
5539
5534
  account_id: Optional[pulumi.Input[str]] = None):
5540
5535
  """
5541
5536
  :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.
5542
- :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.
5537
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
5543
5538
  """
5544
5539
  pulumi.set(__self__, "query", query)
5545
5540
  if account_id is not None:
@@ -5561,7 +5556,7 @@ class OneDashboardPageWidgetHistogramNrqlQueryArgs:
5561
5556
  @pulumi.getter(name="accountId")
5562
5557
  def account_id(self) -> Optional[pulumi.Input[str]]:
5563
5558
  """
5564
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
5559
+ The account id used for the NRQL query.
5565
5560
  """
5566
5561
  return pulumi.get(self, "account_id")
5567
5562
 
@@ -6050,7 +6045,7 @@ class OneDashboardPageWidgetJsonNrqlQueryArgs:
6050
6045
  account_id: Optional[pulumi.Input[str]] = None):
6051
6046
  """
6052
6047
  :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.
6053
- :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.
6048
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
6054
6049
  """
6055
6050
  pulumi.set(__self__, "query", query)
6056
6051
  if account_id is not None:
@@ -6072,7 +6067,7 @@ class OneDashboardPageWidgetJsonNrqlQueryArgs:
6072
6067
  @pulumi.getter(name="accountId")
6073
6068
  def account_id(self) -> Optional[pulumi.Input[str]]:
6074
6069
  """
6075
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
6070
+ The account id used for the NRQL query.
6076
6071
  """
6077
6072
  return pulumi.get(self, "account_id")
6078
6073
 
@@ -6249,16 +6244,13 @@ class OneDashboardPageWidgetLineArgs:
6249
6244
  height: Optional[pulumi.Input[int]] = None,
6250
6245
  id: Optional[pulumi.Input[str]] = None,
6251
6246
  ignore_time_range: Optional[pulumi.Input[bool]] = None,
6252
- is_label_visible: Optional[pulumi.Input[bool]] = None,
6253
6247
  legend_enabled: Optional[pulumi.Input[bool]] = None,
6254
6248
  null_values: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineNullValueArgs']]]] = None,
6255
- thresholds: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineThresholdArgs']]]] = None,
6256
6249
  units: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineUnitArgs']]]] = None,
6257
6250
  width: Optional[pulumi.Input[int]] = None,
6258
6251
  y_axis_left_max: Optional[pulumi.Input[float]] = None,
6259
6252
  y_axis_left_min: Optional[pulumi.Input[float]] = None,
6260
- y_axis_left_zero: Optional[pulumi.Input[bool]] = None,
6261
- y_axis_right: Optional[pulumi.Input['OneDashboardPageWidgetLineYAxisRightArgs']] = None):
6253
+ y_axis_left_zero: Optional[pulumi.Input[bool]] = None):
6262
6254
  """
6263
6255
  :param pulumi.Input[int] column: (Required) Column position of widget from top left, starting at `1`.
6264
6256
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineNrqlQueryArgs']]] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
@@ -6269,15 +6261,12 @@ class OneDashboardPageWidgetLineArgs:
6269
6261
  :param pulumi.Input[int] height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
6270
6262
  :param pulumi.Input[str] id: The ID of the widget.
6271
6263
  :param pulumi.Input[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.
6272
- :param pulumi.Input[bool] is_label_visible: (Optional) A boolean value, which when true, sets the label to be visibly displayed within thresholds. In other words, if this attribute is set to true, the _label always visible_ toggle in the _Thresholds_ section in the settings of the widget is enabled.
6273
6264
  :param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
6274
6265
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
6275
- :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineThresholdArgs']]] thresholds: (Optional) An attribute that helps specify multiple thresholds, each inclusive of a range of values between which the threshold would need to function, the name of the threshold and its severity. Multiple thresholds can be defined in a table widget. The `threshold` attribute requires specifying the following attributes in a nested block -
6276
6266
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
6277
6267
  :param pulumi.Input[int] width: (Optional) Width of the widget. Valid values are `1` to `12` inclusive. Defaults to `4`.
6278
6268
  :param pulumi.Input[float] y_axis_left_min: , `y_axis_left_max` - (Optional) Adjust the Y axis to display the data within certain values by setting a minimum and maximum value for the axis for line charts and area charts. If no customization option is selected, dashboards automatically displays the full Y axis from 0 to the top value plus a margin.
6279
6269
  :param pulumi.Input[bool] y_axis_left_zero: (Optional) An attribute that specifies if the values on the graph to be rendered need to be fit to scale, or printed within the specified range from `y_axis_left_min` (or 0 if it is not defined) to `y_axis_left_max`. Use `y_axis_left_zero = true` with a combination of `y_axis_left_min` and `y_axis_left_max` to render values from 0 or the specified minimum to the maximum, and `y_axis_left_zero = false` to fit the graph to scale.
6280
- :param pulumi.Input['OneDashboardPageWidgetLineYAxisRightArgs'] y_axis_right: (Optional) An attribute which helps specify the configuration of the Y-Axis displayed on the right side of the line widget. This is a nested block, which includes the following attributes:
6281
6270
  """
6282
6271
  pulumi.set(__self__, "column", column)
6283
6272
  pulumi.set(__self__, "nrql_queries", nrql_queries)
@@ -6293,14 +6282,10 @@ class OneDashboardPageWidgetLineArgs:
6293
6282
  pulumi.set(__self__, "id", id)
6294
6283
  if ignore_time_range is not None:
6295
6284
  pulumi.set(__self__, "ignore_time_range", ignore_time_range)
6296
- if is_label_visible is not None:
6297
- pulumi.set(__self__, "is_label_visible", is_label_visible)
6298
6285
  if legend_enabled is not None:
6299
6286
  pulumi.set(__self__, "legend_enabled", legend_enabled)
6300
6287
  if null_values is not None:
6301
6288
  pulumi.set(__self__, "null_values", null_values)
6302
- if thresholds is not None:
6303
- pulumi.set(__self__, "thresholds", thresholds)
6304
6289
  if units is not None:
6305
6290
  pulumi.set(__self__, "units", units)
6306
6291
  if width is not None:
@@ -6311,8 +6296,6 @@ class OneDashboardPageWidgetLineArgs:
6311
6296
  pulumi.set(__self__, "y_axis_left_min", y_axis_left_min)
6312
6297
  if y_axis_left_zero is not None:
6313
6298
  pulumi.set(__self__, "y_axis_left_zero", y_axis_left_zero)
6314
- if y_axis_right is not None:
6315
- pulumi.set(__self__, "y_axis_right", y_axis_right)
6316
6299
 
6317
6300
  @property
6318
6301
  @pulumi.getter
@@ -6422,18 +6405,6 @@ class OneDashboardPageWidgetLineArgs:
6422
6405
  def ignore_time_range(self, value: Optional[pulumi.Input[bool]]):
6423
6406
  pulumi.set(self, "ignore_time_range", value)
6424
6407
 
6425
- @property
6426
- @pulumi.getter(name="isLabelVisible")
6427
- def is_label_visible(self) -> Optional[pulumi.Input[bool]]:
6428
- """
6429
- (Optional) A boolean value, which when true, sets the label to be visibly displayed within thresholds. In other words, if this attribute is set to true, the _label always visible_ toggle in the _Thresholds_ section in the settings of the widget is enabled.
6430
- """
6431
- return pulumi.get(self, "is_label_visible")
6432
-
6433
- @is_label_visible.setter
6434
- def is_label_visible(self, value: Optional[pulumi.Input[bool]]):
6435
- pulumi.set(self, "is_label_visible", value)
6436
-
6437
6408
  @property
6438
6409
  @pulumi.getter(name="legendEnabled")
6439
6410
  def legend_enabled(self) -> Optional[pulumi.Input[bool]]:
@@ -6458,18 +6429,6 @@ class OneDashboardPageWidgetLineArgs:
6458
6429
  def null_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineNullValueArgs']]]]):
6459
6430
  pulumi.set(self, "null_values", value)
6460
6431
 
6461
- @property
6462
- @pulumi.getter
6463
- def thresholds(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineThresholdArgs']]]]:
6464
- """
6465
- (Optional) An attribute that helps specify multiple thresholds, each inclusive of a range of values between which the threshold would need to function, the name of the threshold and its severity. Multiple thresholds can be defined in a table widget. The `threshold` attribute requires specifying the following attributes in a nested block -
6466
- """
6467
- return pulumi.get(self, "thresholds")
6468
-
6469
- @thresholds.setter
6470
- def thresholds(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineThresholdArgs']]]]):
6471
- pulumi.set(self, "thresholds", value)
6472
-
6473
6432
  @property
6474
6433
  @pulumi.getter
6475
6434
  def units(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineUnitArgs']]]]:
@@ -6527,18 +6486,6 @@ class OneDashboardPageWidgetLineArgs:
6527
6486
  def y_axis_left_zero(self, value: Optional[pulumi.Input[bool]]):
6528
6487
  pulumi.set(self, "y_axis_left_zero", value)
6529
6488
 
6530
- @property
6531
- @pulumi.getter(name="yAxisRight")
6532
- def y_axis_right(self) -> Optional[pulumi.Input['OneDashboardPageWidgetLineYAxisRightArgs']]:
6533
- """
6534
- (Optional) An attribute which helps specify the configuration of the Y-Axis displayed on the right side of the line widget. This is a nested block, which includes the following attributes:
6535
- """
6536
- return pulumi.get(self, "y_axis_right")
6537
-
6538
- @y_axis_right.setter
6539
- def y_axis_right(self, value: Optional[pulumi.Input['OneDashboardPageWidgetLineYAxisRightArgs']]):
6540
- pulumi.set(self, "y_axis_right", value)
6541
-
6542
6489
 
6543
6490
  @pulumi.input_type
6544
6491
  class OneDashboardPageWidgetLineColorArgs:
@@ -6625,7 +6572,7 @@ class OneDashboardPageWidgetLineNrqlQueryArgs:
6625
6572
  account_id: Optional[pulumi.Input[str]] = None):
6626
6573
  """
6627
6574
  :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.
6628
- :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.
6575
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
6629
6576
  """
6630
6577
  pulumi.set(__self__, "query", query)
6631
6578
  if account_id is not None:
@@ -6647,7 +6594,7 @@ class OneDashboardPageWidgetLineNrqlQueryArgs:
6647
6594
  @pulumi.getter(name="accountId")
6648
6595
  def account_id(self) -> Optional[pulumi.Input[str]]:
6649
6596
  """
6650
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
6597
+ The account id used for the NRQL query.
6651
6598
  """
6652
6599
  return pulumi.get(self, "account_id")
6653
6600
 
@@ -6734,77 +6681,6 @@ class OneDashboardPageWidgetLineNullValueSeriesOverrideArgs:
6734
6681
  pulumi.set(self, "series_name", value)
6735
6682
 
6736
6683
 
6737
- @pulumi.input_type
6738
- class OneDashboardPageWidgetLineThresholdArgs:
6739
- def __init__(__self__, *,
6740
- from_: Optional[pulumi.Input[int]] = None,
6741
- name: Optional[pulumi.Input[str]] = None,
6742
- severity: Optional[pulumi.Input[str]] = None,
6743
- to: Optional[pulumi.Input[int]] = None):
6744
- """
6745
- :param pulumi.Input[int] from_: The value 'from' which the threshold would need to be applied.
6746
- :param pulumi.Input[str] name: The title of the dashboard.
6747
- :param pulumi.Input[str] severity: The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
6748
- :param pulumi.Input[int] to: The value until which the threshold would need to be applied.
6749
- """
6750
- if from_ is not None:
6751
- pulumi.set(__self__, "from_", from_)
6752
- if name is not None:
6753
- pulumi.set(__self__, "name", name)
6754
- if severity is not None:
6755
- pulumi.set(__self__, "severity", severity)
6756
- if to is not None:
6757
- pulumi.set(__self__, "to", to)
6758
-
6759
- @property
6760
- @pulumi.getter(name="from")
6761
- def from_(self) -> Optional[pulumi.Input[int]]:
6762
- """
6763
- The value 'from' which the threshold would need to be applied.
6764
- """
6765
- return pulumi.get(self, "from_")
6766
-
6767
- @from_.setter
6768
- def from_(self, value: Optional[pulumi.Input[int]]):
6769
- pulumi.set(self, "from_", value)
6770
-
6771
- @property
6772
- @pulumi.getter
6773
- def name(self) -> Optional[pulumi.Input[str]]:
6774
- """
6775
- The title of the dashboard.
6776
- """
6777
- return pulumi.get(self, "name")
6778
-
6779
- @name.setter
6780
- def name(self, value: Optional[pulumi.Input[str]]):
6781
- pulumi.set(self, "name", value)
6782
-
6783
- @property
6784
- @pulumi.getter
6785
- def severity(self) -> Optional[pulumi.Input[str]]:
6786
- """
6787
- The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
6788
- """
6789
- return pulumi.get(self, "severity")
6790
-
6791
- @severity.setter
6792
- def severity(self, value: Optional[pulumi.Input[str]]):
6793
- pulumi.set(self, "severity", value)
6794
-
6795
- @property
6796
- @pulumi.getter
6797
- def to(self) -> Optional[pulumi.Input[int]]:
6798
- """
6799
- The value until which the threshold would need to be applied.
6800
- """
6801
- return pulumi.get(self, "to")
6802
-
6803
- @to.setter
6804
- def to(self, value: Optional[pulumi.Input[int]]):
6805
- pulumi.set(self, "to", value)
6806
-
6807
-
6808
6684
  @pulumi.input_type
6809
6685
  class OneDashboardPageWidgetLineUnitArgs:
6810
6686
  def __init__(__self__, *,
@@ -6883,77 +6759,6 @@ class OneDashboardPageWidgetLineUnitSeriesOverrideArgs:
6883
6759
  pulumi.set(self, "unit", value)
6884
6760
 
6885
6761
 
6886
- @pulumi.input_type
6887
- class OneDashboardPageWidgetLineYAxisRightArgs:
6888
- def __init__(__self__, *,
6889
- y_axis_right_max: Optional[pulumi.Input[float]] = None,
6890
- y_axis_right_min: Optional[pulumi.Input[float]] = None,
6891
- y_axis_right_series: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
6892
- y_axis_right_zero: Optional[pulumi.Input[bool]] = None):
6893
- """
6894
- :param pulumi.Input[float] y_axis_right_max: Minimum value of the range to be specified with the Y-Axis on the right of the line widget.
6895
- :param pulumi.Input[float] y_axis_right_min: , `y_axis_right_max` - (Optional) Attributes which help specify a range of minimum and maximum values, which adjust the right Y axis to display the data within the specified minimum and maximum value for the axis.
6896
- :param pulumi.Input[Sequence[pulumi.Input[str]]] y_axis_right_series: (Optional) An attribute which takes a list of strings, specifying a selection of series' displayed in the line chart to be adjusted against the values of the right Y-axis.
6897
- :param pulumi.Input[bool] y_axis_right_zero: (Optional) An attribute that specifies if the values on the graph to be rendered need to be fit to scale, or printed within the specified range from `y_axis_right_min` (or 0 if it is not defined) to `y_axis_right_max`. Use `y_axis_right_zero = true` with a combination of `y_axis_right_min` and `y_axis_right_max` to render values from 0 or the specified minimum to the maximum, and `y_axis_right_zero = false` to fit the graph to scale.
6898
- """
6899
- if y_axis_right_max is not None:
6900
- pulumi.set(__self__, "y_axis_right_max", y_axis_right_max)
6901
- if y_axis_right_min is not None:
6902
- pulumi.set(__self__, "y_axis_right_min", y_axis_right_min)
6903
- if y_axis_right_series is not None:
6904
- pulumi.set(__self__, "y_axis_right_series", y_axis_right_series)
6905
- if y_axis_right_zero is not None:
6906
- pulumi.set(__self__, "y_axis_right_zero", y_axis_right_zero)
6907
-
6908
- @property
6909
- @pulumi.getter(name="yAxisRightMax")
6910
- def y_axis_right_max(self) -> Optional[pulumi.Input[float]]:
6911
- """
6912
- Minimum value of the range to be specified with the Y-Axis on the right of the line widget.
6913
- """
6914
- return pulumi.get(self, "y_axis_right_max")
6915
-
6916
- @y_axis_right_max.setter
6917
- def y_axis_right_max(self, value: Optional[pulumi.Input[float]]):
6918
- pulumi.set(self, "y_axis_right_max", value)
6919
-
6920
- @property
6921
- @pulumi.getter(name="yAxisRightMin")
6922
- def y_axis_right_min(self) -> Optional[pulumi.Input[float]]:
6923
- """
6924
- , `y_axis_right_max` - (Optional) Attributes which help specify a range of minimum and maximum values, which adjust the right Y axis to display the data within the specified minimum and maximum value for the axis.
6925
- """
6926
- return pulumi.get(self, "y_axis_right_min")
6927
-
6928
- @y_axis_right_min.setter
6929
- def y_axis_right_min(self, value: Optional[pulumi.Input[float]]):
6930
- pulumi.set(self, "y_axis_right_min", value)
6931
-
6932
- @property
6933
- @pulumi.getter(name="yAxisRightSeries")
6934
- def y_axis_right_series(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
6935
- """
6936
- (Optional) An attribute which takes a list of strings, specifying a selection of series' displayed in the line chart to be adjusted against the values of the right Y-axis.
6937
- """
6938
- return pulumi.get(self, "y_axis_right_series")
6939
-
6940
- @y_axis_right_series.setter
6941
- def y_axis_right_series(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
6942
- pulumi.set(self, "y_axis_right_series", value)
6943
-
6944
- @property
6945
- @pulumi.getter(name="yAxisRightZero")
6946
- def y_axis_right_zero(self) -> Optional[pulumi.Input[bool]]:
6947
- """
6948
- (Optional) An attribute that specifies if the values on the graph to be rendered need to be fit to scale, or printed within the specified range from `y_axis_right_min` (or 0 if it is not defined) to `y_axis_right_max`. Use `y_axis_right_zero = true` with a combination of `y_axis_right_min` and `y_axis_right_max` to render values from 0 or the specified minimum to the maximum, and `y_axis_right_zero = false` to fit the graph to scale.
6949
- """
6950
- return pulumi.get(self, "y_axis_right_zero")
6951
-
6952
- @y_axis_right_zero.setter
6953
- def y_axis_right_zero(self, value: Optional[pulumi.Input[bool]]):
6954
- pulumi.set(self, "y_axis_right_zero", value)
6955
-
6956
-
6957
6762
  @pulumi.input_type
6958
6763
  class OneDashboardPageWidgetLogTableArgs:
6959
6764
  def __init__(__self__, *,
@@ -7278,7 +7083,7 @@ class OneDashboardPageWidgetLogTableNrqlQueryArgs:
7278
7083
  account_id: Optional[pulumi.Input[str]] = None):
7279
7084
  """
7280
7085
  :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.
7281
- :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.
7086
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
7282
7087
  """
7283
7088
  pulumi.set(__self__, "query", query)
7284
7089
  if account_id is not None:
@@ -7300,7 +7105,7 @@ class OneDashboardPageWidgetLogTableNrqlQueryArgs:
7300
7105
  @pulumi.getter(name="accountId")
7301
7106
  def account_id(self) -> Optional[pulumi.Input[str]]:
7302
7107
  """
7303
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
7108
+ The account id used for the NRQL query.
7304
7109
  """
7305
7110
  return pulumi.get(self, "account_id")
7306
7111
 
@@ -8294,7 +8099,7 @@ class OneDashboardPageWidgetPyNrqlQueryArgs:
8294
8099
  account_id: Optional[pulumi.Input[str]] = None):
8295
8100
  """
8296
8101
  :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.
8297
- :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.
8102
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
8298
8103
  """
8299
8104
  pulumi.set(__self__, "query", query)
8300
8105
  if account_id is not None:
@@ -8316,7 +8121,7 @@ class OneDashboardPageWidgetPyNrqlQueryArgs:
8316
8121
  @pulumi.getter(name="accountId")
8317
8122
  def account_id(self) -> Optional[pulumi.Input[str]]:
8318
8123
  """
8319
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
8124
+ The account id used for the NRQL query.
8320
8125
  """
8321
8126
  return pulumi.get(self, "account_id")
8322
8127
 
@@ -8805,7 +8610,7 @@ class OneDashboardPageWidgetStackedBarNrqlQueryArgs:
8805
8610
  account_id: Optional[pulumi.Input[str]] = None):
8806
8611
  """
8807
8612
  :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.
8808
- :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.
8613
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
8809
8614
  """
8810
8615
  pulumi.set(__self__, "query", query)
8811
8616
  if account_id is not None:
@@ -8827,7 +8632,7 @@ class OneDashboardPageWidgetStackedBarNrqlQueryArgs:
8827
8632
  @pulumi.getter(name="accountId")
8828
8633
  def account_id(self) -> Optional[pulumi.Input[str]]:
8829
8634
  """
8830
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
8635
+ The account id used for the NRQL query.
8831
8636
  """
8832
8637
  return pulumi.get(self, "account_id")
8833
8638
 
@@ -9008,7 +8813,6 @@ class OneDashboardPageWidgetTableArgs:
9008
8813
  legend_enabled: Optional[pulumi.Input[bool]] = None,
9009
8814
  linked_entity_guids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
9010
8815
  null_values: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableNullValueArgs']]]] = None,
9011
- thresholds: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableThresholdArgs']]]] = None,
9012
8816
  units: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableUnitArgs']]]] = None,
9013
8817
  width: Optional[pulumi.Input[int]] = None,
9014
8818
  y_axis_left_max: Optional[pulumi.Input[float]] = None,
@@ -9027,7 +8831,6 @@ class OneDashboardPageWidgetTableArgs:
9027
8831
  :param pulumi.Input[bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
9028
8832
  :param pulumi.Input[Sequence[pulumi.Input[str]]] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
9029
8833
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
9030
- :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableThresholdArgs']]] thresholds: (Optional) An attribute that helps specify multiple thresholds, each inclusive of a range of values between which the threshold would need to function, the name of the threshold and its severity. Multiple thresholds can be defined in a table widget. The `threshold` attribute requires specifying the following attributes in a nested block -
9031
8834
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
9032
8835
  :param pulumi.Input[int] width: (Optional) Width of the widget. Valid values are `1` to `12` inclusive. Defaults to `4`.
9033
8836
  :param pulumi.Input[float] y_axis_left_min: , `y_axis_left_max` - (Optional) Adjust the Y axis to display the data within certain values by setting a minimum and maximum value for the axis for line charts and area charts. If no customization option is selected, dashboards automatically displays the full Y axis from 0 to the top value plus a margin.
@@ -9054,8 +8857,6 @@ class OneDashboardPageWidgetTableArgs:
9054
8857
  pulumi.set(__self__, "linked_entity_guids", linked_entity_guids)
9055
8858
  if null_values is not None:
9056
8859
  pulumi.set(__self__, "null_values", null_values)
9057
- if thresholds is not None:
9058
- pulumi.set(__self__, "thresholds", thresholds)
9059
8860
  if units is not None:
9060
8861
  pulumi.set(__self__, "units", units)
9061
8862
  if width is not None:
@@ -9221,18 +9022,6 @@ class OneDashboardPageWidgetTableArgs:
9221
9022
  def null_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableNullValueArgs']]]]):
9222
9023
  pulumi.set(self, "null_values", value)
9223
9024
 
9224
- @property
9225
- @pulumi.getter
9226
- def thresholds(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableThresholdArgs']]]]:
9227
- """
9228
- (Optional) An attribute that helps specify multiple thresholds, each inclusive of a range of values between which the threshold would need to function, the name of the threshold and its severity. Multiple thresholds can be defined in a table widget. The `threshold` attribute requires specifying the following attributes in a nested block -
9229
- """
9230
- return pulumi.get(self, "thresholds")
9231
-
9232
- @thresholds.setter
9233
- def thresholds(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableThresholdArgs']]]]):
9234
- pulumi.set(self, "thresholds", value)
9235
-
9236
9025
  @property
9237
9026
  @pulumi.getter
9238
9027
  def units(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableUnitArgs']]]]:
@@ -9364,7 +9153,7 @@ class OneDashboardPageWidgetTableNrqlQueryArgs:
9364
9153
  account_id: Optional[pulumi.Input[str]] = None):
9365
9154
  """
9366
9155
  :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.
9367
- :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.
9156
+ :param pulumi.Input[str] account_id: The account id used for the NRQL query.
9368
9157
  """
9369
9158
  pulumi.set(__self__, "query", query)
9370
9159
  if account_id is not None:
@@ -9386,7 +9175,7 @@ class OneDashboardPageWidgetTableNrqlQueryArgs:
9386
9175
  @pulumi.getter(name="accountId")
9387
9176
  def account_id(self) -> Optional[pulumi.Input[str]]:
9388
9177
  """
9389
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
9178
+ The account id used for the NRQL query.
9390
9179
  """
9391
9180
  return pulumi.get(self, "account_id")
9392
9181
 
@@ -9473,77 +9262,6 @@ class OneDashboardPageWidgetTableNullValueSeriesOverrideArgs:
9473
9262
  pulumi.set(self, "series_name", value)
9474
9263
 
9475
9264
 
9476
- @pulumi.input_type
9477
- class OneDashboardPageWidgetTableThresholdArgs:
9478
- def __init__(__self__, *,
9479
- column_name: Optional[pulumi.Input[str]] = None,
9480
- from_: Optional[pulumi.Input[int]] = None,
9481
- severity: Optional[pulumi.Input[str]] = None,
9482
- to: Optional[pulumi.Input[int]] = None):
9483
- """
9484
- :param pulumi.Input[str] column_name: The name of the column in the table, to which the threshold would need to be applied.
9485
- :param pulumi.Input[int] from_: The value 'from' which the threshold would need to be applied.
9486
- :param pulumi.Input[str] severity: The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
9487
- :param pulumi.Input[int] to: The value until which the threshold would need to be applied.
9488
- """
9489
- if column_name is not None:
9490
- pulumi.set(__self__, "column_name", column_name)
9491
- if from_ is not None:
9492
- pulumi.set(__self__, "from_", from_)
9493
- if severity is not None:
9494
- pulumi.set(__self__, "severity", severity)
9495
- if to is not None:
9496
- pulumi.set(__self__, "to", to)
9497
-
9498
- @property
9499
- @pulumi.getter(name="columnName")
9500
- def column_name(self) -> Optional[pulumi.Input[str]]:
9501
- """
9502
- The name of the column in the table, to which the threshold would need to be applied.
9503
- """
9504
- return pulumi.get(self, "column_name")
9505
-
9506
- @column_name.setter
9507
- def column_name(self, value: Optional[pulumi.Input[str]]):
9508
- pulumi.set(self, "column_name", value)
9509
-
9510
- @property
9511
- @pulumi.getter(name="from")
9512
- def from_(self) -> Optional[pulumi.Input[int]]:
9513
- """
9514
- The value 'from' which the threshold would need to be applied.
9515
- """
9516
- return pulumi.get(self, "from_")
9517
-
9518
- @from_.setter
9519
- def from_(self, value: Optional[pulumi.Input[int]]):
9520
- pulumi.set(self, "from_", value)
9521
-
9522
- @property
9523
- @pulumi.getter
9524
- def severity(self) -> Optional[pulumi.Input[str]]:
9525
- """
9526
- The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
9527
- """
9528
- return pulumi.get(self, "severity")
9529
-
9530
- @severity.setter
9531
- def severity(self, value: Optional[pulumi.Input[str]]):
9532
- pulumi.set(self, "severity", value)
9533
-
9534
- @property
9535
- @pulumi.getter
9536
- def to(self) -> Optional[pulumi.Input[int]]:
9537
- """
9538
- The value until which the threshold would need to be applied.
9539
- """
9540
- return pulumi.get(self, "to")
9541
-
9542
- @to.setter
9543
- def to(self, value: Optional[pulumi.Input[int]]):
9544
- pulumi.set(self, "to", value)
9545
-
9546
-
9547
9265
  @pulumi.input_type
9548
9266
  class OneDashboardPageWidgetTableUnitArgs:
9549
9267
  def __init__(__self__, *,
@@ -9851,7 +9569,7 @@ class OneDashboardVariableArgs:
9851
9569
  nrql_query: Optional[pulumi.Input['OneDashboardVariableNrqlQueryArgs']] = None,
9852
9570
  options: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableOptionArgs']]]] = None):
9853
9571
  """
9854
- :param pulumi.Input[str] name: The title of the dashboard.
9572
+ :param pulumi.Input[str] name: (Required) The variable identifier.
9855
9573
  :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`.
9856
9574
  :param pulumi.Input[str] title: (Optional) A human-friendly display string for this value.
9857
9575
  :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`
@@ -9880,7 +9598,7 @@ class OneDashboardVariableArgs:
9880
9598
  @pulumi.getter
9881
9599
  def name(self) -> pulumi.Input[str]:
9882
9600
  """
9883
- The title of the dashboard.
9601
+ (Required) The variable identifier.
9884
9602
  """
9885
9603
  return pulumi.get(self, "name")
9886
9604
 
@@ -10091,13 +9809,6 @@ class ServiceLevelEventsArgs:
10091
9809
  valid_events: pulumi.Input['ServiceLevelEventsValidEventsArgs'],
10092
9810
  bad_events: Optional[pulumi.Input['ServiceLevelEventsBadEventsArgs']] = None,
10093
9811
  good_events: Optional[pulumi.Input['ServiceLevelEventsGoodEventsArgs']] = None):
10094
- """
10095
- :param pulumi.Input[str] account_id: The ID of the account where the entity (e.g, APM Service, Browser application, Workload, etc.) belongs to,
10096
- and that contains the NRDB data for the SLI/SLO calculations. Note that changing the account ID will force a new resource.
10097
- :param pulumi.Input['ServiceLevelEventsValidEventsArgs'] valid_events: The definition of valid requests.
10098
- :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.
10099
- :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.
10100
- """
10101
9812
  pulumi.set(__self__, "account_id", account_id)
10102
9813
  pulumi.set(__self__, "valid_events", valid_events)
10103
9814
  if bad_events is not None:
@@ -10108,10 +9819,6 @@ class ServiceLevelEventsArgs:
10108
9819
  @property
10109
9820
  @pulumi.getter(name="accountId")
10110
9821
  def account_id(self) -> pulumi.Input[str]:
10111
- """
10112
- The ID of the account where the entity (e.g, APM Service, Browser application, Workload, etc.) belongs to,
10113
- and that contains the NRDB data for the SLI/SLO calculations. Note that changing the account ID will force a new resource.
10114
- """
10115
9822
  return pulumi.get(self, "account_id")
10116
9823
 
10117
9824
  @account_id.setter
@@ -10121,9 +9828,6 @@ class ServiceLevelEventsArgs:
10121
9828
  @property
10122
9829
  @pulumi.getter(name="validEvents")
10123
9830
  def valid_events(self) -> pulumi.Input['ServiceLevelEventsValidEventsArgs']:
10124
- """
10125
- The definition of valid requests.
10126
- """
10127
9831
  return pulumi.get(self, "valid_events")
10128
9832
 
10129
9833
  @valid_events.setter
@@ -10133,9 +9837,6 @@ class ServiceLevelEventsArgs:
10133
9837
  @property
10134
9838
  @pulumi.getter(name="badEvents")
10135
9839
  def bad_events(self) -> Optional[pulumi.Input['ServiceLevelEventsBadEventsArgs']]:
10136
- """
10137
- The definition of the bad responses. If you define an SLI from valid and bad events, you must leave the good events argument empty.
10138
- """
10139
9840
  return pulumi.get(self, "bad_events")
10140
9841
 
10141
9842
  @bad_events.setter
@@ -10145,9 +9846,6 @@ class ServiceLevelEventsArgs:
10145
9846
  @property
10146
9847
  @pulumi.getter(name="goodEvents")
10147
9848
  def good_events(self) -> Optional[pulumi.Input['ServiceLevelEventsGoodEventsArgs']]:
10148
- """
10149
- The definition of good responses. If you define an SLI from valid and good events, you must leave the bad events argument empty.
10150
- """
10151
9849
  return pulumi.get(self, "good_events")
10152
9850
 
10153
9851
  @good_events.setter
@@ -10161,12 +9859,6 @@ class ServiceLevelEventsBadEventsArgs:
10161
9859
  from_: pulumi.Input[str],
10162
9860
  select: Optional[pulumi.Input['ServiceLevelEventsBadEventsSelectArgs']] = None,
10163
9861
  where: Optional[pulumi.Input[str]] = None):
10164
- """
10165
- :param pulumi.Input[str] from_: The event type where NRDB data will be fetched from.
10166
- :param pulumi.Input['ServiceLevelEventsBadEventsSelectArgs'] select: The NRQL SELECT clause to aggregate events.
10167
- :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
10168
- a particular entity and returned an error).
10169
- """
10170
9862
  pulumi.set(__self__, "from_", from_)
10171
9863
  if select is not None:
10172
9864
  pulumi.set(__self__, "select", select)
@@ -10176,9 +9868,6 @@ class ServiceLevelEventsBadEventsArgs:
10176
9868
  @property
10177
9869
  @pulumi.getter(name="from")
10178
9870
  def from_(self) -> pulumi.Input[str]:
10179
- """
10180
- The event type where NRDB data will be fetched from.
10181
- """
10182
9871
  return pulumi.get(self, "from_")
10183
9872
 
10184
9873
  @from_.setter
@@ -10188,9 +9877,6 @@ class ServiceLevelEventsBadEventsArgs:
10188
9877
  @property
10189
9878
  @pulumi.getter
10190
9879
  def select(self) -> Optional[pulumi.Input['ServiceLevelEventsBadEventsSelectArgs']]:
10191
- """
10192
- The NRQL SELECT clause to aggregate events.
10193
- """
10194
9880
  return pulumi.get(self, "select")
10195
9881
 
10196
9882
  @select.setter
@@ -10200,10 +9886,6 @@ class ServiceLevelEventsBadEventsArgs:
10200
9886
  @property
10201
9887
  @pulumi.getter
10202
9888
  def where(self) -> Optional[pulumi.Input[str]]:
10203
- """
10204
- A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
10205
- a particular entity and returned an error).
10206
- """
10207
9889
  return pulumi.get(self, "where")
10208
9890
 
10209
9891
  @where.setter
@@ -10218,9 +9900,7 @@ class ServiceLevelEventsBadEventsSelectArgs:
10218
9900
  attribute: Optional[pulumi.Input[str]] = None,
10219
9901
  threshold: Optional[pulumi.Input[float]] = None):
10220
9902
  """
10221
- :param pulumi.Input[str] function: The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
10222
- :param pulumi.Input[str] attribute: The event attribute to use in the SELECT clause.
10223
- :param pulumi.Input[float] threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
9903
+ :param pulumi.Input[float] threshold: The event threshold to use in the SELECT clause
10224
9904
  """
10225
9905
  pulumi.set(__self__, "function", function)
10226
9906
  if attribute is not None:
@@ -10231,9 +9911,6 @@ class ServiceLevelEventsBadEventsSelectArgs:
10231
9911
  @property
10232
9912
  @pulumi.getter
10233
9913
  def function(self) -> pulumi.Input[str]:
10234
- """
10235
- The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
10236
- """
10237
9914
  return pulumi.get(self, "function")
10238
9915
 
10239
9916
  @function.setter
@@ -10243,9 +9920,6 @@ class ServiceLevelEventsBadEventsSelectArgs:
10243
9920
  @property
10244
9921
  @pulumi.getter
10245
9922
  def attribute(self) -> Optional[pulumi.Input[str]]:
10246
- """
10247
- The event attribute to use in the SELECT clause.
10248
- """
10249
9923
  return pulumi.get(self, "attribute")
10250
9924
 
10251
9925
  @attribute.setter
@@ -10256,7 +9930,7 @@ class ServiceLevelEventsBadEventsSelectArgs:
10256
9930
  @pulumi.getter
10257
9931
  def threshold(self) -> Optional[pulumi.Input[float]]:
10258
9932
  """
10259
- Limit for values to be counter by `GET_CDF_COUNT` function.
9933
+ The event threshold to use in the SELECT clause
10260
9934
  """
10261
9935
  return pulumi.get(self, "threshold")
10262
9936
 
@@ -10271,12 +9945,6 @@ class ServiceLevelEventsGoodEventsArgs:
10271
9945
  from_: pulumi.Input[str],
10272
9946
  select: Optional[pulumi.Input['ServiceLevelEventsGoodEventsSelectArgs']] = None,
10273
9947
  where: Optional[pulumi.Input[str]] = None):
10274
- """
10275
- :param pulumi.Input[str] from_: The event type where NRDB data will be fetched from.
10276
- :param pulumi.Input['ServiceLevelEventsGoodEventsSelectArgs'] select: The NRQL SELECT clause to aggregate events.
10277
- :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
10278
- a particular entity and were successful).
10279
- """
10280
9948
  pulumi.set(__self__, "from_", from_)
10281
9949
  if select is not None:
10282
9950
  pulumi.set(__self__, "select", select)
@@ -10286,9 +9954,6 @@ class ServiceLevelEventsGoodEventsArgs:
10286
9954
  @property
10287
9955
  @pulumi.getter(name="from")
10288
9956
  def from_(self) -> pulumi.Input[str]:
10289
- """
10290
- The event type where NRDB data will be fetched from.
10291
- """
10292
9957
  return pulumi.get(self, "from_")
10293
9958
 
10294
9959
  @from_.setter
@@ -10298,9 +9963,6 @@ class ServiceLevelEventsGoodEventsArgs:
10298
9963
  @property
10299
9964
  @pulumi.getter
10300
9965
  def select(self) -> Optional[pulumi.Input['ServiceLevelEventsGoodEventsSelectArgs']]:
10301
- """
10302
- The NRQL SELECT clause to aggregate events.
10303
- """
10304
9966
  return pulumi.get(self, "select")
10305
9967
 
10306
9968
  @select.setter
@@ -10310,10 +9972,6 @@ class ServiceLevelEventsGoodEventsArgs:
10310
9972
  @property
10311
9973
  @pulumi.getter
10312
9974
  def where(self) -> Optional[pulumi.Input[str]]:
10313
- """
10314
- A filter that narrows down the NRDB events just to those that are considered good responses (e.g, those that refer to
10315
- a particular entity and were successful).
10316
- """
10317
9975
  return pulumi.get(self, "where")
10318
9976
 
10319
9977
  @where.setter
@@ -10328,9 +9986,7 @@ class ServiceLevelEventsGoodEventsSelectArgs:
10328
9986
  attribute: Optional[pulumi.Input[str]] = None,
10329
9987
  threshold: Optional[pulumi.Input[float]] = None):
10330
9988
  """
10331
- :param pulumi.Input[str] function: The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
10332
- :param pulumi.Input[str] attribute: The event attribute to use in the SELECT clause.
10333
- :param pulumi.Input[float] threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
9989
+ :param pulumi.Input[float] threshold: The event threshold to use in the SELECT clause
10334
9990
  """
10335
9991
  pulumi.set(__self__, "function", function)
10336
9992
  if attribute is not None:
@@ -10341,9 +9997,6 @@ class ServiceLevelEventsGoodEventsSelectArgs:
10341
9997
  @property
10342
9998
  @pulumi.getter
10343
9999
  def function(self) -> pulumi.Input[str]:
10344
- """
10345
- The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
10346
- """
10347
10000
  return pulumi.get(self, "function")
10348
10001
 
10349
10002
  @function.setter
@@ -10353,9 +10006,6 @@ class ServiceLevelEventsGoodEventsSelectArgs:
10353
10006
  @property
10354
10007
  @pulumi.getter
10355
10008
  def attribute(self) -> Optional[pulumi.Input[str]]:
10356
- """
10357
- The event attribute to use in the SELECT clause.
10358
- """
10359
10009
  return pulumi.get(self, "attribute")
10360
10010
 
10361
10011
  @attribute.setter
@@ -10366,7 +10016,7 @@ class ServiceLevelEventsGoodEventsSelectArgs:
10366
10016
  @pulumi.getter
10367
10017
  def threshold(self) -> Optional[pulumi.Input[float]]:
10368
10018
  """
10369
- Limit for values to be counter by `GET_CDF_COUNT` function.
10019
+ The event threshold to use in the SELECT clause
10370
10020
  """
10371
10021
  return pulumi.get(self, "threshold")
10372
10022
 
@@ -10381,11 +10031,6 @@ class ServiceLevelEventsValidEventsArgs:
10381
10031
  from_: pulumi.Input[str],
10382
10032
  select: Optional[pulumi.Input['ServiceLevelEventsValidEventsSelectArgs']] = None,
10383
10033
  where: Optional[pulumi.Input[str]] = None):
10384
- """
10385
- :param pulumi.Input[str] from_: The event type where NRDB data will be fetched from.
10386
- :param pulumi.Input['ServiceLevelEventsValidEventsSelectArgs'] select: The NRQL SELECT clause to aggregate events.
10387
- :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).
10388
- """
10389
10034
  pulumi.set(__self__, "from_", from_)
10390
10035
  if select is not None:
10391
10036
  pulumi.set(__self__, "select", select)
@@ -10395,9 +10040,6 @@ class ServiceLevelEventsValidEventsArgs:
10395
10040
  @property
10396
10041
  @pulumi.getter(name="from")
10397
10042
  def from_(self) -> pulumi.Input[str]:
10398
- """
10399
- The event type where NRDB data will be fetched from.
10400
- """
10401
10043
  return pulumi.get(self, "from_")
10402
10044
 
10403
10045
  @from_.setter
@@ -10407,9 +10049,6 @@ class ServiceLevelEventsValidEventsArgs:
10407
10049
  @property
10408
10050
  @pulumi.getter
10409
10051
  def select(self) -> Optional[pulumi.Input['ServiceLevelEventsValidEventsSelectArgs']]:
10410
- """
10411
- The NRQL SELECT clause to aggregate events.
10412
- """
10413
10052
  return pulumi.get(self, "select")
10414
10053
 
10415
10054
  @select.setter
@@ -10419,9 +10058,6 @@ class ServiceLevelEventsValidEventsArgs:
10419
10058
  @property
10420
10059
  @pulumi.getter
10421
10060
  def where(self) -> Optional[pulumi.Input[str]]:
10422
- """
10423
- A filter that specifies all the NRDB events that are considered in this SLI (e.g, those that refer to a particular entity).
10424
- """
10425
10061
  return pulumi.get(self, "where")
10426
10062
 
10427
10063
  @where.setter
@@ -10436,9 +10072,7 @@ class ServiceLevelEventsValidEventsSelectArgs:
10436
10072
  attribute: Optional[pulumi.Input[str]] = None,
10437
10073
  threshold: Optional[pulumi.Input[float]] = None):
10438
10074
  """
10439
- :param pulumi.Input[str] function: The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
10440
- :param pulumi.Input[str] attribute: The event attribute to use in the SELECT clause.
10441
- :param pulumi.Input[float] threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
10075
+ :param pulumi.Input[float] threshold: The event threshold to use in the SELECT clause
10442
10076
  """
10443
10077
  pulumi.set(__self__, "function", function)
10444
10078
  if attribute is not None:
@@ -10449,9 +10083,6 @@ class ServiceLevelEventsValidEventsSelectArgs:
10449
10083
  @property
10450
10084
  @pulumi.getter
10451
10085
  def function(self) -> pulumi.Input[str]:
10452
- """
10453
- The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
10454
- """
10455
10086
  return pulumi.get(self, "function")
10456
10087
 
10457
10088
  @function.setter
@@ -10461,9 +10092,6 @@ class ServiceLevelEventsValidEventsSelectArgs:
10461
10092
  @property
10462
10093
  @pulumi.getter
10463
10094
  def attribute(self) -> Optional[pulumi.Input[str]]:
10464
- """
10465
- The event attribute to use in the SELECT clause.
10466
- """
10467
10095
  return pulumi.get(self, "attribute")
10468
10096
 
10469
10097
  @attribute.setter
@@ -10474,7 +10102,7 @@ class ServiceLevelEventsValidEventsSelectArgs:
10474
10102
  @pulumi.getter
10475
10103
  def threshold(self) -> Optional[pulumi.Input[float]]:
10476
10104
  """
10477
- Limit for values to be counter by `GET_CDF_COUNT` function.
10105
+ The event threshold to use in the SELECT clause
10478
10106
  """
10479
10107
  return pulumi.get(self, "threshold")
10480
10108
 
@@ -10490,12 +10118,6 @@ class ServiceLevelObjectiveArgs:
10490
10118
  time_window: pulumi.Input['ServiceLevelObjectiveTimeWindowArgs'],
10491
10119
  description: Optional[pulumi.Input[str]] = None,
10492
10120
  name: Optional[pulumi.Input[str]] = None):
10493
- """
10494
- :param pulumi.Input[float] target: The target of the objective, valid values between `0` and `100`. Up to 5 decimals accepted.
10495
- :param pulumi.Input['ServiceLevelObjectiveTimeWindowArgs'] time_window: Time window is the period of the objective.
10496
- :param pulumi.Input[str] description: The description of the SLI.
10497
- :param pulumi.Input[str] name: A short name for the SLI that will help anyone understand what it is about.
10498
- """
10499
10121
  pulumi.set(__self__, "target", target)
10500
10122
  pulumi.set(__self__, "time_window", time_window)
10501
10123
  if description is not None:
@@ -10506,9 +10128,6 @@ class ServiceLevelObjectiveArgs:
10506
10128
  @property
10507
10129
  @pulumi.getter
10508
10130
  def target(self) -> pulumi.Input[float]:
10509
- """
10510
- The target of the objective, valid values between `0` and `100`. Up to 5 decimals accepted.
10511
- """
10512
10131
  return pulumi.get(self, "target")
10513
10132
 
10514
10133
  @target.setter
@@ -10518,9 +10137,6 @@ class ServiceLevelObjectiveArgs:
10518
10137
  @property
10519
10138
  @pulumi.getter(name="timeWindow")
10520
10139
  def time_window(self) -> pulumi.Input['ServiceLevelObjectiveTimeWindowArgs']:
10521
- """
10522
- Time window is the period of the objective.
10523
- """
10524
10140
  return pulumi.get(self, "time_window")
10525
10141
 
10526
10142
  @time_window.setter
@@ -10530,9 +10146,6 @@ class ServiceLevelObjectiveArgs:
10530
10146
  @property
10531
10147
  @pulumi.getter
10532
10148
  def description(self) -> Optional[pulumi.Input[str]]:
10533
- """
10534
- The description of the SLI.
10535
- """
10536
10149
  return pulumi.get(self, "description")
10537
10150
 
10538
10151
  @description.setter
@@ -10542,9 +10155,6 @@ class ServiceLevelObjectiveArgs:
10542
10155
  @property
10543
10156
  @pulumi.getter
10544
10157
  def name(self) -> Optional[pulumi.Input[str]]:
10545
- """
10546
- A short name for the SLI that will help anyone understand what it is about.
10547
- """
10548
10158
  return pulumi.get(self, "name")
10549
10159
 
10550
10160
  @name.setter
@@ -10556,17 +10166,11 @@ class ServiceLevelObjectiveArgs:
10556
10166
  class ServiceLevelObjectiveTimeWindowArgs:
10557
10167
  def __init__(__self__, *,
10558
10168
  rolling: pulumi.Input['ServiceLevelObjectiveTimeWindowRollingArgs']):
10559
- """
10560
- :param pulumi.Input['ServiceLevelObjectiveTimeWindowRollingArgs'] rolling: Rolling window.
10561
- """
10562
10169
  pulumi.set(__self__, "rolling", rolling)
10563
10170
 
10564
10171
  @property
10565
10172
  @pulumi.getter
10566
10173
  def rolling(self) -> pulumi.Input['ServiceLevelObjectiveTimeWindowRollingArgs']:
10567
- """
10568
- Rolling window.
10569
- """
10570
10174
  return pulumi.get(self, "rolling")
10571
10175
 
10572
10176
  @rolling.setter
@@ -10579,19 +10183,12 @@ class ServiceLevelObjectiveTimeWindowRollingArgs:
10579
10183
  def __init__(__self__, *,
10580
10184
  count: pulumi.Input[int],
10581
10185
  unit: pulumi.Input[str]):
10582
- """
10583
- :param pulumi.Input[int] count: Valid values are `1`, `7` and `28`.
10584
- :param pulumi.Input[str] unit: The only supported value is `DAY`.
10585
- """
10586
10186
  pulumi.set(__self__, "count", count)
10587
10187
  pulumi.set(__self__, "unit", unit)
10588
10188
 
10589
10189
  @property
10590
10190
  @pulumi.getter
10591
10191
  def count(self) -> pulumi.Input[int]:
10592
- """
10593
- Valid values are `1`, `7` and `28`.
10594
- """
10595
10192
  return pulumi.get(self, "count")
10596
10193
 
10597
10194
  @count.setter
@@ -10601,9 +10198,6 @@ class ServiceLevelObjectiveTimeWindowRollingArgs:
10601
10198
  @property
10602
10199
  @pulumi.getter
10603
10200
  def unit(self) -> pulumi.Input[str]:
10604
- """
10605
- The only supported value is `DAY`.
10606
- """
10607
10201
  return pulumi.get(self, "unit")
10608
10202
 
10609
10203
  @unit.setter