pulumi-newrelic 5.21.0a1710157101__py3-none-any.whl → 5.39.0a1736849617__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_newrelic/__init__.py +9 -0
- pulumi_newrelic/_inputs.py +7153 -461
- pulumi_newrelic/_utilities.py +41 -5
- pulumi_newrelic/account_management.py +11 -6
- pulumi_newrelic/alert_channel.py +116 -127
- pulumi_newrelic/alert_condition.py +116 -129
- pulumi_newrelic/alert_muting_rule.py +128 -76
- pulumi_newrelic/alert_policy.py +78 -75
- pulumi_newrelic/alert_policy_channel.py +77 -68
- pulumi_newrelic/api_access_key.py +45 -28
- pulumi_newrelic/browser_application.py +77 -78
- pulumi_newrelic/cloud/_inputs.py +2527 -1082
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +133 -128
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +23 -20
- pulumi_newrelic/cloud/aws_integrations.py +298 -1326
- pulumi_newrelic/cloud/aws_link_account.py +23 -20
- pulumi_newrelic/cloud/azure_integrations.py +521 -483
- pulumi_newrelic/cloud/azure_link_account.py +34 -31
- pulumi_newrelic/cloud/gcp_integrations.py +341 -322
- pulumi_newrelic/cloud/gcp_link_account.py +23 -20
- pulumi_newrelic/cloud/outputs.py +327 -1072
- pulumi_newrelic/config/__init__.pyi +6 -1
- pulumi_newrelic/config/vars.py +7 -2
- pulumi_newrelic/data_partition_rule.py +19 -18
- pulumi_newrelic/entity_tags.py +32 -31
- pulumi_newrelic/events_to_metrics_rule.py +23 -20
- pulumi_newrelic/get_account.py +24 -16
- pulumi_newrelic/get_alert_channel.py +26 -13
- pulumi_newrelic/get_alert_policy.py +35 -12
- pulumi_newrelic/get_application.py +39 -31
- pulumi_newrelic/get_authentication_domain.py +17 -13
- pulumi_newrelic/get_cloud_account.py +26 -18
- pulumi_newrelic/get_entity.py +90 -147
- pulumi_newrelic/get_group.py +58 -13
- pulumi_newrelic/get_key_transaction.py +109 -34
- pulumi_newrelic/get_notification_destination.py +64 -14
- pulumi_newrelic/get_obfuscation_expression.py +36 -28
- pulumi_newrelic/get_service_level_alert_helper.py +135 -117
- pulumi_newrelic/get_test_grok_pattern.py +29 -18
- pulumi_newrelic/get_user.py +17 -9
- pulumi_newrelic/group.py +5 -146
- pulumi_newrelic/infra_alert_condition.py +160 -167
- pulumi_newrelic/insights/_inputs.py +43 -0
- pulumi_newrelic/insights/event.py +48 -47
- pulumi_newrelic/insights/outputs.py +5 -0
- pulumi_newrelic/key_transaction.py +464 -0
- pulumi_newrelic/log_parsing_rule.py +25 -24
- pulumi_newrelic/monitor_downtime.py +211 -225
- pulumi_newrelic/notification_channel.py +381 -366
- pulumi_newrelic/notification_destination.py +192 -54
- pulumi_newrelic/nrql_alert_condition.py +345 -262
- pulumi_newrelic/nrql_drop_rule.py +31 -30
- pulumi_newrelic/obfuscation_expression.py +23 -20
- pulumi_newrelic/obfuscation_rule.py +38 -33
- pulumi_newrelic/one_dashboard.py +29 -24
- pulumi_newrelic/one_dashboard_json.py +19 -14
- pulumi_newrelic/one_dashboard_raw.py +110 -105
- pulumi_newrelic/outputs.py +2446 -245
- pulumi_newrelic/plugins/_inputs.py +145 -10
- pulumi_newrelic/plugins/application_settings.py +25 -36
- pulumi_newrelic/plugins/outputs.py +15 -10
- pulumi_newrelic/plugins/workload.py +215 -92
- pulumi_newrelic/provider.py +27 -33
- pulumi_newrelic/pulumi-plugin.json +2 -1
- pulumi_newrelic/service_level.py +185 -186
- pulumi_newrelic/synthetics/_inputs.py +159 -2
- pulumi_newrelic/synthetics/alert_condition.py +87 -98
- pulumi_newrelic/synthetics/broken_links_monitor.py +216 -99
- pulumi_newrelic/synthetics/cert_check_monitor.py +219 -100
- pulumi_newrelic/synthetics/get_private_location.py +34 -30
- pulumi_newrelic/synthetics/get_secure_credential.py +24 -16
- pulumi_newrelic/synthetics/monitor.py +348 -193
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +105 -100
- pulumi_newrelic/synthetics/outputs.py +7 -2
- pulumi_newrelic/synthetics/private_location.py +25 -20
- pulumi_newrelic/synthetics/script_monitor.py +317 -182
- pulumi_newrelic/synthetics/secure_credential.py +23 -22
- pulumi_newrelic/synthetics/step_monitor.py +405 -100
- pulumi_newrelic/user.py +13 -10
- pulumi_newrelic/workflow.py +209 -196
- {pulumi_newrelic-5.21.0a1710157101.dist-info → pulumi_newrelic-5.39.0a1736849617.dist-info}/METADATA +7 -6
- pulumi_newrelic-5.39.0a1736849617.dist-info/RECORD +90 -0
- {pulumi_newrelic-5.21.0a1710157101.dist-info → pulumi_newrelic-5.39.0a1736849617.dist-info}/WHEEL +1 -1
- pulumi_newrelic-5.21.0a1710157101.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.21.0a1710157101.dist-info → pulumi_newrelic-5.39.0a1736849617.dist-info}/top_level.txt +0 -0
@@ -4,16 +4,42 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
13
18
|
'EventEventArgs',
|
19
|
+
'EventEventArgsDict',
|
14
20
|
'EventEventAttributeArgs',
|
21
|
+
'EventEventAttributeArgsDict',
|
15
22
|
]
|
16
23
|
|
24
|
+
MYPY = False
|
25
|
+
|
26
|
+
if not MYPY:
|
27
|
+
class EventEventArgsDict(TypedDict):
|
28
|
+
attributes: pulumi.Input[Sequence[pulumi.Input['EventEventAttributeArgsDict']]]
|
29
|
+
"""
|
30
|
+
An attribute to include in your event payload. Multiple attribute blocks can be defined for an event.
|
31
|
+
"""
|
32
|
+
type: pulumi.Input[str]
|
33
|
+
"""
|
34
|
+
The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
|
35
|
+
"""
|
36
|
+
timestamp: NotRequired[pulumi.Input[int]]
|
37
|
+
"""
|
38
|
+
Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.
|
39
|
+
"""
|
40
|
+
elif False:
|
41
|
+
EventEventArgsDict: TypeAlias = Mapping[str, Any]
|
42
|
+
|
17
43
|
@pulumi.input_type
|
18
44
|
class EventEventArgs:
|
19
45
|
def __init__(__self__, *,
|
@@ -67,6 +93,23 @@ class EventEventArgs:
|
|
67
93
|
pulumi.set(self, "timestamp", value)
|
68
94
|
|
69
95
|
|
96
|
+
if not MYPY:
|
97
|
+
class EventEventAttributeArgsDict(TypedDict):
|
98
|
+
key: pulumi.Input[str]
|
99
|
+
"""
|
100
|
+
The name of the attribute.
|
101
|
+
"""
|
102
|
+
value: pulumi.Input[str]
|
103
|
+
"""
|
104
|
+
The value of the attribute.
|
105
|
+
"""
|
106
|
+
type: NotRequired[pulumi.Input[str]]
|
107
|
+
"""
|
108
|
+
Specify the type for the attribute value. This is useful when passing integer or float values to Insights. Allowed values are string, int, or float. Defaults to string.
|
109
|
+
"""
|
110
|
+
elif False:
|
111
|
+
EventEventAttributeArgsDict: TypeAlias = Mapping[str, Any]
|
112
|
+
|
70
113
|
@pulumi.input_type
|
71
114
|
class EventEventAttributeArgs:
|
72
115
|
def __init__(__self__, *,
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -65,40 +70,38 @@ class Event(pulumi.CustomResource):
|
|
65
70
|
def __init__(__self__,
|
66
71
|
resource_name: str,
|
67
72
|
opts: Optional[pulumi.ResourceOptions] = None,
|
68
|
-
events: Optional[pulumi.Input[Sequence[pulumi.Input[
|
73
|
+
events: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EventEventArgs', 'EventEventArgsDict']]]]] = None,
|
69
74
|
__props__=None):
|
70
75
|
"""
|
71
76
|
Use this resource to create one or more Insights events.
|
72
77
|
|
73
78
|
## Example Usage
|
74
79
|
|
75
|
-
<!--Start PulumiCodeChooser -->
|
76
80
|
```python
|
77
81
|
import pulumi
|
78
82
|
import pulumi_newrelic as newrelic
|
79
83
|
|
80
|
-
foo = newrelic.insights.Event("foo", events=[
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
84
|
+
foo = newrelic.insights.Event("foo", events=[{
|
85
|
+
"type": "MyEvent",
|
86
|
+
"timestamp": 1232471100,
|
87
|
+
"attributes": [
|
88
|
+
{
|
89
|
+
"key": "a_string_attribute",
|
90
|
+
"value": "a string",
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"key": "an_integer_attribute",
|
94
|
+
"value": "42",
|
95
|
+
"type": "int",
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"key": "a_float_attribute",
|
99
|
+
"value": "101.1",
|
100
|
+
"type": "float",
|
101
|
+
},
|
96
102
|
],
|
97
|
-
|
98
|
-
type="MyEvent",
|
99
|
-
)])
|
103
|
+
}])
|
100
104
|
```
|
101
|
-
<!--End PulumiCodeChooser -->
|
102
105
|
|
103
106
|
## Events
|
104
107
|
|
@@ -118,7 +121,7 @@ class Event(pulumi.CustomResource):
|
|
118
121
|
|
119
122
|
:param str resource_name: The name of the resource.
|
120
123
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
121
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
124
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['EventEventArgs', 'EventEventArgsDict']]]] events: An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
|
122
125
|
"""
|
123
126
|
...
|
124
127
|
@overload
|
@@ -131,33 +134,31 @@ class Event(pulumi.CustomResource):
|
|
131
134
|
|
132
135
|
## Example Usage
|
133
136
|
|
134
|
-
<!--Start PulumiCodeChooser -->
|
135
137
|
```python
|
136
138
|
import pulumi
|
137
139
|
import pulumi_newrelic as newrelic
|
138
140
|
|
139
|
-
foo = newrelic.insights.Event("foo", events=[
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
141
|
+
foo = newrelic.insights.Event("foo", events=[{
|
142
|
+
"type": "MyEvent",
|
143
|
+
"timestamp": 1232471100,
|
144
|
+
"attributes": [
|
145
|
+
{
|
146
|
+
"key": "a_string_attribute",
|
147
|
+
"value": "a string",
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"key": "an_integer_attribute",
|
151
|
+
"value": "42",
|
152
|
+
"type": "int",
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"key": "a_float_attribute",
|
156
|
+
"value": "101.1",
|
157
|
+
"type": "float",
|
158
|
+
},
|
155
159
|
],
|
156
|
-
|
157
|
-
type="MyEvent",
|
158
|
-
)])
|
160
|
+
}])
|
159
161
|
```
|
160
|
-
<!--End PulumiCodeChooser -->
|
161
162
|
|
162
163
|
## Events
|
163
164
|
|
@@ -190,7 +191,7 @@ class Event(pulumi.CustomResource):
|
|
190
191
|
def _internal_init(__self__,
|
191
192
|
resource_name: str,
|
192
193
|
opts: Optional[pulumi.ResourceOptions] = None,
|
193
|
-
events: Optional[pulumi.Input[Sequence[pulumi.Input[
|
194
|
+
events: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EventEventArgs', 'EventEventArgsDict']]]]] = None,
|
194
195
|
__props__=None):
|
195
196
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
196
197
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -213,7 +214,7 @@ class Event(pulumi.CustomResource):
|
|
213
214
|
def get(resource_name: str,
|
214
215
|
id: pulumi.Input[str],
|
215
216
|
opts: Optional[pulumi.ResourceOptions] = None,
|
216
|
-
events: Optional[pulumi.Input[Sequence[pulumi.Input[
|
217
|
+
events: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EventEventArgs', 'EventEventArgsDict']]]]] = None) -> 'Event':
|
217
218
|
"""
|
218
219
|
Get an existing Event resource's state with the given name, id, and optional extra
|
219
220
|
properties used to qualify the lookup.
|
@@ -221,7 +222,7 @@ class Event(pulumi.CustomResource):
|
|
221
222
|
:param str resource_name: The unique name of the resulting resource.
|
222
223
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
223
224
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
224
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
225
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['EventEventArgs', 'EventEventArgsDict']]]] events: An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
|
225
226
|
"""
|
226
227
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
227
228
|
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|