pulumi-newrelic 5.45.0a1743574084__py3-none-any.whl → 5.45.0a1744183332__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 (89) hide show
  1. pulumi_newrelic/__init__.py +1 -0
  2. pulumi_newrelic/_inputs.py +2961 -2960
  3. pulumi_newrelic/account_management.py +29 -28
  4. pulumi_newrelic/alert_channel.py +43 -42
  5. pulumi_newrelic/alert_condition.py +176 -175
  6. pulumi_newrelic/alert_muting_rule.py +71 -70
  7. pulumi_newrelic/alert_policy.py +57 -56
  8. pulumi_newrelic/alert_policy_channel.py +43 -42
  9. pulumi_newrelic/api_access_key.py +92 -91
  10. pulumi_newrelic/browser_application.py +92 -91
  11. pulumi_newrelic/cloud/__init__.py +1 -0
  12. pulumi_newrelic/cloud/_inputs.py +1765 -1764
  13. pulumi_newrelic/cloud/aws_govcloud_integrations.py +29 -28
  14. pulumi_newrelic/cloud/aws_govcloud_link_account.py +57 -56
  15. pulumi_newrelic/cloud/aws_integrations.py +29 -28
  16. pulumi_newrelic/cloud/aws_link_account.py +57 -56
  17. pulumi_newrelic/cloud/azure_integrations.py +29 -28
  18. pulumi_newrelic/cloud/azure_link_account.py +85 -84
  19. pulumi_newrelic/cloud/gcp_integrations.py +29 -28
  20. pulumi_newrelic/cloud/gcp_link_account.py +45 -44
  21. pulumi_newrelic/cloud/outputs.py +1057 -1056
  22. pulumi_newrelic/config/__init__.py +1 -0
  23. pulumi_newrelic/config/__init__.pyi +1 -0
  24. pulumi_newrelic/config/vars.py +1 -0
  25. pulumi_newrelic/data_partition_rule.py +92 -91
  26. pulumi_newrelic/entity_tags.py +15 -14
  27. pulumi_newrelic/events_to_metrics_rule.py +78 -77
  28. pulumi_newrelic/get_account.py +17 -16
  29. pulumi_newrelic/get_alert_channel.py +14 -13
  30. pulumi_newrelic/get_alert_policy.py +19 -18
  31. pulumi_newrelic/get_application.py +9 -8
  32. pulumi_newrelic/get_authentication_domain.py +7 -6
  33. pulumi_newrelic/get_cloud_account.py +17 -16
  34. pulumi_newrelic/get_entity.py +40 -39
  35. pulumi_newrelic/get_group.py +13 -12
  36. pulumi_newrelic/get_key_transaction.py +19 -18
  37. pulumi_newrelic/get_notification_destination.py +20 -19
  38. pulumi_newrelic/get_obfuscation_expression.py +12 -11
  39. pulumi_newrelic/get_service_level_alert_helper.py +41 -40
  40. pulumi_newrelic/get_test_grok_pattern.py +17 -16
  41. pulumi_newrelic/get_user.py +17 -16
  42. pulumi_newrelic/group.py +43 -42
  43. pulumi_newrelic/infra_alert_condition.py +204 -203
  44. pulumi_newrelic/insights/__init__.py +1 -0
  45. pulumi_newrelic/insights/_inputs.py +26 -25
  46. pulumi_newrelic/insights/event.py +1 -0
  47. pulumi_newrelic/insights/outputs.py +16 -15
  48. pulumi_newrelic/key_transaction.py +85 -84
  49. pulumi_newrelic/log_parsing_rule.py +120 -119
  50. pulumi_newrelic/monitor_downtime.py +113 -112
  51. pulumi_newrelic/notification_channel.py +92 -91
  52. pulumi_newrelic/notification_destination.py +78 -77
  53. pulumi_newrelic/nrql_alert_condition.py +330 -329
  54. pulumi_newrelic/nrql_drop_rule.py +64 -63
  55. pulumi_newrelic/obfuscation_expression.py +57 -56
  56. pulumi_newrelic/obfuscation_rule.py +71 -70
  57. pulumi_newrelic/one_dashboard.py +71 -70
  58. pulumi_newrelic/one_dashboard_json.py +50 -49
  59. pulumi_newrelic/one_dashboard_raw.py +71 -70
  60. pulumi_newrelic/outputs.py +1831 -1830
  61. pulumi_newrelic/plugins/__init__.py +1 -0
  62. pulumi_newrelic/plugins/_inputs.py +126 -125
  63. pulumi_newrelic/plugins/application_settings.py +132 -131
  64. pulumi_newrelic/plugins/outputs.py +76 -75
  65. pulumi_newrelic/plugins/workload.py +99 -98
  66. pulumi_newrelic/provider.py +80 -79
  67. pulumi_newrelic/pulumi-plugin.json +1 -1
  68. pulumi_newrelic/service_level.py +57 -56
  69. pulumi_newrelic/synthetics/__init__.py +1 -0
  70. pulumi_newrelic/synthetics/_inputs.py +106 -105
  71. pulumi_newrelic/synthetics/alert_condition.py +78 -77
  72. pulumi_newrelic/synthetics/broken_links_monitor.py +151 -150
  73. pulumi_newrelic/synthetics/cert_check_monitor.py +158 -157
  74. pulumi_newrelic/synthetics/get_private_location.py +17 -16
  75. pulumi_newrelic/synthetics/get_secure_credential.py +14 -13
  76. pulumi_newrelic/synthetics/monitor.py +298 -297
  77. pulumi_newrelic/synthetics/multi_location_alert_condition.py +92 -91
  78. pulumi_newrelic/synthetics/outputs.py +64 -63
  79. pulumi_newrelic/synthetics/private_location.py +85 -84
  80. pulumi_newrelic/synthetics/script_monitor.py +235 -234
  81. pulumi_newrelic/synthetics/secure_credential.py +71 -70
  82. pulumi_newrelic/synthetics/step_monitor.py +165 -164
  83. pulumi_newrelic/user.py +57 -56
  84. pulumi_newrelic/workflow.py +106 -105
  85. {pulumi_newrelic-5.45.0a1743574084.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/METADATA +1 -1
  86. pulumi_newrelic-5.45.0a1744183332.dist-info/RECORD +90 -0
  87. pulumi_newrelic-5.45.0a1743574084.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.45.0a1743574084.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.45.0a1743574084.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -23,25 +24,25 @@ class WorkflowArgs:
23
24
  def __init__(__self__, *,
24
25
  destinations: pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]],
25
26
  issues_filter: pulumi.Input['WorkflowIssuesFilterArgs'],
26
- muting_rules_handling: pulumi.Input[str],
27
- account_id: Optional[pulumi.Input[str]] = None,
28
- destinations_enabled: Optional[pulumi.Input[bool]] = None,
29
- enabled: Optional[pulumi.Input[bool]] = None,
27
+ muting_rules_handling: pulumi.Input[builtins.str],
28
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
29
+ destinations_enabled: Optional[pulumi.Input[builtins.bool]] = None,
30
+ enabled: Optional[pulumi.Input[builtins.bool]] = None,
30
31
  enrichments: Optional[pulumi.Input['WorkflowEnrichmentsArgs']] = None,
31
- enrichments_enabled: Optional[pulumi.Input[bool]] = None,
32
- name: Optional[pulumi.Input[str]] = None):
32
+ enrichments_enabled: Optional[pulumi.Input[builtins.bool]] = None,
33
+ name: Optional[pulumi.Input[builtins.str]] = None):
33
34
  """
34
35
  The set of arguments for constructing a Workflow resource.
35
36
  :param pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]] destinations: Notification configuration. See Nested destination blocks below for details.
36
37
  :param pulumi.Input['WorkflowIssuesFilterArgs'] issues_filter: A filter used to identify issues handled by this workflow. See Nested issues_filter blocks below for details.
37
- :param pulumi.Input[str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
38
- :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.
39
- :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
38
+ :param pulumi.Input[builtins.str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
39
+ :param pulumi.Input[builtins.str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
40
+ :param pulumi.Input[builtins.bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
40
41
  these two are different flags, but they are functionally identical. Defaults to true.
41
- :param pulumi.Input[bool] enabled: Whether workflow is enabled. Defaults to true.
42
+ :param pulumi.Input[builtins.bool] enabled: Whether workflow is enabled. Defaults to true.
42
43
  :param pulumi.Input['WorkflowEnrichmentsArgs'] enrichments: Workflow's enrichments. See Nested enrichments blocks below for details.
43
- :param pulumi.Input[bool] enrichments_enabled: Whether enrichments are enabled. Defaults to true.
44
- :param pulumi.Input[str] name: The name of the workflow.
44
+ :param pulumi.Input[builtins.bool] enrichments_enabled: Whether enrichments are enabled. Defaults to true.
45
+ :param pulumi.Input[builtins.str] name: The name of the workflow.
45
46
  """
46
47
  pulumi.set(__self__, "destinations", destinations)
47
48
  pulumi.set(__self__, "issues_filter", issues_filter)
@@ -88,32 +89,32 @@ class WorkflowArgs:
88
89
 
89
90
  @property
90
91
  @pulumi.getter(name="mutingRulesHandling")
91
- def muting_rules_handling(self) -> pulumi.Input[str]:
92
+ def muting_rules_handling(self) -> pulumi.Input[builtins.str]:
92
93
  """
93
94
  How to handle muted issues. See Muting Rules below for details.
94
95
  """
95
96
  return pulumi.get(self, "muting_rules_handling")
96
97
 
97
98
  @muting_rules_handling.setter
98
- def muting_rules_handling(self, value: pulumi.Input[str]):
99
+ def muting_rules_handling(self, value: pulumi.Input[builtins.str]):
99
100
  pulumi.set(self, "muting_rules_handling", value)
100
101
 
101
102
  @property
102
103
  @pulumi.getter(name="accountId")
103
- def account_id(self) -> Optional[pulumi.Input[str]]:
104
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
104
105
  """
105
106
  Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
106
107
  """
107
108
  return pulumi.get(self, "account_id")
108
109
 
109
110
  @account_id.setter
110
- def account_id(self, value: Optional[pulumi.Input[str]]):
111
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
111
112
  pulumi.set(self, "account_id", value)
112
113
 
113
114
  @property
114
115
  @pulumi.getter(name="destinationsEnabled")
115
116
  @_utilities.deprecated("""Please use 'enabled' instead""")
116
- def destinations_enabled(self) -> Optional[pulumi.Input[bool]]:
117
+ def destinations_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
117
118
  """
118
119
  **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
119
120
  these two are different flags, but they are functionally identical. Defaults to true.
@@ -121,19 +122,19 @@ class WorkflowArgs:
121
122
  return pulumi.get(self, "destinations_enabled")
122
123
 
123
124
  @destinations_enabled.setter
124
- def destinations_enabled(self, value: Optional[pulumi.Input[bool]]):
125
+ def destinations_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
125
126
  pulumi.set(self, "destinations_enabled", value)
126
127
 
127
128
  @property
128
129
  @pulumi.getter
129
- def enabled(self) -> Optional[pulumi.Input[bool]]:
130
+ def enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
130
131
  """
131
132
  Whether workflow is enabled. Defaults to true.
132
133
  """
133
134
  return pulumi.get(self, "enabled")
134
135
 
135
136
  @enabled.setter
136
- def enabled(self, value: Optional[pulumi.Input[bool]]):
137
+ def enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
137
138
  pulumi.set(self, "enabled", value)
138
139
 
139
140
  @property
@@ -150,59 +151,59 @@ class WorkflowArgs:
150
151
 
151
152
  @property
152
153
  @pulumi.getter(name="enrichmentsEnabled")
153
- def enrichments_enabled(self) -> Optional[pulumi.Input[bool]]:
154
+ def enrichments_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
154
155
  """
155
156
  Whether enrichments are enabled. Defaults to true.
156
157
  """
157
158
  return pulumi.get(self, "enrichments_enabled")
158
159
 
159
160
  @enrichments_enabled.setter
160
- def enrichments_enabled(self, value: Optional[pulumi.Input[bool]]):
161
+ def enrichments_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
161
162
  pulumi.set(self, "enrichments_enabled", value)
162
163
 
163
164
  @property
164
165
  @pulumi.getter
165
- def name(self) -> Optional[pulumi.Input[str]]:
166
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
166
167
  """
167
168
  The name of the workflow.
168
169
  """
169
170
  return pulumi.get(self, "name")
170
171
 
171
172
  @name.setter
172
- def name(self, value: Optional[pulumi.Input[str]]):
173
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
173
174
  pulumi.set(self, "name", value)
174
175
 
175
176
 
176
177
  @pulumi.input_type
177
178
  class _WorkflowState:
178
179
  def __init__(__self__, *,
179
- account_id: Optional[pulumi.Input[str]] = None,
180
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
180
181
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]]] = None,
181
- destinations_enabled: Optional[pulumi.Input[bool]] = None,
182
- enabled: Optional[pulumi.Input[bool]] = None,
182
+ destinations_enabled: Optional[pulumi.Input[builtins.bool]] = None,
183
+ enabled: Optional[pulumi.Input[builtins.bool]] = None,
183
184
  enrichments: Optional[pulumi.Input['WorkflowEnrichmentsArgs']] = None,
184
- enrichments_enabled: Optional[pulumi.Input[bool]] = None,
185
- guid: Optional[pulumi.Input[str]] = None,
185
+ enrichments_enabled: Optional[pulumi.Input[builtins.bool]] = None,
186
+ guid: Optional[pulumi.Input[builtins.str]] = None,
186
187
  issues_filter: Optional[pulumi.Input['WorkflowIssuesFilterArgs']] = None,
187
- last_run: Optional[pulumi.Input[str]] = None,
188
- muting_rules_handling: Optional[pulumi.Input[str]] = None,
189
- name: Optional[pulumi.Input[str]] = None,
190
- workflow_id: Optional[pulumi.Input[str]] = None):
188
+ last_run: Optional[pulumi.Input[builtins.str]] = None,
189
+ muting_rules_handling: Optional[pulumi.Input[builtins.str]] = None,
190
+ name: Optional[pulumi.Input[builtins.str]] = None,
191
+ workflow_id: Optional[pulumi.Input[builtins.str]] = None):
191
192
  """
192
193
  Input properties used for looking up and filtering Workflow resources.
193
- :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.
194
+ :param pulumi.Input[builtins.str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
194
195
  :param pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]] destinations: Notification configuration. See Nested destination blocks below for details.
195
- :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
196
+ :param pulumi.Input[builtins.bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
196
197
  these two are different flags, but they are functionally identical. Defaults to true.
197
- :param pulumi.Input[bool] enabled: Whether workflow is enabled. Defaults to true.
198
+ :param pulumi.Input[builtins.bool] enabled: Whether workflow is enabled. Defaults to true.
198
199
  :param pulumi.Input['WorkflowEnrichmentsArgs'] enrichments: Workflow's enrichments. See Nested enrichments blocks below for details.
199
- :param pulumi.Input[bool] enrichments_enabled: Whether enrichments are enabled. Defaults to true.
200
- :param pulumi.Input[str] guid: Workflow entity GUID
200
+ :param pulumi.Input[builtins.bool] enrichments_enabled: Whether enrichments are enabled. Defaults to true.
201
+ :param pulumi.Input[builtins.str] guid: Workflow entity GUID
201
202
  :param pulumi.Input['WorkflowIssuesFilterArgs'] issues_filter: A filter used to identify issues handled by this workflow. See Nested issues_filter blocks below for details.
202
- :param pulumi.Input[str] last_run: The last time notification was sent for this workflow.
203
- :param pulumi.Input[str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
204
- :param pulumi.Input[str] name: The name of the workflow.
205
- :param pulumi.Input[str] workflow_id: The id of the workflow.
203
+ :param pulumi.Input[builtins.str] last_run: The last time notification was sent for this workflow.
204
+ :param pulumi.Input[builtins.str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
205
+ :param pulumi.Input[builtins.str] name: The name of the workflow.
206
+ :param pulumi.Input[builtins.str] workflow_id: The id of the workflow.
206
207
  """
207
208
  if account_id is not None:
208
209
  pulumi.set(__self__, "account_id", account_id)
@@ -234,14 +235,14 @@ class _WorkflowState:
234
235
 
235
236
  @property
236
237
  @pulumi.getter(name="accountId")
237
- def account_id(self) -> Optional[pulumi.Input[str]]:
238
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
238
239
  """
239
240
  Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
240
241
  """
241
242
  return pulumi.get(self, "account_id")
242
243
 
243
244
  @account_id.setter
244
- def account_id(self, value: Optional[pulumi.Input[str]]):
245
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
245
246
  pulumi.set(self, "account_id", value)
246
247
 
247
248
  @property
@@ -259,7 +260,7 @@ class _WorkflowState:
259
260
  @property
260
261
  @pulumi.getter(name="destinationsEnabled")
261
262
  @_utilities.deprecated("""Please use 'enabled' instead""")
262
- def destinations_enabled(self) -> Optional[pulumi.Input[bool]]:
263
+ def destinations_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
263
264
  """
264
265
  **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
265
266
  these two are different flags, but they are functionally identical. Defaults to true.
@@ -267,19 +268,19 @@ class _WorkflowState:
267
268
  return pulumi.get(self, "destinations_enabled")
268
269
 
269
270
  @destinations_enabled.setter
270
- def destinations_enabled(self, value: Optional[pulumi.Input[bool]]):
271
+ def destinations_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
271
272
  pulumi.set(self, "destinations_enabled", value)
272
273
 
273
274
  @property
274
275
  @pulumi.getter
275
- def enabled(self) -> Optional[pulumi.Input[bool]]:
276
+ def enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
276
277
  """
277
278
  Whether workflow is enabled. Defaults to true.
278
279
  """
279
280
  return pulumi.get(self, "enabled")
280
281
 
281
282
  @enabled.setter
282
- def enabled(self, value: Optional[pulumi.Input[bool]]):
283
+ def enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
283
284
  pulumi.set(self, "enabled", value)
284
285
 
285
286
  @property
@@ -296,26 +297,26 @@ class _WorkflowState:
296
297
 
297
298
  @property
298
299
  @pulumi.getter(name="enrichmentsEnabled")
299
- def enrichments_enabled(self) -> Optional[pulumi.Input[bool]]:
300
+ def enrichments_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
300
301
  """
301
302
  Whether enrichments are enabled. Defaults to true.
302
303
  """
303
304
  return pulumi.get(self, "enrichments_enabled")
304
305
 
305
306
  @enrichments_enabled.setter
306
- def enrichments_enabled(self, value: Optional[pulumi.Input[bool]]):
307
+ def enrichments_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
307
308
  pulumi.set(self, "enrichments_enabled", value)
308
309
 
309
310
  @property
310
311
  @pulumi.getter
311
- def guid(self) -> Optional[pulumi.Input[str]]:
312
+ def guid(self) -> Optional[pulumi.Input[builtins.str]]:
312
313
  """
313
314
  Workflow entity GUID
314
315
  """
315
316
  return pulumi.get(self, "guid")
316
317
 
317
318
  @guid.setter
318
- def guid(self, value: Optional[pulumi.Input[str]]):
319
+ def guid(self, value: Optional[pulumi.Input[builtins.str]]):
319
320
  pulumi.set(self, "guid", value)
320
321
 
321
322
  @property
@@ -332,50 +333,50 @@ class _WorkflowState:
332
333
 
333
334
  @property
334
335
  @pulumi.getter(name="lastRun")
335
- def last_run(self) -> Optional[pulumi.Input[str]]:
336
+ def last_run(self) -> Optional[pulumi.Input[builtins.str]]:
336
337
  """
337
338
  The last time notification was sent for this workflow.
338
339
  """
339
340
  return pulumi.get(self, "last_run")
340
341
 
341
342
  @last_run.setter
342
- def last_run(self, value: Optional[pulumi.Input[str]]):
343
+ def last_run(self, value: Optional[pulumi.Input[builtins.str]]):
343
344
  pulumi.set(self, "last_run", value)
344
345
 
345
346
  @property
346
347
  @pulumi.getter(name="mutingRulesHandling")
347
- def muting_rules_handling(self) -> Optional[pulumi.Input[str]]:
348
+ def muting_rules_handling(self) -> Optional[pulumi.Input[builtins.str]]:
348
349
  """
349
350
  How to handle muted issues. See Muting Rules below for details.
350
351
  """
351
352
  return pulumi.get(self, "muting_rules_handling")
352
353
 
353
354
  @muting_rules_handling.setter
354
- def muting_rules_handling(self, value: Optional[pulumi.Input[str]]):
355
+ def muting_rules_handling(self, value: Optional[pulumi.Input[builtins.str]]):
355
356
  pulumi.set(self, "muting_rules_handling", value)
356
357
 
357
358
  @property
358
359
  @pulumi.getter
359
- def name(self) -> Optional[pulumi.Input[str]]:
360
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
360
361
  """
361
362
  The name of the workflow.
362
363
  """
363
364
  return pulumi.get(self, "name")
364
365
 
365
366
  @name.setter
366
- def name(self, value: Optional[pulumi.Input[str]]):
367
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
367
368
  pulumi.set(self, "name", value)
368
369
 
369
370
  @property
370
371
  @pulumi.getter(name="workflowId")
371
- def workflow_id(self) -> Optional[pulumi.Input[str]]:
372
+ def workflow_id(self) -> Optional[pulumi.Input[builtins.str]]:
372
373
  """
373
374
  The id of the workflow.
374
375
  """
375
376
  return pulumi.get(self, "workflow_id")
376
377
 
377
378
  @workflow_id.setter
378
- def workflow_id(self, value: Optional[pulumi.Input[str]]):
379
+ def workflow_id(self, value: Optional[pulumi.Input[builtins.str]]):
379
380
  pulumi.set(self, "workflow_id", value)
380
381
 
381
382
 
@@ -384,15 +385,15 @@ class Workflow(pulumi.CustomResource):
384
385
  def __init__(__self__,
385
386
  resource_name: str,
386
387
  opts: Optional[pulumi.ResourceOptions] = None,
387
- account_id: Optional[pulumi.Input[str]] = None,
388
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
388
389
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['WorkflowDestinationArgs', 'WorkflowDestinationArgsDict']]]]] = None,
389
- destinations_enabled: Optional[pulumi.Input[bool]] = None,
390
- enabled: Optional[pulumi.Input[bool]] = None,
390
+ destinations_enabled: Optional[pulumi.Input[builtins.bool]] = None,
391
+ enabled: Optional[pulumi.Input[builtins.bool]] = None,
391
392
  enrichments: Optional[pulumi.Input[Union['WorkflowEnrichmentsArgs', 'WorkflowEnrichmentsArgsDict']]] = None,
392
- enrichments_enabled: Optional[pulumi.Input[bool]] = None,
393
+ enrichments_enabled: Optional[pulumi.Input[builtins.bool]] = None,
393
394
  issues_filter: Optional[pulumi.Input[Union['WorkflowIssuesFilterArgs', 'WorkflowIssuesFilterArgsDict']]] = None,
394
- muting_rules_handling: Optional[pulumi.Input[str]] = None,
395
- name: Optional[pulumi.Input[str]] = None,
395
+ muting_rules_handling: Optional[pulumi.Input[builtins.str]] = None,
396
+ name: Optional[pulumi.Input[builtins.str]] = None,
396
397
  __props__=None):
397
398
  """
398
399
  Use this resource to create and manage New Relic workflows.
@@ -563,16 +564,16 @@ class Workflow(pulumi.CustomResource):
563
564
 
564
565
  :param str resource_name: The name of the resource.
565
566
  :param pulumi.ResourceOptions opts: Options for the resource.
566
- :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.
567
+ :param pulumi.Input[builtins.str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
567
568
  :param pulumi.Input[Sequence[pulumi.Input[Union['WorkflowDestinationArgs', 'WorkflowDestinationArgsDict']]]] destinations: Notification configuration. See Nested destination blocks below for details.
568
- :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
569
+ :param pulumi.Input[builtins.bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
569
570
  these two are different flags, but they are functionally identical. Defaults to true.
570
- :param pulumi.Input[bool] enabled: Whether workflow is enabled. Defaults to true.
571
+ :param pulumi.Input[builtins.bool] enabled: Whether workflow is enabled. Defaults to true.
571
572
  :param pulumi.Input[Union['WorkflowEnrichmentsArgs', 'WorkflowEnrichmentsArgsDict']] enrichments: Workflow's enrichments. See Nested enrichments blocks below for details.
572
- :param pulumi.Input[bool] enrichments_enabled: Whether enrichments are enabled. Defaults to true.
573
+ :param pulumi.Input[builtins.bool] enrichments_enabled: Whether enrichments are enabled. Defaults to true.
573
574
  :param pulumi.Input[Union['WorkflowIssuesFilterArgs', 'WorkflowIssuesFilterArgsDict']] issues_filter: A filter used to identify issues handled by this workflow. See Nested issues_filter blocks below for details.
574
- :param pulumi.Input[str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
575
- :param pulumi.Input[str] name: The name of the workflow.
575
+ :param pulumi.Input[builtins.str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
576
+ :param pulumi.Input[builtins.str] name: The name of the workflow.
576
577
  """
577
578
  ...
578
579
  @overload
@@ -762,15 +763,15 @@ class Workflow(pulumi.CustomResource):
762
763
  def _internal_init(__self__,
763
764
  resource_name: str,
764
765
  opts: Optional[pulumi.ResourceOptions] = None,
765
- account_id: Optional[pulumi.Input[str]] = None,
766
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
766
767
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['WorkflowDestinationArgs', 'WorkflowDestinationArgsDict']]]]] = None,
767
- destinations_enabled: Optional[pulumi.Input[bool]] = None,
768
- enabled: Optional[pulumi.Input[bool]] = None,
768
+ destinations_enabled: Optional[pulumi.Input[builtins.bool]] = None,
769
+ enabled: Optional[pulumi.Input[builtins.bool]] = None,
769
770
  enrichments: Optional[pulumi.Input[Union['WorkflowEnrichmentsArgs', 'WorkflowEnrichmentsArgsDict']]] = None,
770
- enrichments_enabled: Optional[pulumi.Input[bool]] = None,
771
+ enrichments_enabled: Optional[pulumi.Input[builtins.bool]] = None,
771
772
  issues_filter: Optional[pulumi.Input[Union['WorkflowIssuesFilterArgs', 'WorkflowIssuesFilterArgsDict']]] = None,
772
- muting_rules_handling: Optional[pulumi.Input[str]] = None,
773
- name: Optional[pulumi.Input[str]] = None,
773
+ muting_rules_handling: Optional[pulumi.Input[builtins.str]] = None,
774
+ name: Optional[pulumi.Input[builtins.str]] = None,
774
775
  __props__=None):
775
776
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
776
777
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -808,18 +809,18 @@ class Workflow(pulumi.CustomResource):
808
809
  def get(resource_name: str,
809
810
  id: pulumi.Input[str],
810
811
  opts: Optional[pulumi.ResourceOptions] = None,
811
- account_id: Optional[pulumi.Input[str]] = None,
812
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
812
813
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['WorkflowDestinationArgs', 'WorkflowDestinationArgsDict']]]]] = None,
813
- destinations_enabled: Optional[pulumi.Input[bool]] = None,
814
- enabled: Optional[pulumi.Input[bool]] = None,
814
+ destinations_enabled: Optional[pulumi.Input[builtins.bool]] = None,
815
+ enabled: Optional[pulumi.Input[builtins.bool]] = None,
815
816
  enrichments: Optional[pulumi.Input[Union['WorkflowEnrichmentsArgs', 'WorkflowEnrichmentsArgsDict']]] = None,
816
- enrichments_enabled: Optional[pulumi.Input[bool]] = None,
817
- guid: Optional[pulumi.Input[str]] = None,
817
+ enrichments_enabled: Optional[pulumi.Input[builtins.bool]] = None,
818
+ guid: Optional[pulumi.Input[builtins.str]] = None,
818
819
  issues_filter: Optional[pulumi.Input[Union['WorkflowIssuesFilterArgs', 'WorkflowIssuesFilterArgsDict']]] = None,
819
- last_run: Optional[pulumi.Input[str]] = None,
820
- muting_rules_handling: Optional[pulumi.Input[str]] = None,
821
- name: Optional[pulumi.Input[str]] = None,
822
- workflow_id: Optional[pulumi.Input[str]] = None) -> 'Workflow':
820
+ last_run: Optional[pulumi.Input[builtins.str]] = None,
821
+ muting_rules_handling: Optional[pulumi.Input[builtins.str]] = None,
822
+ name: Optional[pulumi.Input[builtins.str]] = None,
823
+ workflow_id: Optional[pulumi.Input[builtins.str]] = None) -> 'Workflow':
823
824
  """
824
825
  Get an existing Workflow resource's state with the given name, id, and optional extra
825
826
  properties used to qualify the lookup.
@@ -827,19 +828,19 @@ class Workflow(pulumi.CustomResource):
827
828
  :param str resource_name: The unique name of the resulting resource.
828
829
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
829
830
  :param pulumi.ResourceOptions opts: Options for the resource.
830
- :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.
831
+ :param pulumi.Input[builtins.str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
831
832
  :param pulumi.Input[Sequence[pulumi.Input[Union['WorkflowDestinationArgs', 'WorkflowDestinationArgsDict']]]] destinations: Notification configuration. See Nested destination blocks below for details.
832
- :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
833
+ :param pulumi.Input[builtins.bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
833
834
  these two are different flags, but they are functionally identical. Defaults to true.
834
- :param pulumi.Input[bool] enabled: Whether workflow is enabled. Defaults to true.
835
+ :param pulumi.Input[builtins.bool] enabled: Whether workflow is enabled. Defaults to true.
835
836
  :param pulumi.Input[Union['WorkflowEnrichmentsArgs', 'WorkflowEnrichmentsArgsDict']] enrichments: Workflow's enrichments. See Nested enrichments blocks below for details.
836
- :param pulumi.Input[bool] enrichments_enabled: Whether enrichments are enabled. Defaults to true.
837
- :param pulumi.Input[str] guid: Workflow entity GUID
837
+ :param pulumi.Input[builtins.bool] enrichments_enabled: Whether enrichments are enabled. Defaults to true.
838
+ :param pulumi.Input[builtins.str] guid: Workflow entity GUID
838
839
  :param pulumi.Input[Union['WorkflowIssuesFilterArgs', 'WorkflowIssuesFilterArgsDict']] issues_filter: A filter used to identify issues handled by this workflow. See Nested issues_filter blocks below for details.
839
- :param pulumi.Input[str] last_run: The last time notification was sent for this workflow.
840
- :param pulumi.Input[str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
841
- :param pulumi.Input[str] name: The name of the workflow.
842
- :param pulumi.Input[str] workflow_id: The id of the workflow.
840
+ :param pulumi.Input[builtins.str] last_run: The last time notification was sent for this workflow.
841
+ :param pulumi.Input[builtins.str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
842
+ :param pulumi.Input[builtins.str] name: The name of the workflow.
843
+ :param pulumi.Input[builtins.str] workflow_id: The id of the workflow.
843
844
  """
844
845
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
845
846
 
@@ -861,7 +862,7 @@ class Workflow(pulumi.CustomResource):
861
862
 
862
863
  @property
863
864
  @pulumi.getter(name="accountId")
864
- def account_id(self) -> pulumi.Output[str]:
865
+ def account_id(self) -> pulumi.Output[builtins.str]:
865
866
  """
866
867
  Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
867
868
  """
@@ -878,7 +879,7 @@ class Workflow(pulumi.CustomResource):
878
879
  @property
879
880
  @pulumi.getter(name="destinationsEnabled")
880
881
  @_utilities.deprecated("""Please use 'enabled' instead""")
881
- def destinations_enabled(self) -> pulumi.Output[Optional[bool]]:
882
+ def destinations_enabled(self) -> pulumi.Output[Optional[builtins.bool]]:
882
883
  """
883
884
  **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
884
885
  these two are different flags, but they are functionally identical. Defaults to true.
@@ -887,7 +888,7 @@ class Workflow(pulumi.CustomResource):
887
888
 
888
889
  @property
889
890
  @pulumi.getter
890
- def enabled(self) -> pulumi.Output[Optional[bool]]:
891
+ def enabled(self) -> pulumi.Output[Optional[builtins.bool]]:
891
892
  """
892
893
  Whether workflow is enabled. Defaults to true.
893
894
  """
@@ -903,7 +904,7 @@ class Workflow(pulumi.CustomResource):
903
904
 
904
905
  @property
905
906
  @pulumi.getter(name="enrichmentsEnabled")
906
- def enrichments_enabled(self) -> pulumi.Output[Optional[bool]]:
907
+ def enrichments_enabled(self) -> pulumi.Output[Optional[builtins.bool]]:
907
908
  """
908
909
  Whether enrichments are enabled. Defaults to true.
909
910
  """
@@ -911,7 +912,7 @@ class Workflow(pulumi.CustomResource):
911
912
 
912
913
  @property
913
914
  @pulumi.getter
914
- def guid(self) -> pulumi.Output[str]:
915
+ def guid(self) -> pulumi.Output[builtins.str]:
915
916
  """
916
917
  Workflow entity GUID
917
918
  """
@@ -927,7 +928,7 @@ class Workflow(pulumi.CustomResource):
927
928
 
928
929
  @property
929
930
  @pulumi.getter(name="lastRun")
930
- def last_run(self) -> pulumi.Output[str]:
931
+ def last_run(self) -> pulumi.Output[builtins.str]:
931
932
  """
932
933
  The last time notification was sent for this workflow.
933
934
  """
@@ -935,7 +936,7 @@ class Workflow(pulumi.CustomResource):
935
936
 
936
937
  @property
937
938
  @pulumi.getter(name="mutingRulesHandling")
938
- def muting_rules_handling(self) -> pulumi.Output[str]:
939
+ def muting_rules_handling(self) -> pulumi.Output[builtins.str]:
939
940
  """
940
941
  How to handle muted issues. See Muting Rules below for details.
941
942
  """
@@ -943,7 +944,7 @@ class Workflow(pulumi.CustomResource):
943
944
 
944
945
  @property
945
946
  @pulumi.getter
946
- def name(self) -> pulumi.Output[str]:
947
+ def name(self) -> pulumi.Output[builtins.str]:
947
948
  """
948
949
  The name of the workflow.
949
950
  """
@@ -951,7 +952,7 @@ class Workflow(pulumi.CustomResource):
951
952
 
952
953
  @property
953
954
  @pulumi.getter(name="workflowId")
954
- def workflow_id(self) -> pulumi.Output[str]:
955
+ def workflow_id(self) -> pulumi.Output[builtins.str]:
955
956
  """
956
957
  The id of the workflow.
957
958
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_newrelic
3
- Version: 5.45.0a1743574084
3
+ Version: 5.45.0a1744183332
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,90 @@
1
+ pulumi_newrelic/__init__.py,sha256=iQ260FiXECBVhO6vGhVlRpNzFnKab_Q33eYljjmdgI0,11551
2
+ pulumi_newrelic/_inputs.py,sha256=F_vpo6keM61Mw4vOfx_okWItS0ysH3P68YWRo53PMqI,839908
3
+ pulumi_newrelic/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
+ pulumi_newrelic/account_management.py,sha256=KM8peY_9pOsq_uH-KiCNX1hm7okLp1leYTtG0R3OpiA,9231
5
+ pulumi_newrelic/alert_channel.py,sha256=FkvQB5CDOJQOVLmECp26gyTXG-HNIUM2Iwxi2aFW2yA,22219
6
+ pulumi_newrelic/alert_condition.py,sha256=u-9dzv2C0h_F3LPcFoEI-RrkJ9sc1Jfwb0YhUdrAXuM,48299
7
+ pulumi_newrelic/alert_muting_rule.py,sha256=Qis6xTnapgF7XU_6hNm3OcE1V8yizldpVlT2EWY8TIg,23384
8
+ pulumi_newrelic/alert_policy.py,sha256=fC1vzXDi92jG0HhFIgswlAHDAz5aMg9THMJEKJKwxPM,26800
9
+ pulumi_newrelic/alert_policy_channel.py,sha256=cGMQJdFhIoftbGOy2YFoVR0CLkExpspDMbs-2V1eoFo,16637
10
+ pulumi_newrelic/api_access_key.py,sha256=OAuUG3HyuG6pp68WSiZE2fZkGqj8dHpgSHxT63OaYX4,23266
11
+ pulumi_newrelic/browser_application.py,sha256=yfdZZ5kBNflQHPJnvkD3IBFsSjX87T4xwiqUeOtFPQs,22051
12
+ pulumi_newrelic/data_partition_rule.py,sha256=ZFQ5giRt3wRhVjSXOwEyzBV3rQaorY2erzhnChLiLwQ,21442
13
+ pulumi_newrelic/entity_tags.py,sha256=PaCb0ttUr6tLfkH3o_K47V51BfgcbJy-NmfF4zllcrc,10433
14
+ pulumi_newrelic/events_to_metrics_rule.py,sha256=vu7DTM5sEjabr33sxx0AEuEgYkI1Gyhv93qlEdmxG-k,16877
15
+ pulumi_newrelic/get_account.py,sha256=sS8X37ehCiI5HXprSK9VN3ZRUhM930rndw06zxJAVIg,5565
16
+ pulumi_newrelic/get_alert_channel.py,sha256=HVhTYGNguYVldyWwh4d2uGKaABHyHpCNx1cnRVIncAs,6395
17
+ pulumi_newrelic/get_alert_policy.py,sha256=q88dJeFH4CTuZauTypiW_i3sopWsVZiAw7WGTugoUSc,9911
18
+ pulumi_newrelic/get_application.py,sha256=rP3X7wAl3EmzU-YJyrPVfOcH0AswPDIsnBl29EiVjhM,6037
19
+ pulumi_newrelic/get_authentication_domain.py,sha256=L5FBUFPyC12-WPXCL3rzPwcGGXSyu8a3J7SwD4WoRaY,4183
20
+ pulumi_newrelic/get_cloud_account.py,sha256=-7ZfVH4ymxHgGswVjTGpIRgpKy6zIUlsxMKVjRKTYIw,6154
21
+ pulumi_newrelic/get_entity.py,sha256=FkncpUdyeIOT4tWdW16nChCWkQ2AbQqWApPiuCr3rDs,14645
22
+ pulumi_newrelic/get_group.py,sha256=ty_eG3M2iCMpcEG7oUDV1z5zBhiPDr5sowb-zbJH310,8686
23
+ pulumi_newrelic/get_key_transaction.py,sha256=OAkpIenXD_a73HNXxEKg9VDH0P-9Iyv2rluBpMEwhKU,8494
24
+ pulumi_newrelic/get_notification_destination.py,sha256=f_9voUy8J-bWw71-lpsRKQ8rZUVG1Kj_k5wcbOAGevs,9624
25
+ pulumi_newrelic/get_obfuscation_expression.py,sha256=J7axRiaTPDcb5Ro0Cpr4_p4Tp9XhyNNgtcsu5XGduyg,5702
26
+ pulumi_newrelic/get_service_level_alert_helper.py,sha256=rln_D1NaqaeVM15gOEpHJsxg18oY5bYP6kUEalos4PU,21553
27
+ pulumi_newrelic/get_test_grok_pattern.py,sha256=owXrQEcr0RVXMomv_B4UZiH5XzgYxq2ROuE-77wTxxs,6548
28
+ pulumi_newrelic/get_user.py,sha256=QgtbjxuED8wzuCxFkNRck3Y2TOb0Oe7XPXi8cn4nUmo,8255
29
+ pulumi_newrelic/group.py,sha256=fQsEdGG-4rY8Q3ahTfYLiAaO-z4LHDHHTrQTH2dp_W4,15767
30
+ pulumi_newrelic/infra_alert_condition.py,sha256=XEo-k94O_4DuC7JCXxknyl-BJdWOqS6DiGSuo-rB898,60031
31
+ pulumi_newrelic/key_transaction.py,sha256=cJoSMAvUOX4LUR2K9IrqZgucDIZekFJftxVW_BVwmqs,23647
32
+ pulumi_newrelic/log_parsing_rule.py,sha256=LR9-lVtubqwmk0hknYHsvGXzHXTBuXk0mmha1hz0xCA,23669
33
+ pulumi_newrelic/monitor_downtime.py,sha256=yIi5ukF_j1v_xBGn4JJgEZyAiA3pc_Zxk0kcptt_Y6Y,41886
34
+ pulumi_newrelic/notification_channel.py,sha256=0pJJ5nFbYCnyX1YLCNrDX2XjXs5iva-QBgOgnL4hA0o,49877
35
+ pulumi_newrelic/notification_destination.py,sha256=7BGL0jldOXK_Wu-8imfpXvUMmAkqjKSn5hGAMLrcyGA,40009
36
+ pulumi_newrelic/nrql_alert_condition.py,sha256=F7n2KNIJbl4guHlnx4ta4AKWcNA08xlgYte8db4RNb0,117370
37
+ pulumi_newrelic/nrql_drop_rule.py,sha256=MDcX6ntGPXuRUTXA6tvN0Lw1PALCH9LJHlIqKPXfzNc,18295
38
+ pulumi_newrelic/obfuscation_expression.py,sha256=6BpTtPxP_egunB3GbB3lQoIswvniFeYEU7r9BHXjaXw,13037
39
+ pulumi_newrelic/obfuscation_rule.py,sha256=KkmAoZcy-s6nVE5Ye_g_pO3tjrHHdAPsUdpwcobNjpc,18689
40
+ pulumi_newrelic/one_dashboard.py,sha256=73i-lZWxt4IUK8zL31Mu-CfQUsbVajTM_409ZKjy-T8,21500
41
+ pulumi_newrelic/one_dashboard_json.py,sha256=SyY-wAgSxL1F0pcdW3QxVwzQjFTzn0_WNHuibn_xz6k,13253
42
+ pulumi_newrelic/one_dashboard_raw.py,sha256=wclScb_x306vkpe1x2Je0nT4jsQmAx9L6atfkAKyTT0,24314
43
+ pulumi_newrelic/outputs.py,sha256=IpwhOLBwcfvRHycFTaaoLneQcTWPWRwkeJ-HhvvJly4,605102
44
+ pulumi_newrelic/provider.py,sha256=SggmvrccVnHfa8ylypIBe3UTufSg7xF3pJ5pGzcz0OQ,19220
45
+ pulumi_newrelic/pulumi-plugin.json,sha256=LYfRkuvoOhG5cWLXQH1QTlDnXmOUR18Wd3qPSYoFq00,85
46
+ pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
+ pulumi_newrelic/service_level.py,sha256=atYukzatFuzkCsQ1SzFUsZuC2K7D9bL4BzKPqPe9_v8,29500
48
+ pulumi_newrelic/user.py,sha256=vKkE7ZrvyojitScis3dGTjAG027KwOAX9D0qdBFK5Vk,19636
49
+ pulumi_newrelic/workflow.py,sha256=wlf-SsMtIccKBVnsFlrlV1ApJaT3DKukwSA0EWRaKhI,43748
50
+ pulumi_newrelic/cloud/__init__.py,sha256=WqPUlS786WO8ZlclloutPE6LeALq51OLQtGzh46GIpo,608
51
+ pulumi_newrelic/cloud/_inputs.py,sha256=kaTINcB3mBDz1QJQqZEatLBN4UeawHYJ_6UI16IdOy4,397718
52
+ pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=4IZjRu--NJPTAeyEW4Cj7AmawTFsLgQDL4pjIRkOeSU,65681
53
+ pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=_HaIj4ZoBtD9uT5uJSbqwktOSBRjL67KINKLycJQVDQ,19272
54
+ pulumi_newrelic/cloud/aws_integrations.py,sha256=8SVKMmkl8T_BNKwPbpqTjEpHAkn9UYHTCBokdXWfsNY,128836
55
+ pulumi_newrelic/cloud/aws_link_account.py,sha256=4u5mUnmI6RTiMlSOePEenYp8NwIyJ9v8GkLu3XWZgG4,16189
56
+ pulumi_newrelic/cloud/azure_integrations.py,sha256=O4oG44NeSmeieTW2MN3-Eu_Y_gcCaBoLUwkNTy3wQCE,114459
57
+ pulumi_newrelic/cloud/azure_link_account.py,sha256=grGsnux9VmMn8HFqYQnlxB51QRgb2Pc9JEzY8dl2wDE,19855
58
+ pulumi_newrelic/cloud/gcp_integrations.py,sha256=K0kK7ywFQ-3NevRVfGas9xYLPWYm7f9a9dSTP8qoLZY,86237
59
+ pulumi_newrelic/cloud/gcp_link_account.py,sha256=ECDSakYPAc5MWVbqxW_x0ACxP5NsxBoHISkeZZCjfqU,13001
60
+ pulumi_newrelic/cloud/outputs.py,sha256=TH45MoKGgoe_yzOUZkz_2q4l1t3qIba8ssXMV3GVTtg,325935
61
+ pulumi_newrelic/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
62
+ pulumi_newrelic/config/__init__.pyi,sha256=wWmVYUDEW00iW8bPBQYAnVLtI-4pLU3eoTeYKOulaOo,1035
63
+ pulumi_newrelic/config/vars.py,sha256=9FbxBnUrgPJJwVDdcAKc56fJE0YEWnzSdF5ViJvAeq8,2292
64
+ pulumi_newrelic/insights/__init__.py,sha256=wY_absI1XMbMsKYhsALGBQ4WoFFV2hiWC5G-ierwjyo,351
65
+ pulumi_newrelic/insights/_inputs.py,sha256=ijJd49jgCIEXrND66K4ubts49iEMROtg8Z3q1VKfdRs,6059
66
+ pulumi_newrelic/insights/event.py,sha256=oIbhWFo3BwCHXgANm5Dp39_VzVSPJ8QMHG4MZvbvgSQ,10055
67
+ pulumi_newrelic/insights/outputs.py,sha256=WE73on6x3K79PrcsA-TP07WxOVPxWr2ouoaks-x0THU,3660
68
+ pulumi_newrelic/plugins/__init__.py,sha256=MFsNi9WT-gf23niN5oePFRyx-6iS-vKvPGD1bUAqqbU,390
69
+ pulumi_newrelic/plugins/_inputs.py,sha256=msqtI1nf98A6sJUurgmDwDopORXTuLnvJ5PcogzaKXw,38089
70
+ pulumi_newrelic/plugins/application_settings.py,sha256=sjSOgyvsWO2cvgWrgV_ddKK9fGCO_76UD-TLm3tTHtA,37809
71
+ pulumi_newrelic/plugins/outputs.py,sha256=PuklJ6fAxMpBtJdKnkLmSY04kH3b_9M1sp9kK9v2MR0,28876
72
+ pulumi_newrelic/plugins/workload.py,sha256=BpHoCQw6NSy3HAaIHV-x43sjyuo_kEhGp4rJfHElRek,42233
73
+ pulumi_newrelic/synthetics/__init__.py,sha256=UeQRfGDlKrXvgqLw-6IxLZyYzeCqH_b86qSrFXihJO0,696
74
+ pulumi_newrelic/synthetics/_inputs.py,sha256=Qdldup5YSWB3oghUonYgi3oo9kZ6EwXD1e2WkT3n1T0,19641
75
+ pulumi_newrelic/synthetics/alert_condition.py,sha256=GP14RaQ35FJzepCGYawsAfkX26L4oFUpKEqsX8EAOgI,22468
76
+ pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=GVBEcyhfCNx6XVst-f-2LRJR3w9xdzNXBrfjCMggAWU,38744
77
+ pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=D_j59fC1ADjM-B1aVKSO68UCCCNHxAk8Gx2XmBlOVZ0,40883
78
+ pulumi_newrelic/synthetics/get_private_location.py,sha256=2pel2R92y7oqINOhir-arDw9VgtxAmEWqHyV-9dI-zY,6639
79
+ pulumi_newrelic/synthetics/get_secure_credential.py,sha256=NodFereL1rvsGBQzpK3yHNrugIzdy3iERWTi7nyKgnE,6438
80
+ pulumi_newrelic/synthetics/monitor.py,sha256=1gLkI7J0b2Kq9g8hTwpFfsRkl3VnBKGcueh9u0_F6dI,77891
81
+ pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=n_iTb6OieWp_5N7YzgomuFjBKJtXp938qyeMScvNLPU,35669
82
+ pulumi_newrelic/synthetics/outputs.py,sha256=830xXyikEURoCzFGzPhN3P24STqD6j-bHzqapGexWYE,11974
83
+ pulumi_newrelic/synthetics/private_location.py,sha256=dsC0aFKDrcTh73BhTUht5MfSJddFvfQFDIHUApgiBoA,18245
84
+ pulumi_newrelic/synthetics/script_monitor.py,sha256=iWgXoRSWniobmtpNE6h5X5gvCBKGqG-sKebUW2fqcKk,68342
85
+ pulumi_newrelic/synthetics/secure_credential.py,sha256=eJT70RioesqYFZpp_mGZI1kGq86aGKrYVQ2ruxjyclU,16422
86
+ pulumi_newrelic/synthetics/step_monitor.py,sha256=bDXR_1RS13VBZ1pR5ywtAOqDwAgLURHnUkHf4MSoz7I,50608
87
+ pulumi_newrelic-5.45.0a1744183332.dist-info/METADATA,sha256=w6adBJTC-LllJ4VNPyGmL5m3rcSGU8uYuOhSHtG7Lbs,3963
88
+ pulumi_newrelic-5.45.0a1744183332.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
89
+ pulumi_newrelic-5.45.0a1744183332.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
+ pulumi_newrelic-5.45.0a1744183332.dist-info/RECORD,,