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
@@ -31,18 +32,18 @@ __all__ = [
31
32
  @pulumi.output_type
32
33
  class BrokenLinksMonitorTag(dict):
33
34
  def __init__(__self__, *,
34
- key: str,
35
- values: Sequence[str]):
35
+ key: builtins.str,
36
+ values: Sequence[builtins.str]):
36
37
  """
37
- :param str key: Name of the tag key.
38
- :param Sequence[str] values: Values associated with the tag key.
38
+ :param builtins.str key: Name of the tag key.
39
+ :param Sequence[builtins.str] values: Values associated with the tag key.
39
40
  """
40
41
  pulumi.set(__self__, "key", key)
41
42
  pulumi.set(__self__, "values", values)
42
43
 
43
44
  @property
44
45
  @pulumi.getter
45
- def key(self) -> str:
46
+ def key(self) -> builtins.str:
46
47
  """
47
48
  Name of the tag key.
48
49
  """
@@ -50,7 +51,7 @@ class BrokenLinksMonitorTag(dict):
50
51
 
51
52
  @property
52
53
  @pulumi.getter
53
- def values(self) -> Sequence[str]:
54
+ def values(self) -> Sequence[builtins.str]:
54
55
  """
55
56
  Values associated with the tag key.
56
57
  """
@@ -60,18 +61,18 @@ class BrokenLinksMonitorTag(dict):
60
61
  @pulumi.output_type
61
62
  class CertCheckMonitorTag(dict):
62
63
  def __init__(__self__, *,
63
- key: str,
64
- values: Sequence[str]):
64
+ key: builtins.str,
65
+ values: Sequence[builtins.str]):
65
66
  """
66
- :param str key: Name of the tag key.
67
- :param Sequence[str] values: Values associated with the tag key.
67
+ :param builtins.str key: Name of the tag key.
68
+ :param Sequence[builtins.str] values: Values associated with the tag key.
68
69
  """
69
70
  pulumi.set(__self__, "key", key)
70
71
  pulumi.set(__self__, "values", values)
71
72
 
72
73
  @property
73
74
  @pulumi.getter
74
- def key(self) -> str:
75
+ def key(self) -> builtins.str:
75
76
  """
76
77
  Name of the tag key.
77
78
  """
@@ -79,7 +80,7 @@ class CertCheckMonitorTag(dict):
79
80
 
80
81
  @property
81
82
  @pulumi.getter
82
- def values(self) -> Sequence[str]:
83
+ def values(self) -> Sequence[builtins.str]:
83
84
  """
84
85
  Values associated with the tag key.
85
86
  """
@@ -89,11 +90,11 @@ class CertCheckMonitorTag(dict):
89
90
  @pulumi.output_type
90
91
  class MonitorCustomHeader(dict):
91
92
  def __init__(__self__, *,
92
- name: Optional[str] = None,
93
- value: Optional[str] = None):
93
+ name: Optional[builtins.str] = None,
94
+ value: Optional[builtins.str] = None):
94
95
  """
95
- :param str name: Header name.
96
- :param str value: Header Value.
96
+ :param builtins.str name: Header name.
97
+ :param builtins.str value: Header Value.
97
98
  """
98
99
  if name is not None:
99
100
  pulumi.set(__self__, "name", name)
@@ -102,7 +103,7 @@ class MonitorCustomHeader(dict):
102
103
 
103
104
  @property
104
105
  @pulumi.getter
105
- def name(self) -> Optional[str]:
106
+ def name(self) -> Optional[builtins.str]:
106
107
  """
107
108
  Header name.
108
109
  """
@@ -110,7 +111,7 @@ class MonitorCustomHeader(dict):
110
111
 
111
112
  @property
112
113
  @pulumi.getter
113
- def value(self) -> Optional[str]:
114
+ def value(self) -> Optional[builtins.str]:
114
115
  """
115
116
  Header Value.
116
117
  """
@@ -120,18 +121,18 @@ class MonitorCustomHeader(dict):
120
121
  @pulumi.output_type
121
122
  class MonitorTag(dict):
122
123
  def __init__(__self__, *,
123
- key: str,
124
- values: Sequence[str]):
124
+ key: builtins.str,
125
+ values: Sequence[builtins.str]):
125
126
  """
126
- :param str key: Name of the tag key.
127
- :param Sequence[str] values: Values associated with the tag key.
127
+ :param builtins.str key: Name of the tag key.
128
+ :param Sequence[builtins.str] values: Values associated with the tag key.
128
129
  """
129
130
  pulumi.set(__self__, "key", key)
130
131
  pulumi.set(__self__, "values", values)
131
132
 
132
133
  @property
133
134
  @pulumi.getter
134
- def key(self) -> str:
135
+ def key(self) -> builtins.str:
135
136
  """
136
137
  Name of the tag key.
137
138
  """
@@ -139,7 +140,7 @@ class MonitorTag(dict):
139
140
 
140
141
  @property
141
142
  @pulumi.getter
142
- def values(self) -> Sequence[str]:
143
+ def values(self) -> Sequence[builtins.str]:
143
144
  """
144
145
  Values associated with the tag key.
145
146
  """
@@ -149,15 +150,15 @@ class MonitorTag(dict):
149
150
  @pulumi.output_type
150
151
  class MultiLocationAlertConditionCritical(dict):
151
152
  def __init__(__self__, *,
152
- threshold: int):
153
+ threshold: builtins.int):
153
154
  """
154
- :param int threshold: The minimum number of monitor locations that must be concurrently failing before an incident is opened.
155
+ :param builtins.int threshold: The minimum number of monitor locations that must be concurrently failing before an incident is opened.
155
156
  """
156
157
  pulumi.set(__self__, "threshold", threshold)
157
158
 
158
159
  @property
159
160
  @pulumi.getter
160
- def threshold(self) -> int:
161
+ def threshold(self) -> builtins.int:
161
162
  """
162
163
  The minimum number of monitor locations that must be concurrently failing before an incident is opened.
163
164
  """
@@ -167,15 +168,15 @@ class MultiLocationAlertConditionCritical(dict):
167
168
  @pulumi.output_type
168
169
  class MultiLocationAlertConditionWarning(dict):
169
170
  def __init__(__self__, *,
170
- threshold: int):
171
+ threshold: builtins.int):
171
172
  """
172
- :param int threshold: The minimum number of monitor locations that must be concurrently failing before an incident is opened.
173
+ :param builtins.int threshold: The minimum number of monitor locations that must be concurrently failing before an incident is opened.
173
174
  """
174
175
  pulumi.set(__self__, "threshold", threshold)
175
176
 
176
177
  @property
177
178
  @pulumi.getter
178
- def threshold(self) -> int:
179
+ def threshold(self) -> builtins.int:
179
180
  """
180
181
  The minimum number of monitor locations that must be concurrently failing before an incident is opened.
181
182
  """
@@ -202,11 +203,11 @@ class ScriptMonitorLocationPrivate(dict):
202
203
  return super().get(key, default)
203
204
 
204
205
  def __init__(__self__, *,
205
- guid: str,
206
- vse_password: Optional[str] = None):
206
+ guid: builtins.str,
207
+ vse_password: Optional[builtins.str] = None):
207
208
  """
208
- :param str guid: The unique identifier for the Synthetics private location in New Relic.
209
- :param str vse_password: The location's Verified Script Execution password, Only necessary if Verified Script Execution is enabled for the location.
209
+ :param builtins.str guid: The unique identifier for the Synthetics private location in New Relic.
210
+ :param builtins.str vse_password: The location's Verified Script Execution password, Only necessary if Verified Script Execution is enabled for the location.
210
211
  """
211
212
  pulumi.set(__self__, "guid", guid)
212
213
  if vse_password is not None:
@@ -214,7 +215,7 @@ class ScriptMonitorLocationPrivate(dict):
214
215
 
215
216
  @property
216
217
  @pulumi.getter
217
- def guid(self) -> str:
218
+ def guid(self) -> builtins.str:
218
219
  """
219
220
  The unique identifier for the Synthetics private location in New Relic.
220
221
  """
@@ -222,7 +223,7 @@ class ScriptMonitorLocationPrivate(dict):
222
223
 
223
224
  @property
224
225
  @pulumi.getter(name="vsePassword")
225
- def vse_password(self) -> Optional[str]:
226
+ def vse_password(self) -> Optional[builtins.str]:
226
227
  """
227
228
  The location's Verified Script Execution password, Only necessary if Verified Script Execution is enabled for the location.
228
229
  """
@@ -232,18 +233,18 @@ class ScriptMonitorLocationPrivate(dict):
232
233
  @pulumi.output_type
233
234
  class ScriptMonitorTag(dict):
234
235
  def __init__(__self__, *,
235
- key: str,
236
- values: Sequence[str]):
236
+ key: builtins.str,
237
+ values: Sequence[builtins.str]):
237
238
  """
238
- :param str key: Name of the tag key.
239
- :param Sequence[str] values: Values associated with the tag key.
239
+ :param builtins.str key: Name of the tag key.
240
+ :param Sequence[builtins.str] values: Values associated with the tag key.
240
241
  """
241
242
  pulumi.set(__self__, "key", key)
242
243
  pulumi.set(__self__, "values", values)
243
244
 
244
245
  @property
245
246
  @pulumi.getter
246
- def key(self) -> str:
247
+ def key(self) -> builtins.str:
247
248
  """
248
249
  Name of the tag key.
249
250
  """
@@ -251,7 +252,7 @@ class ScriptMonitorTag(dict):
251
252
 
252
253
  @property
253
254
  @pulumi.getter
254
- def values(self) -> Sequence[str]:
255
+ def values(self) -> Sequence[builtins.str]:
255
256
  """
256
257
  Values associated with the tag key.
257
258
  """
@@ -278,11 +279,11 @@ class StepMonitorLocationPrivate(dict):
278
279
  return super().get(key, default)
279
280
 
280
281
  def __init__(__self__, *,
281
- guid: str,
282
- vse_password: Optional[str] = None):
282
+ guid: builtins.str,
283
+ vse_password: Optional[builtins.str] = None):
283
284
  """
284
- :param str guid: The unique identifier for the Synthetics private location in New Relic.
285
- :param str vse_password: The location's Verified Script Execution password, only necessary if Verified Script Execution is enabled for the location.
285
+ :param builtins.str guid: The unique identifier for the Synthetics private location in New Relic.
286
+ :param builtins.str vse_password: The location's Verified Script Execution password, only necessary if Verified Script Execution is enabled for the location.
286
287
  """
287
288
  pulumi.set(__self__, "guid", guid)
288
289
  if vse_password is not None:
@@ -290,7 +291,7 @@ class StepMonitorLocationPrivate(dict):
290
291
 
291
292
  @property
292
293
  @pulumi.getter
293
- def guid(self) -> str:
294
+ def guid(self) -> builtins.str:
294
295
  """
295
296
  The unique identifier for the Synthetics private location in New Relic.
296
297
  """
@@ -298,7 +299,7 @@ class StepMonitorLocationPrivate(dict):
298
299
 
299
300
  @property
300
301
  @pulumi.getter(name="vsePassword")
301
- def vse_password(self) -> Optional[str]:
302
+ def vse_password(self) -> Optional[builtins.str]:
302
303
  """
303
304
  The location's Verified Script Execution password, only necessary if Verified Script Execution is enabled for the location.
304
305
  """
@@ -308,13 +309,13 @@ class StepMonitorLocationPrivate(dict):
308
309
  @pulumi.output_type
309
310
  class StepMonitorStep(dict):
310
311
  def __init__(__self__, *,
311
- ordinal: int,
312
- type: str,
313
- values: Optional[Sequence[str]] = None):
312
+ ordinal: builtins.int,
313
+ type: builtins.str,
314
+ values: Optional[Sequence[builtins.str]] = None):
314
315
  """
315
- :param int ordinal: The position of the step within the script ranging from 0-100.
316
- :param str type: Name of the tag key. Valid values are `ASSERT_ELEMENT`, `ASSERT_MODAL`, `ASSERT_TEXT`, `ASSERT_TITLE`, `CLICK_ELEMENT`, `DISMISS_MODAL`, `DOUBLE_CLICK_ELEMENT`, `HOVER_ELEMENT`, `NAVIGATE`, `SECURE_TEXT_ENTRY`, `SELECT_ELEMENT`, `TEXT_ENTRY`.
317
- :param Sequence[str] values: The metadata values related to the step.
316
+ :param builtins.int ordinal: The position of the step within the script ranging from 0-100.
317
+ :param builtins.str type: Name of the tag key. Valid values are `ASSERT_ELEMENT`, `ASSERT_MODAL`, `ASSERT_TEXT`, `ASSERT_TITLE`, `CLICK_ELEMENT`, `DISMISS_MODAL`, `DOUBLE_CLICK_ELEMENT`, `HOVER_ELEMENT`, `NAVIGATE`, `SECURE_TEXT_ENTRY`, `SELECT_ELEMENT`, `TEXT_ENTRY`.
318
+ :param Sequence[builtins.str] values: The metadata values related to the step.
318
319
  """
319
320
  pulumi.set(__self__, "ordinal", ordinal)
320
321
  pulumi.set(__self__, "type", type)
@@ -323,7 +324,7 @@ class StepMonitorStep(dict):
323
324
 
324
325
  @property
325
326
  @pulumi.getter
326
- def ordinal(self) -> int:
327
+ def ordinal(self) -> builtins.int:
327
328
  """
328
329
  The position of the step within the script ranging from 0-100.
329
330
  """
@@ -331,7 +332,7 @@ class StepMonitorStep(dict):
331
332
 
332
333
  @property
333
334
  @pulumi.getter
334
- def type(self) -> str:
335
+ def type(self) -> builtins.str:
335
336
  """
336
337
  Name of the tag key. Valid values are `ASSERT_ELEMENT`, `ASSERT_MODAL`, `ASSERT_TEXT`, `ASSERT_TITLE`, `CLICK_ELEMENT`, `DISMISS_MODAL`, `DOUBLE_CLICK_ELEMENT`, `HOVER_ELEMENT`, `NAVIGATE`, `SECURE_TEXT_ENTRY`, `SELECT_ELEMENT`, `TEXT_ENTRY`.
337
338
  """
@@ -339,7 +340,7 @@ class StepMonitorStep(dict):
339
340
 
340
341
  @property
341
342
  @pulumi.getter
342
- def values(self) -> Optional[Sequence[str]]:
343
+ def values(self) -> Optional[Sequence[builtins.str]]:
343
344
  """
344
345
  The metadata values related to the step.
345
346
  """
@@ -349,18 +350,18 @@ class StepMonitorStep(dict):
349
350
  @pulumi.output_type
350
351
  class StepMonitorTag(dict):
351
352
  def __init__(__self__, *,
352
- key: str,
353
- values: Sequence[str]):
353
+ key: builtins.str,
354
+ values: Sequence[builtins.str]):
354
355
  """
355
- :param str key: Name of the tag key.
356
- :param Sequence[str] values: Values associated with the tag key.
356
+ :param builtins.str key: Name of the tag key.
357
+ :param Sequence[builtins.str] values: Values associated with the tag key.
357
358
  """
358
359
  pulumi.set(__self__, "key", key)
359
360
  pulumi.set(__self__, "values", values)
360
361
 
361
362
  @property
362
363
  @pulumi.getter
363
- def key(self) -> str:
364
+ def key(self) -> builtins.str:
364
365
  """
365
366
  Name of the tag key.
366
367
  """
@@ -368,7 +369,7 @@ class StepMonitorTag(dict):
368
369
 
369
370
  @property
370
371
  @pulumi.getter
371
- def values(self) -> Sequence[str]:
372
+ def values(self) -> Sequence[builtins.str]:
372
373
  """
373
374
  Values associated with the tag key.
374
375
  """