pulumi-newrelic 5.49.0a1753337775__py3-none-any.whl → 5.49.0a1753510512__py3-none-any.whl

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

Potentially problematic release.


This version of pulumi-newrelic might be problematic. Click here for more details.

Files changed (89) hide show
  1. pulumi_newrelic/__init__.py +1 -1
  2. pulumi_newrelic/_inputs.py +3759 -3760
  3. pulumi_newrelic/account_management.py +35 -36
  4. pulumi_newrelic/alert_channel.py +55 -56
  5. pulumi_newrelic/alert_condition.py +217 -218
  6. pulumi_newrelic/alert_muting_rule.py +92 -93
  7. pulumi_newrelic/alert_policy.py +69 -70
  8. pulumi_newrelic/alert_policy_channel.py +52 -53
  9. pulumi_newrelic/api_access_key.py +112 -113
  10. pulumi_newrelic/browser_application.py +113 -114
  11. pulumi_newrelic/cloud/__init__.py +1 -1
  12. pulumi_newrelic/cloud/_inputs.py +2129 -2130
  13. pulumi_newrelic/cloud/aws_govcloud_integrations.py +95 -96
  14. pulumi_newrelic/cloud/aws_govcloud_link_account.py +69 -70
  15. pulumi_newrelic/cloud/aws_integrations.py +194 -195
  16. pulumi_newrelic/cloud/aws_link_account.py +69 -70
  17. pulumi_newrelic/cloud/azure_integrations.py +131 -132
  18. pulumi_newrelic/cloud/azure_link_account.py +103 -104
  19. pulumi_newrelic/cloud/gcp_integrations.py +113 -114
  20. pulumi_newrelic/cloud/gcp_link_account.py +52 -53
  21. pulumi_newrelic/cloud/outputs.py +1417 -1418
  22. pulumi_newrelic/config/__init__.py +1 -1
  23. pulumi_newrelic/config/__init__.pyi +1 -2
  24. pulumi_newrelic/config/vars.py +14 -15
  25. pulumi_newrelic/data_partition_rule.py +112 -113
  26. pulumi_newrelic/entity_tags.py +21 -22
  27. pulumi_newrelic/events_to_metrics_rule.py +95 -96
  28. pulumi_newrelic/get_account.py +21 -22
  29. pulumi_newrelic/get_alert_channel.py +20 -21
  30. pulumi_newrelic/get_alert_policy.py +25 -26
  31. pulumi_newrelic/get_application.py +13 -14
  32. pulumi_newrelic/get_authentication_domain.py +9 -10
  33. pulumi_newrelic/get_cloud_account.py +21 -22
  34. pulumi_newrelic/get_entity.py +52 -53
  35. pulumi_newrelic/get_group.py +17 -18
  36. pulumi_newrelic/get_key_transaction.py +25 -26
  37. pulumi_newrelic/get_notification_destination.py +29 -30
  38. pulumi_newrelic/get_obfuscation_expression.py +15 -16
  39. pulumi_newrelic/get_service_level_alert_helper.py +53 -54
  40. pulumi_newrelic/get_test_grok_pattern.py +22 -23
  41. pulumi_newrelic/get_user.py +21 -22
  42. pulumi_newrelic/group.py +52 -53
  43. pulumi_newrelic/infra_alert_condition.py +255 -256
  44. pulumi_newrelic/insights/__init__.py +1 -1
  45. pulumi_newrelic/insights/_inputs.py +32 -33
  46. pulumi_newrelic/insights/event.py +4 -5
  47. pulumi_newrelic/insights/outputs.py +22 -23
  48. pulumi_newrelic/key_transaction.py +104 -105
  49. pulumi_newrelic/log_parsing_rule.py +146 -147
  50. pulumi_newrelic/monitor_downtime.py +143 -144
  51. pulumi_newrelic/notification_channel.py +115 -116
  52. pulumi_newrelic/notification_destination.py +111 -112
  53. pulumi_newrelic/nrql_alert_condition.py +430 -431
  54. pulumi_newrelic/nrql_drop_rule.py +78 -79
  55. pulumi_newrelic/obfuscation_expression.py +69 -70
  56. pulumi_newrelic/obfuscation_rule.py +89 -90
  57. pulumi_newrelic/one_dashboard.py +93 -94
  58. pulumi_newrelic/one_dashboard_json.py +62 -63
  59. pulumi_newrelic/one_dashboard_raw.py +90 -91
  60. pulumi_newrelic/outputs.py +2646 -2647
  61. pulumi_newrelic/plugins/__init__.py +1 -1
  62. pulumi_newrelic/plugins/_inputs.py +158 -159
  63. pulumi_newrelic/plugins/application_settings.py +167 -168
  64. pulumi_newrelic/plugins/outputs.py +108 -109
  65. pulumi_newrelic/plugins/workload.py +131 -132
  66. pulumi_newrelic/provider.py +106 -107
  67. pulumi_newrelic/pulumi-plugin.json +1 -1
  68. pulumi_newrelic/service_level.py +76 -77
  69. pulumi_newrelic/synthetics/__init__.py +1 -1
  70. pulumi_newrelic/synthetics/_inputs.py +127 -128
  71. pulumi_newrelic/synthetics/alert_condition.py +95 -96
  72. pulumi_newrelic/synthetics/broken_links_monitor.py +197 -198
  73. pulumi_newrelic/synthetics/cert_check_monitor.py +205 -206
  74. pulumi_newrelic/synthetics/get_private_location.py +21 -22
  75. pulumi_newrelic/synthetics/get_secure_credential.py +19 -20
  76. pulumi_newrelic/synthetics/monitor.py +378 -379
  77. pulumi_newrelic/synthetics/multi_location_alert_condition.py +118 -119
  78. pulumi_newrelic/synthetics/outputs.py +85 -86
  79. pulumi_newrelic/synthetics/private_location.py +105 -106
  80. pulumi_newrelic/synthetics/script_monitor.py +302 -303
  81. pulumi_newrelic/synthetics/secure_credential.py +86 -87
  82. pulumi_newrelic/synthetics/step_monitor.py +220 -221
  83. pulumi_newrelic/user.py +69 -70
  84. pulumi_newrelic/workflow.py +139 -140
  85. {pulumi_newrelic-5.49.0a1753337775.dist-info → pulumi_newrelic-5.49.0a1753510512.dist-info}/METADATA +1 -1
  86. pulumi_newrelic-5.49.0a1753510512.dist-info/RECORD +90 -0
  87. pulumi_newrelic-5.49.0a1753337775.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.49.0a1753337775.dist-info → pulumi_newrelic-5.49.0a1753510512.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.49.0a1753337775.dist-info → pulumi_newrelic-5.49.0a1753510512.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -32,26 +31,26 @@ __all__ = [
32
31
  @pulumi.output_type
33
32
  class BrokenLinksMonitorTag(dict):
34
33
  def __init__(__self__, *,
35
- key: builtins.str,
36
- values: Sequence[builtins.str]):
34
+ key: _builtins.str,
35
+ values: Sequence[_builtins.str]):
37
36
  """
38
- :param builtins.str key: Name of the tag key.
39
- :param Sequence[builtins.str] values: Values associated with the tag key.
37
+ :param _builtins.str key: Name of the tag key.
38
+ :param Sequence[_builtins.str] values: Values associated with the tag key.
40
39
  """
41
40
  pulumi.set(__self__, "key", key)
42
41
  pulumi.set(__self__, "values", values)
43
42
 
44
- @property
43
+ @_builtins.property
45
44
  @pulumi.getter
46
- def key(self) -> builtins.str:
45
+ def key(self) -> _builtins.str:
47
46
  """
48
47
  Name of the tag key.
49
48
  """
50
49
  return pulumi.get(self, "key")
51
50
 
52
- @property
51
+ @_builtins.property
53
52
  @pulumi.getter
54
- def values(self) -> Sequence[builtins.str]:
53
+ def values(self) -> Sequence[_builtins.str]:
55
54
  """
56
55
  Values associated with the tag key.
57
56
  """
@@ -61,26 +60,26 @@ class BrokenLinksMonitorTag(dict):
61
60
  @pulumi.output_type
62
61
  class CertCheckMonitorTag(dict):
63
62
  def __init__(__self__, *,
64
- key: builtins.str,
65
- values: Sequence[builtins.str]):
63
+ key: _builtins.str,
64
+ values: Sequence[_builtins.str]):
66
65
  """
67
- :param builtins.str key: Name of the tag key.
68
- :param Sequence[builtins.str] values: Values associated with the tag key.
66
+ :param _builtins.str key: Name of the tag key.
67
+ :param Sequence[_builtins.str] values: Values associated with the tag key.
69
68
  """
70
69
  pulumi.set(__self__, "key", key)
71
70
  pulumi.set(__self__, "values", values)
72
71
 
73
- @property
72
+ @_builtins.property
74
73
  @pulumi.getter
75
- def key(self) -> builtins.str:
74
+ def key(self) -> _builtins.str:
76
75
  """
77
76
  Name of the tag key.
78
77
  """
79
78
  return pulumi.get(self, "key")
80
79
 
81
- @property
80
+ @_builtins.property
82
81
  @pulumi.getter
83
- def values(self) -> Sequence[builtins.str]:
82
+ def values(self) -> Sequence[_builtins.str]:
84
83
  """
85
84
  Values associated with the tag key.
86
85
  """
@@ -90,28 +89,28 @@ class CertCheckMonitorTag(dict):
90
89
  @pulumi.output_type
91
90
  class MonitorCustomHeader(dict):
92
91
  def __init__(__self__, *,
93
- name: Optional[builtins.str] = None,
94
- value: Optional[builtins.str] = None):
92
+ name: Optional[_builtins.str] = None,
93
+ value: Optional[_builtins.str] = None):
95
94
  """
96
- :param builtins.str name: Header name.
97
- :param builtins.str value: Header Value.
95
+ :param _builtins.str name: Header name.
96
+ :param _builtins.str value: Header Value.
98
97
  """
99
98
  if name is not None:
100
99
  pulumi.set(__self__, "name", name)
101
100
  if value is not None:
102
101
  pulumi.set(__self__, "value", value)
103
102
 
104
- @property
103
+ @_builtins.property
105
104
  @pulumi.getter
106
- def name(self) -> Optional[builtins.str]:
105
+ def name(self) -> Optional[_builtins.str]:
107
106
  """
108
107
  Header name.
109
108
  """
110
109
  return pulumi.get(self, "name")
111
110
 
112
- @property
111
+ @_builtins.property
113
112
  @pulumi.getter
114
- def value(self) -> Optional[builtins.str]:
113
+ def value(self) -> Optional[_builtins.str]:
115
114
  """
116
115
  Header Value.
117
116
  """
@@ -121,26 +120,26 @@ class MonitorCustomHeader(dict):
121
120
  @pulumi.output_type
122
121
  class MonitorTag(dict):
123
122
  def __init__(__self__, *,
124
- key: builtins.str,
125
- values: Sequence[builtins.str]):
123
+ key: _builtins.str,
124
+ values: Sequence[_builtins.str]):
126
125
  """
127
- :param builtins.str key: Name of the tag key.
128
- :param Sequence[builtins.str] values: Values associated with the tag key.
126
+ :param _builtins.str key: Name of the tag key.
127
+ :param Sequence[_builtins.str] values: Values associated with the tag key.
129
128
  """
130
129
  pulumi.set(__self__, "key", key)
131
130
  pulumi.set(__self__, "values", values)
132
131
 
133
- @property
132
+ @_builtins.property
134
133
  @pulumi.getter
135
- def key(self) -> builtins.str:
134
+ def key(self) -> _builtins.str:
136
135
  """
137
136
  Name of the tag key.
138
137
  """
139
138
  return pulumi.get(self, "key")
140
139
 
141
- @property
140
+ @_builtins.property
142
141
  @pulumi.getter
143
- def values(self) -> Sequence[builtins.str]:
142
+ def values(self) -> Sequence[_builtins.str]:
144
143
  """
145
144
  Values associated with the tag key.
146
145
  """
@@ -150,15 +149,15 @@ class MonitorTag(dict):
150
149
  @pulumi.output_type
151
150
  class MultiLocationAlertConditionCritical(dict):
152
151
  def __init__(__self__, *,
153
- threshold: builtins.int):
152
+ threshold: _builtins.int):
154
153
  """
155
- :param builtins.int threshold: The minimum number of monitor locations that must be concurrently failing before an incident is opened.
154
+ :param _builtins.int threshold: The minimum number of monitor locations that must be concurrently failing before an incident is opened.
156
155
  """
157
156
  pulumi.set(__self__, "threshold", threshold)
158
157
 
159
- @property
158
+ @_builtins.property
160
159
  @pulumi.getter
161
- def threshold(self) -> builtins.int:
160
+ def threshold(self) -> _builtins.int:
162
161
  """
163
162
  The minimum number of monitor locations that must be concurrently failing before an incident is opened.
164
163
  """
@@ -168,15 +167,15 @@ class MultiLocationAlertConditionCritical(dict):
168
167
  @pulumi.output_type
169
168
  class MultiLocationAlertConditionWarning(dict):
170
169
  def __init__(__self__, *,
171
- threshold: builtins.int):
170
+ threshold: _builtins.int):
172
171
  """
173
- :param builtins.int threshold: The minimum number of monitor locations that must be concurrently failing before an incident is opened.
172
+ :param _builtins.int threshold: The minimum number of monitor locations that must be concurrently failing before an incident is opened.
174
173
  """
175
174
  pulumi.set(__self__, "threshold", threshold)
176
175
 
177
- @property
176
+ @_builtins.property
178
177
  @pulumi.getter
179
- def threshold(self) -> builtins.int:
178
+ def threshold(self) -> _builtins.int:
180
179
  """
181
180
  The minimum number of monitor locations that must be concurrently failing before an incident is opened.
182
181
  """
@@ -203,27 +202,27 @@ class ScriptMonitorLocationPrivate(dict):
203
202
  return super().get(key, default)
204
203
 
205
204
  def __init__(__self__, *,
206
- guid: builtins.str,
207
- vse_password: Optional[builtins.str] = None):
205
+ guid: _builtins.str,
206
+ vse_password: Optional[_builtins.str] = None):
208
207
  """
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.
208
+ :param _builtins.str guid: The unique identifier for the Synthetics private location in New Relic.
209
+ :param _builtins.str vse_password: The location's Verified Script Execution password, Only necessary if Verified Script Execution is enabled for the location.
211
210
  """
212
211
  pulumi.set(__self__, "guid", guid)
213
212
  if vse_password is not None:
214
213
  pulumi.set(__self__, "vse_password", vse_password)
215
214
 
216
- @property
215
+ @_builtins.property
217
216
  @pulumi.getter
218
- def guid(self) -> builtins.str:
217
+ def guid(self) -> _builtins.str:
219
218
  """
220
219
  The unique identifier for the Synthetics private location in New Relic.
221
220
  """
222
221
  return pulumi.get(self, "guid")
223
222
 
224
- @property
223
+ @_builtins.property
225
224
  @pulumi.getter(name="vsePassword")
226
- def vse_password(self) -> Optional[builtins.str]:
225
+ def vse_password(self) -> Optional[_builtins.str]:
227
226
  """
228
227
  The location's Verified Script Execution password, Only necessary if Verified Script Execution is enabled for the location.
229
228
  """
@@ -233,26 +232,26 @@ class ScriptMonitorLocationPrivate(dict):
233
232
  @pulumi.output_type
234
233
  class ScriptMonitorTag(dict):
235
234
  def __init__(__self__, *,
236
- key: builtins.str,
237
- values: Sequence[builtins.str]):
235
+ key: _builtins.str,
236
+ values: Sequence[_builtins.str]):
238
237
  """
239
- :param builtins.str key: Name of the tag key.
240
- :param Sequence[builtins.str] values: Values associated with the tag key.
238
+ :param _builtins.str key: Name of the tag key.
239
+ :param Sequence[_builtins.str] values: Values associated with the tag key.
241
240
  """
242
241
  pulumi.set(__self__, "key", key)
243
242
  pulumi.set(__self__, "values", values)
244
243
 
245
- @property
244
+ @_builtins.property
246
245
  @pulumi.getter
247
- def key(self) -> builtins.str:
246
+ def key(self) -> _builtins.str:
248
247
  """
249
248
  Name of the tag key.
250
249
  """
251
250
  return pulumi.get(self, "key")
252
251
 
253
- @property
252
+ @_builtins.property
254
253
  @pulumi.getter
255
- def values(self) -> Sequence[builtins.str]:
254
+ def values(self) -> Sequence[_builtins.str]:
256
255
  """
257
256
  Values associated with the tag key.
258
257
  """
@@ -279,27 +278,27 @@ class StepMonitorLocationPrivate(dict):
279
278
  return super().get(key, default)
280
279
 
281
280
  def __init__(__self__, *,
282
- guid: builtins.str,
283
- vse_password: Optional[builtins.str] = None):
281
+ guid: _builtins.str,
282
+ vse_password: Optional[_builtins.str] = None):
284
283
  """
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.
284
+ :param _builtins.str guid: The unique identifier for the Synthetics private location in New Relic.
285
+ :param _builtins.str vse_password: The location's Verified Script Execution password, only necessary if Verified Script Execution is enabled for the location.
287
286
  """
288
287
  pulumi.set(__self__, "guid", guid)
289
288
  if vse_password is not None:
290
289
  pulumi.set(__self__, "vse_password", vse_password)
291
290
 
292
- @property
291
+ @_builtins.property
293
292
  @pulumi.getter
294
- def guid(self) -> builtins.str:
293
+ def guid(self) -> _builtins.str:
295
294
  """
296
295
  The unique identifier for the Synthetics private location in New Relic.
297
296
  """
298
297
  return pulumi.get(self, "guid")
299
298
 
300
- @property
299
+ @_builtins.property
301
300
  @pulumi.getter(name="vsePassword")
302
- def vse_password(self) -> Optional[builtins.str]:
301
+ def vse_password(self) -> Optional[_builtins.str]:
303
302
  """
304
303
  The location's Verified Script Execution password, only necessary if Verified Script Execution is enabled for the location.
305
304
  """
@@ -309,38 +308,38 @@ class StepMonitorLocationPrivate(dict):
309
308
  @pulumi.output_type
310
309
  class StepMonitorStep(dict):
311
310
  def __init__(__self__, *,
312
- ordinal: builtins.int,
313
- type: builtins.str,
314
- values: Optional[Sequence[builtins.str]] = None):
311
+ ordinal: _builtins.int,
312
+ type: _builtins.str,
313
+ values: Optional[Sequence[_builtins.str]] = None):
315
314
  """
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.
315
+ :param _builtins.int ordinal: The position of the step within the script ranging from 0-100.
316
+ :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`.
317
+ :param Sequence[_builtins.str] values: The metadata values related to the step.
319
318
  """
320
319
  pulumi.set(__self__, "ordinal", ordinal)
321
320
  pulumi.set(__self__, "type", type)
322
321
  if values is not None:
323
322
  pulumi.set(__self__, "values", values)
324
323
 
325
- @property
324
+ @_builtins.property
326
325
  @pulumi.getter
327
- def ordinal(self) -> builtins.int:
326
+ def ordinal(self) -> _builtins.int:
328
327
  """
329
328
  The position of the step within the script ranging from 0-100.
330
329
  """
331
330
  return pulumi.get(self, "ordinal")
332
331
 
333
- @property
332
+ @_builtins.property
334
333
  @pulumi.getter
335
- def type(self) -> builtins.str:
334
+ def type(self) -> _builtins.str:
336
335
  """
337
336
  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`.
338
337
  """
339
338
  return pulumi.get(self, "type")
340
339
 
341
- @property
340
+ @_builtins.property
342
341
  @pulumi.getter
343
- def values(self) -> Optional[Sequence[builtins.str]]:
342
+ def values(self) -> Optional[Sequence[_builtins.str]]:
344
343
  """
345
344
  The metadata values related to the step.
346
345
  """
@@ -350,26 +349,26 @@ class StepMonitorStep(dict):
350
349
  @pulumi.output_type
351
350
  class StepMonitorTag(dict):
352
351
  def __init__(__self__, *,
353
- key: builtins.str,
354
- values: Sequence[builtins.str]):
352
+ key: _builtins.str,
353
+ values: Sequence[_builtins.str]):
355
354
  """
356
- :param builtins.str key: Name of the tag key.
357
- :param Sequence[builtins.str] values: Values associated with the tag key.
355
+ :param _builtins.str key: Name of the tag key.
356
+ :param Sequence[_builtins.str] values: Values associated with the tag key.
358
357
  """
359
358
  pulumi.set(__self__, "key", key)
360
359
  pulumi.set(__self__, "values", values)
361
360
 
362
- @property
361
+ @_builtins.property
363
362
  @pulumi.getter
364
- def key(self) -> builtins.str:
363
+ def key(self) -> _builtins.str:
365
364
  """
366
365
  Name of the tag key.
367
366
  """
368
367
  return pulumi.get(self, "key")
369
368
 
370
- @property
369
+ @_builtins.property
371
370
  @pulumi.getter
372
- def values(self) -> Sequence[builtins.str]:
371
+ def values(self) -> Sequence[_builtins.str]:
373
372
  """
374
373
  Values associated with the tag key.
375
374
  """