pulumi-newrelic 5.23.0a1713561620__py3-none-any.whl → 5.23.0a1713975814__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.
- pulumi_newrelic/_inputs.py +110 -270
- pulumi_newrelic/account_management.py +14 -18
- pulumi_newrelic/alert_channel.py +28 -56
- pulumi_newrelic/alert_condition.py +84 -133
- pulumi_newrelic/alert_muting_rule.py +21 -25
- pulumi_newrelic/alert_policy.py +42 -33
- pulumi_newrelic/alert_policy_channel.py +0 -4
- pulumi_newrelic/cloud/_inputs.py +322 -1072
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +0 -4
- pulumi_newrelic/cloud/aws_integrations.py +7 -11
- pulumi_newrelic/cloud/aws_link_account.py +0 -4
- pulumi_newrelic/cloud/azure_integrations.py +0 -4
- pulumi_newrelic/cloud/azure_link_account.py +0 -4
- pulumi_newrelic/cloud/gcp_integrations.py +0 -4
- pulumi_newrelic/cloud/gcp_link_account.py +0 -4
- pulumi_newrelic/cloud/outputs.py +322 -1072
- pulumi_newrelic/data_partition_rule.py +0 -4
- pulumi_newrelic/entity_tags.py +7 -11
- pulumi_newrelic/events_to_metrics_rule.py +0 -4
- pulumi_newrelic/get_account.py +0 -4
- pulumi_newrelic/get_application.py +0 -4
- pulumi_newrelic/get_authentication_domain.py +0 -4
- pulumi_newrelic/get_cloud_account.py +0 -4
- pulumi_newrelic/get_entity.py +0 -16
- pulumi_newrelic/get_group.py +0 -8
- pulumi_newrelic/get_key_transaction.py +0 -4
- pulumi_newrelic/get_obfuscation_expression.py +0 -4
- pulumi_newrelic/get_service_level_alert_helper.py +0 -30
- pulumi_newrelic/get_test_grok_pattern.py +0 -4
- pulumi_newrelic/get_user.py +0 -4
- pulumi_newrelic/group.py +0 -12
- pulumi_newrelic/infra_alert_condition.py +126 -113
- pulumi_newrelic/insights/event.py +0 -17
- pulumi_newrelic/log_parsing_rule.py +0 -8
- pulumi_newrelic/monitor_downtime.py +70 -101
- pulumi_newrelic/notification_channel.py +0 -44
- pulumi_newrelic/nrql_alert_condition.py +0 -20
- pulumi_newrelic/nrql_drop_rule.py +28 -32
- pulumi_newrelic/obfuscation_expression.py +0 -4
- pulumi_newrelic/obfuscation_rule.py +0 -4
- pulumi_newrelic/one_dashboard.py +42 -48
- pulumi_newrelic/one_dashboard_raw.py +0 -4
- pulumi_newrelic/outputs.py +110 -270
- pulumi_newrelic/plugins/_inputs.py +16 -16
- pulumi_newrelic/plugins/application_settings.py +0 -4
- pulumi_newrelic/plugins/outputs.py +16 -16
- pulumi_newrelic/plugins/workload.py +28 -48
- pulumi_newrelic/service_level.py +0 -91
- pulumi_newrelic/synthetics/alert_condition.py +14 -50
- pulumi_newrelic/synthetics/broken_links_monitor.py +0 -8
- pulumi_newrelic/synthetics/cert_check_monitor.py +0 -8
- pulumi_newrelic/synthetics/get_private_location.py +0 -8
- pulumi_newrelic/synthetics/get_secure_credential.py +0 -12
- pulumi_newrelic/synthetics/monitor.py +0 -16
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +49 -71
- pulumi_newrelic/synthetics/private_location.py +0 -4
- pulumi_newrelic/synthetics/script_monitor.py +4 -20
- pulumi_newrelic/synthetics/secure_credential.py +21 -18
- pulumi_newrelic/synthetics/step_monitor.py +4 -12
- pulumi_newrelic/user.py +0 -4
- pulumi_newrelic/workflow.py +0 -16
- {pulumi_newrelic-5.23.0a1713561620.dist-info → pulumi_newrelic-5.23.0a1713975814.dist-info}/METADATA +1 -1
- pulumi_newrelic-5.23.0a1713975814.dist-info/RECORD +89 -0
- pulumi_newrelic-5.23.0a1713561620.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.23.0a1713561620.dist-info → pulumi_newrelic-5.23.0a1713975814.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.23.0a1713561620.dist-info → pulumi_newrelic-5.23.0a1713975814.dist-info}/top_level.txt +0 -0
@@ -19,16 +19,12 @@ class EventArgs:
|
|
19
19
|
events: pulumi.Input[Sequence[pulumi.Input['EventEventArgs']]]):
|
20
20
|
"""
|
21
21
|
The set of arguments for constructing a Event resource.
|
22
|
-
:param pulumi.Input[Sequence[pulumi.Input['EventEventArgs']]] events: An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
|
23
22
|
"""
|
24
23
|
pulumi.set(__self__, "events", events)
|
25
24
|
|
26
25
|
@property
|
27
26
|
@pulumi.getter
|
28
27
|
def events(self) -> pulumi.Input[Sequence[pulumi.Input['EventEventArgs']]]:
|
29
|
-
"""
|
30
|
-
An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
|
31
|
-
"""
|
32
28
|
return pulumi.get(self, "events")
|
33
29
|
|
34
30
|
@events.setter
|
@@ -42,7 +38,6 @@ class _EventState:
|
|
42
38
|
events: Optional[pulumi.Input[Sequence[pulumi.Input['EventEventArgs']]]] = None):
|
43
39
|
"""
|
44
40
|
Input properties used for looking up and filtering Event resources.
|
45
|
-
:param pulumi.Input[Sequence[pulumi.Input['EventEventArgs']]] events: An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
|
46
41
|
"""
|
47
42
|
if events is not None:
|
48
43
|
pulumi.set(__self__, "events", events)
|
@@ -50,9 +45,6 @@ class _EventState:
|
|
50
45
|
@property
|
51
46
|
@pulumi.getter
|
52
47
|
def events(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EventEventArgs']]]]:
|
53
|
-
"""
|
54
|
-
An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
|
55
|
-
"""
|
56
48
|
return pulumi.get(self, "events")
|
57
49
|
|
58
50
|
@events.setter
|
@@ -72,7 +64,6 @@ class Event(pulumi.CustomResource):
|
|
72
64
|
|
73
65
|
## Example Usage
|
74
66
|
|
75
|
-
<!--Start PulumiCodeChooser -->
|
76
67
|
```python
|
77
68
|
import pulumi
|
78
69
|
import pulumi_newrelic as newrelic
|
@@ -98,7 +89,6 @@ class Event(pulumi.CustomResource):
|
|
98
89
|
],
|
99
90
|
)])
|
100
91
|
```
|
101
|
-
<!--End PulumiCodeChooser -->
|
102
92
|
|
103
93
|
## Events
|
104
94
|
|
@@ -118,7 +108,6 @@ class Event(pulumi.CustomResource):
|
|
118
108
|
|
119
109
|
:param str resource_name: The name of the resource.
|
120
110
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
121
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['EventEventArgs']]]] events: An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
|
122
111
|
"""
|
123
112
|
...
|
124
113
|
@overload
|
@@ -131,7 +120,6 @@ class Event(pulumi.CustomResource):
|
|
131
120
|
|
132
121
|
## Example Usage
|
133
122
|
|
134
|
-
<!--Start PulumiCodeChooser -->
|
135
123
|
```python
|
136
124
|
import pulumi
|
137
125
|
import pulumi_newrelic as newrelic
|
@@ -157,7 +145,6 @@ class Event(pulumi.CustomResource):
|
|
157
145
|
],
|
158
146
|
)])
|
159
147
|
```
|
160
|
-
<!--End PulumiCodeChooser -->
|
161
148
|
|
162
149
|
## Events
|
163
150
|
|
@@ -221,7 +208,6 @@ class Event(pulumi.CustomResource):
|
|
221
208
|
:param str resource_name: The unique name of the resulting resource.
|
222
209
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
223
210
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
224
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['EventEventArgs']]]] events: An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
|
225
211
|
"""
|
226
212
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
227
213
|
|
@@ -233,8 +219,5 @@ class Event(pulumi.CustomResource):
|
|
233
219
|
@property
|
234
220
|
@pulumi.getter
|
235
221
|
def events(self) -> pulumi.Output[Sequence['outputs.EventEvent']]:
|
236
|
-
"""
|
237
|
-
An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
|
238
|
-
"""
|
239
222
|
return pulumi.get(self, "events")
|
240
223
|
|
@@ -315,7 +315,6 @@ class LogParsingRule(pulumi.CustomResource):
|
|
315
315
|
## Example Usage
|
316
316
|
|
317
317
|
Use this example to create the log parse rule.
|
318
|
-
<!--Start PulumiCodeChooser -->
|
319
318
|
```python
|
320
319
|
import pulumi
|
321
320
|
import pulumi_newrelic as newrelic
|
@@ -328,13 +327,11 @@ class LogParsingRule(pulumi.CustomResource):
|
|
328
327
|
lucene="logtype:linux_messages",
|
329
328
|
nrql="SELECT * FROM Log WHERE logtype = 'linux_messages'")
|
330
329
|
```
|
331
|
-
<!--End PulumiCodeChooser -->
|
332
330
|
|
333
331
|
## Additional Example
|
334
332
|
|
335
333
|
Use this example to validate a grok pattern and create the log parse rule. More
|
336
334
|
information on grok pattern can be found [here](https://docs.newrelic.com/docs/logs/ui-data/parsing/#grok)
|
337
|
-
<!--Start PulumiCodeChooser -->
|
338
335
|
```python
|
339
336
|
import pulumi
|
340
337
|
import pulumi_newrelic as newrelic
|
@@ -350,7 +347,6 @@ class LogParsingRule(pulumi.CustomResource):
|
|
350
347
|
nrql="SELECT * FROM Log WHERE logtype = 'linux_messages'",
|
351
348
|
matched=grok.test_groks[0].matched)
|
352
349
|
```
|
353
|
-
<!--End PulumiCodeChooser -->
|
354
350
|
|
355
351
|
## Import
|
356
352
|
|
@@ -385,7 +381,6 @@ class LogParsingRule(pulumi.CustomResource):
|
|
385
381
|
## Example Usage
|
386
382
|
|
387
383
|
Use this example to create the log parse rule.
|
388
|
-
<!--Start PulumiCodeChooser -->
|
389
384
|
```python
|
390
385
|
import pulumi
|
391
386
|
import pulumi_newrelic as newrelic
|
@@ -398,13 +393,11 @@ class LogParsingRule(pulumi.CustomResource):
|
|
398
393
|
lucene="logtype:linux_messages",
|
399
394
|
nrql="SELECT * FROM Log WHERE logtype = 'linux_messages'")
|
400
395
|
```
|
401
|
-
<!--End PulumiCodeChooser -->
|
402
396
|
|
403
397
|
## Additional Example
|
404
398
|
|
405
399
|
Use this example to validate a grok pattern and create the log parse rule. More
|
406
400
|
information on grok pattern can be found [here](https://docs.newrelic.com/docs/logs/ui-data/parsing/#grok)
|
407
|
-
<!--Start PulumiCodeChooser -->
|
408
401
|
```python
|
409
402
|
import pulumi
|
410
403
|
import pulumi_newrelic as newrelic
|
@@ -420,7 +413,6 @@ class LogParsingRule(pulumi.CustomResource):
|
|
420
413
|
nrql="SELECT * FROM Log WHERE logtype = 'linux_messages'",
|
421
414
|
matched=grok.test_groks[0].matched)
|
422
415
|
```
|
423
|
-
<!--End PulumiCodeChooser -->
|
424
416
|
|
425
417
|
## Import
|
426
418
|
|