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,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 *
|
@@ -17,14 +22,14 @@ __all__ = ['OneDashboardRawArgs', 'OneDashboardRaw']
|
|
17
22
|
class OneDashboardRawArgs:
|
18
23
|
def __init__(__self__, *,
|
19
24
|
pages: pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]],
|
20
|
-
account_id: Optional[pulumi.Input[
|
25
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
21
26
|
description: Optional[pulumi.Input[str]] = None,
|
22
27
|
name: Optional[pulumi.Input[str]] = None,
|
23
28
|
permissions: Optional[pulumi.Input[str]] = None):
|
24
29
|
"""
|
25
30
|
The set of arguments for constructing a OneDashboardRaw resource.
|
26
31
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]] pages: A nested block that describes a page. See Nested page blocks below for details.
|
27
|
-
:param pulumi.Input[
|
32
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
28
33
|
:param pulumi.Input[str] description: Brief text describing the dashboard.
|
29
34
|
:param pulumi.Input[str] name: The title of the dashboard.
|
30
35
|
:param pulumi.Input[str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
|
@@ -53,14 +58,14 @@ class OneDashboardRawArgs:
|
|
53
58
|
|
54
59
|
@property
|
55
60
|
@pulumi.getter(name="accountId")
|
56
|
-
def account_id(self) -> Optional[pulumi.Input[
|
61
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
57
62
|
"""
|
58
63
|
Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
59
64
|
"""
|
60
65
|
return pulumi.get(self, "account_id")
|
61
66
|
|
62
67
|
@account_id.setter
|
63
|
-
def account_id(self, value: Optional[pulumi.Input[
|
68
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
64
69
|
pulumi.set(self, "account_id", value)
|
65
70
|
|
66
71
|
@property
|
@@ -103,7 +108,7 @@ class OneDashboardRawArgs:
|
|
103
108
|
@pulumi.input_type
|
104
109
|
class _OneDashboardRawState:
|
105
110
|
def __init__(__self__, *,
|
106
|
-
account_id: Optional[pulumi.Input[
|
111
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
107
112
|
description: Optional[pulumi.Input[str]] = None,
|
108
113
|
guid: Optional[pulumi.Input[str]] = None,
|
109
114
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -112,7 +117,7 @@ class _OneDashboardRawState:
|
|
112
117
|
permissions: Optional[pulumi.Input[str]] = None):
|
113
118
|
"""
|
114
119
|
Input properties used for looking up and filtering OneDashboardRaw resources.
|
115
|
-
:param pulumi.Input[
|
120
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
116
121
|
:param pulumi.Input[str] description: Brief text describing the dashboard.
|
117
122
|
:param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
|
118
123
|
:param pulumi.Input[str] name: The title of the dashboard.
|
@@ -137,14 +142,14 @@ class _OneDashboardRawState:
|
|
137
142
|
|
138
143
|
@property
|
139
144
|
@pulumi.getter(name="accountId")
|
140
|
-
def account_id(self) -> Optional[pulumi.Input[
|
145
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
141
146
|
"""
|
142
147
|
Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
143
148
|
"""
|
144
149
|
return pulumi.get(self, "account_id")
|
145
150
|
|
146
151
|
@account_id.setter
|
147
|
-
def account_id(self, value: Optional[pulumi.Input[
|
152
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
148
153
|
pulumi.set(self, "account_id", value)
|
149
154
|
|
150
155
|
@property
|
@@ -225,10 +230,10 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
225
230
|
def __init__(__self__,
|
226
231
|
resource_name: str,
|
227
232
|
opts: Optional[pulumi.ResourceOptions] = None,
|
228
|
-
account_id: Optional[pulumi.Input[
|
233
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
229
234
|
description: Optional[pulumi.Input[str]] = None,
|
230
235
|
name: Optional[pulumi.Input[str]] = None,
|
231
|
-
pages: Optional[pulumi.Input[Sequence[pulumi.Input[
|
236
|
+
pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
|
232
237
|
permissions: Optional[pulumi.Input[str]] = None,
|
233
238
|
__props__=None):
|
234
239
|
"""
|
@@ -238,23 +243,24 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
238
243
|
|
239
244
|
### Create A New Relic One Dashboard With RawConfiguration
|
240
245
|
|
241
|
-
<!--Start PulumiCodeChooser -->
|
242
246
|
```python
|
243
247
|
import pulumi
|
244
248
|
import json
|
245
249
|
import pulumi_newrelic as newrelic
|
246
250
|
|
247
|
-
exampledash = newrelic.OneDashboardRaw("exampledash",
|
248
|
-
name="
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
251
|
+
exampledash = newrelic.OneDashboardRaw("exampledash",
|
252
|
+
name="New Relic Terraform Example",
|
253
|
+
pages=[{
|
254
|
+
"name": "Page Name",
|
255
|
+
"widgets": [
|
256
|
+
{
|
257
|
+
"title": "Custom widget",
|
258
|
+
"row": 1,
|
259
|
+
"column": 1,
|
260
|
+
"width": 1,
|
261
|
+
"height": 1,
|
262
|
+
"visualization_id": "viz.custom",
|
263
|
+
"configuration": \"\"\" {
|
258
264
|
"legend": {
|
259
265
|
"enabled": false
|
260
266
|
},
|
@@ -271,15 +277,15 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
271
277
|
}
|
272
278
|
}
|
273
279
|
\"\"\",
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
280
|
+
},
|
281
|
+
{
|
282
|
+
"title": "Server CPU",
|
283
|
+
"row": 1,
|
284
|
+
"column": 2,
|
285
|
+
"width": 1,
|
286
|
+
"height": 1,
|
287
|
+
"visualization_id": "viz.testing",
|
288
|
+
"configuration": \"\"\" {
|
283
289
|
"nrqlQueries": [
|
284
290
|
{
|
285
291
|
"accountId": ` + accountID + `,
|
@@ -288,36 +294,35 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
288
294
|
]
|
289
295
|
}
|
290
296
|
\"\"\",
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"title": "Docker Server CPU",
|
300
|
+
"row": 1,
|
301
|
+
"column": 3,
|
302
|
+
"height": 1,
|
303
|
+
"width": 1,
|
304
|
+
"visualization_id": "viz.bar",
|
305
|
+
"configuration": json.dumps({
|
306
|
+
"facet": {
|
307
|
+
"showOtherSeries": False,
|
308
|
+
},
|
309
|
+
"nrqlQueries": [{
|
310
|
+
"accountId": account_id,
|
311
|
+
"query": "SELECT average(cpuPercent) FROM SystemSample since 3 hours ago facet hostname limit 400",
|
312
|
+
}],
|
313
|
+
}),
|
314
|
+
"linked_entity_guids": ["MzI5ODAxNnxWSVp8REFTSEJPQVJEfDI2MTcxNDc"],
|
315
|
+
},
|
316
|
+
],
|
317
|
+
}])
|
312
318
|
```
|
313
|
-
<!--End PulumiCodeChooser -->
|
314
319
|
|
315
320
|
:param str resource_name: The name of the resource.
|
316
321
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
317
|
-
:param pulumi.Input[
|
322
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
318
323
|
:param pulumi.Input[str] description: Brief text describing the dashboard.
|
319
324
|
:param pulumi.Input[str] name: The title of the dashboard.
|
320
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
325
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]] pages: A nested block that describes a page. See Nested page blocks below for details.
|
321
326
|
:param pulumi.Input[str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
|
322
327
|
"""
|
323
328
|
...
|
@@ -333,23 +338,24 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
333
338
|
|
334
339
|
### Create A New Relic One Dashboard With RawConfiguration
|
335
340
|
|
336
|
-
<!--Start PulumiCodeChooser -->
|
337
341
|
```python
|
338
342
|
import pulumi
|
339
343
|
import json
|
340
344
|
import pulumi_newrelic as newrelic
|
341
345
|
|
342
|
-
exampledash = newrelic.OneDashboardRaw("exampledash",
|
343
|
-
name="
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
346
|
+
exampledash = newrelic.OneDashboardRaw("exampledash",
|
347
|
+
name="New Relic Terraform Example",
|
348
|
+
pages=[{
|
349
|
+
"name": "Page Name",
|
350
|
+
"widgets": [
|
351
|
+
{
|
352
|
+
"title": "Custom widget",
|
353
|
+
"row": 1,
|
354
|
+
"column": 1,
|
355
|
+
"width": 1,
|
356
|
+
"height": 1,
|
357
|
+
"visualization_id": "viz.custom",
|
358
|
+
"configuration": \"\"\" {
|
353
359
|
"legend": {
|
354
360
|
"enabled": false
|
355
361
|
},
|
@@ -366,15 +372,15 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
366
372
|
}
|
367
373
|
}
|
368
374
|
\"\"\",
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
375
|
+
},
|
376
|
+
{
|
377
|
+
"title": "Server CPU",
|
378
|
+
"row": 1,
|
379
|
+
"column": 2,
|
380
|
+
"width": 1,
|
381
|
+
"height": 1,
|
382
|
+
"visualization_id": "viz.testing",
|
383
|
+
"configuration": \"\"\" {
|
378
384
|
"nrqlQueries": [
|
379
385
|
{
|
380
386
|
"accountId": ` + accountID + `,
|
@@ -383,29 +389,28 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
383
389
|
]
|
384
390
|
}
|
385
391
|
\"\"\",
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
392
|
+
},
|
393
|
+
{
|
394
|
+
"title": "Docker Server CPU",
|
395
|
+
"row": 1,
|
396
|
+
"column": 3,
|
397
|
+
"height": 1,
|
398
|
+
"width": 1,
|
399
|
+
"visualization_id": "viz.bar",
|
400
|
+
"configuration": json.dumps({
|
401
|
+
"facet": {
|
402
|
+
"showOtherSeries": False,
|
403
|
+
},
|
404
|
+
"nrqlQueries": [{
|
405
|
+
"accountId": account_id,
|
406
|
+
"query": "SELECT average(cpuPercent) FROM SystemSample since 3 hours ago facet hostname limit 400",
|
407
|
+
}],
|
408
|
+
}),
|
409
|
+
"linked_entity_guids": ["MzI5ODAxNnxWSVp8REFTSEJPQVJEfDI2MTcxNDc"],
|
410
|
+
},
|
411
|
+
],
|
412
|
+
}])
|
407
413
|
```
|
408
|
-
<!--End PulumiCodeChooser -->
|
409
414
|
|
410
415
|
:param str resource_name: The name of the resource.
|
411
416
|
:param OneDashboardRawArgs args: The arguments to use to populate this resource's properties.
|
@@ -422,10 +427,10 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
422
427
|
def _internal_init(__self__,
|
423
428
|
resource_name: str,
|
424
429
|
opts: Optional[pulumi.ResourceOptions] = None,
|
425
|
-
account_id: Optional[pulumi.Input[
|
430
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
426
431
|
description: Optional[pulumi.Input[str]] = None,
|
427
432
|
name: Optional[pulumi.Input[str]] = None,
|
428
|
-
pages: Optional[pulumi.Input[Sequence[pulumi.Input[
|
433
|
+
pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
|
429
434
|
permissions: Optional[pulumi.Input[str]] = None,
|
430
435
|
__props__=None):
|
431
436
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -455,11 +460,11 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
455
460
|
def get(resource_name: str,
|
456
461
|
id: pulumi.Input[str],
|
457
462
|
opts: Optional[pulumi.ResourceOptions] = None,
|
458
|
-
account_id: Optional[pulumi.Input[
|
463
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
459
464
|
description: Optional[pulumi.Input[str]] = None,
|
460
465
|
guid: Optional[pulumi.Input[str]] = None,
|
461
466
|
name: Optional[pulumi.Input[str]] = None,
|
462
|
-
pages: Optional[pulumi.Input[Sequence[pulumi.Input[
|
467
|
+
pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
|
463
468
|
permalink: Optional[pulumi.Input[str]] = None,
|
464
469
|
permissions: Optional[pulumi.Input[str]] = None) -> 'OneDashboardRaw':
|
465
470
|
"""
|
@@ -469,11 +474,11 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
469
474
|
:param str resource_name: The unique name of the resulting resource.
|
470
475
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
471
476
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
472
|
-
:param pulumi.Input[
|
477
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
473
478
|
:param pulumi.Input[str] description: Brief text describing the dashboard.
|
474
479
|
:param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
|
475
480
|
:param pulumi.Input[str] name: The title of the dashboard.
|
476
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
481
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]] pages: A nested block that describes a page. See Nested page blocks below for details.
|
477
482
|
:param pulumi.Input[str] permalink: The URL for viewing the dashboard.
|
478
483
|
:param pulumi.Input[str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
|
479
484
|
"""
|
@@ -492,7 +497,7 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
492
497
|
|
493
498
|
@property
|
494
499
|
@pulumi.getter(name="accountId")
|
495
|
-
def account_id(self) -> pulumi.Output[
|
500
|
+
def account_id(self) -> pulumi.Output[str]:
|
496
501
|
"""
|
497
502
|
Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
498
503
|
"""
|