pulumi-newrelic 5.48.0a1752819614__py3-none-any.whl → 5.48.0a1753156041__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.

Potentially problematic release.


This version of pulumi-newrelic might be problematic. Click here for more details.

@@ -84,6 +84,8 @@ __all__ = [
84
84
  'OneDashboardPageWidgetAreaNullValueArgsDict',
85
85
  'OneDashboardPageWidgetAreaNullValueSeriesOverrideArgs',
86
86
  'OneDashboardPageWidgetAreaNullValueSeriesOverrideArgsDict',
87
+ 'OneDashboardPageWidgetAreaTooltipArgs',
88
+ 'OneDashboardPageWidgetAreaTooltipArgsDict',
87
89
  'OneDashboardPageWidgetAreaUnitArgs',
88
90
  'OneDashboardPageWidgetAreaUnitArgsDict',
89
91
  'OneDashboardPageWidgetAreaUnitSeriesOverrideArgs',
@@ -246,6 +248,8 @@ __all__ = [
246
248
  'OneDashboardPageWidgetLineNullValueSeriesOverrideArgsDict',
247
249
  'OneDashboardPageWidgetLineThresholdArgs',
248
250
  'OneDashboardPageWidgetLineThresholdArgsDict',
251
+ 'OneDashboardPageWidgetLineTooltipArgs',
252
+ 'OneDashboardPageWidgetLineTooltipArgsDict',
249
253
  'OneDashboardPageWidgetLineUnitArgs',
250
254
  'OneDashboardPageWidgetLineUnitArgsDict',
251
255
  'OneDashboardPageWidgetLineUnitSeriesOverrideArgs',
@@ -326,6 +330,8 @@ __all__ = [
326
330
  'OneDashboardPageWidgetStackedBarNullValueArgsDict',
327
331
  'OneDashboardPageWidgetStackedBarNullValueSeriesOverrideArgs',
328
332
  'OneDashboardPageWidgetStackedBarNullValueSeriesOverrideArgsDict',
333
+ 'OneDashboardPageWidgetStackedBarTooltipArgs',
334
+ 'OneDashboardPageWidgetStackedBarTooltipArgsDict',
329
335
  'OneDashboardPageWidgetStackedBarUnitArgs',
330
336
  'OneDashboardPageWidgetStackedBarUnitArgsDict',
331
337
  'OneDashboardPageWidgetStackedBarUnitSeriesOverrideArgs',
@@ -3188,6 +3194,10 @@ if not MYPY:
3188
3194
  """
3189
3195
  (Optional) This attribute determines the frequency for data refresh specified in milliseconds. Accepted values are `auto` for default value, `0` for no refresh, `5000` for 5 seconds, `30000` for 30 seconds, `60000` for 60 seconds, `300000` for 5 minutes, `1800000` for 30 minutes, `3600000` for 60 minute, `10800000` for 3 hours, `43200000` for 12 hours and `86400000` for 24 hours.
3190
3196
  """
3197
+ tooltip: NotRequired[pulumi.Input['OneDashboardPageWidgetAreaTooltipArgsDict']]
3198
+ """
3199
+ (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
3200
+ """
3191
3201
  units: NotRequired[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaUnitArgsDict']]]]
3192
3202
  """
3193
3203
  (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
@@ -3221,6 +3231,7 @@ class OneDashboardPageWidgetAreaArgs:
3221
3231
  legend_enabled: Optional[pulumi.Input[builtins.bool]] = None,
3222
3232
  null_values: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaNullValueArgs']]]] = None,
3223
3233
  refresh_rate: Optional[pulumi.Input[builtins.str]] = None,
3234
+ tooltip: Optional[pulumi.Input['OneDashboardPageWidgetAreaTooltipArgs']] = None,
3224
3235
  units: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaUnitArgs']]]] = None,
3225
3236
  width: Optional[pulumi.Input[builtins.int]] = None,
3226
3237
  y_axis_left_max: Optional[pulumi.Input[builtins.float]] = None,
@@ -3240,6 +3251,7 @@ class OneDashboardPageWidgetAreaArgs:
3240
3251
  :param pulumi.Input[builtins.bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
3241
3252
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
3242
3253
  :param pulumi.Input[builtins.str] refresh_rate: (Optional) This attribute determines the frequency for data refresh specified in milliseconds. Accepted values are `auto` for default value, `0` for no refresh, `5000` for 5 seconds, `30000` for 30 seconds, `60000` for 60 seconds, `300000` for 5 minutes, `1800000` for 30 minutes, `3600000` for 60 minute, `10800000` for 3 hours, `43200000` for 12 hours and `86400000` for 24 hours.
3254
+ :param pulumi.Input['OneDashboardPageWidgetAreaTooltipArgs'] tooltip: (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
3243
3255
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
3244
3256
  :param pulumi.Input[builtins.int] width: (Optional) Width of the widget. Valid values are `1` to `12` inclusive. Defaults to `4`.
3245
3257
  :param pulumi.Input[builtins.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.
@@ -3268,6 +3280,8 @@ class OneDashboardPageWidgetAreaArgs:
3268
3280
  pulumi.set(__self__, "null_values", null_values)
3269
3281
  if refresh_rate is not None:
3270
3282
  pulumi.set(__self__, "refresh_rate", refresh_rate)
3283
+ if tooltip is not None:
3284
+ pulumi.set(__self__, "tooltip", tooltip)
3271
3285
  if units is not None:
3272
3286
  pulumi.set(__self__, "units", units)
3273
3287
  if width is not None:
@@ -3445,6 +3459,18 @@ class OneDashboardPageWidgetAreaArgs:
3445
3459
  def refresh_rate(self, value: Optional[pulumi.Input[builtins.str]]):
3446
3460
  pulumi.set(self, "refresh_rate", value)
3447
3461
 
3462
+ @property
3463
+ @pulumi.getter
3464
+ def tooltip(self) -> Optional[pulumi.Input['OneDashboardPageWidgetAreaTooltipArgs']]:
3465
+ """
3466
+ (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
3467
+ """
3468
+ return pulumi.get(self, "tooltip")
3469
+
3470
+ @tooltip.setter
3471
+ def tooltip(self, value: Optional[pulumi.Input['OneDashboardPageWidgetAreaTooltipArgs']]):
3472
+ pulumi.set(self, "tooltip", value)
3473
+
3448
3474
  @property
3449
3475
  @pulumi.getter
3450
3476
  def units(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaUnitArgs']]]]:
@@ -3890,6 +3916,37 @@ class OneDashboardPageWidgetAreaNullValueSeriesOverrideArgs:
3890
3916
  pulumi.set(self, "series_name", value)
3891
3917
 
3892
3918
 
3919
+ if not MYPY:
3920
+ class OneDashboardPageWidgetAreaTooltipArgsDict(TypedDict):
3921
+ mode: pulumi.Input[builtins.str]
3922
+ """
3923
+ (Required) The tooltip display mode. Valid values are:
3924
+ """
3925
+ elif False:
3926
+ OneDashboardPageWidgetAreaTooltipArgsDict: TypeAlias = Mapping[str, Any]
3927
+
3928
+ @pulumi.input_type
3929
+ class OneDashboardPageWidgetAreaTooltipArgs:
3930
+ def __init__(__self__, *,
3931
+ mode: pulumi.Input[builtins.str]):
3932
+ """
3933
+ :param pulumi.Input[builtins.str] mode: (Required) The tooltip display mode. Valid values are:
3934
+ """
3935
+ pulumi.set(__self__, "mode", mode)
3936
+
3937
+ @property
3938
+ @pulumi.getter
3939
+ def mode(self) -> pulumi.Input[builtins.str]:
3940
+ """
3941
+ (Required) The tooltip display mode. Valid values are:
3942
+ """
3943
+ return pulumi.get(self, "mode")
3944
+
3945
+ @mode.setter
3946
+ def mode(self, value: pulumi.Input[builtins.str]):
3947
+ pulumi.set(self, "mode", value)
3948
+
3949
+
3893
3950
  if not MYPY:
3894
3951
  class OneDashboardPageWidgetAreaUnitArgsDict(TypedDict):
3895
3952
  series_overrides: NotRequired[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaUnitSeriesOverrideArgsDict']]]]
@@ -10247,6 +10304,10 @@ if not MYPY:
10247
10304
  """
10248
10305
  (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 -
10249
10306
  """
10307
+ tooltip: NotRequired[pulumi.Input['OneDashboardPageWidgetLineTooltipArgsDict']]
10308
+ """
10309
+ (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
10310
+ """
10250
10311
  units: NotRequired[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineUnitArgsDict']]]]
10251
10312
  """
10252
10313
  (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
@@ -10290,6 +10351,7 @@ class OneDashboardPageWidgetLineArgs:
10290
10351
  null_values: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineNullValueArgs']]]] = None,
10291
10352
  refresh_rate: Optional[pulumi.Input[builtins.str]] = None,
10292
10353
  thresholds: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineThresholdArgs']]]] = None,
10354
+ tooltip: Optional[pulumi.Input['OneDashboardPageWidgetLineTooltipArgs']] = None,
10293
10355
  units: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineUnitArgs']]]] = None,
10294
10356
  width: Optional[pulumi.Input[builtins.int]] = None,
10295
10357
  y_axis_left_max: Optional[pulumi.Input[builtins.float]] = None,
@@ -10313,6 +10375,7 @@ class OneDashboardPageWidgetLineArgs:
10313
10375
  :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.
10314
10376
  :param pulumi.Input[builtins.str] refresh_rate: (Optional) This attribute determines the frequency for data refresh specified in milliseconds. Accepted values are `auto` for default value, `0` for no refresh, `5000` for 5 seconds, `30000` for 30 seconds, `60000` for 60 seconds, `300000` for 5 minutes, `1800000` for 30 minutes, `3600000` for 60 minute, `10800000` for 3 hours, `43200000` for 12 hours and `86400000` for 24 hours.
10315
10377
  :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 -
10378
+ :param pulumi.Input['OneDashboardPageWidgetLineTooltipArgs'] tooltip: (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
10316
10379
  :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.
10317
10380
  :param pulumi.Input[builtins.int] width: (Optional) Width of the widget. Valid values are `1` to `12` inclusive. Defaults to `4`.
10318
10381
  :param pulumi.Input[builtins.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.
@@ -10347,6 +10410,8 @@ class OneDashboardPageWidgetLineArgs:
10347
10410
  pulumi.set(__self__, "refresh_rate", refresh_rate)
10348
10411
  if thresholds is not None:
10349
10412
  pulumi.set(__self__, "thresholds", thresholds)
10413
+ if tooltip is not None:
10414
+ pulumi.set(__self__, "tooltip", tooltip)
10350
10415
  if units is not None:
10351
10416
  pulumi.set(__self__, "units", units)
10352
10417
  if width is not None:
@@ -10552,6 +10617,18 @@ class OneDashboardPageWidgetLineArgs:
10552
10617
  def thresholds(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineThresholdArgs']]]]):
10553
10618
  pulumi.set(self, "thresholds", value)
10554
10619
 
10620
+ @property
10621
+ @pulumi.getter
10622
+ def tooltip(self) -> Optional[pulumi.Input['OneDashboardPageWidgetLineTooltipArgs']]:
10623
+ """
10624
+ (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
10625
+ """
10626
+ return pulumi.get(self, "tooltip")
10627
+
10628
+ @tooltip.setter
10629
+ def tooltip(self, value: Optional[pulumi.Input['OneDashboardPageWidgetLineTooltipArgs']]):
10630
+ pulumi.set(self, "tooltip", value)
10631
+
10555
10632
  @property
10556
10633
  @pulumi.getter
10557
10634
  def units(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineUnitArgs']]]]:
@@ -11113,6 +11190,37 @@ class OneDashboardPageWidgetLineThresholdArgs:
11113
11190
  pulumi.set(self, "to", value)
11114
11191
 
11115
11192
 
11193
+ if not MYPY:
11194
+ class OneDashboardPageWidgetLineTooltipArgsDict(TypedDict):
11195
+ mode: pulumi.Input[builtins.str]
11196
+ """
11197
+ (Required) The tooltip display mode. Valid values are:
11198
+ """
11199
+ elif False:
11200
+ OneDashboardPageWidgetLineTooltipArgsDict: TypeAlias = Mapping[str, Any]
11201
+
11202
+ @pulumi.input_type
11203
+ class OneDashboardPageWidgetLineTooltipArgs:
11204
+ def __init__(__self__, *,
11205
+ mode: pulumi.Input[builtins.str]):
11206
+ """
11207
+ :param pulumi.Input[builtins.str] mode: (Required) The tooltip display mode. Valid values are:
11208
+ """
11209
+ pulumi.set(__self__, "mode", mode)
11210
+
11211
+ @property
11212
+ @pulumi.getter
11213
+ def mode(self) -> pulumi.Input[builtins.str]:
11214
+ """
11215
+ (Required) The tooltip display mode. Valid values are:
11216
+ """
11217
+ return pulumi.get(self, "mode")
11218
+
11219
+ @mode.setter
11220
+ def mode(self, value: pulumi.Input[builtins.str]):
11221
+ pulumi.set(self, "mode", value)
11222
+
11223
+
11116
11224
  if not MYPY:
11117
11225
  class OneDashboardPageWidgetLineUnitArgsDict(TypedDict):
11118
11226
  series_overrides: NotRequired[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetLineUnitSeriesOverrideArgsDict']]]]
@@ -13948,6 +14056,10 @@ if not MYPY:
13948
14056
  """
13949
14057
  (Optional) This attribute determines the frequency for data refresh specified in milliseconds. Accepted values are `auto` for default value, `0` for no refresh, `5000` for 5 seconds, `30000` for 30 seconds, `60000` for 60 seconds, `300000` for 5 minutes, `1800000` for 30 minutes, `3600000` for 60 minute, `10800000` for 3 hours, `43200000` for 12 hours and `86400000` for 24 hours.
13950
14058
  """
14059
+ tooltip: NotRequired[pulumi.Input['OneDashboardPageWidgetStackedBarTooltipArgsDict']]
14060
+ """
14061
+ (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
14062
+ """
13951
14063
  units: NotRequired[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarUnitArgsDict']]]]
13952
14064
  """
13953
14065
  (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
@@ -13981,6 +14093,7 @@ class OneDashboardPageWidgetStackedBarArgs:
13981
14093
  legend_enabled: Optional[pulumi.Input[builtins.bool]] = None,
13982
14094
  null_values: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarNullValueArgs']]]] = None,
13983
14095
  refresh_rate: Optional[pulumi.Input[builtins.str]] = None,
14096
+ tooltip: Optional[pulumi.Input['OneDashboardPageWidgetStackedBarTooltipArgs']] = None,
13984
14097
  units: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarUnitArgs']]]] = None,
13985
14098
  width: Optional[pulumi.Input[builtins.int]] = None,
13986
14099
  y_axis_left_max: Optional[pulumi.Input[builtins.float]] = None,
@@ -14000,6 +14113,7 @@ class OneDashboardPageWidgetStackedBarArgs:
14000
14113
  :param pulumi.Input[builtins.bool] legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
14001
14114
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarNullValueArgs']]] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
14002
14115
  :param pulumi.Input[builtins.str] refresh_rate: (Optional) This attribute determines the frequency for data refresh specified in milliseconds. Accepted values are `auto` for default value, `0` for no refresh, `5000` for 5 seconds, `30000` for 30 seconds, `60000` for 60 seconds, `300000` for 5 minutes, `1800000` for 30 minutes, `3600000` for 60 minute, `10800000` for 3 hours, `43200000` for 12 hours and `86400000` for 24 hours.
14116
+ :param pulumi.Input['OneDashboardPageWidgetStackedBarTooltipArgs'] tooltip: (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
14003
14117
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarUnitArgs']]] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
14004
14118
  :param pulumi.Input[builtins.int] width: (Optional) Width of the widget. Valid values are `1` to `12` inclusive. Defaults to `4`.
14005
14119
  :param pulumi.Input[builtins.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.
@@ -14028,6 +14142,8 @@ class OneDashboardPageWidgetStackedBarArgs:
14028
14142
  pulumi.set(__self__, "null_values", null_values)
14029
14143
  if refresh_rate is not None:
14030
14144
  pulumi.set(__self__, "refresh_rate", refresh_rate)
14145
+ if tooltip is not None:
14146
+ pulumi.set(__self__, "tooltip", tooltip)
14031
14147
  if units is not None:
14032
14148
  pulumi.set(__self__, "units", units)
14033
14149
  if width is not None:
@@ -14205,6 +14321,18 @@ class OneDashboardPageWidgetStackedBarArgs:
14205
14321
  def refresh_rate(self, value: Optional[pulumi.Input[builtins.str]]):
14206
14322
  pulumi.set(self, "refresh_rate", value)
14207
14323
 
14324
+ @property
14325
+ @pulumi.getter
14326
+ def tooltip(self) -> Optional[pulumi.Input['OneDashboardPageWidgetStackedBarTooltipArgs']]:
14327
+ """
14328
+ (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
14329
+ """
14330
+ return pulumi.get(self, "tooltip")
14331
+
14332
+ @tooltip.setter
14333
+ def tooltip(self, value: Optional[pulumi.Input['OneDashboardPageWidgetStackedBarTooltipArgs']]):
14334
+ pulumi.set(self, "tooltip", value)
14335
+
14208
14336
  @property
14209
14337
  @pulumi.getter
14210
14338
  def units(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarUnitArgs']]]]:
@@ -14650,6 +14778,37 @@ class OneDashboardPageWidgetStackedBarNullValueSeriesOverrideArgs:
14650
14778
  pulumi.set(self, "series_name", value)
14651
14779
 
14652
14780
 
14781
+ if not MYPY:
14782
+ class OneDashboardPageWidgetStackedBarTooltipArgsDict(TypedDict):
14783
+ mode: pulumi.Input[builtins.str]
14784
+ """
14785
+ (Required) The tooltip display mode. Valid values are:
14786
+ """
14787
+ elif False:
14788
+ OneDashboardPageWidgetStackedBarTooltipArgsDict: TypeAlias = Mapping[str, Any]
14789
+
14790
+ @pulumi.input_type
14791
+ class OneDashboardPageWidgetStackedBarTooltipArgs:
14792
+ def __init__(__self__, *,
14793
+ mode: pulumi.Input[builtins.str]):
14794
+ """
14795
+ :param pulumi.Input[builtins.str] mode: (Required) The tooltip display mode. Valid values are:
14796
+ """
14797
+ pulumi.set(__self__, "mode", mode)
14798
+
14799
+ @property
14800
+ @pulumi.getter
14801
+ def mode(self) -> pulumi.Input[builtins.str]:
14802
+ """
14803
+ (Required) The tooltip display mode. Valid values are:
14804
+ """
14805
+ return pulumi.get(self, "mode")
14806
+
14807
+ @mode.setter
14808
+ def mode(self, value: pulumi.Input[builtins.str]):
14809
+ pulumi.set(self, "mode", value)
14810
+
14811
+
14653
14812
  if not MYPY:
14654
14813
  class OneDashboardPageWidgetStackedBarUnitArgsDict(TypedDict):
14655
14814
  series_overrides: NotRequired[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarUnitSeriesOverrideArgsDict']]]]
@@ -51,6 +51,7 @@ __all__ = [
51
51
  'OneDashboardPageWidgetAreaNrqlQuery',
52
52
  'OneDashboardPageWidgetAreaNullValue',
53
53
  'OneDashboardPageWidgetAreaNullValueSeriesOverride',
54
+ 'OneDashboardPageWidgetAreaTooltip',
54
55
  'OneDashboardPageWidgetAreaUnit',
55
56
  'OneDashboardPageWidgetAreaUnitSeriesOverride',
56
57
  'OneDashboardPageWidgetBar',
@@ -132,6 +133,7 @@ __all__ = [
132
133
  'OneDashboardPageWidgetLineNullValue',
133
134
  'OneDashboardPageWidgetLineNullValueSeriesOverride',
134
135
  'OneDashboardPageWidgetLineThreshold',
136
+ 'OneDashboardPageWidgetLineTooltip',
135
137
  'OneDashboardPageWidgetLineUnit',
136
138
  'OneDashboardPageWidgetLineUnitSeriesOverride',
137
139
  'OneDashboardPageWidgetLineYAxisRight',
@@ -172,6 +174,7 @@ __all__ = [
172
174
  'OneDashboardPageWidgetStackedBarNrqlQuery',
173
175
  'OneDashboardPageWidgetStackedBarNullValue',
174
176
  'OneDashboardPageWidgetStackedBarNullValueSeriesOverride',
177
+ 'OneDashboardPageWidgetStackedBarTooltip',
175
178
  'OneDashboardPageWidgetStackedBarUnit',
176
179
  'OneDashboardPageWidgetStackedBarUnitSeriesOverride',
177
180
  'OneDashboardPageWidgetTable',
@@ -2305,6 +2308,7 @@ class OneDashboardPageWidgetArea(dict):
2305
2308
  legend_enabled: Optional[builtins.bool] = None,
2306
2309
  null_values: Optional[Sequence['outputs.OneDashboardPageWidgetAreaNullValue']] = None,
2307
2310
  refresh_rate: Optional[builtins.str] = None,
2311
+ tooltip: Optional['outputs.OneDashboardPageWidgetAreaTooltip'] = None,
2308
2312
  units: Optional[Sequence['outputs.OneDashboardPageWidgetAreaUnit']] = None,
2309
2313
  width: Optional[builtins.int] = None,
2310
2314
  y_axis_left_max: Optional[builtins.float] = None,
@@ -2324,6 +2328,7 @@ class OneDashboardPageWidgetArea(dict):
2324
2328
  :param builtins.bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
2325
2329
  :param Sequence['OneDashboardPageWidgetAreaNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
2326
2330
  :param builtins.str refresh_rate: (Optional) This attribute determines the frequency for data refresh specified in milliseconds. Accepted values are `auto` for default value, `0` for no refresh, `5000` for 5 seconds, `30000` for 30 seconds, `60000` for 60 seconds, `300000` for 5 minutes, `1800000` for 30 minutes, `3600000` for 60 minute, `10800000` for 3 hours, `43200000` for 12 hours and `86400000` for 24 hours.
2331
+ :param 'OneDashboardPageWidgetAreaTooltipArgs' tooltip: (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
2327
2332
  :param Sequence['OneDashboardPageWidgetAreaUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
2328
2333
  :param builtins.int width: (Optional) Width of the widget. Valid values are `1` to `12` inclusive. Defaults to `4`.
2329
2334
  :param builtins.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.
@@ -2352,6 +2357,8 @@ class OneDashboardPageWidgetArea(dict):
2352
2357
  pulumi.set(__self__, "null_values", null_values)
2353
2358
  if refresh_rate is not None:
2354
2359
  pulumi.set(__self__, "refresh_rate", refresh_rate)
2360
+ if tooltip is not None:
2361
+ pulumi.set(__self__, "tooltip", tooltip)
2355
2362
  if units is not None:
2356
2363
  pulumi.set(__self__, "units", units)
2357
2364
  if width is not None:
@@ -2473,6 +2480,14 @@ class OneDashboardPageWidgetArea(dict):
2473
2480
  """
2474
2481
  return pulumi.get(self, "refresh_rate")
2475
2482
 
2483
+ @property
2484
+ @pulumi.getter
2485
+ def tooltip(self) -> Optional['outputs.OneDashboardPageWidgetAreaTooltip']:
2486
+ """
2487
+ (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
2488
+ """
2489
+ return pulumi.get(self, "tooltip")
2490
+
2476
2491
  @property
2477
2492
  @pulumi.getter
2478
2493
  def units(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetAreaUnit']]:
@@ -2828,6 +2843,24 @@ class OneDashboardPageWidgetAreaNullValueSeriesOverride(dict):
2828
2843
  return pulumi.get(self, "series_name")
2829
2844
 
2830
2845
 
2846
+ @pulumi.output_type
2847
+ class OneDashboardPageWidgetAreaTooltip(dict):
2848
+ def __init__(__self__, *,
2849
+ mode: builtins.str):
2850
+ """
2851
+ :param builtins.str mode: (Required) The tooltip display mode. Valid values are:
2852
+ """
2853
+ pulumi.set(__self__, "mode", mode)
2854
+
2855
+ @property
2856
+ @pulumi.getter
2857
+ def mode(self) -> builtins.str:
2858
+ """
2859
+ (Required) The tooltip display mode. Valid values are:
2860
+ """
2861
+ return pulumi.get(self, "mode")
2862
+
2863
+
2831
2864
  @pulumi.output_type
2832
2865
  class OneDashboardPageWidgetAreaUnit(dict):
2833
2866
  @staticmethod
@@ -7772,6 +7805,7 @@ class OneDashboardPageWidgetLine(dict):
7772
7805
  null_values: Optional[Sequence['outputs.OneDashboardPageWidgetLineNullValue']] = None,
7773
7806
  refresh_rate: Optional[builtins.str] = None,
7774
7807
  thresholds: Optional[Sequence['outputs.OneDashboardPageWidgetLineThreshold']] = None,
7808
+ tooltip: Optional['outputs.OneDashboardPageWidgetLineTooltip'] = None,
7775
7809
  units: Optional[Sequence['outputs.OneDashboardPageWidgetLineUnit']] = None,
7776
7810
  width: Optional[builtins.int] = None,
7777
7811
  y_axis_left_max: Optional[builtins.float] = None,
@@ -7795,6 +7829,7 @@ class OneDashboardPageWidgetLine(dict):
7795
7829
  :param Sequence['OneDashboardPageWidgetLineNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
7796
7830
  :param builtins.str refresh_rate: (Optional) This attribute determines the frequency for data refresh specified in milliseconds. Accepted values are `auto` for default value, `0` for no refresh, `5000` for 5 seconds, `30000` for 30 seconds, `60000` for 60 seconds, `300000` for 5 minutes, `1800000` for 30 minutes, `3600000` for 60 minute, `10800000` for 3 hours, `43200000` for 12 hours and `86400000` for 24 hours.
7797
7831
  :param Sequence['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 -
7832
+ :param 'OneDashboardPageWidgetLineTooltipArgs' tooltip: (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
7798
7833
  :param Sequence['OneDashboardPageWidgetLineUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
7799
7834
  :param builtins.int width: (Optional) Width of the widget. Valid values are `1` to `12` inclusive. Defaults to `4`.
7800
7835
  :param builtins.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.
@@ -7829,6 +7864,8 @@ class OneDashboardPageWidgetLine(dict):
7829
7864
  pulumi.set(__self__, "refresh_rate", refresh_rate)
7830
7865
  if thresholds is not None:
7831
7866
  pulumi.set(__self__, "thresholds", thresholds)
7867
+ if tooltip is not None:
7868
+ pulumi.set(__self__, "tooltip", tooltip)
7832
7869
  if units is not None:
7833
7870
  pulumi.set(__self__, "units", units)
7834
7871
  if width is not None:
@@ -7970,6 +8007,14 @@ class OneDashboardPageWidgetLine(dict):
7970
8007
  """
7971
8008
  return pulumi.get(self, "thresholds")
7972
8009
 
8010
+ @property
8011
+ @pulumi.getter
8012
+ def tooltip(self) -> Optional['outputs.OneDashboardPageWidgetLineTooltip']:
8013
+ """
8014
+ (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
8015
+ """
8016
+ return pulumi.get(self, "tooltip")
8017
+
7973
8018
  @property
7974
8019
  @pulumi.getter
7975
8020
  def units(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetLineUnit']]:
@@ -8413,6 +8458,24 @@ class OneDashboardPageWidgetLineThreshold(dict):
8413
8458
  return pulumi.get(self, "to")
8414
8459
 
8415
8460
 
8461
+ @pulumi.output_type
8462
+ class OneDashboardPageWidgetLineTooltip(dict):
8463
+ def __init__(__self__, *,
8464
+ mode: builtins.str):
8465
+ """
8466
+ :param builtins.str mode: (Required) The tooltip display mode. Valid values are:
8467
+ """
8468
+ pulumi.set(__self__, "mode", mode)
8469
+
8470
+ @property
8471
+ @pulumi.getter
8472
+ def mode(self) -> builtins.str:
8473
+ """
8474
+ (Required) The tooltip display mode. Valid values are:
8475
+ """
8476
+ return pulumi.get(self, "mode")
8477
+
8478
+
8416
8479
  @pulumi.output_type
8417
8480
  class OneDashboardPageWidgetLineUnit(dict):
8418
8481
  @staticmethod
@@ -10631,6 +10694,7 @@ class OneDashboardPageWidgetStackedBar(dict):
10631
10694
  legend_enabled: Optional[builtins.bool] = None,
10632
10695
  null_values: Optional[Sequence['outputs.OneDashboardPageWidgetStackedBarNullValue']] = None,
10633
10696
  refresh_rate: Optional[builtins.str] = None,
10697
+ tooltip: Optional['outputs.OneDashboardPageWidgetStackedBarTooltip'] = None,
10634
10698
  units: Optional[Sequence['outputs.OneDashboardPageWidgetStackedBarUnit']] = None,
10635
10699
  width: Optional[builtins.int] = None,
10636
10700
  y_axis_left_max: Optional[builtins.float] = None,
@@ -10650,6 +10714,7 @@ class OneDashboardPageWidgetStackedBar(dict):
10650
10714
  :param builtins.bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
10651
10715
  :param Sequence['OneDashboardPageWidgetStackedBarNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
10652
10716
  :param builtins.str refresh_rate: (Optional) This attribute determines the frequency for data refresh specified in milliseconds. Accepted values are `auto` for default value, `0` for no refresh, `5000` for 5 seconds, `30000` for 30 seconds, `60000` for 60 seconds, `300000` for 5 minutes, `1800000` for 30 minutes, `3600000` for 60 minute, `10800000` for 3 hours, `43200000` for 12 hours and `86400000` for 24 hours.
10717
+ :param 'OneDashboardPageWidgetStackedBarTooltipArgs' tooltip: (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
10653
10718
  :param Sequence['OneDashboardPageWidgetStackedBarUnitArgs'] units: (Optional) A nested block that describes units on your Y axis. See Nested Units blocks below for details.
10654
10719
  :param builtins.int width: (Optional) Width of the widget. Valid values are `1` to `12` inclusive. Defaults to `4`.
10655
10720
  :param builtins.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.
@@ -10678,6 +10743,8 @@ class OneDashboardPageWidgetStackedBar(dict):
10678
10743
  pulumi.set(__self__, "null_values", null_values)
10679
10744
  if refresh_rate is not None:
10680
10745
  pulumi.set(__self__, "refresh_rate", refresh_rate)
10746
+ if tooltip is not None:
10747
+ pulumi.set(__self__, "tooltip", tooltip)
10681
10748
  if units is not None:
10682
10749
  pulumi.set(__self__, "units", units)
10683
10750
  if width is not None:
@@ -10799,6 +10866,14 @@ class OneDashboardPageWidgetStackedBar(dict):
10799
10866
  """
10800
10867
  return pulumi.get(self, "refresh_rate")
10801
10868
 
10869
+ @property
10870
+ @pulumi.getter
10871
+ def tooltip(self) -> Optional['outputs.OneDashboardPageWidgetStackedBarTooltip']:
10872
+ """
10873
+ (Optional) A nested block that describes tooltip configuration for area, line, and stacked bar widgets. See Nested tooltip blocks below for details.
10874
+ """
10875
+ return pulumi.get(self, "tooltip")
10876
+
10802
10877
  @property
10803
10878
  @pulumi.getter
10804
10879
  def units(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetStackedBarUnit']]:
@@ -11154,6 +11229,24 @@ class OneDashboardPageWidgetStackedBarNullValueSeriesOverride(dict):
11154
11229
  return pulumi.get(self, "series_name")
11155
11230
 
11156
11231
 
11232
+ @pulumi.output_type
11233
+ class OneDashboardPageWidgetStackedBarTooltip(dict):
11234
+ def __init__(__self__, *,
11235
+ mode: builtins.str):
11236
+ """
11237
+ :param builtins.str mode: (Required) The tooltip display mode. Valid values are:
11238
+ """
11239
+ pulumi.set(__self__, "mode", mode)
11240
+
11241
+ @property
11242
+ @pulumi.getter
11243
+ def mode(self) -> builtins.str:
11244
+ """
11245
+ (Required) The tooltip display mode. Valid values are:
11246
+ """
11247
+ return pulumi.get(self, "mode")
11248
+
11249
+
11157
11250
  @pulumi.output_type
11158
11251
  class OneDashboardPageWidgetStackedBarUnit(dict):
11159
11252
  @staticmethod
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "newrelic",
4
- "version": "5.48.0-alpha.1752819614"
4
+ "version": "5.48.0-alpha.1753156041"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_newrelic
3
- Version: 5.48.0a1752819614
3
+ Version: 5.48.0a1753156041
4
4
  Summary: A Pulumi package for creating and managing New Relic resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,5 +1,5 @@
1
1
  pulumi_newrelic/__init__.py,sha256=2niV6Xog7_faAW89wYrU_B_Qo0CstccUSY-XN3rI8D0,11533
2
- pulumi_newrelic/_inputs.py,sha256=QMT7Un1uVNMp7tPJcft-XE55O4qjnxDGx7X9eyIXUTQ,843238
2
+ pulumi_newrelic/_inputs.py,sha256=dAOfhfJ5rKrqAzXcIxvD3tX8AIMTWMIh1--He6xCs4k,849949
3
3
  pulumi_newrelic/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
4
  pulumi_newrelic/account_management.py,sha256=AV-L0oZrqfOoCmo9UeSwcEfcl2ZwYeKtFGBobziOrqE,9286
5
5
  pulumi_newrelic/alert_channel.py,sha256=8A-Zo82l0DcpAlApa20B6ooWikcCQHaA8frcocOrGps,22264
@@ -40,9 +40,9 @@ pulumi_newrelic/obfuscation_rule.py,sha256=P4zX1-OBnnfk6Flrftt5p80LXbJh-8YXrG-03
40
40
  pulumi_newrelic/one_dashboard.py,sha256=fQW7QGFwUQaHauPAHQ0twRF65kKOTl0mZj2YPybQyA0,21545
41
41
  pulumi_newrelic/one_dashboard_json.py,sha256=ZeqBpwMeiu-yD5KumRG2iIGEUDRo692WS5BTdpyfmyw,13306
42
42
  pulumi_newrelic/one_dashboard_raw.py,sha256=8_GTKGRswhj-LvnNHSxPqZFPmoKc7ZeEhZHrQEBM9CI,24365
43
- pulumi_newrelic/outputs.py,sha256=UV01Fk4PrphoZj9fw47Zs6kSYYwj3Ql2-NXbRUHDJwc,607463
43
+ pulumi_newrelic/outputs.py,sha256=atqvsTVgTLWdg3gz4vcD1mJPOf6hBx9HGw_wToPJ6eU,611258
44
44
  pulumi_newrelic/provider.py,sha256=GCv8seKMchBvhO3ZA89FoGAPffYrL0YIYx85etyjbAM,20101
45
- pulumi_newrelic/pulumi-plugin.json,sha256=xmFPM0PJCdN1YQ9fcyER-iMnSUC_JupAwFPZIjzuhMQ,85
45
+ pulumi_newrelic/pulumi-plugin.json,sha256=ePNyvdgT6FPDzNvdbREGPj7LkaiTQN9GJxfrRdkcI_I,85
46
46
  pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
47
  pulumi_newrelic/service_level.py,sha256=Qj6shEOVYdylKYsRLqJQNGwk0DAxksUurlSDhi4V5a0,29545
48
48
  pulumi_newrelic/user.py,sha256=abxnTqoJL6tqoUUSV1uFFSpBZMytcep6aczAhLjTcZ4,19665
@@ -84,7 +84,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=kWIl1i5NDYtjdkleubwXjWbcIP
84
84
  pulumi_newrelic/synthetics/script_monitor.py,sha256=-Hj22y1j23umPxi2J6c-tGOIkhl5imeSyK-rx8V8JQg,69765
85
85
  pulumi_newrelic/synthetics/secure_credential.py,sha256=z6OAfSDp1y73vlv1mmZxdFzfTqLvYCxvjUy9TQJzZD4,16480
86
86
  pulumi_newrelic/synthetics/step_monitor.py,sha256=XeINCK1QNkiBxyKUShG7ZFPb7f5iLH-iuiOLe8HantE,52019
87
- pulumi_newrelic-5.48.0a1752819614.dist-info/METADATA,sha256=rWoati1P7OrSJbWcFazj5RLC0Ir2IAwkn3Bp6NMe2VU,3966
88
- pulumi_newrelic-5.48.0a1752819614.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
89
- pulumi_newrelic-5.48.0a1752819614.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
- pulumi_newrelic-5.48.0a1752819614.dist-info/RECORD,,
87
+ pulumi_newrelic-5.48.0a1753156041.dist-info/METADATA,sha256=LCxf7_7t--5-sTSr2bHRZi3MEAQ-7L5EHVmy8vprV8E,3966
88
+ pulumi_newrelic-5.48.0a1753156041.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
89
+ pulumi_newrelic-5.48.0a1753156041.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
+ pulumi_newrelic-5.48.0a1753156041.dist-info/RECORD,,