pulumi-newrelic 5.21.0a1710157101__py3-none-any.whl → 5.39.0a1736834464__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.0a1736834464.dist-info}/METADATA +7 -6
- pulumi_newrelic-5.39.0a1736834464.dist-info/RECORD +90 -0
- {pulumi_newrelic-5.21.0a1710157101.dist-info → pulumi_newrelic-5.39.0a1736834464.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.0a1736834464.dist-info}/top_level.txt +0 -0
@@ -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
|
|
12
17
|
__all__ = ['AwsLinkAccountArgs', 'AwsLinkAccount']
|
@@ -15,13 +20,13 @@ __all__ = ['AwsLinkAccountArgs', 'AwsLinkAccount']
|
|
15
20
|
class AwsLinkAccountArgs:
|
16
21
|
def __init__(__self__, *,
|
17
22
|
arn: pulumi.Input[str],
|
18
|
-
account_id: Optional[pulumi.Input[
|
23
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
19
24
|
metric_collection_mode: Optional[pulumi.Input[str]] = None,
|
20
25
|
name: Optional[pulumi.Input[str]] = None):
|
21
26
|
"""
|
22
27
|
The set of arguments for constructing a AwsLinkAccount resource.
|
23
28
|
:param pulumi.Input[str] arn: The Amazon Resource Name (ARN) of the IAM role.
|
24
|
-
:param pulumi.Input[
|
29
|
+
:param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
25
30
|
:param pulumi.Input[str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
|
26
31
|
:param pulumi.Input[str] name: The name of the linked account.
|
27
32
|
"""
|
@@ -47,14 +52,14 @@ class AwsLinkAccountArgs:
|
|
47
52
|
|
48
53
|
@property
|
49
54
|
@pulumi.getter(name="accountId")
|
50
|
-
def account_id(self) -> Optional[pulumi.Input[
|
55
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
51
56
|
"""
|
52
57
|
The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
53
58
|
"""
|
54
59
|
return pulumi.get(self, "account_id")
|
55
60
|
|
56
61
|
@account_id.setter
|
57
|
-
def account_id(self, value: Optional[pulumi.Input[
|
62
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
58
63
|
pulumi.set(self, "account_id", value)
|
59
64
|
|
60
65
|
@property
|
@@ -85,13 +90,13 @@ class AwsLinkAccountArgs:
|
|
85
90
|
@pulumi.input_type
|
86
91
|
class _AwsLinkAccountState:
|
87
92
|
def __init__(__self__, *,
|
88
|
-
account_id: Optional[pulumi.Input[
|
93
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
89
94
|
arn: Optional[pulumi.Input[str]] = None,
|
90
95
|
metric_collection_mode: Optional[pulumi.Input[str]] = None,
|
91
96
|
name: Optional[pulumi.Input[str]] = None):
|
92
97
|
"""
|
93
98
|
Input properties used for looking up and filtering AwsLinkAccount resources.
|
94
|
-
:param pulumi.Input[
|
99
|
+
:param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
95
100
|
:param pulumi.Input[str] arn: The Amazon Resource Name (ARN) of the IAM role.
|
96
101
|
:param pulumi.Input[str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
|
97
102
|
:param pulumi.Input[str] name: The name of the linked account.
|
@@ -107,14 +112,14 @@ class _AwsLinkAccountState:
|
|
107
112
|
|
108
113
|
@property
|
109
114
|
@pulumi.getter(name="accountId")
|
110
|
-
def account_id(self) -> Optional[pulumi.Input[
|
115
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
111
116
|
"""
|
112
117
|
The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
113
118
|
"""
|
114
119
|
return pulumi.get(self, "account_id")
|
115
120
|
|
116
121
|
@account_id.setter
|
117
|
-
def account_id(self, value: Optional[pulumi.Input[
|
122
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
118
123
|
pulumi.set(self, "account_id", value)
|
119
124
|
|
120
125
|
@property
|
@@ -159,7 +164,7 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
159
164
|
def __init__(__self__,
|
160
165
|
resource_name: str,
|
161
166
|
opts: Optional[pulumi.ResourceOptions] = None,
|
162
|
-
account_id: Optional[pulumi.Input[
|
167
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
163
168
|
arn: Optional[pulumi.Input[str]] = None,
|
164
169
|
metric_collection_mode: Optional[pulumi.Input[str]] = None,
|
165
170
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -179,16 +184,15 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
179
184
|
|
180
185
|
You can also use the full example, including the AWS set up, found in our guides.
|
181
186
|
|
182
|
-
<!--Start PulumiCodeChooser -->
|
183
187
|
```python
|
184
188
|
import pulumi
|
185
189
|
import pulumi_newrelic as newrelic
|
186
190
|
|
187
191
|
foo = newrelic.cloud.AwsLinkAccount("foo",
|
188
192
|
arn="arn:aws:service:region:account-id:resource-id",
|
189
|
-
metric_collection_mode="PUSH"
|
193
|
+
metric_collection_mode="PUSH",
|
194
|
+
name="account name")
|
190
195
|
```
|
191
|
-
<!--End PulumiCodeChooser -->
|
192
196
|
|
193
197
|
## Import
|
194
198
|
|
@@ -202,7 +206,7 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
202
206
|
|
203
207
|
:param str resource_name: The name of the resource.
|
204
208
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
205
|
-
:param pulumi.Input[
|
209
|
+
:param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
206
210
|
:param pulumi.Input[str] arn: The Amazon Resource Name (ARN) of the IAM role.
|
207
211
|
:param pulumi.Input[str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
|
208
212
|
:param pulumi.Input[str] name: The name of the linked account.
|
@@ -228,16 +232,15 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
228
232
|
|
229
233
|
You can also use the full example, including the AWS set up, found in our guides.
|
230
234
|
|
231
|
-
<!--Start PulumiCodeChooser -->
|
232
235
|
```python
|
233
236
|
import pulumi
|
234
237
|
import pulumi_newrelic as newrelic
|
235
238
|
|
236
239
|
foo = newrelic.cloud.AwsLinkAccount("foo",
|
237
240
|
arn="arn:aws:service:region:account-id:resource-id",
|
238
|
-
metric_collection_mode="PUSH"
|
241
|
+
metric_collection_mode="PUSH",
|
242
|
+
name="account name")
|
239
243
|
```
|
240
|
-
<!--End PulumiCodeChooser -->
|
241
244
|
|
242
245
|
## Import
|
243
246
|
|
@@ -264,7 +267,7 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
264
267
|
def _internal_init(__self__,
|
265
268
|
resource_name: str,
|
266
269
|
opts: Optional[pulumi.ResourceOptions] = None,
|
267
|
-
account_id: Optional[pulumi.Input[
|
270
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
268
271
|
arn: Optional[pulumi.Input[str]] = None,
|
269
272
|
metric_collection_mode: Optional[pulumi.Input[str]] = None,
|
270
273
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -293,7 +296,7 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
293
296
|
def get(resource_name: str,
|
294
297
|
id: pulumi.Input[str],
|
295
298
|
opts: Optional[pulumi.ResourceOptions] = None,
|
296
|
-
account_id: Optional[pulumi.Input[
|
299
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
297
300
|
arn: Optional[pulumi.Input[str]] = None,
|
298
301
|
metric_collection_mode: Optional[pulumi.Input[str]] = None,
|
299
302
|
name: Optional[pulumi.Input[str]] = None) -> 'AwsLinkAccount':
|
@@ -304,7 +307,7 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
304
307
|
:param str resource_name: The unique name of the resulting resource.
|
305
308
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
306
309
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
307
|
-
:param pulumi.Input[
|
310
|
+
:param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
308
311
|
:param pulumi.Input[str] arn: The Amazon Resource Name (ARN) of the IAM role.
|
309
312
|
:param pulumi.Input[str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
|
310
313
|
:param pulumi.Input[str] name: The name of the linked account.
|
@@ -321,7 +324,7 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
321
324
|
|
322
325
|
@property
|
323
326
|
@pulumi.getter(name="accountId")
|
324
|
-
def account_id(self) -> pulumi.Output[
|
327
|
+
def account_id(self) -> pulumi.Output[str]:
|
325
328
|
"""
|
326
329
|
The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
327
330
|
"""
|