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