pulumi-newrelic 5.47.0a1750228491__py3-none-any.whl → 5.48.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

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']]]]
@@ -17102,7 +17261,7 @@ if not MYPY:
17102
17261
  """
17103
17262
  type: NotRequired[pulumi.Input[builtins.str]]
17104
17263
  """
17105
- (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA, MICROSOFT_TEAMS).
17264
+ (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
17106
17265
  """
17107
17266
  update_original_message: NotRequired[pulumi.Input[builtins.bool]]
17108
17267
  """
@@ -17123,7 +17282,7 @@ class WorkflowDestinationArgs:
17123
17282
  :param pulumi.Input[builtins.str] channel_id: (Required) Destination's channel id.
17124
17283
  :param pulumi.Input[builtins.str] name: The name of the workflow.
17125
17284
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] notification_triggers: List of triggers to notify about in this destination configuration.
17126
- :param pulumi.Input[builtins.str] type: (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA, MICROSOFT_TEAMS).
17285
+ :param pulumi.Input[builtins.str] type: (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
17127
17286
  :param pulumi.Input[builtins.bool] update_original_message: Update original notification message (Slack channels only)
17128
17287
  """
17129
17288
  pulumi.set(__self__, "channel_id", channel_id)
@@ -17176,7 +17335,7 @@ class WorkflowDestinationArgs:
17176
17335
  @pulumi.getter
17177
17336
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
17178
17337
  """
17179
- (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA, MICROSOFT_TEAMS).
17338
+ (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
17180
17339
  """
17181
17340
  return pulumi.get(self, "type")
17182
17341
 
@@ -66,6 +66,8 @@ __all__ = [
66
66
  'AwsIntegrationsAwsAppSyncArgsDict',
67
67
  'AwsIntegrationsAwsAthenaArgs',
68
68
  'AwsIntegrationsAwsAthenaArgsDict',
69
+ 'AwsIntegrationsAwsAutoDiscoveryArgs',
70
+ 'AwsIntegrationsAwsAutoDiscoveryArgsDict',
69
71
  'AwsIntegrationsAwsCognitoArgs',
70
72
  'AwsIntegrationsAwsCognitoArgsDict',
71
73
  'AwsIntegrationsAwsConnectArgs',
@@ -2620,6 +2622,58 @@ class AwsIntegrationsAwsAthenaArgs:
2620
2622
  pulumi.set(self, "metrics_polling_interval", value)
2621
2623
 
2622
2624
 
2625
+ if not MYPY:
2626
+ class AwsIntegrationsAwsAutoDiscoveryArgsDict(TypedDict):
2627
+ aws_regions: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
2628
+ """
2629
+ Specify each AWS region that includes the resources that you want to monitor.
2630
+ """
2631
+ metrics_polling_interval: NotRequired[pulumi.Input[builtins.int]]
2632
+ """
2633
+ The data polling interval in seconds.
2634
+ """
2635
+ elif False:
2636
+ AwsIntegrationsAwsAutoDiscoveryArgsDict: TypeAlias = Mapping[str, Any]
2637
+
2638
+ @pulumi.input_type
2639
+ class AwsIntegrationsAwsAutoDiscoveryArgs:
2640
+ def __init__(__self__, *,
2641
+ aws_regions: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
2642
+ metrics_polling_interval: Optional[pulumi.Input[builtins.int]] = None):
2643
+ """
2644
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
2645
+ :param pulumi.Input[builtins.int] metrics_polling_interval: The data polling interval in seconds.
2646
+ """
2647
+ if aws_regions is not None:
2648
+ pulumi.set(__self__, "aws_regions", aws_regions)
2649
+ if metrics_polling_interval is not None:
2650
+ pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
2651
+
2652
+ @property
2653
+ @pulumi.getter(name="awsRegions")
2654
+ def aws_regions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
2655
+ """
2656
+ Specify each AWS region that includes the resources that you want to monitor.
2657
+ """
2658
+ return pulumi.get(self, "aws_regions")
2659
+
2660
+ @aws_regions.setter
2661
+ def aws_regions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
2662
+ pulumi.set(self, "aws_regions", value)
2663
+
2664
+ @property
2665
+ @pulumi.getter(name="metricsPollingInterval")
2666
+ def metrics_polling_interval(self) -> Optional[pulumi.Input[builtins.int]]:
2667
+ """
2668
+ The data polling interval in seconds.
2669
+ """
2670
+ return pulumi.get(self, "metrics_polling_interval")
2671
+
2672
+ @metrics_polling_interval.setter
2673
+ def metrics_polling_interval(self, value: Optional[pulumi.Input[builtins.int]]):
2674
+ pulumi.set(self, "metrics_polling_interval", value)
2675
+
2676
+
2623
2677
  if not MYPY:
2624
2678
  class AwsIntegrationsAwsCognitoArgsDict(TypedDict):
2625
2679
  aws_regions: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
@@ -29,6 +29,7 @@ class AwsIntegrationsArgs:
29
29
  auto_scaling: Optional[pulumi.Input['AwsIntegrationsAutoScalingArgs']] = None,
30
30
  aws_app_sync: Optional[pulumi.Input['AwsIntegrationsAwsAppSyncArgs']] = None,
31
31
  aws_athena: Optional[pulumi.Input['AwsIntegrationsAwsAthenaArgs']] = None,
32
+ aws_auto_discovery: Optional[pulumi.Input['AwsIntegrationsAwsAutoDiscoveryArgs']] = None,
32
33
  aws_cognito: Optional[pulumi.Input['AwsIntegrationsAwsCognitoArgs']] = None,
33
34
  aws_connect: Optional[pulumi.Input['AwsIntegrationsAwsConnectArgs']] = None,
34
35
  aws_direct_connect: Optional[pulumi.Input['AwsIntegrationsAwsDirectConnectArgs']] = None,
@@ -85,6 +86,7 @@ class AwsIntegrationsArgs:
85
86
  :param pulumi.Input['AwsIntegrationsAutoScalingArgs'] auto_scaling: AutoScaling integration
86
87
  :param pulumi.Input['AwsIntegrationsAwsAppSyncArgs'] aws_app_sync: Aws Appsync integration
87
88
  :param pulumi.Input['AwsIntegrationsAwsAthenaArgs'] aws_athena: Aws Athena integration
89
+ :param pulumi.Input['AwsIntegrationsAwsAutoDiscoveryArgs'] aws_auto_discovery: Aws Auto Discovery Integration
88
90
  :param pulumi.Input['AwsIntegrationsAwsCognitoArgs'] aws_cognito: Aws Cognito integration
89
91
  :param pulumi.Input['AwsIntegrationsAwsConnectArgs'] aws_connect: Aws Connect integration
90
92
  :param pulumi.Input['AwsIntegrationsAwsDirectConnectArgs'] aws_direct_connect: Aws Direct Connect integration
@@ -146,6 +148,8 @@ class AwsIntegrationsArgs:
146
148
  pulumi.set(__self__, "aws_app_sync", aws_app_sync)
147
149
  if aws_athena is not None:
148
150
  pulumi.set(__self__, "aws_athena", aws_athena)
151
+ if aws_auto_discovery is not None:
152
+ pulumi.set(__self__, "aws_auto_discovery", aws_auto_discovery)
149
153
  if aws_cognito is not None:
150
154
  pulumi.set(__self__, "aws_cognito", aws_cognito)
151
155
  if aws_connect is not None:
@@ -325,6 +329,18 @@ class AwsIntegrationsArgs:
325
329
  def aws_athena(self, value: Optional[pulumi.Input['AwsIntegrationsAwsAthenaArgs']]):
326
330
  pulumi.set(self, "aws_athena", value)
327
331
 
332
+ @property
333
+ @pulumi.getter(name="awsAutoDiscovery")
334
+ def aws_auto_discovery(self) -> Optional[pulumi.Input['AwsIntegrationsAwsAutoDiscoveryArgs']]:
335
+ """
336
+ Aws Auto Discovery Integration
337
+ """
338
+ return pulumi.get(self, "aws_auto_discovery")
339
+
340
+ @aws_auto_discovery.setter
341
+ def aws_auto_discovery(self, value: Optional[pulumi.Input['AwsIntegrationsAwsAutoDiscoveryArgs']]):
342
+ pulumi.set(self, "aws_auto_discovery", value)
343
+
328
344
  @property
329
345
  @pulumi.getter(name="awsCognito")
330
346
  def aws_cognito(self) -> Optional[pulumi.Input['AwsIntegrationsAwsCognitoArgs']]:
@@ -899,6 +915,7 @@ class _AwsIntegrationsState:
899
915
  auto_scaling: Optional[pulumi.Input['AwsIntegrationsAutoScalingArgs']] = None,
900
916
  aws_app_sync: Optional[pulumi.Input['AwsIntegrationsAwsAppSyncArgs']] = None,
901
917
  aws_athena: Optional[pulumi.Input['AwsIntegrationsAwsAthenaArgs']] = None,
918
+ aws_auto_discovery: Optional[pulumi.Input['AwsIntegrationsAwsAutoDiscoveryArgs']] = None,
902
919
  aws_cognito: Optional[pulumi.Input['AwsIntegrationsAwsCognitoArgs']] = None,
903
920
  aws_connect: Optional[pulumi.Input['AwsIntegrationsAwsConnectArgs']] = None,
904
921
  aws_direct_connect: Optional[pulumi.Input['AwsIntegrationsAwsDirectConnectArgs']] = None,
@@ -955,6 +972,7 @@ class _AwsIntegrationsState:
955
972
  :param pulumi.Input['AwsIntegrationsAutoScalingArgs'] auto_scaling: AutoScaling integration
956
973
  :param pulumi.Input['AwsIntegrationsAwsAppSyncArgs'] aws_app_sync: Aws Appsync integration
957
974
  :param pulumi.Input['AwsIntegrationsAwsAthenaArgs'] aws_athena: Aws Athena integration
975
+ :param pulumi.Input['AwsIntegrationsAwsAutoDiscoveryArgs'] aws_auto_discovery: Aws Auto Discovery Integration
958
976
  :param pulumi.Input['AwsIntegrationsAwsCognitoArgs'] aws_cognito: Aws Cognito integration
959
977
  :param pulumi.Input['AwsIntegrationsAwsConnectArgs'] aws_connect: Aws Connect integration
960
978
  :param pulumi.Input['AwsIntegrationsAwsDirectConnectArgs'] aws_direct_connect: Aws Direct Connect integration
@@ -1016,6 +1034,8 @@ class _AwsIntegrationsState:
1016
1034
  pulumi.set(__self__, "aws_app_sync", aws_app_sync)
1017
1035
  if aws_athena is not None:
1018
1036
  pulumi.set(__self__, "aws_athena", aws_athena)
1037
+ if aws_auto_discovery is not None:
1038
+ pulumi.set(__self__, "aws_auto_discovery", aws_auto_discovery)
1019
1039
  if aws_cognito is not None:
1020
1040
  pulumi.set(__self__, "aws_cognito", aws_cognito)
1021
1041
  if aws_connect is not None:
@@ -1185,6 +1205,18 @@ class _AwsIntegrationsState:
1185
1205
  def aws_athena(self, value: Optional[pulumi.Input['AwsIntegrationsAwsAthenaArgs']]):
1186
1206
  pulumi.set(self, "aws_athena", value)
1187
1207
 
1208
+ @property
1209
+ @pulumi.getter(name="awsAutoDiscovery")
1210
+ def aws_auto_discovery(self) -> Optional[pulumi.Input['AwsIntegrationsAwsAutoDiscoveryArgs']]:
1211
+ """
1212
+ Aws Auto Discovery Integration
1213
+ """
1214
+ return pulumi.get(self, "aws_auto_discovery")
1215
+
1216
+ @aws_auto_discovery.setter
1217
+ def aws_auto_discovery(self, value: Optional[pulumi.Input['AwsIntegrationsAwsAutoDiscoveryArgs']]):
1218
+ pulumi.set(self, "aws_auto_discovery", value)
1219
+
1188
1220
  @property
1189
1221
  @pulumi.getter(name="awsCognito")
1190
1222
  def aws_cognito(self) -> Optional[pulumi.Input['AwsIntegrationsAwsCognitoArgs']]:
@@ -1774,6 +1806,7 @@ class AwsIntegrations(pulumi.CustomResource):
1774
1806
  auto_scaling: Optional[pulumi.Input[Union['AwsIntegrationsAutoScalingArgs', 'AwsIntegrationsAutoScalingArgsDict']]] = None,
1775
1807
  aws_app_sync: Optional[pulumi.Input[Union['AwsIntegrationsAwsAppSyncArgs', 'AwsIntegrationsAwsAppSyncArgsDict']]] = None,
1776
1808
  aws_athena: Optional[pulumi.Input[Union['AwsIntegrationsAwsAthenaArgs', 'AwsIntegrationsAwsAthenaArgsDict']]] = None,
1809
+ aws_auto_discovery: Optional[pulumi.Input[Union['AwsIntegrationsAwsAutoDiscoveryArgs', 'AwsIntegrationsAwsAutoDiscoveryArgsDict']]] = None,
1777
1810
  aws_cognito: Optional[pulumi.Input[Union['AwsIntegrationsAwsCognitoArgs', 'AwsIntegrationsAwsCognitoArgsDict']]] = None,
1778
1811
  aws_connect: Optional[pulumi.Input[Union['AwsIntegrationsAwsConnectArgs', 'AwsIntegrationsAwsConnectArgsDict']]] = None,
1779
1812
  aws_direct_connect: Optional[pulumi.Input[Union['AwsIntegrationsAwsDirectConnectArgs', 'AwsIntegrationsAwsDirectConnectArgsDict']]] = None,
@@ -1842,6 +1875,7 @@ class AwsIntegrations(pulumi.CustomResource):
1842
1875
  :param pulumi.Input[Union['AwsIntegrationsAutoScalingArgs', 'AwsIntegrationsAutoScalingArgsDict']] auto_scaling: AutoScaling integration
1843
1876
  :param pulumi.Input[Union['AwsIntegrationsAwsAppSyncArgs', 'AwsIntegrationsAwsAppSyncArgsDict']] aws_app_sync: Aws Appsync integration
1844
1877
  :param pulumi.Input[Union['AwsIntegrationsAwsAthenaArgs', 'AwsIntegrationsAwsAthenaArgsDict']] aws_athena: Aws Athena integration
1878
+ :param pulumi.Input[Union['AwsIntegrationsAwsAutoDiscoveryArgs', 'AwsIntegrationsAwsAutoDiscoveryArgsDict']] aws_auto_discovery: Aws Auto Discovery Integration
1845
1879
  :param pulumi.Input[Union['AwsIntegrationsAwsCognitoArgs', 'AwsIntegrationsAwsCognitoArgsDict']] aws_cognito: Aws Cognito integration
1846
1880
  :param pulumi.Input[Union['AwsIntegrationsAwsConnectArgs', 'AwsIntegrationsAwsConnectArgsDict']] aws_connect: Aws Connect integration
1847
1881
  :param pulumi.Input[Union['AwsIntegrationsAwsDirectConnectArgs', 'AwsIntegrationsAwsDirectConnectArgsDict']] aws_direct_connect: Aws Direct Connect integration
@@ -1929,6 +1963,7 @@ class AwsIntegrations(pulumi.CustomResource):
1929
1963
  auto_scaling: Optional[pulumi.Input[Union['AwsIntegrationsAutoScalingArgs', 'AwsIntegrationsAutoScalingArgsDict']]] = None,
1930
1964
  aws_app_sync: Optional[pulumi.Input[Union['AwsIntegrationsAwsAppSyncArgs', 'AwsIntegrationsAwsAppSyncArgsDict']]] = None,
1931
1965
  aws_athena: Optional[pulumi.Input[Union['AwsIntegrationsAwsAthenaArgs', 'AwsIntegrationsAwsAthenaArgsDict']]] = None,
1966
+ aws_auto_discovery: Optional[pulumi.Input[Union['AwsIntegrationsAwsAutoDiscoveryArgs', 'AwsIntegrationsAwsAutoDiscoveryArgsDict']]] = None,
1932
1967
  aws_cognito: Optional[pulumi.Input[Union['AwsIntegrationsAwsCognitoArgs', 'AwsIntegrationsAwsCognitoArgsDict']]] = None,
1933
1968
  aws_connect: Optional[pulumi.Input[Union['AwsIntegrationsAwsConnectArgs', 'AwsIntegrationsAwsConnectArgsDict']]] = None,
1934
1969
  aws_direct_connect: Optional[pulumi.Input[Union['AwsIntegrationsAwsDirectConnectArgs', 'AwsIntegrationsAwsDirectConnectArgsDict']]] = None,
@@ -1992,6 +2027,7 @@ class AwsIntegrations(pulumi.CustomResource):
1992
2027
  __props__.__dict__["auto_scaling"] = auto_scaling
1993
2028
  __props__.__dict__["aws_app_sync"] = aws_app_sync
1994
2029
  __props__.__dict__["aws_athena"] = aws_athena
2030
+ __props__.__dict__["aws_auto_discovery"] = aws_auto_discovery
1995
2031
  __props__.__dict__["aws_cognito"] = aws_cognito
1996
2032
  __props__.__dict__["aws_connect"] = aws_connect
1997
2033
  __props__.__dict__["aws_direct_connect"] = aws_direct_connect
@@ -2058,6 +2094,7 @@ class AwsIntegrations(pulumi.CustomResource):
2058
2094
  auto_scaling: Optional[pulumi.Input[Union['AwsIntegrationsAutoScalingArgs', 'AwsIntegrationsAutoScalingArgsDict']]] = None,
2059
2095
  aws_app_sync: Optional[pulumi.Input[Union['AwsIntegrationsAwsAppSyncArgs', 'AwsIntegrationsAwsAppSyncArgsDict']]] = None,
2060
2096
  aws_athena: Optional[pulumi.Input[Union['AwsIntegrationsAwsAthenaArgs', 'AwsIntegrationsAwsAthenaArgsDict']]] = None,
2097
+ aws_auto_discovery: Optional[pulumi.Input[Union['AwsIntegrationsAwsAutoDiscoveryArgs', 'AwsIntegrationsAwsAutoDiscoveryArgsDict']]] = None,
2061
2098
  aws_cognito: Optional[pulumi.Input[Union['AwsIntegrationsAwsCognitoArgs', 'AwsIntegrationsAwsCognitoArgsDict']]] = None,
2062
2099
  aws_connect: Optional[pulumi.Input[Union['AwsIntegrationsAwsConnectArgs', 'AwsIntegrationsAwsConnectArgsDict']]] = None,
2063
2100
  aws_direct_connect: Optional[pulumi.Input[Union['AwsIntegrationsAwsDirectConnectArgs', 'AwsIntegrationsAwsDirectConnectArgsDict']]] = None,
@@ -2119,6 +2156,7 @@ class AwsIntegrations(pulumi.CustomResource):
2119
2156
  :param pulumi.Input[Union['AwsIntegrationsAutoScalingArgs', 'AwsIntegrationsAutoScalingArgsDict']] auto_scaling: AutoScaling integration
2120
2157
  :param pulumi.Input[Union['AwsIntegrationsAwsAppSyncArgs', 'AwsIntegrationsAwsAppSyncArgsDict']] aws_app_sync: Aws Appsync integration
2121
2158
  :param pulumi.Input[Union['AwsIntegrationsAwsAthenaArgs', 'AwsIntegrationsAwsAthenaArgsDict']] aws_athena: Aws Athena integration
2159
+ :param pulumi.Input[Union['AwsIntegrationsAwsAutoDiscoveryArgs', 'AwsIntegrationsAwsAutoDiscoveryArgsDict']] aws_auto_discovery: Aws Auto Discovery Integration
2122
2160
  :param pulumi.Input[Union['AwsIntegrationsAwsCognitoArgs', 'AwsIntegrationsAwsCognitoArgsDict']] aws_cognito: Aws Cognito integration
2123
2161
  :param pulumi.Input[Union['AwsIntegrationsAwsConnectArgs', 'AwsIntegrationsAwsConnectArgsDict']] aws_connect: Aws Connect integration
2124
2162
  :param pulumi.Input[Union['AwsIntegrationsAwsDirectConnectArgs', 'AwsIntegrationsAwsDirectConnectArgsDict']] aws_direct_connect: Aws Direct Connect integration
@@ -2178,6 +2216,7 @@ class AwsIntegrations(pulumi.CustomResource):
2178
2216
  __props__.__dict__["auto_scaling"] = auto_scaling
2179
2217
  __props__.__dict__["aws_app_sync"] = aws_app_sync
2180
2218
  __props__.__dict__["aws_athena"] = aws_athena
2219
+ __props__.__dict__["aws_auto_discovery"] = aws_auto_discovery
2181
2220
  __props__.__dict__["aws_cognito"] = aws_cognito
2182
2221
  __props__.__dict__["aws_connect"] = aws_connect
2183
2222
  __props__.__dict__["aws_direct_connect"] = aws_direct_connect
@@ -2276,6 +2315,14 @@ class AwsIntegrations(pulumi.CustomResource):
2276
2315
  """
2277
2316
  return pulumi.get(self, "aws_athena")
2278
2317
 
2318
+ @property
2319
+ @pulumi.getter(name="awsAutoDiscovery")
2320
+ def aws_auto_discovery(self) -> pulumi.Output[Optional['outputs.AwsIntegrationsAwsAutoDiscovery']]:
2321
+ """
2322
+ Aws Auto Discovery Integration
2323
+ """
2324
+ return pulumi.get(self, "aws_auto_discovery")
2325
+
2279
2326
  @property
2280
2327
  @pulumi.getter(name="awsCognito")
2281
2328
  def aws_cognito(self) -> pulumi.Output[Optional['outputs.AwsIntegrationsAwsCognito']]:
@@ -41,6 +41,7 @@ __all__ = [
41
41
  'AwsIntegrationsAutoScaling',
42
42
  'AwsIntegrationsAwsAppSync',
43
43
  'AwsIntegrationsAwsAthena',
44
+ 'AwsIntegrationsAwsAutoDiscovery',
44
45
  'AwsIntegrationsAwsCognito',
45
46
  'AwsIntegrationsAwsConnect',
46
47
  'AwsIntegrationsAwsDirectConnect',
@@ -2126,6 +2127,56 @@ class AwsIntegrationsAwsAthena(dict):
2126
2127
  return pulumi.get(self, "metrics_polling_interval")
2127
2128
 
2128
2129
 
2130
+ @pulumi.output_type
2131
+ class AwsIntegrationsAwsAutoDiscovery(dict):
2132
+ @staticmethod
2133
+ def __key_warning(key: str):
2134
+ suggest = None
2135
+ if key == "awsRegions":
2136
+ suggest = "aws_regions"
2137
+ elif key == "metricsPollingInterval":
2138
+ suggest = "metrics_polling_interval"
2139
+
2140
+ if suggest:
2141
+ pulumi.log.warn(f"Key '{key}' not found in AwsIntegrationsAwsAutoDiscovery. Access the value via the '{suggest}' property getter instead.")
2142
+
2143
+ def __getitem__(self, key: str) -> Any:
2144
+ AwsIntegrationsAwsAutoDiscovery.__key_warning(key)
2145
+ return super().__getitem__(key)
2146
+
2147
+ def get(self, key: str, default = None) -> Any:
2148
+ AwsIntegrationsAwsAutoDiscovery.__key_warning(key)
2149
+ return super().get(key, default)
2150
+
2151
+ def __init__(__self__, *,
2152
+ aws_regions: Optional[Sequence[builtins.str]] = None,
2153
+ metrics_polling_interval: Optional[builtins.int] = None):
2154
+ """
2155
+ :param Sequence[builtins.str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
2156
+ :param builtins.int metrics_polling_interval: The data polling interval in seconds.
2157
+ """
2158
+ if aws_regions is not None:
2159
+ pulumi.set(__self__, "aws_regions", aws_regions)
2160
+ if metrics_polling_interval is not None:
2161
+ pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
2162
+
2163
+ @property
2164
+ @pulumi.getter(name="awsRegions")
2165
+ def aws_regions(self) -> Optional[Sequence[builtins.str]]:
2166
+ """
2167
+ Specify each AWS region that includes the resources that you want to monitor.
2168
+ """
2169
+ return pulumi.get(self, "aws_regions")
2170
+
2171
+ @property
2172
+ @pulumi.getter(name="metricsPollingInterval")
2173
+ def metrics_polling_interval(self) -> Optional[builtins.int]:
2174
+ """
2175
+ The data polling interval in seconds.
2176
+ """
2177
+ return pulumi.get(self, "metrics_polling_interval")
2178
+
2179
+
2129
2180
  @pulumi.output_type
2130
2181
  class AwsIntegrationsAwsCognito(dict):
2131
2182
  @staticmethod
@@ -120,7 +120,7 @@ class GetNotificationDestinationResult:
120
120
  @pulumi.getter
121
121
  def type(self) -> builtins.str:
122
122
  """
123
- The notification destination type, either: `EMAIL`, `SERVICE_NOW`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`, `SLACK`, `SLACK_COLLABORATION` and `MICROSOFT_TEAMS`.
123
+ The notification destination type, either: `EMAIL`, `SERVICE_NOW`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`, `SLACK`, `SLACK_COLLABORATION`, `MICROSOFT_TEAMS` and `WORKFLOW_AUTOMATION`.
124
124
  """
125
125
  return pulumi.get(self, "type")
126
126
 
@@ -34,7 +34,7 @@ class NotificationChannelArgs:
34
34
  :param pulumi.Input[builtins.str] destination_id: The id of the destination.
35
35
  :param pulumi.Input[builtins.str] product: The type of product. One of: `DISCUSSIONS`, `ERROR_TRACKING` or `IINT` (workflows).
36
36
  :param pulumi.Input[Sequence[pulumi.Input['NotificationChannelPropertyArgs']]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
37
- :param pulumi.Input[builtins.str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION` or `MICROSOFT_TEAMS`.
37
+ :param pulumi.Input[builtins.str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION`, `MICROSOFT_TEAMS` or `WORKFLOW_AUTOMATION`.
38
38
  :param pulumi.Input[builtins.str] account_id: Determines the New Relic account where the notification channel will be created. Defaults to the account associated with the API key used.
39
39
  :param pulumi.Input[builtins.bool] active: Indicates whether the channel is active.
40
40
  :param pulumi.Input[builtins.str] name: The name of the channel.
@@ -90,7 +90,7 @@ class NotificationChannelArgs:
90
90
  @pulumi.getter
91
91
  def type(self) -> pulumi.Input[builtins.str]:
92
92
  """
93
- The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION` or `MICROSOFT_TEAMS`.
93
+ The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION`, `MICROSOFT_TEAMS` or `WORKFLOW_AUTOMATION`.
94
94
  """
95
95
  return pulumi.get(self, "type")
96
96
 
@@ -155,7 +155,7 @@ class _NotificationChannelState:
155
155
  :param pulumi.Input[builtins.str] product: The type of product. One of: `DISCUSSIONS`, `ERROR_TRACKING` or `IINT` (workflows).
156
156
  :param pulumi.Input[Sequence[pulumi.Input['NotificationChannelPropertyArgs']]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
157
157
  :param pulumi.Input[builtins.str] status: The status of the channel.
158
- :param pulumi.Input[builtins.str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION` or `MICROSOFT_TEAMS`.
158
+ :param pulumi.Input[builtins.str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION`, `MICROSOFT_TEAMS` or `WORKFLOW_AUTOMATION`.
159
159
  """
160
160
  if account_id is not None:
161
161
  pulumi.set(__self__, "account_id", account_id)
@@ -262,7 +262,7 @@ class _NotificationChannelState:
262
262
  @pulumi.getter
263
263
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
264
264
  """
265
- The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION` or `MICROSOFT_TEAMS`.
265
+ The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION`, `MICROSOFT_TEAMS` or `WORKFLOW_AUTOMATION`.
266
266
  """
267
267
  return pulumi.get(self, "type")
268
268
 
@@ -548,7 +548,7 @@ class NotificationChannel(pulumi.CustomResource):
548
548
  ])
549
549
  ```
550
550
 
551
- #### [MICROSOFT_TEAMS]
551
+ #### [MICROSOFT_TEAMS](https://docs.newrelic.com/docs/alerts/get-notified/microsoft-teams-integrations/)
552
552
  ```python
553
553
  import pulumi
554
554
  import pulumi_newrelic as newrelic
@@ -648,7 +648,7 @@ class NotificationChannel(pulumi.CustomResource):
648
648
  :param pulumi.Input[builtins.str] name: The name of the channel.
649
649
  :param pulumi.Input[builtins.str] product: The type of product. One of: `DISCUSSIONS`, `ERROR_TRACKING` or `IINT` (workflows).
650
650
  :param pulumi.Input[Sequence[pulumi.Input[Union['NotificationChannelPropertyArgs', 'NotificationChannelPropertyArgsDict']]]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
651
- :param pulumi.Input[builtins.str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION` or `MICROSOFT_TEAMS`.
651
+ :param pulumi.Input[builtins.str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION`, `MICROSOFT_TEAMS` or `WORKFLOW_AUTOMATION`.
652
652
  """
653
653
  ...
654
654
  @overload
@@ -919,7 +919,7 @@ class NotificationChannel(pulumi.CustomResource):
919
919
  ])
920
920
  ```
921
921
 
922
- #### [MICROSOFT_TEAMS]
922
+ #### [MICROSOFT_TEAMS](https://docs.newrelic.com/docs/alerts/get-notified/microsoft-teams-integrations/)
923
923
  ```python
924
924
  import pulumi
925
925
  import pulumi_newrelic as newrelic
@@ -1090,7 +1090,7 @@ class NotificationChannel(pulumi.CustomResource):
1090
1090
  :param pulumi.Input[builtins.str] product: The type of product. One of: `DISCUSSIONS`, `ERROR_TRACKING` or `IINT` (workflows).
1091
1091
  :param pulumi.Input[Sequence[pulumi.Input[Union['NotificationChannelPropertyArgs', 'NotificationChannelPropertyArgsDict']]]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
1092
1092
  :param pulumi.Input[builtins.str] status: The status of the channel.
1093
- :param pulumi.Input[builtins.str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION` or `MICROSOFT_TEAMS`.
1093
+ :param pulumi.Input[builtins.str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION`, `MICROSOFT_TEAMS` or `WORKFLOW_AUTOMATION`.
1094
1094
  """
1095
1095
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1096
1096
 
@@ -1166,7 +1166,7 @@ class NotificationChannel(pulumi.CustomResource):
1166
1166
  @pulumi.getter
1167
1167
  def type(self) -> pulumi.Output[builtins.str]:
1168
1168
  """
1169
- The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION` or `MICROSOFT_TEAMS`.
1169
+ The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION`, `PAGERDUTY_SERVICE_INTEGRATION`, `MICROSOFT_TEAMS` or `WORKFLOW_AUTOMATION`.
1170
1170
  """
1171
1171
  return pulumi.get(self, "type")
1172
1172
 
@@ -36,11 +36,11 @@ class NotificationDestinationArgs:
36
36
  :param pulumi.Input[Sequence[pulumi.Input['NotificationDestinationPropertyArgs']]] properties: A nested block that describes a notification destination property. See Nested property blocks below for details.
37
37
  :param pulumi.Input[builtins.str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
38
38
  PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
39
- MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS).
39
+ MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
40
40
  :param pulumi.Input[builtins.str] account_id: Determines the New Relic account where the notification destination will be created. Defaults to the account associated with the API key used.
41
41
  :param pulumi.Input[builtins.bool] active: Indicates whether the destination is active.
42
42
  :param pulumi.Input['NotificationDestinationAuthBasicArgs'] auth_basic: A nested block that describes a basic username and password authentication credentials. Only one auth_basic block is permitted per notification destination definition. See Nested auth_basic blocks below for details.
43
- :param pulumi.Input[Sequence[pulumi.Input['NotificationDestinationAuthCustomHeaderArgs']]] auth_custom_headers: A nested block that describes a custom header authentication credentials. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
43
+ :param pulumi.Input[Sequence[pulumi.Input['NotificationDestinationAuthCustomHeaderArgs']]] auth_custom_headers: A nested block that describes a custom header authentication credentials. This field is required when the destination type is WORKFLOW_AUTOMATION and optional for other destination types. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
44
44
  :param pulumi.Input['NotificationDestinationAuthTokenArgs'] auth_token: A nested block that describes a token authentication credentials. Only one auth_token block is permitted per notification destination definition. See Nested auth_token blocks below for details.
45
45
  :param pulumi.Input[builtins.str] name: The name of the destination.
46
46
  :param pulumi.Input['NotificationDestinationSecureUrlArgs'] secure_url: A nested block that describes a URL that contains sensitive data at the path or parameters. Only one secure_url block is permitted per notification destination definition. See Nested secure_url blocks below for details.
@@ -80,7 +80,7 @@ class NotificationDestinationArgs:
80
80
  """
81
81
  (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
82
82
  PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
83
- MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS).
83
+ MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
84
84
  """
85
85
  return pulumi.get(self, "type")
86
86
 
@@ -128,7 +128,7 @@ class NotificationDestinationArgs:
128
128
  @pulumi.getter(name="authCustomHeaders")
129
129
  def auth_custom_headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NotificationDestinationAuthCustomHeaderArgs']]]]:
130
130
  """
131
- A nested block that describes a custom header authentication credentials. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
131
+ A nested block that describes a custom header authentication credentials. This field is required when the destination type is WORKFLOW_AUTOMATION and optional for other destination types. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
132
132
  """
133
133
  return pulumi.get(self, "auth_custom_headers")
134
134
 
@@ -193,7 +193,7 @@ class _NotificationDestinationState:
193
193
  :param pulumi.Input[builtins.str] account_id: Determines the New Relic account where the notification destination will be created. Defaults to the account associated with the API key used.
194
194
  :param pulumi.Input[builtins.bool] active: Indicates whether the destination is active.
195
195
  :param pulumi.Input['NotificationDestinationAuthBasicArgs'] auth_basic: A nested block that describes a basic username and password authentication credentials. Only one auth_basic block is permitted per notification destination definition. See Nested auth_basic blocks below for details.
196
- :param pulumi.Input[Sequence[pulumi.Input['NotificationDestinationAuthCustomHeaderArgs']]] auth_custom_headers: A nested block that describes a custom header authentication credentials. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
196
+ :param pulumi.Input[Sequence[pulumi.Input['NotificationDestinationAuthCustomHeaderArgs']]] auth_custom_headers: A nested block that describes a custom header authentication credentials. This field is required when the destination type is WORKFLOW_AUTOMATION and optional for other destination types. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
197
197
  :param pulumi.Input['NotificationDestinationAuthTokenArgs'] auth_token: A nested block that describes a token authentication credentials. Only one auth_token block is permitted per notification destination definition. See Nested auth_token blocks below for details.
198
198
  :param pulumi.Input[builtins.str] guid: The unique entity identifier of the destination in New Relic.
199
199
  :param pulumi.Input[builtins.str] last_sent: The last time a notification was sent.
@@ -203,7 +203,7 @@ class _NotificationDestinationState:
203
203
  :param pulumi.Input[builtins.str] status: The status of the destination.
204
204
  :param pulumi.Input[builtins.str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
205
205
  PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
206
- MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS).
206
+ MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
207
207
  """
208
208
  if account_id is not None:
209
209
  pulumi.set(__self__, "account_id", account_id)
@@ -270,7 +270,7 @@ class _NotificationDestinationState:
270
270
  @pulumi.getter(name="authCustomHeaders")
271
271
  def auth_custom_headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NotificationDestinationAuthCustomHeaderArgs']]]]:
272
272
  """
273
- A nested block that describes a custom header authentication credentials. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
273
+ A nested block that describes a custom header authentication credentials. This field is required when the destination type is WORKFLOW_AUTOMATION and optional for other destination types. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
274
274
  """
275
275
  return pulumi.get(self, "auth_custom_headers")
276
276
 
@@ -368,7 +368,7 @@ class _NotificationDestinationState:
368
368
  """
369
369
  (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
370
370
  PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
371
- MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS).
371
+ MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
372
372
  """
373
373
  return pulumi.get(self, "type")
374
374
 
@@ -467,14 +467,14 @@ class NotificationDestination(pulumi.CustomResource):
467
467
  :param pulumi.Input[builtins.str] account_id: Determines the New Relic account where the notification destination will be created. Defaults to the account associated with the API key used.
468
468
  :param pulumi.Input[builtins.bool] active: Indicates whether the destination is active.
469
469
  :param pulumi.Input[Union['NotificationDestinationAuthBasicArgs', 'NotificationDestinationAuthBasicArgsDict']] auth_basic: A nested block that describes a basic username and password authentication credentials. Only one auth_basic block is permitted per notification destination definition. See Nested auth_basic blocks below for details.
470
- :param pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationAuthCustomHeaderArgs', 'NotificationDestinationAuthCustomHeaderArgsDict']]]] auth_custom_headers: A nested block that describes a custom header authentication credentials. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
470
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationAuthCustomHeaderArgs', 'NotificationDestinationAuthCustomHeaderArgsDict']]]] auth_custom_headers: A nested block that describes a custom header authentication credentials. This field is required when the destination type is WORKFLOW_AUTOMATION and optional for other destination types. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
471
471
  :param pulumi.Input[Union['NotificationDestinationAuthTokenArgs', 'NotificationDestinationAuthTokenArgsDict']] auth_token: A nested block that describes a token authentication credentials. Only one auth_token block is permitted per notification destination definition. See Nested auth_token blocks below for details.
472
472
  :param pulumi.Input[builtins.str] name: The name of the destination.
473
473
  :param pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationPropertyArgs', 'NotificationDestinationPropertyArgsDict']]]] properties: A nested block that describes a notification destination property. See Nested property blocks below for details.
474
474
  :param pulumi.Input[Union['NotificationDestinationSecureUrlArgs', 'NotificationDestinationSecureUrlArgsDict']] secure_url: A nested block that describes a URL that contains sensitive data at the path or parameters. Only one secure_url block is permitted per notification destination definition. See Nested secure_url blocks below for details.
475
475
  :param pulumi.Input[builtins.str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
476
476
  PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
477
- MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS).
477
+ MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
478
478
  """
479
479
  ...
480
480
  @overload
@@ -632,7 +632,7 @@ class NotificationDestination(pulumi.CustomResource):
632
632
  :param pulumi.Input[builtins.str] account_id: Determines the New Relic account where the notification destination will be created. Defaults to the account associated with the API key used.
633
633
  :param pulumi.Input[builtins.bool] active: Indicates whether the destination is active.
634
634
  :param pulumi.Input[Union['NotificationDestinationAuthBasicArgs', 'NotificationDestinationAuthBasicArgsDict']] auth_basic: A nested block that describes a basic username and password authentication credentials. Only one auth_basic block is permitted per notification destination definition. See Nested auth_basic blocks below for details.
635
- :param pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationAuthCustomHeaderArgs', 'NotificationDestinationAuthCustomHeaderArgsDict']]]] auth_custom_headers: A nested block that describes a custom header authentication credentials. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
635
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationAuthCustomHeaderArgs', 'NotificationDestinationAuthCustomHeaderArgsDict']]]] auth_custom_headers: A nested block that describes a custom header authentication credentials. This field is required when the destination type is WORKFLOW_AUTOMATION and optional for other destination types. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
636
636
  :param pulumi.Input[Union['NotificationDestinationAuthTokenArgs', 'NotificationDestinationAuthTokenArgsDict']] auth_token: A nested block that describes a token authentication credentials. Only one auth_token block is permitted per notification destination definition. See Nested auth_token blocks below for details.
637
637
  :param pulumi.Input[builtins.str] guid: The unique entity identifier of the destination in New Relic.
638
638
  :param pulumi.Input[builtins.str] last_sent: The last time a notification was sent.
@@ -642,7 +642,7 @@ class NotificationDestination(pulumi.CustomResource):
642
642
  :param pulumi.Input[builtins.str] status: The status of the destination.
643
643
  :param pulumi.Input[builtins.str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
644
644
  PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
645
- MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS).
645
+ MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
646
646
  """
647
647
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
648
648
 
@@ -690,7 +690,7 @@ class NotificationDestination(pulumi.CustomResource):
690
690
  @pulumi.getter(name="authCustomHeaders")
691
691
  def auth_custom_headers(self) -> pulumi.Output[Optional[Sequence['outputs.NotificationDestinationAuthCustomHeader']]]:
692
692
  """
693
- A nested block that describes a custom header authentication credentials. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
693
+ A nested block that describes a custom header authentication credentials. This field is required when the destination type is WORKFLOW_AUTOMATION and optional for other destination types. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
694
694
  """
695
695
  return pulumi.get(self, "auth_custom_headers")
696
696
 
@@ -756,7 +756,7 @@ class NotificationDestination(pulumi.CustomResource):
756
756
  """
757
757
  (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
758
758
  PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
759
- MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS).
759
+ MOBILE_PUSH, EVENT_BRIDGE, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
760
760
  """
761
761
  return pulumi.get(self, "type")
762
762
 
@@ -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
@@ -13012,7 +13105,7 @@ class WorkflowDestination(dict):
13012
13105
  :param builtins.str channel_id: (Required) Destination's channel id.
13013
13106
  :param builtins.str name: The name of the workflow.
13014
13107
  :param Sequence[builtins.str] notification_triggers: List of triggers to notify about in this destination configuration.
13015
- :param builtins.str type: (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA, MICROSOFT_TEAMS).
13108
+ :param builtins.str type: (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
13016
13109
  :param builtins.bool update_original_message: Update original notification message (Slack channels only)
13017
13110
  """
13018
13111
  pulumi.set(__self__, "channel_id", channel_id)
@@ -13053,7 +13146,7 @@ class WorkflowDestination(dict):
13053
13146
  @pulumi.getter
13054
13147
  def type(self) -> Optional[builtins.str]:
13055
13148
  """
13056
- (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA, MICROSOFT_TEAMS).
13149
+ (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA, MICROSOFT_TEAMS, WORKFLOW_AUTOMATION).
13057
13150
  """
13058
13151
  return pulumi.get(self, "type")
13059
13152
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "newrelic",
4
- "version": "5.47.0-alpha.1750228491"
4
+ "version": "5.48.0"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_newrelic
3
- Version: 5.47.0a1750228491
3
+ Version: 5.48.0
4
4
  Summary: A Pulumi package for creating and managing New Relic resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,5 +1,5 @@
1
1
  pulumi_newrelic/__init__.py,sha256=2niV6Xog7_faAW89wYrU_B_Qo0CstccUSY-XN3rI8D0,11533
2
- pulumi_newrelic/_inputs.py,sha256=S9p7jA7E9mO5x14XseBcwZtmFrK48iiaSzHRK5Z_5qk,843175
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
@@ -21,7 +21,7 @@ pulumi_newrelic/get_cloud_account.py,sha256=mKB5ZBJW2zGzZfWhtIwKsRsCtYHRI-L73Zrl
21
21
  pulumi_newrelic/get_entity.py,sha256=zupYTpgfvWPjC1volQvLLOnQzPad8JEx2KQRz-vaL7c,14627
22
22
  pulumi_newrelic/get_group.py,sha256=K2FDadmrAiIJxS1i5rhcJBdSDHvpqiPJ3Zuv2scZnb8,8726
23
23
  pulumi_newrelic/get_key_transaction.py,sha256=mD76Ae174dHQi0xrfsRaPFh7tl9AVUm0WDeQsLhuJtw,8476
24
- pulumi_newrelic/get_notification_destination.py,sha256=tqHe_ZX3vrDF3R-hMyrg001cBT4d-NVVQmkP2FJtXl4,9606
24
+ pulumi_newrelic/get_notification_destination.py,sha256=vFvhEqCtfW-Y9AVsxidsnSr2bcaZJbI9h0UgHbmIS0M,9629
25
25
  pulumi_newrelic/get_obfuscation_expression.py,sha256=9RVAUNHHyyttoO9snWqP-Iy8QGJIpC4IlXyzh196Z90,5684
26
26
  pulumi_newrelic/get_service_level_alert_helper.py,sha256=U_ANb5JXhfcVcQld8SF4qbQn0bOd62alwvp1uQCjjj4,21535
27
27
  pulumi_newrelic/get_test_grok_pattern.py,sha256=UKL-DDLh8o56YswWn0xDpmFbIRRSJga1vQueVO-07cs,6530
@@ -31,8 +31,8 @@ pulumi_newrelic/infra_alert_condition.py,sha256=5itKk_Fxs-rWgjPyMeEmWAElUF7m428J
31
31
  pulumi_newrelic/key_transaction.py,sha256=4XszcDV3bvq42JtXkM1FipnbRzImoWZDLb_lwuDPURw,23696
32
32
  pulumi_newrelic/log_parsing_rule.py,sha256=aa5EnUnwpSKpatXlw09EPhoVmzX-50odtVWIRTpZmmg,23718
33
33
  pulumi_newrelic/monitor_downtime.py,sha256=cE_inzChf4LcP5bQmn36Yl-wIbECous9ye_J8ad9uDk,41937
34
- pulumi_newrelic/notification_channel.py,sha256=7Rc3ZdnYAOi9P2vlIcOgb_1AuZVFf-9aiiIfLQlenx0,49936
35
- pulumi_newrelic/notification_destination.py,sha256=ASVZmwCbra2380HHdOYrqcjQmWFrrPAT99F1Upb8BUs,40076
34
+ pulumi_newrelic/notification_channel.py,sha256=r5mkXyjJDCdtFXygHnC6Pxz8gHo-97yO5AbEs8ItNgo,50261
35
+ pulumi_newrelic/notification_destination.py,sha256=tKlHOOi8g71X2OvjyYA13K-AiAI-m9paizRVY9OfG_Q,41021
36
36
  pulumi_newrelic/nrql_alert_condition.py,sha256=K4xQNwB2Kyia5XSCe4hSXTd8xXh_cJwyiP3-VC_FHwE,122113
37
37
  pulumi_newrelic/nrql_drop_rule.py,sha256=kms11HsZXz7ePXe4UZqKrqRp7VBXKxuKKYeuZ5Bxu6s,18340
38
38
  pulumi_newrelic/obfuscation_expression.py,sha256=S8ImKb2q8xLIdaDCzvXzdeBbGwuPAu1_YcWQExYPSGA,13100
@@ -40,24 +40,24 @@ 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=4Sb12Z8ysErvx2ZhjkQhijAQ9L5bzF3Awhed577EBJs,607421
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=928fdm16KJCm8VrLSsZXncGDeAkFwcrm3KAQVYML8MA,85
45
+ pulumi_newrelic/pulumi-plugin.json,sha256=k78yqdkda42XBmi8iyJVJrw0lct19cQHxcoVd3dkyoA,68
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
49
49
  pulumi_newrelic/workflow.py,sha256=LtgDFNMs2ARcLXDkBl8DB3smi63yy77fhrtobKl_AXA,43785
50
50
  pulumi_newrelic/cloud/__init__.py,sha256=Uz7MzZm7iCIDddKdyYn3_5E3pPpBtesjDAV8UGZCyx0,590
51
- pulumi_newrelic/cloud/_inputs.py,sha256=3VvYbSXgIPD2W2y-nyzzVJx8pBGxNa7goKloZkxMGNM,397700
51
+ pulumi_newrelic/cloud/_inputs.py,sha256=Ume7q0IR23f878X8scYkVHKzaZ0pyphtP5hrLp-ABxs,400021
52
52
  pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=uWdNSHeEfjtNg_hPY3QcPjm0oyDqcPDt5qoIVwmjsWE,65748
53
53
  pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=XoHul9mt3cWfebte105_vQuPS_ha6_V2T2Dc9M7-fAM,19337
54
- pulumi_newrelic/cloud/aws_integrations.py,sha256=QyCFnYOCecaX6k-Pod0VyF5he62coWucB4n1LxjHYqI,128887
54
+ pulumi_newrelic/cloud/aws_integrations.py,sha256=p_Nvbp50DwCPvB_oQDmkNf25x7v6BCfMVMExf16G8sY,131729
55
55
  pulumi_newrelic/cloud/aws_link_account.py,sha256=hWAJbXn-qcg29jGhE9fsUIkZ0LS247x7SeL8TH-O5wM,16238
56
56
  pulumi_newrelic/cloud/azure_integrations.py,sha256=eDLgoGaud8Gey1eOAjFqw4phUKtwHG8vjzB0WisDoxE,114514
57
57
  pulumi_newrelic/cloud/azure_link_account.py,sha256=cJTbJXpOMftfKTUnjQ7NpEslbIqtMnS-1Ad3DWMeGSg,19908
58
58
  pulumi_newrelic/cloud/gcp_integrations.py,sha256=KppXbbQ6myZGueAmfmGXaVMxyiWOL-CHi5TlAhVIUIE,86288
59
59
  pulumi_newrelic/cloud/gcp_link_account.py,sha256=RRc_kCuJqYqR6tdJWqRMAYpGGTZlW3SayZG8p4Ah1zY,13050
60
- pulumi_newrelic/cloud/outputs.py,sha256=kz4enFwKbH1lciin5x8TJGFS6woBmWhC0aYNTQDtUn0,325917
60
+ pulumi_newrelic/cloud/outputs.py,sha256=1S2KzxrnR6mWMf0jBIsomPec5_5VsLcEQHdXCum0eEw,327919
61
61
  pulumi_newrelic/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
62
62
  pulumi_newrelic/config/__init__.pyi,sha256=3lqnqyfKr94LSYF-Y3ervh91VWCGXrYtTPmUPaA9wR4,1017
63
63
  pulumi_newrelic/config/vars.py,sha256=5qxq8YncKpqFit2_wCgW7Vje-kmlJK18TSQRwBQms8s,2274
@@ -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.47.0a1750228491.dist-info/METADATA,sha256=g3oXKdsxdbfv4XlLJq-qGQqlbglnPVy0FblXMOJ6CnQ,3966
88
- pulumi_newrelic-5.47.0a1750228491.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
89
- pulumi_newrelic-5.47.0a1750228491.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
- pulumi_newrelic-5.47.0a1750228491.dist-info/RECORD,,
87
+ pulumi_newrelic-5.48.0.dist-info/METADATA,sha256=Oktb0AtG4E1fPP1zwThh50tx--2fgfACf72IT6DNlXk,3955
88
+ pulumi_newrelic-5.48.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
89
+ pulumi_newrelic-5.48.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
+ pulumi_newrelic-5.48.0.dist-info/RECORD,,