pulumi-newrelic 5.24.0a1715356536__py3-none-any.whl → 5.24.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. pulumi_newrelic/_inputs.py +63 -63
  2. pulumi_newrelic/alert_channel.py +14 -14
  3. pulumi_newrelic/alert_condition.py +28 -28
  4. pulumi_newrelic/alert_muting_rule.py +14 -14
  5. pulumi_newrelic/alert_policy.py +24 -24
  6. pulumi_newrelic/alert_policy_channel.py +42 -42
  7. pulumi_newrelic/api_access_key.py +28 -28
  8. pulumi_newrelic/browser_application.py +14 -14
  9. pulumi_newrelic/cloud/aws_govcloud_integrations.py +28 -28
  10. pulumi_newrelic/cloud/aws_govcloud_link_account.py +14 -14
  11. pulumi_newrelic/cloud/aws_integrations.py +28 -28
  12. pulumi_newrelic/cloud/aws_link_account.py +14 -14
  13. pulumi_newrelic/cloud/azure_integrations.py +28 -28
  14. pulumi_newrelic/cloud/azure_link_account.py +14 -14
  15. pulumi_newrelic/cloud/gcp_integrations.py +28 -28
  16. pulumi_newrelic/cloud/gcp_link_account.py +14 -14
  17. pulumi_newrelic/config/__init__.pyi +1 -1
  18. pulumi_newrelic/config/vars.py +2 -2
  19. pulumi_newrelic/data_partition_rule.py +14 -14
  20. pulumi_newrelic/events_to_metrics_rule.py +16 -16
  21. pulumi_newrelic/get_account.py +7 -7
  22. pulumi_newrelic/get_alert_channel.py +8 -8
  23. pulumi_newrelic/get_alert_policy.py +7 -7
  24. pulumi_newrelic/get_application.py +2 -2
  25. pulumi_newrelic/get_cloud_account.py +9 -9
  26. pulumi_newrelic/get_entity.py +15 -15
  27. pulumi_newrelic/get_notification_destination.py +7 -7
  28. pulumi_newrelic/get_obfuscation_expression.py +9 -9
  29. pulumi_newrelic/get_service_level_alert_helper.py +10 -10
  30. pulumi_newrelic/get_test_grok_pattern.py +7 -7
  31. pulumi_newrelic/infra_alert_condition.py +14 -14
  32. pulumi_newrelic/log_parsing_rule.py +14 -14
  33. pulumi_newrelic/monitor_downtime.py +14 -14
  34. pulumi_newrelic/notification_channel.py +36 -36
  35. pulumi_newrelic/notification_destination.py +14 -14
  36. pulumi_newrelic/nrql_alert_condition.py +32 -32
  37. pulumi_newrelic/nrql_drop_rule.py +20 -20
  38. pulumi_newrelic/obfuscation_expression.py +16 -16
  39. pulumi_newrelic/obfuscation_rule.py +14 -14
  40. pulumi_newrelic/one_dashboard.py +14 -14
  41. pulumi_newrelic/one_dashboard_json.py +14 -14
  42. pulumi_newrelic/one_dashboard_raw.py +14 -14
  43. pulumi_newrelic/outputs.py +47 -47
  44. pulumi_newrelic/plugins/workload.py +55 -55
  45. pulumi_newrelic/provider.py +14 -9
  46. pulumi_newrelic/pulumi-plugin.json +2 -1
  47. pulumi_newrelic/service_level.py +6 -6
  48. pulumi_newrelic/synthetics/alert_condition.py +14 -14
  49. pulumi_newrelic/synthetics/broken_links_monitor.py +32 -14
  50. pulumi_newrelic/synthetics/cert_check_monitor.py +32 -14
  51. pulumi_newrelic/synthetics/get_private_location.py +11 -11
  52. pulumi_newrelic/synthetics/get_secure_credential.py +5 -5
  53. pulumi_newrelic/synthetics/monitor.py +18 -14
  54. pulumi_newrelic/synthetics/multi_location_alert_condition.py +14 -14
  55. pulumi_newrelic/synthetics/private_location.py +14 -14
  56. pulumi_newrelic/synthetics/script_monitor.py +18 -14
  57. pulumi_newrelic/synthetics/secure_credential.py +14 -14
  58. pulumi_newrelic/synthetics/step_monitor.py +32 -14
  59. pulumi_newrelic/workflow.py +14 -14
  60. {pulumi_newrelic-5.24.0a1715356536.dist-info → pulumi_newrelic-5.24.1.dist-info}/METADATA +1 -1
  61. pulumi_newrelic-5.24.1.dist-info/RECORD +89 -0
  62. pulumi_newrelic-5.24.0a1715356536.dist-info/RECORD +0 -89
  63. {pulumi_newrelic-5.24.0a1715356536.dist-info → pulumi_newrelic-5.24.1.dist-info}/WHEEL +0 -0
  64. {pulumi_newrelic-5.24.0a1715356536.dist-info → pulumi_newrelic-5.24.1.dist-info}/top_level.txt +0 -0
@@ -16,7 +16,7 @@ class SecureCredentialArgs:
16
16
  def __init__(__self__, *,
17
17
  key: pulumi.Input[str],
18
18
  value: pulumi.Input[str],
19
- account_id: Optional[pulumi.Input[int]] = None,
19
+ account_id: Optional[pulumi.Input[str]] = None,
20
20
  description: Optional[pulumi.Input[str]] = None,
21
21
  last_updated: Optional[pulumi.Input[str]] = None):
22
22
  """
@@ -24,7 +24,7 @@ class SecureCredentialArgs:
24
24
  :param pulumi.Input[str] key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased
25
25
  key to the underlying API.
26
26
  :param pulumi.Input[str] value: The secure credential's value.
27
- :param pulumi.Input[int] account_id: The New Relic account ID where you want to create the secure credential.
27
+ :param pulumi.Input[str] account_id: The New Relic account ID where you want to create the secure credential.
28
28
  :param pulumi.Input[str] description: The secure credential's description.
29
29
  :param pulumi.Input[str] last_updated: The time the secure credential was last updated.
30
30
  """
@@ -64,14 +64,14 @@ class SecureCredentialArgs:
64
64
 
65
65
  @property
66
66
  @pulumi.getter(name="accountId")
67
- def account_id(self) -> Optional[pulumi.Input[int]]:
67
+ def account_id(self) -> Optional[pulumi.Input[str]]:
68
68
  """
69
69
  The New Relic account ID where you want to create the secure credential.
70
70
  """
71
71
  return pulumi.get(self, "account_id")
72
72
 
73
73
  @account_id.setter
74
- def account_id(self, value: Optional[pulumi.Input[int]]):
74
+ def account_id(self, value: Optional[pulumi.Input[str]]):
75
75
  pulumi.set(self, "account_id", value)
76
76
 
77
77
  @property
@@ -102,14 +102,14 @@ class SecureCredentialArgs:
102
102
  @pulumi.input_type
103
103
  class _SecureCredentialState:
104
104
  def __init__(__self__, *,
105
- account_id: Optional[pulumi.Input[int]] = None,
105
+ account_id: Optional[pulumi.Input[str]] = None,
106
106
  description: Optional[pulumi.Input[str]] = None,
107
107
  key: Optional[pulumi.Input[str]] = None,
108
108
  last_updated: Optional[pulumi.Input[str]] = None,
109
109
  value: Optional[pulumi.Input[str]] = None):
110
110
  """
111
111
  Input properties used for looking up and filtering SecureCredential resources.
112
- :param pulumi.Input[int] account_id: The New Relic account ID where you want to create the secure credential.
112
+ :param pulumi.Input[str] account_id: The New Relic account ID where you want to create the secure credential.
113
113
  :param pulumi.Input[str] description: The secure credential's description.
114
114
  :param pulumi.Input[str] key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased
115
115
  key to the underlying API.
@@ -129,14 +129,14 @@ class _SecureCredentialState:
129
129
 
130
130
  @property
131
131
  @pulumi.getter(name="accountId")
132
- def account_id(self) -> Optional[pulumi.Input[int]]:
132
+ def account_id(self) -> Optional[pulumi.Input[str]]:
133
133
  """
134
134
  The New Relic account ID where you want to create the secure credential.
135
135
  """
136
136
  return pulumi.get(self, "account_id")
137
137
 
138
138
  @account_id.setter
139
- def account_id(self, value: Optional[pulumi.Input[int]]):
139
+ def account_id(self, value: Optional[pulumi.Input[str]]):
140
140
  pulumi.set(self, "account_id", value)
141
141
 
142
142
  @property
@@ -194,7 +194,7 @@ class SecureCredential(pulumi.CustomResource):
194
194
  def __init__(__self__,
195
195
  resource_name: str,
196
196
  opts: Optional[pulumi.ResourceOptions] = None,
197
- account_id: Optional[pulumi.Input[int]] = None,
197
+ account_id: Optional[pulumi.Input[str]] = None,
198
198
  description: Optional[pulumi.Input[str]] = None,
199
199
  key: Optional[pulumi.Input[str]] = None,
200
200
  last_updated: Optional[pulumi.Input[str]] = None,
@@ -225,7 +225,7 @@ class SecureCredential(pulumi.CustomResource):
225
225
 
226
226
  :param str resource_name: The name of the resource.
227
227
  :param pulumi.ResourceOptions opts: Options for the resource.
228
- :param pulumi.Input[int] account_id: The New Relic account ID where you want to create the secure credential.
228
+ :param pulumi.Input[str] account_id: The New Relic account ID where you want to create the secure credential.
229
229
  :param pulumi.Input[str] description: The secure credential's description.
230
230
  :param pulumi.Input[str] key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased
231
231
  key to the underlying API.
@@ -276,7 +276,7 @@ class SecureCredential(pulumi.CustomResource):
276
276
  def _internal_init(__self__,
277
277
  resource_name: str,
278
278
  opts: Optional[pulumi.ResourceOptions] = None,
279
- account_id: Optional[pulumi.Input[int]] = None,
279
+ account_id: Optional[pulumi.Input[str]] = None,
280
280
  description: Optional[pulumi.Input[str]] = None,
281
281
  key: Optional[pulumi.Input[str]] = None,
282
282
  last_updated: Optional[pulumi.Input[str]] = None,
@@ -311,7 +311,7 @@ class SecureCredential(pulumi.CustomResource):
311
311
  def get(resource_name: str,
312
312
  id: pulumi.Input[str],
313
313
  opts: Optional[pulumi.ResourceOptions] = None,
314
- account_id: Optional[pulumi.Input[int]] = None,
314
+ account_id: Optional[pulumi.Input[str]] = None,
315
315
  description: Optional[pulumi.Input[str]] = None,
316
316
  key: Optional[pulumi.Input[str]] = None,
317
317
  last_updated: Optional[pulumi.Input[str]] = None,
@@ -323,7 +323,7 @@ class SecureCredential(pulumi.CustomResource):
323
323
  :param str resource_name: The unique name of the resulting resource.
324
324
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
325
325
  :param pulumi.ResourceOptions opts: Options for the resource.
326
- :param pulumi.Input[int] account_id: The New Relic account ID where you want to create the secure credential.
326
+ :param pulumi.Input[str] account_id: The New Relic account ID where you want to create the secure credential.
327
327
  :param pulumi.Input[str] description: The secure credential's description.
328
328
  :param pulumi.Input[str] key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased
329
329
  key to the underlying API.
@@ -343,7 +343,7 @@ class SecureCredential(pulumi.CustomResource):
343
343
 
344
344
  @property
345
345
  @pulumi.getter(name="accountId")
346
- def account_id(self) -> pulumi.Output[int]:
346
+ def account_id(self) -> pulumi.Output[str]:
347
347
  """
348
348
  The New Relic account ID where you want to create the secure credential.
349
349
  """
@@ -19,7 +19,7 @@ class StepMonitorArgs:
19
19
  period: pulumi.Input[str],
20
20
  status: pulumi.Input[str],
21
21
  steps: pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]],
22
- account_id: Optional[pulumi.Input[int]] = None,
22
+ account_id: Optional[pulumi.Input[str]] = None,
23
23
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
24
24
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]]] = None,
25
25
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -32,7 +32,7 @@ class StepMonitorArgs:
32
32
  :param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE, EVERY_5_MINUTES, EVERY_10_MINUTES, EVERY_15_MINUTES, EVERY_30_MINUTES, EVERY_HOUR, EVERY_6_HOURS, EVERY_12_HOURS, or EVERY_DAY.
33
33
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
34
34
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
35
- :param pulumi.Input[int] account_id: The account in which the Synthetics monitor will be created.
35
+ :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
36
36
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
37
37
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
38
38
  :param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from. Valid public locations are https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
@@ -41,6 +41,8 @@ class StepMonitorArgs:
41
41
  :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
42
42
 
43
43
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
44
+
45
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
44
46
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
45
47
  """
46
48
  pulumi.set(__self__, "period", period)
@@ -101,14 +103,14 @@ class StepMonitorArgs:
101
103
 
102
104
  @property
103
105
  @pulumi.getter(name="accountId")
104
- def account_id(self) -> Optional[pulumi.Input[int]]:
106
+ def account_id(self) -> Optional[pulumi.Input[str]]:
105
107
  """
106
108
  The account in which the Synthetics monitor will be created.
107
109
  """
108
110
  return pulumi.get(self, "account_id")
109
111
 
110
112
  @account_id.setter
111
- def account_id(self, value: Optional[pulumi.Input[int]]):
113
+ def account_id(self, value: Optional[pulumi.Input[str]]):
112
114
  pulumi.set(self, "account_id", value)
113
115
 
114
116
  @property
@@ -178,6 +180,8 @@ class StepMonitorArgs:
178
180
  The specific version of the runtime type selected.
179
181
 
180
182
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
183
+
184
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
181
185
  """
182
186
  return pulumi.get(self, "runtime_type_version")
183
187
 
@@ -201,7 +205,7 @@ class StepMonitorArgs:
201
205
  @pulumi.input_type
202
206
  class _StepMonitorState:
203
207
  def __init__(__self__, *,
204
- account_id: Optional[pulumi.Input[int]] = None,
208
+ account_id: Optional[pulumi.Input[str]] = None,
205
209
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
206
210
  guid: Optional[pulumi.Input[str]] = None,
207
211
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]]] = None,
@@ -216,7 +220,7 @@ class _StepMonitorState:
216
220
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]] = None):
217
221
  """
218
222
  Input properties used for looking up and filtering StepMonitor resources.
219
- :param pulumi.Input[int] account_id: The account in which the Synthetics monitor will be created.
223
+ :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
220
224
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
221
225
  :param pulumi.Input[str] guid: The unique entity identifier of the monitor in New Relic.
222
226
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
@@ -228,6 +232,8 @@ class _StepMonitorState:
228
232
  :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
229
233
 
230
234
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
235
+
236
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
231
237
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
232
238
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
233
239
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
@@ -261,14 +267,14 @@ class _StepMonitorState:
261
267
 
262
268
  @property
263
269
  @pulumi.getter(name="accountId")
264
- def account_id(self) -> Optional[pulumi.Input[int]]:
270
+ def account_id(self) -> Optional[pulumi.Input[str]]:
265
271
  """
266
272
  The account in which the Synthetics monitor will be created.
267
273
  """
268
274
  return pulumi.get(self, "account_id")
269
275
 
270
276
  @account_id.setter
271
- def account_id(self, value: Optional[pulumi.Input[int]]):
277
+ def account_id(self, value: Optional[pulumi.Input[str]]):
272
278
  pulumi.set(self, "account_id", value)
273
279
 
274
280
  @property
@@ -374,6 +380,8 @@ class _StepMonitorState:
374
380
  The specific version of the runtime type selected.
375
381
 
376
382
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
383
+
384
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
377
385
  """
378
386
  return pulumi.get(self, "runtime_type_version")
379
387
 
@@ -423,7 +431,7 @@ class StepMonitor(pulumi.CustomResource):
423
431
  def __init__(__self__,
424
432
  resource_name: str,
425
433
  opts: Optional[pulumi.ResourceOptions] = None,
426
- account_id: Optional[pulumi.Input[int]] = None,
434
+ account_id: Optional[pulumi.Input[str]] = None,
427
435
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
428
436
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorLocationPrivateArgs']]]]] = None,
429
437
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -436,6 +444,8 @@ class StepMonitor(pulumi.CustomResource):
436
444
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorTagArgs']]]]] = None,
437
445
  __props__=None):
438
446
  """
447
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
448
+
439
449
  Use this resource to create, update, and delete a Synthetics Step monitor in New Relic.
440
450
 
441
451
  ## Example Usage
@@ -514,7 +524,7 @@ class StepMonitor(pulumi.CustomResource):
514
524
 
515
525
  :param str resource_name: The name of the resource.
516
526
  :param pulumi.ResourceOptions opts: Options for the resource.
517
- :param pulumi.Input[int] account_id: The account in which the Synthetics monitor will be created.
527
+ :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
518
528
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
519
529
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorLocationPrivateArgs']]]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
520
530
  :param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from. Valid public locations are https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
@@ -524,6 +534,8 @@ class StepMonitor(pulumi.CustomResource):
524
534
  :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
525
535
 
526
536
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
537
+
538
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
527
539
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
528
540
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorStepArgs']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
529
541
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
@@ -535,6 +547,8 @@ class StepMonitor(pulumi.CustomResource):
535
547
  args: StepMonitorArgs,
536
548
  opts: Optional[pulumi.ResourceOptions] = None):
537
549
  """
550
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
551
+
538
552
  Use this resource to create, update, and delete a Synthetics Step monitor in New Relic.
539
553
 
540
554
  ## Example Usage
@@ -626,7 +640,7 @@ class StepMonitor(pulumi.CustomResource):
626
640
  def _internal_init(__self__,
627
641
  resource_name: str,
628
642
  opts: Optional[pulumi.ResourceOptions] = None,
629
- account_id: Optional[pulumi.Input[int]] = None,
643
+ account_id: Optional[pulumi.Input[str]] = None,
630
644
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
631
645
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorLocationPrivateArgs']]]]] = None,
632
646
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -675,7 +689,7 @@ class StepMonitor(pulumi.CustomResource):
675
689
  def get(resource_name: str,
676
690
  id: pulumi.Input[str],
677
691
  opts: Optional[pulumi.ResourceOptions] = None,
678
- account_id: Optional[pulumi.Input[int]] = None,
692
+ account_id: Optional[pulumi.Input[str]] = None,
679
693
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
680
694
  guid: Optional[pulumi.Input[str]] = None,
681
695
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorLocationPrivateArgs']]]]] = None,
@@ -695,7 +709,7 @@ class StepMonitor(pulumi.CustomResource):
695
709
  :param str resource_name: The unique name of the resulting resource.
696
710
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
697
711
  :param pulumi.ResourceOptions opts: Options for the resource.
698
- :param pulumi.Input[int] account_id: The account in which the Synthetics monitor will be created.
712
+ :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
699
713
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
700
714
  :param pulumi.Input[str] guid: The unique entity identifier of the monitor in New Relic.
701
715
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorLocationPrivateArgs']]]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
@@ -707,6 +721,8 @@ class StepMonitor(pulumi.CustomResource):
707
721
  :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
708
722
 
709
723
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
724
+
725
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
710
726
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
711
727
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorStepArgs']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
712
728
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
@@ -732,7 +748,7 @@ class StepMonitor(pulumi.CustomResource):
732
748
 
733
749
  @property
734
750
  @pulumi.getter(name="accountId")
735
- def account_id(self) -> pulumi.Output[int]:
751
+ def account_id(self) -> pulumi.Output[str]:
736
752
  """
737
753
  The account in which the Synthetics monitor will be created.
738
754
  """
@@ -809,6 +825,8 @@ class StepMonitor(pulumi.CustomResource):
809
825
  The specific version of the runtime type selected.
810
826
 
811
827
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
828
+
829
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
812
830
  """
813
831
  return pulumi.get(self, "runtime_type_version")
814
832
 
@@ -19,7 +19,7 @@ class WorkflowArgs:
19
19
  destinations: pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]],
20
20
  issues_filter: pulumi.Input['WorkflowIssuesFilterArgs'],
21
21
  muting_rules_handling: pulumi.Input[str],
22
- account_id: Optional[pulumi.Input[int]] = None,
22
+ account_id: Optional[pulumi.Input[str]] = None,
23
23
  destinations_enabled: Optional[pulumi.Input[bool]] = None,
24
24
  enabled: Optional[pulumi.Input[bool]] = None,
25
25
  enrichments: Optional[pulumi.Input['WorkflowEnrichmentsArgs']] = None,
@@ -30,7 +30,7 @@ class WorkflowArgs:
30
30
  :param pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]] destinations: Notification configuration. See Nested destination blocks below for details.
31
31
  :param pulumi.Input['WorkflowIssuesFilterArgs'] issues_filter: A filter used to identify issues handled by this workflow. See Nested issues_filter blocks below for details.
32
32
  :param pulumi.Input[str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
33
- :param pulumi.Input[int] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
33
+ :param pulumi.Input[str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
34
34
  :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
35
35
  these two are different flags, but they are functionally identical. Defaults to true.
36
36
  :param pulumi.Input[bool] enabled: Whether workflow is enabled. Defaults to true.
@@ -95,14 +95,14 @@ class WorkflowArgs:
95
95
 
96
96
  @property
97
97
  @pulumi.getter(name="accountId")
98
- def account_id(self) -> Optional[pulumi.Input[int]]:
98
+ def account_id(self) -> Optional[pulumi.Input[str]]:
99
99
  """
100
100
  Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
101
101
  """
102
102
  return pulumi.get(self, "account_id")
103
103
 
104
104
  @account_id.setter
105
- def account_id(self, value: Optional[pulumi.Input[int]]):
105
+ def account_id(self, value: Optional[pulumi.Input[str]]):
106
106
  pulumi.set(self, "account_id", value)
107
107
 
108
108
  @property
@@ -173,7 +173,7 @@ class WorkflowArgs:
173
173
  @pulumi.input_type
174
174
  class _WorkflowState:
175
175
  def __init__(__self__, *,
176
- account_id: Optional[pulumi.Input[int]] = None,
176
+ account_id: Optional[pulumi.Input[str]] = None,
177
177
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]]] = None,
178
178
  destinations_enabled: Optional[pulumi.Input[bool]] = None,
179
179
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -187,7 +187,7 @@ class _WorkflowState:
187
187
  workflow_id: Optional[pulumi.Input[str]] = None):
188
188
  """
189
189
  Input properties used for looking up and filtering Workflow resources.
190
- :param pulumi.Input[int] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
190
+ :param pulumi.Input[str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
191
191
  :param pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]] destinations: Notification configuration. See Nested destination blocks below for details.
192
192
  :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
193
193
  these two are different flags, but they are functionally identical. Defaults to true.
@@ -231,14 +231,14 @@ class _WorkflowState:
231
231
 
232
232
  @property
233
233
  @pulumi.getter(name="accountId")
234
- def account_id(self) -> Optional[pulumi.Input[int]]:
234
+ def account_id(self) -> Optional[pulumi.Input[str]]:
235
235
  """
236
236
  Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
237
237
  """
238
238
  return pulumi.get(self, "account_id")
239
239
 
240
240
  @account_id.setter
241
- def account_id(self, value: Optional[pulumi.Input[int]]):
241
+ def account_id(self, value: Optional[pulumi.Input[str]]):
242
242
  pulumi.set(self, "account_id", value)
243
243
 
244
244
  @property
@@ -383,7 +383,7 @@ class Workflow(pulumi.CustomResource):
383
383
  def __init__(__self__,
384
384
  resource_name: str,
385
385
  opts: Optional[pulumi.ResourceOptions] = None,
386
- account_id: Optional[pulumi.Input[int]] = None,
386
+ account_id: Optional[pulumi.Input[str]] = None,
387
387
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkflowDestinationArgs']]]]] = None,
388
388
  destinations_enabled: Optional[pulumi.Input[bool]] = None,
389
389
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -553,7 +553,7 @@ class Workflow(pulumi.CustomResource):
553
553
 
554
554
  :param str resource_name: The name of the resource.
555
555
  :param pulumi.ResourceOptions opts: Options for the resource.
556
- :param pulumi.Input[int] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
556
+ :param pulumi.Input[str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
557
557
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkflowDestinationArgs']]]] destinations: Notification configuration. See Nested destination blocks below for details.
558
558
  :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
559
559
  these two are different flags, but they are functionally identical. Defaults to true.
@@ -743,7 +743,7 @@ class Workflow(pulumi.CustomResource):
743
743
  def _internal_init(__self__,
744
744
  resource_name: str,
745
745
  opts: Optional[pulumi.ResourceOptions] = None,
746
- account_id: Optional[pulumi.Input[int]] = None,
746
+ account_id: Optional[pulumi.Input[str]] = None,
747
747
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkflowDestinationArgs']]]]] = None,
748
748
  destinations_enabled: Optional[pulumi.Input[bool]] = None,
749
749
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -789,7 +789,7 @@ class Workflow(pulumi.CustomResource):
789
789
  def get(resource_name: str,
790
790
  id: pulumi.Input[str],
791
791
  opts: Optional[pulumi.ResourceOptions] = None,
792
- account_id: Optional[pulumi.Input[int]] = None,
792
+ account_id: Optional[pulumi.Input[str]] = None,
793
793
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkflowDestinationArgs']]]]] = None,
794
794
  destinations_enabled: Optional[pulumi.Input[bool]] = None,
795
795
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -808,7 +808,7 @@ class Workflow(pulumi.CustomResource):
808
808
  :param str resource_name: The unique name of the resulting resource.
809
809
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
810
810
  :param pulumi.ResourceOptions opts: Options for the resource.
811
- :param pulumi.Input[int] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
811
+ :param pulumi.Input[str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
812
812
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkflowDestinationArgs']]]] destinations: Notification configuration. See Nested destination blocks below for details.
813
813
  :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
814
814
  these two are different flags, but they are functionally identical. Defaults to true.
@@ -842,7 +842,7 @@ class Workflow(pulumi.CustomResource):
842
842
 
843
843
  @property
844
844
  @pulumi.getter(name="accountId")
845
- def account_id(self) -> pulumi.Output[int]:
845
+ def account_id(self) -> pulumi.Output[str]:
846
846
  """
847
847
  Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
848
848
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_newrelic
3
- Version: 5.24.0a1715356536
3
+ Version: 5.24.1
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
@@ -0,0 +1,89 @@
1
+ pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
2
+ pulumi_newrelic/_inputs.py,sha256=0PyhyltlkaADZkXJKdxImGovcImnSaZA1C3RCzaclsw,469022
3
+ pulumi_newrelic/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
+ pulumi_newrelic/account_management.py,sha256=8mWtlTu8uP0x-4CVfAVL5kjuElnyNUeLHBqVNfIcyQc,8817
5
+ pulumi_newrelic/alert_channel.py,sha256=5CYMMAyK6BgJRGGzhbYzZTsOLk3PkLVTtpjLen8mWNU,20130
6
+ pulumi_newrelic/alert_condition.py,sha256=KsW3TijyAtV7WkvykDHEJrncdJSCcNeU_FgyH36ejvc,41574
7
+ pulumi_newrelic/alert_muting_rule.py,sha256=6HQk7AyR5z0qPxZDYYq2ANsyy5lYHsEAAiykQvDeAz8,18756
8
+ pulumi_newrelic/alert_policy.py,sha256=6EDSABgNBlFYT6cmu4TwCffQvBOB9MhFLmO6IAjpWw4,23658
9
+ pulumi_newrelic/alert_policy_channel.py,sha256=UzBH24klGuITsJlw4nyo0E__-8fevYBdOYhDx9xbWEM,15477
10
+ pulumi_newrelic/api_access_key.py,sha256=buDhGJHHgnLzPLbYcsaBjl1bQDukgLzdk1FzbIkX_Ts,21435
11
+ pulumi_newrelic/browser_application.py,sha256=tVD3ZgHHXTTe1t9fFBDbeT9agigtzCajQJlmupdMd-4,21042
12
+ pulumi_newrelic/data_partition_rule.py,sha256=C_G9maLjFeJlv_XUfDmgWZIgGVO2ojlOcx0mZsciMZU,20433
13
+ pulumi_newrelic/entity_tags.py,sha256=LdyMTlvgc1gQrHJZbVPIa4IaPUJrgy7EJxuy-bOxiXM,10029
14
+ pulumi_newrelic/events_to_metrics_rule.py,sha256=lQAWZJc5TmVWJoznib_yniMV5kCFONWwnhGmxmS9gl4,15994
15
+ pulumi_newrelic/get_account.py,sha256=uZnFdoQVwUd-Qz4WHtA7EHiylDS10JHJvsn4j2dONww,4651
16
+ pulumi_newrelic/get_alert_channel.py,sha256=QXHddDxfYIDOpEQFkQ_uBs_CV94f_sn8qeTESbJGSVQ,5416
17
+ pulumi_newrelic/get_alert_policy.py,sha256=UARHY3a8TuUI0HJpt98XU1W4UgongttmJGk8pWeQ6gg,5795
18
+ pulumi_newrelic/get_application.py,sha256=BAfcQqa2YJR3ggMugqvBydAT59ujX_ftPQmsDtsd2Uw,5274
19
+ pulumi_newrelic/get_authentication_domain.py,sha256=wy5i9vGaNqYofpBE7gLrwmJAaM-NkdMglOK0lprSFjM,3498
20
+ pulumi_newrelic/get_cloud_account.py,sha256=7uBL8KxGdma3ZR8KQzRXG61R-inusfXHXv_6bEQK3fI,5191
21
+ pulumi_newrelic/get_entity.py,sha256=gITvF4hj6uHTJ3YB2Lbgh6B4k9mwAn7sL5JnjK_lfws,17830
22
+ pulumi_newrelic/get_group.py,sha256=pjW9nJr7tPPyi5YKev_VRyccEmQ_qGd6J8ZyWVxy33g,7783
23
+ pulumi_newrelic/get_key_transaction.py,sha256=E9z8R6wWYQiUS7PH3UOkLcmK0OfjWH2z0eClyF0nEdk,4043
24
+ pulumi_newrelic/get_notification_destination.py,sha256=xuZ8M317q9-z-bPWdgXpok9W-malMqAaPRQJPXJaL80,8152
25
+ pulumi_newrelic/get_obfuscation_expression.py,sha256=6-EpgfNLHmWmx-Na8IQ9UCaBz1j8AnPuGC0XzBOb2lc,4921
26
+ pulumi_newrelic/get_service_level_alert_helper.py,sha256=tkq0xO1-F6S0bWfvLkRUZMaWZOvh0gUl3wfe2FPHbdg,18534
27
+ pulumi_newrelic/get_test_grok_pattern.py,sha256=mCiJXbpiQLg2oeEa5_rQTI38ZsXkWml4lgv1s6jEpPE,5538
28
+ pulumi_newrelic/get_user.py,sha256=QxI7LiKvkiBOc-Ovj3ySFzD1l2SrGO1Y7-xnrGhfP3A,7284
29
+ pulumi_newrelic/group.py,sha256=ifVMSVvNIQ4YtoRXIBCpzu7jy3AsEt0iQAFC4M3Rb8g,20907
30
+ pulumi_newrelic/infra_alert_condition.py,sha256=U3uoN8lZ8aaF3-JYsPtp25Mupu4h4ugsLjn1Mg6vI3c,55350
31
+ pulumi_newrelic/log_parsing_rule.py,sha256=1NgUsL1PQNd5-5eMUiOA5fL0vT91DNQ6KqmcWSyn5l0,22408
32
+ pulumi_newrelic/monitor_downtime.py,sha256=NJ4MNCNvsprCc3tsFItaicyZQFM_U5m9oX6jQtyNv_8,40928
33
+ pulumi_newrelic/notification_channel.py,sha256=24p_eoHWZO_Batk8OEryh4OW48W8YuYGIbnmcEimmas,45732
34
+ pulumi_newrelic/notification_destination.py,sha256=2nUHHjQxPeIYRQcFSWExFFNOKxu3a_WQonW6EdWlH6o,37505
35
+ pulumi_newrelic/nrql_alert_condition.py,sha256=WXB043NuAgNxeeBhpC0bn2r-x2SIFpVFSdfuahLq4nE,105437
36
+ pulumi_newrelic/nrql_drop_rule.py,sha256=HxW-UuccZ1r1Y0VE0lWPrKE30WYlPtAXJ7OQURDsc_c,16873
37
+ pulumi_newrelic/obfuscation_expression.py,sha256=ujOP16liz5adKssyTNmoSbKJsypZAejSi6eCsQtC54c,12343
38
+ pulumi_newrelic/obfuscation_rule.py,sha256=J1951kAaBWDlmFWEQsSASz7PmjGSpQYxvqV8wLliTFY,17809
39
+ pulumi_newrelic/one_dashboard.py,sha256=iFA7NQWxwqPd8wSBnhx6HORVuwzvWtfz4j15JoANfPM,18619
40
+ pulumi_newrelic/one_dashboard_json.py,sha256=u-JceUUU1oHvQ_QT5rSy5kWw17dGR4hk_X0qg-NVT-s,12622
41
+ pulumi_newrelic/one_dashboard_raw.py,sha256=M9TgRdqEwEDFwJtzN2retbMG3b8aNih10hL0n0MihUY,23542
42
+ pulumi_newrelic/outputs.py,sha256=nEo-ACQKgisaHiabw2mPGD-G3n2bWa2ggcGAdoIkKQU,462547
43
+ pulumi_newrelic/provider.py,sha256=UIT58VArPFzjnWIR6uA-WzNzFC1AaWDSSZg9ni5BUxc,19663
44
+ pulumi_newrelic/pulumi-plugin.json,sha256=lA74EuCAkxrhkIxsRooDOt0RagKhM2ihD6KGygpTXnk,68
45
+ pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ pulumi_newrelic/service_level.py,sha256=qKTI9Kmxrq8Gl7sfq4_A8Pac7s0FCm-Zp0R9oeLMoUo,25143
47
+ pulumi_newrelic/user.py,sha256=kmrrs7yU396-mOZwigKQVS4iAyJHGZgevWJJkjU_CdI,18942
48
+ pulumi_newrelic/workflow.py,sha256=AcY9GJHF3SB8A-WNOed-UBNFxU20R3x8FpA6DSHRXIg,41706
49
+ pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8oW6i8,592
50
+ pulumi_newrelic/cloud/_inputs.py,sha256=PFxNJ_jznxsz2yI12uFYQMjQOI2SoHg0Q8CVieaq5SU,294585
51
+ pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=MVjSXcxWj4zZs0FdhVijV-XQs68Rf7YzXHRpUn5MLRA,62204
52
+ pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=_FJ8URQzEeNnkMCndsq7oKOe8gRIFWvsQ8HbGTvGNuc,20827
53
+ pulumi_newrelic/cloud/aws_integrations.py,sha256=eINJlBbQsp6R7wPtRw_ezhzHUVgv2Ru13AHo_-0xY5o,173286
54
+ pulumi_newrelic/cloud/aws_link_account.py,sha256=ANyN1A7_TLGOcCwnMMX6RtXRAO53wLFUAI7c97osKNo,15495
55
+ pulumi_newrelic/cloud/azure_integrations.py,sha256=5FrYyM_qBdqEGq79SqZmDr_PMFVETjOuzscMug5K-rs,112058
56
+ pulumi_newrelic/cloud/azure_link_account.py,sha256=QR7mViJ5B-ibn5vJg2Cgn0RddMDfYHWjRKzN7y19EoE,18559
57
+ pulumi_newrelic/cloud/gcp_integrations.py,sha256=JvYZ2rspkTVuRfGG8OfyBYIw79eFKN6n2F9Sn_I7qw4,84528
58
+ pulumi_newrelic/cloud/gcp_link_account.py,sha256=OvPvdjOuWg1v-DrONAXQNgsPiuRNo-xBH8LqafermHo,12431
59
+ pulumi_newrelic/cloud/outputs.py,sha256=Ow4BSp_VDxtvyYGpChi54fvOeBSUoyQ_kEBn1t1F-eQ,316241
60
+ pulumi_newrelic/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
61
+ pulumi_newrelic/config/__init__.pyi,sha256=Ei1nds8BYdBSKrzdgc14xag-tIZ9fdv02sZzgHGgD90,845
62
+ pulumi_newrelic/config/vars.py,sha256=ic6v5AqvrrrkDKHFsxvLzMdVw24XIsIu_vjp34R3388,2102
63
+ pulumi_newrelic/insights/__init__.py,sha256=-tPATEB7zs4lUfIRTT0wNnN9a7uvXHsRi315Y9-rm30,335
64
+ pulumi_newrelic/insights/_inputs.py,sha256=_N6liJuXjt9GK3HWgA94q0fLjAckJd6Ou5ntAO0atNA,4324
65
+ pulumi_newrelic/insights/event.py,sha256=5uSl7ondJNTXc0ypv3sEBcdDPuuHUSHQRVXjbf20ROo,8896
66
+ pulumi_newrelic/insights/outputs.py,sha256=Rsw2x8EcSF_LE4pt_9jJtoF_ut0D1S4cRCxPzCIBVsU,3335
67
+ pulumi_newrelic/plugins/__init__.py,sha256=UeoukmKyu6Xm6K4W4z5N_CzyB634ttFEcP7GH9nTyeA,374
68
+ pulumi_newrelic/plugins/_inputs.py,sha256=VDptQjNnRhoeXubaDScaWrzj3SGZdnB5AIHd6CouIwA,16378
69
+ pulumi_newrelic/plugins/application_settings.py,sha256=gih1hG-Rh786Uqj-csmAeOJVeUGVcIONts_KZrra2gw,16324
70
+ pulumi_newrelic/plugins/outputs.py,sha256=rfN6vYax3n2ngC5dvVZ71FtiR0Az6LN9JQQlMWhs_QI,16191
71
+ pulumi_newrelic/plugins/workload.py,sha256=mh1B78bD53S9oVi443th8_jT3nmrkK0etD7S6mj9WaY,39666
72
+ pulumi_newrelic/synthetics/__init__.py,sha256=8O5SCapCaxLPwCnTDb8XJ3w1Vw_1avXP4bCZ3bTXxMs,680
73
+ pulumi_newrelic/synthetics/_inputs.py,sha256=F8ecjlj2j3gv0oWwFNYGht9gktjMDumW-_hxoz852UE,13597
74
+ pulumi_newrelic/synthetics/alert_condition.py,sha256=D12GbyWkaDQpeXxkxSFyoo2gTD09AECIacTtyGlgea8,20139
75
+ pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=jfmHMs03-1vE4BwxxUv9RhU8kQMDTBfc1Z5BRqtaXiU,45083
76
+ pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=BLXDDLp_BFwgy67B_LpCwOwj_eDFiR3NFgAjkfH4hQ0,47171
77
+ pulumi_newrelic/synthetics/get_private_location.py,sha256=4ZJdNrhcmeLdFlcYWauHqDlcluhpBdHKShnD3XF5eKw,5795
78
+ pulumi_newrelic/synthetics/get_secure_credential.py,sha256=vR5rPjK49At_5Zrdf2aepu9LSrRy_a5sxaUVxnM26P8,4839
79
+ pulumi_newrelic/synthetics/monitor.py,sha256=4LwxwVnfJny5Qmsn8qesOhIp0kI3gaU_bvi0N2eItkM,65030
80
+ pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=cWyW7yt9-V5h_S7vY26w_3fY8xvPVJwV2q4xxd6iw80,31073
81
+ pulumi_newrelic/synthetics/outputs.py,sha256=vYBs8vBYKPBJoLpopcyZbVX8bHCXTuCx4hFehc4R_Hs,11169
82
+ pulumi_newrelic/synthetics/private_location.py,sha256=Z6Pj1vjDif95ep7w4QhWu3jsQQ5USzIjhzaFCA9oGBg,17299
83
+ pulumi_newrelic/synthetics/script_monitor.py,sha256=Yu1R5udNIk5CSTgCV2-ywGeHGWrPfimNjXL34qQNyo8,54359
84
+ pulumi_newrelic/synthetics/secure_credential.py,sha256=XBLRGmmCJA_oNGZx1sdlUS9O2gL7BLPsUhJiNr1ECwM,15238
85
+ pulumi_newrelic/synthetics/step_monitor.py,sha256=5rKhjFCAUndEzVtpuHlk-69c-X10eIpIge1TgGTnTao,50367
86
+ pulumi_newrelic-5.24.1.dist-info/METADATA,sha256=8O5F2nvxMQ-s3ZPLqwwat10i3GFU3TKzr2NK5oqiVI4,3889
87
+ pulumi_newrelic-5.24.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
88
+ pulumi_newrelic-5.24.1.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
89
+ pulumi_newrelic-5.24.1.dist-info/RECORD,,