pulumi-newrelic 5.46.1__py3-none-any.whl → 5.47.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.
@@ -17102,7 +17102,7 @@ if not MYPY:
17102
17102
  """
17103
17103
  type: NotRequired[pulumi.Input[builtins.str]]
17104
17104
  """
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).
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, WORKFLOW_AUTOMATION).
17106
17106
  """
17107
17107
  update_original_message: NotRequired[pulumi.Input[builtins.bool]]
17108
17108
  """
@@ -17123,7 +17123,7 @@ class WorkflowDestinationArgs:
17123
17123
  :param pulumi.Input[builtins.str] channel_id: (Required) Destination's channel id.
17124
17124
  :param pulumi.Input[builtins.str] name: The name of the workflow.
17125
17125
  :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).
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, WORKFLOW_AUTOMATION).
17127
17127
  :param pulumi.Input[builtins.bool] update_original_message: Update original notification message (Slack channels only)
17128
17128
  """
17129
17129
  pulumi.set(__self__, "channel_id", channel_id)
@@ -17176,7 +17176,7 @@ class WorkflowDestinationArgs:
17176
17176
  @pulumi.getter
17177
17177
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
17178
17178
  """
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).
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, WORKFLOW_AUTOMATION).
17180
17180
  """
17181
17181
  return pulumi.get(self, "type")
17182
17182
 
@@ -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
 
@@ -13012,7 +13012,7 @@ class WorkflowDestination(dict):
13012
13012
  :param builtins.str channel_id: (Required) Destination's channel id.
13013
13013
  :param builtins.str name: The name of the workflow.
13014
13014
  :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).
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, WORKFLOW_AUTOMATION).
13016
13016
  :param builtins.bool update_original_message: Update original notification message (Slack channels only)
13017
13017
  """
13018
13018
  pulumi.set(__self__, "channel_id", channel_id)
@@ -13053,7 +13053,7 @@ class WorkflowDestination(dict):
13053
13053
  @pulumi.getter
13054
13054
  def type(self) -> Optional[builtins.str]:
13055
13055
  """
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).
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, WORKFLOW_AUTOMATION).
13057
13057
  """
13058
13058
  return pulumi.get(self, "type")
13059
13059
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "newrelic",
4
- "version": "5.46.1"
4
+ "version": "5.47.0"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_newrelic
3
- Version: 5.46.1
3
+ Version: 5.47.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=QMT7Un1uVNMp7tPJcft-XE55O4qjnxDGx7X9eyIXUTQ,843238
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=UV01Fk4PrphoZj9fw47Zs6kSYYwj3Ql2-NXbRUHDJwc,607463
44
44
  pulumi_newrelic/provider.py,sha256=GCv8seKMchBvhO3ZA89FoGAPffYrL0YIYx85etyjbAM,20101
45
- pulumi_newrelic/pulumi-plugin.json,sha256=jqcF_HKKrQM3mHMqMuT3eTl_5Hl8zXKE7QjKt9XzKto,68
45
+ pulumi_newrelic/pulumi-plugin.json,sha256=q2n1jQDp1eLyuq5VGBX02_V4SN3I1lazlVJyE2Ivi-c,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.46.1.dist-info/METADATA,sha256=Hd0Z10GRNR41tNDdg4Hg5OKrojOsrtHz9OrAau3WwFE,3955
88
- pulumi_newrelic-5.46.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
89
- pulumi_newrelic-5.46.1.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
- pulumi_newrelic-5.46.1.dist-info/RECORD,,
87
+ pulumi_newrelic-5.47.0.dist-info/METADATA,sha256=zEqmc2Lmbp3eI2ffukw2hLu29gkfe2Zl5LHysfTwAp4,3955
88
+ pulumi_newrelic-5.47.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
89
+ pulumi_newrelic-5.47.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
+ pulumi_newrelic-5.47.0.dist-info/RECORD,,