pulumi-newrelic 5.20.0a1709643785__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 +13 -4
- pulumi_newrelic/alert_channel.py +122 -101
- pulumi_newrelic/alert_condition.py +120 -109
- pulumi_newrelic/alert_muting_rule.py +130 -74
- pulumi_newrelic/alert_policy.py +88 -67
- pulumi_newrelic/alert_policy_channel.py +81 -68
- pulumi_newrelic/api_access_key.py +49 -52
- pulumi_newrelic/browser_application.py +79 -76
- pulumi_newrelic/cloud/_inputs.py +2527 -1082
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +135 -130
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +25 -18
- pulumi_newrelic/cloud/aws_integrations.py +300 -1324
- pulumi_newrelic/cloud/aws_link_account.py +25 -18
- pulumi_newrelic/cloud/azure_integrations.py +523 -481
- pulumi_newrelic/cloud/azure_link_account.py +36 -29
- pulumi_newrelic/cloud/gcp_integrations.py +343 -320
- pulumi_newrelic/cloud/gcp_link_account.py +25 -18
- 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 +23 -16
- pulumi_newrelic/entity_tags.py +36 -31
- pulumi_newrelic/events_to_metrics_rule.py +27 -20
- pulumi_newrelic/get_account.py +24 -12
- pulumi_newrelic/get_alert_channel.py +26 -13
- pulumi_newrelic/get_alert_policy.py +35 -12
- pulumi_newrelic/get_application.py +39 -27
- pulumi_newrelic/get_authentication_domain.py +17 -9
- pulumi_newrelic/get_cloud_account.py +26 -14
- pulumi_newrelic/get_entity.py +90 -85
- pulumi_newrelic/get_group.py +58 -9
- pulumi_newrelic/get_key_transaction.py +109 -30
- pulumi_newrelic/get_notification_destination.py +64 -14
- pulumi_newrelic/get_obfuscation_expression.py +36 -24
- pulumi_newrelic/get_service_level_alert_helper.py +135 -105
- pulumi_newrelic/get_test_grok_pattern.py +29 -14
- pulumi_newrelic/get_user.py +17 -5
- pulumi_newrelic/group.py +5 -132
- pulumi_newrelic/infra_alert_condition.py +157 -140
- pulumi_newrelic/insights/_inputs.py +43 -0
- pulumi_newrelic/insights/event.py +50 -43
- pulumi_newrelic/insights/outputs.py +5 -0
- pulumi_newrelic/key_transaction.py +464 -0
- pulumi_newrelic/log_parsing_rule.py +29 -18
- pulumi_newrelic/monitor_downtime.py +215 -203
- pulumi_newrelic/notification_channel.py +387 -326
- pulumi_newrelic/notification_destination.py +248 -118
- pulumi_newrelic/nrql_alert_condition.py +353 -246
- pulumi_newrelic/nrql_drop_rule.py +57 -30
- pulumi_newrelic/obfuscation_expression.py +25 -18
- pulumi_newrelic/obfuscation_rule.py +40 -31
- pulumi_newrelic/one_dashboard.py +31 -26
- pulumi_newrelic/one_dashboard_json.py +21 -16
- pulumi_newrelic/one_dashboard_raw.py +112 -101
- pulumi_newrelic/outputs.py +2446 -245
- pulumi_newrelic/plugins/_inputs.py +145 -10
- pulumi_newrelic/plugins/application_settings.py +29 -20
- pulumi_newrelic/plugins/outputs.py +15 -10
- pulumi_newrelic/plugins/workload.py +285 -54
- pulumi_newrelic/provider.py +27 -33
- pulumi_newrelic/pulumi-plugin.json +2 -1
- pulumi_newrelic/service_level.py +193 -180
- pulumi_newrelic/synthetics/_inputs.py +159 -2
- pulumi_newrelic/synthetics/alert_condition.py +91 -78
- pulumi_newrelic/synthetics/broken_links_monitor.py +220 -93
- pulumi_newrelic/synthetics/cert_check_monitor.py +223 -94
- pulumi_newrelic/synthetics/get_private_location.py +34 -22
- pulumi_newrelic/synthetics/get_secure_credential.py +24 -12
- pulumi_newrelic/synthetics/monitor.py +352 -179
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +109 -96
- pulumi_newrelic/synthetics/outputs.py +7 -2
- pulumi_newrelic/synthetics/private_location.py +27 -18
- pulumi_newrelic/synthetics/script_monitor.py +321 -168
- pulumi_newrelic/synthetics/secure_credential.py +25 -20
- pulumi_newrelic/synthetics/step_monitor.py +409 -98
- pulumi_newrelic/user.py +13 -6
- pulumi_newrelic/workflow.py +215 -184
- {pulumi_newrelic-5.20.0a1709643785.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.20.0a1709643785.dist-info → pulumi_newrelic-5.39.0a1736834464.dist-info}/WHEEL +1 -1
- pulumi_newrelic-5.20.0a1709643785.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.20.0a1709643785.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,
|
@@ -185,14 +190,15 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
185
190
|
|
186
191
|
foo = newrelic.cloud.AwsLinkAccount("foo",
|
187
192
|
arn="arn:aws:service:region:account-id:resource-id",
|
188
|
-
metric_collection_mode="PUSH"
|
193
|
+
metric_collection_mode="PUSH",
|
194
|
+
name="account name")
|
189
195
|
```
|
190
196
|
|
191
197
|
## Import
|
192
198
|
|
193
199
|
Linked AWS accounts can be imported using the `id`, e.g.
|
194
200
|
|
195
|
-
|
201
|
+
bash
|
196
202
|
|
197
203
|
```sh
|
198
204
|
$ pulumi import newrelic:cloud/awsLinkAccount:AwsLinkAccount foo <id>
|
@@ -200,7 +206,7 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
200
206
|
|
201
207
|
:param str resource_name: The name of the resource.
|
202
208
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
203
|
-
: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`.
|
204
210
|
:param pulumi.Input[str] arn: The Amazon Resource Name (ARN) of the IAM role.
|
205
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.
|
206
212
|
:param pulumi.Input[str] name: The name of the linked account.
|
@@ -232,14 +238,15 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
232
238
|
|
233
239
|
foo = newrelic.cloud.AwsLinkAccount("foo",
|
234
240
|
arn="arn:aws:service:region:account-id:resource-id",
|
235
|
-
metric_collection_mode="PUSH"
|
241
|
+
metric_collection_mode="PUSH",
|
242
|
+
name="account name")
|
236
243
|
```
|
237
244
|
|
238
245
|
## Import
|
239
246
|
|
240
247
|
Linked AWS accounts can be imported using the `id`, e.g.
|
241
248
|
|
242
|
-
|
249
|
+
bash
|
243
250
|
|
244
251
|
```sh
|
245
252
|
$ pulumi import newrelic:cloud/awsLinkAccount:AwsLinkAccount foo <id>
|
@@ -260,7 +267,7 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
260
267
|
def _internal_init(__self__,
|
261
268
|
resource_name: str,
|
262
269
|
opts: Optional[pulumi.ResourceOptions] = None,
|
263
|
-
account_id: Optional[pulumi.Input[
|
270
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
264
271
|
arn: Optional[pulumi.Input[str]] = None,
|
265
272
|
metric_collection_mode: Optional[pulumi.Input[str]] = None,
|
266
273
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -289,7 +296,7 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
289
296
|
def get(resource_name: str,
|
290
297
|
id: pulumi.Input[str],
|
291
298
|
opts: Optional[pulumi.ResourceOptions] = None,
|
292
|
-
account_id: Optional[pulumi.Input[
|
299
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
293
300
|
arn: Optional[pulumi.Input[str]] = None,
|
294
301
|
metric_collection_mode: Optional[pulumi.Input[str]] = None,
|
295
302
|
name: Optional[pulumi.Input[str]] = None) -> 'AwsLinkAccount':
|
@@ -300,7 +307,7 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
300
307
|
:param str resource_name: The unique name of the resulting resource.
|
301
308
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
302
309
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
303
|
-
: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`.
|
304
311
|
:param pulumi.Input[str] arn: The Amazon Resource Name (ARN) of the IAM role.
|
305
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.
|
306
313
|
:param pulumi.Input[str] name: The name of the linked account.
|
@@ -317,7 +324,7 @@ class AwsLinkAccount(pulumi.CustomResource):
|
|
317
324
|
|
318
325
|
@property
|
319
326
|
@pulumi.getter(name="accountId")
|
320
|
-
def account_id(self) -> pulumi.Output[
|
327
|
+
def account_id(self) -> pulumi.Output[str]:
|
321
328
|
"""
|
322
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`.
|
323
330
|
"""
|